Full Code of a-r-d/vector-2-trend for AI

main 55d1ee01b4ce cached
17 files
3.5 MB
917.7k tokens
14 symbols
1 requests
Download .txt
Showing preview only (3,671K chars total). Download the full file or copy to clipboard to get everything.
Repository: a-r-d/vector-2-trend
Branch: main
Commit: 55d1ee01b4ce
Files: 17
Total size: 3.5 MB

Directory structure:
gitextract_bz2543u5/

├── .eslintrc.js
├── .gitignore
├── .npmignore
├── .nvmrc
├── .prettierrc
├── LICENSE
├── README.md
├── jest.config.js
├── package.json
├── scripts/
│   └── demo.js
├── src/
│   ├── index.ts
│   ├── sample-data.json
│   ├── types.ts
│   ├── utils.ts
│   ├── vector2Trend.ts
│   └── vector2trends.test.ts
└── tsconfig.json

================================================
FILE CONTENTS
================================================

================================================
FILE: .eslintrc.js
================================================
module.exports = {
  root: true,
  parser: '@typescript-eslint/parser',
  plugins: ['@typescript-eslint'],
  extends: [
    'eslint:recommended',
    'plugin:@typescript-eslint/eslint-recommended',
    'plugin:@typescript-eslint/recommended',
  ],
};


================================================
FILE: .gitignore
================================================
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next
out

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# vuepress v2.x temp and cache directory
.temp
.cache

# Docusaurus cache and generated files
.docusaurus

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*


================================================
FILE: .npmignore
================================================
src/
*.test.ts


================================================
FILE: .nvmrc
================================================
v16.15.0

================================================
FILE: .prettierrc
================================================
{
  "semi": true,
  "trailingComma": "all",
  "singleQuote": true,
  "printWidth": 80,
  "tabWidth": 2
}


================================================
FILE: LICENSE
================================================
MIT License

Copyright (c) 2023 Aaron Decker

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


================================================
FILE: README.md
================================================
# vector-2-trend

Take (text) vectors and get out trending topics using clustering algorithms.

```
npm i vector-2-trend
```

Good use cases:

- surfacing topics in user feedback
- categorizing survey responses

![example text topic trends](docs/screenshots/example-user-feedback-trends.png)

## Summary

You have some semantic vectors for text and would like to show trending topics, yes? Of course you do, it's a common use case. It's a few steps to do this however. Generally it involves clustering, and then summarizing the clusters somehow. This module helps you do that (I developed this code while working on an experiment called saymore.ai).

For clustering we use `kmeans` but will be adding more algorithms.

For classification, we use GPT-3.5-turbo using openai API (just use the API key).

## Interface

### The format of the Vectors:

```typescript
import { DataPoint } from 'vector-2-trend'

interface DataPoint {
    id: number | string
    text: string,
    vector: number[]
}

const vectors: DataPoint[] = [{
    id: 'abc-123',
    text: 'some text',
    vector: [0, 1, 2, 3 ... n]
}]
```

### Clustering the vectors:

```typescript
import Vector2Trend, {
  ClusteringArgument,
  ClusteringResult,
} from 'vector-2-trend';

type ClusteringArgument = {
  records: DataPoint[];
  n: number;
  pcaDimensions: number;
  // we will add more in the future
  clusteringAlgorithm: 'kmeans';
};

const clusteringResult: ClusteringResult = Vector2Trend.cluster({
  vectors: vectors,
  // Dimensionality of the vectors - any number, but make sure they are uniform
  // 1536 is the dimensionality of the text-embedding-ada-002 model by openAI 
  // which is cheap and performant (3k pages per dollar in 2023)
  n: 1536,
  // tune this based on your own data
  // if you make this the same number as N PCA will essentially be skipped
  // but with high dimensional data I would recommend a number that is reasonable
  // for performance considerations.
  pcaDimensions: 10,
  // algorithm
  clusteringAlgorithm: 'kmeans',
});
```

### Classifying the vectors:

```typescript
import { ClassifiedClusterResponse } from 'vector-2-trend';

const classificationResult: ClassifiedClusterResponse[] = Vector2Trend.classify(
  {
    openAiApiKey: string,
    clusteringResult: ClusteringResult,
    nTopics: 10, // optional, defaults to 10. How many topics to try to categorize in GPT.
    temperature: 0.1, // optional, defaults to 0.1
    elementsPerGroup: 10, // optional defaults to 10 in case you have very large clusters & hit token limit
  },
);
```

### Using the results:

```typescript

// the type returned
export type ClassifiedClusterResponse = {
  // this is the density score
  score: number;

  // these are the same as from the cluster ranking result
  clusterId: number;
  count: number;
  records: DataPoint[];

  // generated from GPT
  name: string;
};


const classificationResults: ClassifiedClusterResponse[] =  [] /// see above - call Vector2Trend.classify

console.log(classificationResults.map(x => ({ topic: x.name, score: x.score })))

```

Would look something like this:
![demo output](./docs/screenshots//demo-output.png)


### Debugging / Logging

If something is going wrong with classification you can toggle on debug logging

```typescript
Vector2Trend.enableLogging();
```

## Developing

I will take PRs, just please make sure to add tests where you change functionality.

Jest tests are configured. 

```
npm run test
```

### Demo script

You can run the demo script locally, just change the openAI Api key.
```
npm run demo
```

The demo output should look like this:
![demo output](./docs/screenshots//demo-output.png)

## Your feedback

I am looking for your feedback to see what this could evolve into! Some things I have considered:

- adding in features to do initial vectorization
- graphical output features
- many more ways to tweak and use the clustering algorithm.
- more & better tests


================================================
FILE: jest.config.js
================================================
module.exports = {
  roots: ['<rootDir>/src'],
  transform: {
    '^.+\\.tsx?$': 'ts-jest',
  },
  testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$',
  moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
};


================================================
FILE: package.json
================================================
{
  "name": "vector-2-trend",
  "version": "1.0.0",
  "description": "take semantic text vectors, run clustering, classification and output trends",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "test": "jest",
    "build": "tsc",
    "prepublishOnly": "npm run build",
    "demo": "node scripts/demo.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/a-r-d/vector-2-trend.git"
  },
  "keywords": [
    "semantic",
    "vectors",
    "clustering",
    "machine",
    "learning",
    "trends"
  ],
  "author": "Aaron Decker",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/a-r-d/vector-2-trend/issues"
  },
  "homepage": "https://github.com/a-r-d/vector-2-trend#readme",
  "devDependencies": {
    "@types/jest": "^29.5.3",
    "@types/lodash": "^4.14.195",
    "@types/node": "^16.15.0",
    "@typescript-eslint/eslint-plugin": "^6.1.0",
    "@typescript-eslint/parser": "^6.1.0",
    "eslint": "^8.45.0",
    "jest": "^29.6.1",
    "prettier": "^3.0.0",
    "ts-jest": "^29.1.1",
    "typescript": "^4.9.3"
  },
  "dependencies": {
    "lodash": "^4.17.21",
    "ml-kmeans": "^6.0.0",
    "ml-pca": "^4.1.1",
    "openai": "^3.3.0",
    "tslog": "^4.8.2"
  }
}


================================================
FILE: scripts/demo.js
================================================
const Vector2Trends = require('../dist/index');
const fs = require('fs');

const testData = fs.readFileSync('./src/sample-data.json', 'utf8');
const testDataPoints = JSON.parse(testData);

const clusters = Vector2Trends.default.cluster({
  records: testDataPoints,
  n: 1536,
  pcaDimensions: 20,
  clusteringAlgorithm: 'kmeans',
});

console.log(clusters);

const classify = async () => {
  const calssifications = await Vector2Trends.default.classify({
    clusteringResult: clusters,
    // TODO: change this to your own API key
    openAiApiKey: 'sk-xxxxxxxxxxxxxxxxxxx',
  });

  console.log(calssifications);

  // topics:
  console.log(calssifications.map(x => ({ topic: x.name, score: x.score })))
  return calssifications;
};

classify();


================================================
FILE: src/index.ts
================================================
import { Vector2Trend } from "./vector2Trend";

export default Vector2Trend;

export * from "./types";


================================================
FILE: src/sample-data.json
================================================
[{"id":"c71a0b10-4330-4533-b78d-9dba3c194996","text":"I'm Lancelot of Inner Circle ⭕️ \"The bad boys of Reggae\" are you interested in doing an endorsement?","vector":[-0.017546259,-0.016090808,-0.019473383,-0.02586119,-0.0149048865,0.03250505,-0.0077421856,-0.025497328,-0.017681023,0.010484631,0.013227076,0.014958792,0.005464676,-0.014379308,0.019122997,0.010686777,0.032073807,-0.016333384,0.016481625,0.025160419,0.00038133972,-0.007964546,-0.0025335613,-0.016737675,0.01668377,-0.010969781,0.026750633,-0.00014760857,0.015956044,-0.0053501264,0.015484371,0.021157932,0.010329653,-0.0032326488,-0.018489607,-0.01862437,0.013570724,-0.011663815,0.044175606,0.015619135,0.007607422,0.0052086245,0.009878193,-0.038434662,0.0028906856,0.018799564,0.023031149,-0.022936815,-0.0065899543,0.038542476,0.008988752,-0.00244428,0.00373296,-0.018570464,-0.004073239,0.017088061,0.021629605,-0.0053467574,0.0006531837,0.0005996993,0.012364588,-0.012095059,-0.01645467,-0.017681023,-0.019365571,0.008321671,-0.007230083,-0.0018984864,-0.013004716,-0.010828279,0.00078584196,-0.0006704504,-0.0030271339,0.002299409,0.002452703,-0.023233294,-0.047302127,-0.005110921,-0.008725963,-0.005110921,0.015807806,-0.0071559628,-0.032639816,0.014473642,0.018166173,0.026642822,-0.0016710723,0.019042138,-0.005724096,-0.0001950918,-0.0013274243,0.029189859,0.0002910058,0.004076608,-0.031588655,0.0066068,-0.018004457,0.013355101,0.0017822525,-0.009413258,0.010457678,-0.02202042,-0.01653553,-0.009130253,-0.0069066496,-0.008530554,-0.019325143,-0.004076608,0.0373296,0.016077332,-0.018206602,0.028300418,0.008389052,-0.022613382,-0.0057274657,-0.0019810293,-0.004908775,-0.02003939,-0.02056497,-0.0103027,0.01813922,-0.011414502,0.016670294,-0.030187113,0.010909137,0.012041154,-0.017721452,-0.013294458,-0.009709738,-0.0023499455,0.01063961,0.011205617,0.0055994396,0.008072358,0.004005857,0.02045716,-0.0001461346,0.019203855,-0.03123827,-0.02530866,0.03703312,0.026979731,0.0035173376,0.00048346547,-0.002422381,0.002232027,0.011731197,-0.02373192,-0.0034381638,-0.02258643,0.0009660887,-0.021966515,0.033044107,-0.017964028,-0.0062395683,0.01526875,-0.020349348,0.023799304,-0.0143119255,-0.0062766285,-0.007412014,0.00038218198,0.0064989887,-0.007418752,0.017707976,0.03183123,0.03239724,0.00060685864,-0.0003868145,0.0009012335,0.014567977,0.01246566,-0.01959467,0.01003991,-0.027976984,0.0066943965,-0.010181412,-0.0032191726,0.0052793757,-0.015349608,-0.02216866,0.041480325,0.01406935,0.021953039,-0.020821022,-0.00083090365,-0.01925776,-0.018866945,-0.009002228,-0.031076554,0.002766029,0.020470636,-0.005882444,-0.020645829,-0.6201295,-0.009986005,0.016131239,-0.00020519909,0.006377701,0.023152437,0.0016020058,0.0011092753,-0.028003937,0.009487378,-0.028542994,0.019217331,-0.005680298,0.0057678944,0.0026666406,-0.035254236,-0.0028233037,0.009345876,0.00515135,-0.008853988,-0.025578188,0.014190638,0.0085372925,-0.0235163,-0.007620898,0.016508577,0.0025554604,-0.013665059,0.0054848907,-0.0051412424,-0.0006009627,0.0016719146,0.0075467783,0.003172005,0.058649246,-0.018260507,0.005730835,0.024324883,0.00021625393,0.032424193,-0.026777586,-0.01892085,0.01925776,-0.016818535,0.0023651063,-0.00470326,0.030214066,0.014028922,-0.02105012,-0.0016205359,0.02138703,-0.004881822,-0.010275747,-0.019500336,0.010134245,-0.02978282,0.028839473,0.0060037314,0.003631887,0.031399988,0.00081953296,0.009952313,-0.037572175,-0.0072166068,0.017115014,0.009736692,-0.022748146,0.0412108,0.01112476,-0.0135842,0.007398538,-0.001080638,-0.0186648,0.0116368625,-0.0019961903,0.03131913,0.000084016865,-0.0368714,-0.0019355464,-0.000053115924,-0.014352355,-0.0014520809,-0.00095682364,-0.021292696,0.011387549,0.0010932721,-0.024527028,-0.009123515,0.02503913,-0.0050368006,0.012344372,0.024163166,0.000032532847,-0.02851604,0.026319388,0.00533665,-0.024230547,0.002112424,0.0068325293,-0.023907116,0.011259523,-0.00940652,0.01590214,0.00028405702,0.02482351,0.0037767582,-0.010545275,-0.01668377,0.017074585,-0.029189859,-0.0038643547,0.005919504,0.000663291,-0.014298449,0.0011168558,-0.031399988,0.011057378,0.009723215,0.016710723,-0.05422899,0.007823044,0.0095480215,0.030591404,-0.037814748,-0.01590214,0.02604986,-0.007236821,-0.0110371625,0.004474161,0.0007748924,-0.0032326488,-0.027276212,0.030429687,-0.02258643,0.019837245,0.012580209,0.023583682,-0.00027795054,0.012849737,-0.027424453,-0.00884725,-0.03317887,0.010370081,0.012485875,-0.014608406,-0.023341106,-0.0106193945,0.0005950668,-0.01355051,0.017519306,-0.008577722,0.010882185,-0.02489089,0.009783858,0.016737675,-0.019217331,-0.018341366,-0.016562482,-0.03075312,-0.0047942256,0.0013535349,0.01526875,-0.023435442,-0.021670034,0.0032579172,-0.009911885,0.0065933233,0.018839993,-0.015982999,-0.024836985,0.014945316,-0.0118726995,-0.000816585,0.000528106,0.0012162442,0.00746592,0.014379308,-0.002981651,0.015592183,-0.0049289893,0.0069133877,-0.028246513,-0.016818535,-0.00059085543,0.028920332,-0.0033168762,-0.000254788,0.026359817,-0.0034465867,0.01881304,-0.037006166,0.008159954,-0.011987248,-0.010835017,-0.0010031487,0.018718705,0.007917379,0.016912868,0.031265225,0.010289223,0.007897164,0.013537033,0.023758875,-0.01571347,-0.0008953376,-0.016508577,0.015821282,-0.010585704,0.044876378,0.026211577,0.0056331307,0.007162701,0.0033842584,0.0036824234,0.030160159,0.006640491,0.0028502564,0.0044775303,0.013355101,-0.008416005,0.009143731,0.018368319,0.0015986367,-0.02127922,0.012640853,0.023421966,0.008375576,0.011731197,-0.028947284,-0.012007463,-0.012364588,0.00851034,0.014824028,0.010457678,-0.00880682,-0.011212356,0.0013644844,-0.029917585,0.04431037,-0.03094179,-0.011198879,0.01824703,0.0024830247,0.008159954,0.034876894,-0.0036958999,0.013530295,0.011434716,-0.012182656,0.01727673,-0.010498107,0.015309178,-0.03161561,-0.0012912066,0.018031409,-0.041857667,-0.013321411,0.020187631,-0.008213859,0.020497588,0.00023815306,0.021225313,0.017303685,-0.026225055,0.01761364,0.018947804,0.002354999,0.003116415,0.009703,0.011704245,0.016764628,-0.003374151,0.018947804,-0.023300678,0.005643238,0.005976779,0.017532783,-0.012674544,-0.022465141,0.0036217796,0.010572228,-0.020066343,0.019352095,0.011960296,-0.0030524023,-0.04743689,0.0010149406,0.023192866,-0.022195613,0.03199295,0.043124445,0.020888403,0.012034416,-0.023880161,-0.01982377,-0.0031029386,0.014001968,-0.013826775,0.014163685,-0.0033977346,0.015875187,0.023624111,0.004918882,-0.023152437,0.018125745,0.00025710423,-0.011077592,0.008207121,0.0048616077,-0.015133985,-0.0022522416,0.010120768,-0.022680763,-0.02235733,0.00011360175,0.013092312,-0.014042398,-0.017222825,0.017047632,-0.0039620586,0.0015674726,-0.013644844,-0.03385269,0.013274244,0.14134037,-0.010754159,-0.0021915978,-0.0026363188,0.0035207067,0.0017536152,0.0017418233,-0.04635878,0.0041338825,0.0020955785,0.017748404,-0.007843259,-0.041453373,0.011299953,-0.010693515,0.0017856216,-0.020996215,-0.0020433576,0.016575959,0.005879075,-0.0023448917,-0.0148509815,0.010888923,0.026171148,0.013907634,0.004251801,0.02373192,0.012863214,-0.008725963,-0.02094231,-0.0047942256,0.0060306843,-0.0068426365,-0.009453687,-0.0086585805,0.010437463,-0.008166692,0.01716892,0.015659565,-0.013793085,0.05050951,0.02579381,0.014096303,-0.0075333016,0.023826256,-0.01112476,-0.0135842,0.00097282685,-0.0027896126,-0.0038003419,0.018826516,-0.013072098,0.008395791,-0.039324105,-0.034203075,-0.008732701,-0.01063961,-0.011380811,0.0093324,0.02187218,-0.00593298,-0.007189654,0.019203855,-0.015659565,-0.023866685,-0.02881252,-0.017411495,-0.019918103,0.01571347,-0.007829783,0.0027289689,-0.004743689,-0.033313636,0.007573731,0.013206862,-0.012095059,0.010592442,-0.00056516606,0.024836985,0.01351008,0.015160938,-0.026858443,-0.024365311,-0.02765355,-0.030483592,0.020470636,-0.009271756,0.026723681,-0.011657077,0.005916135,0.01914995,0.00402944,0.02056497,-0.01571347,-0.016171668,0.016009951,-0.015470895,-0.011441454,0.0068898043,0.0045617577,-0.011064116,-0.018934326,-0.0026262114,0.012431969,0.005161457,0.02041673,0.005734204,0.010174674,-0.035362046,-0.008840512,-0.009096563,-0.009521069,0.013321411,0.0033792045,0.016562482,0.032990202,-0.0003634414,0.022788575,-0.012330896,0.001814259,-0.018610895,-0.024756128,0.027761362,0.02079407,-0.02840823,0.0058992896,0.009662571,-0.026359817,0.015538277,-0.010835017,-0.02045716,0.017707976,-0.0033505673,-0.0077354475,-0.048838437,-0.0022623488,-0.0049930024,-0.009116777,-0.022829004,-0.020551493,-0.0368714,-0.013732441,-0.007162701,-0.025659045,-0.0041439896,-0.031453893,-0.007021199,0.020767117,-0.015915615,0.024756128,-0.026440676,-0.005879075,-0.011448192,-0.0051783025,0.010733944,-0.006098066,-0.023785828,-0.004908775,0.015780851,0.011710983,0.015214844,-0.026629345,0.0095480215,-0.0032141188,-0.0004746216,-0.0038003419,0.018974757,-0.024365311,-0.007957808,0.0020618876,-0.0035914578,0.016158191,-0.0015944253,0.019311666,-0.016441194,0.0034449021,0.001483245,-0.021845227,-0.0110371625,-0.011144974,-0.011374073,0.007418752,-0.010558751,-0.02444617,-0.01750583,-0.003631887,0.030699216,0.031642564,-0.008429482,-0.0037666508,0.0043090754,-0.0014773492,0.030860933,-0.013294458,0.017910121,0.025025655,-0.033610117,0.0065259417,0.016090808,0.013665059,0.01784274,-0.0042012646,-0.0015447311,-0.0043697194,0.008712485,0.022613382,0.0103027,-0.015807806,-0.0034027884,-0.02765355,-0.019540764,-0.0071020573,-0.046790022,-0.032747626,0.001212875,0.0025251384,-0.017128492,0.0005398978,-0.010383558,-0.02045716,0.009918623,0.0009820919,0.016656818,0.012580209,0.007580469,0.026184624,0.0078836875,-0.021629605,0.02750531,0.014392784,-0.021400506,0.0066303834,0.023772351,-0.035389,-0.0005858018,0.0068763276,-0.003101254,-0.021670034,-0.016279478,0.005063753,-0.01351008,-0.0031467369,-0.0052187317,0.01693982,-0.02463484,0.019325143,0.0035038611,-0.012546519,-0.036224537,-0.03228943,-0.023058102,0.020618876,-0.02803089,0.023260249,0.01142124,-0.014675788,0.003813818,-0.026844967,-0.0069470787,0.008786606,0.0077084946,0.014379308,-0.0060071005,0.012364588,0.011212356,-0.011650339,0.021575699,0.012546519,0.012789094,0.025591664,-0.009844502,0.019796817,0.008638365,-0.027074067,-0.010181412,0.029809773,0.0031585288,0.005916135,0.0030810395,-0.008550769,0.014190638,-0.021333124,-0.023597158,0.01302493,-0.011394287,-0.017047632,0.0037161144,-0.0065225726,0.027316641,-0.024244025,-0.027424453,-0.03986316,0.014015445,0.0077084946,0.0041069295,0.0014074404,0.003404473,0.0057678944,0.00201472,-0.0011042217,0.00032027482,-0.0016735991,-0.007209868,0.0122298235,0.022707716,-0.021333124,0.017586688,-0.0054882597,-0.017101537,-0.029648056,-0.023826256,0.020349348,-0.00846991,-0.005670191,-0.0023010934,0.0043360284,0.0117514115,0.0078095677,-0.038650285,0.004083346,-0.018651323,0.010289223,0.036440156,-0.02765355,0.009083087,-0.023839733,0.016292956,-0.0004076608,-0.0150261745,-0.011650339,-0.010430725,0.04819157,0.012593686,-0.028866427,-0.0015068288,0.009783858,-0.0074524432,0.025766857,-0.0062901047,-0.00065781624,0.047544703,0.023381535,0.009810812,0.035442904,0.010167936,-0.021144455,0.006967293,0.007903903,-0.028300418,-0.01309905,-0.048811484,0.021104027,0.014244543,-0.020821022,-0.026211577,0.003490385,-0.024769604,-0.020025915,-0.0013526926,0.031669516,0.0046122945,-0.0106800385,0.014567977,0.016468149,0.026009431,-0.0046864143,-0.0020164049,-0.005724096,0.0051378733,-0.020295443,0.0015026174,-0.0072974646,-0.040267453,0.0077758767,0.029243765,0.038650285,0.02571295,0.01489141,-0.0024914476,0.0008852303,-0.018826516,-0.017519306,0.020025915,0.019432953,0.017303685,-0.026157672,0.013739179,-0.031103507,0.017775357,0.015956044,0.0235163,0.025497328,0.0060104695,0.005360234,0.015241796,-0.006849375,0.010006219,0.022559475,0.012458922,-0.0044775303,-0.01190639,0.028839473,-0.0053905556,-0.042342816,0.006125019,-0.01634686,0.0030894622,-0.021319648,-0.0062833666,-0.025389519,-0.000285531,-0.002772767,0.014325402,-0.004568496,0.0053433883,0.0006822422,0.013745917,0.004713367,0.026723681,0.007027937,-0.023085056,-0.022370806,0.0034836465,0.026292436,-0.02224952,0.007014461,0.003101254,-0.008456434,-0.00031753743,0.0077691386,-0.020740163,-0.01586171,0.012357849,-0.017371066,0.025982479,0.011340382,0.2376157,-0.005730835,-0.018866945,0.015848234,0.0043730885,0.020106774,0.03210076,0.0021292695,0.0020248275,0.012236562,0.007587207,0.016144715,-0.024810033,-0.005707251,0.013793085,-0.0013409008,-0.029082049,-0.03859638,0.0073513705,-0.024257502,-0.002247188,-0.0037531746,0.0024644947,-0.03773389,0.0023752137,0.003008604,-0.019042138,-0.007823044,0.017101537,0.01105064,-0.0125263035,0.009750168,0.015039651,-0.009136992,0.009467163,-0.008685533,-0.0037969728,0.0050300625,-0.0064551905,-0.005501736,0.031076554,-0.009723215,-0.022545999,-0.02889338,0.0074996105,0.013766131,-0.012829523,0.0004939939,-0.015012698,0.01377287,-0.029216813,-0.009534545,0.047544703,0.041965477,0.0045887106,-0.005063753,0.013260767,0.013543772,-0.02851604,-0.017950552,-0.012997977,0.022734668,0.029189859,-0.02161613,-0.012202871,0.023556728,-0.018866945,-0.03511947,0.0073446324,-0.03269372,0.010626133,-0.028489087,-0.004875084,0.008496864,-0.03579329,-0.023300678,0.013732441,0.0271684,0.02176437,0.032990202,0.024863938,0.00851034,0.00024510184,0.008732701,-0.02900119,-0.0017367697,-0.0036925308,-0.0110978065,-0.007371585,0.0080049755,0.008254289,-0.007823044,0.001237301,-0.008234074,-0.0028873165,-0.017061109,-0.010733944,0.010895661,0.00092650176,-0.02929767,0.004568496,0.04449904,0.01605038,0.016252525,-0.016899392,0.007924117,0.0012389856,-0.0014554501,0.019325143,-0.027626598,0.0056162854,-0.003948582,0.0049357275,0.007681542,-0.011333643,0.008678795,0.020497588,0.010477893,0.01526875,-0.00698077,-0.00906961,-0.007964546,-0.00817343,0.008611413,0.011670553,-0.014365831,-0.019769864,-0.01406935,-0.0058655986,-0.048353285,0.009399782,0.00015929513,0.01309905,-0.028623851,-0.010295961,0.015511325,0.0072502973,-0.004009226,0.012984501,-0.018799564,0.0020500957,0.015012698,0.007438967,-0.013671797,-0.0029698594,-0.025955526,-0.004875084,-0.013442699,-0.0049727876,-0.0047874874,-0.023570206,0.012816046,-0.0022674026,-0.009130253,0.034876894,0.012748664,-0.018368319,-0.017492354,0.0071424865,-0.008530554,-0.05404032,-0.00522547,0.019096043,-0.00087091164,-0.00051168166,0.0044808993,-0.17174311,0.026359817,0.015214844,-0.023866685,0.02497175,-0.006778624,0.0062395683,0.02661587,-0.02724926,0.009884932,0.007061628,0.000045535457,-0.053878605,-0.03094179,-0.0019338619,-0.009359352,0.008779868,0.008712485,0.026076814,0.014702741,0.020335872,-0.004464054,0.0066573364,0.0057645254,0.013826775,-0.022707716,-0.0066505983,0.0068358984,-0.02489089,-0.0023752137,-0.02224952,-0.014621883,0.0015262011,-0.010269009,0.0064113922,0.0034128956,0.005926242,-0.0023263618,0.0015405198,-0.014487118,0.023489347,0.029459387,0.010518322,0.0039384747,-0.0071357484,0.038569428,0.03511947,-0.021710463,-0.007627636,0.0008911262,-0.0045381743,-0.023704968,0.050455604,0.012910381,0.021858703,0.04115689,0.0018395272,0.02604986,0.00746592,-0.006091328,-0.025146943,-0.03557767,0.015619135,-0.03045664,0.0067651477,-0.023637587,-0.0045583886,0.019406,-0.011441454,0.038838953,0.0073917997,-0.011043902,-0.008227335,-0.0014268127,0.02071321,0.010053387,-0.042747106,-0.0147296935,-0.009527807,-0.011529051,0.0066842893,0.05064427,-0.0005744311,0.024392264,-0.0042046336,0.00068687473,0.012735188,-0.0036184106,-0.018503083,-0.016063856,-0.001814259,-0.023502823,-0.0073109413,-0.023839733,0.00012560416,0.024850462,0.015255272,0.0052827448,-0.01556523,-0.017586688,0.015780851,-0.011448192,-0.024203595,0.02400145,0.017977504,-0.004079977,-0.012142227,0.0024021664,0.021144455,0.006802208,-0.0010738998,-0.0034701703,0.017317161,0.038838953,-0.009426734,0.022680763,-0.01306536,-0.016724199,0.024904368,-0.0121085355,0.044768564,-0.0023718446,-0.0023432071,-0.0003598617,0.02071321,-0.0060138386,-0.08889026,-0.008725963,0.016589435,-0.02586119,-0.009514331,0.025834238,0.0015489425,0.014837504,-0.009696262,0.026386771,-0.012216347,-0.021373553,-0.018017933,0.009244803,0.015699994,-0.0049997405,-0.017398018,-0.0058689676,-0.031453893,0.02109055,-0.021589177,-0.037706938,-0.0077758767,-0.0023280464,-0.012371326,-0.0055927015,-0.025322136,0.0106733,0.0041237753,0.021238789,0.0023566836,-0.01817965,-0.011252785,0.0049357275,-0.018907374,-0.015821282,-0.016036903,0.010012957,0.019338619,-0.02889338,0.016036903,0.022613382,0.014621883,-0.016778104,0.0026919087,0.009736692,-0.021400506,0.03549681,0.032828484,0.0014040713,-0.006778624,-0.010518322,-0.008624889,0.0010494739,0.023273725,-0.013692012,0.0009905146,0.037410457,-0.0005992782,0.014325402,0.011104545,-0.013456175,-0.024311407,-0.011205617,0.008213859,0.0069403406,-0.01369875,-0.00091049855,0.02086145,-0.02003939,-0.0065933233,0.01906909,-0.024419218,0.030483592,-0.021036644,0.0083620995,-0.020807546,-0.02489089,0.0051041823,0.0027239153,-0.005127766,-0.012054631,-0.010060125,-0.011299953,0.021400506,0.01071373,0.005707251,-0.0009812496,-0.003564505,-0.0064214994,0.0014352355,0.0033084536,0.018610895,-0.017317161,-0.02105012,0.00073699007,0.0048279166,0.011003472,0.021939563,0.012492613,0.0019658683,-0.0011337013,-0.06899911,0.031373035,-0.010127506,0.00021214785,0.018017933,-0.0006746618,0.024661792,-0.024163166,0.0072772503,-0.0049727876,0.010370081,0.022559475,-0.012175918,0.007984761,0.0041608354,-0.020174155,0.009696262,0.005019955,0.034930803,0.0064652977,-0.009035919,0.0077219713,0.008220597,0.0010738998,0.023071578,0.033906594,-0.0027087543,0.012714974,-0.023880161,-0.023206342,0.030699216,-0.02803089,-0.0029041618,0.02929767,0.0022219196,-0.02258643,0.015929092,0.020174155,-0.014662311,-0.026925826,-0.007620898,-0.017492354,0.0060677445,0.014797076,0.009460425,0.009534545,-0.018408747,0.001237301,0.03619758,-0.007095319,0.013307935,0.0051479805,-0.02758617,-0.012479137,-0.023637587,-0.02661587,0.024756128,0.014675788,0.0015632611,-0.04280101,0.024284454,0.007223345,0.008860726,-0.017721452,0.029621104,0.00074625504,-0.005606178,-0.019136474,0.020807546,-0.023934068,-0.023044625,-0.00023667909,-0.0011951873,0.0026161042,-0.013348363,0.0047773803,0.02161613,0.0035442903,-0.03250505,0.028677756,0.0023735291,-0.03986316,-0.0023347845,-0.003101254,0.008341885,0.019176902,-0.014487118,0.0016415927,-0.022721192,0.02900119,-0.009049395,0.03811123,-0.019365571,0.022074325,-0.02463484,-0.0056230235,-0.020052867,-0.004922251,-0.0077287094,0.034661274,0.019055614,0.011475146,-0.008112786,0.009918623,-0.0075265635,0.021602653,-0.007674804,-0.012903643,-0.003011973,0.016926344,0.02012025,-0.011852484,0.0050132168,0.011367334,-0.000571062,-0.015767375,-0.0027559216,-0.016912868,-0.015066603,0.025928574,0.009035919,-0.0021056859,0.032639816,-0.014487118,-0.013813299,0.018651323,-0.0006675024,-0.017384542,0.0012718342,0.009709738,-0.023866685,-0.044984188,-0.034256984,-0.012250038,-0.0025891513,-0.015214844,0.00043924607,0.014217591,-0.013011454,0.07266469,-0.005110921,-0.038919814,0.01146167,-0.021144455,0.022775099,-0.010012957,-0.009318924,-0.042235006,-0.01742497,0.00936609,-0.017101537,0.0010376819,-0.04083346,-0.013570724,0.02052454,0.018637847,0.0373296,-0.0007125641,-0.021454412,0.008247551,0.0006401285,0.0009559814,0.006020577,-0.01287669,-0.01668377,0.022599906,0.018449178,-0.02299072,-0.02489089,0.018678276,0.0029243764,-0.030618357,-0.0058453837,0.006579847,-0.024109261,-0.0103027,-0.009002228,0.009130253,0.04377131,-0.0026262114,0.00746592,-0.02900119,-0.019042138,0.02396102,0.004534805,-0.023031149,0.006805577,-0.009413258]},{"id":"4e1c5179-b2ff-45c2-96ad-091b5ce764fb","text":"I want to post and get paid how does this work","vector":[-0.012837825,-0.003189936,-0.011985441,-0.025610583,-0.03219542,0.0041382955,-0.037088495,-0.00771701,-0.010371765,-0.026313312,0.010397793,0.015980586,-0.017763438,-0.028577663,0.011354285,-0.02088668,0.023996908,-0.0045189406,-0.019051775,0.008745077,-0.025649624,0.013638156,-0.0062302165,0.013703223,-0.0004648262,-0.008341658,0.02523319,0.016227843,0.018973693,-0.0051338286,-0.0032826574,-0.003539674,-0.007183456,-0.027692745,-0.016540168,-0.0008385579,0.013703223,0.012401872,-0.006568568,-0.0016836225,0.015629223,0.013091588,-0.006266004,-0.028109176,-0.008992334,-0.0033347113,0.00012739004,-0.025545515,0.0007283497,-0.00049247994,-0.006526274,-0.017984668,-0.057155326,-0.014588142,0.007964266,0.01070361,0.01769837,0.016839478,-0.010625529,-0.0027572368,0.011959413,-0.0011045214,-0.022578435,0.0066564092,-0.011790237,-0.024881827,0.009753624,-0.00046523288,-0.012824812,0.00044530595,0.021172976,-0.0054331394,0.017333992,-0.00473041,0.0147573175,-0.0055144737,0.0037316233,-0.0021862693,0.004030934,0.016982628,0.026313312,-0.014510061,-0.0020821611,0.012057015,0.02808315,-0.0004371725,0.019871626,0.02126407,-0.016709343,-0.021524342,0.016384006,0.0045872615,0.01721687,0.008634462,0.0034030322,0.013442953,0.0016950093,0.024946894,0.007814611,-0.009649516,0.007372152,0.016227843,-0.04330895,-0.012831318,-0.02092572,0.01677441,-0.015290871,-0.023944853,0.035891254,-0.0037999442,0.010606009,0.021810638,0.005950426,-0.027042069,0.0014989934,-0.012174136,-0.026326325,-0.0037836772,-0.005836558,-0.018049736,0.02797904,-0.0045287004,0.01665729,0.024140056,0.013085081,0.0021049348,-0.011608048,-0.021797625,0.015277858,-0.0018170109,-0.014158696,0.023515407,-0.0022171764,0.0021260818,-0.0032127097,0.017008655,-0.007242017,0.0049418793,-0.034147445,0.005618582,0.019871626,0.028135203,-0.010339231,-0.00054168724,-0.016644277,0.008250563,0.013293298,-0.008953293,0.007502287,-0.013807331,0.004818251,-0.012902892,0.006536034,0.0011988693,-0.00073973654,0.031102283,0.011425859,0.019598342,0.0059113856,-0.037010416,0.001942266,0.017112762,-0.0068711317,-0.012993987,0.0029199058,0.044584278,0.03138858,-0.012941933,-0.0284215,0.011432366,-0.016748384,-0.010690596,-0.022981854,0.011855305,0.0021358419,0.03183104,0.0021358419,-0.0012143229,0.0021472287,-0.016943587,0.004798731,0.016787425,-0.009818692,0.045260977,0.003972373,-0.017828505,0.014223764,-0.029358473,-0.0042912043,-0.005208656,-0.014223764,0.016761398,0.0072290036,0.016449073,-0.6413056,-0.00673449,0.03786931,0.011399833,-0.0025425141,-0.00088166515,-0.02278665,-0.0037023427,-0.015069641,0.013664183,-0.016943587,0.0007202163,-0.001174469,0.003185056,0.013807331,-0.01677441,0.029462582,-0.029462582,-0.022227071,0.004203363,-0.02237022,-0.0066954494,-0.01144538,0.034251552,-0.0036307685,-0.00073119643,0.008888226,-0.004099255,-0.00066084217,0.03781725,-0.012102562,0.022318166,0.017542208,0.016266884,0.04820203,0.008562888,-0.004265177,0.0023375512,-0.020457234,0.032924175,-0.033002254,-0.024127042,-0.008966306,-0.0117577035,0.010176563,-0.024920866,0.021029828,-0.016084695,0.034069363,0.024868812,-0.009356712,0.045130845,0.0044766464,-0.006129362,0.008178989,-0.007723517,0.01769837,0.010033414,-0.0033770052,0.017190844,-0.009812185,-0.0035852212,-0.03906655,-0.03128447,-0.021771599,-0.0041740825,-0.006217203,0.021381192,-0.0062920307,-0.0051923892,0.010449846,-0.0028418247,-0.009831705,0.023658557,-0.009799171,0.025727704,0.0020057068,-0.007424206,-0.0064872336,0.0064709666,-0.002630355,0.0010532808,-0.012434406,-0.006415659,0.026391393,0.020288058,-0.016201816,-0.010573475,0.017841518,0.01896068,0.010475873,0.051663626,0.013612129,-0.0035591943,-0.008712543,0.0020040802,-0.003780424,0.019390127,0.007391672,0.008068374,-0.011159083,-0.007573861,-0.017360019,-0.0030793212,0.051637597,-0.0063668587,-0.01992368,-0.0037511436,0.018362058,-0.034563877,-0.0012924039,-0.005670636,-0.018388085,0.007131402,-0.01200496,-0.03932682,0.02092572,-0.0075673545,0.005293244,-0.010606009,0.009831705,0.020691477,0.021771599,-0.0033184444,-0.01573333,0.0048572915,0.016449073,-0.015629223,0.0056641293,0.013807331,0.006405899,-0.012375846,0.008582409,0.00061366824,-0.0027995307,-0.014510061,0.00090362545,0.007905706,0.021979814,-0.029410526,-0.01170565,-0.0066596624,-0.007105375,0.0152258035,-0.017555222,-0.017373033,-0.012850839,0.00005332488,-0.008432752,0.017386045,-0.014314858,-0.040419955,-0.023216097,-0.001472153,-0.029488608,-0.014132669,0.0078015975,-0.009187536,-0.03539674,-0.007326605,-0.012870359,0.0021439753,-0.014327872,-0.000396912,-0.031232418,0.0045905146,-0.005309511,0.0010874412,0.004515687,-0.014327872,0.005804024,0.0117577035,-0.017984668,0.00015687376,0.007508794,-0.00648398,0.015043614,-0.009948826,-0.009695063,-0.0013420179,0.0014835398,-0.008419739,0.0097731445,-0.0043237377,0.014444993,-0.0020707743,-0.01952026,0.046276033,-0.026326325,0.014484034,-0.0107491575,0.012629609,-0.006760517,0.02104284,0.0044245925,0.0030288938,0.028005067,0.0016063548,0.0088687055,0.017451113,-0.0061326153,-0.0004928866,0.023203084,-0.018192884,-0.0014038321,-0.03219542,0.003643782,-0.031076256,0.024048962,0.026833853,0.010690596,-0.02106887,0.012837825,0.0009727597,-0.00086377154,0.011237164,-0.025818799,0.003952853,-0.016318938,0.031857066,-0.018986708,-0.010677583,0.008693023,-0.01996272,0.0057649836,0.02808315,-0.0004257857,0.002521367,-0.011601542,-0.03268993,-0.023177058,0.01322823,0.0032143362,0.020301072,0.028551634,-0.015577168,0.011354285,0.0091940425,0.034251552,-0.0034192991,-0.0018235177,0.024738677,0.03216939,-0.019338071,0.01832302,0.03297623,0.0058821053,-0.006249737,-0.012434406,0.010098482,-0.009857732,0.0067865443,-0.011933386,0.009102948,0.014197737,-0.01829699,-0.02278665,-0.017633302,0.0018723183,0.012980973,0.031674877,0.0041220286,0.0015144469,-0.019286018,0.024101015,0.012909399,-0.005914639,-0.020405179,-0.012434406,-0.0284215,-0.012024481,-0.029879013,0.0010313204,-0.017373033,0.02289076,0.0022464567,0.0006315618,-0.010937853,0.019012734,0.031414606,-0.022214057,0.003225723,0.012057015,0.020457234,-0.018388085,-0.007189963,0.0044733933,-0.010671076,0.017659329,-0.005836558,0.0056348485,0.0015738211,0.010118002,-0.018609315,-0.0006169216,-0.0072224964,0.050986923,0.0054461528,0.007795091,-0.00773653,0.029748878,0.021381192,-0.012200163,-0.037140552,0.010339231,0.00875809,0.015342926,-0.036958363,0.0074957805,-0.013338845,0.021823652,0.0077039963,-0.0029963602,0.005107802,0.016605236,-0.0062562437,-0.014471021,0.0061065885,0.02633934,-0.00051647355,-0.021602422,0.0150826555,-0.027536582,0.011536474,0.099006765,0.0095909545,0.008257071,0.022942813,-0.040055577,-0.0022952573,-0.0060220007,-0.021628449,0.015941547,0.003952853,0.028109176,-0.0052834842,-0.017529195,0.01292892,0.02036614,-0.003116735,0.007788584,-0.03242966,0.017802479,-0.033626903,0.010495394,-0.009551914,0.011822771,0.024842786,0.032663904,0.028968068,0.019103829,0.0054917,-0.007586875,-0.0072355103,-0.008107415,-0.008126935,-0.004766197,0.012499474,0.023307191,0.025311273,0.0026238484,0.02300788,0.025441406,0.021316126,0.005885359,0.025701677,0.0038975454,-0.022630488,0.008686516,-0.008595422,-0.00025112001,0.01521279,0.020639423,0.0031411354,0.027692745,-0.0052997507,-0.028187256,-0.011861812,-0.0035526876,0.00871905,-0.015316898,-0.009102948,-0.007189963,-0.004697876,-0.021732558,-0.02463457,0.021979814,-0.0026775291,-0.024179097,-0.024322245,-0.004779211,0.0089598,-0.0036633024,-0.001973173,-0.01491348,-0.015355939,-0.022135977,-0.020821612,0.020431207,-0.011107028,0.027484527,-0.0051858826,0.023684584,0.011172096,-0.023307191,-0.04679657,-0.0018934653,-0.016722357,0.001046774,0.011035454,0.002506727,0.010645049,-0.008250563,0.024218136,-0.006568568,0.013638156,0.02849958,-0.034329634,0.016930573,0.007899199,0.005885359,0.015603195,0.0016868759,0.014770331,-0.0085433675,-0.00070964283,0.00003642257,-0.025441406,-0.006311551,0.03190912,0.03331458,0.032143362,-0.021511327,-0.011315244,0.026469475,0.007899199,0.030842012,0.006054534,0.017360019,0.051767733,-0.01316967,0.017776452,0.0040179202,0.007769064,-0.011302231,-0.04062817,0.028473554,0.012414886,-0.021914747,0.005586048,-0.0069557196,-0.015238817,0.001795864,0.0006295284,0.014002534,0.021992827,-0.0133128185,-0.020756545,-0.016904546,-0.008517341,0.0052021495,-0.015668264,0.0013623516,-0.015811412,0.0008239177,-0.033236496,-0.02463457,-0.004115522,0.02192776,-0.038650118,0.0015307138,0.0016982628,-0.02359349,0.03922271,0.022175016,0.009083428,-0.027146177,-0.021329138,0.01469225,-0.03599536,-0.014705263,-0.008432752,0.01342994,-0.0049614,-0.0074111926,0.020340113,0.021940773,0.034641955,0.008530354,-0.015759358,0.02066545,-0.015069641,0.0008662116,0.024244165,0.0037869306,0.021628449,0.01144538,0.01292892,0.0034192991,0.010215604,-0.010527927,0.01799768,-0.039821334,-0.025129084,0.017008655,0.01587648,-0.0062627504,-0.0048052375,-0.029020121,-0.0137813045,0.016566195,-0.005852825,0.034824144,0.008588915,0.006552301,-0.0020902946,0.024127042,-0.0013721117,0.024881827,-0.0022578435,-0.002646622,-0.02808315,0.003985387,0.020912707,0.030113256,0.021342153,-0.009864239,0.026352353,-0.032143362,0.01124367,-0.018349046,-0.011133055,-0.029254364,0.0078211175,-0.022851719,-0.023645543,-0.02259145,-0.010801211,-0.0068255845,0.0076194084,-0.007131402,0.016019627,-0.00024929,-0.036385767,-0.016384006,-0.017581249,-0.009324178,0.0067214766,0.003982133,0.028577663,0.029046148,-0.0075348206,0.0107101165,-0.016735371,0.0017633303,0.0065718214,0.042580195,-0.01747714,-0.024777718,0.018713424,0.00013440513,-0.010091975,-0.00623347,0.023437327,0.0200408,-0.0229298,-0.012818305,0.0074957805,-0.0029312926,0.017672343,-0.010404299,0.004431099,-0.011133055,-0.000570561,-0.008100908,0.01573333,0.00084343797,0.019637384,0.012486461,0.003555941,-0.010326218,-0.02411403,-0.021329138,0.027614662,-0.0043400046,0.010950866,-0.025805784,0.015421006,0.021094896,-0.02014491,-0.017073723,-0.025909893,-0.022773638,0.01873945,-0.01687852,0.0024009922,-0.015004574,0.0036828227,-0.015863465,-0.0018658116,-0.00845878,-0.026014002,0.010293684,-0.011087508,0.0164751,-0.009629996,-0.038676143,0.006145629,-0.004811744,0.00048963324,0.006610862,0.019884638,0.015147722,-0.008816651,0.006318058,-0.006929693,0.003461593,0.019507248,0.006597848,0.027484527,0.013508021,0.026196191,-0.007866665,0.0032566302,0.0053192712,-0.006122855,-0.024530461,0.007573861,-0.010924839,-0.039769277,0.018986708,-0.005540501,-0.003686076,-0.025987973,0.0020057068,-0.005569781,-0.008823158,-0.006187923,0.010254644,0.042059656,0.009070415,0.018010695,0.0006571821,-0.0134559665,0.00942178,-0.0103847785,0.021979814,-0.0045059267,-0.005576288,-0.034251552,0.029696824,-0.0100204,0.001616115,-0.024439367,0.021159964,0.021563381,-0.011562501,-0.017360019,-0.006767024,-0.013677197,-0.01521279,0.03870217,-0.021107908,-0.018270964,-0.013911439,0.019689437,0.015824424,0.021290097,-0.016891534,-0.00022082296,-0.033106364,0.0029670796,0.0019813066,-0.014705263,-0.011172096,0.043621276,0.0047694505,-0.043100737,-0.0048540384,-0.0072680437,-0.055853974,-0.024283204,-0.012336805,0.008693023,0.0040699746,0.006415659,0.0012728837,0.021172976,0.013599115,-0.0014054588,-0.016449073,-0.01870041,-0.01595456,-0.016813451,-0.007502287,-0.0016885026,-0.044792492,0.0018137576,0.030451607,0.019910667,0.015134709,0.008087895,-0.004681609,0.01491348,0.008666996,-0.016644277,0.008224537,-0.0074176993,0.027042069,-0.034902226,0.005774744,0.013091588,-0.016540168,-0.010794705,0.00065514876,0.015681276,-0.012753237,0.0214853,-0.005455913,-0.0037413833,-0.014731291,0.011152576,0.030373527,-0.0009996,0.0010370138,0.017789464,0.023398286,-0.036411792,-0.010937853,0.017685357,-0.016852492,-0.016162775,0.018062748,-0.017581249,-0.009246097,0.010716624,-0.0036210085,-0.006812571,-0.0059276526,-0.014588142,-0.00034363792,0.025779758,0.0050394805,0.014549102,-0.032221444,-0.0067279832,-0.022851719,-0.010612516,-0.017151803,-0.025090043,-0.009369725,-0.014731291,0.008693023,0.0099162925,0.0099228,-0.02816123,0.03235158,0.010287178,0.008022827,0.006399392,0.23111989,-0.014340885,0.0011931759,0.02441334,0.023151029,0.034225523,0.012030988,0.011985441,0.002308271,-0.01200496,0.0112892175,0.0139244525,-0.023281164,0.0025425141,0.0065555545,-0.030842012,-0.01617579,-0.01565525,-0.0066271285,-0.012076535,0.022916786,0.005888612,-0.008706036,-0.007983787,0.028265338,-0.00024501994,0.0042424034,-0.0032826574,0.013534048,0.007983787,-0.018023707,-0.0017194097,0.0043074708,-0.018778492,-0.017932612,-0.007905706,0.014900466,-0.015837438,0.023801705,0.036906306,0.033861145,-0.00522167,-0.0025864346,-0.024387313,0.0031720425,0.01591552,-0.0063733654,-0.003215963,-0.010300191,0.014614169,-0.033626903,-0.016566195,0.01200496,0.014197737,-0.017542208,-0.0082180295,0.010065948,0.003946346,-0.018778492,0.027718771,0.0040732278,0.030711878,0.0021179484,0.020157922,-0.0019829331,-0.001665729,0.0055014603,0.00035238138,0.040419955,-0.0040894947,0.00019245758,-0.005553514,-0.013846372,-0.0018381579,-0.005172869,-0.0077495435,0.031336527,0.03599536,0.031961173,0.014275817,0.00046726625,-0.013898426,0.004369285,-0.027510555,0.0031183618,-0.02667769,0.011516954,-0.004213123,-0.016462088,-0.014822385,-0.00016988727,-0.002793024,-0.044948656,-0.033470742,-0.029410526,-0.022292139,0.017789464,0.03505839,-0.006767024,-0.005143589,-0.00747626,0.059341595,0.015316898,0.0030044934,-0.0057812505,-0.002636862,-0.0144319795,0.016305925,0.014679236,-0.0063928855,0.0053680716,-0.034069363,0.019585328,0.0012492967,-0.013521034,0.0124279,-0.000052003197,-0.03461593,0.012616595,-0.0010402673,-0.01814083,-0.028265338,-0.012440913,-0.015707303,0.022122962,-0.009636502,-0.0047239033,-0.005351805,-0.0020236005,-0.028005067,0.013937467,0.016410032,-0.015525115,-0.012525501,-0.033054307,0.006549048,-0.0024823265,-0.00996184,-0.0060317605,0.0072550303,-0.022201044,0.0036014882,-0.001041894,-0.020535314,0.016357979,-0.030061202,0.0134559665,-0.013241244,0.0006311551,0.008933773,-0.010924839,-0.02515511,0.020496273,-0.01587648,0.032039255,-0.0050817747,-0.012870359,-0.027354393,0.0045189406,-0.010508407,-0.008231044,-0.0012891506,0.040393926,-0.026170162,-0.031700905,-0.017008655,-0.16386609,0.010300191,0.019689437,0.023957867,0.007743037,0.02575373,0.0134950075,0.0021797626,-0.020600382,-0.0030549208,0.020977775,-0.013364872,-0.0015551142,-0.014640196,-0.011308738,-0.0050459877,-0.02226611,0.022955827,-0.0032208432,0.017268924,0.036984388,-0.00090931886,-0.0005148469,-0.040341873,0.0052672173,0.00029565062,-0.008510834,0.014861425,-0.023983894,-0.033783067,-0.015030601,-0.0028044109,0.009343699,0.005774744,0.014614169,0.006412406,-0.008165976,-0.022214057,0.00775605,-0.00044977936,0.02266953,0.012063521,-0.012935426,0.007690983,-0.0035852212,-0.0038031975,0.011673116,0.008406726,-0.002892252,-0.006649902,0.008894732,-0.010931347,0.011341272,0.00085970486,0.020730518,0.009532394,-0.007105375,0.007580368,-0.010788198,0.0019178657,-0.009089935,-0.032637876,-0.0022269364,-0.013833358,-0.019299032,-0.018101789,-0.012785771,0.00773653,-0.031414606,0.010228617,-0.017151803,-0.013612129,0.016787425,0.003310311,0.011120042,0.00547218,-0.032559797,-0.00397888,-0.0059797065,0.03209131,0.010280671,0.032637876,-0.009662529,0.035292633,0.003289164,-0.0051761228,0.020014774,0.025987973,-0.021823652,-0.02860369,0.002207416,-0.0067409966,-0.015160736,-0.008966306,0.018114801,0.002067521,0.021524342,0.026118109,0.015590182,-0.0159936,0.021355165,0.01244742,-0.0374789,0.013351859,0.029957093,0.0058398116,0.008562888,0.027042069,0.022318166,-0.0042424034,-0.033470742,0.024582516,0.010573475,0.04336101,0.034485795,0.012492967,-0.00068158243,-0.010905319,0.0076649557,-0.0069101723,0.040029548,-0.02248734,-0.022864733,0.0027181963,-0.0041220286,-0.0035624476,-0.09827801,-0.012974467,-0.003956106,-0.0038292245,-0.0052834842,0.0139634935,0.013716237,0.02237022,0.006181416,0.02140722,-0.030685851,-0.026274271,0.008224537,-0.013703223,-0.003409539,-0.014353898,-0.007638929,-0.019064788,0.009089935,0.026508514,0.00094429264,-0.02400992,-0.012024481,-0.022396246,-0.023775678,-0.004629555,-0.023554448,0.007866665,0.008946787,-0.0028532115,-0.0047727036,-0.026990015,-0.007964266,-0.0027425967,0.007521807,-0.013534048,-0.03802547,-0.006604355,0.024309231,-0.034251552,0.011321751,-0.012492967,0.000108479784,-0.013013507,-0.0084002195,0.007853651,-0.02106887,-0.006129362,0.020600382,-0.016019627,-0.012948439,-0.0026807825,-0.028707797,-0.011165589,0.024946894,0.0030874547,-0.02808315,0.051143084,-0.033783067,0.010111495,0.009877252,0.010651556,-0.0067475038,0.009343699,0.010729637,0.0060805613,0.0002978873,-0.0129159065,0.025831813,0.01465321,-0.011347778,0.0076324223,-0.017190844,0.010846758,-0.0016478354,-0.013377885,-0.014080615,-0.000148842,0.010976894,0.0055014603,-0.02226611,-0.02074353,-0.02519415,-0.034329634,0.02585784,-0.024777718,0.0070142807,0.01246694,-0.005143589,-0.02319007,0.0056446088,0.018375073,0.014874439,0.027926987,-0.0069882534,-0.018244937,-0.023203084,0.013364872,-0.011796745,-0.00060268806,-0.023138016,-0.007007774,-0.04367333,0.0058593317,-0.0039495993,-0.016370993,0.010235123,-0.0029556928,0.00773653,-0.020353125,-0.016553182,-0.008029334,-0.0011647089,0.02259145,-0.00499068,-0.021433247,-0.002710063,0.013338845,0.006370112,0.0074827666,0.006051281,-0.02166749,-0.010007387,-0.012740224,0.012681663,-0.017229883,0.011738184,0.041461036,0.004213123,0.020249018,-0.016891534,-0.0050297207,-0.005605568,-0.021654475,-0.010950866,0.030295445,-0.00025234005,-0.002256217,-0.00198944,0.037713144,-0.015616209,0.006070801,-0.020509288,-0.01844014,0.007918719,-0.0122652305,-0.004626302,-0.022122962,-0.005078521,-0.006682436,0.016605236,0.009714583,0.028473554,0.020314084,-0.014106642,-0.022695556,-0.008244057,-0.01424979,0.0010573475,-0.012675156,-0.0014119656,-0.040940493,0.03659398,0.016826466,-0.00068808923,-0.020717504,-0.0060773077,0.009851225,-0.012148109,-0.008367686,0.0068581183,-0.04028982,-0.0041578156,0.008341658,0.01844014,-0.002752357,0.028343419,0.015017588,0.0034160458,-0.015004574,-0.02300788,0.023580475,0.008387205,0.005016707,-0.018153843,0.008393712,0.029540662,0.041382954,-0.01395048,0.029748878,-0.0144319795,0.0035169004,-0.024790732,-0.012876865,-0.005146842,-0.006249737,0.026781797,0.0042912043,0.009571435,-0.014900466,-0.008022827,0.0134559665,0.03880628,0.0010109869,0.002568541,0.009141989,-0.01591552,0.01587648,-0.01896068,-0.04159117,0.0070142807,0.011822771,0.0017194097,-0.009532394,0.00063603517,0.00032493102,-0.0064449394,0.014705263,0.027042069,-0.027718771,-0.03628166,0.031258445,-0.00421963,-0.023268152,-0.015290871,-0.027406447,0.019767517,0.008523847,-0.009018361,-0.012623102,0.013573089,0.009037881,-0.028369445,0.00066084217,-0.011328259,-0.023541436,0.022005841,-0.013534048,-0.030711878,0.013052548,0.01421075,0.079798825,0.023801705,-0.0029508127,-0.000045293105,-0.002171629,0.0040732278,0.026508514,-0.012252217,0.01547306,0.0022301897,0.0035591943,0.011061481,-0.0068581183,-0.026586596,0.014991561,0.0046685957,0.002667769,0.000824731,-0.015564155,-0.0084002195,0.034329634,0.017034682,-0.00032757438,-0.01068409,-0.024764705,-0.016943587,-0.0044603795,-0.01369021,-0.012323791,-0.04255417,0.0080358405,0.008406726,0.015902506,-0.01346898,-0.00040809545,0.0049256124,0.0038812787,0.0019666662,-0.003764157,0.020613397,0.009909786,0.029280392,-0.01144538,-0.018036721,-0.023957867,0.0003265577,-0.0090118535,0.0036242618,-0.02972285]},{"id":"9a862e6b-d1be-4565-8205-c70cb739acf3","text":"Create an app to use 😊","vector":[0.005144945,0.013932388,0.0040460904,-0.027172906,0.013070941,0.014610694,-0.0061725774,-0.0063625025,0.0068271416,-0.0057486366,0.0070340247,-0.023889909,-0.002318108,-0.010805402,-0.0039952174,0.017635934,0.017242517,-0.0053043463,-0.012100965,0.0069119297,-0.012555429,0.0027437445,0.0057622027,-0.001802596,-0.022709658,0.011938171,0.010371286,-0.020376287,-0.004914321,-0.019548755,0.043194473,-0.0014702264,-0.0013252387,-0.01831424,-0.007909038,0.007291781,-0.0065999096,-0.0076377164,0.022153446,0.0032846928,0.018259976,0.020566214,-0.0028556648,0.007169686,-0.01911464,0.019318132,-0.016564213,-0.009143554,0.0060606566,-0.0017415485,-0.003920604,0.013369395,-0.027200038,-0.009659066,0.000050766903,0.0216515,-0.020905366,0.008553429,-0.00591143,-0.0066066924,-0.01740531,0.0073867436,-0.006308238,0.004687089,-0.00022172101,0.008865449,-0.0070815063,0.016170796,0.02002357,-0.011022459,0.020552646,-0.00915712,0.016862666,-0.02224841,-0.003985043,0.0050465907,-0.0061352705,-0.0032066877,0.013037026,-0.011253083,0.0011064854,-0.024853101,-0.0024724223,0.03196174,0.0038290326,-0.0032948675,-0.001337957,0.023903474,-0.03562459,-0.009299564,0.016645608,0.006006392,-0.015085507,-0.0009216472,-0.006057265,0.022587562,0.0035034462,0.026684526,0.016550647,-0.03565172,0.008037916,0.015126206,-0.032070268,-0.010432334,-0.0116939815,-0.02102746,0.026277542,-0.006094572,0.021407312,-0.0013252387,0.0034017004,0.025585672,0.0018229452,-0.04864805,-0.014787053,0.0008063353,0.009211385,-0.021081725,-0.016116532,0.0020908758,0.015953738,0.036954068,0.032911368,-0.01807005,0.00080718315,0.009889689,-0.02740353,-0.017500274,-0.025612803,-0.039504495,0.048024006,0.002998109,0.0006058113,0.021244518,-0.014637826,0.019874342,-0.020729007,0.028543083,-0.004683697,0.0062132753,0.018219277,0.039748684,-0.0022604521,0.0014464858,-0.0035441446,0.02231624,-0.000980151,-0.03464783,0.0052399077,-0.023998437,0.0065354705,-0.023496492,-0.0010759616,-0.018965414,0.001867035,0.033236954,0.01691693,0.031391963,-0.019887907,0.0097065475,0.012256974,0.024527516,0.007088289,-0.01671344,0.009102856,0.0216515,0.012684307,0.0056367163,0.00034657156,0.0065693855,-0.009007893,0.0102288425,-0.033888128,-0.0041681854,-0.02315734,-0.0062437993,0.005250082,0.012582561,-0.00034381595,-0.00820071,-0.020878233,0.0056468905,0.0014871841,0.03551606,-0.009482707,-0.0061691855,0.0067525283,0.0036289326,-0.0013413485,-0.0023808512,0.0011081811,0.017595237,0.020918932,-0.029655503,-0.6472659,-0.0142715415,0.018205712,-0.025734898,0.011531188,0.02218058,-0.0005858861,-0.03798509,-0.022099182,0.01309129,-0.018029353,0.0016143663,0.014963413,-0.018694092,-0.0040121754,-0.028543083,0.015858775,-0.03771377,-0.0137153305,0.011612585,-0.008723005,-0.0077801603,-0.020864667,-0.009577669,-0.00473457,-0.012338371,0.018612694,0.004636216,-0.008085398,0.027566323,-0.012175578,0.028977197,0.021325914,-0.015546755,0.049624808,-0.011938171,-0.025897691,0.031636152,0.0016186057,0.015085507,-0.032233063,-0.0031032462,-0.007583452,0.009455575,-0.009353829,-0.0075020553,0.021190254,-0.015885908,0.013484707,0.0017016982,0.015112639,-0.0014982065,0.012745354,0.026589563,-0.009102856,-0.0067864433,0.022411203,0.0029591064,0.011097073,0.032477252,-0.006131879,0.01220271,-0.023333699,-0.021719333,-0.0058402075,0.013762812,0.0007970086,-0.01942666,-0.016971195,-0.032748573,0.008058266,-0.01373568,-0.010900364,-0.004368285,-0.003318608,0.028868668,0.02384921,-0.016591344,0.005924996,0.010371286,0.016794836,0.0031235954,0.0015974087,-0.014095182,0.018748356,-0.0014388548,-0.028217496,-0.01640142,0.0062912805,0.0054060924,0.023062376,0.0065829516,-0.0025334698,-0.01946736,0.010703656,0.024771705,-0.014352937,0.004768485,0.021542972,-0.0040833973,0.0032524734,0.019168904,0.007970086,0.018761922,0.015546755,0.0045107296,-0.0048464905,0.028434554,0.053884562,-0.01733748,-0.013654283,-0.024703875,-0.0050669396,0.015709547,0.02287245,-0.032260194,0.004063048,-0.0132608665,0.02938418,-0.008390635,-0.00015728202,-0.0345393,0.007827641,0.0028200538,-0.01262326,0.021488708,-0.0027742682,-0.0070068925,-0.012399418,-0.009855774,0.015194036,0.01229089,0.011395527,-0.0008135423,0.019508056,0.016564213,0.016971195,0.0041037463,-0.015953738,-0.0033966133,-0.00044301807,-0.0029387572,-0.013884907,0.0137831615,0.009889689,-0.012772487,-0.0027437445,-0.02053908,0.0067491364,-0.0042088837,-0.013620368,-0.0060776146,-0.017988654,0.012067049,-0.0024486817,-0.0006138662,0.0002488532,-0.022709658,-0.017703766,-0.020010002,0.007861557,0.02416123,-0.0050262413,-0.00922495,-0.016577778,0.0010318718,-0.0075020553,0.028570214,0.0069797602,-0.031039245,-0.009231733,-0.0061352705,-0.0126707405,0.030822188,0.01373568,0.009367394,-0.021149555,-0.013186253,0.023550756,-0.007834425,0.008126096,-0.004042699,-0.018409202,0.005813075,0.012786053,0.0023079333,-0.0084177675,0.030767923,-0.026643828,0.016672742,0.007970086,0.016075833,0.0028980589,0.017988654,-0.011931388,0.027701983,-0.021298783,0.013213385,0.015763812,0.011415876,-0.0028454904,0.002960802,0.037903693,-0.008404201,0.0044971635,-0.017703766,0.013640718,-0.0072714314,-0.0024096791,0.01140231,-0.0027437445,-0.003391526,-0.0075224047,-0.0015974087,-0.002847186,0.0045683854,-0.0006270083,0.020213494,-0.019223168,-0.00034042442,0.010615476,0.00020614118,0.009530188,-0.009835425,-0.028977197,0.023564322,-0.007902255,0.016048701,0.0031371615,-0.03882619,-0.03174468,0.006504947,-0.012297673,-0.00562315,0.012039917,-0.0042868885,-0.017649502,-0.011951737,0.0130166765,0.007040808,0.022546865,-0.004965194,0.014746355,-0.008682306,0.043438666,0.01744601,0.01813788,0.0013667849,-0.005758811,0.02176003,-0.016306456,-0.0073121297,-0.024418987,0.004507338,-0.0043954174,-0.013165903,-0.009509839,0.011531188,0.009943954,0.056380726,0.006783052,0.02002357,-0.03255865,-0.011103855,0.008885798,-0.0028353157,0.006189535,-0.045283653,-0.012209494,-0.026209712,-0.018531298,-0.0036289326,-0.0005142401,-0.004476814,-0.0008483054,-0.0008851883,-0.007474923,0.016903365,0.017812295,0.015288998,-0.004236016,-0.007027242,0.026942281,-0.003140553,0.021366613,-0.01309129,-0.030035354,0.0076173674,-0.0037883346,-0.0018890799,0.015465358,-0.0031778598,0.008017567,0.012324805,-0.016862666,0.0024198538,0.030442337,-0.004985543,0.012962412,0.013674633,0.005901255,0.022750355,-0.020823969,-0.030795055,0.020634044,0.008797619,-0.00915712,-0.016998328,0.013342263,-0.008031134,-0.01269109,0.0038866887,0.00025712006,-0.019168904,0.011653283,-0.0046192585,-0.01653708,-0.0048600566,0.025789162,0.01737818,-0.015126206,-0.038419206,-0.016130097,0.0092453,0.059907913,-0.005816467,0.0002331674,-0.00083897874,-0.019806512,0.012372287,-0.021570105,-0.04045412,-0.0034203539,-0.005609584,-0.027037244,0.0076241503,-0.0050465907,0.0023842426,0.010337371,0.0016482816,0.005657065,0.009618367,-0.0036424987,-0.009442008,0.0076241503,0.019738682,-0.0038154665,0.0047413534,0.050221715,0.01315912,0.014176578,0.007569886,-0.0061624027,-0.0007711482,0.006925496,0.014257975,-0.0099168215,-0.0072578653,0.007074723,0.026589563,-0.013009894,0.032477252,0.00422245,0.03603157,0.025477143,0.01155832,0.0021298784,-0.010920714,0.018354937,-0.0035780598,-0.02420193,0.0032779097,0.00034699548,-0.016686307,0.022356939,0.017188253,-0.00393417,0.0033677851,0.0052738227,0.02106816,-0.008919713,-0.01740531,-0.01293528,-0.06490024,-0.041132428,0.017351046,-0.00087670947,-0.0020790054,-0.0037035462,-0.033752467,-0.022587562,0.0013184557,0.0027149166,-0.01317947,-0.0019789555,-0.03478349,-0.012507947,0.027105074,-0.009910039,0.011266649,0.008723005,0.010934279,-0.024731006,0.035190474,0.012297673,-0.010398419,0.019725114,-0.014610694,-0.018843317,-0.007447791,0.016008003,0.0017254389,-0.007549537,-0.0034135708,0.001180251,0.02053908,0.046043355,-0.04023706,0.007861557,0.005450182,0.0064608566,0.011788944,-0.014488598,-0.014325805,-0.0037374615,-0.018192144,-0.0061963177,-0.012223059,0.0071154214,0.02057978,0.0112463,0.024608912,-0.018110748,0.0037883346,0.010588344,0.0025521233,0.009035025,0.0012845404,-0.0014710744,0.007644499,0.0051110294,0.010574778,0.011951737,-0.009014676,-0.00029845428,-0.02260113,0.023347264,0.02113599,-0.01796152,0.014854884,-0.0030065877,-0.029275652,-0.0056367163,0.01493628,-0.018599128,0.0068407077,-0.017147554,0.0077123297,-0.021041026,-0.017106857,-0.020525515,0.017568104,0.0056604566,-0.025395745,-0.026928715,0.02022706,0.0040087835,-0.01002535,-0.017663067,-0.03600444,-0.000779627,0.0008186296,0.0009708243,0.014610694,-0.011144554,0.008261757,-0.049082164,-0.012487599,-0.009482707,-0.02698298,-0.024242627,-0.0027878343,0.012501164,0.020796837,0.026874451,0.008566994,0.029818296,-0.013932388,0.007454574,-0.011585453,0.011571886,-0.018477034,-0.004714221,0.009618367,0.02218058,0.01691693,0.023442227,-0.014895582,-0.018544864,0.0061929263,-0.015587453,-0.00931313,-0.014949846,-0.018639827,-0.028461685,0.014949846,-0.022044918,0.018707657,-0.024527516,0.007047591,-0.00070925284,0.0069933264,0.040616915,0.0058469907,0.02913999,0.006816967,0.022153446,0.01653708,-0.0011268345,-0.038527735,-0.015926605,-0.003513621,-0.005429833,0.02593839,0.026087618,0.00085805607,0.0018195537,0.023374397,0.015370395,0.027661284,0.005565494,-0.018707657,-0.0010827447,-0.026630262,-0.0007694524,-0.0328571,-0.010147446,-0.0052026007,-0.005802901,0.019765813,-0.0049482365,0.011829643,-0.006783052,-0.01851773,-0.025653502,-0.0042597568,0.025287217,0.016971195,0.019752247,0.003198209,0.0036323243,-0.011117422,0.018748356,-0.008845099,-0.010072832,0.009129988,0.016550647,0.022343373,-0.013254084,0.011219168,0.011456574,-0.038066488,-0.0021366614,0.02040342,0.010079615,0.012758921,-0.024554648,0.005728287,-0.013287999,0.023401529,-0.01956232,-0.006725396,0.027715549,-0.011395527,-0.01577738,0.007841208,0.0037747684,0.02371355,0.015655283,0.008024351,0.011063158,-0.018843317,-0.009896473,0.0019857385,0.012318023,0.0052975635,0.020104965,0.02364572,0.0050160666,0.0077462452,0.0144479005,0.0072578653,0.0064472905,0.027512059,-0.014868449,-0.010208493,-0.01026954,-0.017147554,0.018666958,-0.010954629,0.0015719723,-0.020186363,0.00074698357,-0.013857774,0.02938418,-0.02722717,-0.019318132,-0.027837645,0.009191035,-0.001494815,0.0022485817,-0.011354829,0.018721223,-0.0132473,-0.015044809,-0.028841536,-0.016265757,0.00788869,0.009197818,-0.003276214,0.017052593,0.016238626,-0.025232952,-0.0048736227,0.028054703,0.0052602566,-0.00091825565,0.041620806,-0.0038425988,-0.004951628,0.005385743,-0.008288889,-0.022506166,-0.026820187,0.012677524,0.008193927,-0.0060403077,0.0039002548,0.008621259,0.018666958,0.0070204586,-0.022126315,-0.033182688,-0.0011522709,0.009062157,0.0023282825,0.0035543193,0.021041026,0.0026369113,-0.032775708,0.009604801,0.00811253,-0.033454012,-0.008431333,-0.0047820513,0.01317947,-0.0075156214,-0.02211275,-0.050710097,0.002280801,-0.009550537,-0.002431724,0.012772487,-0.0033423488,0.013688198,-0.0013303261,0.0081057465,0.0056028008,-0.0014176578,0.005307738,-0.047155775,-0.02496163,-0.016794836,-0.01598087,-0.0070068925,0.028733008,0.021665068,-0.027919041,-0.026263976,-0.01907394,-0.032043137,-0.0033864386,-0.013973087,-0.0043241954,0.010656174,0.0039986093,-0.0007346893,0.021298783,-0.002718308,0.00034593564,-0.017568104,-0.023035243,-0.0014151142,-0.020783272,0.00036670873,-0.017418876,-0.027593454,-0.013545754,0.015275433,0.007447791,0.0003912973,0.02211275,-0.008275324,0.006298064,0.0033677851,0.01260291,0.00030375354,0.02064761,0.020145664,-0.013620368,-0.0028505775,0.015655283,-0.0071222046,0.016645608,-0.008607693,0.014664958,-0.013932388,-0.00591143,0.016564213,0.0009877819,-0.00995752,0.012975978,0.016306456,-0.049136426,0.011354829,-0.0046972632,-0.025070159,-0.016130097,0.0076716314,0.021108856,-0.012392635,-0.0018924715,0.005243299,-0.03576025,-0.017188253,-0.015967304,-0.0022299283,-0.018585563,-0.03182608,0.018232843,-0.024432553,0.0062437993,-0.014949846,0.017608803,-0.0126707405,-0.016252192,0.027200038,0.0057622027,0.0073121297,-0.017785162,0.016767705,0.009903256,-0.0013252387,0.003968085,-0.009570886,-0.019277433,0.009564103,0.022424769,0.0076851975,0.0022706266,0.25721332,0.009869341,0.00409018,0.042082053,-0.004744745,-0.0042665396,0.0004743897,0.0046769143,-0.014963413,0.014352937,-0.022384072,-0.026616696,0.0038358157,0.005358611,-0.0055892346,-0.019874342,-0.030496601,-0.03871766,-0.034186583,0.0020230452,0.006057265,-0.014230843,-0.0091842525,-0.000109906636,0.0200507,0.018639827,-0.0077801603,0.0200507,0.020132098,0.015099074,-0.017215386,0.0089400625,0.007719113,0.006382852,-0.0013659371,-0.0027878343,0.035109077,-0.008851883,0.02789191,0.0135050565,-0.0046023005,0.019209603,0.007217167,-0.017635934,-0.00026347916,-0.014868449,-0.011585453,-0.022424769,0.030632261,0.0001380987,-0.012087398,0.0048193582,0.039504495,0.00268948,-0.0057554194,-0.01900611,-0.0040020007,0.014624259,0.00054349203,0.010344154,0.011849992,0.019019678,-0.014461466,0.015519623,-0.027010113,-0.018992545,-0.029221388,0.0061081382,0.020634044,0.0047176126,-0.042868886,-0.0025521233,0.006847491,0.008051483,-0.02120382,-0.041268088,0.00021525592,0.024079833,0.021963522,0.049353484,-0.01691693,-0.0004413223,0.0019721724,-0.03147336,0.011463357,-0.03502768,-0.008017567,-0.01580451,-0.027077943,-0.003971477,-0.008302456,-0.018951846,-0.008804401,-0.027620587,-0.0015422964,0.004507338,-0.0019806512,0.025287217,0.009252083,0.027756248,-0.032748573,0.0029099293,0.01740531,0.01695763,-0.035434663,0.000700774,0.01389169,0.014746355,0.023143772,-0.003176164,-0.002111225,-0.021922823,0.016672742,-0.017486708,-0.012270541,0.03109351,-0.009645499,-0.0028963631,-0.027837645,0.0060369163,-0.0021010502,-0.017228952,-0.008777269,-0.003118508,-0.011504056,-0.0013455879,-0.0010606997,-0.0124943815,0.007454574,-0.031798948,0.016564213,0.0072578653,0.01317947,-0.00268948,-0.0039613023,0.025490709,0.008716222,-0.017703766,0.004236016,0.0008555124,-0.021475142,-0.0132473,0.026467469,-0.008044699,0.018843317,-0.0073596113,0.007569886,-0.0069594113,-0.012284107,-0.008716222,-0.035190474,0.002268931,-0.020484816,-0.028488819,0.029058594,0.017391745,-0.03491915,-0.028841536,0.023238735,-0.00264539,-0.01493628,-0.0038425988,0.010873232,0.010174578,-0.02618258,-0.04452395,-0.17516553,0.015112639,0.021488708,-0.026345374,0.014678524,-0.017744463,0.0013040417,0.01315912,-0.014352937,-0.008004001,0.019399527,0.0137492465,-0.030632261,-0.004456465,0.011517622,0.016727006,-0.0042054923,0.01918247,0.05494272,0.00036649677,0.04202779,-0.018205712,-0.0068983636,0.015153338,-0.0056401077,-0.0047549196,-0.008234625,0.0057689855,-0.017215386,-0.0129149305,-0.0015855384,-0.0024656393,0.039016113,0.021380179,-0.003340653,-0.017228952,0.02938418,-0.0030320243,0.0069085383,0.012467249,-0.007461357,0.027240736,-0.0010683307,0.003798509,-0.0029658894,0.029899692,0.012894581,-0.011253083,0.013362612,-0.005565494,0.0069356705,-0.02015923,-0.016645608,-0.00030650914,0.0058775144,0.01100211,-0.00946914,0.016075833,0.008431333,-0.05274501,0.000101692785,-0.026643828,0.006833925,-0.008329588,-0.025110858,-0.0075427536,-0.014882016,0.020240627,-0.015655283,0.027837645,-0.0168491,0.0011268345,0.00016639674,-0.0014439422,0.014298673,-0.0010462857,-0.0101949265,0.010052483,0.021597236,0.006152228,0.0003870579,0.039504495,0.016767705,0.026128316,-0.0104459,0.014895582,-0.023075942,0.0039511276,-0.0377409,-0.010717222,0.015451792,-0.010629042,-0.014244409,-0.0035882343,0.0050025005,0.02374068,0.028434554,-0.0102288425,0.01726965,-0.011816076,0.01035772,-0.0020349156,-0.008071831,-0.0055417535,0.050004657,-0.0093945265,0.015940173,0.0054807058,0.02371355,0.00045488842,-0.027919041,0.007088289,0.038283546,0.028570214,-0.014257975,0.03475636,0.0019857385,0.0068271416,-0.007739462,-0.0019484316,0.022940282,0.009021459,0.005036416,0.005158511,-0.014230843,0.0012879319,-0.08009428,-0.033047028,0.023659285,-0.0056265416,-0.015153338,0.023754248,-0.00866874,0.020064266,-0.0100457,0.010717222,-0.010988544,-0.035326134,-0.02022706,0.01300311,-0.005121204,-0.0026589562,-0.0056841974,-0.020905366,-0.0014939671,-0.0035475362,-0.019521624,-0.012487599,-0.015058375,-0.009177469,-0.01671344,-0.00898076,-0.02218058,0.0025436445,0.017364612,0.005887689,0.009543754,0.004714221,0.0022774097,-0.015234735,-0.0064845975,-0.010635825,-0.012487599,-0.011117422,0.02576203,-0.026101183,-0.005083897,-0.015017677,0.016604912,-0.028814403,-0.015899474,0.009835425,-0.007841208,0.015343263,0.030062485,-0.028136099,-0.009821859,0.002840403,-0.023632152,-0.029465577,0.025029462,-0.05445434,0.013688198,-0.009129988,0.012813185,0.01315912,-0.0099846525,-0.0122162765,-0.011639717,0.008994327,0.005714721,0.027349265,-0.011788944,0.0089400625,0.002253669,-0.005938562,-0.0109274965,-0.0045107296,-0.024744574,0.004069831,-0.023699984,-0.021529406,-0.005036416,-0.0058707315,0.00070501346,-0.0013142163,-0.023103075,-0.026684526,0.008648391,-0.012704656,-0.01758167,0.010032133,0.018477034,0.019630153,-0.026711658,-0.037523843,0.0007639412,-0.013810294,-0.002547036,-0.0139595205,-0.02962837,-0.013620368,0.0052975635,0.004985543,0.02176003,0.015831644,-0.0016720223,-0.023523623,-0.0722802,0.022099182,0.008458465,-0.005938562,0.009380961,-0.023984872,-0.016618477,-0.03367107,-0.014352937,-0.019630153,-0.011008893,0.011965304,-0.008879015,0.0031948173,-0.01002535,-0.0013930693,0.04143088,0.002596213,0.008261757,0.015790945,-0.023143772,-0.0119042555,0.006209884,0.0060776146,0.018124314,0.002209579,-0.011619368,0.020742573,-0.018097183,-0.031527624,0.0001816586,-0.011951737,0.000031848547,0.028054703,-0.010072832,-0.03367107,0.00054094836,0.0064608566,0.012752137,-0.017161122,-0.0038358157,-0.012806402,0.0119042555,-0.018680524,-0.016374286,-0.01946736,0.0065422533,-0.0061963177,0.022479033,0.002911625,0.029194254,0.018924715,-0.039260305,-0.014529297,0.0026674352,-0.025029462,0.0021637934,0.0036085835,0.00051466405,0.015126206,0.030984981,0.012399418,0.02113599,-0.015465358,-0.0012531688,0.012351938,-0.015831644,-0.0018280324,0.045066595,-0.03502768,-0.013410093,0.0069424533,0.009828642,-0.005300955,0.0053620026,-0.014217277,-0.005758811,0.0097065475,-0.024296891,0.045690637,-0.00059648464,-0.011734679,-0.011117422,0.018436335,0.029411312,0.018951846,-0.00043369137,0.005243299,-0.021176688,0.018042918,-0.02002357,-0.00014541167,0.00017000023,0.0006015719,0.0072578653,0.005121204,-0.001294715,0.017730897,-0.0058266413,0.008254974,0.012467249,0.022085616,0.019508056,-0.0076377164,0.006504947,0.012786053,-0.018789053,-0.0050771143,-0.0015719723,-0.017595237,-0.014542863,-0.0028522734,-0.027444229,0.027295,-0.030171014,-0.0070204586,0.019250302,-0.010391636,-0.012725005,0.0142715415,0.018694092,0.0010327196,0.0019416485,-0.010032133,0.011185252,-0.00031816753,-0.012616476,-0.036112968,0.00818036,-0.0076512825,-0.013301564,-0.0030286326,-0.011076723,-0.02231624,0.010262758,0.011436225,-0.023428662,0.01260291,-0.0062268414,0.09295494,0.01640142,-0.009285998,-0.014108748,0.008275324,0.03714399,0.028733008,0.0075088385,-0.01140231,-0.0046056923,0.031120641,0.01584521,0.0026419987,-0.01949449,-0.010812185,0.007535971,-0.016699873,0.007970086,-0.01855843,-0.0038188582,0.028407421,0.033264086,0.010323805,0.0039002548,-0.018884016,-0.007074723,0.024853101,0.011748246,-0.018843317,-0.021597236,0.01900611,0.011253083,-0.022126315,-0.013532189,0.021922823,0.011700764,0.00033915258,0.0021570104,0.018042918,0.018042918,-0.017676633,-0.0050262413,-0.015763812,-0.019141773,0.018951846,0.0100457,0.00922495,0.012012784,-0.027064377]},{"id":"019ee307-abd2-44b2-b504-01ea06b5f890","text":"Put somewhere the requirements for a post. For example how the bounty comes and what needs to happen for that. ","vector":[0.0027129203,0.007264235,-0.00846005,0.0059962585,-0.025510728,0.005333062,-0.016768906,-0.00071345165,-0.010336244,-0.005418968,0.02787487,-0.021950772,-0.021992007,-0.0031390155,0.025991805,0.0005201625,0.013614427,-0.011401482,0.0038245476,-0.0015514675,-0.004085703,0.00066835084,-0.01604042,0.008769313,0.015284445,-0.0068965564,0.037331432,-0.004003233,0.020425078,-0.005910352,0.021304758,-0.0058381907,-0.022610532,-0.00045057843,-0.02738005,0.001202688,0.0047007916,-0.009291624,0.0124048665,0.0037730038,0.01419859,0.023119098,-0.00042480655,-0.024040014,0.010679869,-0.0017765418,-0.009511543,-0.024259934,-0.011676381,-0.010157558,0.0033417542,0.00692061,-0.05822384,-0.0017481928,-0.00399636,0.011016621,0.00068896834,0.011779469,0.009731463,-0.010721104,-0.0022885434,-0.01507827,-0.0008483245,-0.008638736,-0.0063398834,-0.0074085575,-0.013181459,0.018267112,-0.031283632,0.00175077,0.02878204,-0.00027210815,0.021538423,0.019325476,0.034390002,0.0024586378,0.021332247,0.0005162968,-0.0014793061,-0.005893171,0.015861735,0.013655663,-0.0070924223,0.03320793,0.023723878,0.0029500218,0.018005956,0.011325884,-0.006185252,-0.007875888,-0.004333113,0.018555757,0.0057419757,0.0134907225,-0.0041269376,0.03238323,-0.0046011405,0.040217884,0.00785527,-0.02828722,-0.0022387176,0.023421489,-0.05096648,-0.013009647,-0.010033853,-0.018308347,0.00733296,-0.01650775,0.021648383,0.01626034,-0.015311935,0.037661314,0.0035530836,-0.017524881,-0.0072161276,-0.0014337758,0.008611245,-0.020218901,0.0016012931,-0.009470308,0.03180594,-0.02713264,0.0037936214,-0.014982055,0.0182946,0.013167715,0.011209051,0.0075666253,0.0017215619,-0.025964314,0.009078575,0.020356352,-0.004065085,0.002901914,-0.007209255,0.009910149,-0.027435029,0.0026785578,-0.007034006,-0.013442615,0.03340036,0.03471988,-0.015944205,0.00716802,0.0021562476,0.007209255,0.008831166,-0.009648994,0.0032077406,-0.0011872248,0.0034963856,-0.009401583,0.010198793,-0.0149683105,-0.0035943189,-0.009442818,0.0032764655,-0.0015712258,0.004731718,-0.013284547,0.017236236,0.01392369,-0.0074085575,0.0058588083,0.01452847,0.03546211,0.020548781,-0.025359534,-0.0074497927,0.004649248,0.0043984014,0.0043571666,-0.024094993,0.024768498,-0.0056010894,0.023710134,0.01375875,0.0034774863,-0.013586937,-0.017895997,-0.008618118,-0.008521903,0.016727671,0.03499478,-0.026307939,-0.018239621,0.011889429,-0.0054636393,0.0078002904,0.006965281,0.0012164329,0.0011769161,0.019930257,0.017208746,-0.6650383,-0.0021390663,0.03043144,-0.01392369,0.0071061673,0.012164329,0.0018830657,0.010040726,0.0016932128,0.02927686,-0.016411535,0.009023596,0.0088242935,0.0030599816,-0.012686639,-0.03612187,0.01551811,-0.024864715,-0.0016717362,0.013250184,-0.018899381,0.0014303395,-0.0041131927,0.024287423,0.0083226,-0.00046690064,0.0033211368,-0.005020363,0.007154275,0.02694021,-0.011442716,0.026651565,0.008315728,0.020012727,0.042911906,-0.007930867,-0.018720696,0.0045358515,-0.00725049,0.023256548,-0.01395118,-0.01576552,0.01422608,-0.0007319215,-0.0018487031,-0.002996411,0.02853463,-0.0015686487,0.017950976,-0.0031785325,-0.019023087,0.024122484,-0.0027438465,0.0071748924,-0.022638023,-0.015971696,0.026404154,0.0045392876,-0.015064525,-0.0006189548,-0.005625143,0.004728282,-0.042554535,-0.043874055,-0.016686436,-0.004010105,-0.004422455,0.018679462,0.015683051,-0.0012121376,-0.0074979,0.0075734975,0.00034899428,-0.0033658082,0.015779266,-0.0008655058,0.00744292,-0.011669509,-0.007236745,0.024149973,0.0064086085,-0.0058588083,-0.01395118,-0.017717311,0.019847786,0.009710846,-0.010714231,-0.021497188,0.020466313,0.020163922,0.004913839,0.022390613,0.008432561,-0.0009260697,0.006851885,0.024177464,-0.001490474,0.0047729528,0.035517093,-0.013937435,-0.01408863,-0.008143916,-0.033070482,0.012487337,0.044533815,-0.0027163567,-0.0070649325,0.010741721,0.03488482,-0.030596381,0.0048382417,0.010130068,-0.034197573,-0.00628834,-0.007944613,-0.041207526,0.011250286,0.0042884415,0.005391478,0.007848398,0.044753734,0.030596381,0.02699519,-0.007600988,0.0058588083,0.039200753,0.02927686,-0.003324573,-0.022940412,-0.002790236,-0.0054120957,-0.01744241,0.018871892,0.013277675,0.022912923,-0.012315525,0.0039448165,-0.017854761,0.0053158808,-0.02823224,-0.019064322,-0.0012576679,-0.0005966191,-0.03037646,-0.034829844,-0.0064807697,-0.01290656,-0.0038279837,0.0036115,0.0061611985,0.010260646,-0.0044568176,-0.039503142,0.0034929493,-0.010109451,-0.002558289,-0.003790185,-0.022225672,-0.015751775,-0.0037145875,-0.025785629,0.022335634,-0.025840608,0.009765826,-0.0112227965,-0.012817217,0.03029399,0.0042987503,-0.006611347,-0.023201568,0.011703871,-0.015586835,-0.015366916,0.010954768,-0.020947387,0.00782778,-0.031146182,-0.009662738,-0.0015437359,-0.004893222,0.008810548,-0.0007899082,-0.012391122,-0.0030840354,0.0047901343,0.00063227024,-0.009360348,0.03367526,0.009490926,0.0010368888,0.0061062183,-0.016411535,0.0050169267,0.026582839,0.001653696,0.00059404195,0.009539033,0.006697254,-0.017002571,0.015284445,0.020480057,0.012336141,0.039915495,-0.027833635,0.018088426,-0.023737622,0.005872553,-0.025084633,0.02430117,0.010191921,0.0025428259,-0.03048642,0.015889226,-0.0074635376,0.014102375,0.00848754,-0.01430855,0.0072161276,-0.014954565,0.019517906,0.027091404,-0.0032249216,0.032768093,0.012123094,-0.006047802,-0.0018555756,0.01848703,0.0065872935,0.0028331892,-0.018308347,0.008583755,-0.00094239187,0.0006348474,0.0067522335,0.0275175,-0.013971797,0.018803166,-0.0034379694,0.011449589,-0.009834551,0.006862194,0.013710642,0.017758546,0.0005678405,0.03359279,0.0002373161,0.007834652,0.015820501,-0.0046939193,0.0038211113,-0.00045229658,-0.0015214002,-0.020864917,0.023517704,0.0021717108,-0.023325274,-0.01337389,0.0053296257,0.0047901343,0.005869117,0.026775269,0.013435742,0.009765826,0.004965383,0.021442208,-0.002901914,-0.007223,-0.017291216,-0.005161249,-0.010803574,0.01271413,-0.0092160255,0.011607656,0.00725049,0.02828722,0.009209153,-0.020727467,0.0067281798,-0.0013452923,-0.00037283325,-0.045028634,-0.004319368,0.00821264,0.037276454,-0.008411943,-0.006226487,-0.013133352,0.010081961,-0.017401176,0.022541808,-0.005240283,-0.004006669,-0.0019432,-0.022747982,0.0032816199,0.00785527,0.02878204,-0.016466515,-0.003462023,0.0038760914,0.013483849,0.010322498,-0.019064322,-0.025332045,0.022404358,-0.0049207117,0.022266908,-0.017717311,-0.0025015909,-0.0015660715,-0.011559549,0.003307392,0.005968768,-0.01507827,0.031641003,-0.0029534579,-0.0044636903,0.011257159,0.03133861,-0.00079377403,0.010556163,0.0061508897,-0.015614325,0.011099092,0.074992746,0.01463843,-0.0045324154,0.014184845,-0.03177845,-0.008247003,-0.029551761,-0.018143406,0.01474839,0.004498053,0.017291216,-0.0022816707,0.0036218087,0.017016316,0.02905694,-0.014927075,0.0012971848,-0.008913635,0.019297987,-0.0291669,-0.006377682,0.0021287575,0.008865528,0.009106066,0.022170693,0.00432624,0.018047191,0.037001554,-0.012940922,-0.0045392876,-0.001874475,-0.006016876,0.020163922,-0.002996411,0.0011751979,0.021249777,-0.005989386,0.036836613,-0.0092503885,0.00065847166,0.0020548783,0.0058313184,0.0073673227,0.001517964,0.024122484,-0.0015488903,0.010906661,0.0006455857,-0.0033194188,-0.001654555,0.029881641,-0.011030367,-0.007236745,-0.005621707,0.018528266,0.00019167838,0.011215924,0.008356963,0.007319215,-0.03125614,-0.036231834,-0.03010156,0.008851783,-0.0016253468,-0.022624278,-0.016301576,-0.013992415,-0.015573091,-0.012968412,0.012226182,-0.0297167,0.0025978058,-0.033070482,0.00081954594,0.032960523,0.015105761,0.035984423,-0.017648587,0.033070482,-0.009511543,-0.012762237,-0.020933643,-0.013909945,0.0077796727,0.0055186194,0.0024586378,-0.011896302,0.007374195,-0.0003651017,0.009834551,-0.010130068,0.03282307,-0.0023143152,-0.019449182,-0.0020256701,-0.010700487,-0.014294805,0.012178075,0.0021992007,-0.0053536794,-0.015009546,-0.010721104,-0.008473796,-0.011882557,0.000012637619,0.011525187,0.011470206,0.020727467,-0.015092015,-0.008260748,0.021964518,-0.022335634,0.023490213,0.0067419247,0.012212437,0.01598544,0.008143916,0.021263523,0.01749739,0.00703057,-0.0069171735,-0.014940821,0.03122865,0.011889429,-0.026706545,-0.02581312,-0.0074772825,-0.03010156,-0.0012112786,-0.004676738,-0.002656222,0.0031372975,-0.0049310206,-0.010281264,-0.018514521,-0.021552168,0.020933643,0.0069034286,-0.014982055,-0.0013195204,-0.007374195,-0.010748594,-0.002077214,-0.037358925,0.03004658,-0.03232825,0.0009913584,0.019696591,-0.018858146,0.022679258,-0.012734747,-0.004350294,-0.0363143,-0.024864715,0.005336498,-0.026569095,-0.022225672,-0.009923893,0.022899179,0.0064120446,0.0011648892,0.008405071,0.0294418,-0.0016734543,0.010947896,0.004827933,0.01419859,-0.021717107,-0.016865121,-0.00815766,0.017249981,0.007910251,-0.00060778693,-0.0032884923,-0.0007576934,0.009539033,-0.03375773,0.00024698055,-0.011751979,-0.02897447,-0.009703973,0.018940616,0.005700741,0.011305266,-0.037084024,-0.01386871,0.025043398,0.012583552,0.030733831,0.007944613,0.013463233,-0.01571054,0.026321685,-0.011105964,0.016535241,0.00653575,-0.011525187,-0.003133861,-0.003352063,0.017085042,0.033702753,0.0060271844,-0.011573294,-0.007820908,-0.0155593455,0.010130068,-0.0062505407,0.0062471046,0.009112938,-0.019779062,-0.024837224,-0.026431644,-0.00653575,0.013064628,0.001025721,-0.003597755,-0.009387839,0.017786035,-0.017758546,-0.017346196,-0.0049310206,-0.015999185,0.03293303,0.016617712,0.021469697,0.02878204,0.013332655,-0.01711253,-0.0059137885,-0.009951384,0.0020067708,0.00047033688,0.03403263,-0.016480261,-0.00314417,0.012343015,0.03337287,-0.019352967,-0.034170084,0.013497595,-0.005800392,-0.0037730038,-0.014789625,-0.004759208,-0.039997965,0.0066422736,0.0045289793,0.003999796,0.014762135,-0.0011038957,-0.01419859,0.008996106,-0.009992618,0.017428666,0.033812713,0.008054573,-0.01703006,-0.010886044,-0.01474839,-0.011264032,0.004762644,0.00741543,-0.0050272355,0.017579861,0.005130323,0.0034517143,-0.012858452,-0.027421284,0.019160537,0.020246392,-0.011930664,-0.008370708,-0.0130715,-0.012954667,-0.009298496,0.009243515,-0.01474839,0.0022696438,-0.0017404612,-0.012501081,0.022775473,0.0092503885,-0.02482348,-0.0043674754,0.005745412,0.0047798255,-0.0044533815,0.009167918,0.0286171,-0.0021115763,-0.019930257,-0.0022507445,-0.0015488903,0.012171201,0.0018298038,0.022747982,0.009669611,0.02435615,-0.017346196,-0.005717922,-0.019449182,-0.0004999745,-0.021428462,0.0038692188,-0.010329371,-0.021524677,0.02553822,-0.012494209,-0.0074085575,-0.025703158,0.003420788,0.0074910275,-0.005473948,-0.007126785,0.01595795,-0.009133556,0.020617507,0.016026676,-0.0068862475,0.009717719,0.0029328405,0.0149683105,0.023710134,-0.012817217,-0.008336346,-0.025991805,0.019998983,0.011958154,-0.010741721,-0.042801946,-0.00043103477,0.004662993,-0.010233156,-0.021208543,-0.018748187,-0.022239419,-0.012102476,0.035984423,-0.0075666253,-0.016164126,-0.005893171,0.021992007,0.018198386,0.007621605,-0.014322295,-0.0059962585,-0.011009749,-0.0110578565,-0.0018349581,-0.0163703,-0.02952427,0.045358516,0.0067419247,-0.037139002,0.009470308,-0.0025256446,-0.020205157,0.0034517143,-0.009607758,0.0033331637,0.0023864764,-0.019380458,0.013745005,0.03048642,0.018047191,0.02924937,-0.008432561,0.006704126,-0.031943392,-0.008040828,0.011092219,0.019944003,-0.022981647,-0.021895792,0.019366711,0.0020686232,-0.0006292635,0.03406012,-0.022033243,-0.006882811,-0.01430855,-0.018583247,0.00821264,0.0019311731,0.023930054,-0.01604042,-0.0065013873,-0.006016876,-0.010899789,-0.0031647873,-0.008075191,0.011160944,0.008707461,0.023187824,-0.012116222,-0.00829511,-0.002692303,-0.027558735,0.024644794,-0.005855372,-0.009057959,-0.016191615,0.00094239187,-0.02529081,-0.02957925,0.023201568,-0.03188841,0.0017971594,0.0027283835,0.0012061242,-0.008838038,0.008137043,-0.0060752924,-0.022802964,-0.0032902106,0.0042712605,-0.001955227,-0.0009492644,0.012872197,0.014129865,-0.018143406,-0.022954158,-0.0059962585,-0.016741415,0.008941126,-0.0066663274,-0.050361697,0.018212132,0.020603763,-0.012198692,-0.0015652124,-0.021882048,0.009655866,0.002340087,-0.0138824545,0.008838038,0.23245552,0.0009913584,-0.016439026,0.039173264,-0.0049310206,0.0049172756,0.021442208,0.008865528,-0.0017499109,0.0049860007,0.0039482526,0.0037248963,-0.016494006,-0.0050547253,0.0005596794,-0.018184641,-0.021552168,-0.01722249,-0.02402627,0.0025479803,0.009367221,0.017593605,-0.007958358,-0.01524321,0.0321908,0.0073398324,0.009367221,0.00048322283,0.015531856,0.014597195,-0.0021699925,-0.0043984014,0.002611551,-0.006951536,-0.022816708,0.016342811,-0.0032128948,-0.012322397,0.016397791,0.019944003,0.023778858,-0.0034036068,0.01711253,-0.019930257,0.008088935,0.018170897,0.0017885688,-0.0030032836,-0.0078071626,0.010996004,-0.046430625,-0.020232648,0.015174486,0.0046114493,-0.005058162,0.007999592,0.0013195204,0.017607352,0.01304401,0.015669305,-0.0048897853,0.015284445,-0.008597501,0.01551811,-0.02985415,0.010528673,-0.00025084635,-0.0060684197,0.025263319,-0.01604042,0.01518823,-0.017043807,0.0009604322,0.0074635376,0.0018899381,-0.0052712094,0.011573294,0.013648789,0.050334208,0.039750554,-0.010583654,-0.00083672715,0.0036733525,-0.020260137,0.0029757936,-0.0077178204,0.005728231,-0.0012078423,-0.0283422,-0.004824497,-0.019751571,0.00670069,-0.022074478,-0.025703158,-0.038513504,-0.0080477,0.0044533815,0.03499478,0.0003249405,-0.015421895,-0.035489604,0.060807902,-0.014597195,0.006442971,-0.036919083,-0.0016880584,-0.0008504722,0.021538423,0.019490417,0.0027661822,-0.007374195,-0.031448573,0.0070924223,-0.0044946168,-0.00689312,0.022349378,0.0002811283,-0.0028486522,0.011614529,0.0015815346,-0.019517906,-0.0324657,-0.0034688956,-0.014446,0.027091404,-0.020768702,-0.0113533735,-0.00760786,-0.0075322627,-0.039228242,0.02553822,0.0013633326,-0.02430117,0.00009428214,-0.021029858,-0.019119302,0.007862143,-0.02680276,-0.029744191,-0.018225877,-0.015009546,-0.010831064,0.023558939,0.0034070432,0.024466109,-0.029551761,-0.006965281,-0.0321908,-0.036671672,0.01384122,-0.036699165,-0.007820908,-0.006779724,-0.020782446,0.007917123,-0.01678265,-0.0023349328,-0.035901953,0.0064120446,0.0009904994,-0.039558124,0.015408151,-0.013442615,-0.027118895,-0.030816302,-0.011181561,-0.17791535,0.012789727,0.008013338,-0.012597297,0.020067707,-0.0011545804,-0.0044808714,0.012136839,-0.034197573,0.015971696,0.017195001,-0.0335653,-0.03351032,-0.0182946,-0.021332247,0.008748695,-0.015092015,0.025277063,-0.0006417199,0.024741009,0.026912719,-0.0072436174,0.0073535778,-0.017332451,-0.0042712605,-0.01428106,-0.0036596076,0.013779367,-0.010191921,-0.020273883,-0.019311732,-0.021194797,0.02979917,0.031750962,-0.0027541553,-0.01450098,-0.0035908825,-0.011119709,0.017181257,-0.0017078168,0.014487235,0.03142108,0.005051289,0.018830657,-0.006391427,0.020452566,-0.000091329115,0.000765425,-0.000103785525,-0.01436353,0.0066010384,-0.030926261,-0.004473999,-0.005302136,0.025235828,0.0017164075,0.0007989284,0.0034860768,-0.021084838,0.019174282,0.005487693,-0.03004658,-0.008886145,-0.007917123,-0.015600581,-0.025304554,-0.015820501,0.03395016,-0.020672487,-0.014762135,0.003927635,-0.020590017,0.0024517651,0.0053399345,0.0063948636,0.010666124,-0.02894698,0.022967903,-0.01463843,0.021964518,-0.0046286304,0.015820501,-0.003924199,0.007511645,0.0028538066,-0.022198183,0.006126836,0.010934152,-0.0015437359,-0.02982666,-0.003324573,0.005625143,-0.02919439,-0.0015609171,0.0074979,0.0294418,0.00183324,-0.00020359788,0.014734645,-0.021167308,0.0043812203,0.01439102,-0.035159722,0.024589814,0.016329065,-0.0037661314,0.0016012931,0.025249574,0.018638227,-0.010398096,-0.006614784,0.022486828,0.009800188,0.025978059,0.007958358,0.030816302,-0.0056973044,-0.0029259678,0.0071474025,-0.0032163311,0.039118282,-0.0083294725,-0.012775982,-0.0034998218,0.00015001385,-0.005154377,-0.1106198,0.002491282,0.0066663274,-0.020658743,-0.0063227024,-0.0021992007,0.0035668288,0.017085042,0.006181816,-0.0022129458,-0.0050272355,-0.046623055,0.0052574645,0.014775881,-0.000037664533,-0.009621504,-0.014322295,0.0047042277,0.043406725,0.025551964,0.0000062483396,-0.030019091,-0.011119709,-0.012796599,-0.005305572,0.0007632773,-0.012356759,0.011126582,-0.00048064563,-0.00043726296,-0.022445593,-0.021579657,-0.018473286,0.00024118189,0.0018572938,-0.00043984017,-0.009827678,-0.023682643,0.016301576,-0.010837936,-0.005979077,-0.0166452,-0.0009475463,-0.016246596,-0.003242103,0.0072711078,-0.03340036,0.003008438,0.013470105,-0.018047191,-0.028026065,-0.0012834398,-0.015751775,-0.041344974,0.02608802,-0.013009647,0.005704177,0.02820475,-0.015256955,0.025923079,0.013745005,0.014954565,0.0017885688,0.006278031,0.0068725026,0.01521572,-0.018968107,-0.0064360984,0.0032953648,0.0007632773,-0.01768982,0.028892,-0.0075734975,0.013277675,-0.014019905,-0.033042993,0.0046733017,-0.00736045,0.013360145,-0.010913534,-0.0037798763,-0.018830657,0.0042094076,-0.021263523,0.018363327,0.023448978,0.0032884923,0.016012931,-0.002692303,-0.047337797,-0.0019294551,0.013607555,0.000670069,-0.008260748,-0.021318503,0.006439535,0.0077796727,0.00036080639,-0.0022077914,0.000057020294,-0.013779367,0.011587039,-0.042691983,0.022184437,-0.009628376,-0.018060936,0.008301983,-0.015201976,0.00678316,-0.00043790726,-0.012343015,0.01516074,0.00032515527,0.007937741,-0.012164329,-0.010136941,-0.010246901,-0.0038898364,0.009346603,-0.019174282,0.00032837674,-0.0043021864,-0.021167308,0.0044533815,-0.005786647,-0.021442208,0.0007684317,0.021717107,-0.0021871738,0.0107623385,-0.020177668,-0.006625092,0.023174077,-0.019504162,0.004597704,0.02902945,-0.005171558,-0.006140581,-0.007016825,0.021565912,0.03573701,0.025909334,-0.014129865,-0.025826864,-0.017676076,-0.038513504,-0.019119302,-0.011373991,-0.025359534,0.004659557,0.018033447,0.006154326,0.034582432,0.02633543,-0.024149973,-0.010191921,0.021442208,-0.027366305,0.0002491282,0.00031613512,-0.0063227024,-0.038678445,0.039008323,-0.004144119,0.0094153285,-0.016012931,0.013799985,-0.005047853,-0.017373687,0.017524881,0.017593605,-0.03133861,-0.011394609,-0.0081988955,-0.014267315,-0.020644996,0.013332655,0.030678852,0.011264032,-0.008425688,-0.00769033,0.021607148,0.0141711,0.008576883,0.000677371,0.0041922266,0.038211115,0.008137043,-0.006456716,-0.0067384886,-0.0064945146,-0.0049207117,-0.020864917,0.0015557627,0.014267315,0.012219309,0.014267315,0.00374895,-0.0026390408,-0.019586632,0.008260748,-0.022638023,0.0072848527,-0.0014655611,0.007683458,-0.015586835,-0.0122399265,-0.0018916563,-0.020081451,-0.039228242,0.018047191,0.027971085,-0.006697254,0.012830962,0.03012905,0.011607656,-0.03252068,0.03452745,0.012294907,-0.042939395,-0.026170488,0.038623463,0.0041269376,-0.012205564,0.0053536794,-0.02858961,0.035599563,-0.01549062,-0.009676483,-0.021978263,0.003255848,-0.01573803,-0.006360501,0.014019905,-0.0018212132,-0.005955023,0.01397867,-0.011545804,-0.0280673,0.021510933,0.017071296,0.064601526,0.02979917,-0.015586835,0.018170897,0.0113533735,-0.008006466,0.020026471,-0.0044430727,-0.009346603,0.007456665,0.02619798,0.0077315653,0.0280673,-0.0030135922,-0.0006589012,-0.0016674409,0.002709484,0.022074478,-0.008398198,-0.015504366,0.008192023,0.017758546,0.014487235,-0.0056869956,-0.039668083,-0.0050306716,-0.003513567,-0.038513504,-0.0039448165,-0.0048485505,0.01433604,0.020658743,-0.0062196148,-0.01384122,0.0046939193,0.011580166,-0.0072848527,0.023242803,0.0034053249,0.004896658,0.027627459,-0.00766284,-0.03150355,-0.03537964,-0.041399956,0.012061242,-0.0055151833,0.0067384886,0.0050100544]},{"id":"07e6c480-84d3-46f3-a04a-e2f25141688a","text":"I want to know if I am submitted in winning the trip to Aruba since I ordered the vitamin C","vector":[-0.006502352,-0.008820056,0.0042182878,-0.00916317,-0.028310293,0.026574539,-0.021555651,-0.04098534,-0.0012992931,0.0035488782,-0.001126054,0.0224168,-0.017263358,-0.02238989,-0.008799872,-0.015285405,0.035630066,-0.008961339,-0.0048372387,0.016644407,-0.009351547,-0.009533196,0.023049207,0.005277905,0.014020592,0.014195513,-0.00044150738,-0.026224697,0.0016104507,0.0062366067,0.00509962,0.010535628,-0.005234175,-0.019079845,-0.014235879,-0.011174762,0.0048136916,0.0018602178,-0.000738789,0.0048708776,0.027745165,0.028471759,-0.0048305113,-0.015756346,-0.032723684,0.01467991,-0.011531332,-0.011342955,-0.017478647,0.02280701,0.010347251,0.00085988815,-0.034149963,-0.028417937,-0.005607564,-0.0060751415,0.016536763,-0.0043023843,-0.016227288,-0.008517308,0.013623656,0.012769234,-0.0018215333,0.021394186,-0.006869014,0.006334159,-0.013845671,0.003582517,0.005789213,0.03140505,0.03256222,0.02286083,-0.0076225195,0.009634111,0.01645603,0.0019762712,-0.023493238,0.013912949,0.011692797,0.0059002205,0.0050256154,-0.015002841,-0.00031241903,0.0079723615,0.024744596,0.027960451,0.01847435,0.023506694,-0.028713956,-0.030086415,0.005210628,0.031593427,-0.005092893,0.011934996,-0.024031457,0.0072054,-0.009062254,0.035011113,-0.005557106,0.0120022725,0.003501784,0.0037439824,-0.024932973,-0.030543901,-0.009290997,0.017397914,-0.02995186,-0.0003946235,0.018635815,-0.0062366067,-0.0073466827,0.04128136,0.027166579,-0.033423368,-0.035683885,-0.00016104507,-0.0015650385,0.010374161,-0.037998226,-0.026224697,0.010629816,0.013240175,0.037379276,0.0046488624,0.026762916,0.014370434,-0.029844217,-0.025309725,0.020371571,0.002953474,0.0025414005,0.011867718,0.008389481,0.002803782,0.01467991,0.030678455,-0.037056345,0.0052005365,-0.014935563,-0.0065830853,0.013926404,0.025753755,-0.00505589,0.0050054323,-0.0074005043,0.00094608724,0.02061377,-0.013199809,-0.007757074,-0.018111052,0.0149221085,-0.04628679,0.012439575,0.010057959,0.022026593,0.011349683,0.008080006,0.01322672,-0.0004961702,-0.030597722,-0.00370698,-0.008598041,0.0037305271,-0.022551356,-0.0007539264,0.04077005,0.041119892,-0.022107325,-0.0026170874,0.010212696,-0.006492261,0.014545355,-0.011235312,0.005129895,-0.006640271,0.016792417,0.0011546469,-0.009829216,-0.0014237561,0.0032108098,-0.04103916,0.035064936,0.022228424,0.0023294769,0.013610201,-0.011369866,-0.006387981,0.016213832,0.020304292,-0.021636384,-0.012130099,0.0038718095,0.00511644,0.009169898,-0.64155644,-0.018945292,0.013381458,0.011551514,0.030382434,0.012109917,0.01467991,-0.00028929245,-0.026978202,0.033746302,-0.01755938,0.008389481,0.017667022,0.00035383663,0.016038911,-0.009741755,0.0035926085,0.0067277313,-0.0044033,0.013738028,-0.021488374,0.0041745575,0.0049886126,0.025377003,0.028256472,0.023062663,0.016388753,-0.00806655,-0.02064068,0.00069211534,0.009109348,0.02761061,0.011558242,-0.01568907,0.039155398,-0.020842511,0.018312884,-0.009748483,-0.020263927,0.0325084,-0.026951293,-0.004198104,0.00842312,-0.0058430345,0.008604769,0.014962475,0.013273814,0.0029366547,0.0059204036,0.01977953,0.017196082,0.0069968407,-0.047013387,-0.020183194,0.03083992,-0.0029147896,0.027879719,-0.0018904925,0.016819328,0.0038179876,-0.016375298,-0.010293429,-0.033665568,-0.01948351,-0.01690006,0.016859695,-0.021596018,0.017263358,0.026574539,0.011147851,0.020694502,0.0009696343,-0.020156283,0.04451067,0.04098534,0.022470623,-0.0027432325,-0.016213832,-0.024085278,0.02761061,0.0074475985,-0.00039483374,0.005940587,-0.012385753,0.0048406026,-0.011773529,-0.03662577,-0.0089075165,-0.0041106436,0.0040669134,0.016967338,0.038751733,-0.006310612,0.010656727,-0.0074274153,-0.009169898,-0.025498101,-0.03775603,-0.013832215,-0.010703821,-0.0011823988,-0.018232152,0.0011353047,0.0033941404,0.050404165,-0.021596018,-0.038267337,0.0076427027,0.011934996,-0.016348388,0.0019359047,-0.008113644,-0.003777621,0.012076278,0.020183194,-0.026399618,-0.0025935404,0.003979453,-0.022793554,-0.016765507,0.018514717,0.01963152,0.023197217,-0.00062609947,0.00010554129,0.008295293,0.0055201035,-0.029521285,-0.025659567,0.0014918745,0.027422233,0.0020115916,-0.005382185,-0.007743619,-0.004558038,-0.000111743415,0.018285973,-0.004780053,0.013859127,-0.030409345,-0.024906062,-0.014128236,-0.020035183,-0.0029618838,0.020707957,-0.03455363,-0.008483669,0.011517876,-0.04650208,-0.005079437,-0.0132872695,-0.020263927,-0.019335499,0.020600313,0.01571598,0.0070506623,0.00545619,-0.007360138,-0.0073466827,0.0026423165,0.027691342,0.031270497,0.006011228,-0.018299429,0.0133478185,0.013650567,0.0069430186,0.024583131,0.000011648699,-0.03371939,0.005129895,-0.01186099,0.003081301,0.024623496,-0.039720524,0.014235879,-0.007992545,-0.0032394025,0.0009570198,0.00421156,-0.0031620336,0.01467991,0.009190081,0.0037002522,0.012796145,0.0068017365,-0.012042639,0.035307135,-0.018958747,0.039989635,-0.00043141577,0.008335659,-0.008598041,0.021892037,-0.011504421,-0.01118149,0.00770998,0.0147471875,-0.0026810009,0.0094322795,0.010643271,0.015070118,0.032535307,-0.013119076,0.008335659,-0.007931995,-0.0014178694,-0.011316044,0.03662577,0.013872582,0.013664022,-0.009539923,-0.0033436825,-0.0007253335,0.008416392,0.014774098,-0.01930859,-0.0004923858,-0.022672454,0.0067916447,-0.023641247,0.0068959245,0.008974793,-0.029844217,-0.0059742252,0.021098165,0.012257926,0.014208969,-0.009593745,0.0066436348,-0.0038146237,0.006485533,0.020035183,-0.008295293,0.033827033,0.0070910286,-0.008006,-0.0143973455,0.010279973,0.00851058,0.008342387,0.016604042,0.01586399,0.016038911,0.017572835,-0.017384458,0.022349523,0.00038978792,0.0016987522,0.016213832,-0.03285824,-0.011423687,-0.041119892,-0.015406505,-0.018501261,-0.030893743,-0.010179058,0.021797849,0.040500943,0.04739014,0.027718253,0.0056042,0.026561083,-0.014101325,0.016388753,0.013199809,-0.0023933905,-0.00325454,0.0112420395,-0.009835944,0.006936291,-0.019739164,-0.00034584745,-0.0067310953,0.025228992,-0.016819328,0.011786985,-0.024206378,0.0066268155,0.0106029045,0.006310612,-0.039989635,0.014639543,0.01640221,-0.006334159,-0.009129532,-0.0011823988,0.015083574,-0.011672614,0.03455363,-0.011854263,0.019052936,-0.0063005206,0.0068488307,-0.014760642,-0.0062500625,0.028310293,-0.010744187,0.02822956,-0.022833921,-0.029171443,-0.0044470304,-0.020855967,-0.03143196,0.017061526,0.020802146,-0.0042922925,-0.023466326,0.012506853,0.016361842,0.004006364,0.0115918815,-0.012130099,-0.012264654,-0.025780667,0.015850535,-0.0257403,-0.01287015,-0.005462918,-0.023264496,0.0020755052,-0.0054696454,-0.013509285,-0.018339796,0.096125826,0.010649999,-0.0025178534,0.011578426,0.0069026523,0.022510989,-0.010670182,-0.012513581,0.014868286,-0.007824352,-0.006882469,-0.01640221,-0.002704548,0.0073735937,0.0018467623,0.017209537,-0.009035343,0.00756197,0.014935563,-0.023331773,-0.00874605,-0.015783258,-0.0030123417,0.025901766,0.029521285,0.019335499,0.020425392,-0.004436939,0.006105416,-0.018070687,-0.002025047,-0.018824192,-0.0009334727,0.016065823,-0.0038280792,0.007366866,0.011544787,0.029171443,-0.00043057482,0.015325772,0.010481806,-0.00008577858,-0.0070775733,-0.00901516,0.012614496,0.019322045,0.008611497,-0.0035926085,0.010212696,0.00010201974,0.0063980725,-0.0120628225,0.0004970112,-0.022955019,-0.02002173,0.028552491,-0.00051467144,-0.013085437,0.012157011,0.002554856,-0.02603632,-0.017424824,-0.003683433,-0.010051231,-0.032427665,-0.025228992,-0.036464304,-0.007878173,0.0060616857,-0.021959316,-0.00530818,-0.0288216,-0.015029752,0.018393617,0.029305998,-0.00490788,0.024542764,0.0017012751,0.014208969,-0.009243903,-0.0049785213,-0.015527604,0.0055705616,-0.0044806693,-0.007979089,0.000068591326,0.01263468,-0.015016296,-0.0009856126,0.010380889,0.0012908834,0.025632657,0.04079696,-0.01618692,-0.0037406187,-0.005802668,-0.007333227,0.003532059,-0.033046618,-0.001804714,0.029117621,-0.03436525,0.041927222,-0.0008140555,0.013744755,0.009560106,-0.0030459804,-0.0018686274,-0.027825898,-0.012944155,0.0051769894,0.0023479783,0.020654134,-0.0045984043,0.030651543,0.021690207,-0.02170366,0.008631679,-0.0037473463,0.0057185716,-0.021434553,-0.04477978,0.048520397,0.005799304,-0.00735341,0.005257722,-0.004029911,-0.0036531582,-0.01337473,0.0029517922,0.009788849,0.0023177036,-0.02487915,-0.0072726775,0.00076485897,-0.010084869,-0.0224168,0.01272214,-0.014518444,0.0016920244,-0.02467732,-0.008160738,-0.020734867,-0.008349115,0.0030644815,-0.03573771,-0.0069564744,0.02384308,-0.03113594,0.018864559,0.0210578,-0.018137963,-0.010791281,-0.010105052,0.02022356,-0.00004346745,-0.01859545,-0.026493806,0.024098733,0.030032592,0.017868854,0.013805305,0.0099570425,-0.0051870807,0.0047228676,-0.003104848,-0.019470055,-0.0015894265,-0.01918749,-0.010609632,0.01411478,0.015002841,0.016523309,0.004857422,0.014208969,0.017196082,0.00086283154,-0.025430825,-0.019348955,-0.02662836,0.009042071,0.005762302,0.009391913,0.011053663,-0.007440871,-0.013253631,0.006714276,0.013576562,-0.004726231,-0.009042071,0.016792417,-0.024004545,0.037163988,-0.01630802,0.0008094302,-0.012325204,-0.014545355,0.015823625,0.000039604263,0.02965584,0.0120022725,0.011773529,0.0023715254,0.017074982,-0.017411368,0.021044344,0.011026751,-0.03312735,-0.0026776372,0.0070977565,-0.014262791,-0.004433575,-0.013677478,-0.01891838,-0.012614496,-0.008550947,-0.008813328,0.004537855,-0.008228015,-0.049246993,-0.022739733,-0.012977794,0.00058951747,0.0018131236,0.02428711,0.022053503,0.0055335592,-0.000098130266,0.01375821,-0.0022504262,-0.0074206875,0.007191945,0.053364366,-0.0009713162,-0.023493238,0.028875424,0.0030880286,-0.005584017,-0.018353252,0.015043207,0.008308748,0.017774666,-0.008604769,0.003807896,-0.019537332,0.04647517,0.0065830853,-0.030974476,-0.006482169,-0.023977635,-0.015433416,0.02965584,-0.0325084,0.009883038,0.019133668,-0.00741396,-0.0072726775,-0.01568907,0.018016864,0.0034395526,-0.024044912,0.001101666,0.01126895,0.013872582,-0.0021125076,-0.010138691,0.010643271,-0.010084869,-0.010179058,0.031297408,-0.019618064,-0.022564812,-0.012809601,0.0070708455,0.02164984,0.009580289,-0.011430415,0.0006357706,-0.009573562,-0.02138073,0.010293429,0.0041611018,-0.02268591,-0.012271382,-0.013098893,0.0028239652,-0.0030173876,0.02630543,0.0067445505,-0.00003421682,-0.009553378,-0.009311181,0.011349683,0.021098165,-0.012540491,0.015500693,0.008187649,0.004776689,0.0057723937,0.02719349,-0.010071414,0.00556047,-0.025901766,0.005230811,0.016348388,-0.047497783,0.032723684,-0.0057690297,-0.032158557,-0.019967906,0.011450599,0.013939859,-0.028687047,-0.008894061,0.034957293,0.017007705,0.0037944405,-0.00975521,-0.018312884,0.019227857,0.023304861,0.00615251,0.018837648,-0.013381458,0.017209537,-0.009566834,0.02111162,0.0013808669,-0.035307135,0.0023446144,0.0038146237,0.054683,0.018541628,-0.027502965,-0.0092573585,0.0015213082,-0.005614292,0.012486669,-0.0033251813,-0.025551924,0.013805305,0.005987681,0.0096677495,0.005987681,-0.002003182,-0.006145783,-0.0112084,0.001527195,-0.032024,-0.0055772895,-0.015931267,0.022672454,0.008194377,-0.016469486,-0.0039996365,-0.03137814,-0.025834488,0.0030476623,-0.014478078,0.02467732,0.011423687,-0.021636384,0.015662158,0.019994818,0.00027814964,-0.005415824,-0.0038886287,-0.025807578,0.020331204,-0.0079118125,-0.003908812,0.0004179603,-0.045775484,-0.01755938,0.024152556,0.033046618,-0.0015305589,0.025673022,-0.013193081,0.015541059,0.0046185874,0.012513581,0.014195513,0.0028761053,0.013119076,-0.018245608,-0.0014557128,-0.014208969,-0.019079845,0.008994977,-0.0042721094,0.0142224245,0.011390049,-0.009001705,0.0061491462,-0.019456599,-0.007952179,0.00049196533,0.016980793,0.008254927,0.0044234833,-0.01832634,0.0074745095,-0.0069564744,-0.00065931765,0.01630802,-0.017249903,0.009486102,0.006320704,0.017653568,-0.03081301,-0.011867718,0.0039222674,-0.014074414,-0.0142224245,-0.0041442825,-0.00071986724,-0.021178897,0.02822956,0.005799304,0.012708684,0.0009587017,0.013536195,-0.004749778,-0.0042956565,-0.017222993,0.019456599,-0.009573562,0.0009612246,0.029871127,-0.020142827,0.011107485,0.004732959,0.0062971567,-0.0008090097,0.010865286,0.23767729,0.0144108,-0.0077772574,0.050673272,0.024085278,0.02345287,0.03143196,0.015648704,0.010784553,-0.0073466827,0.025605746,-0.0018316249,-0.010152146,-0.009687933,-0.0073735937,-0.017209537,-0.031297408,-0.026655272,0.015218128,-0.03630284,0.012432847,0.017344091,0.0093179075,-0.004208196,0.017209537,0.0006689888,0.020506125,-0.020842511,0.018904924,-0.0094928285,-0.020721413,-0.0024135737,0.002633907,0.0065797213,-0.022430256,-0.00088890153,0.0043965722,0.0019207672,0.02049267,-0.003429461,-0.024771506,-0.00509962,-0.023197217,-0.014531899,-0.007757074,0.013832215,-0.0035757893,-0.030328613,-0.0035556061,-0.00047304362,-0.02719349,-0.021407641,0.02357397,0.013643839,0.002753324,-0.013771666,0.034230698,-0.014733732,-0.040743142,0.0056950245,-0.026090141,0.008571129,0.0030728914,0.012096461,-0.006889197,-0.023547059,-0.016092733,0.0050491625,0.02123272,-0.029440552,0.0057387548,-0.028606314,-0.007736891,0.018501261,-0.020183194,-0.0036497943,0.008012728,0.022228424,0.02182476,-0.025403913,0.019133668,0.007844535,0.014935563,-0.024973338,-0.009795577,-0.01628111,-0.0012564039,0.020358115,-0.0017172535,-0.010306885,0.0030274792,-0.0116524305,-0.013993681,-0.009681205,0.022040049,-0.0028710593,0.0093179075,0.0071246675,-0.0046892287,0.009035343,-0.017101893,0.01805723,-0.00062988384,-0.0015599927,-0.013307452,-0.0024690775,-0.011430415,0.009640839,-0.0015995181,0.009068982,0.010441439,-0.018945292,0.018380161,0.0019123576,-0.01556797,0.012271382,-0.0113295,-0.023210673,0.018393617,0.012964338,-0.006687365,-0.035899173,0.008302021,0.008880605,0.0036464303,0.00042889288,-0.005284633,-0.006038139,0.012035911,-0.04480669,0.022605177,0.025659567,0.005987681,-0.017895766,-0.026978202,0.0014405755,0.014612633,-0.021071255,-0.0033369546,-0.002131009,-0.02965584,0.006364434,0.003703616,-0.0020216834,-0.016711684,-0.022605177,0.014141691,0.006014592,0.006862286,-0.011544787,0.0021663294,-0.011322772,-0.0018652636,-0.0059035844,0.0401511,0.0029181535,-0.036249015,-0.00042573924,0.011248766,-0.007938723,-0.024152556,-0.009425552,0.022066958,-0.009728299,-0.027112758,0.005977589,-0.17147642,0.017599745,0.022080414,-0.021851672,0.0014615996,0.026695637,0.016496398,0.007043935,-0.024758052,-0.002724731,0.03573771,0.011248766,-0.023506694,-0.018931836,-0.007736891,-0.022134237,-0.02995186,0.021663295,-0.0057421187,0.009560106,0.0036027,0.00541246,0.017074982,-0.03641048,0.01755938,-0.005092893,-0.009264086,0.008860422,-0.008598041,-0.008032911,-0.0070708455,-0.0031098938,0.02849867,-0.0027600517,0.0051500783,-0.0016634315,-0.016859695,0.0021495102,0.00385499,0.0062265154,0.009062254,0.004635407,-0.0041711936,0.021259632,-0.034284517,0.033208083,-0.0039592697,-0.0013489102,0.005304816,-0.0020401846,0.010549082,-0.005409096,0.019792985,0.003156988,0.006357706,0.011484237,0.020950155,0.028068095,-0.025377003,-0.0019897264,0.0030981202,-0.015971635,0.0065427185,-0.028848512,0.022053503,-0.04475287,0.0016861376,-0.01162552,-0.014760642,0.021986226,-0.019873718,-0.002004864,0.0036699774,-0.013011432,0.015110484,0.022134237,-0.014639543,0.004235107,-0.02748951,-0.010737459,-0.025538469,0.028956156,-0.01467991,-0.0064014364,0.019550787,0.004228379,0.016038911,0.004181285,0.0054999203,-0.02763752,-0.006677273,-0.028041184,-0.00335882,-0.020115918,0.020425392,0.024650408,0.00676137,0.01541996,0.0027146395,-0.028525582,0.016913516,-0.00028719002,-0.022013137,0.015635248,0.011369866,0.008503852,-0.021259632,0.02396418,0.045479465,-0.016012,-0.0024842147,0.008349115,0.0131123485,0.045452554,-0.016657863,0.0065797213,-0.026278518,-0.031889446,0.0043427506,0.0018820829,0.02591522,-0.003281451,-0.02177094,-0.0100175915,-0.00937173,0.0048170555,-0.119161576,-0.032400753,0.0032629496,0.0076427027,-0.010010865,0.006845467,0.014330068,0.019200945,0.007736891,0.031189762,-0.016361842,-0.034742005,-0.010959474,-0.0011453963,0.012829783,-0.010999841,-0.005758938,-0.0051500783,-0.026090141,0.0007690638,-0.009237175,-0.032642953,-0.016859695,-0.012170466,-0.0090824375,-0.029252175,-0.005836307,0.012177194,0.024004545,0.011672614,0.0040971884,0.00013318806,0.0062668817,-0.025659567,-0.019564243,0.008934427,-0.041173715,0.0030173876,0.008739323,-0.036141373,0.010010865,-0.024448575,-0.015393049,-0.02007555,0.013098893,0.011686069,-0.019873718,-0.015527604,0.0051668976,-0.017801577,0.011571698,-0.005641203,-0.0011622156,-0.0038348068,0.009566834,-0.023950724,0.0023429324,0.034930382,-0.008483669,0.00082582905,-0.023977635,0.015191217,-0.021932404,-0.006387981,0.024085278,-0.004776689,0.006085233,-0.011544787,0.020882878,0.01171298,-0.009775394,0.010724003,-0.031889446,0.0037877127,-0.034149963,-0.011719708,-0.010966202,-0.016684774,0.0013009751,-0.021474918,-0.0058531263,0.0005886765,0.0041913767,-0.021730572,-0.0030257972,0.016752051,-0.0041240994,0.0037103437,-0.022322612,0.0032427665,-0.008503852,-0.0057152077,0.010481806,-0.005429279,-0.028660135,-0.011013296,0.013051799,0.0009839307,0.01242612,0.001449826,-0.02603632,-0.025794122,-0.042330887,0.025242448,0.0017912585,-0.03110903,0.011443871,-0.015366138,0.014276246,0.005658022,0.012802873,0.0034715093,-0.002428711,0.02138073,0.017088437,0.007191945,-0.0152719505,-0.022632089,-0.0006210537,0.0027617337,0.027274223,-0.0099570425,-0.018353252,0.0176132,0.018622361,-0.008295293,-0.00003303421,0.02339905,-0.0027600517,0.028740868,-0.0036867969,-0.013354546,0.024892606,-0.021784395,-0.012405937,0.012843239,-0.016388753,-0.013536195,-0.017586289,0.035414778,-0.0050222515,-0.003582517,-0.009008432,-0.021407641,0.026278518,0.0019073118,0.0025767211,0.011968634,-0.029736573,-0.00044991705,0.018164875,-0.004077005,-0.008820056,0.027301135,-0.0012109916,-0.02687056,-0.021246176,-0.024892606,0.028579403,-0.008564402,0.0030611178,-0.026022865,0.010266518,0.01936241,-0.010522172,-0.004399936,0.020990523,0.022228424,-0.02078869,-0.006303884,-0.00913626,-0.001752574,-0.023506694,-0.012042639,0.010286701,-0.014060958,0.010562538,0.024031457,0.0010671864,-0.009304453,-0.010340523,0.0025212173,-0.009553378,-0.02399109,-0.022201514,-0.00062315614,0.01776121,0.009425552,0.006334159,0.018339796,-0.022564812,0.009741755,-0.002102416,-0.0023917085,-0.008638407,-0.016375298,0.011073845,0.010515444,0.021286542,-0.010818192,-0.0034193695,0.0467981,0.0063509783,0.020115918,0.00981576,-0.008994977,-0.017815033,0.002374889,-0.026910925,-0.028068095,-0.007824352,-0.021273086,0.02559229,-0.0028861968,0.028364114,0.0061928765,0.007003568,-0.021932404,0.00056639087,-0.00018312044,-0.02369507,0.023049207,-0.000033086773,0.0034849648,0.016536763,-0.02487915,-0.0053451825,-0.0029131076,0.0038348068,-0.0022689274,0.018501261,-0.010683637,-0.0077974405,-0.015648704,-0.0021596018,-0.021151988,-0.000024532566,-0.025659567,0.002179785,0.014478078,-0.020869423,0.076696135,0.017505556,-0.006990113,-0.0012151964,-0.009997409,0.013341092,0.018043775,0.0073735937,-0.0023732071,0.00007158727,0.007017024,-0.015648704,0.016711684,-0.033853944,-0.05207264,-0.014518444,0.024811873,0.028417937,-0.006889197,-0.011887901,0.026534172,-0.009210264,0.012177194,0.01299125,-0.012459759,-0.019012569,0.0043494785,-0.0174921,0.0037271632,-0.05204573,0.007017024,0.0024825328,-0.017545924,-0.00007705355,0.0058934926,-0.019698797,-0.0063476143,0.007992545,0.0060179555,0.006340887,0.007844535,0.035656977,-0.029144533,0.0044503943,-0.01541996,-0.024959883,-0.034123052,0.001050367,-0.036464304]},{"id":"010334d9-76d9-45b5-9416-6905cb5d6b1b","text":"Boxes was the wrong size ","vector":[-0.0053362916,-0.0039446447,0.017160356,-0.013093983,-0.018844808,0.0049118884,-0.0044973553,-0.024595633,0.024977267,-0.013357178,0.018607931,0.013205841,0.021397805,-0.00967244,-0.015949655,0.0036748692,0.017370911,0.021595202,0.009356605,-0.04590132,-0.016884001,0.006757548,0.0070273234,0.00026422375,-0.012791308,0.005665286,0.02955687,-0.019489637,0.0009310546,-0.003082679,0.0069023054,0.0071391817,-0.010369908,-0.0035761707,-0.03316265,-0.011047637,0.013554575,-0.003918325,0.007902449,-0.012310976,0.013383498,-0.01086998,0.003507082,0.0018341446,-0.018055221,0.019542277,0.005747535,-0.0043229884,-0.022740103,-0.008369621,0.025780013,0.032820497,-0.020989852,-0.0020052218,0.0067970273,-0.012916326,0.016423408,0.00007685107,0.014173085,0.0074484367,0.0012279721,-0.0050862557,-0.008264343,-0.008382781,-0.011514809,-0.0012534693,0.019805472,-0.013100563,-0.016739242,-0.008126166,0.009948795,0.020950373,0.002228938,0.011172655,0.014383642,-0.002663211,-0.010198831,0.004148621,0.002108855,-0.021160929,0.015489063,-0.02291118,-0.0038327866,0.0035992004,0.022832222,0.01934488,0.0029872705,0.011949082,0.0131663615,0.008178804,-0.005912032,0.0136598535,-0.00020356537,-0.0038788456,0.003247176,0.0192396,0.015120589,0.030846529,-0.0060863993,-0.02296382,-0.0025793172,0.018844808,-0.042163942,-0.015857536,-0.015331146,-0.0019640974,-0.017897304,-0.0043657576,-0.0024197549,-0.031741396,0.0010618299,0.013646694,0.019805472,-0.014673157,0.025003586,-0.010902879,-0.0049250484,-0.01090946,0.002781649,-0.0070404834,0.0023490211,0.010113292,0.022082115,-0.010014594,0.0069746845,-0.004398657,-0.03916351,-0.005800174,-0.009573741,0.011416111,0.029293675,0.02292434,0.017357752,-0.0063166954,-0.016094413,0.0067904475,-0.0061324583,0.008481479,-0.0023391512,-0.020858254,0.005309972,0.034320712,-0.00721814,-0.004040053,-0.015186388,0.023240175,0.009757978,0.013469037,-0.0019871271,-0.012534692,0.0062410263,-0.0066621397,0.014344162,-0.004359178,0.030399095,0.008757835,-0.02056874,0.0064186836,-0.020200266,-0.035005018,0.0065996307,0.022134753,0.023227016,-0.005849523,-0.0031205132,0.008034047,0.011297673,0.00481977,-0.000004735722,-0.010475187,-0.0047868704,0.021068811,-0.016252331,0.03366272,0.019529115,0.008218284,0.007428697,0.009836937,-0.018989565,-0.0013069308,-0.028635684,0.012337295,0.017291954,0.0148310745,-0.011047637,-0.012258337,-0.0027438146,-0.029346313,0.038163368,-0.0012131674,0.014936352,0.009159208,-0.017055077,-0.010185671,-0.689362,-0.03311001,0.003497212,-0.019581756,-0.00543499,0.046138193,0.011889863,0.006454873,-0.00543499,0.0014253688,-0.0289252,0.020081827,0.004286799,-0.00721814,-0.015804898,-0.022779582,0.021226728,0.0003553141,0.015844377,0.021424124,0.0011218714,0.016436568,-0.004457876,0.0136598535,0.0078103305,-0.00788271,-0.005244173,-0.013817771,-0.0024921338,-0.0047309417,-0.01747619,0.039979417,-0.0022618375,-0.0022240032,0.0699574,0.0067246486,-0.018028902,0.026424842,0.015423264,0.011751685,-0.026253765,-0.026069527,0.012771568,-0.014975832,-0.016541846,-0.0031616376,0.011271353,0.020831935,-0.0018999435,-0.02113461,0.00904735,-0.0052211434,0.0016194757,-0.0072313,0.0019229731,0.0040104436,0.01506795,0.0313466,0.008343302,-0.020739816,-0.0011613508,0.00084387104,-0.01684452,-0.010060653,-0.0062377364,-0.007283939,-0.026201125,-0.009869836,0.033031054,-0.006214707,0.0067345183,0.006987844,-0.02654328,0.03439967,0.00421113,0.035005018,0.011949082,-0.024503514,-0.008481479,-0.015633821,0.015502223,-0.006454873,-0.023279654,-0.0022256481,0.03311001,0.008270923,-0.01327164,0.020121306,-0.012811048,-0.0047210716,0.033241607,0.0055797477,0.0061916774,-0.009823777,0.015199548,0.007527395,-0.012916326,0.02533258,0.029162077,-0.007382638,-0.0061489083,0.025727373,0.014659997,0.011225294,-0.004092692,0.0015742389,-0.005783724,0.013791451,0.03508398,-0.012350455,0.022068955,0.00043303907,-0.011146335,0.013475616,-0.01448892,-0.028056655,0.032662578,-0.008514379,-0.016660284,-0.00041864556,-0.0012106999,0.0036452597,0.0127649885,-0.020779295,-0.0027635542,0.01621285,-0.00030226374,0.0074615963,-0.010797601,0.0058166236,-0.01087656,-0.005204694,0.025016746,-0.013212421,0.013015024,0.004997427,0.008540698,-0.008251184,0.007711632,-0.009468463,-0.02405608,-0.003434703,-0.004750681,-0.0018193398,0.021016171,-0.007178661,-0.006451583,-0.014133606,-0.0027471045,0.039637264,-0.008297242,-0.026911754,-0.015804898,-0.006408814,-0.003316265,-0.016502367,-0.015291667,-0.0018407245,0.0033458746,-0.021213569,-0.003743958,0.022713784,-0.037110586,-0.0005712168,-0.0054448596,-0.013100563,0.037531696,0.013396658,0.0076853125,-0.018936926,0.01029095,-0.00905393,-0.00018207791,-0.01801574,-0.011600348,0.012843947,0.003753828,-0.007909029,0.014317842,0.007158921,0.02237163,0.009192107,-0.016015455,0.013219001,0.028635684,0.0155417025,-0.0031007736,0.0109423585,-0.032873135,0.01569962,0.0042440295,-0.014817914,0.0008208414,-0.005550138,0.008481479,-0.011863544,0.0093697645,0.0241482,-0.0034708926,0.0064186836,-0.006201547,-0.0020167367,0.010429127,0.011699046,0.03424175,-0.029372633,0.006468033,-0.013923049,0.0044940654,0.03745274,0.010435707,-0.0019854822,-0.00034174309,-0.021226728,0.022397948,0.021568883,0.0022256481,0.038163368,0.0028606076,-0.026253765,-0.037136905,-0.032662578,0.037636977,0.0016531976,-0.009159208,-0.0066720094,0.027582902,0.012633391,0.041426994,-0.018857967,-0.0037143484,0.016265491,0.005497499,0.002965886,0.011277933,-0.024437714,0.03921615,0.008955232,0.008573598,0.008047206,0.008955232,0.016028615,0.0026911753,0.007652413,0.01388357,-0.015173228,0.028293531,0.011166075,-0.030293819,0.0049809776,0.0003637446,-0.02538522,-0.03371536,0.00483293,-0.00015503868,-0.025424698,0.015725939,0.0065042223,0.01801574,0.021884717,-0.001266629,-0.022095274,-0.008731515,-0.005481049,0.01508111,-0.0009664215,-0.013712493,-0.013304539,0.01140953,0.012014881,-0.0037044785,-0.004517095,0.0028096135,-0.031162363,0.002469104,-0.00056504813,-0.0069220453,-0.00028519714,0.025529977,0.01925276,-0.004454586,-0.022016315,0.018450014,-0.0100474935,0.0072641997,0.017581468,-0.018831648,0.007369478,-0.0077642715,0.018476333,0.009310545,0.014238884,-0.017212994,-0.0033146201,0.0029971404,0.016805042,0.020608218,-0.010040914,0.010501506,-0.010889719,0.012383355,-0.0029839806,0.011297673,0.013093983,0.014541559,0.019700194,-0.017252473,-0.003444573,-0.01144901,-0.0120741,0.01692348,-0.003977544,-0.0038821357,0.036321,-0.008270923,-0.0015413394,-0.011541129,-0.018765848,0.009797458,0.0012715639,-0.043216724,-0.0102317305,-0.02839881,0.007816911,0.07848494,0.029477911,0.0039709643,0.007422117,-0.005685026,-0.014725796,-0.0115608685,-0.0088762725,0.020160785,0.017805185,-0.006076529,-0.012376775,-0.00048732318,0.0022437428,0.013219001,0.010797601,0.007889289,-0.015436424,-0.0039545144,-0.04061109,-0.01754199,0.019226441,-0.01083708,0.015989134,-0.0032998153,-0.0018505943,-0.00095572916,0.016594484,0.0058166236,-0.00907367,-0.0074418564,0.0055106585,-0.0028227733,0.0070404834,0.0012296172,-0.004938208,0.015620661,-0.01931856,0.017884143,0.012264917,0.015949655,0.008198544,0.0124557335,-0.005303392,0.0029872705,-0.007343158,-0.001596446,0.009317125,0.01746303,-0.0034083836,0.046059236,-0.010369908,-0.009514523,-0.013015024,0.029714787,0.010146192,-0.017199835,-0.014383642,-0.0037011886,0.005846233,-0.00724446,-0.008981551,0.018121019,-0.018502653,0.0029987853,-0.03379432,-0.03018854,0.0029280514,-0.02653012,-0.025516817,-0.01864741,-0.017910464,-0.006744388,0.008198544,0.016462887,0.015791738,0.03492606,-0.009804037,0.009343445,-0.0018160499,0.009725079,-0.019358039,-0.014962672,-0.024332436,0.0007279004,0.022016315,0.0065667313,-0.022674304,-0.004579604,-0.017120875,0.02897784,0.012758409,0.012126739,-0.014002007,0.02776714,-0.01996339,-0.001149836,0.02359549,-0.0003551085,-0.011751685,-0.0027849388,-0.0030234598,-0.025108865,-0.0026220866,-0.017134037,-0.029214716,-0.00041843994,-0.0052145636,-0.018423695,-0.0025529978,0.013554575,-0.03313633,-0.016449727,0.005073096,-0.00022145445,0.00023872667,0.0045072255,0.029872704,0.0005872553,-0.0007702585,0.006280506,-0.027398666,0.0023769855,0.009205268,-0.024411395,0.0042045503,0.008698616,-0.059271656,-0.010705482,-0.0012740314,-0.003803177,0.01029095,-0.007731372,-0.0028277081,-0.031109724,-0.009784298,0.00603705,0.0156733,0.011337152,0.003081034,-0.045690764,0.0012921261,0.00423416,-0.023937643,-0.032846816,-0.023161216,-0.0088762725,0.0033573892,-0.015883857,0.017502509,0.007297099,-0.0030892587,-0.021253048,-0.014975832,-0.016265491,-0.0481648,-0.00072995666,-0.00900787,0.019213282,0.044453744,0.04226922,0.018844808,0.003806467,-0.0059646713,-0.012567592,-0.012725509,-0.005681736,-0.0037834372,-0.037031624,0.0078563895,0.012817628,-0.0075208154,0.017436711,0.0133177,0.004714492,0.011863544,0.000049272076,0.009113149,-0.0006522317,-0.01145559,0.007369478,-0.017989421,0.009725079,-0.0043887873,-0.011120016,-0.0020200266,0.009106569,0.018357895,-0.022845382,-0.032215144,0.0252931,-0.028240891,0.0033985137,-0.0069615245,-0.006994424,-0.00035490288,-0.016555006,-0.008244603,0.0180947,0.017410392,0.005803464,0.011613508,-0.009961955,-0.016805042,0.0035992004,-0.010468607,-0.0072049806,0.008369621,0.0018785589,-0.028135614,-0.0109423585,-0.023305973,-0.0040301834,-0.026095847,0.0006489417,0.02296382,-0.00605679,0.019068524,-0.014620517,-0.012284656,0.0031863123,-0.01638393,0.014738956,-0.0019542277,0.026609078,0.021568883,-0.017594628,-0.018568452,0.012389935,0.018963246,-0.020437142,0.0061916774,0.03137292,-0.0069549447,0.029741107,-0.005059936,-0.013324279,-0.024990426,-0.035557732,0.023885004,-0.019660715,0.0024345596,0.0014261913,0.002653341,-0.028240891,0.008619657,-0.023806045,-0.011238454,-0.007981407,-0.015028471,-0.019687034,0.01090946,-0.016015455,0.016436568,0.023937643,-0.019200122,-0.0065371217,0.002656631,0.001538872,-0.017923623,0.0070404834,0.011146335,0.0043196985,0.016673444,0.013416397,0.0193054,-0.015239027,0.005313262,-0.019594915,0.024529833,-0.024595633,-0.019015884,0.007191821,0.0037834372,0.01025805,0.004895439,-0.017068237,-0.024503514,0.006451583,-0.010067233,-0.0022009735,0.017752545,-0.0038920054,-0.025622096,-0.03192563,0.003743958,-0.027609222,-0.016555006,0.00783007,-0.03258362,-0.02600373,-0.0039972835,0.005316552,0.017607788,-0.0071391817,-0.010323849,0.027556583,0.020700337,-0.017173516,0.009428984,0.0044249767,-0.0042210002,-0.031136043,-0.0090276105,-0.02112145,-0.024371916,0.016805042,-0.021279367,-0.00023399737,-0.02405608,0.003197827,-0.0031501227,-0.005977831,-0.011416111,0.046690907,0.005500789,0.0077050524,-0.036452595,-0.02120041,0.0040762424,0.004155201,0.017226154,-0.012330716,-0.026648559,-0.023345454,0.020884573,0.020397661,0.020884573,-0.01941068,0.007862969,0.01995023,0.028714644,-0.013153202,-0.016778722,-0.033610083,0.0026434711,-0.017752545,-0.002656631,0.0012641615,0.023634968,0.014173085,0.0054020905,0.005678446,0.023411252,-0.012732089,-0.0012921261,0.0006275571,0.0023210566,-0.02405608,-0.0099553745,-0.01505479,0.008402521,0.007586614,-0.02299014,-0.0024477195,-0.014094126,-0.017607788,0.00042234675,0.0035136617,0.0148310745,0.024806188,0.03197827,-0.0017864404,0.044401105,-0.0002817016,0.0098303575,-0.009468463,-0.015857536,-0.021805758,0.014094126,-0.008520959,-0.011784584,-0.013607214,0.0008130278,0.008902593,0.02181892,0.0038426563,0.014317842,0.0037702776,-0.00724446,-0.00016768441,0.013738812,0.011245034,-0.0012748538,0.021976836,-0.015581181,-0.015844377,-0.013344019,0.03442599,0.00047580837,-0.030241178,-0.00092776463,-0.0014483985,0.01024489,0.005563298,0.014278363,0.008020887,-0.0053626113,0.033346888,-0.0036452597,-0.010343589,0.0240824,0.023424411,-0.0050303265,-0.0038360765,0.005191534,-0.035715647,0.0035761707,0.00604034,-0.025174662,-0.030609652,0.0031155783,0.023661288,-0.020779295,-0.005915322,0.01086998,0.00043632902,-0.022003155,0.02359549,-0.017305113,-0.01985811,0.013199261,0.0049316282,-0.018502653,0.0026829506,-0.0090276105,-0.009514523,-0.020818776,-0.020739816,-0.009310545,-0.019476477,-0.032715216,0.007941929,0.025148343,-0.015923336,-0.017713066,0.22719048,0.0112516135,0.0040532127,0.028451448,-0.0014788305,-0.009988274,0.020950373,-0.015120589,0.00096806645,0.017581468,-0.009751398,0.019173803,-0.00020027543,0.0031238033,0.009330286,-0.018357895,-0.03368904,-0.02474039,-0.015396945,-0.0045730243,0.015410105,0.010948938,0.006576601,-0.010600205,0.0351103,-0.012797887,-0.007915609,0.020463461,0.009797458,-0.0026862405,-0.012350455,-0.0070997025,0.0059482213,-0.0063726245,-0.018805329,0.00049390306,-0.0067081987,0.010100133,0.008159065,0.0131334625,0.0107581215,-0.009547422,0.00725762,-0.012192538,-0.04719098,-0.0004799208,-0.005007297,-0.008066947,0.005356031,0.020752976,0.012403094,-0.009711919,0.005842943,0.040347893,-0.016397089,-0.00541525,0.0006723826,-0.010409388,0.0059449314,-0.012738669,0.00039993398,0.010685743,-0.00842884,0.016765563,-0.010784442,0.025569456,-0.010804181,-0.004523675,-0.007198401,-0.023648128,0.007507656,0.019371198,0.00025312018,0.013324279,-0.0205819,-0.02776714,0.013528256,0.023792885,0.019673875,0.01808154,-0.001753541,-0.0119622415,-0.0052737826,-0.010652844,-0.013988848,-0.033504806,0.014502079,0.020384502,0.01211358,-0.02471407,0.013120303,-0.013936209,-0.00017446993,0.012245177,0.011001578,0.030241178,-0.0055205286,0.034268074,-0.01751567,0.001751896,-0.040242612,-0.010804181,0.007902449,-0.016265491,-0.015633821,0.00079205434,-0.0104488665,0.028293531,0.019068524,-0.015173228,-0.016357608,-0.02779346,-0.008527539,0.018436855,0.0384792,-0.0026484062,-0.01638393,-0.005207984,-0.006935205,0.0029264065,0.003678159,-0.02471407,0.029346313,0.028451448,0.0054053804,-0.0062903757,-0.009981695,0.019910749,-0.0066720094,-0.027898738,0.011817484,-0.010784442,0.00028581402,-0.014541559,0.0016819846,0.00087101304,-0.010652844,0.009461883,-0.0047770008,0.02173996,-0.007093122,0.031004446,0.014015168,-0.00030884362,0.018844808,-0.00028416904,0.0313466,-0.020068668,-0.0034182533,0.0003820449,-0.026253765,0.0076392535,-0.006165358,0.009929055,-0.0069812643,-0.0053461613,-0.0031451879,-0.027661862,0.014712636,0.012488633,-0.02359549,-0.002344086,-0.0019131033,-0.01744987,-0.0039512245,-0.011277933,-0.17012966,0.032320425,0.025740534,-0.019713353,0.012771568,-0.0013209131,0.018239457,0.009981695,-0.026911754,0.010922619,0.007172081,0.011238454,-0.020713497,-0.0017864404,-0.005971251,-0.02887256,-0.0021269498,-0.010988418,0.025148343,0.015568022,0.019976549,-0.0021384645,0.02050294,-0.0038920054,-0.014975832,0.018357895,-0.0007879419,0.013988848,0.017291954,-0.007915609,-0.008553858,-0.03905823,-0.010600205,-0.007527395,0.00013262592,-0.00845516,-0.011830644,0.008238023,-0.008942071,0.008540698,-0.00011514809,0.031241322,-0.02229267,0.009836937,-0.0039939936,0.02646432,0.021424124,0.016620804,-0.027582902,-0.01755515,-0.0042999587,-0.027898738,0.0062936656,0.012468893,0.021292526,-0.0024296248,0.012021461,0.009777718,-0.023871845,-0.029083118,-0.017778866,-0.007731372,0.017002437,-0.015291667,-0.02592477,0.017792026,0.0051750843,-0.015462744,-0.00012152236,0.013580895,0.010402808,-0.010962098,0.010501506,-0.013422977,-0.001141611,0.01748935,-0.016962958,-0.00056052447,0.011903022,0.002001932,-0.013765132,0.02887256,-0.015910177,0.003980834,-0.003204407,0.022095274,-0.0045763142,0.008619657,0.0011950727,-0.007060223,-0.013212421,-0.031241322,-0.011784584,-0.015423264,0.019660715,0.021279367,-0.014923193,0.0035268215,0.019173803,0.0060107303,-0.015331146,-0.0117780045,-0.009172368,0.01145559,0.037110586,0.014331003,-0.01267945,0.014002007,0.018963246,-0.0047375215,-0.016765563,-0.005928482,0.01025147,0.013396658,0.019476477,-0.0017124166,0.01269919,-0.0144626,0.03755802,-0.029662149,0.044295825,0.004355888,-0.028214572,0.026174806,0.012870267,-0.0043098284,-0.09485571,-0.020937214,-0.00021569704,0.019673875,-0.00842226,-0.0029198267,0.00029074893,0.030504374,-0.007132602,0.033952236,-0.013219001,-0.007941929,0.0048066103,-0.008020887,0.010152772,0.009981695,0.020989852,0.0016145407,-0.012968965,0.013396658,-0.013330859,-0.0018933637,-0.0056554163,0.00038985853,-0.012291236,-0.012501793,-0.029714787,-0.003441283,0.018871127,-0.015212708,0.034715503,0.0030629393,0.0045730243,0.0054415697,0.0064252634,0.0043164087,0.0042571896,-0.00048526697,0.016962958,-0.032794178,0.007540555,0.004415107,-0.009751398,-0.025411539,-0.013324279,-0.001934488,-0.021239888,0.02903048,0.0056981854,-0.006928625,-0.013594055,-0.0020118016,-0.024253478,-0.018305257,0.02539838,-0.0012468894,0.01754199,0.006099559,0.016805042,0.01269261,0.011705626,0.015317986,-0.018884286,0.029741107,-0.0008693681,-0.013344019,-0.007553715,-0.018936926,0.019581756,-0.015489063,0.0056981854,0.017765706,-0.021858398,0.01323874,-0.024661431,0.020187106,-0.032715216,-0.012870267,0.004165071,0.0050500664,-0.0074352766,-0.0063002454,-0.0046585626,-0.016147053,0.01575226,0.013291379,-0.02104249,0.010146192,0.010027754,-0.0128571065,-0.007297099,0.008685456,0.026859114,-0.018673731,-0.022832222,0.020752976,-0.0065009324,0.00020654689,-0.0047210716,-0.018752689,-0.02048978,-0.027661862,-0.047427855,0.040163655,0.017607788,0.0010042558,-0.01086998,-0.010646263,-0.013620374,-0.034636546,-0.020121306,0.007553715,-0.026516961,-0.0027240748,-0.018265776,-0.024635112,-0.020371342,-0.019042205,0.025503658,-0.0011309187,0.005082966,0.0036485496,-0.0046717227,-0.017620947,0.0036485496,-0.007612934,-0.0076392535,0.0017091266,-0.006862826,0.017923623,-0.0018390795,-0.0025151633,0.0037604077,-0.029635828,-0.0040729525,0.007981407,0.016686603,-0.015989134,-0.018765848,0.014633677,0.004283509,-0.032399382,-0.0041420413,-0.020358182,0.0120412,-0.007297099,-0.023490211,-0.009376344,-0.008244603,0.003964384,0.023885004,0.006935205,0.009488203,0.029056799,-0.022450589,-0.028688325,-0.021621522,-0.011402951,0.015120589,0.009540842,0.02056874,-0.022213712,0.031557158,0.0023967254,-0.011646407,-0.016607644,0.022161072,-0.0064384234,-0.017502509,-0.008488059,-0.0067279385,-0.023950802,-0.010152772,-0.007119442,0.014765276,-0.00846174,0.010021174,0.033241607,0.0023194116,0.0028458028,-0.010054073,0.0192396,0.0053823506,0.011784584,-0.024345597,-0.0030892587,0.011837224,0.0003477061,-0.015791738,0.024279797,-0.003938065,0.023279654,-0.028240891,0.0012764989,-0.026714357,0.010027754,0.008330142,0.03558405,0.004474326,0.020910893,0.017160356,0.02592477,-0.0047868704,-0.004089402,-0.0047934507,-0.03374168,-0.029398954,0.0031040634,-0.009751398,-0.04097956,0.0026253765,0.014396802,0.019976549,-0.008849953,0.015462744,0.017357752,-0.014423121,0.0217268,0.0072707795,-0.013936209,-0.028082974,0.007737952,0.021503083,0.0144626,0.018278938,-0.010343589,0.015831217,0.016686603,0.0154495835,-0.014107286,0.011718785,-0.0062508965,-0.005740955,-0.009396085,-0.0048033204,0.0010305754,0.007468176,0.015594342,0.00050911907,0.023556009,-0.0057179253,0.04040053,-0.0035531411,0.005000717,0.0025809621,-0.004994137,0.005125735,0.027451305,0.0035301114,0.0041190116,-0.03368904,-0.003077744,0.0022684175,0.005267203,-0.022068955,-0.012712349,0.008889433,0.000466761,0.003018525,0.0036419695,0.013205841,0.0192396,-0.0037143484,0.024398236,0.011738526,0.00005798529,-0.0053231316,-0.008409101,0.0015026826,-0.017252473,-0.01506795,-0.0039479346,-0.013153202,-0.030004302,-0.002233873,0.013015024,-0.023753406,-0.028293531,0.01752883,-0.0066062105,-0.009192107,-0.005905452,0.035899885,-0.015554862,-0.022174232,-0.017686747,-0.011547709,-0.005536978,-0.028214572,-0.02708283]},{"id":"e139b53e-4b00-4c42-a2ef-e878bfaf7a77","text":"How much do I get paid for each post?","vector":[-0.0011698359,-0.001391506,0.009921762,-0.037020534,-0.036632206,-0.002397921,-0.025513103,-0.0077082966,-0.008607921,-0.0066339243,-0.0098894015,0.020568402,-0.024594061,-0.02273009,0.0115915695,-0.0015387469,0.026004983,0.020503681,-0.01852321,0.007714769,-0.024438731,0.009785848,-0.025280107,0.020736678,-0.014109225,-0.019934135,0.022600649,0.024153957,0.0116886515,-0.0059964205,0.024128068,0.00088182656,-0.015403649,-0.01265947,-0.015584868,0.017345285,0.007041668,0.019752914,0.014432831,0.016736906,0.020646067,0.012471778,-0.0018574989,-0.0142775,-0.01647802,-0.010614279,-0.0010921705,-0.049214013,0.0002793125,-0.0008332856,-0.01470466,-0.0149506,-0.0490069,-0.009190412,-0.025694322,0.0149247125,0.029461097,0.019506974,-0.009242189,0.009326327,0.020814342,0.0042521837,-0.019157479,0.018134885,-0.03251594,-0.025590768,-0.0045401934,0.017578281,-0.013293738,-0.00036850641,0.014406943,0.0033460867,0.018290216,-0.018937428,0.020607235,-0.016206192,0.0049479366,0.0048087863,-0.006705118,0.0155330915,0.01794072,0.0017134942,-0.014161002,0.032645382,0.032205276,-0.0073652742,-0.0036049716,0.022082878,-0.015364816,-0.005129156,-0.0015225665,0.023959793,0.038237292,0.0013809889,-0.0028380253,0.020296574,-0.016089695,0.033422034,0.018510267,-0.012931298,-0.0073329136,0.0035920274,-0.03261949,-0.0036826371,-0.00045749807,0.0052424185,-0.004326613,-0.018859763,0.039712936,-0.00796071,-0.019882357,0.029098658,0.008103096,-0.016944014,-0.0042036427,-0.017448839,0.003724706,-0.0066857017,-0.0053233197,-0.01605086,0.043492656,-0.00692517,0.0364251,-0.0018866234,0.031894613,0.0022700967,-0.0014327659,-0.022160543,0.0066792294,0.0053395,-0.0135137895,0.0071581663,0.013267849,0.010931413,-0.023416135,0.025073,-0.0060643777,-0.0044431114,-0.029849425,-0.0059058107,0.040463705,0.01623208,0.014044504,0.0015686804,0.0031066183,0.014575218,0.0070481403,-0.0008680733,-0.0023946848,-0.024335176,-0.008407285,-0.012232309,0.012976604,0.018562045,-0.011151466,0.015934363,-0.0038185515,0.01598614,-0.010264785,-0.049783558,-0.010323034,0.022160543,0.009967067,-0.01333257,0.010200064,0.03249005,0.016193248,-0.006439761,-0.023092529,0.003847676,-0.017189955,0.005436582,-0.012866577,0.018160773,0.0022409721,0.039609384,0.007947765,-0.014406943,0.015377761,-0.026108539,0.0006245597,0.021047339,-0.0029140727,0.011086744,-0.0043622097,-0.011565681,0.011843982,-0.014083336,0.004456056,-0.0060643777,-0.0074429396,0.018989203,0.0050773793,0.012381168,-0.65197563,-0.015235374,0.01763006,-0.0036308602,0.0036308602,-0.005274779,-0.010251841,0.0026454797,-0.027933676,0.002608265,0.00040329408,-0.011598041,-0.0032765116,0.0044463472,0.019261034,-0.025836708,0.022963086,-0.009073914,-0.016037917,0.0010193591,-0.04139569,-0.0032668032,-0.009967067,0.029461097,-0.017811278,-0.00014279118,0.0021099115,-0.030677855,-0.03150629,0.029616429,-0.007287609,0.029461097,0.012756552,0.023351414,0.044346977,0.0008842536,-0.0067892554,0.005381569,-0.023325525,0.028813886,-0.041110914,-0.01192812,-0.0020371003,-0.011792205,-0.011080272,-0.020723732,0.012154644,0.0078053786,0.0449683,0.019843524,-0.018652653,0.02733824,-0.010970246,-0.010141814,0.011371518,-0.010361866,0.02376563,0.0043330854,0.004488416,0.015520147,-0.009656405,-0.005158281,-0.034897678,-0.019390475,0.003912397,-0.0065303706,0.0063135545,0.013021909,0.016918125,-0.0075335493,0.007876572,-0.0032700393,0.0070610843,0.012911882,0.0011868252,0.012381168,0.008167817,-0.014290445,-0.009145108,-0.013306682,-0.008886223,-0.00909333,-0.015869642,0.021940492,0.011132048,0.008588505,-0.011319741,-0.030004755,0.01717701,0.018458491,0.0007507661,0.043984536,0.002451316,0.000074126016,-0.022678314,0.010996134,-0.011701596,0.012931298,-0.006879865,-0.0060061286,-0.007546494,0.009229246,-0.00713875,0.005494831,0.034664683,-0.008789141,-0.027597126,-0.004388098,0.016400356,-0.019584639,0.012245254,0.007792434,-0.009073914,-0.011559209,-0.014173946,-0.025888486,0.0022587704,0.018380824,-0.009520491,-0.012109339,0.01659452,0.029305765,0.024684671,-0.013125462,-0.004003007,0.0037117617,0.0049285204,-0.0030645495,0.013772675,0.0033752113,-0.0026422436,0.00286715,0.0020824051,-0.015351872,-0.020024743,-0.013106046,0.015740199,-0.0085755605,0.009895873,-0.027933676,-0.0241669,0.0068086716,-0.000076451935,-0.010012371,-0.016128527,-0.023390247,0.010012371,0.0021358,-0.0010088419,0.013798563,0.0037311781,-0.015662534,-0.0092810225,-0.017422952,-0.030185975,-0.012510611,0.0046081506,-0.013371403,-0.032567713,-0.0036632207,0.011028495,-0.0011674089,-0.00991529,0.0068539768,-0.035829663,-0.0145104965,0.0039771185,0.0024383718,0.0065918555,-0.0036276241,0.006090266,-0.0036405683,-0.0043816264,-0.0062035285,0.01162393,-0.004588734,0.01955875,0.0000074391473,-0.019002149,-0.018717375,-0.0091839405,0.024904724,0.01616736,-0.0040288954,0.024063347,0.008213122,-0.022807756,0.052864287,0.001863971,0.006426817,0.009287494,0.00031126858,0.0028655317,0.020581346,0.014821158,-0.017720668,0.030030644,-0.014743493,0.011242075,0.01089258,-0.00029245898,0.0062747216,0.0059575876,-0.018199606,-0.011604514,-0.037331197,-0.0049932417,-0.013720897,0.028995104,0.013824452,0.01592142,-0.006009365,0.013902117,0.016659241,0.0010306854,0.004737593,-0.03267127,0.009494602,0.0018024858,0.034069248,0.0030677856,0.0042424756,0.017785389,-0.014782325,0.0049900054,-0.00039803548,-0.002660042,0.009164524,0.012374696,-0.0228207,-0.022859532,-0.0031923738,0.005595149,0.011889287,0.021409778,-0.008038375,0.005475415,-0.0030629314,0.010756666,-0.00014451034,0.002833171,0.008763253,0.012025202,-0.007035196,0.0073911627,0.006815144,0.016037917,-0.0059931846,-0.0033719754,0.01162393,-0.00016989319,0.008620866,-0.011966952,-0.004514305,0.00064074004,0.007041668,-0.003912397,0.004747301,-0.010018844,0.010361866,0.02992709,0.018769152,0.0071646385,-0.009041553,0.023817407,0.022587704,-0.011041439,0.0121417,0.015597813,-0.021966381,-0.023234917,-0.013474957,-0.00035697795,-0.015287151,0.010491309,0.008057791,0.0029383432,-0.02392096,0.009941178,0.02666514,-0.018769152,-0.013449068,0.009857041,0.013002492,-0.01302838,0.006187348,0.01546837,-0.033473812,0.019390475,0.0028428794,-0.0057375357,0.02974587,-0.003886509,0.00048055503,0.00026839078,-0.006989891,0.04411398,-0.012452362,0.007980126,-0.024891779,0.014743493,0.015274206,-0.009740543,-0.03743475,-0.0067504225,0.011636875,-0.012523555,-0.03689109,-0.016879292,-0.0016058951,0.027726568,-0.0070481403,-0.0047181766,0.024891779,0.018626766,-0.009235717,-0.0048184944,0.00881503,0.05182875,0.004096853,-0.018380824,0.017863056,-0.02889155,0.0011876343,0.09682294,0.018096052,0.010297145,0.014549329,-0.023079585,-0.0111061605,-0.006556259,-0.0032862197,0.005815201,-0.00811604,0.023118418,0.00970171,-0.036813427,0.00811604,0.012206421,-0.010724305,0.0024577882,-0.04546018,0.0220311,-0.019481085,-0.004358974,-0.0058281454,0.020335406,0.053589165,0.020969674,0.007637103,0.020270685,0.032593604,-0.019998856,-0.0018154301,-0.015766088,-0.0027765401,-0.0030192446,0.016115582,0.01616736,0.009539907,-0.021293279,-0.01101555,0.02754535,0.02376563,0.0031713394,0.015688423,-0.0027846303,-0.009857041,0.022082878,-0.032386497,-0.004310433,0.031583954,0.023778575,-0.006229417,-0.01546837,0.007378218,-0.020426014,-0.016296802,0.005566024,-0.014626995,-0.005744008,-0.0028995103,-0.02156511,-0.019118646,-0.021073228,-0.022600649,0.03761597,0.0046599275,-0.023209028,-0.017487671,-0.01012887,-0.0081872335,-0.014847047,0.0110738,-0.011863398,-0.010096509,-0.046599273,-0.018458491,0.042923108,-0.007086973,0.034121025,0.008336092,0.00713875,0.0064785937,-0.016879292,-0.033810362,-0.017060513,-0.012458834,-0.002177869,0.019235145,-0.012038146,0.027390018,-0.007546494,0.011093216,0.016180303,0.012504139,0.020982618,-0.033603255,0.016866349,-0.012717718,-0.008950944,0.017410006,-0.013889173,0.006119391,-0.00820665,0.0026924026,-0.0011043057,-0.04121447,-0.010847275,0.026716918,0.03280071,0.021422721,-0.00007139559,-0.009436353,0.010025316,0.0015152855,0.026613364,0.0056695784,0.0121028675,0.049291678,-0.0028962744,0.028089007,-0.013720897,-0.005268307,-0.011216186,-0.03865151,0.027053468,0.021176782,-0.039091613,-0.0043525016,-0.028813886,-0.017578281,-0.0040353676,0.008271371,-0.0033137263,0.01583081,-0.025487214,-0.018484378,-0.01726762,-0.020581346,0.0026713682,-0.0023704146,-0.014743493,-0.005278015,-0.0022247918,-0.020050632,-0.028089007,-0.015791977,0.031040294,-0.03453524,0.008685587,0.00013399313,-0.0034981817,0.013216072,0.019998856,0.010407171,-0.031376846,-0.0012321301,0.003789427,-0.031376846,-0.0015557362,-0.0016366377,0.012076979,-0.004316905,0.011643346,0.011209714,0.013183711,0.013578511,0.006598328,-0.007196999,0.009203357,-0.0070028356,0.004922048,-0.0007948574,0.010549558,0.029357543,0.009934707,0.02120267,0.008349037,0.008387869,-0.011041439,-0.01693107,-0.035337783,-0.021150893,0.026949914,0.001225658,-0.014031559,-0.010465421,-0.02306664,-0.010840803,0.020270685,-0.012258198,0.01445872,-0.00012206016,0.010679,0.0038444402,0.029124547,-0.02034835,0.020892007,-0.01589553,-0.018380824,-0.025500158,-0.0055239554,0.009268078,0.010782555,0.022600649,-0.0057472438,0.046107393,-0.013682065,0.0006019073,-0.025888486,-0.014290445,-0.00811604,0.002609883,-0.0050547267,-0.027286464,-0.010601335,0.0062844297,-0.0014084955,0.010627223,-0.015973195,0.010361866,0.0039641745,-0.02333847,-0.009818208,-0.009552851,-0.002446462,-0.0010978336,0.0043039606,0.03142862,0.0074882447,-0.011915175,-0.0051841694,-0.015701367,-0.004517541,0.034276355,0.049291678,-0.031247402,-0.0069381143,0.011183826,0.011895759,-0.0029593776,-0.013099574,0.005951116,0.018471435,-0.020115353,-0.008018958,-0.0033460867,-0.003886509,0.01684046,-0.0054592346,0.0011204861,-0.0063523874,-0.0034722933,-0.012510611,0.0065303706,0.002660042,0.016555687,0.007934821,0.0068539768,-0.034561127,-0.029538762,0.0019303103,0.021500388,0.009999428,0.022432372,-0.025810821,0.017643003,-0.0028703858,-0.012866577,-0.03127329,-0.0065692035,-0.026108539,0.014639938,-0.01546837,0.0017296744,-0.016115582,0.005760188,-0.02547427,-0.0032700393,-0.01180515,-0.002556488,-0.012316447,0.004265128,0.024205735,-0.025784932,-0.028425558,0.025849653,-0.013054269,0.003947994,-0.01805722,-0.00544629,0.017863056,-0.0074364673,0.021966381,0.009196885,0.019131592,0.0077600735,0.011280907,0.021642774,0.016982846,-0.0048379106,-0.0052650706,0.0037020536,0.023170196,-0.0149247125,-0.019079814,0.014859991,-0.02733824,-0.0391175,0.029305765,-0.0077665458,-0.030988518,-0.01119677,-0.0055724964,0.00224259,-0.0018316103,-0.012607693,0.014691716,0.02419279,-0.00063143636,0.007908932,-0.0170864,0.0016956958,0.003297546,-0.022613592,0.030470748,0.012309975,-0.002881712,-0.0299012,0.012911882,0.011636875,-0.0034820014,-0.014135113,0.019028038,0.028632665,-0.011326212,-0.024322232,-0.021008506,-0.008128985,-0.0048702713,0.049343456,0.0009384576,-0.01955875,-0.027390018,0.025150664,0.022251153,0.011365045,-0.0067568948,-0.009248662,-0.012212893,-0.0008037566,0.019002149,-0.020607235,-0.01095083,0.048126694,0.01055603,-0.037590083,-0.00079162134,-0.0170864,-0.033810362,-0.03953172,-0.0019934133,0.006536843,-0.008808557,-0.00018971406,-0.01315135,0.022419428,0.006190584,-0.0026843124,-0.0036340961,-0.00035273063,-0.023377303,-0.009902346,-0.007514133,0.0074364673,-0.033991583,0.0018526447,0.030134197,0.018251382,-0.00079081237,0.006397692,0.005701939,0.0017474728,-0.00031066182,-0.009805264,0.016283857,0.0145363845,0.021189725,-0.022652425,-0.004113033,-0.009895873,-0.0047796615,-0.009073914,-0.008666171,0.020167131,0.0006358859,0.0088926945,-0.020283628,-0.0128148,-0.019209256,-0.005815201,0.012504139,0.0117857335,-0.028296115,0.01180515,0.033059597,-0.017720668,-0.016219137,0.02212171,-0.024412842,-0.008251955,0.016037917,-0.013876229,-0.011986369,-0.00043605917,0.002975558,0.0074623562,-0.0110090785,-0.012109339,-0.014406943,0.0033946277,-0.0021228557,0.019131592,-0.034949455,0.0043363213,-0.021306224,0.0026163552,-0.014911768,-0.0064624134,-0.015740199,-0.021370945,-0.0065303706,0.035570778,0.0036082077,-0.038263183,0.021332113,0.025914375,0.014005671,0.007527077,0.2392096,0.0018008678,0.0055207196,0.048929237,0.0069963634,0.016180303,0.0056695784,0.013216072,0.007022252,0.0030548414,0.0061032106,0.0028121367,-0.026432144,0.0091839405,0.012238782,-0.03727942,-0.017487671,-0.0075529655,0.015248318,-0.0052132937,0.024128068,0.0053718607,0.0056792866,-0.0029609955,0.024361065,0.015727255,-0.016452132,-0.0035078898,0.020180074,0.010355394,0.0017846875,-0.004197171,0.002941579,0.0073134974,0.0056792866,-0.00088182656,0.0072746645,-0.013565566,0.024141014,0.03176517,0.03458702,-0.0031130905,-0.0038120796,-0.018846817,-0.0009821444,0.0074235233,0.004850855,-0.0066274526,-0.02891744,0.026147371,-0.04447642,-0.011999313,0.029875312,0.0025322174,-0.014005671,-0.015157708,0.0068669207,-0.0030532232,-0.010601335,0.024231622,0.020956729,0.029383432,-0.0054657063,0.024361065,-0.010102982,-0.013449068,0.01726762,0.0032247344,0.032748934,-0.017837167,-0.0077471295,-0.015571924,-0.01598614,-0.007345858,-0.00802543,-0.0005100841,0.035156563,0.04530485,0.026639251,0.008038375,0.010329505,-0.004579026,-0.0011156319,-0.02367502,0.015546036,-0.029202212,0.027312353,-0.0046113865,0.0049447007,-0.01366912,0.003689109,0.00007751377,-0.028140783,-0.018665599,-0.018665599,-0.011721012,0.011002607,0.025784932,-0.022950143,-0.012258198,0.009960595,0.05799021,0.0026406255,0.008310204,-0.011636875,-0.0080642635,-0.016568631,0.019015092,0.021642774,0.0031778116,0.015908474,-0.029512873,0.022755979,-0.0007192145,-0.0071581663,0.010795498,0.004902632,-0.030056532,0.0061258627,-0.021940492,-0.0072228876,-0.026458032,0.0005117021,-0.003624388,0.008426702,-0.026535697,-0.015766088,0.006879865,-0.011617458,-0.019662306,-0.0008632192,-0.013863284,-0.006138807,-0.0029658496,-0.018989203,0.0037149978,-0.0032651853,-0.0031875197,-0.009514019,-0.00018455659,-0.005575733,-0.0054139295,0.021383889,-0.02754535,0.026496865,-0.025098886,0.019817635,0.0072552483,-0.005119448,-0.0002946838,-0.02120267,-0.004689052,0.009423409,-0.012555916,0.006345915,-0.010937885,-0.00018071376,-0.046262722,-0.006646869,-0.034664683,-0.012420001,-0.010808443,0.03318904,-0.025940264,-0.03233472,-0.008983305,-0.16320102,0.013131934,0.023092529,0.002184341,0.0012604457,0.022173489,0.011416823,-0.0067310063,-0.012944243,-0.0027360893,0.020581346,-0.020840231,-0.0048152586,-0.017785389,0.0128083285,0.0029965923,-0.024671728,0.034897678,-0.015157708,0.00851084,0.04261245,0.00245617,-0.014678772,-0.026768694,0.015390704,0.0006593474,-0.011436239,0.0020872592,0.00067552767,-0.0143163325,-0.029771758,0.012135228,-0.0001304537,-0.005646926,0.023014864,0.012827745,-0.014393998,-0.0059575876,0.0041939346,0.00448518,0.026341535,0.018820928,0.0024885307,0.0049738255,-0.0039706463,-0.0035014178,0.012924827,-0.0034820014,0.0059478795,-0.0032862197,-0.0008142738,-0.016361523,0.03660632,-0.0031227986,0.0013235488,0.016452132,0.0141221685,0.024594061,-0.0031050004,-0.013345514,-0.012769495,-0.030496636,-0.007889516,-0.023118418,-0.018872706,-0.0185491,-0.020646067,0.0008567471,-0.024322232,0.015856698,-0.000064872904,-0.023377303,0.037874855,0.008853862,-0.0069963634,0.0062455973,-0.008336092,-0.0062617776,-0.004753773,0.031014405,-0.00510974,0.042974886,-0.010051205,0.025849653,-0.017345285,0.0024448438,0.01976586,0.020749621,-0.022807756,-0.016555687,-0.016633352,0.0050288383,0.001122104,-0.000479746,-0.00012307144,0.0012199949,0.009125691,0.019040981,0.000013184419,-0.018820928,0.0056728143,-0.0023639423,-0.04784192,0.017215842,0.024891779,-0.007527077,-0.0021503624,0.031920504,0.015740199,-0.0062132366,-0.011157937,0.029357543,0.010154759,0.018743264,0.029305765,0.019351643,-0.0058410894,-0.011067328,-0.0004959263,0.011941064,0.060113065,-0.0153389275,-0.033758584,-0.0030742576,0.0022231736,-0.0076888804,-0.09459653,0.01445872,0.004206879,0.016128527,0.007455884,0.014549329,0.01949403,0.016439188,-0.0035920274,0.009080387,-0.00829726,-0.016956959,0.0008591741,0.005773132,0.009514019,-0.020400127,0.010187119,-0.02733824,0.012413529,0.021707496,0.011986369,-0.016969902,0.00039985575,-0.014989433,-0.008303732,-0.013552622,-0.02327375,0.012303503,0.01034245,-0.0033299064,0.018367881,-0.03404336,-0.0145104965,-0.017901888,-0.0023040753,-0.009352216,-0.033784475,-0.022833645,0.006776311,-0.031739283,0.003941522,0.007734185,0.0022555343,-0.014549329,-0.0030807299,0.00468258,-0.0046016783,-0.020801399,0.016283857,-0.012704775,-0.025810821,-0.0008672643,-0.0048282025,-0.018199606,0.010931413,0.0129054105,-0.019519918,0.030418972,-0.015999084,0.016490966,0.0057343,0.008400814,-0.00970171,0.00046761078,0.032748934,-0.010310089,-0.007604743,-0.006608036,0.010213007,-0.007132278,-0.026742807,0.012497666,-0.0020629887,-0.012199949,-0.020141242,-0.007520605,-0.011779261,0.006782783,-0.0012895702,-0.008407285,-0.0097923195,-0.019079814,-0.01592142,-0.009818208,-0.007585326,0.009831153,-0.0031082362,0.0042262953,-0.0067892554,-0.022626536,-0.001065473,0.040567257,-0.0018332284,0.026794583,0.00003807428,0.012057562,-0.031195626,-0.0012410292,0.013345514,0.005792549,-0.015494259,0.002660042,-0.05457293,0.009636989,-0.008931528,-0.01445872,0.01592142,-0.006879865,0.0033201983,-0.0047084684,-0.019455196,-0.01287305,0.006776311,-0.005695467,-0.016193248,-0.0058863945,0.0029108366,0.009222773,0.0021681606,0.010827859,0.02010241,-0.01095083,-0.012821273,0.0036858732,0.006400928,-0.010549558,0.0045045963,0.040670812,-0.008750308,0.0013373022,-0.021668663,-0.014665827,0.018484378,-0.025940264,-0.018820928,0.02605676,-0.007675936,0.0062455973,-0.026030872,0.023286693,0.0029124545,-0.01385034,-0.024658782,-0.025707267,0.004297489,-0.027260575,-0.008141928,0.009041553,-0.012174061,0.004685816,0.018316103,0.005229474,0.01976586,0.009216301,0.00068361784,-0.02540955,-0.024089236,-0.022186432,0.0023089293,-0.025150664,0.004701996,-0.04799725,0.02178516,0.025694322,-0.006167932,-0.015092988,0.016827516,-0.0027457976,-0.00988293,-0.00049916236,-0.0023137834,-0.011546264,0.009125691,0.01830316,0.018083107,0.014031559,0.030677855,0.017461784,0.025953207,-0.008931528,-0.038056076,0.022665368,-0.00086564623,-0.01906687,-0.006598328,0.008219594,0.038496178,0.031143848,-0.010310089,0.015067099,-0.00006168741,0.00003668378,-0.012730663,0.0005193878,0.0016778975,-0.0075011887,0.008426702,0.022872478,0.005824909,-0.007527077,-0.03181695,0.00049228576,0.022328818,-0.010653112,-0.0060028927,0.0076112146,-0.010316562,0.02751946,-0.013953893,-0.04408809,0.027441794,0.006598328,0.013876229,0.016698074,0.021150893,0.011125577,-0.01394095,-0.0051647527,0.015688423,-0.025836708,-0.02605676,0.021668663,-0.008802085,-0.0278819,-0.020270685,-0.024516396,0.01726762,-0.0071646385,-0.015856698,-0.011164409,0.019882357,0.016918125,-0.025021221,0.0067374785,-0.02700169,-0.021759272,0.028606776,0.00468258,-0.03611444,0.021228557,0.017591227,0.055970907,0.0073652742,-0.010277729,0.016335635,0.009869985,0.009416937,0.008717948,0.0011366663,0.003724706,-0.016296802,0.007941293,-0.0029577594,-0.00090852403,-0.016219137,0.004096853,-0.020270685,0.013170768,0.02025774,-0.00088587165,-0.0032651853,0.029823536,0.008646755,0.0013939332,0.00035273063,-0.024516396,-0.023895072,0.0021697788,-0.007662992,0.0020597526,-0.040127154,-0.0029156907,0.015597813,-0.007086973,-0.009662878,-0.006595092,0.010458948,-0.005527192,-0.007086973,-0.0033331425,0.011455655,0.010782555,0.032205276,-0.018354936,-0.023183139,-0.020710789,-0.0013405381,-0.0031583952,0.0005861315,-0.029668204]},{"id":"b86d1d55-e4ec-4ddf-ad57-30a79175650d","text":"How you pay people? Tell me before ","vector":[0.00585527,0.0036231324,0.014374704,-0.037939794,-0.020842012,0.017110873,-0.016102811,0.007102256,-0.023984024,-0.0028261743,0.022845045,0.0075015533,-0.0038980586,0.0040224297,0.024429142,-0.013458285,0.02456006,0.0054919748,0.021326406,0.00035204444,-0.017791642,0.00042998104,-0.0069517014,0.0054036058,-0.023447264,-0.0015521866,0.023984024,0.0045002773,0.017281065,0.007102256,-0.005753809,-0.008542345,0.022910504,-0.0048701186,-0.03644734,0.00089350966,0.01171054,0.021431139,0.0073902737,0.005577071,0.028356656,-0.007134985,-0.0011897098,-0.009471857,-0.017372707,0.0114028845,-0.019009171,-0.034509763,-0.0175429,0.0062054736,0.0045460984,0.014544897,-0.031184468,-0.019938683,-0.00038763753,0.00046516504,0.0043104477,0.023316346,0.0025348836,0.0005302145,-0.0017690181,0.0032385632,-0.047653846,0.0056850775,0.0067291423,-0.00785503,-0.01502929,0.00020517175,-0.027963907,0.00079368526,0.021836983,0.01076139,-0.007161169,-0.005442881,0.018446228,-0.021902442,-0.011383248,0.005809449,-0.016259912,0.01800111,0.0053250557,-0.008725629,-0.002426877,0.0028474482,0.0076782918,-0.006287297,-0.011795636,-0.0032172892,-0.017281065,-0.0060189166,0.018655695,0.0063985763,0.016796673,0.016809763,0.015199482,0.029456362,-0.0014343611,0.02356509,0.01133088,-0.019218639,0.0056490754,0.010100259,-0.038332544,-0.011429069,-0.026942752,-0.0031092826,0.0012404401,0.0045297337,0.01883898,-0.0029178162,-0.011874187,0.030844083,0.01014608,-0.0260787,0.00043979983,-0.0041697114,0.0023450537,-0.037573226,-0.022269009,-0.01540895,0.034588315,0.00938676,0.010270451,-0.006421487,0.018498596,-0.002695257,-0.0065065827,0.0044413647,-0.009268935,-0.015042382,0.01656102,0.031603403,-0.0055508874,0.011612352,-0.0125287725,-0.011769453,-0.016534837,0.03265074,-0.020815829,-0.012214571,0.011573077,0.0011103412,0.0031403755,-0.0027116218,0.003639497,0.023133062,-0.0027819898,0.00885,0.005069767,-0.02463861,0.021850074,0.010198447,0.029692013,-0.020108877,-0.012921524,0.017844008,0.0043693604,0.009124926,0.013091716,-0.007010614,0.01709778,0.008791087,0.02609179,0.012561502,-0.009759874,0.039248966,0.032755475,-0.008686353,0.02372219,-0.004677016,-0.0105191935,0.018446228,-0.03393373,0.016809763,-0.015395858,0.005635984,0.015840977,-0.02974438,-0.007200444,-0.014374704,0.0023319619,0.007756842,0.0034954883,0.040374853,-0.012947707,-0.0070498893,0.0027132581,0.010970858,0.031996153,-0.011232693,0.000064077816,0.001257623,-0.0036984098,-0.024808802,-0.67574203,-0.024887353,-0.020540902,-0.005210503,0.009524223,0.004739201,0.007383728,-0.007894305,-0.035190534,0.009871154,-0.013549927,-0.0057472633,0.0025414294,-0.0050010355,-0.0107417535,-0.03898713,0.0136546595,-0.018066568,-0.0142961545,0.013680844,-0.017804734,0.024141125,-0.024167309,0.01441398,0.01793565,0.0062022004,-0.0021159486,-0.017411983,-0.010892307,0.0077437502,0.000013059754,-0.00006504946,0.0051777735,-0.00016446468,0.052366864,0.008705991,-0.0027787169,-0.0024383322,-0.022543935,0.041526925,-0.023434171,-0.025659764,-0.009275481,-0.0240233,0.0031125555,-0.012253846,0.005380695,-0.010106805,0.016377738,0.02097293,-0.011612352,0.015958803,-0.037206657,0.010997041,0.008084135,0.005897818,-0.004677016,0.0018688425,-0.0107417535,0.019794675,-0.008496524,0.0032401998,-0.013209541,-0.017372707,-0.018865163,0.013353551,0.003780233,0.0021486778,0.011461797,-0.0109184915,0.00048562084,0.017844008,0.006689867,0.023512723,0.00086323504,0.011343972,0.009916975,-0.023630548,0.010041346,0.01262696,0.007979401,0.0069058803,-0.025031362,-0.024298225,-0.00035695382,0.025541939,0.018891346,-0.03296494,0.014492529,-0.01273824,0.005717807,0.024219675,0.024245858,-0.004513369,0.011893824,0.018943714,-0.015435133,-0.000061009443,0.0042809914,0.0039602444,-0.011867641,-0.007887759,0.010715569,0.01586716,0.032834023,0.002762352,-0.013955769,0.005433062,0.03979882,-0.0035478552,0.010283543,-0.020121967,0.008679808,0.005361058,0.02021361,-0.028042456,0.022871228,0.032179438,0.011186872,-0.0030929178,0.008254327,0.015435133,0.03592367,-0.033148225,0.017267974,0.013340459,-0.01648247,0.006081102,0.0075931954,0.009373669,-0.011357063,-0.003371117,0.003688591,-0.005524704,-0.0011087047,0.004935577,0.008594711,-0.017045414,0.002659255,-0.02440296,-0.0018132026,-0.025960874,0.004611557,-0.0156446,0.006274205,-0.018969897,-0.014688905,0.0006979521,-0.010381731,0.009020193,-0.01228003,-0.023656731,-0.03320059,-0.017123966,-0.0065785875,-0.0050370377,-0.008476886,-0.01049301,-0.026131066,-0.009210022,0.0011888915,0.015500592,-0.030922633,-0.021418048,-0.011127959,-0.012476405,0.005940366,-0.0011537075,-0.012620415,-0.020056508,0.017830918,0.003505307,-0.020383801,-0.0035183986,-0.0064803995,0.01684904,0.013772486,-0.00224032,-0.019048447,-0.011114867,0.00015914618,0.012757878,-0.011959283,0.006094194,0.03707574,0.0012748059,-0.019755399,0.054042604,-0.013471376,0.041448373,-0.00029394994,0.0015161844,0.00019637574,0.011717086,0.007861575,0.018550962,0.0076782918,-0.010329364,-0.0029996394,0.008620895,0.01616827,0.023015236,0.01540895,0.0077633876,0.013032803,-0.010499557,0.007383728,-0.03142012,0.02602633,0.03369808,-0.0051548635,-0.021313313,0.017202515,-0.017830918,0.020017235,0.0128167905,-0.02577759,-0.004372633,0.0029390904,0.019689942,0.015225666,0.009203477,0.0114028845,-0.008653624,-0.009779512,0.00069345185,-0.002237047,0.008372152,0.001391813,-0.010159172,-0.016966864,-0.00024301498,-0.009871154,0.0073968195,0.018145118,0.014976923,0.0063429363,-0.00002064758,0.009092197,-0.00093769416,0.0022272281,0.015160208,0.018655695,-0.015435133,0.010244268,0.019519748,0.023146154,-0.0028523577,-0.010466827,0.015369675,-0.007115348,-0.00093278475,-0.016521746,0.0030323688,0.020815829,-0.024887353,0.00057726284,0.0076324707,-0.00965514,0.01571006,0.037887428,0.0073117237,0.0035216718,-0.015094749,0.019153181,-0.00046475593,0.018511686,-0.017137056,0.01117378,-0.005851997,-0.009334394,0.009249298,0.0068796966,0.02204645,0.028985059,0.018629512,-0.0118218195,-0.008594711,0.008241235,0.001532549,-0.0092623895,-0.0023597819,0.0057832655,0.014230696,0.00007619788,-0.016613388,-0.014021228,-0.010375185,0.0091511095,0.020200519,-0.017032323,0.005167955,-0.012790606,-0.0014752728,-0.01792256,-0.023813833,0.03401228,-0.0041762576,0.011848003,-0.025293196,-0.004418454,-0.00030335961,-0.00065540406,-0.008476886,0.02135259,0.013798669,-0.004019157,-0.0015309126,-0.015814792,-0.030110948,0.024141125,-0.02150969,-0.01403432,-0.015225666,0.019048447,0.01403432,-0.013890311,-0.013981953,0.04050577,0.023512723,-0.014453255,-0.01426997,-0.030451331,-0.0009736964,0.10536213,0.043935798,0.02120858,0.014165237,-0.02304142,-0.011749815,0.0051384987,-0.019113906,0.0039307876,-0.01163199,0.023211613,-0.0010105169,-0.0043955436,0.0017772005,0.01087267,-0.008476886,-0.019113906,-0.020239793,0.0033334782,-0.0064345784,-0.0040846155,-0.0022435929,0.01684904,0.039275147,0.0007253629,0.030268047,0.016063536,0.00043775426,-0.01246986,-0.003727866,0.006588406,-0.0042777183,0.01163199,-0.006176017,-0.0024186946,0.017765459,0.0049683065,0.023002146,0.006519675,0.023735281,0.005449427,0.035504736,-0.008450703,-0.03754704,0.012947707,-0.00075972866,-0.00047334738,0.0033302053,-0.012803698,-0.01014608,0.019637574,0.008319786,-0.012293122,-0.024507692,0.008175776,0.0011569804,-0.031001184,-0.01807966,0.0093278475,0.0050468566,-0.041238908,-0.013759393,0.01800111,-0.014099779,0.010296634,-0.020252885,0.0039013315,0.022609394,0.013864127,-0.0056098006,-0.0071218936,-0.011546894,-0.041081805,-0.01708469,0.021954808,0.012306213,0.010781028,0.0068993345,0.012116384,0.016888313,0.020933654,-0.020632545,0.015147116,0.00061449246,-0.01087267,0.005547615,-0.0059730955,0.005943639,-0.0015791883,0.008300148,-0.003596949,0.0000069741513,0.033514794,-0.024311317,0.004811206,0.021941716,-0.014060503,0.015526775,-0.012941161,0.010132988,-0.023813833,-0.0051417714,0.0044479105,-0.004745747,-0.0023794195,0.0046344674,0.019703032,0.009772966,0.011992012,-0.010296634,-0.0037933248,-0.023997115,0.0040355213,0.0057145343,0.016521746,0.028985059,-0.006549131,0.025267012,0.0053152367,0.021640606,0.012744785,-0.04506169,0.024520785,0.020802736,-0.042757545,-0.0016012805,0.013405917,-0.026432175,0.018027293,-0.016089719,0.002004669,0.014492529,0.011029771,-0.006918972,-0.031315386,-0.004186076,-0.0024841533,-0.015840977,-0.031969972,-0.008594711,-0.0099235205,-0.024232768,-0.014427071,-0.024756435,0.018053476,-0.04006065,0.0067225965,-0.00045616447,0.00034263477,0.019271007,-0.0078092087,0.023617456,-0.026157249,0.009380215,0.028592309,-0.011841457,-0.010565015,-0.01076139,0.01624682,-0.008529253,0.030084765,-0.0002297187,0.02822574,0.00002636242,-0.014584172,-0.007887759,-0.0021781342,-0.017058507,-0.011455252,0.012620415,0.00415662,0.007730658,0.01174327,-0.0040355213,0.010506102,-0.0109184915,-0.021562057,0.0050632213,-0.0308179,-0.015775518,0.020252885,0.0017902922,-0.014898373,0.0050370377,-0.006087648,-0.022059541,-0.0024088759,-0.040531952,0.019873226,0.0075015533,-0.0055116126,-0.008882729,0.02998003,-0.010218085,0.016050445,-0.013379734,-0.023460355,-0.012338943,-0.025816863,0.035452366,0.023512723,0.019271007,0.013445193,-0.003829327,-0.02548957,0.024625517,-0.016587205,-0.009373669,-0.0032680198,0.015880251,-0.01292807,-0.014139053,-0.016770488,-0.009792604,0.001937574,0.014453255,-0.0010808848,0.009511132,-0.0010088803,-0.031681955,-0.015840977,-0.026170341,-0.0035805844,0.006090921,0.02770207,0.011664719,0.0134321,0.00039172868,-0.00518432,0.018210577,0.005819268,0.009707508,0.009059467,-0.014060503,-0.027361687,0.016979955,0.017503625,-0.019991051,-0.032598373,0.0045493715,0.014374704,-0.013052441,-0.0241804,-0.011926553,-0.006683321,0.019271007,0.012973891,0.0072200815,-0.017372707,-0.015042382,-0.0025316107,-0.010028254,-0.012554956,0.027597338,0.01618136,0.0017215607,-0.030241864,-0.0071677146,-0.009988979,0.028775591,-0.005763628,0.029351627,-0.0061072856,0.022059541,-0.012581139,0.0023630548,-0.010407914,-0.0053381473,0.01495074,0.016652662,-0.0150685655,-0.026131066,0.0011512528,0.0017150148,-0.0025659765,0.0051712277,-0.010375185,-0.03105355,-0.0045821005,-0.004107526,0.008653624,-0.012096746,-0.030163314,-0.005639257,-0.004863573,-0.011703994,0.0036329513,0.020331435,0.02746642,-0.015304216,-0.01163199,0.0021159486,0.019271007,0.019729216,-0.01243713,0.014348521,0.00072945404,0.025450297,-0.0010694296,0.025685947,-0.004418454,0.004533007,-0.043359764,-0.02051472,-0.019559024,-0.041631658,0.022033358,-0.02264867,-0.011834911,0.008273965,0.023106879,0.0040747966,-0.014125962,0.000056560304,-0.013772486,0.014505621,0.020724187,0.00968787,0.0036722263,-0.0021715884,-0.0014703633,-0.0063003884,0.009373669,-0.02723077,-0.013759393,-0.015225666,-0.003371117,-0.015474409,-0.013124445,-0.022321377,-0.015199482,0.018799704,0.0010096986,-0.017228698,-0.026104882,0.004107526,-0.018367678,0.0063985763,-0.009674778,-0.0311321,-0.0018917529,0.026811834,0.017660726,-0.00067095045,-0.020082692,0.00069099717,-0.00839179,-0.007102256,-0.025437204,-0.026942752,-0.028801776,0.018852072,-0.0037998706,-0.017647633,-0.017948743,-0.024311317,-0.02882796,-0.01300662,0.0019604845,0.022805769,0.022831952,0.008162685,-0.0048602996,0.0029472725,0.020174334,0.02456006,0.00023565089,0.007560466,-0.015840977,-0.017215608,-0.013759393,0.0027459874,-0.023748374,0.011533802,0.03851583,-0.015461316,0.016312279,-0.00011935963,-0.024141125,0.0042253514,0.016286096,0.02609179,0.00903983,-0.011867641,0.01739889,-0.028147189,0.014309246,0.02067182,-0.02135259,-0.031786688,-0.0072135357,0.026707102,-0.009740237,-0.0026658007,0.020396894,-0.0045460984,-0.0068927887,-0.01876043,0.00046230122,0.013072079,-0.007508099,0.008372152,-0.0046704696,-0.0075866496,-0.0154875005,0.026641643,-0.0056163464,0.0074884617,0.018865163,-0.013510651,0.0113374265,-0.015539867,0.0025316107,-0.012273484,-0.0062480215,-0.013314275,-0.00048766643,0.016312279,0.011920008,-0.014976923,-0.022177367,0.014885281,-0.012568047,0.0049224854,-0.018302219,-0.022177367,0.005122134,0.002646163,-0.009949705,0.033462428,-0.0029996394,-0.025528846,0.012823336,0.0071284394,0.006189109,0.01763454,0.23188047,-0.008156139,0.0035805844,0.030608432,-0.006555677,0.012352034,0.012070563,0.016390828,0.0035642197,-0.006647319,-0.02266176,0.016286096,-0.034274112,0.0050959503,-0.008254327,-0.034981064,-0.03738994,-0.022072634,-0.0010522467,-0.0012093473,-0.0041107987,0.030791717,-0.017372707,-0.010015163,0.0066375,0.014492529,0.002258321,0.010853033,-0.0020946746,0.018812796,-0.010964313,0.0014384523,0.021758432,0.000055435237,-0.017817825,0.000066276814,-0.024782619,-0.008751812,0.016927589,0.035557102,0.027675888,-0.0018688425,-0.01578861,-0.03754704,0.0016102811,0.015173299,-0.00224032,-0.010250813,-0.009602774,0.040767603,-0.026759468,0.0017215607,0.017673817,0.020331435,0.0059207287,-0.00009348304,0.012116384,0.0016446469,-0.031603403,0.021025296,0.023015236,0.031341568,-0.007560466,-0.002786899,-0.04317648,0.0106304735,0.009844971,-0.020907471,0.03752086,-0.017726183,-0.0019817585,-0.0058814534,0.008791087,-0.0086929,0.0021683155,-0.0050174003,0.010977404,0.0040486134,0.033305325,0.024429142,-0.02387929,0.023970932,-0.034274112,-0.0077437502,0.012443677,-0.02501827,0.01891753,0.00035409,-0.012522226,0.005272689,-0.010060984,-0.008084135,-0.029194526,-0.026602367,-0.0098580625,0.007796117,0.031629585,0.032938756,-0.006549131,0.0040027923,0.0009974252,0.0067095044,-0.0063887574,0.00023810558,-0.015160208,0.01670503,-0.0043988167,0.018577145,0.0036820453,-0.014374704,-0.008679808,0.0025250649,0.0037147745,-0.008169231,-0.012227663,0.008149593,0.018302219,-0.0018770248,0.006918972,-0.0037344121,0.0058225407,-0.023093788,-0.02188935,0.0034823965,0.02723077,-0.00812341,-0.011350518,0.001670012,0.012829882,-0.03272929,0.0088630915,0.0032009245,0.017961835,-0.034902517,-0.0350858,0.015736243,0.011926553,-0.015670784,-0.02174534,-0.02806864,-0.024756435,0.006146561,-0.013045895,-0.012829882,0.022674853,-0.015827885,0.004765385,0.004336631,-0.009628957,-0.01815821,-0.036421154,0.0045395526,0.007259357,-0.023146154,0.011232693,-0.018577145,-0.013890311,-0.00022910503,0.027728254,0.0019801222,-0.010126443,0.018276036,0.016691938,-0.014819822,-0.01216875,0.0011193417,-0.16725977,0.008463794,0.006644046,0.017582174,0.015893344,0.00809068,0.0032107434,-0.005210503,-0.0066244085,0.010728661,-0.0028834506,-0.022321377,-0.0047162906,-0.0029963665,-0.0032172892,0.009020193,-0.013707027,0.0308179,0.019951776,0.015683876,0.0246517,0.028121006,0.0058356323,-0.023237797,-0.005400333,0.009105288,-0.014086687,0.035897486,-0.02746642,-0.026523817,-0.034850147,0.012162204,-0.0040846155,0.005439608,0.021313313,0.00043325397,0.001638101,-0.0040911613,-0.0033907546,0.0014441799,0.022805769,0.0058781807,-0.017359616,0.0091511095,-0.008365607,-0.012482951,0.006084375,0.009183839,0.0011234329,-0.016587205,-0.005115588,-0.019781584,0.005573798,0.014557988,0.007927034,0.0039144233,0.008719083,0.005347966,-0.022530844,0.000027027234,-0.015461316,-0.012273484,0.012672781,0.0151340235,-0.011815274,-0.0043529957,0.014086687,-0.004064978,-0.0311321,0.020043418,-0.0041271634,-0.016456287,0.005164682,-0.011245784,-0.0014417253,-0.013667752,-0.0268642,-0.016259912,0.00012938297,0.023224704,-0.015971893,0.032781657,-0.011841457,0.015618417,-0.010695932,0.010970858,0.0037540495,0.015173299,-0.0061989278,-0.031184468,0.007625925,-0.005347966,-0.004248262,0.00081536843,0.004978125,0.014911464,-0.0049093934,-0.018393861,0.0074950075,-0.0066669565,0.0048242975,0.00253652,-0.036028404,0.030870266,0.010532286,-0.0015456408,0.0060778293,0.016089719,0.015448225,-0.0061432878,-0.027440237,0.011775998,0.018865163,0.02166679,0.0048177517,0.016089719,-0.00965514,-0.015657693,0.013281546,0.008332877,0.04775858,0.006820784,-0.01624682,0.00701716,-0.011127959,-0.014741273,-0.10955148,-0.013549927,0.0064705806,0.026366716,0.024285134,0.00049830345,0.016207544,0.030870266,0.0013312639,0.019388832,-0.013981953,-0.03089645,-0.0028883598,-0.0115796225,0.015775518,-0.010951221,0.005907637,-0.013366642,0.019506657,0.030268047,-0.03320059,-0.030477514,-0.0062414757,-0.0071480772,-0.026838018,-0.0088630915,-0.024992086,0.0014335429,0.0034398483,0.006460762,-0.023709098,-0.01022463,-0.005256324,0.003166559,-0.0096813245,-0.00048807554,-0.01701923,-0.019441199,0.008332877,-0.022386834,-0.005112315,0.005894545,-0.012181842,-0.03157722,0.0056785317,-0.013471376,-0.024834985,0.0065262206,0.024756435,-0.028592309,-0.020121967,-0.007887759,-0.016914498,-0.04333358,0.04157929,-0.011664719,-0.018446228,0.025162278,0.004375906,0.002768898,-0.01899608,-0.00087550853,-0.002716531,0.028985059,0.009988979,-0.012764423,-0.007985947,0.005675259,0.020383801,-0.014191421,-0.023774557,0.008365607,-0.029273078,0.017778551,-0.026196525,-0.016207544,-0.032624558,-0.0041828034,-0.01079412,0.009308211,-0.003269656,-0.020396894,-0.0016233728,-0.003826054,0.011638536,-0.0043235393,0.0129935285,0.008601258,-0.013144083,-0.0150685655,-0.002417058,0.020593269,0.0055541606,0.01822367,0.002927635,0.0043169935,-0.033907544,-0.012535318,0.015369675,-0.00839179,-0.002325416,-0.0056065274,-0.039039496,0.011992012,-0.010735207,-0.0014482711,0.023434171,0.0021715884,0.009648595,-0.010185355,-0.001511275,0.015003107,-0.01899608,0.021156214,-0.023931658,-0.02410185,-0.020684911,-0.01052574,0.006509856,0.011815274,0.014937649,0.0061531067,0.002695257,-0.02914216,-0.014990015,-0.0005015764,0.016233727,0.02525392,-0.019401923,0.019703032,-0.011880732,-0.011920008,0.02304142,-0.023394898,0.008830363,0.015094749,-0.0005220322,-0.008208506,-0.005806176,0.025044452,0.0026903476,-0.025620488,0.008071043,-0.028094823,0.0014458164,-0.008764904,-0.019807767,-0.0102115385,0.00026715282,0.016338462,0.007940126,0.007193898,0.028566124,0.022059541,-0.024677886,-0.007835392,-0.025463387,-0.022478476,-0.00026613005,-0.00968787,0.008404882,-0.027728254,0.036211688,0.0116909025,-0.0054985206,-0.023551997,0.0072200815,-0.009831879,-0.02547648,0.018014202,0.005626165,-0.052811984,-0.0067291423,-0.0011267058,-0.0004234352,-0.0030307323,0.018132027,0.018812796,0.009399852,-0.018812796,-0.038253993,0.027099853,0.020632545,-0.017202515,-0.03157722,0.00019392105,0.03372426,0.030425148,-0.00043693604,-0.0012126202,-0.02067182,0.007331361,-0.013641568,-0.0034333025,-0.019218639,-0.0243375,0.021706065,0.013929586,0.006493491,0.00054739736,0.010126443,0.03453595,0.037101924,0.0027721708,-0.009007101,-0.0036787721,-0.010126443,-0.01289534,-0.018524779,-0.012522226,0.014204512,0.04660651,0.012273484,0.009949705,0.025764497,0.009622412,0.0085554365,-0.00009910838,0.0060712835,-0.03395991,-0.02495281,0.012273484,-0.007102256,0.014701997,0.016927589,-0.01762145,0.02067182,-0.0036067679,-0.013510651,-0.012136021,0.017359616,0.007972855,-0.016652662,0.022622485,-0.01594571,-0.041396007,-0.003114192,-0.005246505,-0.0073248153,0.008352515,0.0027607155,0.06697722,-0.009871154,0.00039786543,0.007423003,0.018825889,0.022792678,0.028382841,-0.006146561,-0.012018195,0.024507692,0.03320059,-0.0025888868,-0.004925758,-0.004418454,0.00391115,0.0058225407,-0.0062316568,0.020776553,-0.010191901,-0.0098580625,0.006640773,0.0140081365,0.0066735023,0.012424039,0.0026608913,0.004199168,0.0061661983,0.010695932,0.010990496,-0.016403921,0.0048177517,0.002444878,-0.0073902737,0.0039798818,0.00858162,-0.00049012114,-0.008948188,0.007455732,0.0018999353,0.010381731,-0.008404882,-0.0024366956,-0.020959837,-0.010650111,-0.024481509,0.0006999977,-0.025188463,0.028382841,-0.007115348]},{"id":"efa4c325-bd26-4bc2-91c7-ea2149979f9e","text":"There is no improvement needed so far.","vector":[-0.0143572735,0.013085027,0.014133147,-0.0034772553,-0.0028180599,0.011694125,-0.018510204,-0.023955157,-0.016849032,-0.009400125,0.000083841405,0.005451545,0.018365182,0.0005961598,0.003355304,0.0034146316,0.028793652,-0.008450883,0.02200394,-0.016176652,0.008602499,0.011661165,-0.0017699394,-0.008332228,0.0011906715,-0.010837171,0.018457469,-0.024324307,0.01897164,-0.0056031602,0.019011192,-0.010876723,-0.017257733,-0.033592593,-0.0056493036,-0.020725101,0.00064683537,-0.014871446,0.01970994,-0.0072115967,0.0044330885,-0.0036025024,0.0027356604,-0.011568878,-0.02713248,0.007073166,0.014700055,0.010883315,-0.032485146,0.018642044,0.012096234,-0.0079301195,-0.02284771,0.0070665735,-0.0085102115,0.0015062613,0.0035398789,0.00759393,-0.013605791,0.0004342449,-0.006901775,-0.0065458096,-0.01147659,-0.007442315,-0.020237297,0.0021918244,-0.013085027,-0.00076755055,0.0051812753,0.039235305,0.035965696,0.042320337,-0.012129193,-0.015596561,0.036967672,-0.004663807,-0.002264336,-0.0065293293,0.0059558298,0.0027340124,0.02079102,-0.015056021,-0.027580732,0.02987473,0.026011847,0.038365167,0.011160176,0.029558318,-0.0063744187,-0.01093605,0.004911005,0.0314568,0.040553696,0.003945284,-0.004492416,0.0061272206,-0.00504614,0.029268272,0.013065251,-0.025524043,-0.019617653,-0.015715215,-0.032485146,0.0011783116,-0.037310455,0.0015853647,-0.0004906885,-0.00013214805,0.00616018,0.0033355283,-0.023572825,0.01464732,0.015385618,0.002804876,0.014924182,0.0031163457,0.0076400735,-0.013539871,-0.017257733,0.0002389583,0.027027007,-0.0010728404,0.015411986,-0.00955174,-0.00014656795,-0.008806849,-0.041661143,0.003935396,-0.003205337,0.01181278,0.009775867,0.026921537,0.04023728,-0.008193797,-0.0008029823,0.014330906,-0.03000657,-0.0059591257,-0.012017131,-0.022544479,-0.0153196985,0.017666435,-0.021740261,-0.004535264,-0.0047659823,0.0051812753,0.01970994,-0.02568225,-0.012471975,-0.0321951,0.0012854309,-0.014054044,0.020817388,0.005319706,0.003243241,0.007534602,-0.0020682253,0.014990102,0.0056723757,-0.010916274,-0.012129193,-0.014291354,0.010962418,-0.007910344,-0.004746206,0.010685556,0.03517466,0.003793669,0.0030141706,0.00067073124,0.02278179,0.03216873,-0.002518126,0.004630847,-0.012821348,0.0043144333,0.0035761346,0.011278831,0.0019841779,-0.014172699,-0.024970317,-0.002097889,0.014054044,0.010507573,-0.017508227,0.0068094875,0.030217513,-0.02284771,0.020580078,-0.0016652922,0.003249833,0.012445607,0.007613706,-0.006417266,-0.66278136,-0.021977572,0.009479228,0.0036123903,0.021845732,0.0360448,0.00698747,-0.0077785044,-0.034436364,0.0133223375,-0.016558986,0.000702867,0.001956162,0.0030224104,0.0021934723,-0.013698079,0.0063908985,-0.018351998,-0.019736307,0.0072709243,-0.015504274,0.00086354587,-0.006199732,-0.012122601,0.015016469,-0.019973617,0.018523388,-0.0048055337,-0.033197075,0.022504928,-0.019195767,0.017877378,-0.009129855,0.0054218816,0.037811443,-0.032986134,-0.01778509,0.009564924,-0.0051120594,0.034779143,-0.023440985,0.015781136,0.016163468,-0.0010440006,-0.01873433,0.020632813,0.006071189,-0.006206324,-0.008332228,0.0031970972,0.010316406,0.0020583374,-0.009017792,0.0042880652,0.0050955797,-0.0054350654,0.02953195,0.012003946,-0.0018556347,0.0068556312,-0.026499651,0.004756094,-0.029347375,-0.02565588,-0.03132496,0.018114688,-0.0230191,-0.014291354,0.021964388,-0.0021489768,-0.022254433,0.007442315,-0.0012763669,0.0009245214,0.02217533,0.02224125,0.019960433,0.004950557,0.0043144333,0.030164776,0.018787066,-0.03340802,0.008015815,0.015939342,0.027079742,0.002412655,-0.013961757,-0.030929444,-0.017495044,0.010962418,0.009940665,0.017323652,-0.006875407,-0.016189836,-0.003622278,0.018325629,-0.0017963072,-0.0012079754,0.03860248,-0.011212912,-0.0020402095,-0.0009418253,0.02295318,-0.0050098845,0.022307169,0.018088318,0.0027636762,-0.0005862718,0.022452192,-0.01691495,0.018707963,-0.011008562,0.0016199725,0.013592607,-0.00335036,-0.037073143,0.002120961,-0.023164123,0.0031344737,-0.019617653,0.017468676,-0.0065062577,0.030665766,-0.008780481,0.011615021,0.01346736,-0.013909021,0.011028337,-0.024719823,-0.004920893,0.012017131,0.0119775785,0.021542503,-0.011390895,0.018562939,0.002831244,0.0075082346,-0.01748186,0.0069742864,-0.013414624,0.0021555687,-0.0061173323,-0.022254433,0.011779821,0.011766636,-0.027580732,0.006034933,0.02518126,-0.010085688,0.018220158,-0.030270249,0.008714562,-0.02089649,0.0061041485,0.0023500312,0.0073566195,0.0052801543,-0.048068523,-0.01039551,-0.012392872,0.022636767,0.0083783725,-0.00308833,-0.014383642,-0.028740915,-0.009716539,-0.0137112625,0.013342113,-0.0039782436,-0.025510859,0.0104350615,-0.03949898,0.0038266287,-0.003394856,-0.01481871,-0.00052694423,-0.016783113,-0.0051219477,-0.007488459,0.0055075767,0.0014395177,-0.003787077,-0.005912982,-0.0063414588,0.03314434,0.005346074,0.021964388,-0.009347389,-0.0072181886,0.02315094,-0.019011192,0.009037567,-0.016519435,0.0035992065,0.0057185194,-0.0077785044,-0.0044462723,0.00034793152,0.013632159,-0.0020336176,0.015873423,0.031166755,0.0106262285,-0.02520763,0.001268951,-0.012887268,0.006881999,-0.023546455,0.0035926143,0.010982194,-0.003955172,-0.0069808783,0.0096638035,0.004248514,-0.02278179,0.0063579385,0.0065029617,0.021542503,0.017020423,-0.010711924,-0.0078048725,0.009531965,0.023876054,-0.0191694,-0.013539871,0.010982194,0.02440341,0.018299261,0.036809467,-0.008002631,-0.035702016,0.006156884,-0.00040519913,0.011417262,0.0128147565,0.0056888554,0.030797604,-0.0007506586,0.009327614,0.026275525,0.018707963,0.015675664,0.01758733,-0.010355959,0.0032943285,-0.008628867,0.047172017,-0.0077785044,-0.01241924,0.028028984,0.014449561,0.01066578,-0.014502297,-0.005174683,0.008899136,-0.036730364,0.013605791,0.006756752,0.031746846,0.032010525,-0.010639412,0.0087672975,0.021186538,-0.012841125,0.00070616294,-0.0016718841,0.018101502,-0.0019166104,0.026552387,-0.007448907,-0.0030454823,-0.00850362,0.04363873,-0.011885291,0.034146316,-0.00035802546,0.005912982,0.023586009,-0.0123665035,-0.013869469,-0.017442308,-0.034146316,0.031245857,-0.010889906,0.0046967664,0.0014395177,-0.013289377,0.021924837,-0.022860894,0.030243881,-0.01549109,0.019222135,0.00678312,0.00088826567,0.016506251,-0.0018160831,0.01316413,-0.014489112,-0.0029729707,0.026446916,0.009030975,0.009129855,0.014027677,-0.016756745,0.024363859,-0.010883315,0.0018457469,-0.027053375,-0.008035591,-0.017626882,0.012649958,0.0014716535,0.02284771,0.0035893184,-0.024021076,-0.008998016,-0.024798928,-0.0028378358,0.014515481,0.017613698,-0.002373103,-0.030692134,-0.0038464046,0.012636774,0.07388261,0.016994055,0.02615687,0.011799596,0.026921537,0.0020912972,-0.022676319,-0.011713901,0.019564917,0.011858923,0.0033025686,0.016308492,0.0023071836,0.015741585,0.0076268897,0.000987969,0.0041727065,-0.03206326,0.0021555687,-0.015530641,-0.006704016,0.0072709243,0.017903745,0.00014131499,0.0044363844,0.030507559,0.0066413926,-0.009525372,0.02693472,-0.023506904,-0.003918916,0.00965062,-0.01093605,0.009393533,-0.015095573,0.037705973,-0.013829918,0.0013332225,0.017969664,0.0068490393,0.0006620793,-0.008925504,0.008444292,0.014396826,0.022834525,0.0066908323,-0.025972296,0.027527995,-0.011133809,-0.01839155,0.013763998,-0.012221481,-0.004113379,0.023124572,-0.0137771815,0.022439009,-0.025458124,0.011733676,0.007442315,0.012228073,-0.019723123,-0.020843755,0.0034508875,-0.01481871,-0.014264987,-0.048253097,-0.008497028,-0.020764653,-0.010830579,0.0058009187,0.023005916,0.015860239,0.008259717,0.013935389,0.013961757,0.023651928,0.012261033,-0.019024376,-0.002811468,0.013361889,-0.010547125,-0.016796296,0.031245857,0.0076400735,-0.014067228,0.0081212865,-0.012201705,-0.0056031602,-0.015398802,0.006901775,0.038787052,0.0048088296,-0.0069347345,-0.005491097,-0.00033021564,-0.015201043,0.019920882,-0.00091792946,-0.0027109408,-0.013988124,0.023164123,-0.015477906,-0.030903077,-0.012412648,0.0040540514,-0.0017699394,0.01157547,-0.006901775,-0.011021745,-0.011450223,0.007949895,-0.003239945,-0.008417924,-0.017864192,0.025154892,0.025537226,-0.0001959046,0.019551734,0.025524043,0.0053823297,0.005191163,-0.034146316,0.010276855,-0.009459453,0.022570847,0.006829263,0.020527342,-0.008002631,-0.043005902,0.023282778,-0.010520757,0.005372442,0.0027323645,-0.050441626,-0.044983488,-0.020870123,0.0099934,0.012933412,-0.027264317,-0.009835194,-0.0076466654,-0.0031344737,-0.013790366,-0.012676326,-0.015438354,-0.021674342,-0.014726423,-0.011865515,-0.0077785044,-0.014027677,-0.0014535256,-0.0039749476,-0.022768606,-0.00007688895,-0.0023384953,-0.010916274,-0.0108239865,0.0069215507,0.024126548,0.03928804,0.011555694,-0.010771251,-0.0012318712,0.01700724,-0.009202367,-0.010362551,-0.00816743,-0.01380355,-0.03193142,0.025062606,0.009367165,-0.013078435,0.0058437665,0.009301246,0.0101582,0.0052768583,-0.0039914274,-0.017640067,-0.02362556,-0.026868802,-0.013948573,-0.009129855,0.011516142,0.0052570826,0.0021390887,0.01299274,-0.012135786,0.01880025,0.018272894,-0.014396826,0.019828595,-0.00034607755,0.015939342,0.00027500803,-0.012399464,-0.03121949,-0.007738953,-0.02109425,-0.003249833,0.0017682915,0.007297292,0.015530641,0.0013043827,0.003955172,-0.0098615615,0.011278831,-0.014370457,-0.015135124,-0.0085761305,-0.02362556,0.03230057,-0.02700064,-0.009696763,0.00076384254,0.009789051,-0.0016207965,-0.029110065,0.013091619,-0.015688848,-0.029110065,0.027422525,0.007692809,0.025194444,-0.009367165,0.03422542,0.0490705,0.0026928128,-0.023414617,-0.009525372,0.008694786,-0.011364527,0.007198413,0.006440338,-0.0103098145,-0.0019924177,0.0031921533,0.0016010206,-0.007745545,-0.010454837,0.001115688,0.019868147,0.03725772,-0.018945273,-0.010975602,-0.024126548,0.023520088,-0.00732366,-0.025708618,-0.0012244553,-0.0017748834,-0.018312445,0.023717847,-0.020224111,0.031114018,0.004578111,-0.0056888554,0.009439677,-0.011364527,0.0004354809,-0.0020286737,-0.019736307,0.018998008,-0.028345399,0.02133156,-0.013203682,0.013328929,0.004535264,-0.014541849,0.016888583,0.025260365,-0.010533941,-0.026881985,0.013269601,-0.010448245,0.0071786367,-0.0125576705,-0.002499998,-0.011766636,-0.0383388,0.00031929772,0.0009006256,0.012287401,-0.021357927,0.0015787728,-0.02736979,-0.004199074,-0.018655227,-0.0053889216,0.0071061254,-0.017798273,-0.013210274,0.008609091,-0.010777843,0.03245878,0.0018803546,-0.021212906,0.012762021,0.018220158,-0.011054705,0.025998663,0.0031526017,0.009624251,-0.009103487,-0.0077653206,0.0037046776,-0.023902422,0.025128525,-0.02609095,-0.02882002,-0.023546455,0.00617666,0.0034673673,-0.002529662,-0.0007366508,0.010909682,0.030823972,0.014054044,-0.013829918,-0.019999985,0.011028337,0.00026347212,-0.0070533897,0.009156222,-0.014489112,-0.0041562263,0.00075230666,-0.00039737116,-0.0013661822,-0.032590616,-0.013032291,-0.018760698,-0.00789716,-0.026921537,-0.03061303,-0.014528665,-0.0065425136,0.00043218493,0.0031740253,0.0045484477,0.0069215507,0.00033309963,0.015807504,-0.021015147,0.031878684,-0.021621605,-0.013078435,0.0020056018,-0.010718516,-0.013856285,0.004344097,-0.008602499,0.0065095536,0.024047446,-0.02224125,0.017534595,-0.01542517,-0.044878017,0.020197744,-0.026288709,0.01970994,0.0014691815,-0.017323652,-0.022649951,0.037152246,0.011417262,0.0056789676,-0.0015639409,-0.012570854,-0.0020270257,0.015609745,0.018141055,-0.0066908323,-0.00907712,-0.012017131,0.02808172,0.0043144333,0.01150955,0.006196436,0.0100527285,-0.010725108,0.003922212,0.0031657855,0.0062260996,-0.00004493343,0.0034377035,-0.014752791,-0.012794981,0.033197075,0.011707309,-0.012102826,-0.00097231305,0.014779159,0.011087665,-0.013856285,-0.039208937,-0.0016554042,0.0015606448,-0.05178638,0.02210941,0.014080412,-0.022162147,-0.00011515318,0.0066776485,-0.000977257,-0.0065194415,0.01893209,-0.01464732,-0.0065161455,0.0168754,-0.025115341,-0.026420549,0.0055636084,0.017336836,-0.0010308167,-0.015847055,-0.0072577405,-0.000019556986,-0.036203004,0.009386941,0.0038661805,-0.019564917,0.022636767,-0.001262359,-0.00068515114,0.009367165,-0.011885291,0.006875407,-0.028556341,0.005774551,-0.00931443,-0.020936042,-0.049439646,-0.009604475,0.0045220796,-0.001265655,0.021608422,0.24174011,0.0074752746,-0.019472629,0.028371766,0.007277516,-0.009195775,0.0117204925,0.00005458961,-0.0063546426,0.019433077,0.04121289,-0.000034504756,-0.02295318,-0.000059739574,0.01009228,0.002664797,-0.019670388,-0.025840456,-0.014634136,0.021845732,0.00092122547,0.0036980857,-0.010382326,0.007752137,0.028160824,-0.014383642,-0.020922858,0.0032135772,0.006001973,0.0030257064,-0.017877378,-0.006608433,0.0062458757,-0.011647981,-0.031114018,-0.014054044,-0.0088266255,-0.024377042,0.007692809,0.0322742,-0.0016175004,0.0076664416,-0.0033256402,-0.028477237,0.020909674,0.0180224,-0.0052175308,0.008615683,0.0059854933,-0.00045731675,0.0013480544,-0.01771917,0.062702656,0.016532619,0.008299269,-0.023651928,-0.00062252756,-0.014462745,0.020369135,-0.019762674,-0.013045475,0.010652596,-0.0018688187,0.024891214,-0.041872084,0.008206981,0.008094918,0.005777847,-0.008391556,0.008127878,0.014199067,-0.0006212916,-0.0013818381,0.015939342,-0.013645343,-0.014660504,0.044983488,0.011041521,0.014027677,0.0031723774,-0.009624251,-0.0031905053,-0.010909682,-0.027870778,-0.010507573,-0.043164108,0.02085694,0.01488463,0.005500985,0.0009055695,-0.0052570826,-0.0072115967,0.00308833,-0.014436377,0.01893209,0.012907044,0.0073500276,0.04073827,0.0089584645,0.0025675658,-0.008035591,0.029321007,-0.015702032,0.008371781,0.00337508,-0.015557009,0.0019479222,-0.0016389244,-0.0028592597,-0.023164123,0.016400779,-0.021015147,0.004040867,-0.011806188,0.009531965,0.010375734,0.026605122,-0.0137112625,-0.011318384,-0.016176652,0.009716539,0.010098872,-0.03725772,0.0062656514,0.005194459,-0.018220158,-0.0321951,-0.0041298587,0.020276848,-0.03986813,-0.0004923365,-0.024746193,-0.012768613,-0.013763998,-0.018510204,0.0022033602,0.0031245858,-0.0034772553,-0.0042551057,-0.0033635441,0.0067699356,0.018457469,-0.007007246,0.0056921514,-0.013098211,-0.014291354,0.031140387,-0.008114695,-0.0081872055,0.020527342,-0.01670401,-0.013355297,0.0056789676,-0.010112056,0.034067214,-0.0043902406,-0.017363204,-0.02487803,-0.01626894,0.003642054,-0.033434387,-0.020290032,0.012445607,-0.02392879,-0.012228073,-0.0006212916,-0.16822664,0.012887268,-0.0073763956,-0.016730377,-0.0069545107,-0.015609745,0.024864847,0.0071324934,-0.02440341,0.009980217,0.016783113,0.019802228,-0.02693472,0.0020072497,0.0071324934,-0.0003532875,-0.0056756716,0.004914301,0.015385618,0.007732361,-0.0050889878,-0.0010093928,-0.0050791,-0.018338813,0.019485813,0.00071440294,-0.012300584,0.010909682,0.0029696748,-0.016506251,-0.020817388,0.0061371084,0.0314568,0.004044163,0.012715877,0.005161499,0.0037607092,0.006186548,-0.0016257404,0.018984824,0.0036783097,0.03361896,0.020975595,-0.00021568047,0.00068185513,0.03243241,0.0322742,-0.01988133,-0.013144354,-0.009835194,-0.008648642,-0.005909686,-0.038365167,0.0044067204,0.025102157,-0.0014288059,-0.00033557162,-0.000105780244,-0.0006451874,0.013269601,0.0082531255,-0.01862886,-0.0008717858,-0.001674356,-0.0018655227,0.0046011833,0.00024246027,-0.005500985,-0.020922858,0.011990762,-0.023230042,-0.015557009,-0.0067237923,-0.022755422,0.0076005217,0.005191163,-0.0016908359,0.01680948,0.0056855595,-0.00034504753,0.0065622893,0.029136432,-0.020685548,0.006470002,0.0032531288,0.010118648,0.014054044,0.0161371,-0.00732366,-0.01150955,0.026051398,-0.0253131,-0.023823319,-0.01964402,0.01292682,0.052867465,-0.0017930112,-0.007033614,-0.017033607,0.0104350615,0.017521411,0.023915606,-0.024983503,0.0059360536,0.04519443,0.000040839208,0.0031377696,0.0214634,0.033302546,0.005059324,0.008259717,-0.0043078414,0.015174676,0.02808172,0.0026499652,0.035860226,-0.007732361,0.00017180278,0.000140903,0.001133816,0.06148974,-0.00870797,-0.0077653206,0.003500327,-0.015530641,-0.01441001,-0.12445607,-0.019314423,0.024047446,-0.0034113356,-0.009274878,0.00620962,-0.0015351011,-0.005533945,-0.016084366,-0.003365192,-0.0036750138,-0.026947904,-0.008266309,-0.003233353,0.019683572,-0.02963742,-0.017982848,0.016954504,-0.041397464,0.008846401,-0.003497031,-0.025734985,-0.0010761364,-0.002104481,-0.01235332,0.004897821,-0.018325629,0.012399464,0.00840474,0.003783781,0.027106112,-0.007969671,0.010514165,-0.028503604,-0.023164123,-0.005346074,-0.0063744187,-0.009433085,0.031351328,-0.04050096,-0.0072511486,-0.006585361,0.013658526,-0.03419905,-0.0065293293,-0.019894514,0.005896502,0.03952535,-0.013671711,-0.028345399,-0.049993373,-0.00069627503,-0.01771917,-0.008464068,-0.0052274186,-0.020342767,0.010263671,0.018615676,-0.014238618,-0.014555032,-0.031166755,-0.013869469,-0.022359904,0.027185215,0.0099208895,0.0037244535,-0.0038826603,0.001112392,-0.0084377,-0.0031641375,-0.010718516,0.031193122,-0.006868815,-0.0017287397,-0.011034929,0.021687526,-0.026077766,-0.03208963,0.020276848,0.00082193414,-0.03108765,-0.013632159,0.0291628,-0.0065392177,0.04627551,0.0075280103,-0.024073813,-0.005662488,0.03158864,-0.008872769,0.0090243835,0.022755422,0.016835848,-0.037415925,-0.0106262285,0.032854293,0.0025758056,-0.022267617,0.03266972,0.01700724,-0.025669064,-0.016361227,-0.021397479,0.006156884,-0.0090112,-0.028951857,-0.028556341,-0.0071061254,0.00810151,0.003938692,0.0039815395,-0.01184574,-0.024205651,0.035491075,-0.002374751,0.016717194,-0.015293331,-0.012577446,0.026077766,0.013645343,0.019472629,0.0049802205,-0.0015293331,-0.02237309,0.009868153,0.0003489615,-0.008562947,0.025260365,-0.015622929,0.005998677,-0.0063019074,-0.0073961713,0.02808172,-0.025589962,0.0055537205,0.0021390887,-0.0015153252,0.0029861548,-0.004232034,0.004067235,0.023401434,0.036572155,-0.029136432,-0.03195779,0.0036189822,-0.032010525,-0.0052537867,-0.0016521083,-0.0338299,-0.0048384937,-0.010461429,-0.00056979194,0.0045121918,0.008661826,-0.011351343,-0.014317722,-0.0018836505,-0.027633468,0.014752791,-0.007745545,0.01549109,-0.0148055265,0.013144354,0.0012038554,-0.026143685,0.0032729048,0.023005916,0.023704663,0.010975602,0.033566225,-0.0019957137,-0.005995381,-0.0052801543,-0.010224119,0.016730377,0.007969671,0.012340136,0.0098615615,-0.014106779,-0.00759393,0.02224125,-0.004620959,0.022162147,0.009241918,-0.010586676,0.017099526,0.013790366,0.019683572,0.012709285,0.001265655,-0.011595245,-0.0053988094,-0.044904385,0.0056789676,0.011621613,0.01758733,0.003076794,0.013632159,0.0010332887,0.017429125,-0.008174022,0.008734338,-0.0038365168,-0.00042888895,-0.013328929,-0.01873433,-0.004067235,0.014950549,-0.010303223,-0.022874078,-0.022689503,0.026974272,0.0010753124,-0.01741594,0.011680941,0.008694786,-0.008549763,0.0013027347,-0.0061173323,-0.009505596,-0.014080412,-0.00029725587,0.020817388,0.009274878,-0.003086682,-0.003078442,0.011034929,0.018747514,0.022649951,-0.016071182,-0.012518119,0.004248514,-0.012478567,-0.012913636,-0.009881337,-0.008793665,-0.005791031,-0.009090303,-0.024245203,0.013698079,-0.012221481,0.05146997,0.0038628846,-0.012643366,0.008595907,0.026130501,0.029611053,-0.009578108,0.017033607,-0.016769929,-0.031562272,-0.0062788352,-0.019195767,-0.0011041522,-0.010876723,-0.00982201,-0.026473284,-0.005471321,0.017191814,-0.008365189,-0.01748186,0.0051219477,0.0021720484,0.008213573,0.019393526,-0.015214228,-0.023770582,0.045510843,0.022834525,0.005952534,-0.020052722,0.017771905,0.01596571,0.0026153573,-0.008648642,0.0038167408,-0.02163479,-0.015754769,-0.024192467,0.005448249,0.010547125,-0.013526687,0.014555032,-0.017521411,-0.022808157,-0.016611721,-0.008721154,-0.005187867,-0.007165453,-0.0019528661]},{"id":"167d89f3-3edd-499e-b368-9136a237a168","text":"Hello, I uploaded a tik tok for the Sacheu lip liners but it’s still asking on my account if I’m ready to post. ","vector":[-0.010208447,0.013782391,-0.014322102,-0.00851033,-0.0003593278,0.024339676,-0.02107508,-0.029644646,0.0035344528,-0.02207552,0.03746388,-0.020311585,-0.010965359,-0.042176485,0.00826022,-0.0156648,0.0063251564,0.0068451227,-0.0022394739,-0.04041255,-0.02716987,-0.018244885,-0.009036878,0.005861136,-0.008832841,-0.026985578,0.019943,-0.022036029,-0.000004492883,-0.0042420016,-0.03130327,-0.008345784,-0.023405053,-0.012551585,-0.024510805,-0.016717896,0.007957455,-0.027722746,0.025037352,-0.01555949,0.000100064666,0.028933806,0.011814418,-0.019640235,-0.021404171,0.0124726035,-0.011636708,-0.0038898725,-0.017415572,-0.0013023833,0.010563867,-0.02961832,-0.062290616,-0.025537573,0.0046796943,-0.017415572,0.016428294,0.0134664625,-0.015849091,0.0018462085,-0.009050041,-0.005742663,-0.0067595583,-0.008286547,-0.007865309,0.0035443255,-0.010379575,0.014743341,0.014914469,0.0015640118,0.008740695,0.0013081424,0.009991246,-0.020324748,0.022760032,0.0065950123,0.015519999,-0.020140456,0.0156648,0.016704733,0.018916233,-0.024471313,0.0043769293,0.012485767,0.02428702,0.026906596,0.014532722,0.019469108,-0.0064962846,-0.02445815,0.00024805343,0.029223409,0.0076283626,0.0010843596,-0.003047396,0.004811331,0.00055986847,0.023470871,-0.015230398,0.0037253264,-0.0038010175,0.0029141135,-0.029407699,-0.01602022,-0.02214134,0.0090302965,-0.005558371,0.0029634773,0.0218649,0.017402407,-0.01000441,0.02631423,0.009148769,-0.032409023,0.012031619,-0.006957014,-0.0012686513,-0.027643764,-0.012446276,-0.032961898,0.038043085,0.004903477,0.0020173367,-0.019376962,0.023734147,0.0072795246,0.0045118574,-0.030329159,-0.0031181509,-0.0048870225,0.012913587,-0.008029855,0.014295775,0.020140456,-0.001890636,0.021127734,-0.027117217,0.013914028,-0.0023085834,-0.03727959,0.012268566,0.03949109,-0.012268566,0.038253702,-0.006433757,0.00430782,0.007917964,-0.0017211534,0.017928956,-0.0030737233,0.02257574,-0.018389685,0.00084905844,-0.023168107,-0.020140456,0.011458999,0.026814451,0.0000636074,-0.014308939,-0.012255402,-0.016151857,0.0099320095,0.012261984,-0.016033383,0.023089124,0.038832907,0.015243561,-0.013953519,-0.018165901,-0.010010991,-0.013716573,-0.008240474,-0.021391008,0.019890346,-0.0016759032,0.02591932,0.011906564,-0.016994333,0.017165462,-0.01424312,-0.03122429,0.027196199,0.012939914,0.038148396,-0.0141114835,-0.023089124,-0.0036298896,-0.0007647285,-0.020917114,-0.033778045,-0.033988666,0.022417776,0.032356367,-0.02360251,-0.63649106,-0.029170753,0.025458591,0.0252743,0.0048146225,0.034804814,0.004528312,0.016678404,-0.022694213,0.031013671,-0.018205393,-0.003432434,0.016691567,0.00826022,-0.0031790328,-0.012874096,0.03891189,-0.017283935,-0.01791579,0.011064087,-0.020706495,-0.013887701,-0.0037154534,0.00008998621,0.020969769,-0.010741577,0.045914974,0.0030292957,-0.01698117,0.02859155,0.0038569632,0.014361594,0.00073757843,-0.004304529,0.049627136,-0.017902628,-0.012202747,0.001336938,0.0131900245,0.009616081,-0.046915416,-0.034699507,-0.021693774,-0.0009189906,-0.0031444782,-0.011511653,0.027512128,-0.020456385,0.03762185,0.031171635,-0.0000088957795,-0.014690686,0.027038233,0.013914028,-0.0018462085,-0.025063679,0.015598981,-0.0075954534,0.016441457,0.022338795,-0.028143985,0.009036878,-0.017692009,0.007180797,-0.01520407,0.018718777,-0.006084919,0.009800373,0.019771874,0.0005968914,-0.01616502,-0.0064962846,-0.032172076,0.020100966,-0.0023382017,0.032777607,0.00027746605,-0.0043242746,0.011011433,-0.0012900423,0.016322985,0.0027248852,0.0029174043,-0.016099202,-0.0048014587,0.00011528519,-0.017283935,-0.011103579,-0.003432434,0.013532281,0.016599422,0.028407259,0.0077731633,-0.020969769,0.008747277,0.018666122,-0.006970178,-0.024721423,0.014822323,0.007865309,0.012393621,0.015138252,-0.020640677,0.006598303,0.03928047,0.0044065476,-0.032093093,0.009050041,0.015941238,-0.020285258,-0.005347752,-0.002716658,-0.0009691772,-0.008378693,0.0018873451,-0.026222086,0.023168107,-0.00067258265,0.012801696,-0.025866665,0.0009008905,-0.002114419,-0.00016979112,0.00079229,-0.005485971,0.026893433,0.0014233248,-0.0062395926,0.0031099236,0.009385716,0.0007231806,-0.016625749,0.035410345,-0.013380898,-0.030355485,0.011853909,0.022746868,0.004228838,0.0069767595,-0.027512128,-0.0019893637,-0.015480508,0.0030539779,0.0069175228,-0.004610585,-0.025721865,-0.007904801,0.0015640118,-0.005828227,-0.0064403387,-0.01808692,-0.023405053,-0.007391416,0.010800813,-0.012696386,0.0060980828,-0.0035377436,-0.009991246,-0.005130551,-0.019113688,-0.02566921,0.040649496,-0.01673106,-0.010583612,-0.025142662,-0.002726531,-0.009938591,0.0025027478,0.0011896691,-0.0431506,-0.01587542,-0.026011465,-0.009254079,-0.024721423,0.01484865,-0.01331508,0.015598981,-0.025063679,0.015032942,-0.0141114835,0.003282697,-0.0053181336,0.0013517472,0.009859609,0.01655993,0.015401525,-0.011781509,0.029039117,-0.006878032,0.025379607,0.005535335,-0.010846887,-0.0067990497,0.0058545545,-0.0025586935,0.0050384053,0.0089381505,0.024760915,-0.011768346,0.002866395,0.005699881,0.0025652754,0.029460354,-0.027854383,-0.0031099236,-0.01399301,-0.021746427,-0.0013978201,0.018968888,0.03143491,0.02769642,0.0038635451,-0.0156648,-0.011268125,-0.008187819,0.022378284,0.016033383,-0.014308939,-0.0215753,0.035094418,-0.010623104,0.0032086512,-0.004821204,-0.023628836,-0.009918846,0.023773637,0.027485799,0.03261964,-0.003735199,-0.010478303,-0.035173398,0.03809574,-0.0046171667,0.037753485,0.012551585,-0.010721832,0.01727077,0.0009881001,0.016283493,-0.0028762678,-0.006173774,0.01267664,0.011281288,-0.0044921115,0.045520063,0.0049660048,0.016862696,-0.00876044,-0.017757827,0.00438022,0.0007992832,0.0036397623,-0.026274739,-0.022588905,0.008049601,-0.03204044,-0.0011148006,-0.0008679813,0.007345343,0.026538013,0.016625749,0.017784154,-0.022694213,-0.014743341,-0.0012933332,0.009188261,-0.004133401,-0.016586259,-0.012650313,-0.016770551,0.00010145303,-0.016336149,0.025787683,-0.026840778,0.03304088,-0.012064529,0.014308939,0.0010119592,-0.0008605767,0.012202747,0.005479389,-0.037226934,0.00801011,0.012795114,0.010840304,-0.0046895673,-0.018258048,0.007003087,-0.0028581677,0.052259877,0.013229515,0.020193111,0.00075608987,-0.008398439,-0.021391008,-0.0035903985,0.034278266,0.010241357,0.03304088,-0.000008915063,0.0029025953,0.026195757,0.0054563526,0.0004965182,0.027512128,0.00077501265,0.013051806,-0.009616081,-0.012255402,-0.008095673,-0.0034554705,0.0055846986,-0.02663016,-0.002278965,0.009175097,0.0051075146,-0.014098319,-0.01242653,0.02798602,0.0047093127,-0.0071018147,0.0076283626,-0.040991753,-0.0008247879,0.09067155,0.010017574,0.012775368,0.018560814,-0.019074198,0.030776724,-0.00258173,-0.024418658,-0.009991246,-0.0041465648,-0.022970652,-0.01434843,-0.022049192,0.0066970307,0.023760473,-0.019745545,0.023655163,-0.013183443,-0.020811806,-0.03406765,-0.0022921287,0.007786327,-0.0034653433,0.009168515,0.009208006,-0.0012571331,0.011064087,0.012900423,0.011774927,0.017046988,-0.027564783,-0.0064567933,-0.016336149,0.013703409,-0.006726649,0.022299303,0.030539777,0.014888141,-0.0052720606,0.010412484,0.007733672,0.032014113,0.013716573,-0.016902188,-0.0022937742,0.0058413907,-0.012900423,-0.009063206,-0.0007552671,0.004821204,0.043071616,-0.0041926377,-0.022457268,-0.004956132,0.022470431,0.017362917,-0.0021440373,-0.03464685,0.0060915006,-0.028828496,-0.015691128,-0.025050515,-0.016244002,-0.023668328,-0.007733672,-0.015309379,-0.0075427983,-0.03435725,-0.0054004067,0.02107508,-0.009905682,-0.016349312,-0.02759111,-0.016757386,-0.004041255,-0.015638473,0.02243094,0.013328243,0.0029453773,0.039359454,-0.006226429,-0.030276503,0.0047093127,0.0013624426,-0.003735199,0.0012596013,-0.0010613231,0.0038602543,-0.0020387275,-0.00028260812,0.021746427,0.034620523,0.032488003,-0.018613467,-0.0038010175,0.0048409496,0.0036233077,0.03233004,-0.031856146,-0.006529194,-0.0017227989,-0.01944278,-0.022654723,-0.018429177,-0.0020403732,0.008115419,0.017705172,0.029486682,-0.024273857,0.005867718,0.02859155,0.015348871,-0.0070689055,0.008490585,0.01777099,0.024023747,0.002446802,0.017139133,-0.00059483456,-0.0022674468,-0.008556403,-0.011623545,0.023365563,-0.0003630301,0.006351484,0.027749073,0.011327362,-0.039570075,-0.010149211,0.0043703476,0.017455062,0.015809601,-0.012696386,-0.018494995,-0.019758709,-0.0068517043,0.007964036,0.024918878,-0.0007569126,-0.007694181,-0.013756064,0.0032728242,-0.0037648175,-0.018284375,-0.010149211,-0.03648977,-0.009964919,0.014374757,-0.0052885152,0.017178625,0.002585021,0.012966242,-0.022351958,-0.033936013,0.009425207,-0.016757386,-0.012314639,0.0116432905,0.023339234,0.026801288,0.0049660048,-0.0076744356,0.011557726,-0.0059730276,-0.0034028157,0.0009732909,0.0010234774,-0.014071993,-0.011807837,0.010149211,-0.008089092,-0.0050746053,0.043993074,0.03351477,-0.0067661405,-0.0005631594,-0.0116630355,-0.000076051205,-0.020482713,-0.030855706,-0.02090395,0.0065555214,0.010076811,-0.014282611,-0.004120237,0.02132519,-0.0037253264,0.014782832,0.02218083,0.014769668,0.029170753,-0.019205835,0.019600745,-0.007983782,0.010945614,0.00043892703,-0.016217675,-0.008674877,0.0075427983,0.009497607,0.00213581,0.004084037,0.006996505,0.0037154534,-0.02485306,0.013505953,0.0111101605,-0.026301067,-0.0075757075,-0.01086005,-0.00089595414,-0.034989107,-0.012038201,0.003784563,0.021799082,0.003090178,-0.034225613,0.002004173,-0.0103927385,-0.008062764,-0.007950873,-0.008707786,-0.0040346733,0.021706937,0.036516096,0.031777166,0.020140456,-0.006433757,0.030961016,0.0011970737,-0.008043019,-0.0022016284,0.043176927,-0.011399762,0.006315284,0.013782391,0.009662154,-0.017468225,-0.022970652,0.012880677,0.014085156,-0.004788295,-0.018652959,-0.009734554,-0.03970171,0.026669651,-0.007555962,-0.0047981674,0.0016339439,-0.0068846135,-0.012979405,0.0156648,0.01641513,0.005133842,0.010603358,0.0057755723,-0.022233484,-0.00054135703,-0.0065884306,0.0058216453,0.0061606104,0.02631423,-0.0137428995,0.009800373,0.025392773,-0.0063745202,-0.01445374,0.0011024596,0.000732642,0.026814451,-0.037253264,0.0022263103,0.006094792,-0.020272093,0.0015804664,0.0029848684,0.0052029514,-0.02207552,-0.0133743165,-0.010728413,0.030355485,0.0021687192,-0.010155792,-0.010596776,-0.0013525699,0.01777099,-0.0016207802,-0.008918405,-0.007911382,-0.029170753,-0.0051108054,-0.008635385,0.012801696,0.005979609,0.0018215266,0.010563867,0.0106691765,0.033830702,-0.014822323,0.015032942,-0.00801011,0.012387039,-0.0074901436,0.015849091,0.014190465,-0.038280033,-0.00332877,-0.014177302,-0.022417776,-0.006127701,0.03362008,0.016362475,-0.009234333,0.0035278709,0.022325631,0.003689126,0.014795995,-0.023681492,0.0049758777,0.007253197,0.0036693807,0.0156648,0.014414248,-0.000089574845,0.002353011,-0.042808343,0.030487122,-0.0089381505,-0.0054695164,-0.0094910255,0.025116334,0.007687599,-0.00047636128,-0.0029223408,-0.03148756,-0.000026481657,-0.0023382017,0.02214134,-0.018850414,0.002933859,-0.035120744,0.017297098,0.016494112,0.020153621,0.0026508395,0.00059401186,-0.011064087,-0.011129906,-0.01587542,0.002649194,-0.03364641,0.022760032,0.01434843,-0.021799082,-0.0032563696,-0.010919287,-0.023655163,-0.011801255,-0.014150974,0.012716131,0.0070096687,-0.024234366,-0.015730618,0.021891229,-0.003514707,0.020917114,-0.01505927,-0.0083128745,-0.0021637827,-0.021641118,-0.009859609,-0.005907209,-0.040675823,-0.0035476163,0.007865309,0.009596335,0.020851295,0.016217675,-0.034409903,0.012755622,0.0035903985,0.024589786,0.0145722125,0.012716131,0.005690008,-0.0063317386,0.0078521455,0.0019367089,0.008029855,0.0021637827,0.0061145374,-0.0019218997,-0.0012834605,0.043097943,0.0026903306,0.012202747,-0.031461235,-0.0028713315,0.04354551,-0.011031178,0.011531399,0.0056011532,-0.0031395417,-0.024273857,-0.00911586,0.024695097,-0.018271212,-0.018218556,0.0156648,-0.013650754,0.002652485,0.008424766,-0.0019301272,-0.014624868,-0.019745545,0.0012184647,-0.019245325,-0.013808718,0.013196606,0.009872773,-0.008049601,-0.020798642,-0.007964036,-0.0140193375,0.026893433,-0.01577011,0.00936597,-0.024774078,0.033988666,0.022996979,0.023484036,-0.02919708,-0.0060553006,0.0026162849,0.020337911,0.0041959286,0.22915363,0.009563426,0.007648108,0.0489163,0.020969769,0.00026800466,0.014769668,0.014901306,-0.013361152,0.01000441,0.0028153858,0.012189584,0.006170483,-0.02065384,-0.008424766,-0.024484476,-0.027933365,-0.0063811024,-0.021088243,-0.013756064,-0.007996946,0.0005968914,0.017692009,-0.015098761,0.02930239,-0.010471721,0.008826259,-0.035805255,0.01324268,-0.015888583,-0.025379607,-0.0019827818,0.019363798,-0.0064107203,-0.023457708,-0.0020798643,0.0075362166,0.005992773,
Download .txt
gitextract_bz2543u5/

├── .eslintrc.js
├── .gitignore
├── .npmignore
├── .nvmrc
├── .prettierrc
├── LICENSE
├── README.md
├── jest.config.js
├── package.json
├── scripts/
│   └── demo.js
├── src/
│   ├── index.ts
│   ├── sample-data.json
│   ├── types.ts
│   ├── utils.ts
│   ├── vector2Trend.ts
│   └── vector2trends.test.ts
└── tsconfig.json
Download .txt
SYMBOL INDEX (14 symbols across 3 files)

FILE: src/types.ts
  type DataPoint (line 1) | interface DataPoint {
  type ClusteringArgument (line 7) | type ClusteringArgument = {
  type ClusterRankingGroup (line 15) | type ClusterRankingGroup = {
  type ClusteringResult (line 24) | type ClusteringResult = {
  type ClassificationRequest (line 28) | type ClassificationRequest = {
  type ClassifiedClusterResponse (line 37) | type ClassifiedClusterResponse = {

FILE: src/utils.ts
  function euclideanDistance (line 5) | function euclideanDistance(point1: number[], point2: number[]): number {
  function averageDistance (line 17) | function averageDistance(point: number[], points: number[][]): number {
  function silhouetteScore (line 28) | function silhouetteScore(
  function createCustomClusterRankings (line 75) | function createCustomClusterRankings(

FILE: src/vector2Trend.ts
  class Vector2Trend (line 158) | class Vector2Trend {
    method cluster (line 159) | static cluster(args: ClusteringArgument): ClusteringResult {
    method classify (line 221) | static async classify(
    method enableLogging (line 227) | static enableLogging() {
Condensed preview — 17 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (3,672K chars).
[
  {
    "path": ".eslintrc.js",
    "chars": 251,
    "preview": "module.exports = {\n  root: true,\n  parser: '@typescript-eslint/parser',\n  plugins: ['@typescript-eslint'],\n  extends: [\n"
  },
  {
    "path": ".gitignore",
    "chars": 2047,
    "preview": "# Logs\nlogs\n*.log\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\nlerna-debug.log*\n.pnpm-debug.log*\n\n# Diagnostic reports"
  },
  {
    "path": ".npmignore",
    "chars": 15,
    "preview": "src/\n*.test.ts\n"
  },
  {
    "path": ".nvmrc",
    "chars": 8,
    "preview": "v16.15.0"
  },
  {
    "path": ".prettierrc",
    "chars": 105,
    "preview": "{\n  \"semi\": true,\n  \"trailingComma\": \"all\",\n  \"singleQuote\": true,\n  \"printWidth\": 80,\n  \"tabWidth\": 2\n}\n"
  },
  {
    "path": "LICENSE",
    "chars": 1069,
    "preview": "MIT License\n\nCopyright (c) 2023 Aaron Decker\n\nPermission is hereby granted, free of charge, to any person obtaining a co"
  },
  {
    "path": "README.md",
    "chars": 3934,
    "preview": "# vector-2-trend\n\nTake (text) vectors and get out trending topics using clustering algorithms.\n\n```\nnpm i vector-2-trend"
  },
  {
    "path": "jest.config.js",
    "chars": 227,
    "preview": "module.exports = {\n  roots: ['<rootDir>/src'],\n  transform: {\n    '^.+\\\\.tsx?$': 'ts-jest',\n  },\n  testRegex: '(/__tests"
  },
  {
    "path": "package.json",
    "chars": 1238,
    "preview": "{\n  \"name\": \"vector-2-trend\",\n  \"version\": \"1.0.0\",\n  \"description\": \"take semantic text vectors, run clustering, classi"
  },
  {
    "path": "scripts/demo.js",
    "chars": 748,
    "preview": "const Vector2Trends = require('../dist/index');\nconst fs = require('fs');\n\nconst testData = fs.readFileSync('./src/sampl"
  },
  {
    "path": "src/index.ts",
    "chars": 103,
    "preview": "import { Vector2Trend } from \"./vector2Trend\";\n\nexport default Vector2Trend;\n\nexport * from \"./types\";\n"
  },
  {
    "path": "src/sample-data.json",
    "chars": 3645045,
    "preview": "[{\"id\":\"c71a0b10-4330-4533-b78d-9dba3c194996\",\"text\":\"I'm Lancelot of Inner Circle ⭕️ \\\"The bad boys of Reggae\\\" are you"
  },
  {
    "path": "src/types.ts",
    "chars": 1009,
    "preview": "export interface DataPoint {\n  id: number | string;\n  text: string;\n  vector: number[];\n}\n\nexport type ClusteringArgumen"
  },
  {
    "path": "src/utils.ts",
    "chars": 3283,
    "preview": "import { KMeansResult } from 'ml-kmeans/lib/KMeansResult';\nimport { ClusterRankingGroup, DataPoint } from './types';\nimp"
  },
  {
    "path": "src/vector2Trend.ts",
    "chars": 6167,
    "preview": "import {\n  ClassificationRequest,\n  ClassifiedClusterResponse,\n  ClusteringArgument,\n  ClusteringResult,\n  DataPoint,\n} "
  },
  {
    "path": "src/vector2trends.test.ts",
    "chars": 1264,
    "preview": "import { ClusteringArgument, DataPoint } from './types';\nimport { Vector2Trend } from './vector2Trend';\nimport fs from '"
  },
  {
    "path": "tsconfig.json",
    "chars": 1311,
    "preview": "{\n  \"compilerOptions\": {\n    \"target\": \"es6\" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES6'/'ES2015"
  }
]

About this extraction

This page contains the full source code of the a-r-d/vector-2-trend GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 17 files (3.5 MB), approximately 917.7k tokens, and a symbol index with 14 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!