-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathinit.sql
91 lines (88 loc) · 615 KB
/
init.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
CREATE TABLE `entities` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(512) DEFAULT NULL,
`description` text DEFAULT NULL,
`description_vec` vector<float> DEFAULT NULL,
PRIMARY KEY (`id`) /*T![clustered_index] CLUSTERED */
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
CREATE TABLE `relationships` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`source_entity_id` int(11) DEFAULT NULL,
`target_entity_id` int(11) DEFAULT NULL,
`relationship_desc` text DEFAULT NULL,
PRIMARY KEY (`id`) /*T![clustered_index] CLUSTERED */,
KEY `fk_1` (`source_entity_id`),
KEY `fk_2` (`target_entity_id`),
CONSTRAINT `fk_1` FOREIGN KEY (`source_entity_id`) REFERENCES `entities` (`id`),
CONSTRAINT `fk_2` FOREIGN KEY (`target_entity_id`) REFERENCES `entities` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
INSERT INTO entities (id, name, description, description_vec) VALUES (1, 'Elon Reeve Musk', 'Elon Reeve Musk is a businessman and investor, born on June 28, 1971, in Pretoria, South Africa. He is the founder, chairman, CEO, and CTO of SpaceX; angel investor, CEO, product architect, and former chairman of Tesla, Inc.; owner, executive chairman, and CTO of X Corp.; founder of the Boring Company and xAI; co-founder of Neuralink and OpenAI; and president of the Musk Foundation.', [0.011262729,-0.039624993,0.015973825,0.042776983,-0.0064390614,0.0068893456,-0.0037598717,0.032285366,0.0030816314,0.01696445,-0.020645523,-0.03762123,0.05209786,-0.037801344,-0.04556874,0.046919595,-0.0754676,-0.03401896,-0.03568501,-0.037868887,0.025305962,0.01696445,0.011397814,0.02593636,-0.0077392566,0.04250681,-0.01797759,0.0048912102,-0.011448472,0.03332102,0.02935852,-0.0058368067,-0.03016903,0.03145234,-0.04270944,-0.012731781,0.016322795,-0.005152938,0.02942606,0.030821942,-0.00040208956,-0.06038309,-0.011043216,0.033613704,-0.0020952278,-0.03451427,-0.06646192,-0.03676569,0.04030042,0.03926477,-0.02240163,-0.03606775,0.019272156,0.07033437,-0.045951486,-0.039670024,0.027444812,-0.018349074,-0.024180252,0.066371866,0.0026214973,-0.022818143,-0.015579827,-0.031159654,0.019497298,-0.008887481,-0.019227128,0.028953264,0.015287142,0.0019601427,-0.005532865,0.022491688,-0.0067655174,0.024000138,0.017380964,-0.052142892,0.016795594,0.037486143,-0.0046716966,-0.020060154,-0.0009758499,-0.014262746,0.022457916,0.011718642,-0.052277975,-0.008786167,0.009168909,-0.035662495,-0.015039487,-0.033478618,-0.044217892,-0.04196647,-0.012022584,-0.0018686787,0.0006849242,0.0025863189,0.015579827,0.014983201,0.038386714,0.017133307,-0.032307878,-0.020251524,-0.014341546,-0.0016027297,0.0055047222,0.039624993,0.014454117,-0.013125779,-0.027152127,0.0017673648,-0.021208378,0.021793747,0.05160255,0.049216043,-0.055114765,-0.011696127,-0.035662495,-0.055565048,-0.057726413,0.007311487,0.025913846,0.013125779,0.009906248,0.02236786,0.019902553,-0.019328441,0.0074634575,0.002282377,-0.013103265,-0.00037992714,-0.0026032045,-0.018979471,0.016930679,-0.02492322,0.0038386714,-0.08519374,-0.02706207,-0.023774996,-0.012889381,-0.0006743707,0.010103248,0.023774996,-0.009917506,-0.021456033,-0.0025652118,-0.010531018,-0.014836859,-0.026881956,-0.04615411,0.016953195,0.023752483,-0.043474924,0.0017926933,0.009748649,-0.018900672,-0.032105252,-0.025305962,0.05182769,-0.02438288,-0.047820162,0.019080786,0.013868748,0.025305962,-0.0066022896,0.008549768,0.038251627,-0.011943784,-0.037868887,-0.029178405,-0.058762066,-0.034446727,-0.027985152,-0.030191544,-0.053178545,0.0037823857,-0.0049671954,-0.014622974,0.011510385,0.011864984,-0.023347227,-0.03179005,-0.00037852,0.011617328,0.013981319,-0.004497212,-0.0058368067,0.008121998,0.00190245,0.020915693,-0.07303607,-0.010834959,0.000513957,-0.0095854215,0.057681385,0.0010630925,-0.04045802,0.025193391,-0.033140905,0.009844335,-0.0150732575,-0.015174571,0.029290976,0.02454048,0.035234723,-0.011257101,-0.035414837,0.025283448,0.026003903,0.053133514,-0.025215905,0.040593106,-0.05633053,-0.017516049,-0.0023907267,-0.035032097,-0.0026426043,-0.025441047,-0.067497574,-0.008212055,0.028705606,0.006861203,0.029966403,-0.018033875,0.0009329322,-0.009833077,0.031227197,-0.040165335,0.02092695,0.010390304,-0.016198969,0.013125779,-0.007908113,-0.014082633,-0.044713203,-0.03167748,-0.02422528,0.013170808,-0.04390269,0.021365978,0.0064897183,0.0009533357,-0.027264697,-0.024630535,0.0100638475,0.03746363,0.024135225,0.0053443084,-0.016210224,0.0007004027,0.0069006025,0.081996724,0.041786358,0.027714983,0.08586916,-0.012101383,-0.00951225,-0.0566007,0.00041651272,0.05079204,-0.048900846,-0.024900706,0.0037852002,-0.020206496,-0.003568501,-0.011516014,-0.004857439,-0.01494943,-0.04003025,0.013891262,-0.030056458,-0.00970362,0.012788067,-0.035144668,-0.001473273,-0.0061238627,0.021411005,0.008116369,-0.0139362905,-0.08190666,0.025778761,0.056060363,0.04084076,0.0034868869,-0.012202697,-0.04908096,0.04221413,0.052007806,0.030641828,-0.015714912,-0.05187272,0.04876576,-0.055565048,0.0062139197,-0.043542467,0.031857595,-0.0006687421,0.029516118,-0.05218792,-0.00048053748,0.0086454535,0.04415035,0.035032097,-0.018292788,-0.012416582,-0.023752483,0.044938345,-0.014803087,0.023932597,0.028818177,-0.00570735,-0.05043181,-0.00908448,0.00058290677,-0.06403039,-0.01556857,0.047504965,-0.0076885996,-0.014577946,-0.024202766,-0.04827045,0.0063884044,-0.022412887,-0.07961021,0.016919423,0.01417269,-0.014746802,0.052142892,0.03156491,-0.010311504,-0.019384727,0.039737564,0.011290872,-0.007964399,-0.060563203,0.010840588,0.008217683,0.023932597,-0.029403547,-0.0007380437,-0.053133514,-0.06790283,-0.038116544,-0.020364095,-0.03784637,-0.04367755,-0.023077056,-0.025283448,-0.006624804,0.014611716,0.024292823,-0.0146004595,0.01637908,0.030349143,-0.05975269,-0.052503116,-0.013677377,-0.0053921514,0.013688634,0.03750866,0.036608092,-0.004274884,0.011774927,0.0382066,0.042304184,0.009579793,-0.028007666,-0.035527408,0.07443195,0.017471021,-0.02395511,-0.03521221,0.021230891,0.039039627,-0.016885651,0.017290907,0.0035347296,0.011352786,-0.015579827,-0.016176453,0.029921373,0.07344133,0.016300282,-0.01813519,-0.00963045,-0.00025293298,-0.04228167,0.038769454,-0.032487992,-0.01856296,-0.03687826,0.02046541,-0.021624891,0.014319032,0.008803053,-0.004196084,-0.0021050777,-0.017853761,-0.026499216,0.021017008,0.028818177,0.018191475,-0.045163486,-0.0048124106,0.0042833267,-0.039354824,0.010429704,-0.017684905,0.021805003,-0.032465477,-0.009709249,0.01669428,-0.045095947,-0.01067736,0.038724426,0.05101718,-0.010103248,0.0072045443,0.0012059169,0.014589203,0.05583522,0.0105366465,-0.00070005096,-0.016896907,0.009579793,0.01548977,0.043114696,0.0018785286,-0.018123932,0.053358655,-0.00019031536,0.028480465,-0.0076154284,-0.018427873,-0.02379751,-0.030033944,-0.028322866,0.02438288,0.010232705,-0.036022723,0.021602375,-0.0012446132,-0.0015436299,0.023865053,-0.017842505,-0.03365873,-0.0006068281,0.022457916,0.001718115,-0.028367894,0.021602375,0.013778691,-0.017921304,0.038994595,-0.029628688,0.017831247,0.009112623,-0.007744885,0.010846216,-0.025305962,0.048090335,-0.06826306,-0.03784637,0.033253476,-0.038026486,-0.005473765,-0.008020684,-0.0192609,0.041876413,-0.009827449,-0.00966985,0.03939985,0.0004281216,-0.02888572,-0.011594813,0.019564841,0.019069528,-0.01382372,-0.042844526,-0.016097654,-0.022277802,-0.018101418,0.016559195,-0.047279824,0.036608092,-0.0003290943,-0.0005392855,-0.011988812,0.04818039,-0.055655107,0.02422528,0.041583728,-0.008791796,0.016941937,-0.009529136,0.050386783,-0.037981458,-0.004927796,-0.023144599,-0.007334001,-0.01564737,-0.02046541,-0.013868748,-0.034604326,0.035279755,-0.024990764,0.048585646,-0.0062645767,0.013497264,0.006061949,0.031745024,0.014735545,0.008110741,-0.013215836,0.019587355,-0.0015000086,0.040525563,0.04331732,0.0052936515,-0.01281058,0.0038020858,-0.00005421877,0.021861289,-0.013857491,0.042259157,-0.020161467,0.00018785287,-0.007626686,-0.033726275,-0.05187272,-0.02935852,0.023549855,-0.005304909,0.0051247953,-0.038251627,-0.017932562,0.0056004077,-0.030799428,-0.013834977,0.013902519,-0.0044746976,0.006624804,0.042844526,0.031587426,-0.011864984,-0.050837066,0.024472937,-0.011662357,-0.022086432,-0.021253405,0.033838846,0.039534938,0.04115596,0.06204914,-0.041110933,-0.005248623,0.042191613,-0.015973825,-0.005161381,0.026116474,0.0029718745,-0.0062026624,0.025103334,-0.0024526408,0.029065834,0.0340865,0.0037767573,-0.0019362213,0.008240198,-0.028525492,-0.015084515,-0.014026348,-0.020026382,-0.0061745197,-0.030641828,0.01246161,0.021377234,-0.014274004,0.0001600619,0.003937171,-0.023144599,-0.017380964,-0.01005822,-0.01583874,-0.035054613,-0.04759502,0.011380929,-0.04511846,0.015422228,0.035167184,0.040525563,0.0069794026,-0.0014296517,-0.012911894,-0.00955165,0.014048861,-0.011583556,0.00854414,-0.04601903,-0.0037852002,0.054484367,0.0011088244,-0.017955076,-0.03431164,-0.0053949654,-0.04072819,-0.014397832,0.034221586,-0.022435402,0.01114453,-0.013407207,-0.043497436,0.0071257446,-0.010148277,0.029606175,-0.006422176,0.038836997,0.01669428,-0.043069668,0.048720732,0.042146586,0.011206443,-0.0151633145,-0.014780574,0.06195908,0.030191544,0.020713065,0.028367894,-0.00026876328,-0.00093433936,0.013643606,0.036743175,-0.004339612,-0.005144495,-0.012146411,-0.008949395,-0.0009378572,0.013598578,0.0228294,0.018180218,0.008521625,0.01700948,-0.016097654,-0.0024892264,0.040277906,-0.026003903,-0.015287142,-0.041246016,-0.013407207,0.007851828,0.014195204,-0.024788136,-0.0020178354,0.00928148,-0.010576046,-0.017065765,-0.03809403,0.015534799,-0.007936256,-0.006022549,0.047279824,0.007598543,-0.012394068,-0.010120134,0.016514167,-0.038026486,0.026994528,-0.002811461,-0.003956871,-0.0087355105,0.02834538,-0.047865193,0.032217823,0.005541308,0.012585439,0.023043284,-0.056285504,-0.028502978,-0.032803193,0.015309657,0.027399782,0.010744902,-0.024472937,-0.02861555,0.0188669,0.023392254,-0.000111515656,-0.0075929146,-0.021129578,0.028007666,0.0119550405,-0.035144668,0.019362213,0.036788207,-0.004682954,-0.012686753,-0.02989886,0.03606775,-0.00652349,-0.007131373,-0.029943887,-0.0057974067,0.036788207,-0.019474784,-0.0348745,0.023617398,-0.0017842505,-0.03262308,0.016210224,0.0011285243,-0.0078067994,-0.0087355105,-0.024112709,0.012213954,0.0122364685,0.03996271,-0.003242045,0.027624926,0.011088244,-0.0004917946,-0.020803122,-0.02240163,-0.019576099,-0.013576063,-0.00022338309,-0.0037795715,-0.006883717,-0.00652349,0.05470951,-0.03618032,0.0056538787,0.0014535731,-0.00718203,-0.039624993,-0.0026172758,-0.02904332,-0.0012833094,-0.014397832,-0.013024465,-0.028908234,0.00020755279,-0.022705572,-0.050296728,-0.014060119,-0.031497367,-0.023527341,0.0028353822,0.026026417,0.029268462,0.009056337,0.006861203,0.0037908286,0.005943749,0.011206443,0.005932492,-0.023392254,-0.022221517,0.039467394,0.004744868,0.03881448,0.038544312,-0.012866866,-0.008611682,0.000105447376,0.019486042,-0.003886514,-0.02562116,-0.0075310003,0.022153974,0.037215974,0.006607918,0.021062035,-0.011561043,-0.009242079,-0.019125814,0.024450423,0.030461714,-0.015478513,0.03203771,-0.03086697,0.022818143,-0.023189627,0.013137036,0.0050065955,0.01754982,-0.0651561,0.00687246,0.0037007718,-0.006883717,-0.0014155804,-0.01366612,0.0014233197,0.016683023,-0.0037908286,0.002568026,0.03264559,-0.003323659,0.012585439,-0.033838846,0.0146905165,0.02427031,-0.021073293,0.015422228,0.025238419,0.008279597,0.03831917,0.052503116,-0.0048968387,-0.0076717143,-0.029966403,-0.0068386886,-0.004204527,-0.01700948,0.042034015,-0.03048423,-0.012495382,-0.006298348,-0.009185794,-0.043272294,-0.0042833267,0.008780538,0.013215836,0.02189506,-0.015591084,-0.033456102,0.014836859,0.0029887601,0.02760241,-0.011864984,-0.009410936,0.014893144,0.022142718,0.00082458265,0.017358448,0.00687246,-0.02776001,0.004666068,-0.0011024923,-0.02535099,-0.04604154,-0.014476632,0.021062035,-0.016457882,0.01929467,0.030416686,0.00024484194,0.00889311,-0.0029409176,0.0152196,0.0057383073,0.012427839,-0.0008133255,-0.037418604,0.016784336,-0.020803122,-0.0023850983,0.061598856,-0.03365873,0.056285504,0.008257084,-0.020487923,-0.010069476,-0.013474749,0.032330394,0.020442896,-0.00497001,-0.016975708,-0.0019854712,-0.016232738,0.026859442,0.008803053,0.010806817,-0.008870595,-0.02888572,-0.013069494,-0.003354616,0.010857473,-0.026566757,-0.014848116,0.029718745,-0.008071342,0.020319067,-0.008684853,0.029651202,0.0385218,-0.00043410194,0.01988004,0.000085571555,0.018833129,-0.023392254,0.025868818,-0.037373573,0.048000276,0.026431672,-0.04903593,-0.018033875,0.0033686874,-0.0042608124,0.021602375,-0.0062251766,-0.026229044,0.053718884,-0.015703656,0.011442843,0.014026348,-0.061598856,0.015906284,-0.009455965,-0.01813519,-0.000107470136,0.008510368,0.057906527,0.011076987,0.018641759,-0.01762862,-0.048945874,0.03264559,0.0036951434,0.0016618295,0.015669884,-0.022649286,-0.0040075276,-0.009849963,-0.013632349,0.02116335,0.05079204,-0.03172251,-0.009771164,0.035279755,0.03129474,0.004508469,0.0062026624,-0.02566619,0.0090225665,-0.005983149,0.015928797,0.022424145,-0.02379751,-0.0010061034,-0.022649286,0.012889381,0.038071513,0.034964554,0.017774962,-0.0025961688,0.010592932,-0.008819939,-0.0382066,0.03179005,0.030686857,-0.017257135,-0.02015021,-0.015557313,-0.0034334157,-0.022525458,0.008566653,-0.021579862,0.035527408,0.029966403,-0.00028564892,0.018506674,0.015410971,-0.018304046,-0.023437284,-0.017133307,0.010964416,-0.013519778,-0.0019404427,-0.021714946,0.00037605752,0.014296518,-0.020319067,-0.00075422577,-0.032870732,-0.04415035,-0.028120238,-0.038364198,0.023729969,0.025531104,-0.00067542604,-0.0014338732,0.027242184,0.02046541,-0.00533868,-0.017865019,0.011375301,-0.035077125,0.0070582023,-0.04104339,-0.016153939,0.039444882,-0.020758094,-0.05151249,-0.017268393,0.026026417,-0.008955023,-0.0087411385,-0.031519882,0.033478618,-0.033298504,0.013981319,0.019170843,0.012765552,-0.013902519,0.021534834,-0.010007562,-0.03793643,-0.000029505916,-0.022728086,-0.032015193,-0.0035009582,0.039917678,-0.0076717143,-0.027197156,0.05669076,-0.0040722564,-0.0061407485,0.0010440961,-0.018653017,-0.027354755,0.004303027,0.040908303,0.027467325,0.043429893,-0.014082633,-0.026364129,0.017583592,0.012292754,0.053403687,-0.030146515,0.032127764,0.003773943,0.019418499,-0.016063882,-0.050026555,-0.023054542,0.010041334,0.02562116,-0.04415035,0.038544312,0.0087411385,-0.036968317,-0.02748984,-0.008048827,0.009337765,-0.009776792,0.021951346,-0.0075310003,0.016975708,0.021827519,0.03365873,-0.03097954,0.016592966,-0.010452218,0.043610007,-0.0119550405,-0.0304392,-0.030934513,-0.009816192,0.03809403,-0.0018335002,-0.0024878192,-0.018990729,-0.0045169117,0.00994002,0.0012516489,-0.02609396,-0.0026960757,-0.022593,-0.01494943,-0.004221413,0.002157142,-0.025013277,0.0056595076,0.017099535,0.03559495,0.012652981,0.029223433,-0.01471303,-0.028660579,0.0049671954,0.040863276,-0.019429756,-0.0053133513,-0.020746836,-0.008881852,0.007046945,-0.0027171827,0.020724323,0.015951311,0.0028283466,0.0076379427,-0.021861289,0.03536981,0.03129474,-0.035707522,-0.0040835133,0.01813519,0.0077561424,-0.01618771,-0.03300582,-0.021602375,0.06029303,-0.04475823,0.0100638475,-0.0062420624,-0.007744885,0.025260935,-0.039129682,-0.026431672,-0.0016801222,-0.01708828,0.031317253,-0.008020684,-0.0015422228,-0.040210363,0.022187745,0.0058255494,0.034604326,-0.012225212,0.015658626,-0.007834942,0.017380964,-0.008808681,0.021861289,-0.00039294318,-0.0040553706,0.005490651,0.015973825,0.011150158,-0.00032364164,-0.0018940072,-0.0058480636,-0.012821837,-0.021230891,-0.0150732575,-0.034604326,0.032510508,0.011251472,-0.010806817,0.0058818352,0.028548008,-0.01467926,0.03536981,-0.009833077,-0.018033875,0.0098781055,-0.02205266,0.057591327,0.002750954,0.016142683,-0.025486076,0.00038450034,-0.00032170684,-0.011752413,0.006506604,-0.0051473095,0.023099571,0.01631154,-0.020296553,0.0014662374,-0.026566757,0.0101595335,-0.03237542,0.027377268,0.007930627,0.0009695178,-0.01254041,0.0027270326,0.004080699,0.040120307,0.015388456,-0.0033996445,0.01816896,-0.04077322,0.00033226036,0.011420328,-0.031632453,-0.04538863,0.013789948,-0.0028818178,0.02609396,0.028367894,0.011527271,-0.04351995,-0.035617467,0.014240232,-0.0071538873,-0.0000151047425,-0.0031857595,0.011606071,-0.02151232,-0.014803087,-0.03622535,-0.034424216,-0.026454186,-0.042776983,0.011487871,-0.03338856,0.017020736,-0.0019038571,0.021365978,-0.004263627,0.005515979,0.006258948,0.033298504,0.004784268,0.01591754,0.009928763,0.0008548361,0.015534799,0.016153939,0.0033011448,-0.027872581,0.01040719,-0.020566722,0.06258948,0.024090195,0.0012080276,-0.006709232,0.016108911,-0.014634231,-0.0139362905,0.018371588,0.0028438251,-0.0013993983,-0.004801153,-0.014825601,-0.025981389,-0.0005480801,0.047279824,0.006258948,0.020048896,0.003703586,0.00818954,0.019463528,0.026116474,0.028840693,-0.011887498,0.018304046,0.004550683,-0.03964751,-0.028548008,-0.014476632,-0.028750636,-0.0071088593,0.053313628,-0.012675495,0.019328441,-0.0020178354,0.013215836,0.009619192,-0.014634231,-0.035932664,-0.013857491,-0.023572369,0.021365978,0.018990729,-0.036135294,-0.00963045,0.010981302,-0.026499216,0.047865193,0.005330237,0.025711218,0.023279684,0.0043761977,-0.008206426,0.0073790294,-0.03419907,0.019812496,-0.005448437,-0.005583522,0.00071623304,0.0060394346,-0.0035150298,0.009810563,-0.046559367,0.021759976,0.07303607,0.04764005,-0.013756177,0.0017167078,0.03948991,-0.014003833,0.013350922,0.019958839,0.010446589,-0.047054682,0.034221586,0.0064672045,0.006636061,-0.0053246086,-0.029493604,-0.0056707645,0.02011644,-0.013362179,0.0021036707,0.0015661442,-0.0093996795,0.026296588,-0.0052429945,-0.035437353,0.026274072,-0.003956871,-0.023977624,-0.0008773503,-0.02379751,-0.010046963,-0.017234622,-0.020487923,-0.05579019,0.024675565,-0.036990833,0.011966298,0.009146394,-0.007761771,-0.031092113,0.008718625,-0.020589238,-0.026566757,0.020735579,0.012596696,-0.01564737,0.030214058,0.025305962,-0.036112778,-0.003405273,0.02550859,0.025778761,-0.015759941,0.0015168943,0.0017941004,0.037553687,0.019609869,-0.028120238,-0.0012903452,-0.026071446,0.010305876,0.011409071,-0.023617398,0.024360366,-0.0012354668,-0.006433433,-0.011122015,0.019249642,0.008217683,0.04345241,0.015253372,-0.026814414,-0.008701739,-0.01762862,-0.006624804,0.030078974,-0.027895095,0.015107029,0.010789931,0.042259157,-0.004848996,-0.009292737,0.0066810893,-0.009686735,0.037913915,0.02652173,0.0050234813,0.014465374,0.05579019,0.008020684,0.010705503,-0.013981319,-0.011279615,0.0041257273,-0.02379751,0.012450353,0.034919526,-0.01727965,0.006168891,-0.009602306,0.007711114,0.008808681,0.0074803433,0.032600563,-0.020645523,-0.012911894,0.0010940494,-0.00045169116,-0.051917747,0.018292788,0.031632453,0.0016083582,-0.033726275,0.026589273,0.00024765622,0.013092008,0.023167113,-0.024743108,0.024022654,-0.0075872857,0.02958366,0.0036332293,-0.026026417,0.026881956,-0.00058747997,-0.011189558,0.015523542,0.009596678,0.011729899,0.0009019752,0.029290976,0.00039646102,0.027782524,0.0010975673,-0.02593636,0.0051585664,0.011324643,0.02539602,-0.030146515,0.024315337,-0.025373505,-0.05443934,0.006230805,0.0068780887,-0.009106995,-0.02205266,0.0045281686,0.023482312,0.015557313,-0.027422298,-0.036698148,0.018506674,-0.019598613,-0.015309657,-0.034063987,-0.024472937,-0.025981389,0.013913777,0.011583556,-0.010395932,-0.003847114,0.005893092,-0.011380929,0.02888572,-0.0065009757,0.0050685094,-0.0066867177,-0.0377338,-0.019767469,0.02776001,0.019441012,0.00047948214,-0.01444286,0.01743725,-0.0024315338,0.014926915,-0.030844456,-0.011324643,0.010041334,-0.010457846,-0.04239424,-0.015377199,-0.037868887,-0.011966298,0.018259017,0.007305858,0.046379253,-0.0039456137,-0.032915764,0.05497968,0.021287177,-0.0065009757,0.027129613,0.054304253,0.00566795,0.004744868,-0.021107065,-0.006219548,0.010283361,-0.005622922,0.021140834,-0.02213146,0.022840656,-0.023707453,-0.000090496535,-0.022491688,-0.046964623,-0.021298435,0.017842505,-0.023752483,0.0129906945,0.0063771475,0.006433433,0.023752483,0.024090195,-0.00016401947,0.05862698,-0.025868818,0.018720558,-0.017876277,0.012900637,-0.0013086379,-0.00014361598,0.016649252,-0.017538562,-0.008116369,-0.018607987,0.013001951,0.029200919,0.008144513,-0.010970045,-0.022435402,0.00015232264,-0.001677308,-0.029966403,-0.021365978,-0.0037345432,-0.021039521,0.03843174,-0.011178301,-0.02508082,-0.012090126,0.008161398,-0.040975846,-0.024337852,0.01374492,-0.0015253371,-0.0016956008,0.031002056,-0.021748718,-0.007930627,-0.023212142,-0.014386575,0.0066642035,-0.0024484193,0.016243996,0.0073677725,-0.0026130546,0.0015577013]);
INSERT INTO entities (id, name, description, description_vec) VALUES (2, 'SpaceX', 'SpaceX is a spaceflight services company founded by Elon Musk in 2002.', [-0.0037774676,-0.04684555,0.025543112,-0.014515383,0.01872633,0.016437557,-0.0079215355,0.080136806,0.046132166,0.024532484,-0.04244635,-0.01311834,0.034083903,-0.04680592,-0.07082318,0.033548865,-0.07649062,-0.027267123,-0.011433961,-0.057149988,0.016903238,0.023878548,0.0098040765,0.013584021,-0.00511754,0.01616013,-0.016051142,0.014564924,-0.004706353,-0.004451219,0.05754631,-0.025820538,-0.030992573,0.020807033,-0.019548705,0.039473917,0.0015122255,0.031943753,0.03495582,0.0123355985,-0.03414335,-0.05037284,0.005499002,0.027524734,-0.01730947,-0.007995846,-0.08592314,-0.015238675,0.02681135,0.009769398,-0.052275196,-0.010443149,-0.017864326,-0.0053602885,-0.018032763,-0.05766521,0.005528726,-0.0026008792,-0.043001205,0.048351586,-0.01999457,0.00970995,-0.009397844,-0.0064452267,0.026989697,0.0094969245,-0.005494048,0.03269677,0.0036907715,0.015258492,-0.020489974,0.053820863,0.007480624,0.02104483,0.017715704,-0.018230924,0.009432523,0.03741303,0.0403062,-0.030715145,-0.0046369964,0.0075747515,-0.0069654025,-0.02544403,-0.052552626,-0.021480786,0.014039794,-0.008302998,-0.03715542,-0.022570679,-0.019340634,0.01735901,0.025899803,0.017983222,0.047915626,-0.0016038755,0.004371954,-0.037076153,0.028574994,0.008714184,-0.007297324,0.004166361,-0.042644512,-0.0378688,0.012910269,0.001641031,-0.030001761,0.009140233,-0.018379547,-0.005315702,-0.020430526,0.0044016787,0.03745266,0.051641077,-0.027029328,-0.016913146,-0.059052344,-0.026573556,-0.0115627665,0.004181223,0.00786704,-0.01017563,0.009472155,-0.005791291,0.03656093,-0.047875997,-0.024433402,0.0142478645,-0.020044109,0.026197046,0.030516984,0.0069307243,0.043199368,-0.024037078,0.03824531,-0.058101166,-0.09155095,-0.06503684,0.015803438,0.01594215,0.006569078,-0.024314506,0.044031646,0.032577872,-0.009635638,-0.07391451,-0.01925146,-0.021262808,-0.07918563,-0.017339196,-0.036224056,-0.0062470646,-0.01940999,0.0011728727,0.00372545,0.01757699,-0.05770484,0.013593929,0.008615103,0.005672394,-0.0189344,0.03130963,0.009729765,0.017170757,-0.014931524,0.021956375,0.007956213,-0.029407276,-0.05037284,-0.059527934,-0.025126971,-0.030140474,-0.0320032,-0.026613187,-0.0032746308,0.0055336803,-0.054019023,0.010819658,-0.016130406,-0.046251066,-0.014485659,0.01815166,0.006004316,0.014297405,-0.027187858,0.01070076,-0.025662009,0.009199682,0.033172358,-0.067018464,-0.022095088,0.0054841395,0.002219417,-0.014317221,-0.01694287,0.03610516,0.0070446674,-0.05136365,-0.010879107,-0.024492852,-0.034083903,0.024096528,-0.027187858,0.008109789,-0.020707954,-0.04296157,-0.0077778674,0.0015840593,0.04280304,-0.01909293,0.032340076,0.0032250902,-0.04181223,-0.037076153,-0.02948654,-0.0043174597,0.017240115,-0.053701963,0.0048425896,0.015169319,0.036600564,0.024908992,-0.020103559,-0.018498445,-0.013157972,0.03782917,-0.0059795454,-0.004508191,0.011433961,-0.002229325,-0.031864487,0.009402798,-0.00865969,-0.0305368,-0.056317706,-0.025582744,0.03471802,-0.010304436,0.0050159814,-0.016734801,0.012969718,-0.0461718,0.0038815027,0.017636439,0.065235004,0.006593848,-0.011632123,-0.043476794,0.00875877,0.0072378754,0.07518275,0.011939274,0.008486298,0.047440037,0.021936558,-0.013920897,0.002231802,0.015357573,0.06154919,-0.053701963,0.0009412706,0.014971157,-0.0011004197,0.024770278,-0.064917944,-0.008174192,-0.018964125,-0.030715145,0.01138442,-0.00049602485,-0.029030766,0.012622934,-0.023184981,-0.028832605,0.030140474,0.029942313,0.0037081107,0.0020707953,-0.04506209,0.04046473,0.05829933,-0.015080146,-0.04684555,-0.010898923,0.0024126251,0.03253824,0.044943195,0.01626912,-0.042367086,-0.03311291,0.028079588,-0.013128248,0.010562047,0.015803438,0.048668645,0.0040771877,0.026276313,0.021996008,0.03309309,0.0055188183,0.03085386,0.012167161,-0.03568902,0.00048549747,-0.024908992,0.031032205,-0.031289816,0.050491735,-0.008639873,0.013356134,0.0040499405,-0.026989697,-0.026454657,-0.07779849,0.024829727,0.0055634044,-0.043238997,0.0030318822,-0.011929367,-0.050927695,-0.0047534164,-0.048470482,-0.012474312,0.0018057533,0.03289493,-0.019172195,0.063094854,0.04700408,-0.018221017,0.028971318,-0.009630685,-0.034123536,0.007465762,-0.03808678,0.06689957,-0.050412472,0.041257378,-0.062262572,-0.02031163,-0.049223498,-0.014158691,0.0019209351,-0.00511754,-0.009155095,-0.015773714,0.04288231,-0.027247306,0.013584021,-0.01065122,0.021064645,-0.014703638,-0.001132621,0.03366776,-0.03535214,-0.034678392,-0.051284384,0.03588718,-0.023759652,0.041931126,0.017289655,0.020767402,-0.0022417102,0.032260813,0.017259931,0.003034359,0.01741846,-0.015922336,0.05247336,-0.007089254,-0.04843085,-0.031131286,0.027683264,0.033766843,0.01154295,0.01716085,-0.005424691,0.032736402,0.008966841,-0.0070446674,-0.009482062,0.037987698,-0.025503479,-0.01878578,-0.0038988418,-0.012494129,-0.027683264,0.0716951,-0.016061049,-0.039216306,-0.030814227,-0.057268884,-0.029328011,-0.023224613,0.00095055945,-0.006147983,0.032340076,0.009754536,0.002581063,0.0030442672,0.0054890937,-0.013078707,-0.03751211,0.013752459,-0.017398644,-0.04327863,-0.048906438,-0.018855136,0.02171858,-0.014772994,-0.012315783,0.06503684,-0.016695168,0.0027123454,0.02366057,0.023700204,-0.007104116,0.005152218,-0.0007362965,-0.0023469839,0.05037284,0.032736402,0.031666324,0.020390894,0.002848582,-0.011027728,0.04522062,-0.014436118,0.014683821,0.010423333,0.0010323013,-0.01810212,0.01647719,0.03222118,-0.027643632,-0.035272878,-0.02031163,-0.0029947266,0.0012663805,-0.038106598,0.014069518,0.00530084,0.005925051,-0.023482224,-0.019499164,0.04078179,-0.0017797445,-0.04212929,0.0145252915,-0.021956375,0.020014385,0.042367086,-0.04490356,0.002578586,0.012038356,-0.015040513,-0.029605437,-0.026692452,-0.023799283,0.01999457,0.02922893,-0.03594663,0.0060142237,0.014515383,-0.039156858,0.051641077,-0.01826065,-0.0081543755,0.020846667,-0.055326894,0.04989725,0.027187858,0.027366204,-0.009903157,-0.046211433,-0.013187696,0.030834043,-0.00059077115,-0.03111147,0.021104278,0.02958562,0.0017116263,0.03374703,0.002214463,0.045141358,0.012315783,-0.024611749,-0.04454687,0.047994893,-0.02066832,0.010294528,0.06674104,0.028495729,-0.009566282,-0.0044041555,-0.01101782,-0.054613512,0.0012608072,-0.015971877,-0.013564205,-0.0024733124,0.019915305,-0.020589055,-0.024829727,0.03477747,0.022669759,0.037531927,-0.024671197,-0.017586898,0.017428368,0.030180108,-0.018746147,0.051720344,0.0049317623,0.0032226134,-0.016298844,0.014971157,0.0201531,0.010502598,0.0014007593,0.002945186,0.040484544,0.009744627,0.00939289,0.042010393,-0.05992426,0.010482782,0.00069418707,-0.038324576,-0.026989697,0.0019469439,-0.011860009,-0.01936045,0.009541512,-0.013336319,-0.011156534,-0.017606715,-0.021381704,0.0058160615,-0.017953498,0.002002677,0.024155976,0.042168923,0.014971157,-0.009407752,0.00110847,0.028317383,-0.027445469,-0.011998723,0.0015196566,0.028158853,0.012018539,0.037056338,0.02802014,-0.040365648,-0.0040202164,0.01012609,-0.0048797447,-0.004649381,-0.00006653142,-0.0021748305,-0.026474474,0.047994893,0.025840355,0.02770308,0.0077828215,-0.028238118,-0.0031755497,0.0059646834,-0.02738602,-0.024671197,-0.041297007,-0.005791291,0.0042059934,0.01972705,0.0153278485,0.037749905,-0.03172577,-0.046885185,0.03146816,-0.017507633,0.009041152,-0.00823364,0.021956375,-0.0019457054,-0.03184467,0.011889734,-0.04958019,0.016120497,0.022808474,0.01805258,0.024195608,-0.008813265,0.0005551639,-0.0053404723,-0.009853617,-0.0048351586,0.023442592,-0.039632447,0.03337052,0.016417742,-0.0078175,-0.0031458254,-0.0023804237,0.0012131244,-0.032439157,0.00008282562,0.024453219,-0.0059646834,0.046052903,0.018399363,-0.03069533,0.0021810231,0.019112747,0.03220136,-0.022213986,0.008005754,-0.015803438,-0.023680387,0.034064088,-0.0054643233,0.02130244,-0.027346388,-0.013286778,0.022095088,0.03190412,-0.007549981,0.006955494,0.00713384,-0.0019432284,0.01012609,0.08092946,-0.014584741,0.02938746,0.0146640055,-0.05298858,-0.003648662,0.0037774676,0.0137227345,0.0059795454,0.0056228535,-0.019746866,-0.021896927,0.0118401935,-0.019112747,-0.012186977,0.009610868,-0.020430526,0.025384583,0.00996756,0.025642192,0.00425058,0.004193608,0.00024630947,0.0042183786,0.0037056338,0.0143865775,0.0048599285,0.018656975,0.010988096,0.016764525,0.006024132,0.0122266095,-0.04375422,0.016506914,0.005959729,0.020390894,-0.006390732,-0.014128967,-0.010562047,-0.028218301,-0.04926313,0.007297324,0.0015407114,0.00003827782,-0.023482224,-0.010898923,-0.014099243,-0.02203564,0.057427414,0.018954217,0.0067176996,-0.018300282,-0.03117092,0.024334323,0.012672475,-0.02639521,-0.033647947,0.004728646,0.015030605,0.014089335,-0.027663447,0.023184981,0.047440037,0.01715094,-0.0036783863,0.0077729137,0.02891187,0.040048588,-0.034856737,-0.037274316,0.021659132,0.025860172,-0.011523134,-0.030596249,-0.01873624,-0.012504037,-0.052512992,-0.03751211,-0.002848582,-0.015961967,-0.014545108,-0.02041071,0.017200481,0.020886298,0.030219741,0.019736959,0.006128167,-0.027267123,-0.028039956,0.008189054,-0.013920897,0.0042208554,-0.007386497,-0.023383142,-0.020063926,0.028198486,0.01426768,0.06832634,-0.008179146,-0.023581306,0.006306513,0.010641312,-0.027901242,-0.005761567,0.010680945,-0.0074855783,-0.026930247,-0.0119491825,-0.032577872,0.027643632,-0.0036684782,-0.0006427887,0.023026451,-0.010046825,-0.025662009,-0.029030766,0.052592255,0.009972515,0.020192731,-0.009962606,0.021896927,0.0021909312,0.008951979,-0.0017227728,-0.025107155,-0.0013338795,-0.010131044,0.012295966,0.06468015,0.027901242,-0.016378108,-0.0074409917,-0.033311073,-0.00002467352,0.022392333,-0.024473036,-0.008456573,0.008629966,0.025860172,-0.007445946,0.018637158,0.024928808,-0.036283504,0.011820377,-0.0010731723,0.031824853,0.002402717,-0.0046369964,0.006019178,0.007168519,-0.010195447,-0.011265523,0.045973636,0.015119778,-0.052037403,0.036798727,0.008798403,0.013752459,-0.0010936079,-0.03477747,-0.017170757,-0.0024782664,-0.002351938,-0.01521886,-0.008595287,-0.023422776,0.018656975,-0.01695278,-0.012603118,0.023838917,0.012325691,-0.004810388,0.018399363,-0.0056327614,0.0447054,-0.00797603,-0.034559492,0.0069852187,-0.0026058333,-0.04028638,-0.018815504,-0.0084318025,0.0015518579,-0.029526172,0.0298036,-0.01762653,0.009531603,-0.016972596,-0.031032205,-0.010140952,0.02990268,0.045735843,0.006430364,-0.036481667,0.011978907,0.00850116,0.042367086,-0.0046667205,-0.025146788,0.018746147,-0.0053701964,-0.01940999,0.014872075,-0.00011479476,0.00640064,-0.006306513,-0.012167161,-0.040008955,-0.0035991215,-0.029110031,0.024155976,0.012385139,0.0058011995,0.021976192,0.012573394,0.021579867,0.018954217,0.011196166,-0.014019978,0.0032523377,-0.00178346,-0.055842116,0.009105555,-0.018012946,-0.03878035,-0.004627088,-0.02050979,0.016982503,0.013207513,-0.036184423,-0.0017859371,-0.027267123,0.0120878965,-0.04094032,0.024274873,0.0008211348,0.012553577,0.009591052,0.07213105,0.025087338,-0.019142471,0.02292737,-0.011780744,-0.050016146,0.012910269,0.01840927,-0.01862725,-0.013910988,0.02623668,0.04601327,0.008228687,-0.0013970437,0.047281507,-0.008377308,-0.0053751506,-0.0054593696,0.0038443473,0.02471083,-0.00097471045,0.013128248,-0.019806314,0.040048588,0.03881998,-0.01421814,-0.0052612075,0.0012731923,0.0056030373,0.054613512,-0.013237237,-0.0013970437,0.04391275,-0.022828288,0.03043772,0.011602399,-0.012107712,0.00081989623,-0.01962797,-0.014039794,0.011513226,0.02817867,0.05917124,-0.013930805,-0.01910284,-0.01721039,-0.02576109,-0.02324443,0.009823892,0.006390732,-0.002207032,-0.020688137,-0.0012347985,-0.034817103,-0.049817983,0.019429807,0.057903003,-0.032280628,0.03525306,0.007272554,0.03998914,0.014961248,-0.0058309236,0.021084461,0.027722897,-0.0053404723,0.03808678,0.0015407114,0.008278227,-0.00065145834,-0.003106193,-0.031230368,0.0054345992,0.009962606,0.0062074317,0.029248746,0.016605996,0.025463847,-0.032736402,0.0045453464,0.034500044,-0.01735901,-0.01821111,-0.018429087,-0.0032597687,-0.040246747,-0.006673113,-0.035451222,-0.0028163807,0.02518642,-0.008704276,0.018666882,0.010482782,-0.0054643233,0.0021661608,-0.026514107,0.014327129,-0.03117092,-0.00067437085,-0.013990253,0.01956852,-0.005072953,-0.04224819,-0.027683264,-0.015407113,-0.031705957,-0.022511229,0.004540392,0.020807033,0.032419343,-0.009685179,-0.010121136,0.043714587,0.007460808,-0.0119491825,-0.0010106274,0.009982422,-0.0230859,0.013375951,-0.028971318,-0.009779306,0.0018330007,-0.028119221,-0.01926137,-0.002178546,0.023541672,-0.019142471,-0.01993512,-0.0040425095,0.009318579,-0.027108593,0.003923612,0.05877492,0.010393609,-0.020707954,-0.021342073,-0.004144068,-0.05619881,-0.016566362,0.0018020378,-0.024255058,0.013841632,0.013257054,-0.0017797445,-0.03907759,0.05393976,0.020331444,0.0007195766,-0.009333441,-0.033965006,-0.03130963,0.017279746,0.03852274,0.016011508,0.0051918505,-0.057784107,-0.0028262888,-0.016051142,0.004911946,0.010205355,-0.02241215,0.040385462,-0.019796407,-0.009070876,-0.018429087,-0.03715542,0.009754536,0.007024851,0.022550862,-0.019291094,0.029506356,0.022907553,-0.0020732724,-0.0060736723,-0.034123536,0.034757655,-0.00834263,0.0022664806,0.024235241,0.028713707,-0.0054692775,-0.021223174,0.016447466,0.009937836,-0.007881903,-0.0006158511,-0.019172195,-0.023997447,-0.026732085,-0.011097085,-0.014436118,-0.004196085,-0.0197865,0.011820377,0.011988815,0.011612306,-0.01616013,-0.015862886,-0.01788414,-0.04197076,-0.025543112,0.005840832,0.041534804,0.014307313,0.025701642,-0.009422614,0.018141752,0.028079588,0.0043694773,-0.013207513,-0.006465043,0.0056377156,0.013663285,-0.010195447,0.035272878,-0.018855136,-0.008223733,-0.020212548,-0.006509629,0.014069518,0.014366762,-0.0133065935,0.0026330806,-0.01694287,0.034500044,0.02770308,-0.0024782664,0.010690852,0.056951825,-0.0149414325,-0.03352905,-0.020866483,0.017923774,0.058893815,-0.009269038,-0.011760929,-0.010581863,-0.051086225,0.015446746,-0.044626135,-0.08267328,-0.021678949,0.0077630053,0.0058309236,-0.004505714,-0.012523853,-0.014545108,0.033350702,-0.009908112,0.033330888,-0.018746147,0.029288378,-0.0653539,-0.019400083,-0.021976192,0.026315944,0.02471083,0.0054742317,0.008065203,0.039156858,0.0028832604,-0.0092640845,0.013871356,0.01426768,-0.0024423494,-0.00028408415,-0.027960692,-0.01101782,0.0035124256,-0.025424214,-0.023700204,-0.03400464,0.03384611,-0.017487817,0.006910908,0.0070793456,0.022749024,0.012880545,0.0038691175,0.047122978,0.03416317,0.004676629,-0.026870798,0.01227615,0.013395767,-0.03232026,0.021084461,0.0075153024,0.01735901,-0.015535919,-0.02681135,0.012900361,-0.023997447,0.022867922,-0.008065203,0.04244635,-0.004101958,0.0115330415,-0.00841694,-0.0320032,0.016080866,0.04926313,0.020450342,-0.029704519,-0.010770117,-0.01972705,0.0028560131,0.018924493,-0.015090054,-0.02035126,0.03190412,-0.021678949,0.0364024,0.01610068,-0.031388897,-0.014683821,-0.020846667,0.033608314,-0.021005196,-0.014069518,0.01889477,-0.021520419,-0.033865925,-0.01956852,-0.012831004,-0.03642222,-0.032300442,0.0034926094,-0.017468,-0.033231806,0.022095088,-0.016714985,0.0015369958,-0.0062718345,0.016596086,0.010918739,0.025840355,0.031349264,-0.022808474,0.01085929,-0.020866483,0.008451619,0.0115330415,-0.0005257492,-0.0074855783,0.020945748,-0.021936558,0.053701963,0.03309309,0.0032622458,0.015526011,0.010591771,-0.013980346,-0.026613187,-0.01521886,-0.023918182,0.0032572916,0.0069604483,-0.025424214,-0.00078955264,0.043793853,0.060598012,0.03961263,0.00031705957,0.010958372,0.015258492,0.03782917,0.026058333,0.03868127,-0.011315064,0.018775871,0.014188415,-0.049817983,-0.026533922,-0.007911627,-0.051244754,-0.0035322418,-0.019826131,-0.014604556,0.03037827,0.0014317221,-0.01767607,-0.01977659,-0.013633561,-0.026910432,-0.0066384347,-0.004052418,-0.027068961,0.019013666,-0.047717467,-0.008729046,-0.00865969,-0.02486936,0.05247336,0.020688137,0.026276313,0.023224613,0.027901242,-0.015843071,0.016883422,0.0058011995,0.015714265,-0.018964125,-0.03866145,-0.01983604,-0.001327687,0.0043273675,0.042168923,0.012662566,-0.016457373,0.043992016,0.03537196,-0.03981079,-0.020133283,0.018696606,-0.005949821,0.00032108475,0.042684145,-0.0029674794,-0.06190588,0.010244987,0.011582582,0.008932163,0.0018057533,-0.0053900126,0.01332641,0.023838917,-0.020232365,-0.013286778,-0.013316502,-0.0045676394,0.041534804,0.04664739,-0.020212548,0.027029328,-0.020281903,-0.045022458,-0.00310867,0.0043694773,-0.009432523,-0.0011369558,-0.0057467045,-0.03311291,0.021322256,-0.010002239,-0.022570679,0.0069703567,-0.01227615,-0.0021190974,-0.006311467,-0.06269853,-0.016932962,0.0012019778,0.00060067925,-0.00032727732,-0.010254895,0.0038616864,-0.027445469,-0.00996756,0.015407113,-0.0021797845,0.024473036,0.005528726,-0.027405836,0.018538076,0.035589937,-0.016962687,0.0045626853,-0.015991691,0.021223174,0.012454496,-0.0431201,0.012949902,-0.023759652,-0.039949507,0.011889734,0.0070793456,-0.013584021,0.018121935,0.013752459,-0.03703652,0.019736959,-0.024730647,-0.018379547,0.030417902,-0.0033489417,0.0035049946,0.048232686,0.017497726,0.011275431,-0.013544388,0.003024451,-0.0027841793,0.023066083,-0.046607755,0.015456654,0.043040838,0.042168923,0.007183381,0.0023395529,-0.014277589,-0.0045453464,0.0039706756,-0.008085019,-0.013227329,0.02728694,-0.01788414,-0.0023383144,-0.005607991,-0.019320818,0.05964683,0.01463428,-0.0077332812,-0.0055733128,-0.01652673,0.00955142,-0.005266161,-0.016388016,0.0020237318,0.031983383,-0.030160291,-0.016982503,0.011978907,0.014703638,0.03584755,0.005246345,-0.00980903,0.01474327,-0.021262808,0.01894431,0.022491414,-0.023462407,0.012315783,-0.0080008,-0.010918739,0.009764444,0.018656975,0.018270558,0.010829566,0.026375392,0.0013611268,0.04288231,-0.0067870566,-0.03808678,-0.0034306836,0.00939289,0.0036461852,-0.0029625255,0.025483662,-0.029625254,-0.048668645,0.020648504,-0.0022999204,-0.028634442,-0.027643632,-0.012464404,0.025245868,0.007039713,-0.0283372,-0.03079441,-0.00018856375,0.0053751506,0.009724812,0.008407033,-0.019489255,0.0076986025,0.021778028,0.005087815,-0.02203564,-0.01936045,-0.0072428295,-0.018746147,0.050174676,0.024770278,0.00091650034,0.007743189,0.0040004,-0.025126971,0.01668526,0.011899642,0.03410372,-0.009214544,0.00857547,-0.013980346,-0.004627088,0.001472593,-0.00795126,0.0006056333,0.0020385939,-0.024096528,-0.018508352,-0.027643632,0.015496287,0.014822535,0.0040474636,0.012840913,0.013465123,0.005414783,0.021242991,0.006232202,0.027564365,-0.0050506596,-0.0000913404,0.032240994,0.005315702,-0.008823173,-0.03788862,-0.0048425896,0.017656256,-0.0004009689,-0.01695278,-0.02397763,0.03792825,-0.0047509396,-0.026850982,-0.05944867,0.0026776672,0.020163007,0.0031532566,0.03745266,0.016358292,0.022808474,0.027366204,0.00970995,-0.00797603,0.02140152,0.013574113,0.02534495,-0.016487097,0.0043892935,0.009120417,0.015912427,0.017012227,-0.004265442,0.00996756,-0.052948948,-0.010948463,0.006643389,-0.006658251,-0.013574113,0.023066083,-0.006777148,0.008411987,-0.04973872,-0.005082861,0.0022590493,-0.029010952,0.027980506,-0.014446027,0.0049986425,-0.013207513,0.025483662,-0.016328568,0.03457931,0.012692291,-0.014772994,0.0011592491,0.022055456,-0.011671755,-0.04280304,-0.018795688,0.015714265,0.010264804,-0.019271277,-0.0024473036,0.0041366364,-0.012543669,-0.0039706756]);
INSERT INTO entities (id, name, description, description_vec) VALUES (3, 'Tesla, Inc.', 'Tesla, Inc. is an electric vehicle manufacturer where Elon Musk became an early investor in 2004, later becoming the company\'s chairman, product architect, and CEO.', [-0.01644017,-0.09441886,-0.030386422,0.036402453,0.006973126,0.022040546,-0.020454502,0.069435924,-0.0074215936,0.0086248,0.012655539,-0.039683923,0.05075342,-0.056835078,-0.03609618,0.032245923,-0.05687883,-0.03244281,-0.008116172,-0.029183215,-0.000020904423,0.03655559,0.036621217,0.011233569,0.00019842645,0.029992646,-0.045240548,0.011085903,-0.034455445,-0.007164545,0.016101085,-0.0058902404,-0.018507496,-0.019010656,-0.0025841584,-0.006841867,0.042681,-0.005638661,0.0026620934,0.018201226,-0.028592551,0.00090719,-0.01426346,0.07026723,-0.0074380008,-0.036927488,-0.03686186,-0.009155304,0.026886186,0.022707779,-0.0059285243,-0.038633853,0.018584063,0.0527223,-0.06549816,-0.016112022,0.03027704,-0.0010404998,-0.033514757,0.07648015,-0.003169354,0.00076362566,0.0025130599,0.013869684,0.029948892,-0.0026566242,-0.028876945,0.020060726,0.020388873,0.0036205563,-0.003943234,-0.0005233263,-0.025136068,0.02953324,0.056616314,-0.020279491,-0.016265158,0.019951344,0.00027601956,-0.0019374351,0.011397643,-0.008455257,-0.051628478,0.0043014614,-0.05985403,-0.0103967935,-0.0008798444,-0.0070934463,-0.021121735,-0.061079115,-0.037321262,0.0117695425,-0.033667892,-0.027651863,0.011867987,0.01029288,0.03754003,0.019513814,0.0037326734,-0.015269779,-0.03349288,0.016319849,-0.015247902,-0.015991703,0.017621499,0.004492881,-0.017216785,-0.023145309,-0.038371336,0.009352192,0.01402282,0.0033662424,0.053203583,0.037386894,-0.081467986,-0.019076284,-0.017271476,-0.007837246,-0.0452843,-0.045503065,0.001696794,0.018649694,0.008591985,0.00024884488,0.052547287,-0.014000943,-0.041084018,-0.039924562,-0.021756154,0.012097689,-0.030123904,0.006382461,0.04117152,0.016823009,0.009024045,-0.093981326,0.020870155,-0.045678075,-0.015477605,-0.009084205,-0.006984064,0.00055033003,-0.013672796,0.012819613,0.010653842,-0.024326637,0.037190005,-0.032333426,-0.001584677,-0.024720415,0.030802075,-0.028855069,0.008838095,-0.026186138,0.024895426,-0.00688562,-0.051103443,0.02822065,-0.02537671,-0.05596002,-0.00843338,0.0032650637,0.0017241396,-0.012600848,0.012228949,0.055609994,0.011933616,-0.027039321,-0.02916134,-0.042812258,-0.060816597,-0.03565865,-0.010369448,-0.0064863744,0.031764638,-0.012666478,-0.03646808,0.023342198,-0.008712306,-0.0034728902,-0.048303254,0.021263933,-0.037824422,0.018507496,-0.0705735,-0.010861669,-0.023145309,0.036818106,0.029598868,-0.058847714,-0.037561905,0.02406412,0.04099651,0.00047444602,-0.004112777,0.023298444,0.024720415,-0.015226025,0.0066395095,0.0006682579,0.03143649,0.029226968,0.03740877,0.07416125,-0.055128712,-0.023057804,-0.0014807638,-0.0010090524,-0.0052585574,-0.032049034,0.0058847712,-0.037321262,-0.021679586,0.014755681,-0.027039321,0.02636115,-0.056222536,-0.04961584,0.0032131071,0.07127355,0.018923149,0.036599338,-0.06667949,-0.005223008,-0.04025271,0.04782197,-0.037999433,-0.047690712,0.019809147,-0.010653842,-0.0015395568,-0.03473984,-0.030189533,-0.048171993,-0.04460613,-0.017358981,0.026623668,-0.013486845,0.03237718,-0.02120924,0.027586233,-0.016221404,0.021788968,-0.0062238565,0.005042527,0.012524281,-0.007842716,-0.0013125883,0.018704385,0.039224517,0.03819632,0.008586516,0.003325224,0.080111645,0.028264403,0.006557473,-0.021821782,-0.008504479,0.05035964,-0.018726261,-0.00040266383,0.03342725,-0.016319849,-0.020323243,-0.048872042,0.00051990803,0.0028275342,-0.041040264,-0.021231117,0.023670344,-0.019010656,-0.025748609,-0.03248656,0.036796227,-0.0220843,0.017894955,-0.00021979019,-0.016943328,-0.012797737,0.06589194,0.006376992,0.028767562,-0.025726732,-0.0051956624,-0.04554682,0.02717058,0.01097652,0.02388911,-0.025354832,-0.0007902876,0.025770485,-0.024720415,0.019645073,0.00027345592,0.013858746,0.009270156,0.018212164,-0.028986327,-0.0051163603,0.01258991,0.060991608,0.021942103,-0.015980763,-0.022467138,-0.014274399,0.042265348,-0.013683734,-0.042593494,0.016013578,-0.044387363,-0.0073340875,-0.028373785,0.040580858,-0.05849769,-0.020673268,0.03764941,-0.016035454,0.005485526,0.0032295145,-0.057885148,-0.010265535,-0.04690316,-0.03248656,0.0108288545,-0.0023585572,0.0047007073,0.017326167,0.019437246,-0.038852617,-0.016101085,0.020749835,-0.009729561,-0.007760679,-0.0586727,0.025726732,0.028176898,0.011561716,-0.038436964,-0.015980763,-0.025311079,-0.0090951435,-0.009286563,-0.027367469,0.016844884,-0.008088826,-0.011758604,-0.035396133,-0.00023978666,-0.008619331,0.040077697,-0.029730128,-0.036008675,0.051103443,-0.044234227,-0.038655728,0.02710495,-0.042221595,0.002161669,0.03064894,-0.008154456,0.010008487,0.007908345,0.046684396,0.060991608,-0.024851674,0.0077114566,-0.05806016,0.058935218,-0.01669175,0.007886468,-0.0034892976,0.008406035,0.04329354,0.032289676,0.021417066,-0.032639697,0.07604262,-0.027520603,-0.002195851,0.01116794,0.027498728,-0.008329467,0.008455257,-0.008756058,-0.0107577555,-0.0063551157,0.03500236,0.00034660537,-0.01804809,-0.0056495992,-0.010834323,-0.018923149,-0.0120758135,0.020979539,-0.013257143,0.03285846,-0.030495804,0.0048456388,0.032224044,0.025814239,0.007968506,-0.0046487506,0.008291183,0.010380386,-0.02791438,-0.016297972,-0.0036752475,-0.010839793,-0.026601791,-0.03001452,0.05005337,-0.03559302,-0.007580198,0.01934974,-0.0098170675,-0.004460066,-0.02102329,-0.026011126,-0.00010066596,0.02940198,-0.01358529,-0.011195285,-0.02108892,0.021624893,-0.006754361,0.01017803,0.019579444,0.00077729847,0.0144603485,-0.008345875,0.037058745,0.009122489,-0.004886657,-0.00004473568,-0.028395662,-0.036796227,0.02090297,-0.0072848657,-0.0609041,0.0023161715,-0.0025363036,0.0124914665,0.049922112,-0.03220217,-0.024436021,-0.015390099,-0.0017514852,0.007066101,-0.02848317,-0.0026634606,-0.00657388,0.018682508,0.045678075,-0.015576049,-0.028942574,0.005786327,-0.014088449,-0.0028986328,0.010336634,0.030058274,-0.0661107,-0.028067516,0.059941538,-0.01556511,-0.021537388,-0.0172496,0.01321339,0.0076348893,-0.0034400753,-0.011277322,-0.025661103,0.027279962,0.0152369635,-0.045940593,0.035133615,0.045065533,0.0037572843,-0.023582838,0.031152098,-0.05862895,-0.0452843,0.03257407,-0.029008204,0.052459784,-0.02065139,-0.037736915,-0.028351909,-0.0044436585,-0.054778688,-0.012786798,0.053641114,-0.0070825084,0.01296181,-0.008225554,0.0055128713,0.005477322,-0.016844884,-0.043271665,-0.00406082,-0.027958132,0.02164677,-0.028570674,-0.004591325,0.03362414,-0.004769071,0.06055408,0.013224328,-0.0054609147,0.014208769,0.021854596,-0.03288034,0.012786798,-0.012863366,0.023145309,0.020607637,-0.004509288,0.020465441,0.0018690712,-0.0012702027,-0.01669175,0.026711173,-0.028680056,-0.00490033,-0.005605846,-0.027564356,0.0046678926,-0.016319849,0.0024570015,-0.07853654,0.007891938,0.026186138,0.0009830741,-0.017566808,-0.02500481,-0.03869948,0.039968316,0.0069074966,-0.00009092409,-0.009631118,0.023604715,0.016549552,0.040733993,0.005359736,-0.024786044,-0.018846583,0.049965866,-0.05154097,-0.023845356,-0.009002169,0.058760207,0.038852617,0.053072326,0.025704857,-0.021559265,-0.013049317,0.009341254,-0.004514757,-0.026229892,0.017041773,0.0129071195,-0.017566808,0.01699802,-0.014755681,0.00016364627,0.014296276,0.017227722,0.0045885905,0.049353324,-0.037299387,-0.03318661,-0.021187365,-0.012611787,-0.007973975,-0.03764941,0.023123432,0.016144838,0.0016571429,-0.020574823,0.030911457,0.008531825,-0.015652617,-0.0029916076,-0.0039131544,-0.020191984,-0.021810845,0.0038365866,-0.06562942,0.014733804,-0.002425554,-0.023845356,0.0051792553,-0.014230646,-0.0041702027,-0.02747685,0.0096365865,-0.025026685,-0.019152852,-0.03530863,-0.026339274,0.020235738,-0.0005479373,-0.014121263,-0.010517115,0.007837246,-0.06042282,-0.008252899,0.026623668,0.0073340875,0.013683734,-0.035527393,0.0055156057,0.030123904,0.037474398,0.032224044,0.0019470061,0.012568034,0.027761245,-0.02848317,0.020257615,0.043315418,-0.008088826,-0.015488544,-0.01674644,0.017566808,0.015794814,0.015149457,0.016637057,0.01470099,-0.011780481,0.03944328,0.011638284,0.017873079,0.009516266,0.025026685,-0.038305704,-0.009904574,0.007990382,0.018660631,0.004539368,0.002988873,-0.0007731966,-0.00545818,-0.010183498,0.017599624,-0.012753984,0.009581896,-0.014711929,0.015215087,-0.021559265,0.038808864,-0.024414144,-0.009899104,0.0014739274,-0.033821028,0.011463272,-0.000087847715,0.00070688355,-0.015215087,0.0054062232,0.010030363,-0.036030553,-0.0023421498,-0.005720698,-0.012239886,-0.028308157,0.03664309,0.00035344178,-0.020191984,-0.021756154,0.017151155,-0.046553135,0.033295993,-0.009319378,-0.01191174,-0.00087916077,-0.03126148,-0.023495331,-0.023276567,0.020552946,-0.012950872,-0.0075747287,-0.010243659,-0.033842903,-0.023539085,0.021909287,0.0004139439,-0.008657615,-0.007722395,0.02598925,-0.0022806223,-0.037868176,0.0152916545,0.0052066008,-0.010194437,-0.015554173,-0.03430231,0.031305235,0.0075364453,-0.026404902,-0.023101555,-0.030758321,0.018212164,-0.029620744,-0.018277794,0.012163319,0.01029288,-0.029358227,-0.00053494814,0.01228364,-0.014252522,-0.038611975,-0.044343613,0.027761245,0.0052448846,0.06794833,0.03915889,0.018923149,0.0064262142,0.008444319,-0.021548327,-0.014318151,-0.022423385,0.0010692127,-0.025464214,-0.0005274281,-0.0017309759,-0.02152645,0.04987836,-0.00812711,-0.027717492,0.016090145,-0.00062416313,-0.009937388,-0.015510419,-0.011496087,0.035877418,0.00028952144,-0.036139935,-0.04447487,-0.0045803864,-0.008794342,0.004831966,0.03139274,-0.007345026,-0.002455634,-0.021318624,0.03001452,0.0668545,0.011692975,0.012677416,0.05416615,0.0049659596,0.021176426,0.011157001,-0.02983951,-0.009002169,0.04572183,0.011255446,0.015762,0.007066101,-0.0411934,-0.03305535,-0.024698539,0.014132202,-0.034346063,-0.042702876,0.005348798,0.024326637,0.013716549,-0.0016913249,-0.01581669,0.0117695425,0.01029288,-0.04272475,0.008274776,0.006552004,0.0009386374,0.06597944,-0.008170863,0.008110702,-0.03373352,0.0034537483,-0.037080623,-0.0008005422,-0.05539123,0.024239132,0.020235738,-0.004815559,-0.025398586,-0.009029514,0.008531825,0.003956907,0.015915135,-0.000848397,0.0051573785,-0.016035454,0.014711929,-0.026558038,-0.026842432,0.025836116,-0.04254974,0.021373315,-0.003218576,0.0037928335,0.01402282,0.014449411,-0.033689767,-0.021438943,-0.045021784,0.024786044,-0.01699802,-0.034849223,0.007908345,-0.040033948,-0.008942008,-0.027826874,0.04484677,-0.027958132,0.012885243,-0.0034264026,0.02649241,0.018398114,-0.016319849,-0.046465628,0.031917773,0.012928995,0.034389816,0.008876379,-0.03764941,-0.0046077324,0.021668646,-0.015083828,0.022707779,0.008701367,-0.03530863,0.002562282,-0.009669401,-0.042265348,-0.021974918,-0.025114192,0.033033475,0.0008381424,0.003095521,0.007930222,0.015411976,-0.028373785,0.015433852,0.03183027,0.0005482791,0.000043453852,-0.0073231496,-0.027323715,0.024676662,-0.01711834,-0.049965866,0.059941538,-0.006557473,0.0367306,0.010238189,-0.022620274,-0.034936726,-0.019831022,0.021428006,-0.014908817,0.030758321,-0.00954908,-0.0043124,0.017129278,0.043184157,-0.01750118,-0.01377124,-0.005168317,-0.028855069,-0.0055566244,-0.0019032531,0.02382348,0.012305516,-0.010659312,0.032420933,0.0011526167,0.011649222,-0.012655539,0.034280434,0.0031912306,0.0076567656,0.030758321,-0.0017610561,0.022117114,0.030408299,0.0019141914,-0.022040546,0.047690712,0.0393339,-0.032770958,-0.000504868,-0.010090523,-0.037627533,0.038808864,0.017709006,0.0009215464,0.04149967,-0.071536064,0.033120982,0.03244281,-0.026164262,0.018277794,-0.02692994,-0.01718397,-0.0023517208,0.023582838,0.043468554,-0.01284149,0.01681207,0.008384159,-0.055434983,0.022904668,-0.020016974,-0.006929373,0.010817916,-0.041827817,-0.02940198,-0.022171807,-0.031655256,0.006552004,0.03994644,-0.014208769,0.0148213105,0.05687883,0.0059886845,0.0051409714,-0.0028931636,-0.0026033004,0.019984158,0.007148138,0.0003091761,0.021778028,-0.008154456,0.008356812,-0.014865064,0.0051081567,0.014897878,-0.0111187175,0.000848397,0.024020368,0.0061090053,-0.0056933523,-0.023495331,-0.00437256,0.042527866,-0.015608864,0.037452523,-0.039421406,0.012349269,-0.029205091,0.04031834,-0.003995191,0.03355851,0.010358511,0.009680339,0.014340028,-0.0008060113,-0.0467719,-0.005310514,-0.030539557,0.0003592527,-0.012382084,0.004875719,-0.00048743517,-0.0013153229,0.037999433,-0.040602736,-0.02078265,-0.037955683,-0.046421878,0.0056550684,-0.0120758135,0.031064592,0.0029724657,0.0026497878,-0.051453464,0.026404902,-0.002733192,-0.014252522,-0.033120982,-0.0027413955,-0.008263838,0.00086548796,-0.035768032,-0.013650919,0.013825932,-0.006284017,-0.013508722,0.009034984,0.032727204,-0.010227251,0.001491702,-0.043643564,0.046553135,-0.00037566008,0.024261009,0.021865536,0.018332485,-0.029117586,-0.008859972,-0.032792833,-0.027761245,0.0060871285,0.0041455915,-0.031173974,-0.0023517208,0.053203583,-0.025945498,-0.035571147,0.040230833,-0.061385386,0.006294955,-0.0027263556,-0.041587174,-0.044890523,0.035374258,0.006672324,-0.0011375766,0.050797172,-0.017851202,0.0015135785,0.01706365,0.0070387553,0.020552946,-0.0015067421,0.027629986,-0.015685432,-0.0054144273,0.0014274399,-0.020727959,-0.02673305,0.01736992,0.008898255,-0.030539557,0.029489486,0.040602736,-0.019995097,-0.01432909,0.00930844,0.007995851,0.0053816126,0.009625648,-0.02084828,0.00875059,0.015794814,-0.00027601956,-0.0024077795,0.01879189,-0.015576049,0.029576993,0.0045475718,-0.035199247,-0.042484112,0.008449788,0.030298915,0.00514644,-0.0012483263,-0.034346063,0.0015381895,0.030189533,-0.009363131,0.00040779114,-0.027433097,-0.020859217,0.009499858,0.030627063,0.029795757,-0.0008449788,0.0128524285,-0.031370863,0.014121263,0.015762,0.0032595946,-0.03180839,-0.03237718,-0.007541914,0.042134088,0.031567752,0.0113538895,0.00620198,0.016855823,0.00008263496,-0.02493918,0.012393022,0.017162094,0.0050972183,-0.0086248,-0.023035927,0.030320792,-0.0038065063,-0.018102782,-0.0040115984,0.028111268,0.01619953,0.026908062,-0.025770485,0.018595003,0.06803583,-0.046859406,-0.017665252,0.018321546,-0.024239132,0.035636775,-0.028417539,-0.017162094,-0.018255917,0.013749364,0.042330977,0.012349269,0.018846583,-0.046159357,0.06514814,0.035374258,0.02239057,-0.024786044,0.016527675,-0.02015917,0.008575577,0.0046842997,0.011791419,0.01073041,0.009631118,-0.0008094295,-0.0056495992,0.008641207,0.0025294672,-0.010642904,0.017358981,-0.054122396,-0.036271192,-0.0148213105,-0.008356812,0.031480245,0.026514286,-0.0022190947,0.0032595946,0.03983706,-0.02437039,0.01314776,-0.00052674446,-0.0027454975,0.01500726,-0.0083185285,0.052022252,-0.017140217,-0.014733804,-0.012349269,0.027279962,0.0028302688,-0.015061952,-0.010845262,-0.01953569,0.04187157,-0.028592551,-0.031283356,0.026711173,-0.022839038,0.012928995,-0.016451107,0.00954908,-0.01642923,0.009784252,-0.031961527,0.0028630835,0.0016215936,0.010150684,0.039290145,0.014186893,0.023123432,-0.030670816,-0.0018964168,0.0009276992,-0.0363587,-0.010801509,-0.009631118,0.006874682,0.021537388,0.03810882,-0.007448939,-0.027936256,-0.015379161,0.02592362,0.010719472,0.0036861857,-0.016462047,-0.0037244696,-0.040427722,-0.0068199905,-0.026754927,-0.03423668,-0.024589157,-0.00918265,0.0089146625,-0.024304762,0.008006789,-0.018945025,-0.010331164,-0.007897407,0.01346497,0.00986629,0.023407826,-0.0027974541,-0.0037080622,0.024698539,0.0087341815,0.02517982,-0.0042659123,-0.000787553,-0.024545403,-0.0026402168,-0.013366525,0.04554682,0.014066572,0.022401508,0.0016885903,0.012622725,0.00030729608,0.02264215,0.023189062,-0.006119943,0.022357756,0.006119943,-0.015051014,-0.012250825,0.018584063,0.033230364,0.034017917,-0.0039350307,0.030998962,-0.009018576,0.019305987,0.012141443,0.0038092409,0.010495238,0.01754493,-0.004279585,-0.008165394,-0.0344992,-0.023604715,-0.031524,0.010741348,0.047471948,-0.029292598,-0.0044436585,-0.012644602,-0.017238662,0.025092315,0.016330788,-0.02382348,-0.004063555,-0.021504574,-0.015904196,-0.0075200377,-0.043840453,-0.034521073,-0.02865818,0.002122018,0.04979085,0.033033475,0.021012353,-0.013246205,0.0027113154,-0.004944083,0.013486845,-0.033317868,0.017577747,-0.014296276,0.0111187175,-0.018780952,0.022401508,-0.0209686,-0.0057699196,-0.035811786,0.0070496937,0.028198775,0.038415086,-0.026470533,-0.011129656,0.024085997,-0.04274663,-0.005999623,0.026470533,0.03113022,-0.04012145,-0.0075911363,0.019032532,0.011824233,-0.014482225,-0.0062293257,0.0007280764,0.02369222,-0.0077388026,-0.005135502,-0.011638284,0.009034984,0.05035964,0.0036643094,-0.018682508,0.037693165,-0.031370863,-0.025507968,0.019470062,-0.005335125,-0.020881094,0.0025349364,-0.031983405,-0.03239906,0.0071043847,-0.024436021,0.020323243,0.00077729847,0.003008015,-0.024917303,0.014744743,-0.012666478,-0.009335785,0.00043547855,0.011003866,0.01091636,-0.020760773,0.01432909,-0.037955683,-0.018759076,0.0036150871,0.026208015,-0.0024665724,-0.009467044,-0.024654785,0.04285601,0.015455728,-0.024392268,-0.028155021,-0.00028729963,-0.0014028288,-0.019437246,-0.0363587,0.016647996,-0.02649241,0.00064227957,-0.0124914665,0.02500481,0.0091498345,0.005726167,-0.0048292316,0.008159924,-0.012360208,-0.0033826497,-0.02605488,0.050140876,-0.0108124465,0.0064973123,-0.0031173974,0.01755587,0.009264686,-0.043840453,-0.0046432815,0.030255163,0.04882829,0.0025786893,-0.0056495992,0.012830552,0.037496276,-0.036511835,0.0034619519,-0.005638661,-0.02041075,0.029423857,0.024632908,-0.0022286656,0.038852617,-0.0045503066,0.030298915,-0.045415558,-0.0129071195,0.012764922,-0.014186893,0.0437967,-0.026842432,-0.03535238,-0.011933616,-0.005471853,-0.023035927,0.026754927,0.00887091,-0.0070551625,-0.02537671,0.024676662,-0.030189533,0.007809901,0.050840925,-0.018726261,-0.002860349,-0.00232711,0.011386705,0.006716077,-0.046246864,0.018955965,-0.026251769,0.01668081,0.035155494,0.023648467,-0.014088449,-0.018201226,0.021318624,-0.007547383,0.005091749,-0.014657238,-0.00980066,0.005422631,-0.015849505,0.003349835,-0.027826874,0.024436021,0.0017104668,-0.010407732,-0.0032103725,0.0318959,-0.045765582,-0.0155979255,-0.020093542,0.014066572,-0.005047996,-0.03064894,-0.042571615,-0.01817935,0.007448939,-0.030495804,0.010046771,-0.008411504,-0.007935691,0.000965983,0.026448656,-0.02612051,-0.0057535125,0.010489769,-0.0061308816,0.03565865,-0.011321075,0.0046296087,0.0022423386,-0.020990476,0.0020659594,-0.0052968413,0.008444319,-0.010314757,-0.030342668,0.0101124,0.003839321,-0.014066572,-0.025814239,-0.012939934,0.0124367755,-0.03535238,-0.03274908,-0.007935691,-0.021603018,-0.009937388,0.012939934,-0.02500481,0.023670344,-0.011211692,0.011627345,0.029861387,0.021307684,0.010134276,0.011791419,0.012480528,0.032355305,-0.012064875,-0.00017475542,0.01426346,0.012764922,0.023582838,0.010309288,0.010549929,0.005408958,-0.02369222,0.03027704,-0.033317868,-0.061954174,-0.010353041,0.03126148,-0.015838567,0.015663555,0.034192927,-0.0023776991,0.009417822,0.018890334,-0.00004606023,0.030320792,0.001882744,0.011342951,0.0035959452,0.0036807167,0.021657709,0.00035446722,0.012819613,-0.039399527,0.007891938,-0.007148138,0.010910891,0.006147289,0.0014602545,0.0025116927,-0.0023462519,-0.008783404,-0.020542009,-0.012743046,0.021592079,-0.010249128,-0.020815464,0.024020368,-0.0056605376,-0.017358981,0.0074708154,0.004235832,-0.015674492,-0.03808694,0.02636115,0.024764167,-0.02196398,0.006967657,0.01817935,0.016079208,-0.0074653467,-0.011386705,-0.0022532768,-0.017380858,-0.02084828,0.035921168,0.01843093,-0.0007848185]);
INSERT INTO entities (id, name, description, description_vec) VALUES (4, 'X Corp.', 'X Corp. is a company owned by Elon Musk, which was formed after he acquired Twitter and merged it into X Corp., rebranding the service as X.', [0.0036830537,-0.026161348,0.00007587322,0.048564848,0.039756633,0.028028307,0.014875826,0.033341955,0.034179695,0.0015468226,-0.019220095,-0.020548508,0.01676672,-0.01645556,-0.037363097,0.03312654,-0.025730513,-0.035926975,-0.03683652,-0.028722432,-0.014121862,0.028052242,0.01980651,0.013164449,-0.021434115,0.04131243,-0.05069509,0.052083343,-0.01893287,0.013140513,0.0071626566,-0.011303474,0.00080258254,0.027262375,-0.032982927,-0.020333089,0.020249315,0.06309361,0.04911536,0.06271064,0.009627999,-0.02625709,-0.0026777685,-0.004987531,-0.013571349,-0.014050056,-0.08430034,-0.012189082,0.02187692,0.041695397,-0.0058940826,-0.042437393,0.0043592276,0.03161861,-0.12130441,-0.05323224,-0.00328812,-0.0073002847,-0.016216207,0.02496458,-0.03666897,-0.02197266,0.015665693,0.0055470197,0.054285396,-0.0076114447,-0.00018278761,0.016467528,0.017688232,0.03267177,-0.0056637046,0.013786768,-0.0649127,0.018095132,0.022965979,-0.028028307,-0.011399215,0.006546321,0.03786574,-0.0279565,-0.005304674,0.013176416,-0.021841016,0.012147196,-0.01723346,-0.021170827,0.0009828458,0.0074798,0.004978555,-0.010723041,-0.018178906,0.023863554,-0.00822778,-0.006306967,0.023229267,0.015713563,-0.009251017,0.011548812,0.024725227,0.042221975,-0.02661612,0.0109743625,-0.04231772,0.0019312844,-0.0032492252,0.012236953,-0.031379256,-0.03700407,0.046123438,-0.015534049,0.0009274952,0.0049815467,0.020440798,0.011351344,-0.020859666,-0.06582224,-0.010543526,-0.039708763,-0.039445475,0.0068874,0.021015245,0.042724617,0.0054512783,0.02011767,0.027788954,-0.01882516,0.008556891,-0.011991615,-0.052179087,-0.03250422,0.03870348,-0.027118763,0.008233764,0.04205443,-0.007108802,-0.06280638,-0.015462243,-0.0334377,-0.040067792,-0.02666399,-0.018597774,-0.025395418,0.0053675044,-0.049450453,-0.03683652,-0.019686833,-0.008832148,-0.03152287,-0.07132737,0.008951825,-0.015103213,-0.026496444,-0.014421054,0.035974845,0.014301377,0.018166939,-0.014169733,0.067449845,-0.0029814483,-0.052179087,0.00928692,0.019471416,0.027836824,0.024007166,-0.00779096,0.026687928,0.008718455,0.008425247,-0.042078365,-0.031044163,-0.05103019,-0.009699805,-0.030326102,-0.016730817,-0.042174105,-0.010459753,-0.019363707,0.026233155,-0.06481696,-0.058689505,0.0009245033,-0.02790863,0.010603365,-0.014851891,-0.07362517,-0.058689505,-0.015905047,0.008718455,0.0028692514,-0.010729025,-0.0030996292,0.018561872,0.034131825,0.021649534,-0.022056434,-0.00913134,0.028076177,-0.0145048285,-0.021781178,0.028985722,-0.0069173193,0.06984338,0.022726625,0.051221672,-0.036908325,-0.018035294,0.017891683,0.04274855,-0.010842718,-0.029440492,0.058067184,-0.06266277,-0.0125899995,0.032097317,-0.041910816,-0.0662052,-0.016228175,-0.01656327,-0.0022229967,0.03930186,-0.0017113782,0.047128726,0.018226776,0.0058492036,-0.05323224,0.043059714,0.008880018,-0.012984933,0.022559077,-0.027477793,0.006277048,0.032097317,-0.025156064,-0.07419962,-0.014397119,-0.049019616,0.020680152,0.0060436786,0.02099131,0.0027660301,-0.050455738,-0.028100112,0.01090854,0.04456764,0.027645342,0.008909938,-0.019890284,-0.06812003,-0.0342515,0.008239748,0.033605248,0.056918286,0.011309458,0.034131825,0.026400702,-0.025993802,-0.01656327,-0.0009476907,-0.0145287635,-0.03956515,0.020093735,-0.022822365,-0.016647043,-0.035424333,-0.010387946,-0.0032013545,0.0013224287,-0.017006073,-0.0070549473,0.014600569,-0.022618916,-0.009161259,-0.030134618,-0.035472203,-0.025395418,0.010010964,-0.027836824,0.019531254,-0.05442901,0.035879105,0.04389745,0.021087052,-0.018119067,-0.019638963,-0.04265281,-0.0047302255,0.022463337,0.02357633,-0.022295788,0.009771611,0.034945626,0.015246824,0.0145287635,-0.0031295484,0.020440798,-0.02585019,0.025156064,-0.011566763,0.0069352705,-0.02337288,0.018657614,0.067641325,-0.030110683,-0.013248222,-0.034754142,0.0468415,0.014361216,0.017580522,0.022618916,-0.00093347905,-0.00134786,-0.032264866,-0.006857481,-0.036501426,-0.0021870935,0.018944837,-0.009663901,-0.003736908,-0.0009985534,-0.04674576,0.0047451854,-0.057444863,-0.04121669,-0.049450453,-0.022319723,0.0025491158,0.013547414,0.018226776,-0.010699106,-0.008467134,0.026089543,0.017149685,0.054237526,-0.017149685,0.012266872,-0.022822365,0.004308365,-0.033844598,0.011447086,-0.031379256,-0.022451367,-0.03870348,0.0037488758,-0.019830447,0.01748478,0.029201139,-0.035400398,-0.0029365695,-0.020668184,0.0322888,-0.049546197,-0.0401396,0.009771611,-0.060604334,-0.014732215,0.012697709,-0.016419657,0.0025550998,0.06481696,0.010561477,-0.0024608541,0.018047262,0.07740696,0.032145187,0.0044818963,-0.005825268,-0.058258668,0.033341955,0.0015228873,-0.024414068,0.023253202,-0.0034646434,0.046937242,-0.0045148074,0.02017751,-0.00053592765,0.043011844,0.049019616,-0.00048095116,0.0055829226,0.07022635,-0.013331995,-0.022726625,0.02017751,-0.008263683,0.028076177,0.0038775285,0.0028617715,-0.00920913,-0.017101815,0.017855778,-0.0008878523,0.003742892,-0.04818188,-0.061801102,-0.004936668,0.021182794,0.025132129,-0.00037006312,0.038559865,-0.014576634,0.003593296,-0.03358131,0.0005729527,-0.01882516,-0.020716054,-0.025395418,-0.0016021732,-0.051987603,-0.00078911893,0.03827264,-0.014600569,0.008155974,0.015438307,0.033653118,0.02197266,0.022403497,-0.0318819,0.029272946,0.07673676,-0.0080901515,0.0014862362,0.038200837,0.03492169,0.014863859,0.0018041278,-0.03678865,-0.037746064,0.0011324417,-0.022583012,0.02496458,-0.0063787736,0.003967286,-0.026137413,-0.024258487,-0.044591576,0.030326102,0.02759747,-0.038511995,-0.0114590535,-0.018597774,0.08573646,0.058689505,-0.03750671,0.00070609315,-0.009873336,-0.019387642,0.015641758,-0.04104914,0.004520791,-0.0037758031,0.033868536,0.040426824,0.048038267,-0.011584714,-0.048110075,0.0018654622,0.008425247,0.00077939517,0.04554899,-0.05260992,-0.009627999,0.020919506,-0.0025147088,0.030900551,-0.010507623,-0.023468621,-0.0003332251,0.051221672,0.02249924,0.0046464517,0.023887489,0.016778687,-0.0059658885,0.0090355985,0.03140319,0.050934445,-0.0200698,0.0279565,-0.029225076,-0.024438003,0.005535052,0.011052153,0.038775284,-0.017520683,-0.00059576606,-0.02233169,0.028746368,-0.054046042,0.047703173,0.030014941,0.0056666965,0.014720246,-0.011123959,0.03482595,-0.021278536,-0.013343964,-0.033509504,-0.0067617395,-0.0342515,-0.015988821,0.021481985,-0.017568555,0.018681549,-0.025874125,0.04657821,0.027166635,0.022559077,0.00024477646,0.024868838,0.01204547,0.028842108,0.021434115,-0.0015438307,-0.052226957,0.0080901515,0.007850798,0.035472203,-0.005086264,-0.01584521,0.017221492,-0.008401312,-0.03559188,0.017257394,-0.0062949997,0.033653118,-0.022128241,-0.0050772885,-0.08238551,0.011536844,-0.008880018,-0.04363416,0.009765627,-0.0598384,-0.009436516,-0.029895265,-0.007407994,-0.0039014637,-0.027765019,-0.0055111167,-0.006073598,-0.006594192,0.018178906,-0.008736406,-0.003892488,0.029225076,-0.019567156,-0.0077311215,-0.0028737392,0.037171613,0.03554401,0.036980134,0.02585019,-0.025060322,-0.021326406,0.022654818,-0.02042883,0.014768117,0.026113478,0.00822778,-0.033198345,0.014576634,0.010226383,0.022259885,0.026161348,-0.02817192,-0.025084257,0.032432415,-0.052897148,-0.0017487772,0.009586112,-0.046602145,-0.0015647742,-0.03930186,0.031331386,0.018178906,-0.014361216,0.0064326283,0.0078029274,-0.017377071,0.0027660301,-0.0036920293,0.030709067,0.015103213,-0.027621405,0.004873838,-0.04571654,0.022475304,0.018502034,0.025682641,0.03394034,-0.01764036,-0.011692423,-0.017209524,0.035567947,0.016323917,0.020979343,-0.030469714,-0.0061513875,-0.0041767205,0.0010823271,0.012195066,-0.015510114,0.0016186287,-0.015294695,0.0049097408,0.00590605,-0.021386245,0.032360606,-0.0047810883,-0.0027121755,0.0022259885,0.00013173798,0.03559188,-0.0030397908,0.04518996,0.022044467,-0.016347852,-0.00897576,0.012470323,0.009274952,-0.008658617,-0.04983342,0.019339772,0.015821273,0.008329505,0.018023327,-0.005119175,-0.012458355,0.04203049,0.029272946,0.03920612,0.018956805,0.02719057,-0.032001577,-0.035448268,-0.024533745,0.03772213,0.016395722,-0.015761435,-0.0033659101,-0.020847699,-0.017724134,0.057396993,0.0035394414,-0.00830557,-0.0005538792,-0.0023142502,0.0118958745,0.0100049805,0.028507015,0.0151510835,0.038727414,-0.0036591182,0.0066121435,-0.018166939,-0.011782181,0.018645646,0.019519286,0.047009047,-0.002694224,-0.00062231935,-0.0046195243,-0.008012362,-0.017783973,0.043442678,-0.013056739,-0.023875521,-0.021242632,0.049498323,-0.028985722,0.034610532,-0.008000394,-0.0068993676,0.033341955,-0.014169733,-0.017508715,-0.03978057,0.07051357,0.006803626,0.0013665595,0.00247731,0.0027136714,0.014181701,0.023277137,-0.052705664,-0.039110377,-0.020787861,-0.018023327,-0.018143004,-0.0053316015,0.007342172,0.045070283,-0.030086748,0.003186395,-0.09784775,0.0050832722,0.012446388,-0.038966767,-0.01227884,0.044376157,0.028650627,-0.008467134,0.0064206603,-0.029392622,-0.00889797,-0.025634771,0.011321425,0.010968379,-0.009550209,0.00040278723,-0.01712575,0.006097533,0.012326711,0.012027519,0.02415078,-0.008921905,-0.06443399,0.031642545,-0.019303868,0.018801225,-0.029967071,-0.032360606,-0.04638673,0.002885707,0.0078029274,0.011794149,0.012925095,-0.0068694483,0.029201139,-0.039445475,-0.033365894,-0.033150475,-0.0401396,-0.026975151,0.02449784,0.012362613,-0.008688536,-0.033844598,-0.006241145,-0.023348944,-0.02161363,-0.008814196,-0.01157873,0.024485873,-0.00704298,0.042126235,0.032145187,0.00060137594,0.03327015,-0.0021556783,0.008173926,0.0070489636,0.02332501,-0.043514486,-0.011782181,-0.014552699,0.00082203,0.0149596,0.020620313,-0.020811796,-0.01837039,-0.039134312,0.055003457,0.0052986904,-0.00665403,-0.004368203,-0.0275496,0.006893384,-0.009657918,0.0041108984,0.01701804,-0.017688232,-0.025562964,-0.005340577,0.027453858,-0.029320816,0.030876614,0.008461149,-0.008185893,-0.021290503,-0.0034706274,-0.0080901515,-0.04533357,-0.04518996,-0.014349248,0.03930186,0.00225142,-0.01723346,-0.024892775,-0.0154742105,0.0011114983,-0.0025236846,-0.016156368,0.027501728,-0.012769515,-0.014456958,-0.06160962,-0.0013912428,0.03161861,-0.02444997,0.006211226,0.005720551,0.005104216,0.033294085,-0.019327803,-0.014409087,-0.00047721126,-0.037889674,-0.010884605,-0.031810094,0.01274558,-0.023803717,-0.025084257,-0.008024329,-0.0148040205,0.006995109,-0.0331026,0.01294903,-0.0029365695,0.040809788,0.036309943,0.01583324,-0.038129028,0.016814591,0.000111823014,0.024162747,0.030493649,0.008323521,0.05371095,0.010956411,0.013008868,-0.009825465,-0.016108498,-0.01656327,0.014121862,-0.038918898,-0.007491768,-0.06328509,-0.039804503,0.02527574,-0.0067557553,-0.012422452,-0.022702688,0.016599173,0.015689628,-0.019555189,-0.022427432,-0.019591093,0.016886396,0.040043857,-0.02094344,0.020392926,-0.012518194,-0.0026463533,0.029679846,-0.0044818963,0.012901159,-0.0018205834,0.014157766,-0.018968772,-0.009639966,0.018813193,-0.02666399,0.02275056,-0.026448574,0.008024329,0.026855474,0.0007453621,0.006277048,0.0015543024,0.057636347,-0.03554401,0.014887794,0.015797338,0.02063228,-0.028602755,-0.011477006,0.019387642,0.036381748,-0.010447784,-0.012398517,0.02666399,-0.010501639,-0.0017502733,0.010160561,-0.040761918,0.04107308,0.000052218355,0.019459449,0.0024937654,0.070896536,0.042485263,-0.03233667,-0.03281538,-0.019926187,0.03173829,0.06318935,-0.020081768,-0.024294391,0.03327015,-0.04411287,0.0072165113,-0.024653422,0.0061454037,0.006701901,-0.022606948,-0.016730817,0.002801933,0.00031658253,0.02987133,-0.019555189,-0.029153269,0.014612538,-0.01801136,-0.021314438,0.012578032,0.010723041,0.024653422,-0.008520988,-0.05103019,-0.007378075,-0.040666178,-0.008203845,0.01965093,0.002920114,-0.009143308,0.0033898454,0.037793934,-0.0128891915,0.030350037,-0.002245436,0.045740474,-0.02223595,0.0047661285,-0.00053181377,0.025610836,-0.019746672,-0.046506405,0.043658096,0.0012064917,-0.01279345,-0.021829048,-0.008868051,0.047272336,-0.006504434,-0.0024563663,0.014863859,0.02817192,-0.018454162,-0.04147998,0.00048057715,-0.010800831,-0.030924486,0.00791662,-0.0072763497,-0.0075396383,0.050359998,0.01589308,0.006289016,0.00397327,-0.0063488544,0.010902557,-0.039062507,0.020931473,-0.004042084,-0.031020228,-0.01784381,0.0093108555,0.009735708,0.0055829226,-0.00425451,0.009077486,-0.0200698,0.017065912,-0.0008384856,0.01609653,0.016264077,0.027573535,-0.03501743,0.034634467,0.013882509,-0.0161444,0.0055559957,-0.00201805,-0.030900551,-0.016910331,-0.041240625,-0.013750864,0.00032275336,0.0015453267,-0.03568762,-0.013511511,0.02449784,-0.030326102,0.009466435,0.0023082662,0.0094425,-0.014624505,0.03853593,0.026281025,0.037363097,0.002279843,-0.017137717,0.016922299,-0.021230664,0.018633679,-0.014050056,-0.02016554,-0.022965979,0.032169126,-0.030756937,-0.033772793,-0.011393231,0.016694915,0.022164144,0.0045297667,-0.012925095,-0.014181701,0.02120673,0.025706576,0.0007378823,0.030158553,-0.03408395,0.0031654513,-0.019076481,-0.0040301164,0.003668094,0.006857481,0.037075873,0.011339377,0.01913632,-0.02161363,-0.0015438307,-0.045022413,0.008491069,0.02888998,-0.0054871812,0.018178906,-0.023815684,-0.0157375,-0.02853095,0.0023696006,0.01913632,-0.01090854,0.033724923,-0.014839923,0.018214809,-0.00008120258,-0.00441009,0.03063726,0.017305266,0.023277137,-0.007336188,0.01629998,-0.021087052,-0.0067557553,-0.013140513,0.04638673,0.01629998,-0.029631976,-0.014121862,-0.0056337854,-0.0062830322,0.00493966,-0.0070130606,-0.016335884,-0.016431624,-0.013236254,0.010729025,0.027741082,0.005385456,0.009550209,-0.009783578,0.025299676,0.009837433,0.04349055,-0.01960306,0.010064819,-0.06553502,0.04796646,0.017149685,0.0028168927,-0.016431624,-0.01764036,0.023037784,-0.035879105,0.003590304,0.01397825,-0.011129943,0.012721644,-0.007102818,0.013714962,0.028267661,-0.034442984,0.0036770697,0.016000789,-0.00050787843,0.0020793844,-0.021864953,-0.004532759,0.02549116,0.013894477,-0.009837433,-0.018789258,0.0010733514,0.01093846,-0.04183901,-0.00592101,-0.007509719,-0.0052328683,0.024342261,0.025658706,0.029751653,-0.011728327,0.0093347905,0.026520379,0.046937242,-0.00967587,0.05629597,-0.014133831,-0.00905355,-0.008634681,0.015557984,0.01801136,0.013116578,0.002246932,-0.008868051,-0.008688536,0.0052179084,-0.0002883463,-0.01031614,0.015414372,-0.0054512783,0.0011675968,-0.028722432,0.012685741,0.007970475,0.0034676353,-0.0050653205,-0.00083998154,-0.0074678324,0.0042305747,-0.0053286096,-0.031379256,0.022618916,-0.00606163,0.06357232,-0.013882509,0.0037578517,0.0060825734,0.00763538,0.030254295,-0.029991006,0.012422452,-0.02073999,0.002504237,0.0010785871,0.00039119355,0.0042455345,-0.024653422,0.0041617607,-0.0053764805,-0.019315835,-0.006839529,-0.027501728,-0.0151510835,-0.00568764,-0.022511207,0.026759733,0.024749162,-0.014145798,0.008933873,-0.014863859,0.0014824964,-0.0044968557,-0.027812889,-0.011058137,0.029416557,-0.017927585,0.0106273,0.010615332,-0.007659315,-0.030158553,-0.018597774,0.035113174,-0.02279843,-0.015414372,-0.041791137,0.011195765,-0.011004282,-0.030350037,-0.027525665,-0.02027325,-0.020045863,-0.040570434,-0.034179695,-0.009831449,-0.013487576,0.00057744054,0.010699106,-0.00080183457,-0.0023860561,0.004239551,0.03183403,0.009891287,0.010842718,0.02893785,0.015079277,0.0039074477,0.0029739686,0.016910331,-0.02373191,0.021039182,0.001684451,0.051365282,0.024162747,0.0200698,-0.0020629289,0.018717451,-0.013008868,-0.04550112,-0.0011197261,0.007443897,0.017269362,0.015905047,0.01263787,-0.0138346385,-0.015641758,0.041503914,0.038152963,-0.009107404,0.022738593,-0.03317441,0.024162747,0.0080901515,0.0033180392,0.0062650805,0.020644248,0.037889674,-0.014851891,-0.023743877,-0.009837433,-0.016994106,-0.0025147088,0.0056966157,-0.022882205,0.0075336546,0.015905047,0.008933873,0.031331386,-0.008048265,-0.042581007,-0.036142394,0.01841826,-0.025203934,0.0014473413,-0.021242632,-0.020548508,-0.0061932746,-0.015964886,0.05323224,0.0020090742,0.002619426,0.008515004,-0.009580128,-0.002510221,0.0048169913,-0.03276751,0.0006204494,-0.022738593,-0.014181701,-0.009316839,0.016180303,-0.036501426,0.03700407,-0.036956195,0.013032803,0.06807216,0.038152963,-0.055625778,-0.0068335454,-0.013726929,-0.03125958,0.0024578623,0.039230056,0.0015041878,-0.0020345056,0.06256703,0.010214415,-0.004787072,0.025467223,0.003180411,0.013068707,-0.0104657365,0.0106273,-0.011692423,0.032791443,0.014983536,0.004673379,-0.014624505,-0.006558289,0.023121558,-0.03595091,-0.016599173,0.024820969,0.01913632,-0.022307755,-0.022367595,-0.010477704,-0.044136804,0.011321425,-0.012386549,-0.04121669,0.012446388,-0.021087052,-0.0057654297,-0.013798735,-0.0058791228,-0.0083414735,0.00732422,-0.011267571,-0.02683154,-0.009233065,0.020237347,-0.00045028396,0.018166939,-0.0033329988,0.012195066,-0.008335489,0.012177114,-0.014971568,0.015198953,-0.015198953,-0.004042084,-0.03389247,-0.014205636,0.019088449,0.010962395,-0.04566867,0.027765019,-0.009418564,0.015258792,-0.0046195243,0.006671982,0.0014510812,0.014660408,0.0013725433,0.011548812,-0.018382357,-0.017676264,-0.03152287,-0.0100349,-0.024330294,-0.0070848665,0.008999695,0.023827652,0.03183403,-0.04104914,0.017616425,0.013188384,0.016958203,0.008927889,-0.009041582,0.024844903,0.02135034,-0.022547109,-0.004493864,-0.022367595,-0.011058137,-0.019100418,0.0014458454,-0.008915922,-0.00755759,-0.00011500192,0.014014154,0.0037249404,-0.011554795,0.023899456,-0.0037010051,0.026281025,-0.011309458,-0.0020883603,-0.0066420627,-0.048038267,-0.021733306,-0.000084521744,0.041910816,-0.020153573,-0.0061932746,-0.00531365,0.007521687,-0.00021541824,0.031594675,-0.004484888,0.008144006,-0.03353344,0.059168212,0.0036950212,-0.038559865,0.02249924,-0.036645036,-0.010028916,-0.010519591,0.0077371052,0.027980436,-0.0039044556,-0.0031205725,-0.0060107675,0.018801225,-0.02589806,-0.01971077,0.031451065,0.034275435,0.0051520863,-0.020033896,0.048828136,-0.04473519,-0.0085509075,-0.008084168,0.028243724,-0.028722432,-0.0016724833,-0.03245635,0.02449784,0.0061813067,-0.04147998,-0.048876006,0.026137413,-0.02687941,-0.004484888,0.011189781,-0.008138022,0.016216207,0.008610746,0.014325313,-0.043299068,-0.0011182302,-0.0020404896,-0.0061633554,0.013894477,-0.018119067,-0.002770518,0.010154577,-0.006318935,0.004532759,0.013942348,0.03841625,-0.03173829,0.006707885,0.0010142609,0.0036022717,-0.004404106,0.008592795,0.011482989,-0.023336977,-0.026352832,-0.0101665445,-0.05576939,-0.0052119247,-0.014624505,0.017867746,0.0053345934,0.039924182,-0.0005138623,-0.005439311,0.02377978,0.028100112,0.03946941,-0.0066300947,0.031642545,0.036286008,0.01841826,0.008957809,-0.0050772885,0.01168644,0.007294301,0.005541036,0.009257001,-0.0004607557,-0.003853593,-0.007330204,-0.027118763,-0.032743573,-0.018382357,0.0020030905,-0.01728133,0.011070104,-0.009514306,0.0080422815,0.0483973,-0.0012775499,0.020728022,0.050216384,0.014277442,0.006671982,-0.02145805,0.009406596,-0.011602666,-0.011638569,0.030661197,0.020452766,-0.015390437,0.0029395614,0.0236242,-0.0038386334,0.007485784,0.003853593,-0.0014780085,0.019172223,-0.0042874212,-0.011877922,0.01764036,0.0031175807,-0.026927281,-0.0016784671,-0.00028666333,0.0055679632,-0.0015378469,0.033413764,0.0039852373,0.029847395,0.015605855,0.0059987996,0.056631062,-0.020847699,-0.031475,0.037674256,0.0055320603,0.006510418,-0.010477704,-0.0044729207,0.005974864,0.01645556,0.002552108,0.021302471]);
INSERT INTO entities (id, name, description, description_vec) VALUES (5, 'The Boring Company', 'The Boring Company is a tunnel construction company founded by Elon Musk.', [-0.011632808,-0.027880965,0.010051076,0.029840423,-0.039401636,-0.008492953,0.0024670286,0.026133979,-0.007300752,0.0014430347,-0.067424245,-0.013503736,0.020137563,-0.04299004,0.015380566,0.020916626,-0.04173882,-0.05420381,-0.006356435,-0.046743702,0.037513,0.0046478114,0.0008764444,0.023584321,-0.011148845,0.0066751423,-0.014778564,0.04058203,0.00076652,0.0028344272,0.0012858944,-0.024929974,-0.030265367,-0.0011936759,-0.013043381,0.039472457,0.02161306,0.02125894,0.07955872,0.018048262,-0.05519534,-0.048301823,-0.025260486,0.008250971,-0.018744696,0.0148375835,-0.059208687,0.00022851738,0.03475087,0.015840922,-0.023714166,-0.022203257,-0.026322842,-0.0055360594,-0.02274624,-0.048112962,0.020586114,-0.027574062,-0.05439267,0.016088804,-0.009354643,0.02670057,-0.016100608,-0.009218897,0.025756251,0.0048130667,-0.040959757,0.057178408,0.002855084,0.04728668,0.014070326,0.014117542,-0.00967335,-0.00046920762,0.041195836,-0.027432414,0.022073414,-0.027314374,0.008433933,-0.05165415,-0.01619504,-0.01143214,0.018178105,-0.0088824835,-0.028943323,-0.0072122226,-0.011467552,-0.02736159,-0.013539148,-0.033051103,-0.00045408378,-0.01687967,0.016856061,0.049198925,0.030548662,-0.015014644,-0.01762332,0.020361839,0.04183325,0.05174858,0.000051550127,0.039921008,0.01854403,-0.035884053,0.044902284,0.012795498,0.0022220963,-0.04254149,-0.040157087,-0.022167847,-0.012724674,0.018839128,0.04766441,0.028211476,0.028683634,-0.008439835,0.017186573,0.02601594,-0.020940233,-0.004948812,0.020491684,-0.014034914,-0.0027547502,0.0404876,-0.0018679774,-0.00045851027,0.04901006,-0.023395458,-0.015557625,-0.029203009,-0.038669787,-0.011036707,0.029297441,0.017764967,-0.007176811,-0.0028359026,-0.101419665,-0.010989491,0.028825283,0.015250723,-0.03090278,-0.038622573,0.06142783,0.009950742,0.005046195,0.009980252,-0.01628947,-0.01294895,0.001099982,-0.034160674,0.005108166,-0.008793954,0.01922866,0.032460902,0.0073656742,-0.019393913,-0.016572766,0.08149458,0.0122171035,-0.052692898,-0.005397363,-0.0092779165,0.010287155,0.015899941,0.033003885,0.029061362,0.026133979,-0.012701066,-0.03338161,-0.03637982,0.0058695218,0.011355414,-0.04561052,-0.021400588,-0.041667998,0.018827325,-0.035529934,-0.030076502,0.002527524,-0.038858652,-0.011591493,0.022191454,0.028494772,0.02896693,-0.045209184,0.018862735,-0.030737525,0.0045415754,-0.0029967315,-0.039921008,-0.062183287,0.05019046,0.021601256,0.045941032,-0.046106286,-0.0018915854,-0.016100608,-0.019027991,0.067943625,-0.0010335847,0.012996165,0.0044884575,0.01482578,0.034137066,-0.029368265,-0.009148072,0.06123897,0.023891225,0.038787827,-0.016301276,0.023796793,-0.010298959,0.009460878,0.03418428,0.013114205,-0.008740836,-0.041573565,-0.0095435055,0.017186573,0.013326677,0.046814524,0.028093437,-0.029887639,0.07058771,0.018673873,0.04995438,-0.04480785,-0.033924595,0.030123718,0.0037920238,0.0035146305,0.0011693303,-0.008109324,-0.055714715,-0.013066989,-0.025732644,0.032933064,-0.05198466,0.044737026,0.006185278,-0.014223778,-0.018626656,-0.0089297,0.008363109,0.024575856,0.012512202,-0.00248621,-0.009000523,-0.021660276,0.027644886,0.0202438,0.03135133,-0.01842599,0.046129894,-0.0037448078,-0.0175643,-0.05019046,-0.013550952,0.058122724,-0.10311944,0.000110293295,0.02566182,-0.015663862,-0.013385696,-0.027833749,-0.032366473,0.026181195,-0.011272786,0.048396256,0.029722383,0.017281005,-0.029321048,0.0037625139,-0.030005679,0.0066161226,0.02953352,-0.022533769,0.01950015,-0.03399542,0.030831957,0.01271287,0.0336413,-0.0053530983,-0.00008410325,-0.017399045,0.016749825,0.0034674148,0.050001595,-0.024457816,0.012453183,0.0351286,-0.0016687856,-0.006397749,0.02622841,0.005692462,-0.026275625,0.028541988,-0.07058771,0.035199422,-0.004134339,0.012417771,0.005096362,0.05165415,0.03944885,0.009933037,0.042966433,-0.049907163,0.008693621,0.0024242392,-0.019476542,-0.0129843615,-0.0006912697,-0.006999751,-0.016100608,0.018272538,-0.050804265,-0.03833928,-0.021872748,-0.013905071,-0.06751868,0.015463194,-0.024221735,-0.04195129,0.002536377,0.01271287,-0.017434455,0.094478935,0.023879422,-0.054298237,-0.027668493,0.009667447,-0.0058901785,-0.022108827,-0.06671601,-0.035317462,-0.006061336,0.0175643,-0.002191111,0.0018325655,-0.036261782,-0.024929974,0.026440881,0.011426238,0.02137698,0.01869748,0.043273337,0.009077249,-0.01721018,-0.008398521,0.062419366,-0.056517385,-0.046696484,0.030147327,-0.046365973,-0.013798835,0.021719296,-0.032437295,0.009502192,0.04006266,0.008286383,-0.0049547143,0.0043084472,0.027078295,0.07913378,0.020420859,-0.009449074,-0.008610993,0.039307203,0.016466532,-0.0063151214,0.016171431,0.0398974,0.05245682,-0.03982658,0.023973852,0.013173224,0.056139655,0.00084324577,-0.014849388,-0.01294895,0.074978784,0.00075988023,-0.0023150526,-0.03239008,-0.032201216,0.009803193,0.043603845,0.0028477064,-0.026157586,-0.075734235,0.0369228,-0.03468005,0.035506327,-0.005010783,-0.043745495,0.03937803,0.039496068,-0.027999004,0.01345652,0.024811935,0.016053392,-0.0443593,-0.022580985,-0.007466008,0.017646927,-0.013846051,0.039590497,-0.021589452,-0.024339776,0.05873653,0.032012355,-0.02304134,0.021742903,-0.0027665542,0.05019046,-0.011396728,0.011302296,0.012488595,0.0026573676,0.008386717,0.014259189,0.017989242,0.0027503239,0.01408213,0.01294895,0.029250225,0.011933808,0.030690309,0.02081039,-0.020975646,0.03640343,-0.011798063,-0.03354687,0.0026470392,-0.038787827,-0.055903576,0.014424445,0.009460878,-0.08678275,0.023997461,-0.028093437,0.0016259962,0.010948177,-0.019842464,-0.0014386083,0.024268951,-0.02518966,0.014507073,-0.056847896,-0.02747963,0.0138578545,-0.028235083,-0.0029908295,0.009419564,-0.003349375,0.050709832,-0.017906616,-0.025236877,-0.042683136,-0.033712123,-0.021223528,-0.005739678,0.00440583,-0.024599463,0.0006034777,0.0049104495,-0.07478992,0.032885846,0.014743152,-0.008333599,-0.0038008767,0.010582254,0.01709214,0.000842508,-0.01068849,0.016501943,-0.02670057,-0.016029784,-0.017965635,-0.03673394,0.00027020014,0.034703657,-0.0068167895,-0.003927769,0.025402132,0.01149116,-0.024741111,0.0070056533,-0.08848252,-0.01914603,0.04391075,0.00076135574,-0.0045828894,-0.010434705,0.0025201465,-0.038858652,-0.055242557,-0.025850683,0.008132932,-0.00818605,0.001836992,-0.014967428,0.0024257149,-0.00047510958,-0.024599463,0.0005717545,-0.016088804,0.0037241508,0.03375934,0.015616646,-0.037135273,0.0199487,0.013633579,0.00019900747,0.005733776,0.015947158,0.039236378,0.023985656,0.020550704,-0.021825531,0.015439586,-0.03682837,-0.02360793,0.007867343,-0.027668493,-0.008504757,-0.032460902,-0.013326677,-0.048183784,0.014270994,0.006710554,-0.023926636,0.020468075,-0.0014371327,-0.0026721226,-0.01157969,-0.023230202,-0.023572518,-0.023064947,-0.029203009,-0.00425828,0.03331079,0.047310293,0.0075545376,0.011904298,0.06969061,-0.0048396257,-0.04752276,0.0018281391,0.025638212,0.05316506,0.061663914,0.03486891,-0.017269202,0.013916874,0.021908158,0.006090846,-0.009136269,-0.010139606,-0.018083675,-0.015085467,0.008239168,0.02587429,0.042022116,0.06600777,0.0022840672,-0.0029937807,-0.009024131,-0.024788326,-0.012358751,-0.044500947,-0.016867867,0.0039307205,-0.020881213,0.038953084,0.026181195,-0.020881213,0.0008520987,-0.006037728,0.01574649,0.011467552,-0.016915081,-0.000013809717,-0.042683136,-0.038268454,0.017646927,0.021388784,0.009927134,-0.009502192,0.011544278,-0.012901734,-0.0028963978,0.033971813,-0.031658232,-0.007991284,-0.019618189,0.007808323,-0.001178921,-0.016714415,0.03463283,0.0072240266,-0.031634625,0.0059432965,0.030548662,-0.028754458,-0.0031250997,0.028518379,0.0024242392,0.054817613,0.011998731,0.0015551724,-0.00085062324,0.040275127,-0.005249813,0.0045445263,0.022545572,-0.027574062,-0.029439088,0.0023563665,0.017906616,0.030619485,0.004948812,-0.031870704,0.0136453835,0.010228136,0.020090349,0.00023183724,0.0012969606,-0.046484012,0.040086266,0.039189164,-0.00815654,0.019547366,0.0007790617,-0.04561052,0.020468075,0.007052869,0.01840238,0.012441379,0.0045415754,0.005317686,-0.011939711,0.026204802,0.007885048,-0.053542785,-0.014164758,-0.0042258194,0.002405058,-0.0153923705,-0.0052232547,-0.020763174,0.007944068,0.05665903,-0.0075722435,0.008333599,0.028636418,-0.025921507,-0.015498606,-0.0021070077,0.029368265,0.011013099,0.008203756,-0.041195836,0.015545822,-0.016159628,0.020078544,0.01860305,0.018732892,0.009513996,0.039472457,-0.02149502,-0.012925342,-0.012335143,0.005361951,0.021093685,-0.021577647,-0.023135772,-0.043745495,0.016950494,-0.029722383,0.01783579,0.004984224,-0.009785487,0.00015566479,-0.0026234312,-0.019700818,-0.020550704,0.038929477,0.014247386,0.010422901,-0.0063151214,0.01682065,0.03182349,-0.023017732,0.0028418046,-0.013728011,0.03366491,0.010434705,0.0009199715,-0.049529437,0.022049807,0.014872996,-0.007477812,-0.015829116,0.008386717,0.007997186,-0.05325949,0.008286383,-0.011172453,0.022439336,-0.028872497,-0.004706831,-0.005816404,0.014778564,0.051040344,0.030383406,0.02167208,0.021282548,0.0007122955,-0.017434455,0.010175018,0.0010011238,0.017576104,-0.03715888,-0.014507073,0.0065807104,-0.010027468,0.030194541,-0.022167847,0.024811935,0.03843371,0.0048042135,-0.030123718,-0.0046123993,-0.024316167,0.013586364,-0.011302296,0.0217311,-0.011674121,0.0038126807,-0.007477812,-0.0011361316,0.00017254076,-0.027951788,0.033570476,-0.026865825,0.043769103,0.025000798,-0.007100085,0.0090123275,-0.023088556,0.007342066,0.0041254857,-0.0055095004,0.005037342,-0.019547366,0.023277419,0.016360296,0.053306706,0.013657187,-0.034939736,0.016891474,-0.031681843,0.014046718,0.011331806,-0.0151562905,-0.006374141,0.0048838905,0.03897669,-0.014920211,0.022710828,0.0056836093,0.001685016,-0.01068849,0.04849069,-0.008982818,0.0125358105,0.028471163,0.0072712423,-0.003942524,-0.011927906,-0.007165007,0.0065216906,0.019181443,0.020397251,0.02840034,-0.015899941,0.03463283,-0.024245344,0.023950245,-0.016029784,0.026889432,0.0006049532,-0.018331558,0.041691605,-0.017269202,0.020231996,-0.03921277,-0.0054504806,0.011839377,0.03475087,0.011774455,-0.022392122,0.005713119,0.034514792,-0.0072712423,0.00029952562,0.004476654,-0.016832454,-0.016856061,-0.015793705,-0.00887068,0.021860942,0.0011095727,0.0015876333,0.00101219,-0.0071827127,0.012346948,0.0018561735,0.0068699075,-0.013444716,-0.011916103,-0.033971813,-0.01152067,0.019629994,-0.0049517634,-0.00081816234,-0.023112163,0.0077788127,0.0074601057,-0.0061380616,-0.034963343,0.0034851206,0.014093935,0.02497719,-0.0029465647,-0.0020952038,-0.00809752,-0.03772547,0.019429326,-0.025354916,-0.010594059,-0.008109324,0.049435005,-0.016667198,0.00500193,-0.004453046,-0.019877877,-0.05085148,0.010771118,-0.00095095695,-0.0065925145,0.006793182,-0.0008786576,-0.02667696,0.016584571,-0.017823987,0.030005679,-0.014365425,-0.012417771,-0.011131139,-0.023997461,0.022144238,0.021081882,0.005727874,0.015864529,0.038835045,-0.0126656545,0.04664927,0.0136453835,0.02873085,0.03283863,-0.03560076,-0.017658731,0.0002899349,0.0517958,-0.004627154,0.010015665,0.019488346,0.0131968325,0.008410325,0.012346948,0.0105232345,0.02884889,-0.008292286,-0.015286135,-0.030265367,0.06350533,-0.010942276,0.02667696,-0.023501694,0.017021317,0.04275396,0.00028145078,0.0059137866,-0.007300752,-0.015545822,0.053637218,0.021589452,-0.035529934,0.013480128,-0.02518966,0.0007657822,-0.009856311,-0.022970516,-0.0029229568,-0.019748034,-0.021884551,0.02896693,0.05212631,0.002878692,-0.027951788,-0.00961433,-0.0034467578,-0.009112661,-0.007495518,0.016265864,0.009632035,0.014152954,-0.05325949,-0.047994923,-0.027621279,-0.052976195,0.027668493,0.011278689,-0.029179402,-0.010877354,0.0095435055,0.056281306,-0.017481672,-0.0053265393,0.018567637,0.04756998,-0.019134227,0.016985906,-0.009449074,0.028589204,-0.032933064,-0.0052144015,-0.006775476,0.012464987,0.0009096431,0.012346948,0.030477837,-0.011839377,-0.006734162,-0.029462697,0.019405719,-0.016171431,-0.0048455275,-0.020350035,-0.023171183,-0.007784715,-0.047947705,0.0016791141,-0.01402311,0.03468005,-0.014967428,0.0010306337,0.0045474777,-0.012795498,-0.0043350062,-0.009024131,-0.0068640057,0.011597396,-0.020680547,0.0054799905,-0.03010011,0.012193495,0.028447555,-0.020468075,0.002495063,-0.002047988,-0.056706246,-0.021707492,0.010765216,0.033121925,0.048962846,-0.00407827,0.007406988,0.00479241,-0.00030376765,-0.012524007,-0.043839924,-0.007855538,0.009401858,-0.014896603,-0.022616398,-0.03468005,0.028707244,-0.0068994174,-0.052267957,0.0071591046,0.035577152,0.003712347,-0.0016009128,0.00062819227,0.021093685,-0.031445764,0.044973105,0.041408308,-0.006309219,0.014223778,0.01476676,-0.0031929726,-0.030690309,0.014306406,0.015168095,-0.0015787804,-0.028423948,0.0339482,-0.010694392,0.012382359,0.045209184,-0.0011272787,-0.0046064975,-0.016619982,-0.017930223,-0.04275396,0.034821697,0.024363384,0.0019992965,0.020338232,-0.025048014,-0.040322345,0.013220441,-0.00092734897,-0.017068533,0.011314101,0.047829665,-0.034278713,0.011798063,0.017812183,-0.009508094,-0.012228908,0.036757547,0.023360047,-0.01983066,0.017658731,0.007100085,-0.03727692,-0.028518379,0.021978982,-0.014507073,-0.02417452,0.03640343,-0.018791912,-0.0020774978,0.04391075,-0.0058813253,0.041597173,-0.0041697505,-0.029132186,0.004686174,-0.03944885,-0.0020406104,-0.013480128,-0.007017457,0.047640804,0.0038835045,-0.018909952,-0.0006296678,0.030407013,0.03694641,-0.0014061474,0.007436498,0.007885048,-0.020538898,0.0149438195,0.034019027,0.03430232,-0.004352712,0.010009762,0.01634849,0.018024655,0.027125511,-0.013775227,-0.02131796,-0.02908497,0.019181443,0.061569482,0.00045260828,0.03593127,0.006804986,-0.01562845,-0.0048307725,0.024670286,0.012901734,0.03583684,0.010599961,-0.012524007,0.005344245,0.020208389,0.024764718,-0.018555833,-0.013326677,0.012069554,-0.00440583,0.010617667,-0.027550453,-0.0050078323,0.04938779,-0.030194541,-0.025850683,0.016454726,-0.05609244,0.001184823,-0.064827375,0.007342066,0.011384924,0.012228908,0.0027517993,0.01997231,0.023053143,-0.012724674,0.030147327,-0.02315938,0.017823987,-0.011786259,-0.004863234,-0.030312581,-0.0019181443,0.020621527,0.020833999,0.04938779,0.01955917,-0.0052999803,0.013846051,-0.006362337,0.011249179,0.023419067,-0.00017807388,-0.034467578,0.008304089,0.016041588,-0.021624863,0.010599961,0.058547664,0.009242505,-0.004957665,0.022994123,-0.010298959,0.008451639,-0.030288974,0.016490139,0.06898237,0.0058341096,0.07455384,0.010476019,-0.040345952,-0.0062442976,0.023690557,-0.009124465,-0.004712733,0.0047983117,-0.0012106441,0.030761132,-0.0061557675,-0.025496565,0.0021984885,-0.019098815,0.020314625,0.0057927957,0.008463443,0.012960753,-0.007997186,0.025402132,-0.0055006477,0.0045356737,0.0048307725,0.0026868775,-0.009295623,0.011001295,-0.011384924,0.0032608453,0.0020952038,-0.0013360613,-0.02518966,0.035388287,-0.015958961,0.03510499,0.047924098,0.022451142,-0.036781155,-0.053873297,0.01783579,0.0016333737,-0.018874539,0.003390689,-0.021471413,-0.036096524,-0.0026263823,0.007767009,-0.012512202,-0.03697002,-0.0016171432,-0.016867867,0.0057780407,-0.0075014196,-0.02655892,0.025260486,0.03283863,-0.002518671,0.010346175,0.016029784,0.01899258,-0.0010365357,0.02384401,-0.030525053,-0.014932016,0.023277419,0.015982568,-0.032106783,0.022274083,0.02343087,0.018296145,0.022226866,-0.023064947,0.011361316,0.01744626,-0.01333848,0.015274331,-0.039496068,0.010298959,-0.013421108,-0.0009192338,-0.018532224,-0.045445263,0.0175643,0.017517084,-0.01721018,-0.028518379,-0.0151562905,0.015699273,0.029132186,-0.0016200942,0.026795,-0.032933064,0.032815024,-0.01345652,0.01068849,-0.00592559,-0.01259483,-0.028707244,-0.031729057,-0.018839128,-0.025921507,0.022144238,-0.017422652,-0.023171183,-0.030595876,-0.025236877,-0.0061498657,-0.011113433,-0.03354687,0.012866322,0.026606137,-0.00045851027,-0.021943571,-0.021070078,-0.015132683,0.064921804,0.02611037,0.04844347,0.015498606,0.02343087,0.003966132,-0.009283818,-0.041998506,0.029580737,0.011957416,-0.011526572,-0.028329516,0.008646404,-0.005385559,0.060011357,-0.028872497,-0.010653079,0.055053692,0.015073664,0.00038768648,-0.03217761,0.021365177,-0.003033619,0.012972557,-0.0012674507,0.0014932016,-0.04901006,0.0054770396,0.01842599,0.02372597,-0.0026499901,-0.03239008,0.0028240986,0.0015035301,0.009301525,-0.02030282,-0.018839128,0.028353123,0.012547615,0.011632808,-0.030949997,0.03411346,-0.009484486,-0.016679002,0.007861441,-0.022911496,-0.008392619,-0.0078496365,0.004399928,-0.055006478,0.027692102,-0.010416999,0.011420336,-0.02736159,-0.015061859,-0.038150415,-0.00077684846,-0.031209683,0.0007491829,0.01721018,-0.008339501,-0.02000772,0.009336936,0.0022545573,-0.007395184,-0.020704154,-0.0016112413,0.02577986,-0.014211974,-0.012311535,-0.02286428,0.014270994,0.0054209707,-0.006326925,-0.011060315,-0.02286428,0.010647177,0.022699025,-0.019665405,0.026299234,-0.030525053,-0.054062158,0.009602525,-0.016490139,-0.01789481,0.02587429,0.022474749,-0.0008461967,0.045421656,-0.0244106,-0.035152208,0.03876422,-0.007359772,-0.0006053221,-0.037324138,0.014636916,-0.02816426,-0.025803467,-0.010216332,-0.029321048,-0.0023858764,-0.0076961853,0.00574558,-0.0023799744,0.02161306,-0.01857944,0.019039795,-0.033051103,0.003673984,0.030666701,-0.038551748,-0.0056039323,-0.0015315644,-0.0059049334,0.027621279,0.007477812,-0.019594582,0.022958713,0.007796519,0.030170934,-0.02896693,-0.030808348,0.020102153,0.00010761896,0.0019506052,0.0045297714,0.023619734,-0.002554083,-0.03510499,-0.0039307205,0.0011110482,0.045799382,-0.014070326,-0.035270248,-0.013314872,-0.03536468,0.0034615127,0.015333351,0.0002050939,0.007318458,-0.024457816,-0.019842464,0.0067872796,-0.00009148073,0.007796519,0.0134329125,-0.016667198,0.02125894,0.0022855427,-0.006734162,-0.040227912,-0.021353373,0.029439088,0.00613216,-0.0030483739,0.025496565,0.0023947293,-0.035152208,0.025000798,0.011514768,-0.02953352,-0.022274083,-0.027715709,0.01009239,0.03682837,-0.02360793,0.012807302,-0.016112411,-0.032602552,0.0007790617,0.018119086,-0.04251788,-0.011922005,0.009862212,0.011662317,-0.005370804,0.034774482,0.008286383,-0.012925342,0.012045946,-0.0032283843,-0.025118837,-0.0013958189,0.00920119,-0.0035618464,0.018945364,-0.014211974,-0.006049532,-0.005373755,0.0051317737,0.008268678,0.0019432277,0.0068876133,0.027408807,-0.0022530819,-0.03319275,-0.059822496,0.010487823,-0.029486304,-0.0023666949,0.022651808,0.004367467,0.018355165,0.0003677673,-0.011107531,0.05519534,0.02759767,0.022640005,0.011786259,0.009460878,-0.0013640957,-0.009750075,0.013102401,-0.010535039,0.020054936,0.021518627,0.01744626,0.019393913,0.027456023,-0.004659615,0.015050055,-0.015427782,-0.020857606,-0.019004384,-0.0003543034,-0.023253812,0.019866074,-0.0016304227,0.008528365,0.03760743,0.010641274,0.006067238,-0.004960616,0.020975646,0.008357207,0.02366695,0.024221735,-0.0032342863,0.0028152457,0.0253077,-0.019877877,0.05665903,-0.0058842767,-0.0041638487,0.0026898284,0.011455748,0.0018606,0.011455748,-0.0147313485,-0.003370032,-0.004919302,0.023926636,-0.015652057,-0.0042317216,0.015014644,-0.027031079,-0.021636669,-0.032815024,0.018319754,-0.028636418,0.011638709,-0.02077498,-0.010334372,0.005314735,0.0339482,0.0043881238,0.023655146,-0.014093935,0.011367219,0.014459857,-0.012370556,0.055714715,0.0069407313,-0.022203257,-0.0009310377]);
INSERT INTO entities (id, name, description, description_vec) VALUES (6, 'xAI', 'xAI is an artificial intelligence company founded by Elon Musk in March 2023.', [0.012690972,-0.053972013,0.010467693,0.0020212969,0.02889673,-0.010815633,-0.006180362,0.033024833,0.0066167614,0.004337458,-0.028708016,-0.057982173,0.03373251,-0.035808355,-0.05779346,0.030948987,-0.050858244,-0.047225513,-0.013905814,-0.052273594,-0.021572294,0.029793119,0.0019962334,0.0028542893,-0.0009391437,-0.00090375997,0.0070236744,0.02689165,-0.04052619,-0.010066677,0.030689506,-0.017904177,-0.031562306,0.0009524126,-0.029250568,0.0053665354,-0.009506434,0.0076900683,0.021017948,0.018081097,-0.022999438,-0.009995909,-0.0060919025,0.040337477,-0.054019194,-0.0128325075,-0.013976581,0.003706448,0.01659498,0.03144436,-0.056755535,-0.010196418,-0.014106322,0.0036710643,-0.0337561,0.015321164,0.028307,0.0036533724,0.027080365,0.07605147,0.0054490976,0.021654855,0.002889673,0.009034651,-0.01783341,0.0014101899,-0.025853727,0.031538717,0.032104857,-0.014330419,0.005463841,0.053453054,-0.01881236,-0.008568765,0.0004363996,-0.037011404,-0.048923932,0.03510068,0.011741508,-0.010762557,-0.021808185,0.031562306,-0.017538546,-0.05892574,0.010355645,-0.043427657,-0.0064516375,0.0040956694,-0.06430407,-0.01417709,-0.014000171,-0.012667383,-0.015380137,-0.0008573188,0.028825963,0.029156212,0.05005621,-0.0058265245,0.013563771,0.029109033,-0.038874947,-0.020876413,0.00044745702,0.032128446,-0.012000989,0.0043050232,0.037034992,-0.019060047,0.0035943994,-0.0060860054,-0.0068644476,-0.009353105,0.014837586,0.009600791,-0.060105197,0.011647152,-0.044088155,-0.017302655,-0.0014986492,-0.041446168,-0.038308807,0.024414789,0.03427506,0.015639618,0.023129178,-0.02833059,0.022044078,-0.03651603,-0.040007226,-0.042130254,-0.0035088887,0.04361637,0.04760294,-0.006870345,0.0067170155,-0.084590755,-0.015356548,0.01881236,-0.019921051,-0.045739394,0.01739701,-0.0069764964,-0.0036445265,-0.000043815035,-0.009913348,-0.043805085,-0.017927768,-0.035879124,-0.014141706,0.0027496123,-0.011812275,-0.004971417,-0.008963884,-0.010001807,0.008415435,0.03939391,-0.016653951,0.020982563,0.024391199,-0.04564504,-0.029439282,0.05557608,-0.0052073086,-0.0009804248,-0.02833059,0.06340768,-0.0083210785,-0.041682057,-0.060246732,-0.03967698,-0.04194154,-0.020782057,-0.038757004,-0.006675734,-0.002752561,-0.023636345,-0.019885669,0.03974775,0.0038509315,-0.044088155,-0.0037329858,0.031538717,0.010727174,0.027056774,-0.04731987,-0.0030960783,-0.018022124,-0.039912872,-0.0068349615,-0.02151332,0.0023913519,0.029840296,0.027858807,0.050811067,0.05033928,-0.016937023,0.033567384,-0.010839222,0.042719983,-0.012372518,0.023707112,0.0027555097,-0.00942977,0.023943005,0.02889673,-0.012024578,0.058972917,-0.006811372,-0.009813094,-0.019154403,0.05864267,-0.05099978,0.037530366,0.008592354,-0.021654855,-0.018281605,-0.044677883,-0.0337561,0.0013799663,0.04614041,-0.013717101,0.024391199,-0.04198872,-0.0042578448,-0.026207564,0.003272997,-0.0051159007,-0.009883861,0.021466142,-0.0014477852,-0.01141126,0.007218285,-0.052320775,-0.0056171706,-0.003364405,-0.027670093,0.0043757907,-0.039700568,0.001570154,0.03370892,0.026490634,-0.04418251,0.030453615,0.025594248,0.01685446,-0.010963066,0.020782057,-0.018163659,-0.011765097,0.010727174,0.051801812,-0.0011860928,0.038568288,0.038969304,0.005469738,-0.007601609,-0.017585725,0.014566311,0.014707846,-0.06383229,-0.042318966,0.039842103,-0.032694586,-0.030099778,0.021336403,-0.012443285,0.018505702,0.016146785,-0.0047325767,0.011765097,-0.032458693,-0.008332874,-0.0059916484,-0.016382677,0.002698011,0.03847393,-0.019413885,0.029321335,-0.07907089,0.08638353,0.025995262,-0.009577202,0.02807111,-0.005230898,-0.04142258,0.013823252,-0.008810554,-0.01674831,-0.049914677,-0.02099436,0.018316988,-0.0030061444,-0.002989927,0.038214453,0.045975287,-0.0043610474,0.022445092,0.016524212,0.0051100035,0.04873522,0.10058421,-0.013976581,-0.00942977,-0.024296843,-0.01979131,0.06755938,-0.0953946,0.01674831,0.028448535,0.020156944,0.016017044,-0.016795488,0.011234341,-0.07227721,-0.034109935,-0.021772802,-0.029085444,-0.04536197,0.026160387,-0.022315353,-0.015297575,-0.020227712,-0.0148965595,-0.019083636,-0.044040974,0.0015716283,0.07345667,0.005797038,-0.04142258,-0.038308807,0.009152597,-0.0018679672,0.016960612,-0.05519865,0.012620204,0.029061854,0.014389392,-0.05359459,-0.022291763,-0.040195942,-0.0376719,-0.021737417,-0.038874947,0.016382677,-0.04531479,0.015450905,-0.057699103,-0.0030149904,0.013929403,0.011517411,0.004437712,-0.01755034,0.06208669,-0.052273594,-0.065908134,-0.02001541,-0.010255391,-0.020192327,0.016583184,0.008315181,-0.036374494,0.0055729407,0.04198872,0.024579912,-0.024131719,-0.040549777,-0.022067666,0.011965605,0.010314363,-0.018694416,0.00041797056,-0.0018797618,0.042389736,-0.021041537,-0.009919245,0.00130109,0.02081744,0.002081744,-0.007737247,0.024131719,0.047555763,-0.0012649691,0.0077313497,-0.005089363,-0.029109033,-0.0009855849,0.019083636,0.0019667468,-0.048546508,0.003532478,0.019378502,-0.031397182,0.0070000854,0.0067229127,-0.03366174,0.011770994,-0.000547711,-0.055387367,0.014389392,0.032977656,-0.025429122,-0.012950453,0.018092891,-0.0039099045,-0.019708749,-0.020345656,0.008114673,0.035879124,-0.024001978,0.039134428,0.03342585,-0.052509487,0.026773704,0.020239506,0.017243681,-0.0122545725,-0.021348197,-0.0123017505,-0.007412896,0.04305023,-0.0057763974,0.0046647578,0.004555658,-0.046588607,0.001990336,0.028802373,0.041540522,-0.015675,0.045220435,-0.009600791,0.009535921,0.017467778,-0.010155137,-0.05133003,-0.030713096,0.02774086,-0.0070059826,0.0144601595,-0.04585734,0.021301018,0.004172334,0.018163659,-0.011906632,-0.030288491,-0.025688604,0.0051601306,-0.035714,0.031467948,-0.026797295,-0.005637811,-0.019826695,-0.043852262,0.011511514,0.05033928,-0.0039010586,-0.02663217,0.0005985751,0.012195599,-0.026726527,0.032128446,-0.027905986,-0.052603845,-0.00022133274,0.010668201,0.010178726,-0.0074659716,-0.031467948,0.0405026,-0.040361065,0.011033833,-0.035714,-0.011446644,0.015946276,0.012443285,0.018600058,0.015026299,0.042908695,-0.028307,0.029816708,-0.019177994,-0.047461405,-0.007601609,-0.018741593,0.03234075,0.0032435106,-0.003072489,-0.05133003,-0.006811372,-0.038615465,0.0051335925,0.034723256,0.0142714465,0.032128446,-0.010202315,0.046659373,-0.015993455,0.018104685,-0.047933187,-0.0038597775,-0.017255476,-0.022020487,-0.016264731,0.0038420856,0.064068176,-0.042342555,0.0008455242,-0.023140972,-0.0010968962,0.025712192,0.023990184,-0.008480306,0.015769359,0.021525115,0.0060801078,-0.007595712,0.029415691,0.05722732,0.039983638,-0.005797038,0.0030990269,0.012844302,-0.03828522,0.002044886,0.012443285,-0.01003719,0.0069647017,-0.032411516,-0.0073480257,-0.0472491,-0.010615125,0.0337561,-0.008739786,-0.00046588606,-0.0068467557,-0.037766255,-0.019036459,0.016441649,-0.014200679,-0.028566482,0.017455984,0.012089448,0.01979131,0.002556476,-0.008792862,-0.026820883,0.018199043,-0.05236795,-0.026113208,0.015179629,0.06623838,0.035478108,0.046848085,0.00520436,-0.028943907,0.015191424,0.021678444,0.007660582,-0.018776977,0.011770994,0.0009973795,0.0002605866,0.012278162,-0.0043492527,0.028118288,0.03177461,-0.010308466,0.0041074636,0.024344021,-0.0144601595,-0.00823262,-0.021147689,-0.010166931,-0.0075249444,-0.0057410137,0.014967327,0.056189395,-0.000696249,-0.011145881,0.010874606,0.01160587,-0.021985104,-0.015262191,-0.010054883,0.022185612,-0.028943907,0.05416073,-0.047508582,0.039535444,0.04479583,0.03566682,0.009872067,0.025075285,-0.002615449,-0.037294473,-0.002926531,-0.03514786,0.017031379,-0.01670113,0.0112933135,0.039535444,-0.025665015,0.00947105,-0.011558692,0.036044247,-0.025735782,0.004944879,-0.0009185032,-0.0008285695,0.03847393,-0.013351468,-0.0058678053,-0.014424776,0.010379233,0.00407208,-0.008751581,-0.003721191,0.0031963321,0.010685893,0.042106662,0.009199775,-0.0006302731,-0.016500622,-0.030382847,0.029203389,-0.0052426923,0.014743229,0.014047349,0.014861176,-0.05557608,0.03059515,0.059255987,0.046305537,-0.013445825,-0.000976739,-0.05642529,-0.036044247,-0.0022365479,0.000035061243,0.034911968,-0.0211241,-0.015604234,0.016642157,0.018328782,-0.007560328,0.009182083,-0.0059828027,-0.005847165,-0.008845937,-0.026514225,0.018953895,-0.02632551,-0.031208469,-0.0010622496,0.029014675,0.016972406,-0.013445825,-0.016264731,-0.0048564197,0.027434202,0.034086347,-0.02253945,-0.020652317,0.010461796,0.0044848905,-0.015769359,0.04614041,-0.0051512844,0.018364167,0.024556324,0.00169842,-0.035029914,0.006669837,-0.027009597,0.011894838,0.0056997323,-0.086430706,0.0010755186,-0.018151864,0.02408454,-0.043144587,-0.003847983,0.006540097,-0.035195038,-0.0061744647,0.023990184,-0.023707112,0.027622916,-0.0055346084,0.005286922,-0.014082733,-0.031043345,0.016052429,0.019531831,-0.009117213,-0.016087811,0.00638087,0.029911064,0.019602599,-0.046895266,-0.023483016,-0.0025328868,0.038403165,0.015415521,-0.03135,-0.021961514,0.027316255,-0.028637249,-0.012172011,0.030736685,0.013669923,-0.053122804,-0.054019194,0.025948085,0.059161633,0.015639618,0.008102879,0.021831775,0.017798027,-0.019390296,-0.027434202,-0.007914166,-0.0029132622,0.008845937,0.0045910417,-0.023376865,-0.047720887,-0.0050598765,0.040054407,-0.014684257,-0.015651412,0.009400283,-0.029698761,-0.03620937,-0.010986655,0.029061854,0.010980757,-0.059067275,-0.011399465,-0.06397382,0.023023028,0.020557959,0.0090877265,-0.0012155793,0.0038863153,-0.026773704,-0.0009052343,0.013351468,0.037530366,0.014660668,0.004897701,-0.0023397505,0.007495458,-0.00509526,-0.017102147,-0.018352373,0.010261288,0.006652145,-0.016382677,0.043710727,0.01687805,-0.010703585,-0.007990831,-0.005210257,0.026962418,0.036327317,-0.016076017,-0.014283241,0.0054903785,0.006504713,0.02305841,-0.014967327,0.010155137,0.0037949074,-0.016040634,0.009830786,0.00836236,0.017090352,0.0061744647,0.020675905,0.010131547,-0.018588264,-0.0037241399,-0.01700779,-0.00169842,-0.01927235,0.0017131633,0.014943738,0.009789504,-0.009075932,-0.0030488998,-0.04559786,0.022551244,0.005620119,-0.037506778,0.014401186,-0.0042696395,0.026561402,-0.028566482,-0.0046647578,0.023577373,-0.009577202,0.009524127,-0.0027083312,-0.006811372,0.05302845,0.021619473,-0.048546508,0.030642329,-0.038874947,-0.041752826,-0.007035469,0.029934654,0.00820903,-0.043545604,-0.017868795,0.011493822,0.0024311587,-0.02951005,0.0015229756,0.03170384,0.03349662,0.038049325,-0.012549437,-0.033048425,0.05015057,-0.0036622183,-0.0016202809,-0.013516593,-0.040077996,0.00886363,0.037553955,-0.029132621,0.011482027,-0.00537833,0.021159483,0.0017411754,0.0056672976,-0.031939734,-0.020145148,0.034157116,-0.0035619643,-0.0004382425,0.0034174807,0.038426753,-0.014861176,0.007289053,-0.0034440185,0.0145899,0.015792947,-0.010609228,-0.01855288,-0.021772802,0.014707846,-0.025853727,-0.028967498,0.03453454,-0.01922517,0.03090181,0.018647237,-0.031066934,0.0025078233,0.009370796,0.046281945,0.009359002,0.059397522,-0.0031167187,-0.0076546846,-0.02323533,0.015403726,-0.027575737,0.012702767,0.030996166,-0.047484994,-0.016193964,0.02637269,0.024049155,-0.014330419,0.035407342,0.0076369927,-0.025948085,-0.014118116,-0.049537253,0.0073716147,0.011434848,-0.029014675,0.015250397,-0.012219189,0.01898928,0.010467693,0.012396107,-0.036162194,0.0452912,0.02691524,0.0008211979,-0.001382915,0.016736515,0.0044406606,0.027717272,0.002086167,-0.02835418,0.051377207,-0.059963662,0.012537642,-0.002181998,-0.05104696,0.00507462,0.0037123451,-0.0054844813,-0.0058648568,-0.009671559,0.016677542,0.02223279,0.05434944,-0.029415691,-0.009818991,0.008008522,-0.012148421,-0.008627738,-0.02292867,-0.040620547,-0.041163098,-0.01487297,-0.013717101,0.02465068,-0.011263828,0.0005340735,-0.013976581,0.014955532,0.025547069,-0.0071416204,0.0089285,-0.023199946,0.0015627823,-0.003980672,-0.00011435217,0.02110051,-0.004880009,0.011505617,-0.007908268,-0.031491537,-0.006540097,-0.015545261,-0.020062586,0.012313546,-0.007029572,-0.019614393,-0.0050510303,0.036445264,0.008592354,-0.00463822,0.024579912,-0.0068585505,0.033826865,-0.023424042,0.005687938,-0.029675173,0.042059485,0.029368514,-0.0029781323,-0.005693835,0.037011404,-0.0060860054,-0.03314278,-0.018352373,0.0073657176,-0.0052191033,0.0122073945,-0.012808918,0.00009841106,0.010461796,-0.020357452,-0.03425147,-0.007070853,-0.03455813,-0.021548705,-0.02053437,0.024119923,0.02516964,-0.002246868,-0.031302825,0.025641425,0.011647152,-0.014766819,-0.049442895,0.014342214,-0.026986007,-0.009671559,-0.00014125857,-0.04481942,0.009824888,0.030665917,-0.037365243,-0.019991819,0.03967698,-0.0030990269,-0.045220435,0.0008750107,0.003538375,0.017915973,0.010703585,0.03142077,0.036704745,-0.0123017505,-0.009476948,-0.028307,-0.05350023,-0.03177461,-0.020758467,-0.025122464,-0.0012775009,0.018930307,0.0034204293,0.013493003,0.020109765,0.022374325,-0.005124747,-0.012183805,-0.024815803,-0.025429122,0.014165295,0.0067406045,0.03321355,0.022114845,-0.034676075,-0.014755025,-0.0027761501,0.0076723765,0.031609483,-0.010821531,0.045244023,-0.023070205,0.016618568,0.0046529635,-0.0263491,-0.014778613,-0.0005554512,0.008055701,-0.008486203,0.07161671,0.012785329,-0.024096334,-0.021135895,-0.03453454,0.034676075,0.050386462,0.0031579998,-0.017349832,0.020640522,-0.0062275403,0.012690972,0.028825963,0.045951698,-0.0060742106,0.024532733,-0.011782789,-0.028283412,-0.04647066,-0.010709482,0.028802373,0.0034970941,-0.010886401,0.0084685115,-0.013941198,0.0055493517,0.0023721857,-0.035006326,0.024249664,-0.013882225,-0.009341311,0.028920319,0.021218456,-0.015061683,0.021985104,-0.018092891,0.018788772,0.039559033,-0.031090522,-0.014967327,-0.031043345,-0.016937023,0.03087822,-0.005847165,0.02169024,-0.026183976,-0.002401672,-0.0056761433,0.015533467,0.0011971502,0.026962418,-0.014000171,-0.0010268659,-0.024603501,0.044583526,-0.001990336,-0.03564323,-0.012667383,-0.0019004022,0.006203951,-0.0013069873,-0.02719831,0.012679177,0.0635964,-0.040738493,-0.028778784,-0.010379233,0.0072595663,0.03479402,-0.059161633,0.008220824,-0.007660582,-0.007477766,0.039794926,-0.025358355,-0.013150961,-0.019177994,0.030948987,-0.0049684686,0.020274889,0.018965691,0.030807452,0.013056604,0.0035118372,-0.02151332,0.021466142,0.029934654,0.02545271,0.012702767,0.027693683,-0.0024444275,0.004272588,0.03394481,0.0073657176,-0.009129007,-0.023188151,-0.000254505,-0.023565577,0.01302122,-0.016323704,0.0042814338,-0.011210752,0.021985104,-0.010503077,-0.0065990696,0.004190026,-0.010237698,0.047225513,-0.028448535,0.074730486,-0.007171107,-0.005163079,-0.0348412,-0.021643061,0.00107257,-0.030453615,-0.011216649,-0.026419867,-0.03422788,-0.003606194,-0.02632551,0.01811648,-0.000981162,-0.0015141297,-0.0337561,0.027151132,0.0122545725,0.007088545,-0.025476301,-0.006203951,0.0007360557,0.004302074,-0.0014131386,0.025028106,0.010308466,-0.0043905335,-0.00033761995,0.023140972,-0.0083210785,-0.009936937,0.015309369,-0.013339674,0.043852262,0.048216257,0.013103782,-0.03135,-0.017090352,0.035501696,-0.037176527,0.0014337791,0.018670825,-0.029557226,-0.03135,-0.00884004,-0.03257664,-0.062275402,-0.062794365,-0.044300456,0.002077321,-0.054302264,0.027552148,-0.011358184,0.028755195,0.0018856591,0.024414789,0.0008705877,0.042153843,0.0017175863,-0.007695966,-0.0040691313,0.019944642,-0.0073893066,-0.005104106,-0.026207564,-0.015639618,-0.009594894,0.02408454,0.024320431,0.0022940466,0.0000066920443,0.0049979547,0.034676075,-0.029934654,0.0075898147,0.014825792,0.021265635,-0.0143658025,0.010296672,0.0018207888,-0.02408454,0.027693683,0.065908134,0.01317455,-0.014601694,0.0052574356,-0.014884764,0.025334766,0.035879124,0.0049360334,-0.012903275,0.002815957,0.030453615,0.013622744,-0.0151324505,-0.0067406045,-0.065058924,0.009824888,0.0012126307,-0.000018613327,-0.0061095944,0.0042313067,-0.046565015,-0.028943907,-0.015474494,-0.0064162537,-0.017644698,-0.0051837196,0.009553613,0.005210257,-0.023683524,-0.0018060456,0.0009126059,-0.000048468366,0.03536016,-0.009742326,0.04106874,-0.0035206832,0.0037418318,-0.012289956,0.010656406,-0.002861661,0.012443285,-0.00629241,-0.03090181,-0.006012289,-0.0037713181,-0.018670825,0.050669532,-0.0064929184,-0.024532733,0.04368714,0.031232057,-0.013056604,-0.0059828027,0.017196503,0.008150057,-0.02833059,0.004431815,0.028991086,-0.039818514,0.022728162,0.02436761,-0.0012819238,-0.009341311,-0.041823592,0.01443657,0.02637269,-0.022291763,-0.00616267,-0.01006078,0.0076723765,0.018045712,0.03229357,-0.016901638,0.029793119,-0.00021709406,-0.022787135,-0.009724635,-0.007713658,-0.009187981,-0.0145073375,-0.0075898147,-0.050009035,0.036327317,-0.013717101,0.0035501698,0.026467046,0.0029825554,-0.012502259,0.015781153,-0.0024709653,-0.045196846,0.032529462,0.0027997394,-0.05005621,-0.031491537,-0.008804657,-0.015580645,0.02951005,0.015934482,-0.007218285,0.018635442,-0.0047768066,-0.0086100465,0.016064223,0.0023338532,0.0005687201,-0.033803277,-0.0019343117,0.0058176783,0.028189056,-0.023459427,0.008598251,-0.01659498,-0.023683524,-0.0030990269,-0.014920148,0.0025992314,0.035195038,-0.0027864703,0.024249664,-0.032128446,-0.027929574,0.0062747183,0.048051134,0.012183805,-0.0017102147,-0.0060181865,0.011782789,-0.019154403,-0.02323533,-0.01417709,-0.00077623106,0.018187247,-0.046447072,0.007855193,0.021572294,0.026514225,-0.012466875,0.02323533,0.016547801,-0.0028115339,-0.008155955,-0.015262191,-0.009789504,0.009848477,0.0019225171,0.017774438,-0.0002296258,-0.009512331,0.015580645,0.009388489,-0.0061272862,0.006540097,-0.0054933275,-0.018883128,-0.018187247,0.013115577,0.007312642,0.00503039,-0.01674831,0.010273082,-0.0030695405,0.0020714237,0.01515604,0.013929403,-0.021525115,-0.0019062996,0.0061331834,0.035714,0.03986569,-0.019390296,0.003989518,-0.026773704,0.026820883,0.013481209,0.029439282,-0.002369237,-0.015415521,0.013493003,-0.0041133612,0.019001074,-0.015745768,-0.048357792,0.015073478,-0.025263999,0.025405534,0.008722095,-0.001315096,-0.018199043,0.002647884,-0.00707675,-0.009854374,-0.027127542,0.0007128352,-0.006870345,0.0024798112,-0.006027032,-0.022480477,-0.03370892,-0.0035649128,-0.00019276772,-0.016925227,0.021348197,-0.035761178,-0.001515604,-0.002807111,0.031066934,-0.022456888,-0.0044288663,0.008173646,0.0068349615,0.03512427,-0.0059415214,0.000803506,0.0073421285,0.0051837196,0.02663217,0.04387585,0.015014505,-0.0061036972,0.006386767,0.013209933,0.021489732,0.03967698,-0.029109033,0.047414225,0.0016895741,0.0010298146,-0.028189056,-0.007990831,-0.012514053,-0.01358736,0.01657139,0.011594076,0.017338037,-0.008751581,0.0018546983,-0.0119774,0.06265283,0.016370881,-0.0005303877,0.0073775123,0.025358355,0.018364167,-0.025358355,-0.0058825486,0.023766086,0.017562134,0.014483749,-0.028472126,0.012172011,-0.025429122,-0.012337134,-0.022456888,-0.06779527,-0.015651412,-0.007955447,-0.0014949635,0.00299435,0.0058913943,-0.019071842,0.014212473,0.034463774,0.01302122,0.014601694,0.0128325075,0.0008418384,-0.0073716147,0.023471221,-0.00021082818,0.037601132,0.025004517,-0.026820883,-0.013823252,-0.032104857,0.005278076,0.025924494,-0.003856829,-0.02889673,-0.0174206,-0.007088545,-0.0015937431,-0.022975849,0.01204227,-0.029698761,0.035902712,-0.025617836,-0.0422482,0.011829968,0.0054933275,0.047768064,-0.0226456,-0.010715379,-0.0074659716,-0.013799663,0.040549777,-0.0041015665,0.0029088391,0.013068398,-0.024060952,0.020475397,0.014141706,0.022622012,0.000547711,-0.0017352782,0.0016851511,0.010951271]);
INSERT INTO entities (id, name, description, description_vec) VALUES (7, 'Neuralink', 'Neuralink is a neurotechnology company co-founded by Elon Musk, developing brain–computer interfaces.', [-0.01095285,-0.040056136,-0.024246944,0.0025455235,-0.004244954,-0.01278412,0.0058791884,0.06235591,-0.0031786445,-0.012019159,-0.034631867,-0.00044006985,-0.015264448,-0.015612158,-0.02586959,-0.036300875,-0.053454544,-0.04900386,0.000120973935,-0.009538831,-0.0040682014,0.02624048,0.01678278,0.0138272485,0.03933754,0.018335883,0.013073878,-0.024525112,-0.012482772,0.032221083,0.025475517,-0.023968777,0.0024701864,0.05484538,-0.02846582,0.068382874,0.026588188,-0.011677245,0.012297327,0.027214065,-0.022207048,-0.042235117,0.02302996,0.06708476,-0.06462761,-0.014186548,-0.032336984,-0.035976347,0.02156958,0.03859576,-0.028326735,0.017988173,-0.030389812,0.012587084,-0.043718677,0.031919733,0.02816447,0.028280374,-0.014777655,0.06448852,0.0054619373,-0.010970236,0.0149167385,0.0021572479,-0.0040305327,-0.015287628,-0.04603674,0.012355278,0.024571473,-0.006177639,0.03071434,-0.008895569,-0.027445871,0.04232784,0.015867144,-0.01608736,-0.056143496,0.044390917,0.021303004,-0.005131613,0.017026177,-0.03690357,0.0035495346,-0.037830796,-0.026055034,-0.05044106,-0.024710556,-0.028419457,-0.05836884,-0.038989827,-0.033426475,-0.008437751,-0.031687927,0.044020027,0.0052330284,0.033449657,0.036834028,0.0039088344,-0.010495032,0.04529496,-0.0059574232,0.0048070843,-0.007452574,-0.045364503,0.012088701,0.025150988,0.0343537,-0.007417803,-0.041122448,0.022438854,0.001209015,0.022207048,0.03905937,-0.0016226445,0.008489908,-0.041933767,-0.023876054,-0.045179058,0.030575257,-0.008889774,-0.034191437,0.01898494,0.0062587713,0.0058791884,-0.014905148,-0.028071748,0.0090636285,0.046871245,-0.0007722049,-0.036208153,0.02881353,0.026588188,0.023783332,-0.012633446,-0.025985492,-0.016261216,-0.022960419,-0.014163367,-0.036393598,-0.0270518,-0.016388709,-0.038132146,0.033055585,-0.014012693,-0.002603475,-0.0032394938,0.006368879,0.009225893,0.007058503,-0.002699095,-0.0012655178,0.02879035,0.002252868,0.008316053,-0.009034652,0.01242482,-0.019054482,0.068892844,-0.02774722,-0.060362373,0.025800047,0.043625955,0.044205472,-0.024641015,-0.010100962,0.07519798,-0.04163242,-0.010877513,-0.023447212,-0.016017819,-0.0357909,-0.021210281,-0.02447875,-0.0067281793,-0.012505952,0.0025310356,-0.02300678,-0.0022021604,0.00057915365,-0.012981156,-0.012900024,0.009654734,-0.0074293935,0.062958606,-0.06254135,0.031293858,-0.06175321,0.0038624732,0.00064000284,-0.06782654,-0.021755027,0.008895569,0.034562327,0.035651818,-0.0063051325,-0.0050794566,0.03871166,-0.041029725,0.03616179,-0.059064258,-0.021384135,0.026912717,0.03509548,0.013560671,0.03829441,0.018532917,0.0035987936,0.01788386,0.032707877,0.034214616,0.035953164,0.013294094,0.026379563,-0.0041927975,0.018776314,-0.03224426,-0.032035638,-0.054938104,0.01754774,0.010871718,0.023180636,0.0062703616,0.0008040783,0.0049983244,0.03581408,0.039360717,-0.010367539,-0.008634786,0.032638334,-0.010477647,0.014650161,-0.006177639,-0.02883671,-0.04494725,-0.028581724,0.008675353,0.036463138,-0.058600646,0.009428723,-0.021998422,0.0032134154,-0.03548955,0.007910391,0.010344358,0.039592523,0.01826634,-0.031177955,0.01714208,-0.028929433,0.008420366,0.05363999,0.07325081,0.030922966,0.032986045,0.011561342,-0.003630667,-0.03984751,0.025939131,0.019309469,-0.09351068,0.016516203,-0.0028599107,-0.025521878,-0.0047085662,0.026912717,-0.04534132,0.011636679,0.019784672,-0.022137506,0.0001823664,0.0036828234,-0.040682014,-0.03838713,-0.03537365,-0.034747772,-0.004175412,-0.019761492,-0.0063051325,-0.062031377,0.053593628,-0.012992746,0.009301229,0.0048737284,-0.0142792715,-0.045248598,0.025776867,0.0067687454,0.021476857,-0.052712765,-0.019923756,0.04017204,-0.029624851,-0.0061602537,0.034191437,0.029045336,-0.0065485295,0.029462587,0.008849207,0.014209729,0.031734288,0.04422865,0.0064384216,0.0036567452,0.0004353613,-0.06527667,0.06991279,-0.058090672,0.0028338325,0.035466373,-0.03623133,-0.034840494,-0.018382244,0.04626855,-0.04133107,-0.022809744,-0.020653946,-0.021662302,-0.0042942124,-0.03328739,-0.023169044,-0.0009250522,0.0050591733,0.0016458251,0.0059255497,-0.009075219,0.03755263,0.04133107,0.021859339,-0.047705747,-0.013317275,0.050162893,0.0017284061,-0.026425924,-0.02957849,0.0061138924,-0.01569329,-0.026588188,0.007342466,-0.04158606,-0.012019159,-0.041516516,-0.008333438,-0.03402917,0.05475266,-0.0055836355,0.022404084,-0.054984465,0.0060791215,0.004436194,0.021360954,-0.046569895,-0.03692675,0.027839942,-0.033727825,-0.026147757,-0.008849207,-0.020723488,-0.012123472,0.016133722,-0.0063341083,-0.03398281,0.005282287,0.025081446,0.048772056,0.027329968,-0.047566663,-0.046523534,0.0112947645,-0.034863673,-0.031363398,0.044808168,-0.012587084,0.089755416,0.03465505,-0.010755815,0.01717685,0.014302452,-0.007707561,-0.05994512,0.02556824,0.056421664,-0.004546302,0.01716526,-0.044089567,-0.041099265,0.012123472,0.09378885,-0.014777655,-0.07491981,-0.0057748756,0.035582274,-0.08233762,-0.034423243,0.0043405737,0.02487282,0.045573127,0.0031525663,-0.049977448,0.008750689,0.024571473,0.0070005516,-0.031177955,0.0005052654,-0.015623748,0.019494914,-0.0503947,0.030389812,0.03912891,-0.020271465,0.00022800328,0.0023195122,-0.045480404,0.010153118,0.0050446857,0.051692817,-0.0077655124,-0.008449341,-0.010303793,0.05257368,0.045132697,0.036393598,0.015588977,-0.0277704,0.01313183,0.04854025,0.024246944,0.04501679,-0.020746669,0.07060821,-0.035165023,-0.018428605,0.047937553,-0.0051779742,-0.005621304,-0.0021717357,-0.008240716,0.024200583,0.06907829,-0.032035638,0.007985729,-0.0015849759,-0.013595442,-0.010384925,-0.010332768,-0.0011684488,0.030783882,-0.08289395,0.030389812,-0.020178743,-0.0240615,0.01389679,-0.022265,0.028349916,0.042165574,0.0020543837,-0.016481431,0.036393598,-0.04096018,-0.002555665,0.024200583,-0.023667429,-0.014870377,-0.008605811,-0.021129148,0.014337223,0.030783882,-0.026472285,0.020248285,-0.029717574,-0.010807971,0.0037784434,-0.0150674125,-0.0024803279,0.022717021,0.025011905,0.01186269,0.022705432,-0.0098865405,0.009295435,-0.003245289,-0.06022329,0.026565008,-0.026008673,0.028535362,0.043000076,0.019263107,0.0071628164,0.03402917,-0.051275562,0.0128073,0.054149963,-0.008153789,0.02661137,-0.010153118,0.015171725,-0.037691712,0.008588425,0.010900694,-0.02482646,-0.0041551287,0.019506505,-0.008883978,0.0009250522,0.05484538,0.003726287,0.019645588,-0.005137408,0.0055140937,0.018950168,0.013270914,0.042536464,0.01641189,-0.0061950246,0.015658518,-0.01422132,0.009718481,0.0350723,0.048725694,0.017257983,0.005522786,0.016203264,-0.0013575159,-0.022149097,0.0021731844,-0.025104627,0.006322518,-0.06064054,0.018822676,-0.05628258,-0.02117551,-0.012842071,-0.027700858,0.009759047,0.0028961306,-0.023261767,-0.021812977,0.009162146,-0.052295513,-0.018880626,0.021697074,0.014835606,0.03864212,-0.005212745,-0.002086257,-0.023991957,0.026819995,-0.01497469,-0.04928203,0.0067745405,0.05252732,0.037158556,0.037436724,0.033890087,-0.007487345,0.028257193,0.014870377,-0.015507844,0.0009989404,0.023945596,0.009567807,-0.022392493,-0.013467949,-0.007058503,0.0071744067,0.008727509,-0.004595561,0.020039659,-0.0032945478,-0.05076559,-0.018080896,-0.015635338,-0.028998975,0.006090712,0.009753252,0.0292076,0.022079555,-0.041377433,-0.0027686371,0.008663762,0.010732634,-0.0010489237,-0.01572806,-0.0064442167,-0.015797602,-0.051924624,0.04079792,-0.032105178,-0.01134692,0.013734526,0.037900336,-0.00052627287,-0.017095719,-0.0041783093,-0.0009127375,-0.009573602,-0.015600568,0.0050939447,-0.013966332,0.021986833,0.055401716,-0.01642348,-0.028419457,0.0049490654,0.033751003,0.007719151,-0.0233429,0.026194118,0.018915398,0.022751793,0.02048009,-0.027608136,0.011161475,0.02923078,0.009138965,-0.028628085,0.0072091776,0.020039659,0.025058266,0.036834028,0.02410786,-0.024617834,-0.013653394,-0.00008172079,0.005751695,0.012505952,-0.011619293,0.020595994,0.002445557,-0.032522433,0.015612158,0.033890087,0.031525664,0.016690057,-0.004511531,-0.060408734,0.013572262,-0.006328313,0.023597887,0.043231882,-0.03134022,-0.024710556,-0.021766616,-0.017292753,0.019448552,-0.019912165,0.00076278776,-0.02586959,-0.021326184,0.02737633,0.004210183,-0.018196799,-0.02881353,0.04376504,0.020375779,0.0006313101,0.002990302,-0.05693164,0.02079303,0.022601118,-0.010367539,-0.008530473,-0.005751695,-0.02586959,0.021952061,-0.025429156,0.019946937,0.03574454,0.039777968,0.0016240933,0.014070645,-0.04306962,0.046662617,-0.0058183395,0.014789245,0.027121343,-0.044043206,-0.002328205,-0.0025150988,0.044622723,-0.038572576,0.011601908,0.025405975,-0.0031120002,-0.011399077,0.020039659,0.013212962,-0.004601356,0.0073250807,0.021082787,-0.02774722,0.012366869,0.008205945,0.023284947,-0.023829693,-0.022091145,-0.017779548,0.024223763,0.027608136,-0.019680358,-0.011051368,0.015994638,0.019494914,-0.013792478,0.00043173932,-0.0002098934,-0.038456675,-0.014650161,-0.025127808,0.016840732,0.01793022,-0.028396277,-0.031896554,0.048401166,0.02117551,0.056421664,0.015496254,0.0035929985,0.01900812,0.011173066,-0.016191673,-0.019657178,-0.026170937,-0.008333438,0.0019471734,0.013305685,-0.0043376763,-0.031919733,0.048401166,-0.019205157,0.008003114,-0.022902466,-0.008826027,-0.018393833,-0.024896001,0.01612213,0.011225223,-0.015681699,-0.026055034,-0.026773633,-0.017744776,0.011439643,-0.0057893638,-0.012378459,-0.018799495,0.013954742,0.020955294,0.019888984,0.03766853,0.00895352,-0.01789545,-0.039221633,0.0071686115,-0.004398525,0.0022470728,-0.024270125,-0.0066586374,0.016527792,-0.015380351,0.046778522,-0.0047636204,-0.02737633,0.021940472,-0.022114325,0.013966332,0.017744776,-0.040032957,-0.011097729,0.022821335,0.017710006,0.024733737,0.01042549,-0.012169833,-0.0034944806,0.009092604,0.023876054,-0.023679018,-0.006142868,0.016469842,0.0109586455,0.014406765,-0.013664984,-0.013769297,0.0277704,-0.0103385635,-0.01314342,-0.0058531105,-0.0329165,0.0034713,-0.032267444,-0.008831822,-0.042536464,0.022033194,-0.019112434,-0.031966094,0.034747772,-0.0015255755,0.0070758886,-0.045781754,-0.001853002,-0.00804368,-0.0027845737,-0.012575494,0.018498147,-0.022577938,0.061521403,0.025290072,-0.01637712,0.027329968,-0.012563904,-0.017431837,0.018799495,0.040056136,-0.016666876,0.001177866,0.011833714,0.029091697,0.031479303,-0.037853975,-0.01204234,0.005235926,0.031154774,-0.0005860354,-0.010390719,-0.046894424,0.03069116,0.010894898,0.038618937,-0.018011354,-0.034492783,-0.011410668,0.029995741,0.020201923,0.023099503,0.014684932,-0.008304463,-0.0018457581,-0.014522668,-0.03365828,-0.025035085,-0.013166601,-0.0006005233,-0.02450193,0.035929985,0.031919733,-0.016261216,0.0028280374,-0.0016907376,-0.009075219,-0.01827793,-0.014499487,-0.04116881,-0.033380114,-0.0074583692,-0.019135615,-0.00081059785,0.033310574,0.0270518,0.040079318,0.014453126,-0.03943026,-0.026912717,-0.038248047,0.029369865,0.026889537,0.012563904,-0.0141285965,0.0017921529,-0.0029453894,0.03655586,-0.010408105,0.03648632,0.032707877,-0.03138658,-0.0036335646,-0.009932902,0.049421113,-0.003430734,0.0036074864,0.038503036,-0.013166601,-0.011341126,-0.015542615,0.023111094,0.020781439,-0.020514863,-0.014847197,-0.002005125,0.025498698,-0.00046940785,0.011057163,-0.018011354,0.04858661,0.02116392,-0.00858263,0.012169833,0.04710305,0.0021369648,0.04900386,0.024015138,-0.024733737,0.02883671,-0.06101143,-0.000820015,0.0019181975,0.0038827562,0.0011010802,-0.003795829,-0.024339667,0.0072787195,-0.00013193041,0.026750453,0.004978041,-0.0105066225,-0.04745076,-0.032986045,-0.009938697,-0.014847197,-0.009202712,0.011775763,-0.067641094,-0.023041552,-0.036045887,-0.033519197,0.049977448,-0.0074757547,-0.024525112,-0.025521878,-0.03681085,0.009243278,-0.0053286483,0.0057343096,0.005560455,-0.0067455648,-0.024200583,0.00821174,0.030273909,0.026147757,0.016539384,-0.015415122,-0.005392395,0.00913317,0.0018269238,0.006786131,0.0030888196,0.00020500374,-0.0074293935,-0.024339667,0.03796988,0.011115114,-0.01004301,0.0007222217,-0.027654497,0.027074981,-0.0017414452,-0.01637712,-0.04745076,0.01313183,-0.0026136166,-0.011364306,-0.007568477,0.053130016,-0.034933217,0.004505736,-0.048401166,0.009822794,-0.013862019,0.035976347,-0.014244501,0.0006179088,0.044692263,0.0063746744,-0.010361744,-0.0020949498,-0.025545059,-0.020306235,0.0016501715,-0.013224552,0.05085831,-0.011173066,0.012645036,0.02702862,0.05173918,-0.006206615,-0.022183867,-0.023899235,-0.03212836,-0.010535599,-0.024223763,0.014626981,0.03509548,-0.01793022,-0.026472285,-0.010778995,-0.005705334,0.0026831585,-0.015786013,-0.0067339744,-0.010576164,0.007307695,0.018474966,0.0027816761,0.01788386,-0.0012879741,-0.011972798,-0.0058386223,-0.026217299,0.0035611251,-0.007417803,0.0074641644,0.0046998737,0.013549081,-0.019970117,0.05442813,0.03755263,0.0028743986,-0.005806749,-0.008924545,-0.0068556727,-0.030088464,0.021731846,0.020190332,-0.014626981,0.029717574,-0.05044106,-0.022230228,0.019738311,0.00529098,0.016539384,0.018347472,0.031618387,0.005186667,-0.011115114,-0.007023732,-0.005490913,-0.026588188,0.041052904,0.002260112,-0.019761492,0.009220097,0.02811811,-0.03245289,-0.021789797,0.005800954,0.011543957,0.0052677994,-0.00073562295,0.004360857,-0.020526452,0.0031351808,0.0064094453,0.008194354,0.008287077,-0.015206496,0.020955294,-0.0032365962,0.0016284396,-0.025104627,-0.0008192906,0.044622723,-0.0031873372,-0.021418907,-0.0034828903,-0.0015936686,0.019831033,-0.006166049,0.0054532443,-0.0020558327,-0.0015516537,-0.004366652,0.02923078,0.027955845,-0.0130043365,0.030158006,0.0069426,0.026217299,0.017362295,0.0039986596,-0.012842071,-0.019031301,0.0064210356,0.05720981,-0.013711345,0.008084246,-0.02372538,-0.0014002552,0.014939919,0.008692738,-0.01243641,-0.01896176,-0.00082291255,-0.027515413,-0.0055836355,0.016156903,0.001209015,-0.017837498,0.023226997,0.019193565,0.0027584955,0.007296105,-0.062958606,0.01637712,0.03138658,-0.027121343,-0.011033982,-0.023876054,-0.019402191,0.017014585,-0.023679018,-0.004250749,0.020352598,-0.00086202985,0.03032027,0.028303554,0.03398281,-0.03029709,0.01970354,-0.004036328,0.013908381,-0.001715367,0.006252976,0.008287077,-0.0033988606,0.0060791215,-0.001900812,-0.0014654507,0.021500038,0.008692738,0.025985492,0.00264549,0.010999211,-0.0050794566,0.017814318,-0.005041788,-0.0064210356,0.0012024954,-0.03648632,0.030412992,-0.0045723803,0.011972798,0.013178191,0.04490089,-0.008936135,0.012563904,-0.0029062722,0.021430496,0.063468575,-0.0030569462,0.068011984,-0.015612158,-0.016539384,-0.0007866928,0.02117551,0.050533783,-0.025753686,0.0047259517,-0.029624851,0.013247733,-0.037204918,-0.0065948907,-0.0024846743,-0.015229677,0.0351882,-0.016041,0.0055488646,-0.002025408,0.004749133,-0.011306355,-0.001216259,0.03532729,0.001825475,0.0042623393,0.0064442167,0.008472522,0.0035292516,0.049792003,-0.012135062,-0.019436963,-0.020677127,0.0090810135,0.0042275684,0.037367184,0.022149097,0.0064789876,-0.045503587,-0.034098715,0.0017197133,-0.015542615,0.021105967,-0.011045572,-0.0070005516,-0.024131041,0.012726168,-0.03766853,-0.019181976,-0.014209729,-0.0077307415,-0.0006121136,-0.032267444,0.0013343353,-0.010894898,0.0025614602,0.037993062,0.018845856,0.018764723,0.04049657,-0.001036609,-0.002128272,-0.030227548,0.014441536,-0.023238586,0.015948277,-0.0028063057,0.007052708,-0.0056502796,0.016365528,0.020294646,0.036393598,0.019135615,-0.0219057,0.05688528,-0.0041435384,-0.0017168158,-0.0023629759,0.016342347,-0.0029033746,0.010865923,-0.036463138,-0.04497043,0.03249925,0.037413545,-0.002183326,-0.029277142,0.014905148,-0.015322399,0.025104627,0.004601356,0.017408656,-0.020028068,0.00020283056,0.0082581015,0.014140187,-0.020271465,-0.008704328,-0.03398281,0.026425924,0.028628085,-0.03660222,-0.009735866,-0.0008142198,-0.016933454,-0.027886303,-0.0028700524,0.0020007784,-0.037367184,-0.02340085,0.014082235,0.028512182,-0.035651818,-0.017084127,0.012737758,-0.009191122,0.039940234,-0.02045691,0.010332768,-0.010987621,-0.014545849,-0.024316486,-0.009718481,-0.028419457,0.021812977,0.0029497358,-0.023597887,-0.019784672,-0.027561774,-0.0050388905,0.018173618,-0.011740992,0.0012061174,0.047265314,0.020885753,-0.008924545,-0.011404872,0.0008330541,-0.00040602332,-0.034979578,-0.0053083654,0.024316486,-0.01606418,0.015322399,-0.011115114,0.000816393,0.0043840376,-0.021789797,0.013282504,0.015090593,-0.03991705,-0.011416462,-0.0048128795,0.016979815,-0.0023021267,0.024965543,0.00913317,-0.007255539,0.009596783,-0.046848062,0.012169833,-0.027677678,-0.022102736,-0.021268232,-0.02624048,-0.03537365,0.040983364,-0.026008673,-0.01788386,-0.0051692817,0.0055054007,-0.03509548,-0.003665438,-0.009023062,-0.003395963,-0.008588425,0.000020305693,-0.045155875,-0.01608736,0.0027860226,-0.014093826,-0.0008982496,0.023899235,0.022960419,0.02116392,-0.002970019,-0.031525664,0.013097059,-0.00475203,-0.009185326,-0.00639206,-0.0056589725,-0.0005885708,0.005760388,-0.05438177,0.018567689,-0.004276827,-0.021731846,0.007191792,0.0142792715,0.012621855,0.050951034,0.004360857,-0.0020790133,-0.013375226,-0.037436724,0.01821998,0.06685295,-0.0009518548,0.036416776,-0.0043058028,0.00000884554,-0.011028187,-0.0211871,-0.0031699517,0.034979578,0.010668887,-0.02045691,0.00475203,0.030482534,0.0215464,-0.008159583,0.013583852,-0.03467823,-0.005951628,0.020885753,-0.033264212,-0.026982259,0.016249625,0.0014828362,-0.005140306,0.0027193783,-0.0007066472,-0.0050591733,-0.002225341,0.0023644248,-0.015681699,-0.03648632,-0.0029468383,0.008704328,-0.028604904,-0.0034944806,0.012691397,0.0037291846,0.021720255,0.022728613,-0.020700308,0.01864882,0.044437278,0.009469289,-0.014824016,0.009034652,0.0060037845,0.015913505,-0.0149167385,0.020978475,-0.029439406,0.0053692143,0.01929788,0.032568794,0.017292753,-0.04049657,-0.02994938,-0.008182764,0.012656626,0.010129937,-0.0046477173,0.023111094,0.021859339,0.025405975,-0.014198138,0.028373096,-0.008263896,0.015843963,-0.009382362,0.0029584286,-0.013097059,0.02482646,-0.010460261,0.011404872,0.003871166,-0.03143294,-0.019205157,-0.008866593,-0.008739099,-0.0041841045,0.019900575,0.0043000076,-0.0023267563,-0.0045231213,0.008205945,-0.021129148,0.002796164,-0.00008901001,-0.012714578,0.021500038,0.002562909,-0.045897655,-0.015507844,-0.023783332,0.02626366,0.019831033,0.0035987936,0.00509974,0.024362847,0.0032047227,0.013572262,0.019564455,-0.003816112,0.018880626,-0.017663645,-0.0037987265,-0.030528896,0.015983047,-0.015774421,-0.0024817768,0.042188756,-0.017605692,0.0065427343,0.020306235,-0.0100546,-0.007678585,0.042976897,0.00767279,0.00022039712,0.032429706,0.04348687,0.0025672554,-0.0154035315,0.03467823,0.031618387,0.050580144,0.01535717,-0.013421588,0.015299219,-0.020746669,0.01932106,0.015415122,-0.043255065,0.008263896,0.043000076,-0.010778995,-0.027863123,0.0074989353,0.0030685365,0.012332098,0.020259874,0.009793818,0.004317393,-0.012610265,0.013699755,-0.023945596,0.0028077543,-0.015461483,0.016156903,0.003856678,-0.037344,0.037367184,-0.059017897,0.018729953,-0.0041116653,0.012969566,-0.031525664,0.0013966332,-0.013746116,0.004937475,-0.014928329,-0.008536269,-0.011149885,0.007452574,-0.005711129,-0.058971535,-0.0036219743,-0.026425924,0.032360166,-0.0031931323,0.02589277,-0.000781622,-0.0061080973,0.020665536,-0.026425924,0.0056792554,0.019274699,-0.05048742,0.012320507,0.0024629424,0.016133722,0.032731056,0.0077249464,-0.02447875,0.021859339]);
INSERT INTO entities (id, name, description, description_vec) VALUES (8, 'OpenAI', 'OpenAI is a nonprofit artificial intelligence research company co-founded by Elon Musk in 2015.', [-0.004652373,-0.048142884,0.020703599,0.010351799,0.016364263,-0.012575439,-0.0488769,0.036873564,0.000483048,-0.013849175,-0.020045143,-0.06351406,0.024697516,-0.049351852,-0.04477504,0.029706102,-0.0488769,-0.038082533,-0.010681028,-0.050388113,-0.00523257,0.0049708067,-0.0024098428,0.001426206,0.0007967593,-0.03417497,0.0076046325,0.02821648,0.0029009865,0.0031735443,0.03523282,-0.015068938,-0.040953834,0.038341597,-0.05250381,0.014637164,-0.003208626,0.0024395273,0.011496003,0.013287867,0.0007603283,-0.037672345,0.01623473,0.040737946,-0.04822924,-0.018005006,-0.025258822,-0.032426283,-0.003108778,0.016245525,-0.041256078,-0.033937495,-0.020304207,-0.04322065,-0.02461116,0.0005029501,0.03825524,0.00906727,-0.010060351,0.092745215,-0.0197429,0.027029099,0.008009422,0.024157796,0.00743732,-0.011571563,-0.0431343,0.030288998,0.028130125,0.02752564,0.019116826,-0.0017392426,-0.020563273,0.012391935,-0.007496689,-0.041277666,-0.037305336,0.053281,-0.0011894045,-0.00088986073,-0.016806832,0.008311664,0.013190718,-0.065932006,0.013913941,-0.0536696,-0.03894608,-0.0004651698,-0.0663206,0.005882931,-0.02164271,0.0014518426,-0.019980377,0.020347385,0.029792458,0.012758943,0.031929743,0.0058937254,0.06834994,0.039593745,-0.056346603,-0.04188215,0.0059045195,0.015576274,-0.014928612,0.022948828,0.036290668,-0.021340467,-0.00046550715,0.00897012,-0.019160004,-0.009903833,0.011625535,-0.02016388,-0.040997013,-0.033095535,-0.061355192,0.00045977262,-0.01196016,-0.042054858,-0.033376187,0.030958248,0.021189345,0.018436782,0.03145479,-0.03726216,0.046113543,0.0076640015,-0.023833966,-0.02026103,-0.0020806144,0.036139544,0.01581375,0.022970416,-0.008991709,-0.05828959,-0.033807963,-0.024675926,-0.010848341,-0.022668174,0.017735148,-0.025388354,-0.021664297,0.031433202,-0.019850845,-0.03285806,0.011571563,-0.043997847,-0.00918061,-0.025431532,0.004530936,-0.0073347734,-0.04667485,-0.0010032016,-0.01282371,0.019624162,-0.004566018,0.03128208,-0.004841274,-0.03126049,0.035858892,0.042810466,0.0076046325,0.031692266,-0.008020216,0.08467103,-0.017551644,-0.030785538,-0.04719298,-0.028410777,-0.0006533966,0.004474266,-0.049654096,0.014745108,-0.0046145925,-0.027266575,-0.03432609,0.036161136,-0.028151713,-0.034110203,-0.024157796,0.021729063,0.003235612,0.053281,-0.066363774,-0.0031411613,-0.0331603,0.020606449,-0.017389728,0.0007191748,0.011593152,0.00318164,0.02854031,0.02156715,0.023726022,-0.029468626,0.0316275,-0.000386236,0.03706786,-0.016169963,0.008430402,0.0058397534,-0.002005054,0.0065845647,0.009849861,-0.030051522,0.05863501,0.0015193074,0.014637164,-0.0189765,0.03313871,-0.02048771,0.047926996,0.00033766133,-0.029447038,-0.055267166,-0.04546588,-0.045724947,0.012370346,0.05777146,0.010486729,0.026014429,-0.040262993,-0.004050587,0.009461264,-0.0005606325,0.01435651,-0.037499636,0.04207645,-0.020520095,-0.00022482646,0.019375892,-0.069515735,-0.014011091,-0.008489771,-0.018922528,0.03713263,-0.011765862,0.009477455,0.012758943,0.04343654,-0.056519315,0.036010012,0.021729063,0.022862474,0.009148227,0.01796183,0.024567982,0.010934696,0.02206369,0.06908396,0.008349444,0.032750115,0.019429862,-0.0008709706,-0.0016866201,-0.014820668,-0.0055429083,-0.0104975235,-0.041838974,-0.03147638,0.049654096,-0.017400522,-0.017011926,0.0037861248,-0.005791179,-0.033937495,0.0005771614,0.0055105253,0.030548062,-0.015695011,-0.00046280856,-0.024913402,-0.03467151,-0.011668713,0.034714688,0.010017174,0.048056528,-0.06532752,0.056389783,0.018922528,0.010200678,0.0026270794,-0.00025602893,-0.023985086,-0.008057996,-0.0024732596,-0.031044604,-0.047365688,-0.01905206,0.014097446,0.0046550715,0.03983122,0.0251077,0.04134243,-0.0134713715,0.034563567,-0.00027728034,0.03931309,0.027979003,0.056303427,0.0015948679,0.0072430214,-0.063470885,0.013978708,0.02769835,-0.06934302,0.053281,0.05708062,0.03197292,-0.00847358,0.017907858,0.0026850991,-0.0268348,-0.031152548,0.0012008735,0.00012582185,-0.023833966,0.023898732,-0.0015773271,-0.035750948,-0.018393604,-0.034908988,-0.0020630737,-0.025021346,-0.008657084,0.07465386,0.021804625,-0.07607871,-0.02700751,0.01769197,-0.053237826,-0.018922528,-0.039572153,0.019634956,0.008122763,-0.002164271,-0.037370104,0.017508466,-0.05354007,-0.05859183,-0.0285619,-0.061312012,0.021944951,-0.036053192,0.038341597,-0.06467985,-0.015079733,-0.019505424,0.0038023163,-0.006660125,0.011701096,0.027093865,-0.016644916,-0.07128601,-0.01650459,-0.014561603,0.007059517,0.05012905,0.0077827396,-0.04874737,0.014788285,0.05643296,0.030526474,0.0107242055,-0.054576326,-0.0052487617,0.02821648,0.033181887,-0.044429623,-0.015360386,0.018641874,0.012283991,-0.024567982,-0.00252993,-0.0007583044,0.014507632,-0.011021051,-0.022128455,-0.0056670434,0.031023014,0.00987145,-0.030958248,-0.0039021643,-0.0046739615,0.016968748,0.03588048,-0.018771406,-0.04376037,-0.0105245095,-0.0039291503,-0.021416027,-0.016040431,0.006039449,0.007982436,0.018069772,0.007761151,-0.03557824,0.029209562,0.04054365,0.0060448465,-0.016493795,-0.028281245,-0.0021534765,-0.0045282375,-0.0056292634,0.02597125,0.047020268,-0.01640744,0.04123449,0.027137043,-0.020131497,0.019462246,0.011280115,0.023013594,-0.0050571617,-0.028950496,0.004590305,-0.02666209,0.036463376,0.019462246,0.012337963,0.014507632,-0.032879647,0.0065845647,0.058203235,0.02374761,-0.037197392,0.025388354,-0.020692805,0.008824396,-0.004355528,-0.012985625,-0.07029293,-0.021340467,-0.009920024,0.0034622937,0.010988668,-0.033613663,-0.002137285,0.03501693,0.01727099,-0.046243075,-0.05047447,-0.036312256,-0.013719643,-0.0557853,0.022819296,-0.02093028,0.03059124,0.010783575,-0.030159466,0.0475384,0.019343508,0.009018695,-0.024071442,-0.018393604,0.019462246,0.020368973,0.0536696,-0.020768365,-0.06049164,-0.030807128,0.009741917,0.030634418,-0.019904817,-0.0071242834,-0.001134758,-0.026100783,0.008419608,-0.012802121,-0.021275701,-0.013849175,-0.029274328,0.021340467,-0.004328542,0.0135145495,-0.048833724,-0.0032787893,-0.017756736,-0.03970169,0.021135373,0.012780532,0.011722684,0.028799376,-0.014982584,-0.04585448,0.044861395,0.0022762625,-0.019386686,0.06088024,0.0052919392,0.027568817,-0.0074804975,0.041493554,-0.025345176,0.011431237,-0.036808796,-0.013784409,-0.019084444,0.0032275163,-0.032059275,-0.02307836,0.03348413,-0.03076395,0.021761447,-0.015198471,0.02147,0.019688928,0.046458963,0.0010112975,0.016148375,-0.011236938,-0.007966244,0.00046820575,0.03454198,0.023898732,0.032879647,0.020520095,-0.0019969582,0.012337963,-0.017400522,-0.016817626,-0.0007596537,-0.009137433,-0.010783575,-0.024675926,-0.04054365,-0.020606449,0.006179776,0.031929743,-0.023315836,0.0195486,-0.02789265,-0.027504051,-0.024049854,0.01855552,-0.030008344,-0.02041215,0.0042313924,0.02359649,0.013795203,0.041104954,-0.004109956,-0.023272658,0.012176048,-0.042054858,-0.009752712,0.013805998,0.027482463,0.047106624,0.043501306,0.022128455,-0.03894608,0.028194891,0.024136208,0.003850891,-0.021448411,0.028605077,-0.0075992355,-0.020034349,0.011015653,0.00018738348,0.043112706,0.014151417,0.009482853,-0.0038859728,0.020951869,-0.015695011,-0.03434768,-0.015058144,-0.029015264,0.00005662827,0.009941613,0.02754723,0.037348516,0.0013816792,0.0001403268,0.041126546,0.013374222,-0.0136656705,-0.01581375,-0.02821648,0.022365931,-0.00073266774,0.04138561,-0.042659346,0.060318932,0.023466958,0.047624756,0.025755363,0.02164271,0.022052895,-0.04119131,-0.027806293,-0.035319176,0.01700113,-0.01895491,0.018717434,0.035643004,0.0063740746,-0.010519112,0.0048979446,0.010681028,-0.024589572,-0.021502383,0.016990336,0.030569652,0.06891125,-0.0073023904,-0.009720329,-0.009677151,0.030224232,0.0103949765,0.0059908745,-0.01153918,-0.008662481,0.024395272,0.03439086,0.006233748,0.010967079,-0.052072033,-0.012078898,0.051035773,-0.00048203603,-0.014842257,0.014572398,0.023186304,-0.043846726,0.024481628,0.03553506,0.046761204,0.008630098,-0.017843092,-0.04343654,-0.014647958,-0.0022587215,-0.014388894,0.04667485,-0.026295083,-0.01033021,0.012564645,-0.0016326483,-0.0017028117,0.0029603555,-0.018479958,-0.006568373,-0.02137285,-0.01717384,0.006908396,-0.035599828,-0.017637998,-0.017303374,0.00085882697,-0.012564645,0.016148375,-0.012910065,-0.0037429472,0.02023944,0.033764783,-0.028194891,-0.025539476,0.007442717,0.013644082,-0.031346846,0.035124876,0.019095238,0.038492717,0.0097743,-0.027784705,-0.05146755,-0.00039837966,-0.029317506,0.05621707,0.0033111726,-0.05690791,-0.017227812,-0.010324813,0.038147297,-0.021783035,0.011938572,0.012046515,-0.03797459,-0.010011777,0.024157796,-0.017119868,0.0038212065,0.02006673,0.034067027,-0.03385114,-0.029792458,0.016483001,0.028993674,0.007534469,0.012942448,0.017853886,0.017227812,0.0037402487,-0.027935825,-0.025086112,-0.010486729,0.06303911,0.0251077,-0.009159022,-0.014518426,-0.008122763,-0.0036565925,-0.01546833,0.0044418825,0.016418235,-0.039744865,-0.054749038,0.033052355,0.028065357,0.039421033,0.012931653,0.041946918,0.011776656,-0.012078898,-0.026251905,-0.03864384,-0.005151612,0.0136224935,0.005127325,-0.018490754,-0.049956337,-0.006039449,0.034153383,-0.035297584,0.006962368,0.020628039,-0.030979838,-0.047926996,-0.0012885778,0.018415192,-0.008484374,-0.025237234,0.021264905,-0.05349689,-0.0051354207,0.019257154,-0.0005144191,0.013266279,-0.0078097256,-0.03557824,-0.016439823,0.0033570486,0.03370002,0.028756198,0.0066763167,-0.0019578286,0.0048115896,0.01870664,-0.022322753,0.003017026,-0.007404937,0.014885434,-0.004096463,0.048358772,0.026187139,-0.013158335,0.0024530203,-0.017109074,0.01642903,0.023164716,-0.031929743,0.021426821,-0.008824396,0.01872823,0.005909917,0.017670382,0.028432367,-0.0076855905,-0.015414358,0.022992006,0.0055078263,0.0070433253,-0.014745108,0.041299254,-0.01546833,0.01600805,-0.010373388,0.020725187,-0.0034083219,-0.018436782,0.0134713715,0.024006676,0.006568373,-0.023359014,0.0016569356,-0.049179144,-0.011139789,0.021178551,-0.038406365,0.01359011,0.019937199,0.021254111,-0.01685001,0.00071107905,0.016655711,-0.0076316185,-0.0018647271,0.007081106,0.0062499396,0.040219817,0.0105514955,-0.02443845,0.02940386,-0.021934157,-0.027611995,-0.0017001131,0.0035918262,-0.012003338,-0.03555665,-0.0034299106,0.012294786,0.014766696,-0.021837007,-0.034304503,0.035340764,0.01675286,0.025669008,-0.0006908396,-0.024200974,0.04019823,-0.00782052,0.00935332,-0.017724354,-0.05401502,0.0189765,0.026424615,-0.020304207,0.014248567,-0.0060232575,0.020800749,-0.006088024,-0.011528386,-0.039874397,-0.030742362,0.027849471,-0.022214811,0.0029333697,0.013827587,0.049999516,-0.013870764,-0.024244152,-0.011830628,0.041774206,0.0016555863,0.003686277,-0.006449635,-0.029511804,0.006061038,-0.031044604,-0.018307248,0.014442865,-0.023574902,-0.0027417697,0.037715524,-0.026554147,0.015144499,-0.029986756,0.031044604,0.0059045195,0.06817723,-0.049956337,-0.022031305,0.0020887102,-0.005178598,-0.040565237,0.019451452,0.040608414,-0.05859183,0.004557922,-0.0008554537,0.023315836,-0.002733674,0.043544482,-0.007377951,-0.025086112,0.019699723,-0.034261327,0.017983418,0.031433202,-0.030828716,-0.011496003,-0.019311124,0.003122271,-0.0049384236,0.0004921557,-0.046070363,0.006627742,0.008478977,-0.014604781,0.024546394,0.01223002,-0.015856927,0.028432367,0.006125804,-0.04203327,0.06472304,-0.016698888,0.016450617,-0.02048771,-0.008468182,0.008219912,0.010141309,0.008014819,0.0064280466,-0.018998088,0.032253575,0.013007214,0.022096073,-0.04084589,-0.011603946,-0.016796038,-0.0002782923,0.011388059,-0.022128455,-0.034995344,-0.008155146,-0.009806684,-0.03812571,0.010459743,0.015328003,-0.008678672,0.0025326288,0.011096611,-0.016785244,-0.01025465,0.01452922,-0.028777787,0.011496003,0.010367991,0.028820964,0.025712186,0.010103529,-0.011312498,-0.029878812,-0.014928612,-0.0034056234,0.0014383496,-0.00598008,-0.0020954567,-0.009445072,-0.0032140233,0.00064091565,0.028086947,-0.030807128,0.003764536,0.022128455,-0.024891814,0.027374519,-0.015414358,0.017065898,-0.027158631,0.026359849,-0.003883274,0.013773615,-0.008845985,0.042702522,0.029101618,-0.032685347,-0.03041853,0.0009465312,0.019084444,-0.00039669304,-0.0027255781,0.014205389,0.01922477,-0.016558561,-0.03691674,-0.00576959,-0.035945248,0.013503755,-0.0067087,0.06878172,0.014442865,-0.006541387,-0.046718027,0.02582013,-0.004425691,-0.010270841,-0.04322065,-0.019937199,-0.01205731,-0.0010106227,-0.011647124,-0.035297584,0.025992839,0.012003338,-0.036463376,-0.008333253,0.002898288,0.016569356,-0.047236156,-0.007842109,-0.036053192,0.009515236,0.008252295,0.021685887,0.020455329,-0.0010220917,-0.0073887454,-0.010222267,-0.037953,-0.029144796,-0.024567982,-0.06627742,-0.016439823,0.018987294,-0.0006948875,0.0015867722,-0.012683383,0.035815716,0.00027002787,-0.011409648,-0.019516218,-0.03985281,0.0026324766,0.026208727,0.022052895,0.062348273,-0.041752618,0.006271528,0.007167461,0.0018498849,0.023121538,-0.021437615,0.029554982,-0.015792161,0.00084938185,-0.011344882,-0.021448411,-0.012435112,0.0106378505,0.0064010606,-0.018987294,0.06329818,0.016439823,-0.010319416,-0.0011266622,-0.019516218,0.021664297,0.03780188,-0.0058667394,0.0052028857,0.01914921,0.006411855,0.03678721,0.023531724,0.026403025,-0.0052244742,0.04615672,-0.0018080567,-0.01247829,-0.041601498,-0.033268243,0.034412447,-0.00070028467,-0.030202644,-0.0197429,0.0066115507,0.010654042,-0.016018843,0.0016542369,0.0057533984,-0.013385017,-0.008522154,0.0016744764,0.010826752,-0.01332025,0.01546833,-0.021934157,-0.005432266,0.01794024,-0.019505424,-0.0064334436,-0.031864975,-0.01205731,0.049610917,-0.038190477,0.021394439,-0.031217314,-0.004147736,-0.0025326288,0.017044308,0.0012197637,0.03281488,-0.0072754044,0.003645798,-0.022106867,0.02582013,0.01435651,-0.026251905,-0.003327364,0.015414358,0.021297289,-0.017303374,-0.03132526,0.006600756,0.05181297,-0.008144351,-0.00611501,-0.044343267,0.0034838824,0.00054545293,-0.04481822,-0.030029934,-0.015252443,0.008732644,0.034801044,-0.021221729,-0.029943578,-0.024049854,0.030116288,0.009261568,0.02085472,-0.008943134,0.043242242,0.027568817,0.017497672,-0.022776118,0.019732106,0.0182101,-0.00019345533,-0.01196016,0.009752712,0.0017217018,-0.004333939,0.03797459,0.0020617244,0.028605077,-0.023726022,0.0052703503,-0.018717434,0.004037094,-0.004843973,-0.0038185078,-0.010767383,0.018177716,-0.0077125765,-0.0009364115,-0.011096611,-0.024546394,0.078928426,-0.023833966,0.04684756,-0.011701096,0.02394191,-0.034779456,0.005459252,0.010972476,0.005205584,0.0036646882,-0.015630245,-0.011269321,-0.016169963,-0.020800749,-0.0008986312,-0.003135764,0.0012933003,-0.004242187,0.022279577,-0.014119034,0.008781219,-0.017292578,-0.012208431,0.018005006,-0.0025002456,-0.007863698,0.04550906,0.013298662,-0.004579511,0.014658753,0.006929985,-0.009682548,0.014205389,0.0020293412,-0.010281636,0.048315592,0.04186056,-0.007896081,-0.03521123,-0.018566314,0.02085472,-0.02342378,-0.003599922,0.004576812,-0.016558561,-0.03404544,0.001301396,-0.031390022,-0.04276729,-0.06506845,-0.025712186,-0.016051225,-0.03348413,-0.0009890341,-0.014766696,0.011452825,0.006503607,0.02579854,0.006994751,0.039421033,0.026899567,-0.017281784,0.039377857,-0.008700261,-0.008176734,-0.01435651,-0.024934992,-0.040565237,-0.019710517,0.024719104,0.05708062,0.003586429,-0.012413524,-0.013892353,0.023143126,-0.013773615,0.02528041,0.018652668,0.03400226,-0.027374519,0.021232523,-0.024546394,-0.041299254,0.032966003,0.041968506,0.012240814,-0.010783575,-0.016720477,-0.009477455,0.019710517,0.011647124,0.020034349,-0.03901085,-0.008025613,0.0059854775,0.014237772,-0.004843973,0.014421277,-0.03024582,0.017907858,0.0174437,-0.007836712,-0.0037753305,0.01546833,-0.028928908,-0.015004172,0.0067842607,-0.015004172,-0.03128208,-0.000014884422,0.018641874,0.02309995,-0.0059423,0.015090527,0.012704972,0.016072815,0.03266376,0.0020590257,0.053755954,0.028669843,-0.006028655,-0.030915072,0.026856389,-0.030742362,0.013881558,-0.016105197,-0.008246898,-0.00036768318,0.011496003,-0.0033813359,0.026057607,-0.0042313924,-0.018339632,0.03760758,0.021869391,-0.03128208,-0.0048115896,0.030332176,0.024891814,-0.014658753,-0.02206369,0.01213287,-0.026079195,0.030526474,-0.013784409,0.007874492,-0.0056022773,-0.027050687,0.027935825,0.004968108,-0.024913402,-0.0028766992,-0.005764193,-0.0034245134,0.0013162383,0.05025858,-0.040997013,-0.0057264124,0.00036464728,-0.04294,0.0004412198,-0.01999117,0.016493795,-0.024934992,-0.020109909,-0.033311423,0.040219817,-0.03419656,-0.007140475,0.006034052,-0.010303224,0.0024098428,0.016375057,-0.024740692,-0.00782052,0.014993378,-0.03147638,-0.044343267,-0.04397626,-0.0031141753,-0.020012759,0.021124579,0.016839216,0.004552525,-0.004949218,-0.016536973,-0.017163046,0.02446004,0.025345176,0.009245377,-0.04188215,-0.0136009045,0.0024233358,0.007323979,-0.044645507,0.014712724,-0.049179144,0.00032737295,0.015014967,-0.03246946,0.015479124,0.017799914,-0.0011448778,0.018965706,-0.019116826,-0.016731272,0.015856927,0.030979838,-0.0007657255,0.015943283,-0.00015466307,0.032577403,-0.023207892,-0.030699184,-0.014237772,-0.0027134344,0.017065898,-0.049006432,0.009822875,0.016806832,0.0047144406,-0.0034865811,0.011927777,-0.019062854,-0.0016137582,-0.011474414,0.000119665696,-0.01146362,-0.0013297313,0.0032625978,0.011496003,0.028928908,-0.0134929605,0.00063416915,0.004808891,0.0028011387,-0.0035783332,-0.010319416,-0.03482263,-0.024827048,0.0053189253,0.023790788,-0.013212307,-0.00252993,0.00048271066,0.012165253,-0.0023464258,0.012866887,0.012165253,-0.018739024,-0.018350426,0.009310143,0.030850306,0.025539476,-0.036031604,0.0016852708,-0.028669843,-0.012111281,0.011690301,0.021113785,-0.0062229536,0.012683383,0.012769738,-0.02342378,0.006967765,0.0065737707,-0.029835634,0.018436782,-0.0174437,0.00021032152,-0.0024894513,-0.00018637152,-0.019958787,0.01566263,0.0000134824195,-0.052762873,-0.02597125,-0.016277907,0.0059962715,0.018523136,-0.023618078,-0.024589572,-0.02023944,-0.012391935,0.0023207893,0.00011932837,-0.0018040088,-0.0068706158,0.01872823,0.0043825135,0.019019678,-0.021318877,-0.028583487,0.02443845,0.000006872977,0.018145334,-0.004593004,-0.003985821,0.009083461,0.00085882697,-0.0034299106,0.050690353,0.013374222,-0.003791522,0.035858892,0.004649674,0.021513177,0.028605077,-0.022430697,0.040932246,0.0053755958,0.018328838,-0.014065063,-0.02512929,-0.021556353,-0.005086846,0.0106162615,0.020552477,0.0018080567,-0.009790492,-0.026575735,-0.0044499785,0.03970169,-0.0040532853,0.008700261,0.015079733,-0.0002890867,0.014119034,-0.018598696,0.013082774,0.018544726,0.01625632,-0.00893234,-0.016839216,0.033225067,0.003923753,-0.0066439337,-0.025863307,-0.052590165,-0.03328983,0.008840588,-0.0014504932,-0.0063794716,0.031238902,-0.035448708,0.016483001,0.044386443,0.002793043,-0.0052811448,0.0013189369,0.007199844,0.0051246267,-0.0062229536,-0.008899957,0.014399688,0.015554685,-0.051510725,0.0028766992,-0.027374519,0.0004088367,0.0028362204,0.0025825526,-0.009423484,-0.011226144,0.007108092,-0.014788285,-0.013957119,0.0045012515,-0.018922528,0.0070703113,-0.00011840073,-0.059412204,0.004161229,0.024395272,0.03132526,-0.0266405,-0.007237624,-0.005677838,0.004981601,0.033721607,0.009347923,-0.0038320008,0.024654338,-0.011107406,0.05505128,0.0059962715,0.013503755,0.013039597,0.0016596342,-0.009995585,0.0069245873]);
INSERT INTO entities (id, name, description, description_vec) VALUES (9, 'Musk Foundation', 'The Musk Foundation is a foundation where Elon Musk serves as president.', [-0.016346518,-0.053891156,0.02762038,0.05105233,0.00059663336,-0.00009516684,-0.031483047,0.04202393,-0.011157517,0.0046828995,-0.0067305774,-0.023013106,0.034554563,-0.04058125,-0.030831512,0.07906829,-0.05026118,-0.04407161,0.012937601,0.015694985,0.023455217,-0.020814179,0.016893342,0.037323583,0.008208163,0.04227989,-0.038254343,-0.0004286598,0.028318454,0.046235632,0.10126697,-0.016416326,-0.030086901,-0.009906805,-0.04309431,0.0077602332,-0.009633393,0.03481052,-0.011314583,0.03287919,0.018114967,-0.042884886,-0.032553423,0.045095447,-0.007312304,-0.031576123,-0.050400797,-0.007440284,0.023245797,0.051145405,-0.015264507,-0.029458636,-0.002908633,0.021779845,-0.0316692,-0.008836428,0.037882037,-0.013973074,-0.01653267,0.09652008,0.028318454,-0.021128312,0.0037550454,-0.022594262,0.033647068,-0.0077253296,-0.027038654,0.064036466,0.014240668,0.03639282,0.00876662,-0.006969085,0.008400133,0.017544875,0.0027079375,-0.008499026,0.024781555,0.004138985,0.00934253,-0.018266216,0.004130259,-0.017312184,-0.022466283,0.0058957995,-0.01557864,-0.023525026,0.001102372,-0.0034758167,-0.020546585,-0.024828093,-0.01691661,-0.0047788844,-0.03211131,0.056683443,-0.0152877765,-0.009610124,0.010994634,-0.000359398,0.014403552,-0.018871212,-0.018161505,-0.03762608,-0.006526973,-0.01927842,0.021116678,0.003155867,0.0022454648,0.004179706,-0.040046062,0.0059859673,-0.021442443,-0.01855708,0.08381517,0.00045483751,-0.031320162,-0.04207047,-0.044932567,-0.011762513,-0.024292905,0.007515908,-0.0041418937,0.025060784,0.017859008,0.022338303,0.011209873,-0.06250071,0.020034665,0.0013037948,-0.059568807,0.017765932,0.033298034,0.0073704766,0.03860338,0.05505461,-0.01393817,-0.06352455,-0.008173259,-0.048399657,0.003330385,0.032460347,0.020639662,-0.047934275,0.0039033857,0.020697834,0.040046062,-0.018382562,-0.03360053,-0.02638712,-0.055380374,-0.030435938,0.019732168,-0.052215785,0.016637381,0.019860147,-0.012600199,0.03085478,-0.034740716,0.016823534,-0.016567575,0.005549672,0.024502326,0.009726469,-0.007946386,-0.018359292,0.030715166,0.03713743,-0.025340013,-0.027038654,-0.036485896,-0.041162975,-0.07120334,-0.024572134,-0.0030744253,-0.0018033526,-0.0074111973,-0.046119288,-0.021803115,0.019255152,0.008190711,-0.024944438,-0.028295184,0.020814179,0.03290246,0.041442204,-0.05403077,0.016393056,0.0040575434,0.033996105,0.019162076,-0.054589227,-0.015334315,0.01429884,0.05058695,0.044979103,0.00065807824,-0.0468639,0.0019589644,-0.009063301,0.011268045,-0.02561924,-0.01381019,0.044234492,0.02066293,0.008522295,-0.0475387,-0.013658942,0.016614113,-0.0064746174,0.036509164,-0.030715166,0.00055700325,-0.0069981716,0.0075100907,0.0072948523,-0.02127956,-0.026666349,-0.036928006,-0.054356538,0.0061430335,0.0020040483,0.022885125,0.028714027,-0.045793522,0.016846804,-0.0006068136,0.049376957,-0.017079495,-0.0023138176,-0.0012318061,0.003481634,0.0216635,0.015415756,-0.0028053767,-0.039557412,-0.058591507,-0.039254915,0.027992686,-0.024502326,0.02890018,0.015357583,0.020162646,-0.032739576,0.030459207,-0.0059568807,0.034717444,-0.0069341813,-0.019825244,-0.023059644,0.014438455,0.037067622,0.055706143,0.05719536,0.015473928,0.04788774,-0.053193085,-0.0063000997,-0.05310001,0.014694415,0.009482144,-0.048120428,-0.016928244,0.020802544,-0.009836998,-0.042372968,-0.016963148,-0.0068003843,-0.027457498,-0.034763984,-0.0028591864,0.01244895,-0.014659511,0.0070621613,-0.036276475,0.023967138,-0.0034060094,0.038440496,-0.0069807195,0.053751543,-0.061942253,0.044420645,0.011558908,0.005095925,-0.014694415,-0.019883417,-0.043769114,0.030971127,0.02440925,0.0598015,-0.05775382,-0.023350507,0.005732916,-0.0051017427,0.018475639,0.0051279203,0.012344239,0.013181926,0.004758524,-0.02145408,0.03536898,0.031994965,0.022687338,0.03085478,-0.012018472,-0.0138334595,-0.007946386,0.048353117,-0.026526734,-0.0035398067,0.040441636,-0.0061488505,-0.038161267,-0.05877766,0.0064164447,-0.022082344,0.026107892,0.06571184,0.006137216,0.005090108,-0.050400797,-0.009371616,0.030226516,-0.016986419,-0.032250926,0.03415899,0.04409488,-0.02564251,0.032227654,0.04402507,-0.05282078,-0.025805393,0.018661791,0.010360551,-0.032064773,-0.06245417,-0.006352455,0.015694985,0.0034990858,-0.009807911,-0.0140777845,-0.025014246,-0.025037514,-0.011326218,-0.030086901,-0.013786921,-0.06915566,-0.0052995295,-0.024502326,0.014962009,0.01296087,0.0057939976,-0.03827761,0.01981361,0.056404214,0.0050784736,-0.03981337,0.0050842906,-0.020651296,0.019092267,0.026573272,-0.00275593,-0.011657801,-0.011052806,0.029342292,0.013612404,0.01670719,-0.023757717,-0.055613067,0.01483403,0.020872353,-0.04637525,-0.037533004,0.0045636455,0.1102023,-0.021244656,0.025572702,-0.018312754,-0.012111548,-0.024618672,0.007899848,0.009284358,0.01881304,-0.0051511894,0.03930145,-0.00821398,0.01958092,0.015590274,0.05207617,-0.046677746,-0.0037637714,-0.0371607,0.021989267,0.0041767973,0.027736725,-0.025782125,-0.02138427,0.060639184,-0.028364992,0.00048065162,0.009348347,0.00006780751,0.0078242235,-0.00017333636,-0.010610694,0.03211131,-0.039441068,-0.02789961,0.0043193204,0.02138427,-0.049749263,-0.019627457,0.009569403,-0.0400926,0.017719394,0.0044531175,0.05835882,0.025456358,-0.03385649,-0.010034785,0.0015648446,0.015183065,-0.004543285,0.030947857,0.016288346,-0.0140777845,0.02440925,0.046724282,0.03336784,-0.04360623,0.047259472,-0.01870833,-0.017242378,0.005311164,0.0007598804,-0.023455217,-0.0123907775,-0.0643157,0.011547274,-0.0015270325,-0.05081964,-0.020104473,0.017777566,0.035043214,0.008027827,-0.0074111973,-0.03611359,0.020011397,0.05179694,-0.013589134,-0.027271345,0.024874631,0.026736157,0.010633963,0.035718016,0.027457498,0.045374677,0.030040363,-0.00055700325,0.015148162,0.002002594,0.037882037,-0.027201537,-0.003749228,-0.015473928,-0.0075275428,-0.0024563407,-0.0066316836,0.0026803054,0.03760281,-0.03965049,0.0026075896,0.018487273,0.009092388,-0.019615822,-0.0123907775,0.042675465,-0.0281323,-0.003504903,-0.047655046,0.005430418,-0.029063063,-0.021361003,0.022547724,0.010558339,-0.008801524,0.04179124,-0.009453058,-0.015985848,0.022512821,-0.054170385,0.021640232,0.06366416,0.007312304,-0.022908395,-0.010180216,0.04179124,-0.045956403,-0.035508595,-0.028318454,0.004293143,-0.037463196,0.026247505,0.012041741,-0.012588564,0.01619527,-0.030529015,0.029691327,-0.030086901,-0.010366369,0.036276475,0.05831228,-0.029086333,-0.004083721,-0.03208804,-0.00423497,0.005168641,0.018464003,0.015729887,0.009005128,0.0011416385,-0.007859127,-0.0012259888,0.026805963,0.012670007,0.026782695,-0.033763412,0.0025159677,-0.038091462,-0.026852502,-0.031296894,-0.0016942788,0.022501186,-0.009133108,0.009115657,-0.05403077,0.0046596304,-0.0103431,-0.00546823,-0.04011587,0.011500736,0.05901035,0.013926536,0.012402412,0.033809952,0.009377433,-0.018056795,0.02540982,-0.012670007,-0.006183754,0.010133678,0.0034699994,0.00389466,0.030296324,0.057846896,-0.050168104,0.0423497,0.021547155,-0.02079091,0.000854411,0.011314583,-0.030226516,0.006777115,0.049935415,-0.0047701583,0.037183966,0.030738436,0.0057096467,0.013170291,0.032948997,-0.04055798,-0.022187054,-0.009575221,-0.020546585,-0.022419745,-0.035159558,0.046002943,0.028504604,-0.020511681,-0.024199829,0.016695555,0.013519327,0.017265646,-0.01830112,-0.007498456,0.00077805936,-0.012379142,0.03734685,-0.042489313,0.029481906,0.02225686,0.020569853,-0.058219202,0.015555371,-0.0075682634,-0.023036376,0.02515386,-0.0021233023,0.00785331,-0.018533811,0.019964859,0.037207235,-0.0058230837,-0.022512821,-0.018370926,-0.01468278,-0.027922878,-0.016823534,-0.011012086,-0.009226184,0.035741284,-0.0058056316,-0.0355784,0.010110409,0.015101624,0.031692468,-0.02187292,0.012693276,-0.011355304,-0.008260518,0.03383322,0.012542026,-0.005506043,-0.008964407,-0.008475757,0.03404264,-0.012460585,0.03660224,-0.009691566,0.008906235,0.005846353,0.03709089,0.031296894,-0.0056980127,-0.0102325715,-0.03213458,-0.036555704,0.016358154,-0.023455217,0.0016753727,0.02304801,-0.020511681,0.011657801,-0.0023094548,0.010360551,0.029924018,0.006643318,0.0042611477,-0.02140754,0.00032722123,-0.029574983,0.003877208,-0.026829233,-0.009679931,0.009080753,-0.030808242,-0.045258332,-0.045165256,-0.019732168,-0.027364422,0.01221626,0.030505745,-0.046701014,0.014170861,-0.030482477,-0.010465262,-0.009034215,0.06492069,-0.011494919,-0.0052122707,-0.0027632015,0.028155569,-0.04900465,0.0063873585,0.005168641,0.019336594,0.037556272,-0.02145408,-0.047236204,-0.07767214,0.026084622,-0.02191946,0.01989505,-0.01817314,-0.016160365,0.0034467303,-0.0020753099,-0.038138,-0.025293475,0.010302379,0.039510872,0.01112843,-0.020360433,0.035531864,0.047794662,-0.028178839,-0.022140516,0.005825992,0.056916133,-0.0013336083,-0.01270491,-0.040464904,0.016358154,0.040651057,-0.0043105944,0.0010463808,0.024711747,-0.01981361,-0.03066863,0.012763082,-0.018533811,-0.0068178363,-0.037439927,-0.06906258,0.020744372,0.03436841,0.06049957,0.010046419,0.04653813,-0.03937126,-0.003964467,0.0028286458,-0.021931095,-0.011000451,0.020476777,-0.013775287,-0.026782695,-0.0057910886,0.03360053,0.040418368,-0.02089562,-0.0069283643,-0.018010257,0.004313503,-0.04183778,0.009010945,-0.058544967,-0.013891632,0.0029289937,0.0069516334,-0.056124985,-0.0077195126,0.0016070198,-0.017393626,-0.024083482,0.00329839,-0.027294613,0.017603047,0.030319592,0.015311046,0.01755651,0.0037812232,-0.0106979525,0.007126151,0.009237819,0.0033042072,0.0035252634,-0.022140516,0.021849653,0.010162764,0.044886027,0.0073297555,-0.05323962,-0.014903837,-0.0070388922,0.006590963,0.0026468562,-0.009813729,0.007033075,0.014426821,0.04132586,-0.028015954,0.02641039,0.03383322,-0.00025159676,0.0017742662,0.011739244,0.0077195126,0.011227324,0.011058623,-0.013414617,-0.016276712,0.024385981,-0.017509973,0.02810903,-0.023967138,-0.03439168,0.022477917,0.019464573,-0.0045723715,0.039208375,-0.00038430316,-0.0060615917,-0.011489101,-0.00640481,0.0021625687,-0.0037405023,-0.016265078,0.04479295,-0.025107322,-0.005258809,0.031064203,-0.0047847014,-0.022408111,-0.0016681012,-0.014636242,0.03308861,0.0035252634,-0.0059917844,-0.024967708,-0.022757147,-0.013007408,0.016974783,0.00012679823,0.012076645,-0.008196528,-0.005706738,-0.012076645,0.030529015,-0.069807194,-0.03760281,-0.023478488,0.007911482,0.0031209635,0.006806202,-0.050912715,0.013298271,-0.006009236,-0.0016695554,-0.01493874,0.00012098096,0.00075624464,0.011308766,-0.020255722,0.032297462,0.020907255,-0.015485563,0.004546194,0.02592174,-0.022024171,-0.04504891,-0.039138567,0.002319635,0.022570994,0.024967708,0.037439927,-0.003775406,-0.028295184,-0.042512584,0.019673996,0.000037016904,0.024595402,-0.064362235,-0.041977394,-0.008987676,-0.0016128371,-0.027829802,0.028364992,-0.03760281,-0.00022578266,0.025758855,-0.01112843,0.0013721477,-0.031320162,0.025526164,-0.006084861,-0.00069734483,0.005974333,-0.0152877765,0.014508262,0.056124985,-0.0034670907,-0.009918439,0.011349487,-0.02738769,-0.00470326,-0.034182258,0.019348228,-0.00927854,-0.012018472,0.016416326,-0.013891632,-0.012914332,-0.007463553,0.037533004,0.02540982,-0.018184775,-0.0020738554,-0.023013106,0.026666349,-0.006241927,0.017754298,-0.023129452,0.04358296,-0.0037143247,-0.021582058,0.035462055,-0.01581133,-0.01296087,0.017416896,0.014973643,-0.0010645598,0.01621854,-0.03981337,0.021477347,-0.034763984,-0.014845664,0.008190711,-0.0038190354,-0.020081203,-0.004947585,-0.017335454,0.059708424,-0.027550574,0.016334884,-0.025014246,-0.023036376,-0.005782363,0.01076776,-0.0002455977,0.0039673755,-0.020011397,-0.011489101,-0.01457807,-0.0013430613,0.026084622,0.042535853,-0.023199258,0.016881706,0.023990406,0.02302474,0.016509403,0.015892772,-0.0109480955,-0.00044065792,-0.012169722,-0.0031965878,0.07329756,-0.011506553,0.0048835953,0.0078067714,0.030552283,0.040860478,0.009412337,-0.016102193,-0.0042756908,-0.009947525,0.003449639,-0.043024503,0.0035950707,0.012542026,-0.021803115,0.0145664355,-0.012227894,-0.00342637,-0.022966567,0.017486703,-0.017859008,0.044676606,0.0007911482,0.003385649,-0.00031358702,0.0028170112,-0.018510541,-0.016660651,-0.047259472,0.006154668,-0.012774717,0.023874061,-0.022733876,-0.024525596,0.004962128,-0.011186603,-0.01868506,-0.021710038,-0.024223097,-0.014694415,-0.024199829,0.02253609,0.054868456,-0.01655594,0.01381019,0.02006957,-0.008126721,-0.031017665,-0.009819546,-0.020488413,-0.039254915,-0.015741523,-0.003987736,-0.0024519777,0.009295992,0.014345379,-0.071529105,-0.00423497,0.023094548,0.008312874,-0.0062593785,0.016858438,0.048073888,0.0034205527,0.018114967,0.024176558,0.035811093,-0.023129452,-0.0069749025,0.0027472042,-0.027829802,0.0011627261,-0.021814749,-0.014519897,0.018522177,0.020034665,-0.008051096,-0.0113204,0.0077485987,-0.061383795,0.023187624,-0.020837449,-0.043280464,-0.026945578,0.0012463493,0.028271915,0.018719964,0.03909203,-0.053658467,-0.024572134,0.0052035446,-0.020348798,-0.019755436,0.014636242,0.018650156,0.0028271915,-0.0055293115,-0.0067131254,-0.044211224,-0.029993825,0.038696457,0.010424541,-0.022221958,0.051890016,0.02841153,0.005860896,-0.0155321015,0.0057532764,0.026829233,0.01419413,0.0076962435,0.021314465,0.0022192872,0.028946718,-0.0046334527,-0.023734447,0.025712317,-0.008115087,0.042861618,-0.022570994,-0.028946718,-0.020500047,-0.0012230802,0.0066491356,0.0054740477,-0.005258809,-0.014310475,0.010407089,0.031040933,-0.022396475,0.0069167297,-0.030947857,-0.010162764,-0.00944724,-0.016718823,0.054170385,-0.017347088,0.0017437256,-0.0020142284,0.0051890016,0.033949565,0.003440913,-0.002153843,-0.043187387,0.0015953853,0.032204386,-0.030529015,0.00093876134,-0.0034903598,-0.033949565,-0.035392247,0.023164354,-0.022582628,0.01344952,-0.0063640894,0.011937031,-0.033274762,0.02710846,0.034763984,-0.013158657,-0.027457498,0.008935321,0.009679931,-0.018778136,-0.02355993,-0.00876662,0.022454647,-0.028178839,0.016893342,-0.008184894,-0.0051366463,0.005168641,-0.0303894,-0.044420645,-0.016009117,0.009458875,0.028202107,-0.0017553602,-0.020360433,-0.04262893,0.031529583,0.03232073,0.00085368386,-0.0070447098,0.0064978865,0.008144173,0.011180786,0.015974214,0.015718253,0.0020418605,-0.010261658,0.0072192275,0.014962009,0.0043804017,0.011634532,0.0034147354,0.010366369,0.022617532,-0.04826004,-0.021395905,-0.010255841,-0.013275002,-0.027759995,-0.0023254522,-0.018347658,0.030040363,-0.006486252,0.01183232,-0.014892202,0.00077151495,0.03306534,-0.01606729,0.07320448,0.010866653,0.03439168,-0.02810903,0.009348347,0.0013256096,-0.0131121185,-0.00963921,-0.009650845,0.024455788,-0.0060150535,0.023106182,-0.012949235,-0.030319592,-0.0023647188,0.0063640894,-0.0056951037,0.013624038,0.00598015,0.007818406,-0.007033075,-0.00866191,0.02859768,0.0038713908,-0.00010998269,0.028481336,-0.0055322205,0.013496058,0.01670719,-0.024758285,-0.04479295,0.007713695,0.0076089846,0.010186033,0.016241807,0.011244776,-0.020581488,-0.032460347,0.026038084,-0.008760803,-0.023443583,-0.0074810046,0.0011947211,-0.019604187,0.008522295,-0.011983569,-0.03737012,-0.026805963,0.008324509,0.023141086,-0.041721433,0.0008805887,0.0029813491,0.014531531,0.011971935,0.0040808124,0.008976042,0.024828093,-0.04083721,0.030598821,0.016904976,0.014170861,0.004717803,-0.01445009,-0.006573511,-0.019371497,0.0059016165,-0.034903597,0.056916133,0.047748122,0.0177892,-0.009947525,0.011076075,0.006247744,0.0025901378,0.008167442,0.035275903,-0.007998741,0.008208163,-0.013624038,-0.0013859638,0.04060452,0.017579779,0.031483047,-0.0045345593,-0.010593242,-0.011035355,0.0030627907,0.037323583,0.01604402,-0.011454198,0.013158657,-0.017986987,-0.014892202,-0.035811093,0.0114367455,-0.033926297,0.003385649,0.041139707,-0.001290706,0.01057579,-0.022361573,-0.011041172,-0.0076089846,0.0061721196,-0.018289486,-0.0051104687,-0.034833793,-0.00470326,0.0180917,-0.021989267,-0.0064164447,-0.016567575,-0.0019691447,0.03239054,0.032506883,0.017137667,0.03411245,-0.012797986,-0.0077020605,0.013275002,-0.024060214,0.041162975,-0.019697264,0.0039615585,-0.0065444247,-0.011971935,0.007364659,0.020883987,-0.00045738256,-0.009412337,0.035043214,0.023315603,-0.031925157,-0.02561924,0.022477917,0.004749798,0.013147022,0.031110741,0.029109601,-0.040232215,0.032832652,-0.019697264,0.012658372,-0.019313324,-0.021582058,0.002536328,0.034484755,-0.036509164,-0.0026032268,-0.013565865,-0.007876579,0.038138,0.0066840393,-0.03385649,0.031506315,0.026503466,-0.033181686,-0.0239206,-0.0006609869,-0.005506043,-0.005200636,-0.015648447,-0.037765693,0.011221507,-0.023850793,0.009138926,-0.00040902654,-0.027480766,-0.007091248,0.018964289,-0.029551713,-0.027224807,-0.0011845409,0.003013344,-0.02117485,-0.0095054135,0.024269635,-0.028690757,-0.01332154,0.016765362,0.01593931,0.00598015,-0.020081203,-0.010465262,0.042977963,0.0012987048,-0.019487843,-0.008382681,0.005020301,0.020453509,-0.009813729,-0.020488413,-0.012134817,-0.04006933,-0.0029842576,0.012309336,-0.005613662,0.016486133,-0.014380283,-0.009040032,-0.03457783,-0.03636955,-0.013530961,-0.004671265,0.024316173,-0.013007408,0.010930643,0.03883607,0.024572134,0.00766134,-0.00015470292,0.023187624,0.0010463808,0.015729887,0.0031704102,0.019034095,0.010372186,0.042931426,0.012169722,-0.0017844464,-0.02915614,-0.028458066,-0.021500617,-0.008219797,-0.02641039,0.042698734,-0.01493874,0.015311046,-0.035927437,-0.0017349997,0.03585763,-0.0063931756,-0.0024316174,-0.01445009,-0.038580112,0.0090283975,-0.0070388922,-0.03683493,0.014985278,-0.014624608,0.013077215,-0.010261658,-0.013658942,-0.011814868,0.013077215,0.022617532,-0.00753336,0.011710158,-0.011710158,0.0054275095,0.016986419,-0.03688147,0.016020752,-0.03360053,0.02443252,0.026875772,0.036462627,0.022850223,-0.012856158,0.0077253296,0.0013474243,0.008539747,-0.00598015,-0.027666919,0.0020200456,0.013763652,-0.0019560559,-0.0092552705,0.02176821,-0.027573843,-0.0097497385,0.029598251,-0.012006838,0.000021053505,-0.02374608,0.0035223549,-0.0068934606,-0.007271583,-0.0020913072,-0.03367034,-0.009947525,-0.02194273,0.004226244,0.0007686063,-0.036229935,-0.012739813,0.020581488,-0.0016026569,-0.023362141,-0.030552283,-0.0013925082,-0.033274762,0.011937031,0.041186247,0.013647307,0.0022934573,-0.031645928,-0.0014608611,0.034065913,-0.023850793,-0.012274432,-0.0056427484,-0.011721792,-0.02353666,0.020034665,-0.009482144,0.0021887466,-0.0046596304,-0.015497197,-0.021488981,-0.0009867538,-0.031692468,0.00063117343,-0.0058870735,-0.023117816,0.019452939,-0.014229033,-0.026573272,0.0038888426,0.010732857,0.013519327,0.035182826,0.018673426,0.049376957,0.020127742,-0.024548864,-0.0050261184,-0.0060208705,0.021395905,-0.0027442954,-0.03308861,0.016288346,0.02394387,0.005607845,-0.02543309,-0.03355399,-0.0050086663,-0.008301239,-0.040790673,-0.008382681,-0.0008027828,-0.014752587,0.01606729,0.043443345,0.003996462,0.017312184,-0.02104687,0.011314583,-0.028155569,0.0358809,0.00063044624,-0.017172571,0.03313515,-0.036904737,-0.014519897,-0.006055774,0.020849083,-0.0027108463,-0.007923117,0.014868933,-0.0030976944,0.016032387,0.019708898,-0.00979046,0.0031616844,-0.0026061353,-0.022722242,0.02692231,-0.051936556,-0.021616962,0.013484423,0.020453509,0.0033129333,-0.013752018,0.043931995,0.009848632,0.014868933,0.03355399,-0.021105042,0.010488532,-0.0023952594,0.014042881,0.020151012,-0.018731598,0.0045316503,-0.0021014875,-0.008184894,0.0018673425]);
INSERT INTO entities (id, name, description, description_vec) VALUES (10, 'Forbes', 'Forbes is a global media company that estimated Elon Musk\'s net worth to be $196 billion as of April 2024.', [0.025985174,-0.05715866,0.0050711418,-0.0040520085,0.009193999,-0.008381963,-0.023064021,0.06391655,-0.011673708,-0.03165308,-0.03699399,0.021625245,0.036231004,-0.061038997,0.0072211316,0.012294998,-0.06287017,-0.044318672,-0.063829355,-0.02626857,-0.07128483,-0.021919541,0.007117583,-0.018573295,0.0058150548,0.031304285,-0.07154643,-0.036056608,-0.036710598,0.019641478,0.028492132,-0.01158651,-0.001312066,-0.008114917,-0.041157726,-0.031413283,0.023238419,-0.010741774,0.028274136,-0.0014237892,-0.039173957,-0.004400803,-0.022911424,0.040002342,0.036056608,-0.028143339,-0.011804506,-0.031718478,0.07185162,0.023325616,0.0028257787,-0.024263002,-0.0037931378,0.00056747196,0.0025246711,-0.022192035,0.041789915,-0.01036573,-0.052057546,0.06871247,-0.014682059,-0.022693427,0.012534794,-0.03856357,0.022628028,-0.011946204,-0.07455478,0.046476837,0.03293926,0.005722406,-0.019358082,0.061431393,0.010044185,0.024197603,0.026530165,-0.047348823,-0.019848574,0.010785373,0.024132203,-0.04503806,0.0073519293,0.015183451,-0.0039838846,0.0017671335,-0.02624677,0.007869671,0.007689824,-0.027620146,-0.043446686,-0.022715228,-0.04630244,-0.047872014,-0.037364587,0.013243282,-0.0029593015,-0.031544082,-0.01277459,0.0024006856,0.033397052,-0.024546398,0.0012044302,0.041898914,-0.010578277,-0.012894488,0.024066806,0.068102084,0.0026432066,-0.044602066,-0.016611326,-0.013374081,0.034966625,0.013156084,0.0036759647,-0.0008147616,-0.040024143,-0.02128735,-0.031173488,-0.05550189,-0.01341768,0.014507662,0.024546398,-0.008398312,0.04804641,0.052624337,0.037015792,-0.021025755,-0.015357848,0.03470503,-0.001857057,-0.06557333,-0.016883822,0.0128726885,0.042487502,0.0066488907,0.022388233,-0.055545487,-0.00547171,-0.029756512,0.009106801,-0.03102089,-0.012534794,0.022072138,0.008556359,-0.00021714487,-0.051403556,-0.0039893347,0.0244374,-0.027096955,-0.03723379,-0.025919775,-0.0014823757,-0.036165606,0.011281315,0.016796624,0.06784049,0.008937853,0.0060058013,0.043839082,-0.021036655,-0.06134419,-0.013624776,0.0015763866,-0.009591843,-0.019227285,0.06151859,0.06984606,-0.001463301,-0.030301502,-0.0367542,-0.03764798,-0.030366901,0.011085118,0.026072372,-0.05846664,0.019750476,-0.016197134,-0.008681707,-0.0022031264,0.028143339,-0.004817721,-0.00669249,0.011194116,0.035533417,0.046694834,-0.061692987,0.0015368748,-0.006469044,-0.045299657,0.032590464,-0.065442525,0.008676258,0.018791292,0.039871547,0.016578628,-0.025265785,-0.033179056,0.004438952,-0.041005127,-0.033898443,0.008305663,-0.020480763,0.025331184,0.022998622,0.02864473,-0.042531103,-0.016273433,-0.013341381,0.037408184,0.018693194,-0.011025169,0.037408184,0.014453162,-0.049005594,-0.019706877,-0.0049021947,-0.011172317,0.010196783,-0.034072842,0.018387998,0.036361802,0.008376513,0.05977462,-0.01156471,-0.020578863,0.008834305,-0.0096626915,0.013635676,0.04573565,0.0032781211,-0.011968004,0.028862726,-0.004373553,-0.007678924,-0.048308007,-0.02681356,-0.022366432,0.016197134,-0.024502797,0.006147499,0.020611562,-0.019096486,-0.02135275,-0.022933224,0.002313487,-0.010529228,0.0041228575,0.01524885,-0.027750945,0.018475197,0.020905856,0.050880365,0.050139178,0.055632688,0.061867386,0.015913738,-0.017744908,-0.00486677,0.007019485,0.030192504,-0.034072842,-0.031369686,0.048002813,-0.076734744,-0.07887111,0.045168858,0.025701778,-0.044623867,0.0017998329,-0.007847872,-0.017505113,-0.02195224,0.008071317,-0.011183216,-0.045822848,-0.019892173,-0.024502797,-0.0074064285,-0.022006739,-0.053757917,0.0366234,0.035075624,-0.006398195,0.0058859033,0.023827009,-0.015597644,-0.004934894,0.04078713,0.049615987,0.013254182,-0.054281108,0.025832577,-0.034879427,0.042269506,-0.023892408,0.044493068,-0.01461666,0.055589087,-0.048002813,0.007777022,0.039413754,0.049833983,0.004869495,-0.0048095463,0.03416004,-0.027075155,0.042814497,0.0038776114,0.023543613,0.03411644,0.010109584,-0.0054989597,0.025897974,-0.00013914303,-0.043315887,-0.03450883,0.053234726,0.009199449,-0.027140554,-0.012938088,-0.013668376,0.019794075,-0.030802894,-0.049092796,0.009798939,0.030519499,0.008758007,0.01704732,-0.0064199944,-0.0012091988,0.006229248,-0.029058924,0.025679978,-0.007133933,-0.07760672,-0.0030356,-0.0073028803,-0.0038231122,-0.031587683,-0.002718143,-0.035119224,-0.0005058198,-0.005545284,-0.019586978,-0.026290368,-0.028862726,-0.006458144,-0.06470134,-0.010011486,-0.0012439421,0.0075317766,0.01649143,0.00610935,0.056199476,0.0022630754,-0.024524597,-0.014049869,0.00019244997,0.014823757,0.023020422,-0.026682762,0.008687157,0.027968941,0.038519967,0.041375723,-0.024982389,-0.0183771,-0.025854375,0.06587852,0.038541768,-0.030541299,0.010578277,0.0112922145,0.06552973,-0.04338129,0.03424724,-0.021995839,0.02552738,0.005400861,-0.008485511,-0.026355768,0.03960995,0.012905388,0.020219168,-0.00364599,-0.010420229,0.0037059393,0.024393799,0.0040029595,-0.05415031,-0.069715254,-0.0054553603,-0.011085118,-0.011477511,-0.03418184,-0.012240499,0.0011560622,0.03112989,-0.007193882,-0.007008585,0.026355768,-0.0050793164,-0.0124911945,0.003417094,-0.047959212,0.0121424,-0.026377566,0.006534443,0.025200386,-0.02078596,0.00035901286,0.014071669,-0.016927423,-0.025636379,-0.015052653,0.009030501,0.012055202,0.025069589,0.044732865,-0.05615588,0.032132674,0.022649828,-0.021123853,0.011793606,0.033375252,0.0043626535,0.021407248,-0.003474318,-0.0038421869,0.014442263,-0.05968742,0.00731378,-0.00010508109,-0.02202854,-0.015379648,-0.017385215,-0.0011451625,0.04311969,-0.0018979313,-0.021668844,0.0047059976,0.036296405,0.008725307,-0.011804506,-0.036361802,-0.025091387,-0.006338246,0.009989686,0.021494446,-0.019259984,-0.02260623,0.018627794,-0.005357262,0.025570981,-0.030214304,-0.058117848,0.011259515,-0.0009407908,0.0051692403,-0.0040710834,0.019990273,-0.03908676,-0.014387764,0.0045888247,-0.03581681,0.026748162,0.000266705,-0.014202467,0.039827947,-0.027554749,-0.007995019,0.0182899,-0.0068014883,-0.02620317,0.008011368,0.083013035,-0.0058205044,-0.042967096,-0.027794544,-0.026464766,0.005776905,-0.07490357,0.0035669664,-0.0364926,0.02013197,0.0016894722,-0.01397357,0.00053579436,0.0244156,-0.037517183,-0.027075155,0.043839082,-0.014867356,0.020927656,-0.007853321,0.033113655,-0.02561458,-0.050357174,-0.026333967,0.0304105,-0.05720226,0.044732865,-0.018671393,-0.053321924,-0.0013495341,-0.04822081,0.0366016,0.026530165,0.013101585,-0.0075263265,0.062434174,-0.047174424,0.01766861,-0.023957808,0.04091793,-0.015968237,-0.010234932,0.025941575,-0.0076353247,0.017385215,-0.0022371884,0.0056515574,0.023042222,-0.027620146,0.038018577,0.0023202994,0.02679176,-0.0065562422,-0.03762618,-0.02260623,-0.0026636438,0.028404934,-0.012621993,-0.030672096,-0.030584898,-0.030715697,0.011651909,0.010883471,-0.02681356,-0.011717307,0.026878959,0.01758141,0.00013948364,-0.022235636,-0.014431363,-0.024764394,-0.014256966,-0.014126169,-0.016851123,-0.00791872,0.017755808,0.024088604,0.03699399,0.05611228,-0.011303115,-0.006332796,0.008060418,0.005245539,0.013275982,0.036274604,0.01582654,-0.009504644,0.015597644,0.024611795,0.042967096,0.024066806,-0.034465235,0.012055202,-0.01156471,-0.009286648,-0.015968237,0.023238419,-0.028797327,0.0031554983,0.0036269154,0.02251903,0.047348823,0.0054580853,0.026072372,0.023434615,-0.022824226,-0.017625012,0.02676996,-0.031718478,-0.030541299,-0.047784816,0.039784346,-0.019434381,0.019565178,0.0029647513,-0.012055202,-0.0037631632,0.00020590443,0.010371179,-0.012643793,-0.001141075,0.014769258,-0.012229599,-0.0035042926,-0.01094342,0.027576547,-0.034399837,-0.04442767,-0.034552433,0.011412113,-0.05611228,-0.016077235,0.011003369,-0.0027045181,0.03285206,0.015924638,-0.043032493,-0.015346948,-0.030257903,0.013679275,-0.021058455,0.019107386,0.026290368,-0.007226581,0.0036814145,0.008332913,0.015150751,-0.02984371,-0.013156084,-0.0015586744,0.016099036,-0.00912315,0.04691283,0.0007650312,0.013123385,0.029996308,0.035053823,-0.007177532,-0.014987254,-0.0059785517,-0.046825632,-0.022671629,0.00083315506,0.030628497,0.05297313,-0.0061256993,0.026530165,-0.03762618,-0.037604384,0.016186234,-0.037473585,-0.011488412,-0.009417445,-0.0016063611,0.0035206422,0.009918837,-0.01890029,-0.0068614376,-0.029015323,0.021243751,-0.006283747,-0.02565818,0.017276216,0.0055643586,-0.04063453,0.018442497,0.0042754547,0.003526092,-0.029516716,-0.003904861,0.022170236,0.0488312,0.0038558117,-0.004880395,-0.022998622,0.01955428,-0.05537109,0.049659584,0.024132203,0.025178587,0.013962671,-0.031260688,-0.022104837,-0.037713382,0.012186,0.024372,-0.01949978,0.03858537,-0.03596941,-0.01158651,-0.010583727,-0.022301033,-0.018028304,-0.024001407,0.015913738,-0.022998622,-0.008518211,0.016698526,0.04495086,-0.03106449,-0.02742395,0.0017535087,0.016011838,0.030715697,-0.033375252,-0.011499311,0.021276452,0.04569205,-0.03106449,-0.034944825,-0.027816344,-0.011150517,-0.02493879,-0.012938088,0.0065562422,-0.04922359,-0.03880336,-0.0034388935,0.017548712,-0.011281315,0.012458496,0.044166077,0.0061692987,-0.007057634,0.04381728,-0.020567963,0.0031609482,-0.016000938,0.008774356,-0.013570277,0.009046852,-0.0029674764,0.008627208,0.015085353,-0.032568667,-0.013646576,0.008000469,0.0055643586,-0.03780058,-0.0010913446,0.016262533,0.026682762,0.007831521,0.017439714,-0.0006706796,-0.014976354,0.014921855,0.0013856398,-0.0038231122,-0.038607165,-0.012687392,0.022584429,0.016382432,0.007014035,-0.008937853,0.022737026,-0.040503737,0.0054117613,0.053234726,-0.014137068,-0.008011368,0.007253831,0.024764394,0.007242931,0.044689268,-0.0106218755,0.0038667116,-0.005237364,-0.00085699843,-0.0046596737,0.00006105603,0.021712443,-0.008932403,-0.0009114975,-0.0012875414,0.006654341,0.018540597,0.008932403,0.026987957,-0.010872572,0.028949926,0.014965454,-0.007003135,0.04024214,-0.03895596,0.014322365,0.0074772774,-0.0061147995,0.014300565,0.019837674,-0.026987957,-0.001737159,0.015510445,-0.0072865305,-0.018649593,0.016763926,-0.018943889,-0.0003177979,-0.0243066,-0.023434615,0.008937853,0.010115034,-0.00054328796,-0.014191567,0.023282018,0.019140085,0.006414545,-0.020153768,0.01770131,-0.023347417,0.012164201,-0.01764681,0.00017814395,0.015630344,-0.041244924,-0.006327346,-0.012316798,-0.048526004,0.007493627,-0.03492303,0.009199449,0.022497231,-0.007362829,-0.02683536,0.003776788,-0.0032154473,-0.012077002,0.04586645,-0.015118052,-0.025200386,-0.017984705,0.0015600369,-0.031849276,-0.026399367,-0.010752673,0.029647514,0.008294764,-0.0060984497,0.018464297,-0.0035315421,0.0070794336,0.0059295027,0.009809839,-0.05589428,-0.020458965,-0.016676726,0.037865978,-0.031500485,0.047741216,0.014355064,-0.017308915,0.0038421869,-0.02310762,0.000775931,-0.028317735,-0.020382665,-0.032372467,-0.026704561,0.004335404,0.003111899,-0.041680917,0.026377566,-0.027075155,0.02740215,0.017352516,-0.0091177,-0.015695743,0.016306132,0.044187874,0.0037032142,-0.023957808,0.0034416185,-0.011913504,0.01034938,0.016513228,0.036819596,0.022715228,0.0026336692,-0.00040806204,-0.0141697675,-0.012665592,0.015052653,-0.014147968,-0.0053272876,-0.003784963,0.022780627,-0.01888939,-0.0057551055,0.04769762,0.017265316,0.02196314,0.038716163,-0.013668376,0.03492303,-0.003910311,0.031304285,-0.00852366,0.044907264,-0.020437164,0.0018897565,0.014823757,0.0061365995,-0.0044989013,0.031173488,-0.0007718436,-0.033200856,0.02916792,-0.029037124,0.0304977,0.008741656,-0.05053157,0.008000469,-0.033789445,-0.057551056,0.0076298746,0.03102089,0.04769762,0.0097553395,0.029538516,-0.020687861,-0.0012098801,-0.00018410479,0.028383134,0.0047768466,0.009428346,-0.02683536,-0.03413824,-0.0038067626,0.0056461073,0.016306132,-0.0039184857,0.0007827434,-0.027772743,-0.0182354,0.058946233,0.019183686,0.0037004892,0.013831873,0.024851592,0.011155967,-0.0031936476,0.058902632,0.0101422835,0.010681825,-0.01773401,0.023521814,0.010278531,0.024851592,-0.0019551555,-0.0032045473,-0.01714542,0.002156802,0.01589194,0.024873393,0.0043626535,-0.055632688,-0.04586645,0.008207565,0.023914207,-0.01705822,0.021984939,-0.04381728,0.07172082,0.040678132,0.03773518,0.019238185,0.009390196,-0.0034416185,-0.0427491,-0.040481936,0.00027794545,-0.011750007,0.012414896,-0.007177532,-0.0073355795,0.041833512,-0.010823523,-0.025091387,-0.004381728,-0.054935098,-0.034051042,0.0035724163,0.00022089168,0.008839755,-0.009014152,-0.020905856,0.002290325,0.020993056,-0.010992469,0.003054675,0.0075644758,-0.0019279058,-0.0050847665,-0.0011642372,0.0056188577,0.02990911,0.010431129,-0.0007350567,-0.031500485,0.033811245,-0.03416004,-0.031914677,0.004932169,0.0023979608,-0.022083038,0.016556827,0.04311969,-0.022911424,0.019379882,-0.04338129,-0.016055437,-0.018660493,0.0073573794,-0.0025682703,-0.02866653,-0.0007548126,0.04835161,-0.009395646,-0.06470134,0.024786193,-0.001295035,0.0059458525,0.011848105,-0.02254083,-0.023543613,0.04329409,0.017799407,0.023042222,0.005539834,-0.0041037826,-0.012044302,0.015706642,0.008022268,0.013156084,-0.018649593,0.029276919,0.007052184,0.012621993,0.0021745143,-0.041680917,0.0038503618,0.014954555,-0.0044961763,-0.00334897,0.040416535,0.024611795,0.00009247817,-0.003923936,-0.019096486,0.015499545,0.029429518,-0.02799074,-0.0050329925,0.0019251809,-0.001032758,-0.01276369,0.008420112,0.045779247,0.0033762197,0.02496059,-0.00042168683,-0.031456884,-0.028361335,-0.014147968,0.015455946,-0.035075624,0.013722875,-0.012022503,0.015270649,0.0183117,-0.008278414,0.014093469,0.005368162,-0.040656332,0.010561926,-0.012709191,0.022497231,-0.02925512,0.021723343,0.00015268265,-0.005106566,0.007259281,0.022061238,-0.002561458,0.022693427,0.042509302,0.031108089,-0.043533884,0.0365144,0.0017644085,-0.03976255,-0.018442497,0.037560783,-0.005144716,0.010725424,0.024677195,0.026508365,-0.010916171,0.022933224,0.00062128983,-0.01701462,-0.021821441,0.01712362,0.008583609,0.0027331302,-0.024241202,-0.036972195,0.027641946,-0.036928594,-0.007826071,0.013123385,-0.025788976,0.0115320105,-0.020012071,0.014692958,-0.075775556,-0.009788039,0.026050573,-0.007815172,0.008719857,-0.023827009,-0.000958503,-0.0023884233,0.0032127223,-0.04091793,0.009063201,0.0017998329,-0.015096252,0.0062401476,0.0035424419,0.019826775,0.0069758855,0.037560783,0.0004962825,-0.013897272,-0.011728208,-0.010311231,0.0010681825,-0.008087668,-0.012502095,-0.01700372,-0.056461073,0.024023205,-0.0054962346,0.007133933,0.019848574,0.013003486,0.009270298,0.013570277,-0.023870608,0.019434381,0.00023230244,0.0015000879,0.056504674,0.034356236,0.026530165,-0.0146493595,-0.025963373,0.018791292,0.012425796,-0.011096017,0.020001171,0.022889623,-0.014289665,-0.009537344,0.02988731,-0.020153768,0.028208736,0.0065126433,0.017505113,-0.009951537,0.0010681825,0.009864338,-0.018638695,-0.018180901,0.018006504,0.014998154,0.03226347,0.0042209555,-0.04503806,-0.004864045,0.015717542,-0.018344399,0.01952158,0.009106801,-0.018584196,0.073421195,0.033091858,-0.01947798,-0.028513933,-0.019728675,0.016262533,-0.0019633302,-0.026726361,0.0045506754,0.0029593015,-0.003774063,-0.00794597,0.0033789445,-0.056897067,-0.03413824,-0.044645667,0.00050036993,-0.023434615,-0.016589528,0.0005419255,0.026442965,0.008589059,0.0049784933,0.04013314,0.013221483,-0.012240499,0.0080331685,0.011750007,-0.0003562879,-0.029146122,0.0020900406,0.0034579684,-0.0062564975,0.028426733,-0.017875707,0.023478216,0.034051042,-0.0036841396,-0.0044771014,-0.0006430895,-0.007117583,-0.0051583406,-0.008583609,-0.015728442,-0.010997919,0.007956869,0.000074169875,-0.055240292,0.01279639,0.039261155,0.027162354,-0.003471593,-0.023369217,-0.041702714,0.026987957,-0.013984471,-0.018213602,-0.036383603,0.009793489,0.014246066,0.01708002,-0.037560783,-0.0009871151,-0.032132674,0.0076298746,0.012643793,-0.024480999,0.024916992,0.017962905,0.008665358,-0.011695508,0.0069595356,0.021123853,-0.02552738,0.029473117,0.0039293854,0.02260623,-0.028862726,-0.035075624,0.009074101,-0.020873157,0.041659117,-0.0045479503,0.025919775,0.007847872,0.0021990389,0.024088604,0.002222201,-0.018638695,0.01523795,-0.026551964,-0.013275982,-0.008158516,0.028470332,0.0009210349,-0.00005066714,-0.028840927,0.020328166,0.053278327,0.025461983,-0.023957808,0.00974989,0.033026457,0.020829558,-0.02310762,0.03429084,0.027075155,-0.03586041,0.021766942,-0.019074688,-0.018486097,-0.013003486,-0.03895596,0.0018366198,-0.008741656,-0.027772743,0.0098534385,0.009373846,0.02925512,0.032132674,0.0035478917,-0.026377566,0.050923966,-0.013679275,-0.018453397,-0.01940168,-0.017799407,-0.020360867,0.00020471227,0.023521814,-0.03880336,0.014126169,-0.009297548,-0.014823757,0.04019854,0.01155381,0.012436696,0.008202115,-0.03418184,-0.035533417,-0.0010027835,0.03400744,0.011259515,-0.0007296068,0.032416068,-0.05353992,0.011673708,0.056984264,0.03474863,-0.03300466,0.0067524393,-0.032786664,0.020415366,0.021559846,-0.019281784,-0.002983826,0.018431598,0.019031087,-0.028971724,-0.016295232,-0.00040976514,-0.0121424,-0.0032753963,-0.0006594392,0.016011838,-0.019085586,0.0045752,0.01881309,0.006888687,-0.038759764,-0.028688328,-0.0022698878,0.006458144,-0.021843242,0.017407015,0.033418853,0.032568667,0.0015995487,-0.029669313,0.015009054,0.026508365,0.042487502,0.019390782,0.009253948,0.02559278,0.015543145,0.00084337365,0.012316798,0.018507896,-0.029603913,0.002459272,-0.0024238478,-0.008420112,0.052057546,-0.0134503795,0.011019719,-0.029473117,0.008109467,-0.0038857863,-0.002861203,0.0027113305,-0.010463828,-0.0127309915,-0.001040933,0.00055010035,-0.006866887,-0.00027283616,0.016578628,-0.013254182,-0.042204108,0.031609483,0.044187874,-0.0006614829,0.04141932,-0.03880336,0.030345103,0.015575845,0.005365437,0.015532245,-0.033157256,0.0031609482,0.008659908,0.0243502,-0.0036214655,0.012000703,-0.0052101146,0.011172317,0.0008651733,0.0076353247,0.023870608,0.0041201324,-0.046825632,-0.003839462,-0.032634065,-0.0029075274,-0.025854375,-0.008643558,-0.034530632,-0.022279235,0.020502564,0.0124911945,0.017276216,-0.0018093704,0.029058924,-0.018344399,-0.016186234,-0.014878256,-0.025679978,0.011662808,-0.026050573,-0.035119224,-0.008834305,-0.0077715726,0.00242521,0.011150517,0.017461514,-0.036187407,-0.010681825,-0.011477511,-0.006866887,0.00044314587,0.024502797,-0.020927656,0.023369217,-0.0125892935,0.008327464,0.015728442,0.024110405,-0.0077824723,-0.01157561,0.028143339,0.0023679861,-0.001337953,-0.013036186,0.016393332,0.03832377,-0.017875707,-0.037299186,0.009668142,-0.0045534004,0.0017848457,0.01955428,-0.013199683,0.005177415,-0.003779513,0.017559612,-0.00002035201,0.03363685,0.01100882,0.014605761,-0.014311465,0.00035833163,-0.019913973,-0.03178388,-0.025069589,-0.0036023909,0.018464297,-0.014464063,0.020033872,0.015357848,-0.034574233,-0.02807794,-0.031108089,-0.0242848,-0.015706642,-0.0006441113,-0.026508365,0.024154004,-0.002347549,-0.0012507545,0.01766861,0.014202467,-0.008708957,0.0304759,-0.028143339,0.016567728,0.008354713,-0.010561926,0.00046119868,0.004447127,-0.0025859827,-0.042160507,-0.007989569,-0.016327932,0.010758123,0.023630813,-0.011346714,0.0076843738,0.0060167015,0.006033051,0.0023121245,0.011303115,-0.0053817867,0.005989452,-0.016644027,-0.0124911945,0.013602977,0.001397902,0.03115169,0.012447596,0.008054968,-0.025265785,0.043054294,-0.01642603,0.0033244453,0.015968237,0.03544622,0.00854546,0.0182463,0.02007747,0.018976588,-0.0121424,0.0098534385,0.00032937896,-0.002598245,0.014900056]);
INSERT INTO entities (id, name, description, description_vec) VALUES (11, 'Pretoria', 'Pretoria is the administrative capital of South Africa, where Elon Musk was born.', [-0.0019742073,0.00638648,0.023365414,0.022025103,-0.013243069,0.020524755,-0.0116727045,0.02252522,-0.042649884,-0.013103036,-0.046290725,-0.037428673,0.013963236,-0.04709091,-0.047971115,-0.01713397,-0.07281687,0.013143046,-0.012953001,-0.006491504,0.08249912,0.027346337,0.030527074,0.022725265,0.016733877,0.0146734,-0.0036083362,-0.016093729,-0.015343555,0.022925312,0.009867286,-0.016263768,-0.0045435526,0.030287018,-0.0021642514,-0.03360779,0.0065315133,-0.026786206,0.01126261,0.030527074,0.023185372,0.0038683964,-0.020744806,0.06785572,-0.056573108,0.036448445,-0.046410754,-0.0034332955,0.028066503,0.015223527,0.025205841,-0.031407278,-0.004263488,0.019814592,-0.021524988,-0.048411217,0.022085117,-0.02222515,0.016983936,0.028606629,0.028806675,0.025485905,0.027646406,0.032127444,0.052492164,-0.0069116014,0.0034533,0.0019229456,0.012592918,-0.017033948,-0.017223991,0.024965785,0.007266684,-0.033887852,-0.02572596,-0.0012146565,-0.0073467023,0.060774084,-0.031167222,-0.050171625,-0.030267013,-0.018564302,0.028846685,-0.008141886,-0.040209316,-0.0483312,-0.010512436,-0.022465205,0.03576829,-0.019244459,-0.0023542955,-0.0440102,0.016593846,0.05149193,-0.00543626,-0.008171894,0.024005562,-0.01523353,0.004050939,0.042409826,0.007616765,-0.038208853,-0.019384492,0.015713641,-0.02874666,0.029886926,0.05865359,0.010512436,-0.044090215,0.0024530685,-0.015743649,-0.024025567,0.01756407,0.025005795,-0.063254654,0.014883448,-0.05561289,-0.08065869,0.0010402411,0.0033307718,0.0069366074,-0.00039259097,0.042929947,0.005951379,0.020944854,-0.025986021,-0.007656774,-0.03724863,-0.029106745,0.0323675,-0.014573377,-0.018834364,0.029446824,-0.022325173,0.05933375,-0.011922763,0.01532355,-0.0010846263,0.0076917824,-0.0054612653,0.043650113,0.025946012,-0.0011558929,0.016993938,-0.010117345,-0.010007319,-0.021564998,0.008141886,-0.027326332,0.039089058,0.011372635,0.0026981253,0.011842744,-0.0061464244,-0.022585234,0.0075767557,-0.0012052793,0.034688037,-0.01031239,-0.019624548,-0.0152035225,0.017664094,0.039949257,0.012272844,0.029966945,0.017654091,0.025926007,-0.04176968,-0.036068358,-0.030947171,-0.0065565193,-0.0099222995,-0.009212134,-0.021865066,0.007656774,0.021885071,-0.0075467485,0.05369244,0.017153975,-0.008662007,-0.044130225,-0.03434796,0.028366573,0.048611265,0.0065615205,-0.011222601,0.0026131056,0.007656774,-0.020904845,-0.019394495,0.006196436,-0.010422415,0.0043310034,-0.000893332,-0.018834364,-0.034888085,0.03996926,0.01139264,-0.022085117,0.0418497,-0.006326466,0.024205608,0.024565693,0.040809456,-0.047571022,-0.0049486468,-0.013433113,0.0010696228,0.061654285,-0.04060941,0.024805749,-0.07273685,-0.042129762,0.028626634,0.035508227,0.012953001,-0.062934585,-0.04042937,-0.0022555226,0.003185738,-0.019994633,-0.0033082666,-0.009767263,0.0052362136,0.016153743,0.03698857,-0.043650113,0.016503824,-0.007956844,0.0020304704,-0.042449836,-0.01523353,-0.0142433,-0.014183287,-0.024065576,-0.044370282,0.037048586,-0.018044181,0.0020279698,0.014293312,-0.0075417478,-0.0064014834,0.02140496,0.022305168,0.018504288,0.0050711753,0.03638843,0.01195277,0.019884607,0.015863676,0.025225846,-0.005081177,0.04385016,0.019974628,-0.009382174,0.026566155,-0.072136715,-0.011862749,0.037268635,-0.073737085,-0.04769105,0.0102123665,0.003185738,-0.022305168,0.013613154,0.0006451495,-0.0040334347,-0.04325002,-0.007481734,-0.0066015297,-0.033207696,0.0024868262,-0.022965321,-0.005296227,-0.033667803,0.005736329,-0.0075717545,-0.024745734,-0.04997158,0.045850623,0.023325404,0.012152816,-0.0340879,-0.0038183848,-0.03128725,0.043570098,-0.011972775,0.03172735,-0.016283773,0.009957307,0.020384723,-0.036808528,-0.015263537,0.012572913,0.060053915,-0.02692624,0.0138132,-0.04329003,0.023285396,0.004513546,0.050331663,0.015483588,0.008601993,-0.034628022,-0.04497042,0.0029756895,-0.042049743,0.07109647,0.037948795,0.031587318,-0.068855956,-0.015523597,-0.017013943,-0.10946537,0.022345178,0.039389126,-0.002568095,-0.023425428,-0.017814128,-0.030186994,-0.0019904613,-0.035708275,-0.054252572,-0.013243069,-0.02412559,-0.0211449,0.033687808,0.07085642,-0.009567217,-0.029126748,0.01817421,0.012692941,0.0033932864,-0.0038934022,0.0044435295,0.045130458,0.014213294,0.013173052,-0.055092767,0.026446128,-0.050731756,0.0068765935,0.018814359,-0.037688732,-0.05485271,-0.033867847,-0.018074188,0.01976458,0.027366342,-0.010032325,-0.011492663,0.018034179,0.029806906,0.030927166,-0.07117649,0.0045285495,-0.005916371,0.031307254,-0.026966248,0.019354485,0.006151425,-0.021304937,0.022165136,0.0058613583,0.007046633,-0.026266087,-0.026566155,0.090420954,-0.043730132,0.029306792,-0.070936434,0.007896829,0.050131615,-0.00880204,0.004328503,0.0047160927,0.027186299,0.019044412,-0.037008576,-0.001587868,0.015333553,0.030186994,-0.011362633,0.012752955,0.015583611,-0.0061564264,0.057453312,-0.045850623,-0.037508693,-0.04329003,-0.009397178,-0.037228625,0.02162501,0.016943926,-0.047491003,-0.0102373725,-0.043530088,-0.02092485,0.01303302,0.042929947,0.009972311,-0.06525512,-0.017714106,-0.01398324,0.008281919,-0.043730132,-0.009372172,0.01346312,0.0046035666,-0.044850394,0.051972043,-0.038728975,-0.021885071,0.018854368,0.0062464476,0.0362484,0.025825985,0.014433345,-0.007951843,0.019824594,0.005951379,0.06565522,-0.03866896,0.030607093,-0.03896903,0.031167222,0.007261683,-0.05989388,-0.0055462853,0.03616838,0.0686159,-0.031907395,-0.04541052,0.015293544,0.0014503361,0.020904845,-0.021084886,0.03806882,-0.025605934,0.0038133836,0.018484283,0.044170234,0.05001159,0.014663397,-0.049091376,-0.01756407,-0.016843904,0.0065665217,-0.04042937,0.009387176,0.028546615,-0.0073166955,0.0053712446,-0.055812933,0.033347726,-0.0018291739,-0.0055612884,0.013283078,0.0047461,-0.009447189,-0.020444738,-0.012352862,-0.020984862,0.013703175,0.0071316524,-0.0044510313,0.014723412,0.05213208,0.008812042,-0.016333785,-0.00001100841,0.03792879,-0.04120955,0.02058477,0.029286787,0.027286323,-0.04074944,-0.029026726,-0.060534026,-0.07729791,-0.015603616,-0.015933692,-0.004626072,0.011252607,-0.0041059516,-0.046570793,0.003793379,0.028126517,-0.014723412,0.0017166478,0.051771995,-0.006806577,0.022545224,-0.005018663,0.065975286,-0.0043835156,-0.029706884,0.0075417478,0.0050336663,-0.025405888,-0.02554592,0.01592369,0.016363792,0.05317232,-0.010552445,0.05173199,0.0019004403,0.0052462155,0.037228625,-0.021645015,-0.014343323,-0.039349116,-0.020254694,0.005636306,0.0067515643,0.024285628,0.012422878,0.02498579,-0.009102109,0.009007087,0.025085812,0.024745734,-0.033947866,0.006416487,-0.027606396,0.010502433,0.0033757822,-0.048411217,-0.023385419,-0.013453118,0.030847147,-0.0072766864,-0.0013965736,-0.048611265,-0.025585929,0.0036183384,0.012112807,-0.0055912957,0.00044479055,-0.009542211,-0.00016363167,-0.00020004636,0.0060664057,-0.030126981,-0.039809223,-0.011812737,-0.005576292,-0.046850856,-0.011012551,0.008782035,0.031567317,0.028586624,0.016423807,-0.009567217,0.036708508,0.016883912,0.015183519,-0.007266684,0.05933375,0.021264927,-0.0016303778,0.048611265,0.037868775,0.008662007,0.00048104898,0.025966017,0.0046460764,0.01083251,-0.01950452,-0.0060313977,-0.00048354955,0.0040109293,-0.018914383,0.0038033812,0.014183287,0.028606629,0.02356546,-0.028666643,-0.009592223,-0.010842512,0.0022992827,0.040329345,0.0115026655,-0.043009967,-0.024205608,0.016263768,-0.023485443,0.020384723,0.009217136,0.0027381345,0.0075367466,0.024865761,0.01584367,-0.04885132,0.0002369299,-0.029146753,0.014053256,-0.035188153,-0.0483312,0.034027886,-0.0039509153,-0.0006088911,-0.026606165,-0.0052462155,0.0056513096,-0.01760408,0.0038959028,-0.03168734,0.01290299,-0.0057663363,-0.031067198,0.0078268135,-0.014683402,0.033067662,-0.022925312,0.023025336,-0.0010408661,-0.006201437,0.008186897,0.042009734,0.039509155,-0.0010908778,-0.0030207,0.060774084,-0.027366342,0.023365414,-0.011572681,0.013493126,-0.015893683,0.044810385,0.04785109,0.06825582,0.005631305,0.03102719,-0.00699162,0.01696393,-0.003935912,-0.0057463315,0.036748514,0.022145132,-0.003210744,0.03258755,-0.0038058818,0.0073767095,-0.018374257,0.0055562877,-0.032607555,-0.0014265806,0.030487064,-0.017223991,0.013233067,0.0016703871,0.020144667,0.00021004867,-0.02412559,-0.0069716154,0.028026495,-0.014793428,-0.011962772,0.06625535,-0.0015641125,-0.012372867,-0.0025580928,0.009917298,-0.036648493,0.022665251,0.017854137,0.000079393394,0.01584367,0.011812737,-0.009157122,-0.009367171,0.02382552,0.01829424,0.035628255,-0.060173944,-0.008221905,-0.060654055,-0.02092485,-0.019674558,0.028846685,-0.01230285,-0.029066736,0.045290496,0.035548236,-0.036568474,0.000030260919,-0.0122828465,0.025005795,0.0043034973,-0.011282614,-0.00027178173,0.050731756,-0.005376246,0.0384089,-0.033887852,-0.008171894,0.0042559863,0.03936912,-0.017033948,-0.000029948345,0.0384089,0.027186299,-0.017314011,0.008221905,0.015873678,0.004621071,-0.020324709,0.043530088,0.0023192875,-0.0059063686,-0.001277171,0.0069066,0.013383101,0.044890404,-0.0051912027,0.022125127,-0.006136422,0.003953416,0.02352545,0.013933228,-0.009447189,0.02464571,-0.027326332,-0.019324478,-0.023665484,0.029886926,0.0401293,-0.027086277,0.039209086,0.049051367,-0.023265392,-0.045250487,0.01786414,0.016853906,-0.005066174,-0.012832974,-0.016763885,-0.028586624,-0.021264927,0.0005729453,0.008496969,-0.0089220675,-0.011272612,-0.024545688,0.033127677,-0.004626072,0.017614082,0.019694563,-0.009787268,0.00069078506,0.0023355412,0.015483588,-0.011932765,-0.03874898,-0.015463583,0.052972276,-0.008877057,-0.009162123,-0.018134203,-0.01623376,-0.010042327,0.0005057422,0.031987414,-0.0019341982,-0.028426588,0.00017504056,-0.017424038,-0.03154731,0.019474512,0.020904845,-0.0073717083,0.01044242,0.0033757822,0.012932997,0.018304242,-0.019874604,0.01087252,-0.011492663,0.014323319,-0.0046885866,0.007271685,-0.0001609748,0.006676547,-0.017013943,0.014443347,-0.0058613583,0.004060941,0.04000927,0.007996853,-0.0077317916,0.0036583478,0.017944157,-0.017454045,0.045290496,0.017384028,0.026346104,-0.024105586,-0.0008745777,0.009642234,-0.0042709894,0.003008197,0.011562679,-0.0001540982,0.021785049,0.04164965,-0.033007648,-0.026146058,-0.049691513,0.0083869435,0.0069066,-0.0022855296,0.0061214184,-0.01592369,-0.011882753,-0.0037158611,0.008727022,-0.059693832,-0.011562679,-0.0091171125,-0.03650846,0.018054184,-0.016063722,-0.032607555,0.037228625,-0.013143046,0.0060664057,-0.037188616,-0.013393103,0.028046498,0.023405423,-0.024025567,0.0045385514,-0.007201669,-0.02248521,-0.0027681415,0.013973238,-0.03996926,-0.015483588,0.013063027,0.034688037,0.009412181,0.042569865,-0.001777912,0.03246752,0.004133458,0.06145424,0.0066965516,-0.009422183,0.017103963,0.02140496,-0.014063259,-0.011452653,-0.0089470735,-0.020824825,0.0030782132,-0.024825752,0.037948795,0.016253766,-0.03206743,-0.052492164,-0.033627793,0.024825752,-0.0026081044,-0.016023712,0.016253766,0.022945317,0.0012446634,0.031147217,0.03202742,0.011192594,-0.01454337,-0.02774643,0.006791574,0.024145596,0.009557215,-0.02692624,-0.011342628,0.021364952,-0.021324942,-0.00066640443,0.02110489,0.048971348,0.02192508,-0.026826216,0.04329003,-0.0013840707,0.0023893036,-0.039109062,0.021324942,0.0027906466,0.031787366,0.025185836,-0.014923458,-0.0016603847,0.005156195,-0.003038204,0.039769214,-0.019884607,-0.02666618,0.010972543,-0.0444503,0.02394555,-0.0035083129,-0.00966724,-0.015673632,0.003400788,0.00084269524,0.026406119,-0.0017341519,0.005831351,0.016973933,0.008176895,-0.018954393,-0.038648956,0.0060914117,-0.02770642,-0.00022911558,-0.01950452,0.012162819,-0.013253071,0.021384954,-0.043049976,-0.00068515877,0.044770375,-0.022405192,-0.0194145,0.042009734,0.013243069,0.01786414,0.015533599,-0.021424964,-0.012272844,-0.0009358419,0.011462656,0.0135731455,-0.03716861,0.016993938,-0.050451692,0.020284701,0.02938681,0.010342397,0.0053262343,0.023405423,0.025865994,0.016833901,-0.0142433,0.019424502,0.018454276,-0.016833901,-0.021785049,-0.023425428,-0.015163514,0.0036583478,0.020104658,-0.04501043,0.0014553373,0.0066215345,0.008757029,-0.021004867,0.043089986,-0.04120955,-0.031987414,-0.03068711,0.042889938,0.01700394,-0.0011071316,-0.00009174001,0.032387506,0.014063259,-0.012442883,-0.035828304,-0.0050036595,-0.027206304,-0.004366012,-0.02554592,0.026086045,-0.001299051,0.018994402,-0.0071016457,-0.014693405,0.015463583,-0.012722949,-0.030146986,-0.019354485,-0.03168734,-0.0440102,-0.0067615667,-0.0098972935,-0.0033557776,0.019354485,-0.06913602,-0.0030131983,0.0461707,-0.031147217,0.01497347,-0.039149072,0.007816811,0.007456728,-0.0027656408,-0.02658616,0.043009967,0.01623376,0.0241656,-0.02498579,-0.010952538,-0.06957612,0.0019341982,0.010902526,-0.010502433,0.03598834,-0.0066615436,0.0042484845,0.02196509,-0.013953233,-0.02162501,0.0029881925,-0.014103268,-0.03508813,0.0116727045,0.0043435064,0.031407278,0.051771995,-0.030166991,-0.019054415,0.004946146,-0.008421952,-0.016143741,-0.026946245,0.032767594,0.007801808,0.0457306,-0.016473817,-0.0146734,-0.0027356339,0.020764811,0.014083263,-0.025245849,-0.0015166014,0.02554592,-0.008637002,-0.023785511,0.0155436015,0.005921372,0.0023530452,0.026506143,0.03344775,0.008782035,-0.016133739,-0.009292153,-0.02882668,0.019364487,0.0073567047,0.008596992,-0.03282761,-0.07125651,-0.03788878,-0.009352167,0.040069286,-0.026606165,0.020964857,-0.02058477,-0.018654322,-0.0054962737,-0.023965552,-0.0015166014,-0.01018736,0.0011558929,-0.018794356,0.017233994,-0.0020354716,0.014033251,-0.013123041,0.005951379,0.012122809,-0.0056863176,-0.03932911,0.006966614,-0.04060941,0.05605299,0.0022555226,0.0013765689,-0.009567217,-0.027326332,-0.042649884,-0.034768056,0.0029181761,0.01549359,0.013603152,0.0043785144,-0.0038959028,-0.01031239,-0.022365183,0.00051230623,0.001997963,-0.005916371,0.0002166127,-0.0023717997,-0.034548007,-0.016753882,0.0059863874,0.01398324,-0.054532636,0.024065576,0.0025255852,0.04333004,-0.0022480208,-0.017614082,0.01739403,-0.025265854,0.006961613,0.02304534,0.013493126,0.025685951,-0.04022932,0.04397019,0.004371013,0.013193057,-0.015313548,-0.012892988,0.00038477665,0.00461857,-0.0056113005,-0.013263074,-0.00061983115,0.0007289189,0.004018431,0.0332277,0.0013778192,-0.027266318,0.007911833,0.0073467023,-0.02572596,-0.027086277,-0.04120955,-0.031207232,0.0016341286,-0.03136727,0.01838426,0.0056663128,0.012262842,0.010822508,0.014153279,-0.01139264,-0.013213062,0.017554067,0.0038909016,0.055012748,0.004178468,0.012272844,0.015623621,0.012722949,0.008902063,-0.029986948,-0.010157353,-0.010167356,0.034507997,0.030227004,-0.014093266,-0.013693173,-0.055692904,0.009692246,-0.005361242,0.024205608,-0.033467755,0.024485674,-0.046330735,0.015133507,0.003603335,0.0013978239,0.03634842,0.016563838,0.027366342,-0.024585698,-0.0030607092,-0.004708591,-0.033307716,-0.048091143,-0.022985326,0.011982776,-0.0032082435,0.05389249,0.040809456,-0.010922531,-0.03318769,-0.003978422,-0.0056113005,0.0076117637,0.037868775,-0.03136727,-0.005076176,-0.029806906,-0.014013248,-0.0586936,-0.011222601,-0.023405423,0.024265623,0.00009775703,0.013323087,-0.025205841,0.025986021,-0.00006517135,-0.026746197,0.0025193337,0.006011393,-0.015343555,-0.016983936,-0.0075717545,0.03098718,0.041329578,-0.004733597,0.017344018,-0.044890404,0.009662239,0.026106048,0.0020767313,0.025345873,-0.033007648,0.0066565424,0.023005331,-0.0058013443,-0.0033082666,-0.016263768,0.029466828,0.013633159,0.000845821,0.015573609,-0.014903453,-0.0058413534,0.04325002,0.024845757,0.010262378,-0.048171163,0.012572913,-0.010252376,0.0122328345,0.017454045,-0.019834597,0.022625243,-0.013953233,-0.0103824055,-0.014653396,0.005196204,0.009387176,0.0066915504,0.03576829,0.036448445,0.029306792,-0.0035233165,-0.0020779816,0.0044760373,-0.0021342447,-0.018304242,0.0043009967,-0.03392786,-0.013623157,0.0077968067,-0.019794587,-0.00979727,-0.000401343,-0.031627327,0.02498579,-0.026006026,0.025485905,0.010262378,0.017794123,-0.00014292375,0.0052512167,-0.03282761,0.03498811,-0.0012021535,0.025205841,-0.0041934717,0.017073957,-0.0075517497,-0.025705956,-0.006296459,0.033987876,0.049571488,0.038648956,-0.019224456,-0.020724803,0.02080482,0.010892524,-0.0027856454,0.030066967,0.009917298,-0.006491504,0.05149193,-0.003413291,-0.01933448,-0.011412645,-0.0042434833,0.0039559165,0.0065315133,-0.0457306,0.02606604,-0.0048011127,-0.011252607,0.017253999,0.03940913,-0.007141655,0.011072566,0.009562216,-0.0023317903,0.0077868043,-0.0005144942,-0.00026099797,0.015643625,-0.0049261414,-0.028626634,0.0005538783,-0.049611498,0.046850856,-0.034467988,-0.005891365,-0.032267477,0.022305168,-0.04553055,-0.004351008,0.025986021,0.016933924,0.004726095,0.012572913,0.022625243,-0.009267148,-0.0022317672,-0.009372172,0.0031082202,-0.027566388,-0.0036258402,0.0004351008,0.045290496,-0.006371476,-0.014743417,-0.024525683,-0.0045435526,0.013043023,0.01847428,0.0033182688,-0.009327161,-0.03434796,-0.00018019801,-0.0078118104,-0.0073817107,0.03050707,0.026466133,0.005141191,-0.0034382967,-0.009737256,-0.020314706,-0.008817043,0.029306792,-0.03474805,-0.006866591,0.004203474,0.025405888,0.0001026019,-0.039589174,-0.019274466,-0.011992779,0.048571255,0.0053462386,0.0073316987,0.0032407509,0.052252106,-0.0007733042,0.0035583244,-0.0071616597,-0.023225382,-0.0074167186,0.01968456,0.0052512167,-0.026706189,-0.0038333882,0.007846818,0.0007583007,0.008912065,-0.002835657,-0.009717252,-0.0076067625,-0.008226906,0.0137931965,-0.0019254462,-0.0023968054,-0.03932911,0.018164208,0.020464743,-0.0032432515,-0.020184677,0.015553604,0.0033182688,-0.0028681646,0.026126053,-0.007736793,0.033127677,0.0029031727,0.009497201,-0.0005551286,-0.015603616,0.013383101,0.0021867568,0.05533282,0.058573574,0.019544529,0.026126053,0.000634522,0.009382174,-0.005516278,0.024025567,0.0401293,-0.0024655713,-0.008882058,0.010197363,0.00041790932,-0.006581525,0.019994633,-0.019474512,-0.046010662,0.03866896,-0.000026666336,-0.01497347,0.0118927555,0.009862285,0.034808066,-0.015463583,-0.035408206,-0.020004636,0.007836816,-0.03202742,-0.03426794,-0.056253035,0.011452653,0.0005098056,0.018194215,0.0070916433,0.021825057,0.048691284,-0.013323087,-0.0012390371,0.03896903,0.00919213,0.013483124,0.011592686,-0.02023469,-0.0062814555,0.00053262344,0.031267244,0.0036583478,0.0010596205,0.016943926,-0.010692477,0.018284237,0.01031239,0.02058477,0.00082831696,-0.029406814,-0.021504983,-0.0050211637,-0.02874666,0.03772874,0.013903222,-0.031707346,0.004863627,0.0031232238,-0.0054662665,0.037228625,0.009257145,0.01178273,-0.0031232238,0.038248863,-0.017594077,-0.012822972,0.00039477897,-0.0016178748,0.008596992,-0.009297154,0.019154439,0.0007432972,0.012372867,-0.0022205145,0.018974397,-0.025625939,-0.082579136,-0.0044435295,-0.003923409,-0.0049086376,0.002670619,0.019394495,-0.025065808,-0.01657384,0.029986948,0.0071966676,0.005121187,-0.011992779,0.030206999,-0.00457356,-0.020254694,0.01234286,-0.024205608,0.01484344,0.005041168,-0.007896829,-0.021224918,0.014193289,0.0042084754,0.0010283632,-0.017894147,-0.04345007,-0.0007514241,0.0005304354,-0.03246752,-0.02360547,-0.006581525,-0.0029806907,0.010172357,-0.024445664,-0.004993657,-0.017934157,0.017344018,-0.026506143,-0.021945085,0.009002086,-0.002049225,0.002119241,0.015453581,0.0049436456,0.000576071,0.0012796716,-0.021725034,-0.0040359353,-0.019794587,0.015523597,0.0044610337,0.016883912,0.004025933]);
INSERT INTO entities (id, name, description, description_vec) VALUES (12, 'University of Pretoria', 'The University of Pretoria is a university in South Africa that Elon Musk briefly attended before immigrating to Canada.', [-0.04057392,-0.026703088,-0.0007565778,0.038519837,-0.02938032,0.014517062,-0.015001734,0.06748472,-0.031342085,0.018498292,-0.055114064,-0.04408202,0.025826063,-0.005761243,-0.021556338,-0.006658462,-0.010928187,-0.009214527,-0.043574266,0.056637317,0.033165373,0.049805757,0.02086395,0.015982617,-0.0063468874,-0.018105939,0.010801248,0.0017540489,-0.026218416,0.026103018,0.02656461,-0.016709624,-0.04299728,0.029449558,-0.048282504,0.0043649278,0.0129130315,0.013466941,-0.0019127211,0.00960111,0.006543064,0.02200639,-0.024902878,0.021602497,-0.021117825,0.054513995,-0.027972464,-0.014367046,0.005481403,0.03208063,-0.01527869,-0.019052202,0.0010905106,0.035842605,-0.0485133,-0.033719283,0.016467288,-0.04678233,-0.016086474,0.0142401075,0.048282504,0.016709624,0.030903572,0.0011171964,0.05192908,0.006871948,-0.01587876,0.0107147,-0.027141599,0.0036581152,0.006710391,-0.0036177258,0.0054842876,-0.020356199,-0.016709624,0.022283345,-0.049851917,0.07348542,-0.01750587,-0.016594226,-0.00133501,0.0046072635,0.04332039,-0.020586995,-0.040320046,-0.041497104,-0.033511568,-0.010022312,0.026218416,-0.010674311,0.0034273192,-0.041589424,-0.02758011,0.031157447,0.018832946,-0.0018290576,0.014009312,-0.025756823,0.048144028,0.045859147,-0.043158837,-0.055575654,-0.0013277978,-0.008250954,0.014944036,-0.0011792228,0.0076624244,0.004624573,-0.030280422,0.008931802,-0.030626617,0.0018016506,0.045328315,0.015186371,-0.027372396,-0.011695582,-0.0394661,-0.08257878,0.009422243,-0.004310114,-0.033534646,-0.007725893,0.067530885,-0.005178483,0.054883268,-0.029726513,0.023125751,-0.013374623,-0.033165373,0.0008640422,-0.015001734,-0.020413898,0.00097439147,-0.0033667353,0.058345206,-0.0361888,-0.016536526,-0.025872221,0.025572186,-0.0041802907,0.016478827,0.0036206108,0.027210837,0.011799441,-0.029495718,-0.042189494,-0.022098709,0.015544104,0.020136943,-0.008666387,0.0037071593,0.025225993,0.008366352,-0.05188292,-0.009151058,0.004390892,-0.028087862,0.040435445,-0.0047543957,-0.043666586,-0.011874449,-0.01125707,0.024487445,-0.030718936,0.056175724,-0.003715814,0.045443714,-0.049205687,-0.04188946,-0.011689813,-0.022352584,-0.0095838,-0.017759746,0.025779903,0.020598534,-0.0022733398,-0.025502948,0.016640386,0.003271532,-0.050082713,-0.059591506,-0.027857067,0.016455749,0.045466796,-0.027949385,-0.024949038,0.021510178,0.007639345,-0.017148135,-0.018682929,0.054929428,-0.0085394485,-0.037989005,0.027533952,-0.023068052,-0.03944302,0.0062372596,-0.011170522,-0.024579765,0.03055738,-0.0020468712,0.023864297,0.0035629119,0.03773513,-0.018740628,-0.0042408747,0.0135938795,0.00069130585,0.054560155,-0.0072816107,0.045420635,-0.067253925,-0.03937378,0.028457135,0.04295112,-0.0072008325,-0.05359081,-0.02991115,0.038542915,0.048605617,-0.015901837,-0.008516369,0.029888071,-0.006664232,0.011043584,0.031942155,-0.05082126,0.035773367,0.02594146,-0.036835026,-0.028687932,-0.0018954114,-0.045374475,-0.016721163,-0.022548761,-0.04971344,0.03270378,-0.026841564,-0.027972464,-0.008833714,0.021037048,0.016248032,0.03231143,0.04006617,0.027372396,-0.008989501,0.011505176,0.004970767,0.028549453,0.052390672,0.015140211,0.0048236344,0.055667974,-0.0048697935,-0.01409009,0.006658462,-0.04846714,0.0152440695,0.048236344,-0.059637662,-0.015440246,0.043066517,-0.006554604,-0.006369967,-0.0068950276,0.013674658,-0.008764475,-0.008597148,-0.013974693,0.016490368,-0.0042466447,-0.0035686817,-0.009139518,-0.0087183155,-0.03884295,0.027395474,0.032911498,0.043666586,-0.016859641,0.06453054,-0.00507751,0.010506984,-0.021637116,-0.01757511,-0.0090529695,0.04692081,-0.019386856,0.026449211,-0.036281116,-0.015070973,0.011072434,-0.04572067,-0.0078586005,-0.030834334,0.0438743,-0.0065776836,0.039719976,-0.008072087,0.04643614,-0.010293498,0.051744442,-0.018279037,0.034596305,-0.008072087,-0.044382054,0.0067450106,0.026310734,0.008701006,0.043805063,0.02201793,-0.02596454,-0.008302883,-0.0019675351,-0.028064782,0.00791053,0.06263801,-0.043089595,-0.024441287,-0.043158837,-0.012786093,-0.020125404,-0.058852956,-0.044866726,-0.016513448,0.027810907,-0.022087168,0.023621961,0.036881186,-0.016732704,-0.016767323,0.03434243,0.00085178117,0.0011092628,-0.044774406,-0.0022300654,0.049759597,-0.011187832,0.03450399,-0.038104404,0.00848752,-0.069054134,-0.034203954,0.018555991,-0.0030724707,-0.031272847,-0.005908375,-0.031249765,0.004838059,0.025249073,-0.0017771285,0.02201793,-0.0028921613,0.06850023,0.008752935,-0.044405133,0.0053256154,0.014505523,0.03605032,0.041497104,-0.0011150327,0.037712052,0.032496065,0.041012432,0.044266656,-0.0138939135,-0.00013279781,-0.073716216,0.053313855,-0.02483364,-0.019444555,-0.080409296,-0.0013717932,0.038704474,-0.008412511,-0.007766282,0.006831559,0.021256303,0.028041704,-0.05580645,0.026403053,0.020794712,0.015971078,-0.026033778,0.013547719,-0.03219603,0.0025113479,0.033326928,-0.05012887,-0.009312615,-0.036973506,0.018486753,-0.01634035,-0.00025333458,0.014655541,-0.019513793,-0.003326346,-0.010501214,-0.057283543,0.016086474,0.025041357,-0.020275421,-0.027187759,-0.0013631383,-0.024533605,-0.004627458,-0.020967808,0.033534646,-0.02656461,-0.008926032,-0.015174831,-0.008083627,-0.058852956,0.0039869994,0.009745358,0.022260265,0.010380046,-0.00907605,0.024925958,0.0039668046,-0.001717987,-0.012012927,0.069746524,0.009578031,-0.016628845,-0.037873607,0.034619387,0.023887377,-0.051698282,0.007096974,0.05086742,0.051744442,0.022283345,-0.07330078,0.02882641,-0.011309,0.016744243,-0.007973999,0.0139054535,-0.024741322,-0.007841291,0.02316037,0.018452132,-0.015913378,-0.022456441,-0.018348275,-0.034596305,-0.015936458,0.033626962,0.005593916,0.011712892,0.049482644,-0.02088703,0.0360734,-0.048282504,0.040943194,-0.024718242,-0.03789669,0.01409009,0.01980229,0.011874449,-0.026149176,-0.01580952,-0.040158488,-0.034273192,0.005579491,-0.009503022,0.011614804,0.016963499,0.010062702,-0.020644695,0.031365164,0.023495024,-0.008943342,0.014309347,0.03272686,0.016501907,-0.024348969,-0.053221535,-0.016074935,-0.037412018,-0.030903572,-0.024949038,-0.020933188,0.05354465,-0.04458977,-0.053867765,0.003441744,0.038565997,-0.03274994,-0.004734201,0.01749433,0.0078124413,-0.027303156,-0.009664578,0.04341271,0.015347928,-0.012289883,-0.034780942,0.05806825,-0.0158326,0.04115091,0.00038045263,-0.014482443,0.054929428,-0.036373436,0.029057205,-0.05072894,-0.023771979,0.061530188,0.01185137,0.0031186298,-0.038727555,-0.028687932,0.01796746,0.025502948,0.025133675,0.034527067,0.026149176,-0.022352584,0.0074085486,-0.00034980004,0.026033778,-0.045374475,0.00961265,0.0047226613,0.005879526,-0.0040273885,0.0026108788,-0.05645268,-0.020552376,0.013409242,-0.009860755,-0.011372468,-0.03538101,-0.018186718,-0.0044341665,-0.022929573,-0.024533605,0.004569759,-0.015844138,0.004287034,-0.019052202,0.005045776,-0.035911843,-0.023864297,0.006335348,0.0008582723,-0.016698085,-0.01182829,-0.0054237037,0.013709277,0.022271805,0.050590463,-0.0005210939,0.0530369,0.03773513,-0.010980115,0.004739971,0.03046506,-0.013940073,-0.020540835,0.014482443,0.025041357,0.00898373,0.035127137,0.041589424,0.0037619732,-0.014493983,-0.012001387,0.0048842183,0.005807402,0.0032599922,-0.05469863,0.010028082,0.031088209,0.033534646,0.012636076,-0.0017526065,-0.015313309,-0.0014641115,0.0315498,0.043689664,0.024464367,-0.016028777,0.0041341316,0.009560721,-0.05636036,0.013109208,-0.0068546385,0.051282853,0.020206181,0.033926997,0.008851023,-0.044382054,-0.01298227,-0.013490021,0.0040245038,-0.008845253,-0.049898077,0.05520638,-0.0138939135,-0.016213413,0.013340004,0.0036927345,-0.0021478445,-0.021071667,0.028064782,-0.026703088,0.0125783775,-0.0014403107,-0.011701353,0.009837676,-0.0083721215,0.032842256,-0.020829331,-0.0132476855,-0.008839483,-0.008920262,0.022294885,0.045536034,0.05262147,0.0040793177,0.014644001,0.063745834,0.020206181,0.026956962,0.013824675,0.021648657,-0.015636424,0.035911843,0.030788174,0.051513646,0.0125783775,0.04108167,-0.021694815,0.002843117,-0.04352811,0.0031157448,0.02305651,0.0025416398,-0.03325769,0.019375317,0.0074950974,-0.012359121,0.0066873115,-0.011412858,-0.029588036,-0.026633848,0.04786707,-0.00082076795,-0.0030840104,-0.021717895,0.038704474,0.00845867,-0.016490368,-0.019629192,0.016640386,-0.001668943,-0.012059086,0.04569759,-0.021279383,-0.022317965,0.035842605,-0.012116785,-0.0349425,0.011684043,0.013316924,0.01185137,0.01585568,-0.030280422,-0.018856026,0.0042668395,0.001000356,-0.0026945423,0.030672776,-0.06319192,-0.018982964,-0.053267695,0.011066664,-0.02092165,0.014644001,-0.014309347,-0.04004309,0.020217722,-0.0010147807,-0.03669655,-0.022606459,-0.011020505,0.015440246,-0.0026454981,0.024048934,0.015544104,0.054513995,-0.031088209,0.004690927,-0.06485365,-0.00843559,-0.0064795953,0.016421128,0.005521792,0.0078816805,0.02818018,0.003037851,0.00007207864,0.019779209,0.00014974688,-0.005694889,-0.034596305,0.048097868,-0.004892873,-0.021590957,0.0021377471,-0.005308306,-0.014897876,0.03448091,-0.008516369,-0.0059487647,-0.024672084,0.005536217,-0.003216718,0.025341392,0.036004163,0.031295925,-0.009445323,-0.02707236,-0.03388084,0.011470556,0.040873956,-0.02425665,0.046690013,0.0027147369,-0.022317965,-0.030603537,0.011095514,0.008683696,0.026333813,-0.008285573,-0.0056169955,-0.0068950276,-0.023541182,-0.019052202,-0.008164405,0.016963499,0.0078816805,-0.019548414,0.017759746,0.010328117,0.046459217,0.019029122,-0.0046966965,0.01924838,0.0070161954,0.031688277,0.00735085,-0.042074095,-0.03510406,0.053360015,0.030765094,-0.029311081,0.0202985,-0.0065084444,-0.0093876235,0.004341848,0.033049975,-0.0036581152,0.004292804,-0.0005138815,-0.026103018,0.0010393028,0.023795059,0.029888071,-0.0061737904,-0.024902878,0.03226527,0.022941113,0.026495371,-0.01410163,0.015001734,-0.00066678383,0.015947998,0.009664578,0.013743896,0.007991308,-0.026887724,-0.010864718,-0.023298847,0.029426478,0.034157794,0.03210371,-0.011660963,-0.0004972931,0.022225646,0.011724432,-0.029772673,0.046043783,0.01353618,0.029749593,-0.026379973,0.011107054,0.04002001,0.015890298,0.0082163345,0.033650044,0.026379973,0.016478827,0.04615918,0.00024522067,0.028410977,-0.042304892,-0.014320886,-0.0015997041,0.017667428,0.007968229,0.010789709,-0.047013126,-0.0132246055,0.0010284843,-0.049990393,-0.03383468,-0.02087549,-0.019929226,0.011487867,-0.008937571,-0.009895375,0.05400624,-0.02425665,-0.0069873463,-0.035265613,0.0066238428,0.02538755,0.030488139,-0.016848102,0.007979768,-0.014367046,0.0139169935,-0.0066815414,-0.020390818,-0.018002082,-0.0031994083,-0.006046853,-0.019375317,0.022733398,0.01636343,-0.020644695,0.008677926,0.008187485,0.015036354,0.0026339584,0.0026671353,-0.012809173,0.007223912,-0.014886336,-0.036004163,-0.025479868,-0.008152866,0.0035282925,-0.047590118,0.04902105,0.014401665,-0.031319004,-0.023841217,-0.03658115,0.058483683,-0.0035946462,0.018555991,0.0152440695,-0.0004969324,-0.026610767,0.040204648,-0.024972117,-0.0078586005,-0.0038629465,-0.03441167,0.004838059,0.017852064,-0.007800902,-0.021948691,0.0076624244,0.017136596,-0.00961265,0.000108996974,-0.0072527616,0.062314894,0.015036354,0.0024132598,0.03997385,-0.0057641277,0.0003721584,-0.022987273,0.017782824,-0.0033407707,0.041612502,0.012059086,-0.035311773,0.0034879032,-0.01917914,0.0022488176,0.031157447,-0.017621268,-0.030372743,0.013409242,-0.069238774,0.004745741,0.013686198,0.029634194,-0.018394435,-0.0070277355,0.0017367392,0.011332079,-0.018856026,0.0054900576,0.045559112,0.0076912735,-0.0045466796,-0.021337083,0.035357933,-0.030649697,0.0020742782,0.0016155713,0.000026573083,-0.026172256,-0.0003368178,-0.019917687,0.012347581,0.02822634,0.005807402,-0.018221337,0.033419248,0.009912685,0.010108861,0.023345007,-0.0017872258,-0.018463673,0.0055592963,0.044335894,0.038265962,-0.029011047,0.019329157,-0.04179714,-0.00059033267,-0.006369967,0.019640733,-0.0044428213,0.020125404,0.023425784,0.024672084,-0.05248299,0.05765282,0.009537641,-0.025733745,0.014540142,0.009687658,-0.0034936732,-0.0069065676,0.027303156,-0.025018277,0.011862909,0.045397554,0.0157749,0.00002848887,0.023321927,-0.008666387,-0.010316577,-0.019836908,0.016571146,0.015763361,0.021660196,-0.0077143535,0.03039582,0.016513448,-0.004664962,0.000640098,0.0073623895,-0.019652272,-0.0012073511,0.007472018,0.010397356,0.02147556,-0.023471944,-0.012959191,-0.017425092,0.022156408,-0.014620921,-0.016801942,-0.012947651,-0.03558873,-0.036858108,0.005879526,0.010812788,0.028687932,-0.006548834,-0.037319697,0.018786786,0.0055708364,-0.007731663,-0.04855946,-0.027280077,0.014343966,0.00022628818,-0.007171983,-0.027810907,0.02313729,0.011632114,0.036927346,-0.009243377,-0.029011047,-0.05285226,0.000662817,0.04299728,0.035173297,0.03265762,-0.013270765,-0.015082513,-0.011274381,-0.013813135,-0.040366206,0.017171215,-0.027326236,-0.024441287,0.024579765,-0.0047572805,0.022952653,0.036604233,-0.04283572,-0.010206949,0.0003543078,-0.014863256,0.0037302389,-0.0030724707,0.010933956,0.015174831,0.018971425,-0.017863603,-0.02596454,-0.022398744,0.020598534,-0.0067738597,-0.04562835,-0.0037100443,0.044405133,-0.008949111,0.0004749347,-0.014413205,0.016190333,-0.017344313,0.016063396,0.019502254,0.0011049354,-0.0010032409,-0.016594226,-0.0011965325,0.024995197,0.015982617,0.015924918,-0.022179486,-0.057283543,-0.034180876,0.008620228,0.003718699,-0.030003468,-0.003505213,-0.015567184,0.0051034745,-0.00014487853,0.0007544141,-0.022456441,-0.009831905,-0.021106286,0.012693775,0.0014886336,0.010645461,-0.011689813,-0.023887377,-0.006421896,0.02658769,0.014770938,-0.0000076349725,-0.0013249128,-0.021048587,0.06079164,0.01747125,0.014367046,-0.0043649278,-0.0142401075,-0.014978655,-0.034088556,0.0041860607,0.017655887,0.015463326,-0.0068604085,-0.0030580459,-0.017875142,-0.025595266,0.0015376777,-0.0035571419,-0.0060526226,-0.0032888418,0.05525254,-0.022710318,0.0015823945,0.009647269,0.014828637,-0.026656928,0.012601457,-0.006600763,0.00047926212,0.0041514416,-0.024902878,-0.003776398,-0.04634382,0.008170175,0.005305421,0.035911843,0.0118975295,-0.045605272,0.0016819251,0.009854985,0.0115628755,0.019652272,-0.002593569,0.008481749,0.008793324,-0.0128899515,-0.003909106,0.01181675,0.016178792,0.016455749,0.021348622,0.002508463,-0.01409009,0.030003468,-0.0020713932,-0.01802516,-0.038312122,-0.03997385,-0.04068932,-0.0031907535,-0.023368087,0.010166559,-0.0058045173,-0.0040475833,-0.018509831,0.04292804,-0.0020468712,-0.01350156,0.040850878,0.015763361,0.064945966,0.005527562,-0.001860792,-0.008758705,-0.010460825,0.016109554,-0.026149176,-0.011130133,0.004503405,0.02541063,0.03390392,-0.015509485,0.02314883,-0.055391017,0.010431975,-0.018232876,0.01522099,-0.0350579,0.033442326,-0.029264921,0.00537466,-0.0010133383,-0.008689466,0.030118866,-0.012612997,0.020737013,-0.009491482,0.021971771,0.0010479577,-0.016778862,-0.013028429,-0.028087862,0.002520003,0.013616959,0.033926997,0.04795939,0.0029801521,-0.03515022,-0.007391239,-0.019282999,0.011966768,0.014736319,-0.00032401583,0.008054777,-0.016109554,-0.0009289535,-0.039766137,-0.0026613653,-0.036350355,0.012670696,0.002033889,0.020333119,-0.014632461,0.0027724358,0.020333119,0.0125783775,0.03614264,-0.0014612266,0.0019401282,-0.034596305,0.018786786,0.02933416,0.042074095,-0.0020021545,0.0076624244,-0.006081472,-0.026726166,-0.010968575,0.0030493909,0.009981923,-0.0070219655,-0.009756897,0.007772052,-0.02938032,-0.018798327,-0.01181675,0.061714828,0.036373436,-0.0056025707,0.013478481,-0.049436484,-0.009854985,0.03325769,0.017875142,0.0031128598,0.0030147715,-0.014447824,-0.02818018,-0.01634035,0.020783171,-0.0012960633,0.0069469567,-0.003949495,-0.01914452,-0.034780942,0.0027464714,-0.028318658,-0.042743403,0.049344167,0.015509485,0.01636343,0.0037504334,0.00077028136,-0.007737433,-0.011032045,-0.0028907189,-0.025779903,-0.013086128,0.0060122334,-0.0016473058,-0.015671043,-0.0068084793,0.0022242956,-0.020725472,0.054790948,0.00012396264,0.015463326,0.011205141,0.025872221,0.013016889,0.009745358,-0.018682929,0.02309113,0.005553527,0.03674271,-0.02032158,0.02938032,-0.0052852263,-0.008856793,-0.0024002774,-0.012243723,0.047082365,0.026749246,-0.013974693,-0.0069007976,0.038242884,-0.022444902,-0.0076451143,0.004904413,-0.0028488871,-0.01575182,0.036004163,-0.008533679,-0.008181715,-0.0069873463,-0.020656234,0.0010054046,-0.019075282,-0.0043072286,0.021210143,-0.017725125,-0.026103018,-0.0030234265,0.05132901,-0.011216681,0.023414245,-0.0052217576,0.012786093,-0.017067358,-0.01802516,0.03231143,-0.0037590885,-0.012555297,0.007679734,-0.015001734,-0.031111289,0.027418554,-0.026818484,0.035519492,-0.021152446,0.014517062,-0.001158307,-0.0042524147,0.025549106,-0.015682582,0.01972151,0.01015502,0.022525681,-0.010628152,-0.007397009,-0.019479174,0.002253145,-0.027926305,-0.01689426,-0.0016934649,0.060006935,-0.024095094,-0.028295578,-0.034042396,-0.039166067,-0.0157749,0.0031417094,0.0072412216,-0.01352464,-0.033511568,0.000380092,0.0015578724,-0.0035282925,0.04112783,-0.0011070991,-0.017217375,-0.004338963,-0.019409936,0.0056141103,0.0077432026,0.024002774,-0.013039969,-0.0108935665,0.0028027277,0.016825022,-0.0068950276,-0.02822634,0.0028503295,-0.012105245,0.037642814,0.017263534,0.0202985,-0.02138324,0.020460058,-0.0024089322,0.021013968,-0.034319352,-0.02036774,-0.029634194,0.025133675,0.039119907,0.01242836,0.003937955,-0.011701353,0.024972117,-0.02421049,0.00537466,0.006381507,-0.004235105,-0.018890645,0.019917687,0.00793938,-0.015521025,-0.014770938,0.022467982,0.028087862,0.0066411523,-0.012786093,0.04073548,0.008845253,-0.005879526,0.0395815,0.0102242585,0.02700312,-0.017794365,-0.015128672,-0.0014345408,-0.014009312,-0.005680464,-0.001073201,0.031319004,0.019675352,0.0060699326,0.015140211,-0.0074143186,0.02820326,-0.022087168,0.025295231,0.005091935,-0.012151404,-0.02935724,0.0013782843,0.0097107375,-0.022744937,-0.0016285536,-0.026079938,-0.013478481,0.010293498,0.013432322,-0.040804718,0.03997385,0.0007215978,0.0316652,0.010085781,0.0019098362,-0.0035744517,0.005198678,-0.07196216,0.0062776487,-0.059545346,0.012739934,-0.0071892925,-0.003606186,-0.000035092697,0.042697243,0.027164679,-0.004843829,0.016513448,0.0107147,-0.0046101483,0.0035715667,0.017055817,-0.036004163,-0.015521025,0.05876064,-0.007639345,-0.0056516146,0.016709624,0.00017499019,-0.005190023,-0.0011748954,0.0030234265,0.013328464,0.010426206,-0.040758558,-0.027141599,-0.03325769,-0.012809173,0.030718936,0.013386163,-0.041266307,0.018452132,0.038012087,-0.011043584,0.04013541,0.038081326,0.02423357,0.012382201,0.0147017,0.0016992349,-0.004336078,0.012312962,-0.02034466,0.03598108,-0.010818558,0.033511568,0.015717201,-0.0011518159,0.0053285006,0.008631767,-0.0025805868,-0.07117746,-0.03662731,-0.0056054555,-0.028503295,-0.010587762,0.025895301,0.0015621998,-0.00267002,0.009347234,-0.0017367392,-0.013940073,-0.008752935,0.006543064,0.00036314293,-0.020529296,0.012647616,-0.01520945,0.05460631,-0.037158143,0.012128325,-0.012336042,-0.0035859914,0.00064622855,0.025249073,-0.0042004855,-0.029795753,-0.022179486,-0.0051092445,-0.026472291,-0.029657274,0.014020852,-0.015347928,0.01859061,-0.03997385,-0.018186718,-0.007835521,-0.00045077325,-0.016248032,-0.028895648,-0.018082859,0.008031698,0.036511913,0.022225646,0.0117302025,0.017067358,-0.023818137,-0.024718242,0.0060237735,-0.007108514,0.0032888418,-0.011637884,0.005741048,-0.0142285675]);
INSERT INTO entities (id, name, description, description_vec) VALUES (13, 'Queen\'s University', 'Queen\'s University at Kingston in Canada is where Elon Musk matriculated after moving to Canada.', [-0.0439021,-0.041612364,0.014941666,0.079953685,0.013119227,0.046168465,-0.0054877624,0.021682356,-0.005046755,0.0072780754,-0.036588974,-0.0021991937,-0.0075175622,0.0066063427,-0.009182291,0.06000031,0.03731328,0.013738389,-0.03179923,0.024205733,0.019252436,0.0019319609,0.042967513,-0.025724433,0.0037441785,0.008732522,0.008206818,-0.03154222,-0.011933473,0.039976843,0.05649562,-0.018563181,-0.05243018,0.029345946,-0.040677782,0.004097568,0.005744773,-0.0011718811,-0.015794475,0.01095216,0.032032877,-0.0070210644,-0.01587625,0.02880856,-0.0076986384,-0.0021174175,-0.053972244,-0.018644957,0.0077920966,0.046589028,-0.0069743353,-0.014322504,-0.016612235,0.0002869466,-0.043224525,-0.05841152,0.04822455,-0.024042182,0.00024624105,0.022908997,0.025934715,-0.0017333619,-0.016215038,0.0025744876,0.061121814,0.007797938,-0.014310822,0.000517307,-0.049346052,0.021472074,-0.0043779435,0.0029118143,-0.0040070303,0.023493113,0.015233724,0.023855263,-0.07392562,0.046635758,-0.010922954,0.00015132234,0.013796801,-0.016390271,0.03509364,-0.04380864,-0.005998863,0.015665969,-0.002895751,-0.0061624153,0.0026343595,0.015654286,-0.035607662,-0.009164767,-0.06476669,0.025233775,0.00095721876,0.017067846,0.046238557,-0.0461451,0.033855315,0.0027614045,-0.029416041,-0.043621723,-0.013621566,-0.0041355356,0.05663581,-0.035070278,-0.013317826,0.046448838,-0.037079632,0.006612184,-0.05995358,-0.016542142,0.031425398,0.020116927,-0.015841205,-0.0116122095,-0.04986007,-0.050934844,-0.05355168,0.006232509,-0.050420824,0.014205681,0.032640357,-0.012873899,0.040046938,-0.01911225,0.023352925,0.030116979,-0.064112484,-0.02129684,-0.0014675894,0.027570236,-0.0223132,0.0062909205,0.06864522,-0.054486264,-0.03829459,-0.06471996,0.013598202,-0.010449821,0.01070099,-0.042056292,0.028060894,-0.0075993384,-0.022605257,-0.020572538,-0.016448684,-0.00077614305,-0.012757076,-0.012850534,0.0070269057,-0.016168308,-0.02773379,-0.031074928,0.00035886577,-0.0037646224,-0.00618578,0.049719885,0.022803856,0.005207387,-0.0048656794,0.0048744413,0.02094637,-0.023796853,0.007862191,-0.00020918626,0.022733763,-0.036542248,-0.044860046,0.032920733,-0.014848208,-0.0367058,0.022745445,0.017850561,0.034159057,0.0009601393,-0.018621592,-0.028271176,-0.021203382,-0.04189274,-0.01764028,-0.025817892,0.009252384,-0.023901993,-0.026705746,0.021472074,0.009649583,0.0057068053,0.008329483,-0.008779251,0.029112302,0.0091238795,-0.008954486,0.066776045,0.021378616,-0.01977814,0.018294487,-0.02855155,-0.032757178,-0.02302582,0.004299088,0.037663747,0.018037478,0.027500143,-0.015186995,-0.01657719,0.0051256106,0.011255899,0.02292068,-0.0060572745,0.017535139,-0.012768758,-0.03404223,0.037827298,0.044486213,-0.03037399,-0.008755887,-0.02824781,-0.009608695,0.035677757,0.017418316,0.032593627,0.009404254,0.021717403,-0.00015196121,0.028948748,0.00067720853,0.023271149,0.034883358,-0.028271176,-0.030187072,-0.0015960948,-0.006384379,-0.046075005,-0.06299098,-0.05635543,0.018294487,0.0061215274,-0.04887876,-0.015595876,0.01876178,-0.007838826,0.009281591,0.07392562,0.013095862,-0.016752424,0.0054585566,0.011226694,0.012465018,0.050374094,-0.016028121,0.024579568,0.05243018,-0.011349358,-0.0074299453,0.007821302,-0.021063194,0.009299113,0.055841412,-0.053224575,-0.03899553,0.033598304,0.00064617745,-0.031775866,-0.0028826084,-0.002885529,-0.062149856,-0.016787471,-0.013037451,-0.01622672,-0.0059930217,-0.024322556,-0.014894937,-0.0028314984,-0.050140448,0.020712724,0.0044042286,0.04539743,-0.019392624,0.046682484,-0.0095678065,0.044906776,-0.011623892,-0.00852224,-0.030631,0.05780404,-0.006331809,0.08032752,-0.026495464,-0.013142591,0.015081855,-0.012044455,0.009334161,-0.030864647,0.02413564,-0.020350574,-0.0053884625,0.012149596,0.02803753,0.016904293,0.0168342,0.013621566,0.016051486,-0.009538601,-0.024509473,0.04892549,0.035467476,-0.02976651,0.005744773,0.03016371,-0.055561036,-0.044089016,0.005405986,-0.0032126335,0.0025277585,-0.0039427774,-0.061075084,-0.03149549,-0.04030395,-0.029088937,0.032032877,-0.055187203,-0.05420589,-0.007470833,0.006349332,0.0054848418,0.055233933,0.052944202,-0.046448838,0.0007571593,0.0009104895,0.008382053,0.018633274,-0.0062149856,-0.011162441,0.04471986,-0.053645138,0.010724355,-0.045817994,-0.00187647,-0.0249534,-0.04401892,0.043294616,0.020958053,-0.005405986,0.0028373394,0.00466416,-0.016413637,-0.011734874,0.0021685276,-0.03595813,0.0022532244,0.05602833,0.011215012,0.005146055,-0.021121604,0.03245344,0.018037478,0.07205645,0.003992427,0.024416015,0.059159186,0.028715102,0.038528237,0.031215116,0.0044918456,-0.05644889,0.0004899266,0.0015683493,-0.014509421,-0.034392703,0.0036331965,0.024836577,0.01414727,-0.00057133764,-0.018294487,-0.02586462,0.013352873,-0.026144996,0.02525714,0.02049076,0.02205619,0.03969647,0.016892612,0.015712699,0.006074798,0.024906673,-0.016016439,0.0074416273,-0.0205959,0.01917066,0.009486031,-0.0238319,0.02677584,0.006466155,0.035724483,0.017663643,-0.032173064,0.011705669,0.027359955,0.01769869,-0.015140265,0.046425477,-0.029696416,0.006582978,-0.025467422,0.0020633868,-0.03675253,-0.011267582,0.0015625082,-0.014824843,-0.04822455,0.00069838273,-0.04483668,0.046729214,-0.0118575385,-0.025023494,-0.0074007395,-0.0076343855,0.020175338,-0.048364736,0.028691739,0.003057843,-0.0132360505,0.015502417,0.05537412,0.0108353365,-0.01794402,-0.0071729347,0.01151291,-0.02586462,0.021682356,-0.05000026,0.04619183,-0.019205708,-0.0295095,-0.026028173,0.031215116,-0.038504872,-0.011530434,0.03686935,0.025187047,0.016472049,-0.048738573,-0.03154222,-0.0061682565,-0.020817865,0.0052833217,0.033598304,0.027873976,0.031448763,-0.031121656,0.042219847,-0.03600486,0.025887985,-0.05238345,0.021331886,0.029626323,-0.0047605387,-0.0029687653,-0.026028173,-0.015455687,0.021156652,-0.02064263,0.050841387,0.039626375,-0.013306144,0.043060973,-0.021588897,-0.018516451,0.0423834,-0.0017727896,-0.008995374,-0.016717376,0.0031834277,0.010099351,0.0037967488,-0.057336748,0.004608669,-0.017850561,-0.08472007,0.011337676,-0.034930088,0.069766715,-0.033808585,-0.01810757,-0.021074876,0.05000026,-0.05186943,0.014229046,-0.00080826937,0.018668322,-0.022850586,-0.010403091,0.010683467,-0.0069743353,0.021986095,-0.034159057,0.020338891,-0.030046886,0.045000233,-0.020701041,-0.04098152,0.045303974,-0.05308439,0.039673105,-0.049252592,-0.00004837204,0.045093693,0.0049357736,0.006454473,-0.05897227,-0.023095915,-0.0070969993,-0.009719676,0.063878834,0.022535164,-0.013469696,-0.015864568,0.010011734,-0.012091184,0.0097897705,-0.013621566,0.006425267,-0.01414727,0.040607687,0.017616915,-0.022640305,-0.01577111,0.0043516583,0.019240754,-0.008452146,0.014275775,-0.016764106,0.020911323,-0.027406685,-0.0012945452,-0.040794604,0.035117004,-0.03016371,0.004541496,-0.009106356,-0.0019699284,0.0014544468,-0.017850561,0.034673076,-0.011588845,0.01622672,-0.008837663,-0.006530408,-0.01804916,-0.001181373,0.037079632,-0.011799127,0.014918302,0.07883219,0.0008652206,0.007348169,-0.034602985,0.0010229318,0.0011667701,0.03579458,0.016670648,-0.01734822,0.024696391,0.038855344,0.0066180252,0.0033732653,0.00451229,-0.026168361,-0.005029232,-0.017605232,0.00050781516,-0.0083236415,0.04446285,0.012126232,0.0018472642,0.042103022,0.0039223335,0.0007768732,0.034813266,0.024182368,0.022990774,-0.027453413,-0.021682356,0.005026311,-0.037757207,0.014789796,-0.033481482,0.030233802,-0.03609832,0.02703285,0.021647308,-0.004991264,-0.017605232,0.014310822,-0.0062792385,0.00005330051,-0.03981329,0.018773463,-0.007622703,-0.01460288,0.0013252114,0.02890202,0.0050175493,-0.014672973,0.010782766,-0.054392807,0.0279908,0.0068341475,-0.024299191,-0.052056346,-0.005111008,0.026799206,0.023154326,0.00062719366,-0.019135613,0.0047050477,0.037617017,0.031121656,0.048551656,-0.008347006,-0.031518854,0.034859996,0.022336565,0.018271124,0.021892637,0.00603391,-0.0034316767,-0.001455177,0.008604017,0.020163657,0.01023954,-0.012605206,-0.010274586,-0.008890233,-0.03990675,0.00167349,0.050888114,0.004897806,-0.0044334345,-0.038504872,0.0051957048,-0.014112223,0.026448736,0.013738389,0.006501202,-0.034883358,0.036074955,-0.0035747848,-0.016366908,-0.027289862,0.016004756,-0.025981443,-0.01577111,-0.013446332,-0.021974413,-0.021390298,-0.02235993,0.028948748,-0.03322447,0.012488383,-0.0136799775,-0.03261699,-0.028364634,0.008148407,0.006547931,-0.0040449975,-0.0145911975,-0.015829522,0.008995374,-0.023341242,-0.026799206,-0.025490787,0.046168465,-0.0411918,-0.033995505,-0.024859942,0.018551499,-0.008171772,0.008586493,-0.009748883,-0.061402187,0.023493113,-0.040747877,-0.048551656,0.00033276313,-0.020560855,0.026705746,-0.006886718,0.028084258,-0.004702127,0.022453388,-0.030514177,-0.030958105,-0.0695798,-0.0064135846,-0.0041180123,-0.0011025175,-0.030467449,0.034252513,0.029439405,-0.0008228723,0.010794449,-0.0062909205,-0.01648373,-0.04289742,-0.041542273,0.04376191,0.007722003,-0.02850482,-0.043434806,-0.00917645,-0.018878603,0.02185759,-0.016775789,-0.02703285,-0.029065572,0.013306144,-0.018072523,-0.008072472,0.042126387,0.016869247,-0.0077161617,-0.002210876,0.010309633,-0.00023109057,0.036191776,-0.024649661,0.008931121,0.009620377,-0.012137914,-0.016250085,-0.0055286502,0.013785118,0.02160058,-0.021986095,-0.00365072,-0.023247784,-0.019673,-0.019194026,-0.013960353,0.012838852,0.017126257,0.0050993254,0.01728981,0.045607712,0.06504707,0.00041545194,-0.020794502,0.017628597,0.007231346,0.0063376497,0.020467397,-0.023808535,-0.022535164,0.059205916,0.014696338,-0.008627381,0.005111008,-0.01977814,0.019708047,0.006653072,0.025584245,0.0024050942,0.01734822,0.01384353,-0.023095915,0.026074901,-0.03098147,0.029883333,0.0053972243,-0.044953506,0.017102893,0.019439353,0.029088937,-0.02525714,0.012698664,0.01764028,0.021916002,-0.0034287563,0.027944071,0.031051563,-0.015502417,-0.003078287,-0.0737387,0.037173092,-0.015373912,0.015864568,-0.017838879,-0.0009411556,0.014053811,-0.019801505,0.021238428,0.009170609,0.0103914095,-0.01617999,-0.035981495,0.015502417,0.018469723,0.016250085,0.02743005,0.058224604,0.020105245,0.0029687653,-0.0020882117,-0.0026051537,0.029112302,-0.013422967,-0.015654286,0.023750123,-0.026285183,-0.01728981,0.02038562,-0.03462635,-0.013446332,-0.002145163,-0.04280396,-0.017009433,-0.027173039,-0.007067794,0.020759454,-0.008387894,-0.0036477994,0.023212738,-0.009497713,0.013107545,0.012686982,0.0008739823,0.024766484,0.0067173247,0.0123014655,0.0028782275,-0.0047430154,0.022605257,-0.019567858,-0.050140448,-0.04016376,0.0037938282,-0.053925514,-0.04243013,0.011390246,0.0374301,0.0025671863,0.007646068,0.01657719,-0.0040742033,-0.007546768,0.0036799256,-0.018025795,0.008913598,-0.017383268,-0.029602958,-0.021261793,-0.0006293841,0.028761832,-0.021729086,0.051075034,0.02768706,-0.05892554,0.007990696,0.008393736,0.013201003,-0.008615699,0.0023773487,0.009386731,-0.012172961,-0.013341191,0.03801422,-0.027850613,-0.001556667,0.017616915,-0.015584193,-0.00080388854,0.038154405,0.011875061,-0.028831925,-0.035771213,-0.01044398,-0.019941693,0.00846967,-0.034299243,0.044275932,-0.012313148,-0.007114523,0.022780493,-0.0049299323,0.011250058,-0.0035631026,0.020315526,0.0033732653,0.011179965,0.011191647,-0.043738544,-0.029229123,-0.016191673,-0.0074357865,-0.004337055,0.007575974,-0.020280479,0.005435192,-0.036939446,0.035514202,0.002210876,0.0050175493,0.019182343,-0.049112406,0.00011289852,0.03310765,-0.026402006,0.006530408,0.0061974623,0.0295095,-0.021261793,0.0057068053,0.015023443,0.017581867,0.013738389,-0.031098293,0.026028173,-0.026845934,-0.0072605517,-0.0018604068,-0.014345869,0.03757029,-0.01612158,-0.010222016,-0.0077570495,0.006144892,0.01095216,0.02023375,-0.0098365,-0.045607712,-0.008457988,0.04675258,0.06322463,-0.015782792,0.0023350006,-0.03028053,0.0069334474,0.019240754,-0.005858675,0.0017026957,0.058504976,0.013726707,0.0058791195,-0.047243237,0.037102997,0.0019845313,-0.031308573,-0.018422993,0.0009856944,-0.005695123,-0.0013230209,0.014941666,0.04948624,0.0111566,0.049813345,0.04233667,0.017523456,0.016507095,-0.007611021,-0.0035076118,-0.0011696906,-0.0032710452,0.025420694,0.028364634,-0.01070099,-0.019684682,0.027920706,0.019591223,0.012009408,0.013072498,-0.020852912,-0.048738573,0.026144996,0.030490812,0.03336466,-0.0052161487,-0.02834127,0.00517234,0.030116979,-0.016705694,0.001577111,0.02332956,-0.009597013,-0.035420746,-0.020362256,0.02205619,0.017850561,-0.011834173,-0.037289914,-0.011051459,0.04081797,-0.0072547104,-0.017967382,0.0031074928,0.048598383,0.012336513,0.001790313,0.025841257,0.05537412,-0.018119253,-0.00294102,0.0065712957,-0.035677757,-0.033037554,-0.0143692335,0.0011507069,0.032056242,0.03149549,-0.009293273,-0.013785118,-0.032687087,-0.030701093,-0.03184596,0.0057476936,-0.019743094,-0.020011786,0.02443938,0.028014164,0.00502047,-0.0211917,-0.020514125,-0.023352925,-0.048411466,-0.00578274,0.013831847,0.026168361,0.010625055,0.011051459,-0.011028095,-0.02733659,-0.04532734,-0.019392624,0.008160089,0.027056215,-0.050280634,-0.0075584506,0.015712699,0.008200977,-0.001942183,-0.006191621,0.006267556,-0.013037451,-0.011880903,0.021530487,-0.026845934,0.0071846168,-0.0050496757,0.0038463986,0.01769869,-0.026682382,0.027920706,-0.0016910135,-0.033645034,-0.021612262,0.022581894,-0.002327699,-0.037079632,0.01734822,-0.009252384,-0.01293231,0.016904293,0.0014230506,-0.008271071,0.011244217,-0.0050379937,0.029345946,0.00067720853,0.04133199,-0.014229046,0.0016866326,-0.010613373,0.021472074,0.017955702,0.0006100353,-0.00395446,0.021740768,0.046635758,0.022944044,0.017161304,-0.0069042416,-0.03539738,-0.009100514,-0.0238319,-0.017862242,-0.0029249568,0.0018399628,-0.004269882,0.012359877,-0.031729136,-0.025397329,-0.015233724,-0.016729059,0.011016413,0.015864568,0.0089252805,-0.0004274993,-0.0037032904,-0.002692771,-0.010823654,-0.0046933657,0.004813109,0.015303818,0.012570159,0.0016150785,-0.014380916,0.021775814,-0.049346052,-0.008475511,0.018434675,0.02890202,0.035000183,-0.014088858,-0.009036262,0.005846993,0.0077161617,-0.0006177018,0.015630923,0.01901879,-0.014007082,-0.017885607,-0.012873899,0.015747745,0.027640332,0.009643742,0.009053785,-0.047944173,0.030654365,0.021729086,0.016004756,0.0015639684,-0.02448611,-0.025724433,-0.0024357603,0.011781603,-0.021916002,-0.001972849,0.0065128845,-0.009550284,0.008936962,0.034182422,0.013586519,0.015502417,0.048411466,0.0067465305,0.052850742,-0.012418289,0.005998863,-0.040117033,0.0019319609,-0.0036477994,0.0028665452,0.017710373,0.0014361932,0.03691608,0.008948645,-0.057196558,0.020373939,-0.030514177,0.021530487,-0.022581894,0.007891396,-0.014743067,0.017266445,-0.015338865,0.01713794,-0.0067874184,0.018750098,0.02820108,-0.028831925,0.025701068,-0.002094053,0.01628513,0.002596392,0.024159005,-0.0347899,-0.01845804,-0.026144996,0.022430023,0.0056191883,0.020070197,-0.024836577,-0.02560761,0.015560828,-0.017570185,-0.0045765424,-0.0039281747,0.029532865,-0.00036434186,0.0111566,-0.025233775,-0.02296741,0.0056863613,-0.047430154,0.026308548,-0.00730144,0.007143729,-0.0028636246,0.013072498,0.032687087,0.0419862,0.019579541,0.04168246,-0.010876224,-0.009053785,-0.0026124553,-0.0007593497,0.0018019953,-0.016460367,0.022184694,-0.023843583,-0.026121631,-0.02012861,0.014836526,0.058738623,0.016051486,-0.0042465176,0.020864595,0.014439328,-0.012792123,0.00441007,0.05060774,0.0194744,-0.024859942,0.020712724,-0.03224316,-0.03584131,0.05191616,0.011816651,0.02008188,0.029953428,-0.0088785505,-0.029602958,0.042617045,0.012722028,-0.00360107,-0.029719781,0.014719702,-0.012313148,-0.044229202,-0.013025769,-0.018680004,-0.015981391,0.019673,-0.030888012,0.0116589395,0.0053066863,-0.010134399,0.013796801,0.0018808509,-0.007126205,-0.024696391,-0.020630948,-0.0075526093,0.020163657,-0.022383293,-0.0150351245,-0.0021466233,-0.0070269057,0.08191632,0.010525756,-0.01581784,0.03098147,-0.0042932467,0.014217364,-0.0062792385,0.017955702,0.018586546,0.008726681,0.01592298,-0.020163657,0.026331913,-0.01830617,0.005765217,-0.0057126465,-0.0011638495,0.04558435,0.031659044,-0.010782766,0.006799101,0.01206782,-0.07761723,0.00068122434,0.022067871,0.0015449846,-0.015911298,0.04341144,-0.006653072,-0.014474374,0.0036390377,-0.034813266,0.007389057,-0.017149622,0.022137966,0.015642604,0.0038580808,-0.019602906,-0.0074416273,0.03322447,-0.02165899,-0.0053212894,-0.0083178,-0.0117231915,-0.018563181,0.021413663,0.0518227,-0.03530392,-0.0153155,-0.014801479,-0.021133287,-0.013025769,-0.003890207,-0.006220827,0.015502417,0.00917645,0.01718467,0.042827327,-0.03483663,0.00060784485,0.00091414026,-0.01475475,0.0057593756,0.0062441914,-0.018972062,0.014824843,-0.01911225,0.013598202,-0.017406633,-0.0124767,-0.01769869,0.044229202,-0.007651909,-0.017500091,-0.029369311,-0.03317774,-0.03764038,-0.02591135,-0.0027321987,-0.013107545,-0.022114601,-0.017932337,-0.01982487,0.06004704,0.05243018,0.013936988,-0.009363366,0.008954486,-0.057523664,-0.007984854,0.0012310228,0.037757207,-0.0061507327,-0.016401954,0.021180017,-0.009801453,0.018201029,-0.014322504,0.016425319,0.0132126855,-0.005820708,0.004249438,-0.023107598,-0.022745445,0.015210359,-0.005233672,-0.01410054,-0.041355357,0.001601936,-0.032009512,0.016168308,0.043878734,0.029789874,0.005248275,-0.010864543,0.051028304,-0.03163568,0.009573648,-0.012044455,0.012465018,-0.032546896,-0.0010426457,-0.011974362,-0.011699827,-0.013352873,0.011588845,0.03392541,0.004690445,-0.0023233183,0.026144996,0.0076694326,-0.004737174,0.027102945,-0.004830633,0.03448616,-0.01739495,0.0012105787,0.008574811,-0.011787444,-0.0029176553,0.010140239,-0.02448611,0.008276912,-0.014509421,0.01237156,-0.04137872,0.019708047,0.017371586,0.022570211,-0.015736064,-0.013878576,-0.023166008,0.004827712,0.0439021,0.013037451,-0.012184643,-0.03981329,-0.0084346235,0.01440428,0.019813187,-0.027102945,0.035537567,-0.007821302,0.025233775,0.008966168,-0.03731328,-0.00816593,-0.018878603,-0.023878628,-0.004745936,-0.012967357,0.01297904,-0.00806079,-0.0036799256,-0.0101460805,0.03509364,-0.0123248305,-0.0009499173,-0.015490735,0.006080639,-0.0062733972,-0.0075234035,-0.0010470265,-0.027313227,0.0117465565,0.04280396,-0.00014493358,0.013072498,0.0026562638,0.01693934,0.01693934,0.018598227,0.027243132,0.015537464,0.0022605257,-0.023247784,-0.0034287563,-0.029182395,-0.018633274,0.009007056,0.007768732,-0.059813395,0.045467526,0.03296746,0.02170572,0.033388022,0.021472074,0.005569538,0.01044398,-0.013481379,0.011413611,0.022371612,0.020852912,-0.024602931,0.0014515262,-0.013469696,0.021004783,0.011255899,-0.01425241,-0.0011769921,0.0003159698,0.0017800911,-0.055888142,-0.023341242,0.0018881523,-0.0139954,-0.006956812,0.03179923,-0.005987181,0.012102867,-0.018014112,0.017418316,-0.00036215142,0.021261793,0.00512269,-0.053224575,-0.0051986254,-0.028528186,-0.010519914,0.048598383,-0.018165983,0.0021480836,-0.0061215274,-0.0035835467,0.043785274,0.02144871,-0.012827169,0.00043188018,0.0002752643,-0.041261896,-0.0071028406,-0.01936926,0.010251221,-0.036331967,0.018598227,-0.04670585,-0.0071962993,-0.023364607,-0.0066063427,0.005642553,0.006612184,0.019743094,0.00684583,0.018586546,0.008831821,-0.0013230209,0.01917066,-0.04588809,-0.016997753,0.018563181,-0.024205733,0.0024080148,-0.018165983,-0.018539816,-0.015128584]);
INSERT INTO entities (id, name, description, description_vec) VALUES (14, 'University of Pennsylvania', 'The University of Pennsylvania is where Elon Musk transferred to and received bachelor\'s degrees in economics and physics.', [-0.03967968,-0.05564378,-0.012384803,0.043434646,0.021267166,0.052437782,0.011116678,0.07294737,-0.00084267167,-0.012165214,-0.025230741,-0.0058959564,-0.0069554723,0.023539908,0.0005928895,0.04119484,0.008926281,0.009041565,-0.023254443,-0.0019612017,-0.008036947,-0.01574451,0.035792958,-0.03500244,0.0071695712,-0.050812826,0.018368594,-0.00028941105,-0.043742068,0.080764726,0.050066225,-0.0040706256,-0.028217148,0.0025527186,-0.022859184,0.038406063,-0.02624085,0.038406063,0.0125824325,-0.004608618,-0.0024758626,0.013515685,-0.04178773,0.025055071,-0.018225862,-0.00796009,-0.028107354,-0.035639245,0.04646497,0.045498777,0.007795399,-0.053974904,0.03866957,0.020454688,-0.027119204,0.004408243,0.027448587,-0.032411292,-0.014295224,0.0030605176,-0.0017855306,0.00003821358,-0.009036075,0.014262286,0.026548274,0.042095155,-0.028261065,0.026855698,-0.0034887155,0.007943621,0.035309862,0.011155106,0.03164273,0.030478911,0.03205995,0.015338271,-0.031357266,0.023474032,-0.012769083,0.031401183,0.030852214,-0.027646217,0.044027533,-0.026394563,-0.012977692,-0.018390553,0.00971131,-0.01750122,-0.0061484836,-0.016864412,-0.010540258,-0.04606971,-0.055248518,-0.008256535,0.009217236,-0.018566225,0.046157546,-0.038735446,0.048485186,0.019532414,-0.03985535,-0.016359359,-0.03827431,-0.031950157,0.020344893,-0.00066185405,-0.029227257,0.02138794,-0.023649704,0.033531196,-0.05406274,0.024044963,0.045191355,0.013647438,-0.024176717,0.0034996949,-0.06763332,-0.018434472,-0.05015406,0.025033113,-0.026987452,0.014525793,0.045806203,0.003927893,0.02703137,-0.02529662,-0.0013923296,0.028612407,-0.007691094,0.009766207,0.004273745,-0.0051795486,0.009359969,0.010606134,0.02896375,-0.053403974,0.029820146,-0.022101603,0.047694664,-0.017380446,0.030017776,0.011737016,-0.035836875,0.026131056,-0.035902753,-0.013910945,0.00776795,0.013164342,0.01554688,-0.02718508,-0.0043066833,-0.008542,-0.0011775444,-0.027316835,0.020575462,0.00054451136,0.006873126,0.06903869,0.019367723,0.0040102387,-0.006455908,0.012176193,-0.017424364,-0.032806553,0.017259672,0.001342236,0.026701987,-0.021585569,-0.034168,0.037220284,-0.05871802,-0.03658348,0.029007668,0.017325548,0.058630183,-0.0024717452,-0.06649146,-0.022573719,-0.014811258,-0.06776507,-0.02043273,0.0016400531,0.005034071,-0.022452945,-0.029293133,0.029907981,0.018676018,-0.002176673,0.004537252,-0.021256186,0.029161379,0.025384454,-0.005231701,0.03844998,-0.04161206,-0.0016853433,0.011956605,-0.0111056985,-0.018785814,-0.013932903,0.001904932,0.051559426,0.06899477,0.039899267,-0.04040432,-0.026328685,0.038186476,0.0032965753,0.026526315,-0.022068664,0.00037158525,-0.054853257,-0.03188428,0.037857093,-0.045323107,-0.0057367547,-0.012384803,-0.0022027493,0.018785814,0.039965145,0.033004183,0.027294876,0.0007857158,0.00031102682,0.015239456,-0.0014945756,-0.0140317185,0.0099034505,0.027843848,-0.015700592,-0.021201288,-0.010342628,-0.04123876,-0.03520007,-0.007855786,-0.017281631,0.035222027,-0.013394911,-0.051954687,0.0014300714,0.006648048,0.002720155,-0.018599164,0.06275845,0.026680028,0.004350601,-0.006626089,0.018335657,0.0045070583,0.03884524,-0.0055528493,0.05494109,0.002173928,0.05713698,-0.004614108,-0.016062913,-0.028524572,0.009162338,0.059376784,-0.01768787,-0.022749389,0.05437016,-0.0122750085,-0.00039079928,-0.026262809,0.013526664,-0.043105263,-0.04086546,-0.044356916,-0.0022974468,-0.0021849077,0.0064668874,-0.026636109,0.048836526,-0.013757233,0.008887853,0.02061938,0.05116417,-0.03537574,0.053535726,-0.012659289,0.020575462,0.021695364,0.0049297665,-0.045498777,0.031598814,0.00738367,0.065788776,-0.013307075,-0.022409027,0.013921924,-0.015524921,0.04611363,-0.0049791737,0.030259322,-0.033113975,-0.0014259542,-0.040338445,0.017073022,0.04163402,0.016721679,0.0011878377,0.030588707,0.019806901,0.006044179,0.01828076,0.008635325,-0.00026453577,0.008009498,-0.028217148,-0.039328337,-0.00003325997,0.017391425,-0.03190624,-0.013054549,0.045235272,-0.062099684,-0.029907981,-0.045586616,-0.056873474,0.02175026,-0.05230603,-0.070663646,-0.025230741,0.017149877,0.021036597,0.017611014,0.07000488,0.014822237,-0.0031977606,0.031554896,0.033904497,-0.047123734,0.00046868462,0.03572708,0.020421749,-0.019301847,0.025186824,-0.00972229,-0.02077309,-0.03462914,-0.050285812,0.006873126,0.00991992,-0.0012743007,-0.028831996,0.016754618,0.05617079,0.014009759,0.03381666,0.006433949,-0.019598292,-0.005791652,0.053403974,-0.016809516,0.034519345,-0.009074504,-0.021827117,0.050768908,0.018708957,0.044752177,0.05419449,0.048880447,0.08968002,-0.010216365,-0.01050183,-0.04545486,0.0023852822,-0.020158242,-0.006159463,-0.041655976,-0.0058136107,0.03787905,-0.0041200332,0.00972778,0.023276402,0.0020174712,-0.012703206,-0.037791215,-0.014130533,0.015513942,0.045630533,-0.005036816,-0.024747647,-0.02896375,0.027997559,0.020729173,-0.0141854305,0.0052289558,-0.0054348204,0.015579819,-0.009480742,-0.02214552,0.012472638,-0.008981178,0.032762635,0.015052806,-0.03405821,0.0033651968,0.02661415,0.012659289,-0.029578598,0.008613367,-0.010908069,-0.021201288,-0.015228476,0.014514813,-0.004065136,-0.018225862,-0.020948762,0.03827431,-0.033728823,-0.0020696234,-0.016381318,0.008618857,0.01923597,0.0070433076,0.028063437,-0.032147788,-0.0019392427,-0.0042133583,0.004995643,0.023979086,0.014207389,0.0006134759,0.0061155455,-0.01302161,-0.022573719,0.018039212,0.039152667,0.036649354,-0.011330777,-0.056478214,0.005989282,-0.00553638,-0.032191705,-0.016051933,0.01651307,-0.060782153,-0.014855175,0.02255176,0.0594207,-0.016666783,-0.02024608,-0.0431931,-0.03263088,-0.021914953,0.03245521,-0.02002649,0.0388672,0.014470896,-0.044554546,0.031357266,0.01828076,0.008624346,0.00017532785,0.04993447,-0.00680725,0.006659027,-0.004424712,-0.03205995,-0.010820233,0.014020738,-0.019400662,0.02854653,0.01224207,-0.0057422444,0.0075318925,0.027887765,0.03050087,0.041107006,-0.040009063,0.007811868,-0.028985709,0.026328685,0.021772219,-0.020575462,-0.0052289558,0.009376437,-0.034760892,-0.018412512,0.007207999,-0.040338445,0.057400487,-0.016578946,-0.055116765,-0.021530673,0.008618857,-0.062494945,0.014514813,0.0048062475,-0.018730916,-0.027097246,-0.008009498,-0.0007747364,-0.0065382537,-0.018621122,-0.041502263,0.06183618,-0.015459045,0.09635552,-0.028129313,0.0024895868,0.02913942,-0.03131335,0.044664342,-0.079227604,0.0139987795,-0.0002514977,-0.0021807903,0.03574904,-0.038318228,-0.013526664,0.008437696,-0.0066151097,0.034168,0.03967968,0.010013245,0.005517166,-0.0061649526,-0.03091809,0.029578598,-0.03285047,0.032433253,-0.010046183,0.024528058,-0.013746252,0.012450679,-0.03959184,-0.013142384,0.041304633,-0.006099076,-0.0028038733,-0.03537574,0.008322412,-0.0009456038,-0.035331823,-0.021706343,0.0077624605,-0.015107702,-0.004921532,-0.0091019515,0.029271174,-0.0135376435,-0.012769083,0.037088532,0.0072574066,-0.008053415,-0.014789299,-0.00073081866,-0.0052564046,0.010139508,0.028019518,0.030808294,0.0032306989,0.02779993,0.011050802,-0.03809864,0.040448237,0.0058959564,-0.019850818,0.042622168,0.015876263,0.02817323,0.052349947,0.03715441,0.021201288,-0.0016098596,0.0010142253,-0.00621985,0.012033461,0.0052207215,-0.01612879,0.004924277,0.05186685,-0.01828076,-0.016216626,0.00320874,-0.007306814,-0.014097595,0.021805158,0.039943185,0.027777972,-0.015711572,-0.016084872,0.0015590797,-0.021091495,0.008327901,-0.052569535,0.00893177,-0.011539387,0.002320778,-0.027953641,-0.015195538,-0.014273265,0.008607877,0.016963227,-0.021398919,-0.010468892,0.020191181,0.016820494,0.005775183,-0.023276402,0.013186301,-0.024396304,-0.02349599,0.015975079,-0.038010806,0.015107702,-0.007855786,-0.043829907,-0.0107049495,0.004375305,0.033179853,-0.043302894,0.013867026,0.0070817354,-0.011605263,0.019521436,0.02079505,0.052964795,-0.0019968848,0.014514813,0.025384454,0.02024608,-0.0033761763,0.0036808555,0.05032973,-0.007054287,-0.0009661903,0.00065602124,0.015239456,0.04936354,0.014877135,-0.043742068,-0.0028546532,-0.02176124,-0.0053991373,-0.008119293,-0.010567706,-0.0047513507,0.016040955,-0.00014547752,0.009458783,0.018752875,0.034277797,-0.0017429853,-0.016348379,0.009370948,-0.0058136107,-0.03184036,-0.0011590166,0.028217148,-0.026482398,-0.0016180943,-0.016491111,0.0023578338,-0.046552803,-0.040272567,0.021936912,-0.011901707,-0.009200767,-0.02529662,-0.025494248,-0.00022971036,0.035683163,-0.013274137,0.031994075,-0.009843064,-0.035661206,-0.014481875,0.030940048,-0.02020216,-0.03910875,0.041897524,-0.04800209,-0.027690135,0.007328773,0.006939003,0.0117809335,-0.0043286425,0.028722202,-0.026855698,0.006099076,-0.017369466,-0.05924503,-0.009321541,-0.015228476,0.017424364,-0.011039822,0.012560474,0.017127918,0.030017776,-0.030061694,0.014415998,-0.06706239,0.009881492,0.009996776,0.019971592,-0.031423144,-0.015579819,-0.014756361,-0.002243922,-0.0124287205,-0.013142384,-0.036781106,-0.019400662,-0.0144928545,0.036846984,-0.015459045,-0.00053799234,-0.021420877,0.014437957,-0.037373997,0.04389578,-0.021816138,0.010430464,-0.045410942,0.010452422,-0.022661554,0.029315092,-0.016183687,0.0103041995,-0.010326158,-0.0878794,-0.012384803,0.03440955,0.012604391,-0.058147088,0.012450679,-0.007466016,-0.0054869726,-0.05639038,0.0023729305,0.02896375,0.016798535,0.0025458564,0.00026830996,-0.006236319,0.0035408677,-0.03381666,-0.012198152,0.004141992,-0.013647438,0.008926281,0.0077624605,0.03959184,0.0011295094,0.010381056,-0.00033521588,-0.005270129,0.0054320754,-0.0017416129,0.0017374957,-0.0059947716,-0.033311605,0.04106309,-0.0060112406,-0.00022645085,-0.006631579,-0.0067743114,0.0049681943,-0.02819519,0.032345414,0.015590798,-0.02700941,0.026306726,-0.026372602,0.05419449,0.0006930768,0.025911467,0.0045647,-0.037571628,0.00041996338,0.048836526,0.014042698,0.023364238,-0.006631579,-0.01283496,0.013296096,-0.034958523,0.013713314,0.0021025618,-0.012549494,-0.028919833,-0.019367723,0.025911467,-0.0034118595,-0.0074934643,-0.00062925887,-0.00022267667,0.016721679,0.0067743114,-0.016150748,0.011583304,0.016249564,0.025845591,-0.02876612,0.01204444,0.04060195,-0.0034667565,0.02681178,0.0016373083,0.020322934,0.06460299,0.012362844,0.029029626,0.035222027,-0.05208644,-0.014075636,0.024001045,-0.011451551,0.006450418,0.001233814,-0.059376784,-0.04062391,0.0046690046,-0.058586266,-0.004271,-0.043061346,-0.021135412,0.013823109,0.028524572,-0.02198083,0.04624538,-0.0149539905,-0.027712094,-0.020344893,-0.008014987,0.033179853,0.012659289,0.0074934643,0.007537382,0.005473248,-0.003980045,-0.016809516,0.010853171,-0.016985185,-0.02839282,-0.01669972,0.006121035,0.036034506,0.02179418,-0.0011253922,0.0129227955,-0.023166608,0.027250959,0.01049634,-0.029820146,-0.0024525314,-0.030083653,0.027470546,-0.032696757,-0.02913942,0.012538515,0.02971035,-0.020235099,0.004734881,0.016447194,-0.04743116,-0.009376437,-0.0013134149,0.03906483,-0.029073544,-0.012571453,0.042863715,-0.029446844,-0.03713245,0.063724644,0.0052179764,-0.027712094,0.027624259,-0.02430847,0.031928197,0.03480481,-0.029622516,-0.023583826,-0.005577553,0.023825374,-0.008887853,0.010424973,-0.032565005,0.026701987,-0.00407886,0.018028233,0.017632972,-0.0148002785,0.0035600818,-0.021541651,0.030061694,-0.01945556,0.029249215,0.019664168,-0.041699894,0.012988672,-0.018983444,-0.007658156,-0.007740502,-0.013856047,-0.019741025,0.020608399,-0.061353084,0.006472377,0.0007939504,0.016491111,-0.02314465,-0.024418263,0.0052948324,0.009272133,0.009876002,0.031159637,0.009700331,-0.0036039995,-0.020322934,-0.008119293,0.009832084,-0.016084872,-0.021892993,-0.0310718,0.0042435518,-0.00194336,0.0068346984,-0.03941617,-0.008728651,0.014558731,0.013449808,-0.01573353,0.007965581,0.00989796,0.021925932,0.0024305724,-0.01688637,0.009667393,-0.008426717,0.027668176,0.064866506,-0.0021327552,-0.0139987795,-0.04415929,-0.015766468,0.018412512,0.0063900314,0.026174974,0.060299058,0.010046183,0.027163122,-0.042446498,0.03904287,0.010825723,-0.022683512,-0.053140465,-0.040360402,-0.014679505,0.0023866547,0.035068315,0.016293481,0.030281281,0.06824817,0.033070058,0.0028299494,-0.0016633844,-0.019565353,-0.016293481,-0.022112582,-0.017830603,0.009436824,0.023935169,0.015634716,-0.015579819,0.02683374,0.005209742,-0.0021807903,-0.0041639507,0.023671662,-0.0081467405,0.007114674,0.01612879,0.052262112,-0.027294876,-0.018785814,-0.011155106,0.021552632,0.010392035,0.0049819187,0.00031428633,-0.014975949,-0.013779191,-0.06666713,0.026943535,0.014723422,-0.0023441094,-0.029007668,0.010326158,0.003129139,-0.017753746,-0.052349947,-0.023847332,0.017984314,-0.010403015,-0.013856047,0.007345242,0.027690135,-0.0337947,0.042139072,0.013856047,0.010435953,-0.03616626,0.017600035,0.0010183426,-0.0006687162,0.02933705,-0.02334228,-0.0665793,-0.016754618,-0.0431931,-0.0014657546,0.010523789,-0.003398135,0.0071091843,0.045191355,0.022046706,-0.0152943535,0.041853607,-0.012615371,-0.027514465,0.0011150988,-0.0021492245,0.010979435,0.009810125,-0.010682991,0.010249303,-0.024725689,-0.007509934,-0.050066225,-0.01010657,0.011605263,-0.022189438,-0.03671523,-0.0031950157,0.002607616,0.019159114,0.010271261,-0.025384454,0.0058794874,-0.01010108,0.018686999,0.01673266,0.0008879618,0.013296096,0.0097168,0.0005311302,0.016282503,-0.025955385,0.0091019515,0.0052015074,-0.02975427,-0.025691878,0.034563262,0.002128638,-0.017764727,-0.01360352,0.01029871,0.000642297,-0.0027256447,0.02465981,0.008690223,-0.026680028,-0.031862322,0.024440223,0.01651307,-0.000709546,-0.010556727,0.019686127,-0.013296096,0.048836526,0.02349599,-0.0078393165,-0.012505577,-0.024396304,0.044444755,0.034892645,-0.0139878,-0.0041447366,-0.017248692,-0.003716539,-0.04782642,-0.009925409,-0.010809254,0.007795399,0.001565942,0.009771697,-0.038362145,-0.017973335,0.0029891513,0.007175061,0.013559602,-0.010930028,0.003614979,-0.022430986,-0.005698327,0.016194668,0.009991286,-0.03790101,0.0033789212,0.035507493,0.0037988846,-0.009156849,0.0074275876,-0.0041968892,-0.022343151,0.0004813796,0.024813524,0.026592191,0.0025101732,-0.050856743,0.038054723,0.010567706,0.028853955,-0.0057422444,0.019378703,0.028217148,-0.013932903,-0.015206518,0.031423144,-0.016062913,0.014690484,0.02681178,-0.008882363,-0.010397525,0.026592191,0.0043011936,0.011506448,-0.017413383,0.00874512,-0.034716975,-0.037044615,-0.009458783,0.002604871,-0.00835535,-0.0023660683,0.030654583,-0.009294092,0.04874869,0.028304983,-0.011199024,0.0092556635,0.020652317,0.056258626,-0.012933775,0.007921662,-0.028524572,0.0042408067,0.0069499826,-0.01790746,-0.021739282,-0.021871034,0.010639072,0.014328163,-0.0023166607,0.038208432,-0.026262809,0.00020672218,0.0031785464,0.010446932,-0.03638585,-0.0086408155,0.013548623,-0.012494598,0.018006274,0.011802893,0.010633583,0.03599059,0.03673719,-0.020487625,0.009453294,0.00021993181,-0.034563262,-0.02175026,-0.012867898,-0.014284245,0.01262635,0.01164918,0.025208782,-0.04231474,-0.024001045,-0.012154235,-0.026504356,-0.011846811,0.0079546,0.006066138,-0.01693029,-0.011846811,-0.034497384,-0.0058136107,0.015568839,-0.023056814,-0.0039004444,-0.0019419875,0.0032142296,-0.01225305,0.012198152,-0.0003166881,0.045323107,0.014624608,0.041458346,-0.0066974554,-0.0061045657,0.021365982,-0.0020682511,-0.007910683,0.004056901,0.014108574,-0.02216748,-0.033333566,-0.037220284,0.02700941,0.04407145,-0.011210003,-0.012571453,0.015096723,-0.022903102,-0.010781805,0.010232833,0.06381248,0.019576333,0.0073013245,-0.01359254,-0.022013767,0.011879749,0.009925409,0.016447194,0.0014739891,0.0023139159,0.006960962,-0.0020311954,0.026196932,-0.019334786,0.006664517,0.0065437434,-0.021453816,-0.0047211573,-0.03671523,-0.009947368,-0.024023004,0.015557859,0.04585012,0.015876263,-0.022815267,0.021025619,0.00972229,0.0059398743,0.014306203,-0.010721418,0.006719414,-0.004356091,0.009398396,0.023430115,0.000802185,0.0124397,0.02334228,-0.0276023,0.041524224,-0.0067907805,0.0024346898,-0.011352736,-0.0028711222,0.034387592,-0.021409899,0.00065121776,0.03131335,-0.026350643,0.014602649,-0.0013703707,0.009069013,-0.006785291,0.0031812913,0.013932903,-0.016293481,0.04301743,0.027756011,0.026987452,-0.019027362,0.0252527,-0.047958173,0.01477832,0.012769083,-0.003883975,-0.018039212,0.0009902078,0.026526315,-0.0026034985,-0.017479261,-0.013812129,-0.0053771785,-0.013197281,-0.0036451723,0.028524572,0.010331648,0.0159092,0.008262025,0.0070817354,0.009941879,0.011506448,-0.0066754967,-0.0361443,0.013878006,0.008421226,0.034870684,-0.016556988,-0.029798187,-0.02661415,-0.028063437,0.0027476037,-0.009733269,-0.027382711,0.002566443,-0.0070872256,0.013285116,-0.0029644475,-0.00524268,0.023056814,0.002835439,0.0019927674,0.001885718,0.0017594545,-0.012659289,0.0039965142,-0.008025967,0.004685474,-0.046728477,-0.00066905934,-0.00060421205,0.04743116,-0.039196584,-0.020520564,-0.0018870904,-0.02817323,-0.040733702,-0.0032416782,-0.03320181,-0.010979435,-0.0019186563,0.028810037,-0.02720704,-0.013164342,0.028722202,-0.015052806,-0.020729173,-0.047123734,-0.046157546,-0.009694841,-0.0037357528,0.024220634,-0.002729762,-0.02216748,0.0056269607,0.010090101,0.015656674,-0.033311605,-0.0036698761,-0.022387069,0.03500244,0.0023001917,-0.02896375,-0.010748867,0.01960927,-0.0033761763,0.020465666,-0.004743116,0.0031373736,-0.014745382,0.013427849,0.004822717,0.0334214,-0.025845591,0.016677761,0.02527466,-0.036254093,0.004778799,0.004389029,0.01729261,-0.052833043,0.0050642644,-0.011210003,-0.0314451,-0.010606134,0.0018582694,0.0497588,0.012176193,0.014855175,0.035880793,-0.009156849,-0.008498083,0.057312652,0.002742114,0.017073022,-0.027843848,0.0051054372,0.016974207,-0.037286162,0.04407145,0.010024224,-0.0037632014,0.015019868,-0.0159092,0.023452073,-0.0039004444,0.047343325,0.0066809864,0.032037992,-0.031005925,0.0035326332,-0.027075287,0.025406413,0.037747297,0.009277622,-0.007735012,-0.051954687,0.018390553,0.026965493,0.0040321974,-0.04292959,0.021453816,0.0018884628,0.042688042,0.039943185,-0.012384803,0.014448937,0.00056166673,-0.046640642,0.0029891513,-0.014657546,0.0092886025,-0.005075244,0.008196148,0.03827431,0.027382711,0.019543394,0.014756361,0.0068292087,0.0023290126,0.029490763,0.009173318,-0.02312269,-0.021728301,0.0070048794,0.033443358,0.0100571625,0.00024377777,0.02255176,0.026943535,-0.025801672,0.00238391,0.00058088073,0.013790171,0.030874172,0.0022905846,-0.014789299,-0.01828076,-0.03478285,0.004734881,-0.00660962,-0.022266295,0.03594667,0.020092366,-0.0018966974,0.041458346,0.03555141,0.007905194,0.027119204,0.0133839315,0.037857093,0.009694841,-0.01321924,-0.015986057,-0.002438807,0.012132276,0.04042628,0.013307075,0.011956605,-0.008810997,0.0114735095,0.028524572,-0.07540676,-0.025120948,-0.0073177936,-0.021892993,-0.02235413,0.011846811,-0.008563959,-0.0154480655,-0.013032589,0.014624608,0.02272743,0.013460787,0.014229348,-0.032301497,0.011429592,-0.019806901,-0.022178458,0.04141443,-0.03768142,-0.00466626,-0.016743638,-0.0008440441,0.034102127,-0.00199414,0.0007006252,-0.012110317,-0.02817323,-0.015217497,-0.021629486,-0.012307947,0.010419484,-0.034387592,0.025735795,-0.012362844,-0.013471767,0.001962574,0.005421096,-0.0073562213,-0.032872427,0.019784942,-0.009738759,0.0033761763,0.035265945,-0.005574808,-0.0152943535,-0.04099721,0.0053140465,0.03399233,-0.012231091,-0.002698196,-0.01730359,0.035331823,0.016820494]);
INSERT INTO entities (id, name, description, description_vec) VALUES (15, 'Stanford University', 'Stanford University is a university in California that Elon Musk attended briefly before dropping out to co-found Zip2.', [-0.038746502,-0.050139874,-0.01952019,0.051179744,0.0026787985,0.019147193,-0.007663398,0.06790811,-0.0066291788,-0.036666762,-0.027940886,0.027895674,0.0030970075,0.02780525,-0.016400576,-0.0029613723,-0.013371387,-0.019588007,-0.026245443,0.001857922,-0.020198368,0.023419706,0.030224081,-0.008816299,0.025499448,-0.0035604283,0.015134647,0.01671706,0.010347848,-0.010534347,0.047879286,-0.013721778,0.00022941451,0.017417843,-0.0460256,0.0318291,0.030857045,0.027488768,0.00007174722,0.01599367,-0.0299076,0.00083006016,0.008172031,0.035423435,-0.0005838679,0.0012489756,-0.014332137,0.03255249,0.03458702,0.031309165,-0.04118794,-0.08811778,0.029116392,-0.013450507,-0.0410297,-0.023035407,0.04206957,-0.032236006,-0.043900646,0.055158384,0.034451384,-0.0057927603,-0.004950691,-0.0034756563,0.021000875,0.0004807285,0.010523044,0.017304812,-0.008516771,0.0410297,-0.0012291955,-0.004591822,-0.005301082,0.05072763,0.041255757,0.013993049,-0.023091922,0.03501653,-0.038339596,0.009748792,0.044759672,0.03386363,0.02604199,-0.05208398,-0.046658564,0.016999632,0.007657747,-0.0074260365,0.0075899293,-0.06573794,-0.0023142784,-0.0071208565,0.0043516345,-0.017338721,0.020130549,0.017044844,0.020492243,-0.006849586,0.024482183,0.0136878695,-0.051722288,-0.042589504,-0.041436605,-0.03447399,-0.002791828,0.037684027,-0.037299726,0.017123966,-0.047065474,0.009025403,-0.027353132,0.0077707763,0.012794936,0.03827178,-0.015326796,-0.020356609,-0.097386196,-0.06221142,-0.02059397,0.016558819,0.007945972,0.011082539,-0.025160361,0.026833197,0.04399107,-0.0026448898,-0.0016700105,0.03946989,-0.020051429,-0.010212213,0.038294386,-0.013020995,0.009647066,0.0019370426,0.025295995,-0.04855746,-0.051857922,-0.04674899,0.0011232304,0.008584589,-0.027240103,-0.038836926,0.013111419,-0.0083076665,0.011252084,-0.024030065,0.020153156,0.03424793,-0.03897256,-0.020989573,0.061985362,0.012874057,0.010325243,-0.03677979,-0.035174772,0.0055130124,-0.009330583,0.019452373,0.023984853,-0.027940886,-0.033049818,0.016242335,0.022232898,-0.016423183,0.033614963,0.0041086213,-0.0025940265,0.005154144,-0.06257311,-0.05660516,-0.014874679,-0.01714657,0.025635084,-0.012953177,0.028890334,-0.01714657,-0.025680296,0.004422278,-0.04184351,-0.06293481,-0.040735822,-0.049371272,0.012636695,-0.02427873,-0.018469015,-0.022300715,0.024640424,0.029003363,0.013439205,-0.03811354,0.030404927,0.013868717,-0.033547148,0.03573992,-0.04417192,-0.014614711,-0.018401198,-0.04288338,-0.006956964,0.0019709514,-0.03126395,0.048919156,0.027850462,0.03379581,-0.04609342,-0.0039221225,0.007929018,-0.013586143,-0.002824324,-0.034451384,0.017135268,0.011432931,-0.020130549,-0.0045381333,-0.02155472,0.019667128,-0.016095396,-0.016231032,-0.01269321,-0.013122722,-0.0073695215,0.015428523,-0.00974314,-0.00077142613,0.023024103,0.018955043,-0.039673343,0.010133092,0.043629378,-0.011523355,0.010992116,0.024165701,-0.005258696,-0.006849586,-0.03479047,-0.033185452,0.015281585,-0.0022789568,-0.03750318,0.008652406,0.01062477,-0.0502303,0.008957585,0.031648252,0.03332109,0.02144169,-0.014015655,-0.021837294,-0.016863998,0.020379214,0.028370397,0.036711972,-0.013846111,0.03931165,-0.014377349,-0.04613863,-0.011653339,0.033140242,0.09245811,-0.05967956,-0.0064991945,0.020119246,-0.056017406,-0.032416854,-0.02934245,-0.014366046,-0.016841391,-0.052943006,-0.035219982,-0.0075616715,-0.023962248,0.007216932,0.002092458,0.04505355,-0.009805307,-0.029771963,-0.016920513,0.080205716,-0.031693462,0.047110684,0.009477521,0.024459578,-0.03139959,0.029613722,-0.02907118,0.008968889,0.028189551,0.03271073,-0.033388905,-0.017463053,0.015620673,0.0030885304,-0.020865241,0.011868095,0.01522507,-0.026313262,0.01855944,0.017734325,0.013823505,0.025815932,0.060990702,-0.0046992004,0.023962248,0.0067252535,0.005357597,0.02197293,-0.0065557095,-0.0008335924,-0.002113651,-0.017881263,-0.051677074,-0.03849784,-0.007917714,0.0021758173,-0.011410325,-0.002416005,-0.07826161,-0.0011592585,-0.004004069,-0.044013675,0.015258979,-0.03892735,-0.017858656,-0.004249908,0.035807736,-0.0038882138,0.046794202,0.050139874,-0.063025236,0.0032722033,-0.011099494,-0.047924496,-0.014207805,-0.03347933,-0.025657691,-0.019859279,0.019723643,0.023261465,-0.0502303,-0.004724632,-0.066280484,-0.028325185,0.0015795869,0.046839412,-0.0117663685,0.0053378167,-0.005979259,-0.016197123,-0.017813444,-0.015439826,-0.010556953,-0.03139959,0.047336742,-0.016909208,0.0034841334,0.03650852,-0.002801718,-0.06221142,0.0859024,-0.003715844,0.027850462,0.03662155,0.036757186,0.013280963,-0.016830089,-0.019113284,-0.05787109,-0.017123966,0.00697957,-0.044895306,-0.029952811,-0.0059001385,0.02864167,0.035988584,0.036079008,0.017429145,0.027059255,-0.000210694,-0.03045014,0.047924496,0.02373619,-0.0073695215,0.017236995,0.028325185,0.00017201673,-0.0006425019,0.05127017,0.026177626,-0.016536212,-0.02561248,-0.0033202406,-0.0033965358,0.015010314,-0.010296985,0.016818786,0.017609991,0.024030065,-0.017768232,-0.0066969963,0.033954054,-0.019621916,-0.020198368,0.022651106,-0.028867727,0.015326796,-0.023939643,0.030472746,-0.038949955,-0.025160361,0.019000255,0.012489757,-0.05533923,0.0016799006,-0.024165701,0.035197377,-0.003297635,-0.010732149,-0.02384922,0.040238492,0.008364181,0.008064653,0.06356777,0.027081862,-0.012094153,0.00036098788,0.003811919,-0.020865241,-0.014569499,0.014173896,-0.0018014072,0.038949955,-0.0014326485,-0.047653224,-0.028121732,0.00062024925,-0.01817514,0.025793325,0.022108564,-0.030088445,-0.03458702,-0.02285456,0.025657691,-0.037797056,-0.0019073724,-0.046658564,-0.026494108,0.014253017,0.024369154,0.0006506259,-0.009991805,0.034767866,-0.030314505,0.023080619,0.019972308,0.018129928,0.01756478,-0.03280115,-0.031670857,-0.0037808358,0.02384922,-0.02604199,0.008872814,-0.019644523,-0.009771398,0.011585521,-0.0030461443,0.048421826,0.030088445,-0.00663483,0.025793325,0.004190568,-0.02017576,-0.021769477,0.008748481,0.007866851,-0.01522507,0.012727119,-0.031964734,0.040487155,0.00056055555,-0.05859448,0.00007753116,0.026765378,0.037955295,-0.022798045,-0.040102858,0.0055045355,0.024640424,-0.021294752,-0.0128288455,0.045822147,-0.013868717,0.0011154596,-0.008997146,-0.018231655,0.010783012,0.024075277,-0.030721411,0.0062674843,-0.042860776,0.07075645,-0.046229053,-0.021916416,0.033117637,-0.034134902,0.03612422,-0.054932322,0.009285371,0.030879652,0.011868095,0.013620052,-0.0060866373,0.0059340475,-0.008957585,-0.00412275,-0.0025587047,0.035265196,0.039582923,-0.013213146,0.0064596343,-0.021543417,0.016536212,-0.018536834,0.034225326,-0.008121167,0.020119246,-0.008776738,-0.038407415,-0.04824098,-0.022481563,0.025702901,-0.033569753,0.013416599,-0.036689367,-0.0032439458,0.003082879,-0.0028200853,-0.008109865,0.008183334,0.024075277,0.03827178,0.029975416,0.013665264,0.0026858628,-0.028279973,0.024663031,-0.008889768,0.008878465,0.019814067,0.01238803,-0.00067464466,0.023001498,0.025069937,-0.03359236,0.03761621,0.03800051,-0.029704146,-0.013846111,0.018728983,-0.0077594733,-0.026109809,-0.0053519453,0.036847606,0.03885953,0.03447399,0.0345192,-0.010489135,0.024301337,-0.032236006,-0.004218825,-0.0020062733,-0.0076068835,-0.035943374,0.039289046,0.037209302,0.011551612,-0.023894431,-0.040283702,-0.004651163,-0.005467801,0.0106812855,0.015609371,0.015394614,-0.011218175,-0.01280624,0.0044392324,0.03386363,0.0027042301,-0.03397666,0.022142474,0.019802764,0.015428523,0.009426658,-0.018197745,-0.016434485,0.012557575,0.032394245,-0.023069315,-0.047608014,0.04164006,-0.0063409535,-0.024482183,0.013122722,0.016852694,-0.00019780158,0.004057758,-0.0028172596,0.003964509,0.048964366,0.016863998,-0.0045889965,-0.010398711,0.02258329,0.0025954393,0.0010010173,0.0022450478,0.0010158524,-0.017632598,0.008906722,0.024866484,0.035152167,-0.008217243,-0.019237617,0.03793269,0.005456498,-0.021758173,0.025815932,0.031851705,0.0020627878,-0.0022860211,0.019169798,0.042092174,0.027285315,-0.010511741,-0.045143973,-0.024210913,0.00038783238,0.06383905,0.026019385,-0.038475234,0.005484755,-0.03006584,0.007465597,-0.022798045,0.035762526,0.02124954,-0.043132048,0.011574218,-0.0007459945,0.02538642,-0.020141851,-0.0062674843,0.023080619,0.005055243,-0.0067591625,-0.005538444,0.046274267,-0.050908476,-0.021306055,0.016943118,0.03137698,0.0017660855,-0.011161661,-0.012365424,-0.024911696,0.020842634,-0.023216253,0.00519653,-0.00022888469,-0.038452625,-0.03155783,0.034067083,-0.0010970923,-0.012964481,-0.006205318,-0.032959394,-0.0056853825,-0.044284947,0.031512618,-0.042227812,-0.0017491311,-0.0038995168,-0.032982,0.011545961,0.008290712,-0.01967843,-0.029749358,-0.038407415,0.02082003,-0.01698833,-0.0047189803,0.0019525841,0.026607137,0.008302014,-0.009991805,-0.0667326,0.035807736,-0.010336545,-0.029817175,-0.017496962,0.028890334,-0.0018353161,-0.020458335,-0.0061148945,0.033275876,-0.026742773,-0.0077651246,-0.042928595,0.0035039138,0.003308938,0.0053095594,-0.03393145,-0.0017660855,-0.022786742,0.038701292,0.006860889,0.033049818,-0.035378225,-0.005962305,0.003800616,-0.003306112,-0.010325243,0.007657747,-0.015609371,-0.012987087,-0.030269293,0.006109243,-0.0032580746,-0.011856792,0.0014227584,-0.011167312,-0.008929328,-0.048286192,-0.019508887,0.016276244,0.015055526,-0.020006217,-0.029455481,-0.015462432,-0.008302014,0.0005573766,0.0026109808,0.03881432,0.025906354,-0.03282376,-0.03885953,0.0061488035,0.0029783265,0.0067817685,-0.013529628,0.018536834,0.006346605,0.01146684,0.010059623,0.028867727,-0.039266437,0.0079007605,-0.018514227,0.057690244,-0.008008138,-0.04195654,-0.009550991,0.019576704,0.032846365,0.0040521068,-0.015598067,0.013857413,-0.02956851,0.015541553,0.04349374,0.043425925,0.014196502,-0.03885953,0.03635028,0.05104411,0.003060273,-0.019847976,-0.007731216,0.00072762725,0.06017689,-0.009912685,0.05411851,0.034202717,-0.039786376,-0.03888214,-0.06759162,0.02274153,0.013665264,-0.009211902,-0.011879398,-0.0306762,-0.011359462,-0.032190792,-0.0046426854,0.011172963,-0.01491989,0.030698804,-0.026290655,-0.0034417475,0.042860776,0.02527339,0.012263698,0.04164006,0.01024047,0.011054282,0.012060245,-0.041549634,-0.0115177035,-0.048828732,-0.024730848,-0.022718923,-0.020966968,-0.0014835119,0.013755687,-0.016174518,0.0021235412,-0.017067451,-0.037186697,-0.020379214,-0.012376728,-0.0063635595,0.052129194,0.0022309192,-0.027782645,0.041753087,0.005956653,0.02527339,0.04392325,-0.025793325,0.014366046,-0.0022478737,0.009630111,0.013326175,-0.010636074,0.024527395,-0.01491989,-0.008991495,0.03309503,-0.035559073,-0.017123966,-0.014546894,0.016468395,0.017903868,-0.014139987,0.021814689,0.013789596,-0.010449574,-0.0016869649,-0.011065586,0.00036416683,-0.010387409,0.00027444967,-0.0052163103,-0.016151913,-0.033185452,0.053937662,-0.014207805,0.0025120801,-0.0011557264,-0.02561248,0.015157253,0.013744384,0.022504168,0.005253045,-0.013111419,0.02907118,-0.008641103,-0.03865608,0.037457965,0.0064144228,-0.000060002756,0.004100144,0.020639181,0.014592105,0.017270904,-0.028664274,-0.02653932,0.0010370454,0.00062060246,0.013122722,-0.01491989,-0.025974173,0.029794568,0.01982537,0.023171041,0.015394614,0.017361326,0.03727712,0.0067704655,0.010935602,-0.008008138,-0.006182712,0.008720224,-0.03149001,-0.020989573,-0.022526775,-0.0054056346,0.029116392,-0.000619896,-0.041707877,0.02258329,-0.037344936,0.02384922,-0.0073356126,0.007002176,-0.000652392,-0.0067478595,-0.001491989,-0.012275001,-0.039017774,0.034609623,0.015835429,-0.013631354,0.009076267,-0.02412049,0.011664641,-0.011709853,-0.025748113,-0.027737433,0.010053972,-0.023114527,-0.003113962,-0.001976603,0.048376612,0.056514736,0.018276867,-0.0025572919,0.030043233,0.042634718,0.03635028,-0.004950691,0.028347792,0.034541808,-0.03562689,0.07021391,0.026471503,0.02243635,0.010811269,-0.051722288,0.010562604,-0.0047867983,-0.0091440845,-0.011438583,0.02412049,0.015552855,-0.014512984,-0.04674899,0.026855802,0.019339344,-0.03632767,-0.029093787,0.0007474074,0.021396479,0.0024993643,-0.0050185085,0.0042357794,0.03194213,0.063070446,0.04164006,0.014863376,-0.026923621,0.007962926,-0.01123513,-0.021599932,0.0043403315,-0.049461696,0.026494108,-0.021362571,-0.02687841,0.03497132,0.021486903,-0.0021701658,-0.030224081,-0.020232275,0.004006895,0.038068328,0.016118003,0.074328184,-0.031241346,-0.03343412,0.010709543,0.023984853,0.014230411,0.003210037,-0.025748113,-0.026245443,-0.03325327,-0.0064257253,0.003125265,-0.0032693774,0.006109243,-0.011240781,0.04720111,0.008573285,-0.016750967,-0.025092542,-0.017971687,0.04283817,-0.026200231,-0.009262765,0.011664641,0.009211902,-0.02323886,0.0060414253,0.03497132,-0.046658564,-0.07098251,0.028732091,0.010799966,0.00682698,0.0027197716,0.00019126706,-0.054751478,-0.009291023,-0.016095396,-0.031783886,0.0102291675,0.015349402,-0.043697193,0.027714826,0.020627879,-0.0049535166,0.028325185,-0.047110684,-0.0149538,-0.031535223,0.007228235,0.02588375,0.012953177,0.0013132612,-0.028619062,-0.012354122,0.000660516,-0.032077763,-0.0055553988,0.014603408,0.00500438,-0.041662663,0.009081918,0.023329282,0.031196134,-0.025318602,-0.017971687,0.006883495,-0.02461782,0.027330527,0.015948458,0.01786996,-0.014931194,0.031309165,0.0037893131,0.01357484,0.0075221113,0.019847976,-0.017033542,-0.01967843,-0.007250841,0.030495351,0.003953206,-0.038520444,0.0047076778,0.003317415,0.0075786263,-0.023600554,0.017609991,-0.012919269,0.022786742,-0.029252028,0.023306677,-0.013947837,0.03359236,0.018039504,0.020842634,-0.01890983,0.016513607,0.012591483,0.003297635,0.018570742,0.00481223,0.007313007,0.025160361,-0.0077651246,0.006239227,-0.0072847493,0.00092825457,-0.025295995,-0.00048037525,0.0051795756,-0.0019667128,0.005894487,0.013642658,-0.05208398,0.008302014,0.0018649863,-0.017994292,0.015609371,0.0012157733,0.02891294,-0.017881263,0.010217864,0.0014213456,0.023464918,-0.020469638,0.0025163186,0.032620307,-0.041007094,0.003961683,-0.0041651363,0.013981746,-0.060538586,0.033275876,0.012580181,-0.0006580435,0.012591483,-0.029432874,0.016287547,0.031083105,-0.020243578,-0.01008788,0.035694707,0.0033315436,-0.021520812,0.002899206,0.01326966,0.014829467,0.01875159,0.023668371,0.039515104,-0.024369154,0.019655826,0.015247676,0.002126367,-0.012060245,0.005035463,-0.010263076,-0.02968154,-0.0014100426,-0.016999632,-0.0008526661,0.00047578342,-0.0071773715,-0.022481563,0.025725508,-0.023645766,0.0013245641,0.04747238,0.012783634,0.046116024,-0.014026958,0.017248297,-0.022809347,-0.011410325,0.022685016,-0.054434992,0.015089435,-0.003854305,0.03117353,0.0029331148,-0.0017646727,0.0043149,-0.03662155,0.025725508,-0.035039138,0.034180112,-0.023024103,0.0016332759,-0.010675633,-0.00089151994,0.009443613,0.0024767583,0.012580181,-0.00446749,0.03838481,0.0034643533,0.05004945,0.024934301,0.0026138066,-0.010144395,-0.03727712,-0.014761649,0.026290655,-0.0055045355,0.005659951,-0.026064597,-0.011031676,0.009647066,-0.022097262,-0.0045042243,0.013744384,0.0062335753,-0.0071999775,-0.025409026,-0.0006566306,-0.027782645,0.0053858543,-0.0070078275,0.028596457,-0.019927096,-0.0065331035,0.013902625,-0.004735935,-0.01721439,-0.0015866512,0.002673147,0.03225861,0.009228856,-0.04555088,-0.006589618,-0.009076267,-0.000706081,0.019531492,0.03533301,-0.00034156092,-0.02335189,-0.03117353,0.04751759,0.036101613,0.0038910396,0.0016700105,-0.009053661,-0.016705755,-0.026132414,0.025748113,0.027579192,0.02001752,-0.008183334,-0.0065783155,-0.000015166259,0.018469015,0.02929724,0.033049818,0.023114527,0.039605528,-0.028099127,0.00794032,0.054208934,-0.024346549,-0.025567267,-0.01932804,0.010647376,-0.00046165474,-0.03397666,-0.0237814,0.01852553,0.016095396,0.039605528,-0.017225692,-0.0017759756,0.028935544,-0.007041736,0.0043007713,0.0063409535,-0.026787985,-0.047381956,0.001267343,0.0021941846,0.02665235,-0.011551612,0.02158863,0.027466161,0.0045240046,0.07161547,0.009285371,-0.011206872,-0.011687247,-0.011178615,-0.0067139505,0.013167934,0.0035915114,0.041662663,-0.038588263,0.014976406,0.0026335868,-0.008624149,0.0035999888,0.004145356,0.0034926108,-0.017858656,0.034722652,0.030811835,-0.014671225,-0.011800277,0.043787617,-0.05027551,0.020865241,0.009550991,0.0058379723,-0.035988584,0.011947216,0.00080039,0.009974851,-0.009161038,-0.022018142,-0.009635762,-0.0019158495,-0.0020006218,0.017576084,0.00047860917,0.00115502,0.013100116,0.029636327,-0.000673585,0.0032354686,-0.0030489701,-0.015948458,0.0067930715,0.014332137,0.02117042,-0.0017943429,0.0066856933,-0.045324817,-0.023690978,-0.000875272,0.0009953658,-0.03677979,-0.016491,-0.0061488035,-0.025431631,0.009093221,-0.017813444,0.011144706,-0.016276244,-0.025725508,-0.0073186583,-0.019045467,-0.035061743,-0.0027014045,-0.022006838,0.015394614,0.00014702661,0.011868095,0.007505157,0.006821329,-0.021984233,-0.030857045,-0.020966968,-0.021000875,0.023826612,0.009285371,-0.027398344,0.01890983,-0.0027339004,0.0117437625,-0.016264942,0.0019186753,0.04114273,0.0102517735,-0.018615954,-0.040509764,-0.0218599,-0.006171409,0.045754332,0.015507644,0.017745627,-0.01998361,0.03275594,0.0176439,0.016310154,-0.041933935,-0.020424426,0.004877222,0.027353132,-0.017361326,-0.017926475,-0.018548137,0.05027551,0.003715844,0.027330527,-0.035219982,-0.010042668,-0.011992427,0.00805335,-0.010862133,0.047291532,-0.031783886,0.029500693,0.020797422,-0.032032553,0.021611236,-0.016547514,-0.013902625,-0.023984853,0.014524288,-0.010551301,-0.009268417,-0.02274153,-0.015236373,0.03447399,-0.003823222,-0.01062477,0.013484416,0.007256492,0.010562604,0.045618694,0.03280115,-0.018514227,-0.006131849,0.0023382972,-0.034767866,-0.034270536,0.024979513,-0.0013330413,0.007702959,0.0055356184,-0.00116491,0.009669672,-0.010754755,0.02251547,0.019463675,0.05072763,0.012546271,-0.023577947,-0.043651983,0.016468395,0.018389896,-0.01718048,0.044262342,-0.05936308,0.012953177,0.018423803,-0.0040860153,-0.02577072,-0.0325977,0.0010356326,0.01913589,0.0015258979,0.0041425303,0.02158863,0.0010207974,-0.0029274633,-0.011302947,-0.041979145,-0.043471135,-0.04360677,0.011189918,0.03904038,0.010556953,-0.03777445,-0.0016021928,0.007889457,0.007680353,0.0026660827,0.008228546,0.0043685893,-0.029274633,0.002868123,0.027782645,0.009409703,0.008431999,0.02178078,0.019791462,0.021520812,-0.025092542,-0.014445167,0.00485179,0.01905677,-0.023487525,-0.002050072,-0.01852553,-0.015812824,0.025137754,0.023917036,-0.03083444,0.050637204,0.047969706,-0.02051485,0.03397666,0.023261465,-0.024595214,0.015790217,0.009036707,-0.012953177,0.0009748792,-0.024143096,-0.014275623,0.0025318603,0.0047387606,0.027353132,0.016491,0.0007791969,0.013981746,0.005676905,0.0005326514,-0.038701292,-0.025793325,0.020582667,-0.033705387,0.005626042,0.019169798,-0.016604029,0.05579135,0.016332759,0.024685636,-0.0062618325,0.019034164,-0.015620673,-0.004023849,0.020853939,-0.013145328,-0.012354122,0.04306423,-0.04977818,0.027443556,0.002780525,-0.0026674955,0.032575093,0.013563537,-0.013461811,-0.007250841,-0.0029302891,-0.0018734635,-0.018333381,-0.023645766,0.0085337255,-0.036847606,-0.00023912797,-0.013642658,-0.018774195,-0.032077763,-0.005224787,0.016479697,-0.011178615,0.03286897,0.0019992087,0.019893188,-0.009262765,0.020367911,0.00051322446,0.024075277,0.015100737,0.008042047,-0.016434485,-0.037480574,0.00920625,0.0222442,-0.026923621]);
INSERT INTO entities (id, name, description, description_vec) VALUES (16, 'Zip2', 'Zip2 is an online city guide software company co-founded by Elon Musk and his brother Kimbal, which was acquired by Compaq for $307 million in 1999.', [-0.044096444,-0.020937784,-0.016897393,0.055013523,-0.014355426,-0.027934883,-0.02436275,0.05046474,-0.01933233,-0.04294587,-0.01463638,0.013479116,0.017847287,-0.021927813,-0.037085965,0.025058446,-0.03221609,-0.026931474,-0.024202203,-0.019546391,-0.018930966,0.003505239,0.02164686,-0.020549798,0.019345708,0.03703245,-0.054906495,0.032483667,0.0106160585,-0.050759073,-0.016001016,-0.01333195,0.016014393,0.019024618,-0.04032363,-0.023238933,-0.00852228,0.034356695,0.028764367,0.025714006,-0.0053682337,-0.0016230127,0.0290587,-0.0036223035,-0.017833907,0.012067655,-0.06646576,0.05506704,0.021887677,0.011887042,0.024215583,0.0015644805,-0.0083149085,-0.023386098,-0.05252507,-0.030744426,0.0179008,-0.030904971,-0.010261521,0.04717356,0.015559516,-0.014756789,0.011278307,0.0065555996,0.011539194,-0.00059577357,-0.05233777,0.007732932,-0.0063649523,-0.0042243483,0.003986875,0.0563514,0.0033430215,0.027720822,0.019385844,-0.032323122,-0.03746057,0.04489917,0.019145027,-0.017686741,0.012054277,0.0054351273,0.002603844,-0.042517748,-0.07438599,-0.022636887,-0.0017894112,0.0041106287,-0.022436205,-0.0111980345,-0.036764875,0.0552811,0.011773322,0.021125086,0.03823654,0.0010084251,-0.04971553,-0.010468892,0.0076392805,0.02164686,-0.08359059,-0.008207879,-0.025152097,-0.032376636,0.017312136,0.0027259255,-0.0025436396,-0.013418912,0.034544,-0.0201083,-0.07502817,0.044711865,-0.0077730683,0.04642435,-0.006692732,-0.0057495288,-0.012315162,-0.03754084,-0.019479496,0.008870128,-0.018757043,0.0014089523,-0.021004677,0.028684095,0.015653167,-0.041474205,-0.061809942,-0.017740255,0.013244987,-0.007191092,-0.013539321,-0.0008365915,0.030503608,0.017031182,0.006321471,-0.02196795,-0.031306334,-0.018917589,-0.024844386,-0.0071576447,-0.0073583266,-0.0034450346,0.033687755,-0.013485805,-0.07385084,-0.044390775,0.0040403903,-0.030610638,-0.061007217,-0.018529603,-0.008094159,-0.033955332,0.03483833,0.008528969,-0.04195584,-0.0000052554806,0.010442134,0.044818897,-0.007900166,-0.022583373,-0.08075429,0.0035219626,0.013030927,-0.0050973133,0.04008281,0.027988398,-0.00753894,0.0007931105,-0.064967334,-0.049849316,0.015492622,0.0036524057,-0.017726878,-0.012408814,-0.02030898,0.00071952725,0.000044552366,-0.0145694865,-0.07636605,-0.056511946,-0.0026774274,-0.02598158,0.04053769,0.030824699,-0.04816359,-0.016950909,-0.001036855,-0.021860918,0.016522788,-0.025058446,-0.007719553,0.028041912,-0.024041658,0.04992959,0.0063315053,-0.0049534915,-0.00775969,-0.042517748,-0.018114861,-0.029861426,-0.03275124,0.004137386,0.016897393,0.018221892,-0.06973018,-0.0683923,0.021004677,0.0013052667,-0.0064385356,-0.052739132,0.028068671,0.037166238,0.015238425,0.037407055,-0.029192487,-0.023680432,-0.021486312,0.023854356,-0.016228454,0.0110308,-0.00034262208,0.02500493,-0.012281716,0.017285377,0.00721116,0.017566333,-0.012442261,-0.04556811,0.053862948,-0.011291686,0.043507777,0.023212176,-0.031975273,-0.02576752,-0.042062867,-0.002724253,-0.029433306,0.0019098201,-0.02980791,-0.015492622,-0.028550306,-0.029219246,0.03548051,0.039681446,0.017954316,0.01572006,-0.05656546,-0.039467387,-0.030396577,-0.054558646,0.022810811,0.046156775,0.05089286,0.03855763,0.020857511,-0.004338068,0.015559516,0.044738624,0.039467387,-0.03754084,0.02042939,-0.008375113,-0.051749103,0.0016280297,-0.0045755412,0.0016606405,-0.000554383,-0.004174178,-0.004565507,0.01596088,-0.024831006,-0.021553207,0.05099989,0.0022476343,-0.059883397,0.016001016,-0.026556868,-0.0052712373,-0.046103258,0.05035771,0.0027995086,0.045032956,-0.05025068,0.016790362,0.044283748,0.02119198,0.04262478,0.011659603,-0.024228962,-0.00049167,0.044176716,-0.02796164,-0.06411109,0.05581625,-0.010830118,-0.0023881113,-0.00094654836,-0.052123707,-0.008207879,0.020362496,0.025553461,0.0053381315,-0.0074720457,-0.01856974,-0.06726848,0.048779014,-0.032965302,-0.00059326505,-0.023426235,0.0033530556,-0.040056054,-0.03529321,0.0012132877,-0.03285827,-0.027265944,-0.024777493,-0.03721975,-0.0066224937,-0.014903955,-0.082092166,0.022650266,-0.03518618,0.0006078981,-0.03657757,-0.029754397,0.03614945,-0.001856305,0.018382438,-0.018529603,-0.027801095,0.046156775,-0.00764597,-0.0021656891,-0.03614945,-0.020402633,-0.046397593,0.036764875,0.020014647,-0.01658968,-0.03320612,-0.061542366,-0.016562924,-0.016148182,-0.007505493,0.007833273,-0.0066158045,0.01398082,0.021392662,-0.0015243442,-0.00048247207,-0.022810811,0.008087469,0.047253832,0.0064619486,0.028764367,0.00091477373,0.011646224,0.017619846,0.033072334,0.024964795,-0.0006835718,0.029005185,0.030985244,0.02881788,-0.009458794,0.00094654836,-0.062452123,-0.0023028217,-0.022717161,-0.0024232306,-0.0071710236,-0.019827345,0.0020519698,-0.0054016802,-0.019907618,-0.0071041295,0.055120554,0.05327428,0.028657336,0.010395308,0.07417193,0.030021971,-0.036122695,-0.009659476,0.038423844,-0.006682698,0.013278434,-0.003147357,-0.004846461,-0.007405152,-0.018556362,-0.0052812714,0.0070974403,-0.059027158,0.0049233893,0.025312643,0.041019324,-0.048538197,-0.012388746,0.003254387,-0.0049534915,-0.04666517,0.023412857,-0.024670461,-0.04629056,-0.052391283,0.0018613221,0.016736848,-0.028710851,0.010040771,0.035426997,-0.059883397,0.012107791,-0.0050872792,-0.0026356187,-0.011117762,0.005916763,-0.02337272,0.017633226,0.049635258,0.03291179,0.0496085,-0.0017994453,-0.0018111517,0.021339146,0.0037828486,-0.018476088,-0.0272927,0.032055546,-0.056190856,0.0040537687,-0.05908067,-0.0079403035,-0.009846779,-0.02634281,-0.02195457,-0.021807404,0.035774846,-0.039734963,-0.0073115006,-0.07829259,0.030664153,-0.0049568363,-0.021352526,-0.033072334,-0.04926065,0.017298756,0.02983467,0.003128961,-0.020228708,-0.035212938,-0.0086159315,0.07031884,0.026048476,-0.024041658,-0.014515971,-0.0067228344,-0.050812587,-0.010830118,-0.0028363003,-0.06234509,0.02129901,0.010602679,0.003364762,-0.012870382,-0.020081542,-0.018074725,0.037487328,0.02194119,0.012642942,-0.0008056531,-0.008549037,-0.02881788,0.0075188717,-0.026770929,-0.0066124597,-0.014074472,0.013244987,-0.011953936,0.011933868,-0.05265886,-0.031306334,-0.013345328,0.047334105,-0.053488344,0.029593851,-0.062238064,0.03885196,-0.003960117,-0.0071509555,0.03186824,0.021767268,0.0402166,-0.015091258,-0.006652596,0.029031942,0.0272927,-0.036363512,0.016348863,-0.0022827536,0.030075487,-0.038611144,0.019372467,0.0030068797,-0.010515717,0.031279575,0.029112214,-0.031092273,0.033901818,0.030262789,0.02535278,-0.050491497,0.021258874,-0.017419165,-0.017432544,-0.0024516606,0.03689866,0.019024618,0.014101229,-0.031654183,-0.03866466,-0.00021656892,-0.010348483,0.028737608,-0.023292448,0.013753381,-0.03210906,-0.06459273,-0.05188289,-0.04524702,-0.006970342,-0.02479087,-0.008528969,-0.011238171,0.013071063,-0.0071175084,0.027560277,-0.037754904,0.032483667,0.0013721606,-0.008100849,-0.0012316835,-0.005241135,-0.015760196,0.0031022036,-0.013753381,-0.028416518,-0.020335738,0.0033948643,0.0141279865,0.011271618,0.0060438616,0.0086159315,0.009947119,0.031119032,-0.004127352,-0.0015469209,0.014154744,0.03585512,-0.020188572,-0.012716526,-0.023653675,0.022850947,0.030557122,0.04225017,-0.04195584,0.016121425,-0.0046390905,-0.042357203,0.002863058,-0.0042176587,-0.03617621,-0.002271047,0.016763605,-0.007893478,0.0023228899,-0.0095457565,-0.044604838,-0.034677785,0.00961265,-0.002988484,0.043079656,0.041875567,-0.008154363,-0.009579203,-0.0008010542,0.022329176,0.020362496,0.0023931284,0.017780391,0.021058192,-0.026356187,-0.00415411,-0.020255465,-0.008040644,0.017619846,0.021258874,-0.035908632,-0.026262535,0.034383453,-0.0034550687,-0.014944091,-0.020469526,-0.019292194,-0.021098329,0.021927813,0.008000508,0.019211922,0.0056491876,-0.0024566776,0.021486312,-0.021058192,-0.009171151,0.012107791,-0.010950527,0.021673616,0.0281757,-0.031333093,0.02599496,0.014301911,0.023934629,-0.012649632,-0.02697161,-0.0056391535,0.039494146,0.0384506,0.03387506,-0.02948682,-0.029647365,0.013740002,0.022021463,0.03256394,0.0046156775,0.036417026,0.010301657,0.007023857,-0.013666418,0.0031272888,0.07021181,-0.0020954506,-0.020777239,0.008502211,0.0022727195,0.0028162322,0.004675882,-0.0006016268,-0.036631085,0.011659603,-0.00003801976,0.0238276,0.01408785,-0.011305065,0.019492876,0.027506761,-0.0031858208,-0.0077262428,-0.0076593487,-0.015492622,-0.004856495,0.011893732,-0.013231609,0.007826583,-0.03558754,-0.03877169,-0.02140604,0.05560219,0.009739748,0.028041912,-0.012462329,0.035400238,-0.0487255,0.028122185,-0.0040337006,0.031627424,-0.009271491,-0.004488579,0.00015291522,-0.023332585,-0.003060395,-0.024175446,0.0023713878,0.009605961,-0.020228708,0.015439106,0.024389507,-0.01846271,-0.035453755,-0.01637562,0.01649603,-0.018409194,-0.00840856,0.024001522,0.03419615,0.0065455656,0.0001740286,-0.077275805,0.039092783,0.0059267976,-0.03497212,-0.032323122,0.01048896,0.015479242,0.010248141,-0.050063375,-0.009318317,-0.04369508,-0.0069435844,-0.02881788,0.019519633,-0.0015912381,0.01606791,-0.0068967585,0.0012709836,-0.006803107,0.025178855,0.03788869,-0.023091765,-0.023319205,-0.005297995,-0.004816359,-0.0025921378,0.023760704,-0.018529603,-0.04794953,-0.02076386,-0.045139987,-0.003669129,-0.01038193,-0.011552572,0.0026055165,-0.006358263,0.015572894,-0.039627932,0.008348356,0.025312643,0.02119198,-0.015867228,0.009371832,-0.057100613,0.008910264,-0.010234763,-0.00054602127,0.029620608,0.026021717,-0.000050065886,-0.046263803,0.025058446,-0.013606214,-0.008254704,-0.001441563,0.011860284,0.011699739,0.009893605,0.0103150355,-0.018703528,0.009291559,0.012134549,0.011505746,0.055869766,0.01125155,-0.00050588493,0.017405786,-0.04326696,0.0070840614,0.01780715,-0.0017526195,-0.026128748,-0.012850313,-0.013967441,-0.0075188717,-0.008033955,0.040912293,-0.02317204,0.035908632,0.04420347,-0.0187838,-0.028416518,-0.016027773,0.008943711,0.0393336,-0.039173055,0.02032236,0.01889083,-0.028363002,-0.048029803,0.00097246974,0.009699612,-0.010736467,0.0011497384,-0.0061341682,-0.0019800586,0.00072412624,-0.01812824,0.010689641,0.0011288342,0.009632718,-0.0052678925,-0.07315514,0.014502592,-0.005592328,0.022891084,0.01637562,0.014890577,0.010629437,0.023560023,-0.017285377,-0.02480425,-0.014315289,-0.023867736,-0.03213582,-0.04163475,-0.012121171,-0.0025637078,-0.005886661,0.021472935,0.01300417,-0.01048896,-0.024389507,-0.020014647,0.027747579,0.005221067,0.012475708,0.02326569,0.019907618,0.049876075,0.027747579,-0.000790602,0.0146631375,-0.03614945,0.022422828,0.0028296108,-0.031948514,-0.028443277,-0.0027225807,-0.019599905,-0.006649251,-0.036845148,0.01398082,-0.0496085,-0.03441021,-0.013459048,-0.010234763,0.007987129,-0.0040771817,-0.016161561,0.02881788,-0.0034617581,0.0005418404,-0.014930713,0.026396323,0.013793517,-0.027252564,0.0059936913,-0.012027519,-0.029406548,0.02796164,-0.025098583,0.010187937,0.00052093604,-0.041768536,-0.040805265,-0.018583119,0.009238044,-0.027827851,-0.013251677,0.029406548,0.0010627764,-0.03243015,0.050116893,0.03387506,0.0024734011,0.01911827,-0.020482905,0.0131981615,0.0056592217,-0.025847794,-0.021446176,0.0016397361,-0.012281716,0.02360016,-0.019961132,-0.0067529366,0.050812587,-0.009251423,0.001441563,0.022583373,-0.03585512,0.041019324,0.015211667,0.014810304,-0.019278815,0.034784816,0.004729397,-0.02849679,-0.041072838,-0.025031688,-0.011412095,0.07438599,-0.021753889,-0.021044813,0.014047714,-0.0135928355,0.010763224,-0.016897393,-0.029460063,-0.02194119,-0.017004423,-0.015827091,0.0022743917,-0.040002536,0.034115877,0.0027309426,0.03288503,0.003779504,-0.035212938,0.020282224,-0.015800333,-0.008923643,-0.0072379173,-0.01965342,-0.018168377,-0.01300417,-0.015613031,0.06368297,0.041393932,-0.0023864391,-0.022128494,-0.0060237935,0.02282419,0.02228904,0.009311628,0.024723977,0.03625648,-0.010107664,0.013077753,0.0005723607,0.034142636,0.002834628,0.00049752323,0.02631605,-0.0069636526,0.018007832,-0.020295601,0.02347975,0.03154715,-0.06539545,-0.023988144,0.008368424,-0.031707697,-0.0050404537,0.0032008719,0.0027075296,-0.010870255,-0.044604838,0.0072847432,-0.009325006,0.033339906,0.02598158,0.01779377,-0.012502465,-0.029888183,-0.0037293336,0.01637562,-0.036657844,-0.011398717,-0.051294222,0.018007832,0.029112214,-0.0281757,0.026182262,-0.013860411,-0.020456146,-0.023466371,-0.016763605,-0.0077931364,0.03548051,-0.014475835,0.027747579,0.009271491,-0.020081542,0.024162067,0.009820021,0.034998875,0.006672664,-0.01573344,0.0044283746,-0.018542983,0.003889879,-0.017606469,0.022556614,0.01529194,-0.02293122,0.055013523,-0.0035487202,0.0003668711,0.016549544,-0.023867736,0.04291911,-0.0029583815,0.025821036,0.01759309,-0.014823683,0.019385844,-0.010602679,0.00399022,-0.042517748,0.027934883,-0.016121425,-0.03778166,-0.013231609,0.013111199,-0.016308727,-0.027720822,-0.0006777186,0.008930332,-0.031627424,0.008027265,0.030904971,-0.013606214,0.011679671,0.012067655,-0.0054585403,0.0014106246,0.005605707,-0.0058063883,-0.012857003,0.022342555,0.006301403,0.050732315,0.032965302,0.010442134,-0.0052846163,-0.012027519,-0.01911827,-0.024202203,0.009171151,-0.0024449711,-0.0038530873,0.044711865,0.008040644,0.0076861065,-0.015064501,-0.0117800115,0.01529194,0.00721116,0.028791124,0.0007801498,0.03957442,-0.002911556,-0.018195134,0.01757971,0.0042276927,-0.029005185,0.024282478,-0.0109639065,-0.0074586673,-0.02096454,-0.025379537,-0.008047333,0.003538686,0.01812824,-0.016308727,0.02535278,0.0072981217,0.021325767,-0.018944345,-0.01889083,-0.00096745265,-0.009211287,-0.036978934,0.014689895,0.022850947,0.018730285,-0.033045575,0.031734455,0.011512436,-0.027332837,-0.0013637989,0.03703245,-0.007920234,0.032804757,-0.04195584,0.010930459,0.015586273,0.009184529,0.013552699,0.0051140366,0.029754397,-0.0074653565,0.028924912,0.019091513,-0.013954063,0.007197781,0.0017225173,-0.015024365,-0.0058833165,-0.01070302,0.023948008,0.01626859,0.024831006,0.0018981138,0.03930684,-0.020549798,-0.020630071,0.014716653,-0.015251804,0.014449078,-0.019867482,0.03408912,-0.010114354,0.03186824,0.033714514,0.011371959,-0.010121044,-0.011371959,0.029781153,0.019372467,-0.0006246216,0.032965302,-0.0025001585,0.022516478,-0.024376128,-0.0028128875,0.020924404,0.024001522,0.022784054,0.001884735,0.031199304,-0.0009791591,0.018355679,-0.009251423,-0.00071534637,-0.02096454,-0.0027894746,-0.0019031308,-0.026128748,-0.022195388,-0.010395308,0.010167869,0.035132665,-0.036309995,-0.01998789,0.017726878,-0.0016255212,0.06073964,0.043775354,-0.00906412,0.063629456,-0.009880225,0.024108553,-0.006575668,-0.011177966,0.034784816,-0.022088358,0.022569994,-0.0065455656,-0.010957217,-0.02414869,-0.017325513,0.0011096022,-0.029326275,-0.004662503,-0.02828273,0.0076927957,0.023774084,-0.025178855,-0.025740763,-0.011171278,0.002699168,0.0036958866,0.006863312,-0.016509408,0.011258239,-0.025941445,-0.003919981,-0.021004677,0.017164968,-0.024710597,-0.009291559,-0.017191727,0.016843878,0.03382154,-0.0128034875,-0.058599036,-0.010649505,0.051856134,-0.021058192,0.011632845,0.011224792,0.002010161,-0.0253394,0.0063649523,-0.024389507,-0.025299264,-0.00147501,-0.028015155,-0.023078388,0.018690148,-0.012482397,0.024081795,0.004174178,0.011860284,0.015639788,-0.010756535,0.028015155,-0.020523041,-0.01725862,-0.031627424,-0.02764055,0.0050973133,-0.015987637,0.02337272,-0.027801095,-0.0067596263,-0.0011154554,0.03689866,0.016857257,0.0102682095,0.0395209,-0.0063816756,-0.0077262428,-0.0017961005,-0.010743156,0.0028363003,0.010107664,-0.0074854246,0.012455639,0.0028580409,0.027720822,0.044497807,0.034677785,0.027747579,-0.012649632,-0.020937784,0.011840216,0.028603822,0.014596243,-0.0119138,-0.03291179,0.03221609,-0.0097798845,-0.026356187,-0.007565697,-0.009739748,0.007920234,0.020603314,-0.011539194,-0.017084695,0.020911025,0.004501958,0.038423844,0.023426235,-0.019292194,-0.02315866,-0.01364635,-0.0032895063,0.029112214,-0.029540336,-0.010642815,0.012094413,-0.0201083,0.028924912,0.016536167,0.010850186,-0.0021138464,0.042651534,-0.014275153,0.006488706,-0.01354601,0.011693049,-0.01408785,-0.03529321,-0.00786672,0.045407563,0.0030821352,-0.0017843941,0.0040169773,0.003789538,0.03679163,0.022663645,-0.029406548,-0.0042511057,0.019466117,-0.0069636526,0.01660306,0.03689866,0.0006660122,-0.07096102,0.009050742,-0.013847033,0.010555854,-0.022917842,-0.013231609,-0.009498931,-0.01998789,0.023573402,-0.006338195,-0.0053314418,0.02227566,0.028389761,-0.016041152,0.0016480979,0.029005185,-0.02479087,-0.009124325,0.002304494,0.028710851,-0.015666546,-0.008201189,-0.01715159,-0.048217107,-0.0016422446,-0.010141112,0.021218738,-0.006692732,-0.026369566,0.010769914,-0.019640042,0.006890069,-0.024162067,-0.011037489,-0.00798044,-0.05843849,-0.017700119,0.004361481,0.026035096,-0.014368804,0.021553207,-0.019519633,0.005364889,0.048029803,0.019840723,0.034062363,-0.011338512,-0.019640042,-0.0058197672,0.00324937,0.04093905,0.033018816,-0.017071318,0.07845314,-0.0116395345,-0.0130576845,-0.023118524,-0.015345455,0.011385337,0.036657844,-0.016001016,-0.0025637078,0.031092273,-0.023466371,-0.0049969726,-0.025138719,0.03288503,-0.003485171,0.025218992,0.0061542364,0.008107537,-0.015131394,-0.002588793,0.033955332,0.02392125,-0.007846652,0.009652786,0.05359537,0.035239693,0.014730032,0.025245748,-0.026530111,-0.0036423716,-0.0063749864,0.045621622,-0.007023857,-0.017017802,-0.023292448,0.038397085,0.010000634,-0.02096454,-0.023466371,0.0067629707,-0.034651026,-0.0036323376,0.011512436,-0.027587034,-0.030102244,0.0059702783,0.00062211306,0.0069636526,-0.03144012,0.014449078,0.014275153,0.028336246,-0.014368804,0.02634281,-0.016121425,0.0060204486,-0.014783546,0.0056558773,0.03374127,-0.026489975,0.0031891656,-0.0007513018,0.020135056,0.003036982,-0.031493638,0.015760196,0.004829738,-0.015158152,0.0008729651,0.029326275,0.0010192954,-0.017820528,0.011672981,0.0027359596,0.023332585,-0.022556614,0.039253328,-0.044524565,-0.010575922,0.008555727,0.02764055,-0.02567387,0.012549291,0.008087469,0.019907618,0.0015452486,0.007946992,0.001884735,-0.01605453,-0.023011493,-0.017432544,-0.026235778,-0.017338892,-0.0030252754,0.015760196,-0.00961265,0.004348102,-0.008381803,-0.0011497384,0.008421939,0.0096394075,-0.03780842,-0.006147547,-0.0021105018,0.00088299916,-0.013713244,0.023506507,0.027065262,0.022222146,0.026275914,-0.011157898,0.018061347,-0.020630071,-0.00938521,0.014957471,0.0064820168,0.020014647,-0.024215583,-0.024376128,0.016348863,-0.00041871384,-0.0047896015,-0.017379029,0.08107538,0.045514595,-0.006863312,0.05496001,0.032804757,0.008087469,0.001928216,0.016161561,-0.011846906,-0.013833653,-0.011545883,-0.022462964,0.02535278,0.029995214,0.022636887,0.011599398,-0.01879718,-0.019479496,0.0044517876,-0.01059599,-0.007739621,-0.004000254,0.017017802,-0.027386352,0.023774084,0.005287961,0.005615741,0.015158152,0.025928067,0.003856432,-0.016857257,0.018007832,0.009345074,0.0091510825,-0.017405786,0.028577063,-0.03221609,0.035319965,0.015800333,0.0072579854,-0.020014647,-0.018757043,0.01365973,0.006358263,-0.050197165,0.030958485,0.0051407944,0.010201316,-0.012636254,0.0026004994,-0.032323122,-0.013352018,0.012549291,-0.034570754,-0.0015209995,-0.0027878024,0.006716145,-0.022222146,0.009806642,-0.004083871,0.005712737,0.017205104,-0.013097821,-0.003254387,0.013713244,0.03582836,0.03430318,0.004174178,0.014957471,0.009144393,-0.016161561,0.037674632,-0.04792277]);
INSERT INTO entities (id, name, description, description_vec) VALUES (17, 'Compaq', 'Compaq is a company that acquired Zip2 for $307 million in 1999.', [-0.015104799,-0.06548897,0.026524862,0.06601163,0.04068888,-0.0053572385,0.008408251,0.06930437,0.012177917,-0.05472223,0.038624384,0.028824557,-0.02554488,0.008917842,-0.02796217,-0.006872945,0.011041137,-0.0051416424,-0.015927983,-0.022983858,-0.01971725,-0.000055226104,-0.0037370005,-0.02554488,0.012073386,-0.013138301,-0.040192354,0.032404758,0.020239908,-0.048110615,0.020109244,-0.023807045,0.0045797853,0.04288404,-0.040349152,0.0025561214,-0.013798156,0.026760058,-0.0131317675,0.010466214,-0.013419229,0.024055308,0.022121474,-0.022422003,0.027413381,-0.0035769367,-0.046307445,0.026890723,0.013229766,0.03595883,0.008636913,-0.011380865,0.009590764,-0.014895736,-0.025466481,-0.015810387,0.041551262,-0.02968694,-0.0043119234,0.021115359,0.0042237253,-0.05372918,0.013347363,0.012778973,0.027805373,0.016620506,0.016293844,-0.008747978,-0.013850421,0.017652754,-0.026629394,0.07244032,-0.01407255,0.034730583,0.029164283,-0.01352376,-0.06318928,0.046464242,0.006186957,0.01924686,-0.05545395,0.007382536,0.012243249,-0.04032302,-0.034756716,0.012550311,-0.00038831812,0.040035557,-0.002998747,-0.021428954,-0.003723934,0.07777142,0.02536195,0.0042955903,0.016176246,0.01671197,-0.04526213,-0.03961743,-0.037735865,0.018005548,-0.06428686,-0.03470445,-0.029347213,-0.037370004,-0.020409772,0.0014389411,-0.021651084,-0.006820679,0.05007058,-0.0022702932,-0.004269458,0.03067999,-0.028484829,0.038284656,-0.02304919,-0.012099518,-0.05346785,-0.03041866,-0.004854181,0.034808982,-0.007911727,0.008447451,-0.032352492,0.00018374674,0.04541893,-0.013432295,-0.042544313,0.014921869,0.020279108,-0.04952179,0.020292174,-0.0038774647,0.006111825,-0.017731152,-0.0072518713,-0.013628292,-0.02485236,-0.049730852,-0.0077810623,-0.03130718,-0.026159003,0.024486499,0.04871167,-0.030078933,-0.04855487,0.0017574355,0.004916246,-0.051560152,-0.0393561,-0.023558782,-0.0023748246,-0.010858208,-0.009976223,0.023467317,-0.028798424,0.002023664,0.019599652,-0.011994988,-0.0071081407,-0.018475939,-0.06878171,0.007879061,0.026629394,-0.007539333,0.041760325,0.028615493,-0.024878493,0.01443841,-0.07437415,0.007833328,0.0010314317,0.0031996432,-0.015927983,-0.020370573,-0.027622445,-0.025871541,-0.0054062377,-0.026668593,-0.070349686,-0.08545449,-0.028014436,-0.026786191,0.04233525,0.03786653,-0.04113314,-0.0413422,-0.02877229,-0.0071538733,-0.004390322,-0.02704752,-0.006820679,-0.008107723,0.0025789875,0.010440081,-0.036194026,-0.022147607,-0.01916846,-0.032378625,-0.021389754,-0.00789866,-0.018632736,-0.024421167,0.00793786,0.058433097,-0.073903754,-0.02877229,-0.016738104,0.0025446883,0.010368216,-0.03925157,0.006013827,0.0092445025,-0.008003191,0.037265472,0.011661793,-0.042805642,-0.041472863,0.004844381,0.03277062,-0.031803705,-0.015300795,0.011354732,-0.003932997,0.031803705,-0.02221294,0.04743116,-0.029791472,-0.032195695,0.03504418,-0.015823454,0.041864857,0.004191059,-0.0054879026,0.027622445,-0.0017476357,0.002387891,-0.024251303,0.027909905,-0.027361115,0.012164851,-0.033554606,-0.023467317,0.03321488,0.043537363,0.02170335,0.022160674,-0.041316066,-0.021572685,0.000110248046,-0.042544313,-0.0046712505,0.068311326,0.017090896,0.04144673,0.015496792,-0.0015353061,0.006239223,-0.0006978293,0.008323319,-0.025466481,-0.013758956,0.0052657733,-0.014242414,-0.007571999,-0.009714895,0.004040795,0.019952446,-0.0040342617,-0.021651084,0.021546552,0.007003609,0.00885251,0.06648202,0.0052461736,-0.025009157,-0.028197367,-0.022278272,0.013994152,-0.007748396,0.046150647,0.0016667871,0.015183197,-0.048293546,0.06653429,0.03261382,-0.0059060287,0.06313702,-0.022513468,-0.008728378,-0.02840643,0.038101725,0.0016145214,-0.022604933,0.0010673645,0.007121207,-0.02767471,-0.030575458,-0.048946865,0.047091432,0.008440917,0.019521253,-0.0040277285,0.0008558515,-0.014464543,-0.045627993,0.020932429,-0.030915186,0.006186957,-0.049730852,0.022957727,-0.0097018285,-0.010564213,0.028615493,-0.021768682,-0.01748289,-0.030105066,-0.04980925,-0.037004143,-0.0300528,-0.07207446,0.020514304,0.038023327,0.021820946,-0.019952446,-0.02393771,0.03514871,-0.030209597,0.0024989557,-0.0029317813,-0.014595208,0.047378894,-0.027726974,-0.01656824,-0.051142026,-0.005386638,-0.06433912,0.025048357,-0.001429958,-0.049600188,-0.021350555,-0.052553203,-0.018528204,-0.032561556,0.021860145,0.0017852017,-0.03595883,0.02529662,0.01854127,-0.009636496,0.004792115,-0.023467317,-0.00032033183,0.06334608,-0.013758956,0.05435637,0.023689447,0.021768682,-0.036455356,-0.002763551,0.025048357,-0.0042759907,0.040375285,0.010080755,0.014516809,-0.031437844,0.017914083,-0.02950401,-0.010067688,-0.004632051,0.021428954,0.007852928,-0.0010689977,-0.032195695,0.01543146,-0.016032515,-0.053938244,0.036638282,0.011433131,0.041498996,-0.032457024,0.022748664,0.046124514,-0.0035050712,0.03478285,0.02481316,-0.021050027,0.006846812,-0.0094209,-0.021167625,-0.012413113,0.012517645,-0.015679723,0.014791205,-0.03708254,-0.017391425,0.0151309315,0.03086292,-0.010361683,-0.031829834,-0.009734494,-0.021285223,-0.010244085,0.017495956,-0.042857908,-0.04095021,-0.061516777,0.010923539,0.052318007,0.0054650363,-0.002779884,0.023584915,-0.028275765,0.01466054,0.01015262,0.02235667,-0.0375268,-0.037030276,0.020043911,-0.017169295,0.03995716,0.026446465,0.007356403,-0.001979565,0.004648384,-0.0035116044,-0.01898553,-0.045575727,-0.054147307,0.017313026,-0.014007218,-0.0005128576,-0.035619102,-0.035566837,0.01656824,0.0187634,-0.014229348,-0.011184868,0.03216956,-0.015666656,-0.015758121,-0.034155663,0.057962704,0.007474001,-0.030183464,-0.050201245,-0.01352376,0.051769216,-0.002608387,0.004658184,-0.015588257,-0.025740877,0.027334983,0.025388082,0.041551262,-0.0009260836,-0.009296768,-0.026916856,-0.025649412,-0.027648577,0.010224486,-0.021115359,0.04207392,0.015810387,0.0047300495,-0.03321488,0.011727125,0.015718922,0.022252139,-0.010655678,0.011714059,-0.006977476,0.013033769,0.0043119234,-0.0045634527,-0.019116195,0.042857908,-0.054042775,0.03995716,-0.010884341,-0.029059751,-0.030209597,-0.023284387,0.008663046,0.035018045,-0.04980925,0.031620774,-0.031803705,0.02712592,0.02668166,-0.0010877807,0.029085884,0.031908233,0.053075857,-0.014542942,-0.023036124,0.03849372,0.05098523,-0.032822885,0.014033351,-0.030340262,0.015784254,-0.018789534,-0.0008868843,-0.02712592,0.017535156,0.012380447,0.019037796,-0.01835834,-0.014085617,0.010897407,0.040401418,-0.0005602234,-0.011544195,-0.017509023,-0.031359445,-0.0019109661,0.034181792,0.020840963,0.023375852,-0.024042241,-0.017979415,0.009061573,0.004331523,0.018332208,-0.012811639,-0.0024156573,-0.030758388,-0.04771862,-0.0062653557,-0.048842333,-0.005510769,-0.021690283,-0.018789534,0.003068979,0.010564213,0.040113956,0.026942989,-0.009466632,0.019913247,0.033031948,-0.008793711,-0.009982756,-0.025871541,-0.026041405,0.025753943,-0.0031522776,0.014085617,0.0026475864,0.009741027,0.0036847347,0.008493183,0.0044458546,0.0006337221,0.036847346,0.0042465916,-0.039408367,0.0024564897,0.020906296,0.006703081,-0.032221828,-0.0029105484,-0.015901852,0.0009032173,0.014503743,0.05670833,-0.023153722,-0.010231019,-0.040296886,-0.06747507,0.0012462112,-0.018645803,-0.017744219,-0.040845677,0.022957727,-0.016006382,0.024956891,0.0054650363,-0.022709465,0.00019038204,0.02191241,0.017090896,0.013419229,0.06120318,0.026760058,-0.0025757211,0.0113024665,0.016150113,0.020266041,0.035984963,-0.0053735715,-0.0009905992,-0.004158393,0.009505832,0.023428118,-0.0170125,0.0027341514,-0.0011114636,0.0016610705,-0.020723365,-0.0012266116,-0.0003713726,0.013190567,-0.016855702,-0.031437844,-0.012236716,0.016829569,-0.008257987,0.010492347,-0.019573519,-0.0043347897,0.01110647,-0.040845677,-0.022239072,-0.0376052,0.019090062,0.012818173,0.036847346,-0.037997194,0.040636614,0.021794815,-0.0023111256,-0.041185405,-0.029922137,0.016999433,0.045837056,-0.0006079975,-0.007924793,-0.007539333,-0.0119884545,-0.0009930491,0.03206503,0.04241365,0.017077832,0.0413422,-0.024904625,-0.00962343,0.0069905426,-0.020357506,0.08357292,-0.02371558,-0.028641626,0.017025566,0.005549968,0.010884341,0.023650248,-0.030836787,-0.008943975,-0.01488267,0.016058648,0.022892395,-0.00021192124,-0.026733926,0.023375852,-0.0010689977,0.008094656,-0.028380297,-0.035749767,-0.0054421704,-0.000845235,0.005576101,-0.02723045,-0.004024462,-0.032300226,-0.024107574,-0.015496792,0.030706123,0.011224068,0.025126755,0.02056657,0.010028489,-0.07897353,-0.0019256659,0.01858047,0.060419194,-0.026838457,-0.019952446,-0.0066671483,-0.018828733,0.019272992,-0.006160824,0.018685002,0.005938695,0.0009048506,0.0151309315,-0.010257152,0.00024867058,-0.018920198,0.006755347,0.003037946,-0.005602234,-0.0016921033,0.05853763,0.03350234,-0.0053474386,-0.0025463216,-0.09439193,0.01675117,-0.013628292,0.0044295215,-0.038441453,-0.0018097012,0.0035050712,0.030105066,-0.031228779,-0.036559884,-0.053128123,-0.010224486,-0.020070044,0.029216548,0.0046124514,0.04076728,0.022082275,-0.016019449,-0.027334983,0.029425612,0.0433283,-0.04434748,-0.043537363,-0.028014436,0.0047561824,0.021742549,0.009812892,-0.0012241616,-0.054304104,-0.002876249,-0.027152052,-0.0038872645,-0.009107306,-0.001209462,-0.010394349,-0.010590346,-0.009832492,-0.03350234,0.0044981204,0.00848665,-0.006899078,0.012151784,0.0012625443,0.0037174008,0.025152888,-0.023284387,-0.012563378,0.034547653,0.017103963,-0.00451772,-0.01835834,0.0015883885,-0.030470926,0.024747828,-0.013164434,-0.023924643,0.010551146,0.017234627,-0.0110738035,-0.020292174,-0.00036361438,-0.016019449,0.023650248,0.023820112,-0.030758388,0.022382803,0.02304919,-0.04797995,0.020788698,0.008584647,0.0015663389,-0.014621341,-0.030314129,-0.017313026,0.008310253,-0.0063992864,0.058485363,-0.02858936,0.03734387,0.015339995,-0.0047986484,0.0113873985,-0.012739774,-0.008277587,0.047013033,-0.049547922,0.021141492,0.00262962,-0.014399212,-0.033084214,-0.01275284,0.005961561,-0.007833328,-0.040924076,-0.021141492,0.019691117,-0.013693624,-0.0112698,0.003064079,0.04225685,0.0017509023,0.009453566,-0.10479281,0.02089323,0.0066573485,0.011224068,0.0023829911,0.022657199,-0.02099776,-0.0021281957,-0.001242128,-0.03478285,0.0074348017,-0.025492614,-0.03804946,-0.033633005,-0.049783118,-0.00806199,-0.030078933,0.009022374,0.020279108,-0.025571013,0.0007480534,-0.035488438,0.019743383,0.014490676,-0.0002707202,0.034756716,0.019887114,0.043668024,0.0038382653,-0.008336386,0.051403355,-0.021154558,-0.014804271,0.01090394,-0.027805373,-0.013981085,-0.013615225,-0.0375268,0.00050509936,-0.025401149,-0.001486307,-0.04453041,-0.052683868,0.033606872,-0.029164283,0.027805373,0.021141492,0.019573519,0.04805835,-0.03305808,-0.016816502,-0.015457593,0.029556276,-0.00023825828,-0.0062751556,-0.029739207,-0.0225788,-0.029817605,0.021677217,0.012145251,-0.043040838,-0.021311356,0.022422003,-0.0074936007,0.00545197,-0.0063992864,-0.020135377,-0.02327132,0.014634407,-0.0014765072,-0.017208494,0.028301898,0.0023143922,0.017156228,0.01729996,0.011211001,-0.03368527,0.0029285147,0.0013564593,-0.0037272007,0.009466632,-0.017103963,0.02503529,-0.04426908,-0.0082449205,0.027439514,-0.016489841,-0.00046385845,-0.0075327996,-0.056865126,0.00095221645,-0.011028071,0.021546552,0.019913247,0.023637181,0.018227678,0.005226574,-0.019299125,-0.04442588,0.0011277967,0.06637749,-0.01990018,0.012667908,0.026655527,-0.010400882,-0.022618,-0.02598914,-0.008943975,-0.015117865,0.0028190834,-0.01297497,0.006634482,0.011230601,0.028929086,0.011589928,0.0073956023,0.039408367,-0.008963575,-0.017456757,-0.045314398,-0.0009105672,-0.04162966,-0.008669579,-0.031777572,-0.017077832,-0.041289933,0.020187642,0.035357773,0.0038382653,-0.000008160142,-0.0012249782,0.009799826,-0.064077795,0.026577128,0.033606872,0.04541893,-0.022239072,0.010629545,-0.0061510243,0.024212103,0.0263942,0.0041355267,-0.017691953,-0.022095341,0.00657895,0.0011286134,0.00036831014,0.04753569,-0.057387784,0.007885594,-0.016189313,-0.027387248,-0.00096773286,0.020697232,-0.032091163,0.043014705,-0.024055308,0.00086646795,0.048659403,-0.011459264,0.02125909,0.02239587,-0.020370573,-0.016764237,0.010119954,0.024551831,-0.007924793,-0.02375478,-0.04560186,-0.0015777721,0.03141171,-0.017940216,-0.019691117,0.009107306,-0.009819426,-0.0011384132,-0.0022408937,0.0068860115,0.040845677,-0.02412064,-0.002698219,0.010714477,0.011531129,0.018632736,0.016672771,0.04016622,-0.0048313146,-0.0045405864,-0.0019223993,-0.00010397003,0.016045582,-0.031542376,0.0025724545,0.02613287,-0.0026279867,0.044295214,-0.026564062,0.0010044822,-0.005543435,-0.014569075,0.0017525356,0.023663314,0.0395129,0.028171234,-0.017757285,0.018057814,-0.028171234,0.009675696,-0.030706123,-0.010877808,-0.008355985,-0.06047146,0.004367456,-0.0017182362,-0.02932108,-0.05608114,-0.027413381,0.06564577,-0.016437575,0.009251036,-0.0036978011,-0.030810654,-0.003926464,-0.012596044,0.000056502122,-0.012863905,-0.002007331,-0.01902473,-0.021206824,0.03060159,-0.01916846,0.006997076,0.04322377,0.005128576,-0.009153037,-0.027753107,-0.016150113,-0.008976641,0.0113024665,-0.00905504,0.0114461975,0.028301898,-0.023624115,0.023506517,0.002495689,-0.024068374,-0.009629963,0.01652904,0.029425612,-0.025179021,0.023780912,-0.015549058,0.00030644872,0.014255481,0.019991646,-0.020174576,-0.016333044,-0.015549058,0.005050177,-0.024721695,-0.04262271,-0.0069121444,0.042047787,-0.013902687,-0.015849587,-0.022565734,-0.011341666,0.016555173,-0.055767544,-0.018724201,0.0010632812,-0.0006525051,-0.022683332,0.022513468,0.01949512,-0.0034005397,0.017313026,0.027334983,-0.00058635627,-0.04541893,0.018266875,0.07202219,-0.0060105603,0.016725037,-0.006872945,0.015901852,0.016359176,-0.027021388,0.026119804,-0.023375852,0.038180124,0.0031914767,-0.0037925327,0.017796485,-0.00030808203,0.013719757,0.03313648,-0.0106164785,-0.0045569194,0.008068523,0.024303569,0.012419647,0.025335817,-0.010577279,0.032744486,-0.0040440615,-0.018162346,0.00469085,-0.030549325,-0.01726076,-0.007826795,-0.00009952948,-0.02331052,-0.00078439445,0.04068888,0.017090896,0.040636614,0.030366395,0.03206503,0.024577964,-0.004021195,0.030078933,0.019651918,-0.006337221,0.0047561824,-0.0021379953,-0.00657895,0.010636078,0.028641626,0.00639602,0.011563795,-0.000847685,-0.008924375,0.012680975,-0.0187634,0.0101591535,0.01660744,-0.0025250886,-0.021820946,-0.0069644097,0.024538765,-0.019508187,0.04933886,-0.056865126,-0.033659138,0.007885594,-0.017940216,0.02385931,0.01652904,-0.016450642,0.05655153,-0.013968019,0.0100742215,0.0096168965,0.0014952902,0.036429223,-0.001263361,0.019664984,-0.010688344,-0.021232957,-0.023584915,0.0020040644,0.0029481144,0.014346946,-0.01264831,0.0033972731,-0.008297186,0.0034364725,-0.016594373,-0.011465797,-0.0032829419,-0.013706691,-0.027204318,-0.0051416424,-0.009126905,0.015353061,-0.046333577,0.021794815,-0.015535992,-0.0073760026,0.014542942,-0.006788013,-0.012380447,0.012713641,0.024787027,-0.031228779,-0.024708629,-0.02239587,0.02558408,-0.017966349,-0.012883505,0.006461352,0.010838608,-0.02777924,-0.054304104,-0.019312192,-0.028249633,0.02345425,-0.0037402671,-0.0450792,0.0082449205,-0.023545716,0.00676188,0.00716694,-0.0002939948,0.02144202,0.006438486,0.02913815,0.0087871775,0.0000591052,-0.004583052,-0.037892662,0.0049717785,-0.012282449,0.0052233073,-0.015405327,-0.006471152,0.02081483,0.037761997,-0.011001938,0.012151784,0.013223233,-0.0028795155,-0.03742227,0.035200976,0.00131726,0.02371558,-0.020501237,0.018345274,0.044007752,0.033345543,-0.0014740572,0.011204468,-0.0049391123,0.017339159,0.0129880365,-0.03376367,0.02704752,0.027517913,0.0020857297,0.030209597,-0.020004712,0.04599385,0.0032649755,-0.013334297,0.012177917,-0.005785164,0.022069208,-0.004458921,0.0100154225,0.011504996,0.010139554,-0.0027178186,-0.0023895244,-0.008761045,0.0015998216,-0.02529662,0.0047725155,-0.0187634,-0.0011759792,-0.036350824,-0.020579636,0.024930758,-0.018449806,0.016424509,-0.0243689,0.008401718,-0.0005790064,0.016424509,-0.026577128,-0.009825959,-0.021232957,0.016685838,0.00017139487,-0.02895522,0.0015761388,0.017495956,0.018371407,-0.016894901,0.022226006,-0.020448972,0.014373079,0.022343604,-0.039094772,0.0069252104,0.020788698,0.020056978,0.042047787,0.05926935,-0.013027236,-0.018946331,-0.019416723,-0.016816502,0.019299125,0.008774111,-0.0020220308,0.0004426255,-0.007206139,0.004259658,-0.021820946,-0.038180124,0.00039709712,0.019743383,-0.018645803,0.015745055,0.0072257384,-0.016999433,0.02572781,0.0032372093,0.037761997,-0.029713074,0.0029595476,-0.04113314,-0.047117565,-0.041603528,0.014934936,0.013105635,-0.026420332,-0.03708254,-0.020017779,-0.040113956,0.020553503,0.010028489,-0.0037141342,-0.004667984,-0.032979682,-0.024760894,0.0094013,0.02767471,-0.028746158,0.012569911,-0.070245154,0.021716416,0.03689961,0.010890874,0.0073694694,0.007656931,-0.011864323,-0.019547386,0.008702246,0.03723934,0.0051253093,-0.0039035974,0.046960767,-0.01634611,0.020252975,0.02481316,-0.013190567,0.016110914,-0.00077500293,-0.02686459,0.019821782,0.01488267,0.002392791,0.031071983,-0.019194594,0.011243667,0.0041028606,0.004775782,0.019847915,0.03867665,0.020475104,-0.03159464,0.031281047,0.009166104,0.0028615494,0.026289668,0.033371676,-0.00024274987,0.012543778,0.01297497,-0.0021869945,0.002113496,0.013994152,0.047300495,-0.028432563,0.010400882,-0.021768682,0.0050567104,0.004566719,0.00097508274,0.007356403,0.03086292,-0.002763551,0.0034560722,0.037840396,-0.016960233,-0.02243507,0.036821213,0.0050828434,-0.045967717,-0.013680558,0.00864998,-0.0006108558,0.021611884,-0.041028608,0.035383906,-0.041080873,0.02858936,0.0075589325,-0.00020926712,0.016594373,-0.006487485,0.017861817,0.021964677,-0.04669944,-0.028249633,-0.018645803,0.005435637,0.005344172,-0.015810387,-0.007833328,0.022604933,-0.021899344,-0.039721962,-0.00094486657,-0.012805106,0.023767846,-0.018867932,0.020932429,-0.054826763,0.008355985,0.0056512333,-0.010466214,-0.02804057,0.0054879026,-0.0081011895,0.024421167,-0.011191402,0.0060824254,0.02536195,0.0025740878,-0.017417558,-0.027152052,-0.013732824,-0.020056978,0.00621309,0.01051848,0.024904625,0.021507353,-0.018528204,0.031620774,-0.012099518,0.010041555,-0.024564898,-0.020148443,-0.013282031,0.024381967,-0.010505414,-0.01443841,0.04424295,0.016594373,0.029242681,-0.009120372,0.014699739,-0.045758657,0.008734912,0.018136213,0.010048089,0.0013932086,-0.010165687,-0.0006623049,0.025492614,0.03041866,-0.0054977024,-0.0056577665,0.028118968,0.015745055,-0.018750334,0.039669696,0.04136833,0.034835115,0.00057818973,0.010217953,0.025531814,-0.008937442,-0.014725872,0.016542107,0.006686748,-0.016738104,0.0010061155,-0.015117865,-0.0056055007,0.009525431,0.026276601,0.015914917,-0.0070493417,0.03567137,0.025675545,0.008669579,0.035749767,0.03269222,0.0013295098,0.035932697,0.035436172,0.0038088658,-0.008094656,0.027726974,0.0017411024,0.0085585145,-0.0029742473,-0.009590764,-0.03462605,0.035566837,0.028510962,-0.002930148,-0.04372029,-0.0005728815,0.0075850654,0.005680633,-0.0244081,0.027596312,0.006369887,-0.013072968,-0.012596044,-0.01598025,-0.019638851,-0.0012413113,-0.00828412,-0.0149610685,0.008950508,0.01411175,0.021585751,-0.0024695562,0.028014436,-0.0049227793,-0.020658033,0.03551457,-0.024055308,-0.013994152,-0.0036782015,0.026616327,0.036847346,0.0019550654,0.036586016,-0.003165344,-0.025897674,0.03878118,-0.04105474]);
INSERT INTO entities (id, name, description, description_vec) VALUES (18, 'X.com', 'X.com is a direct bank co-founded by Elon Musk, which later merged with Confinity to form PayPal.', [0.03751868,-0.05776973,-0.019765113,0.051305667,0.04601689,-0.009843004,0.0050401604,0.05528355,0.041632175,-0.04029868,-0.019358283,-0.019233976,0.023709094,-0.008243939,-0.040795915,0.0073059723,-0.068392485,0.017719667,0.010396743,-0.03340519,0.0055204444,0.0060402816,0.008605565,-0.00853776,-0.036366,0.012577799,-0.0657707,0.025246004,-0.009826052,-0.033653807,0.036727626,-0.014114709,0.007961419,0.04642372,-0.04601689,0.030579986,-0.011922352,0.07729752,0.026782915,0.008729874,-0.011685035,-0.0030116653,0.01552731,0.0048480467,0.013414059,0.016374871,-0.014329424,-0.012329182,0.0067804847,0.00069182133,-0.017877879,-0.028365027,0.04041169,-0.003313962,-0.06323932,-0.013956497,0.022997145,-0.021607144,-0.015866334,0.069477364,-0.03652421,-0.014352025,-0.017584058,-0.010820524,0.036682423,0.03037657,-0.042649247,0.00867902,-0.012091864,0.050311197,-0.00048275638,0.014103408,-0.004314083,0.061069567,0.037948113,-0.010085971,0.014566741,0.043485507,-0.002870405,0.008277842,0.020906495,-0.0155386105,-0.0044016647,-0.029133482,0.00643016,0.010560605,-0.01791178,0.021889664,-0.03390242,0.02194617,-0.0433499,0.0019847043,-0.014758855,0.017516252,-0.0011477383,0.01875934,-0.029856734,-0.014148612,-0.001445797,0.01930178,-0.023573484,-0.0058538183,-0.03417364,-0.05216453,-0.005356583,0.06626794,-0.026353484,-0.00009817577,-0.018544625,-0.020872591,0.012046661,0.026466493,-0.009899507,0.035077706,-0.014770156,-0.0063962573,-0.020895194,-0.028206816,-0.045790873,0.008876785,-0.03788031,0.035597544,0.003904429,0.018996658,0.033382587,-0.053656235,-0.010125523,0.014702351,-0.012509994,-0.011436418,0.05582599,-0.015312594,0.0209856,0.024952183,-0.015753325,-0.020296251,-0.025652833,-0.054153472,-0.027325353,-0.009396622,-0.041473966,-0.018216902,0.009583085,-0.03132584,-0.019821616,-0.030037547,-0.019527797,-0.028319824,-0.07743313,-0.053113796,0.004921502,-0.026217874,-0.0017261984,0.0071308096,-0.020940397,0.01875934,-0.011786742,0.073138826,0.0009111276,-0.0005650404,-0.024545355,-0.01609235,0.02266942,-0.003384592,0.031099822,0.051260464,0.012419588,-0.02195747,-0.0349873,0.016566984,-0.038535755,0.020375356,-0.05889981,-0.0035315023,-0.0010559192,-0.022838932,-0.028478036,-0.033812016,-0.04237803,-0.038106322,-0.004737864,-0.009357069,0.034467462,0.014363327,-0.058538184,-0.023754299,-0.017968284,0.004915851,0.0040343883,-0.02181056,-0.0052379244,-0.0032913603,0.03051218,0.020047633,-0.029020473,-0.008249589,0.031371042,-0.043282095,-0.029698523,-0.016487878,0.0079275165,0.057995744,-0.0092158085,0.054605503,-0.054786317,-0.015369099,0.020477064,-0.0037857706,0.0049864813,-0.02141503,0.022466006,-0.021358527,0.015572513,-0.016431374,0.008170484,-0.09040646,-0.0029466855,-0.019957226,-0.008413452,0.028139012,0.010526703,0.030625189,0.013041132,0.024454948,-0.04226502,0.03469348,0.062606476,0.019505193,-0.0011427941,-0.02544942,0.0055712983,0.03733787,-0.0391912,-0.024545355,-0.01315414,0.0017502126,-0.004514673,-0.030738197,0.00643016,0.021742754,-0.025359012,-0.015821131,-0.016894707,0.03889738,0.016770398,0.008351297,-0.03064779,0.009972963,-0.009690443,-0.015900236,0.028342426,0.04350811,-0.03234291,0.024613159,0.032116897,-0.021652348,-0.021460233,0.024658363,0.024206331,-0.014917066,0.0251782,-0.012792515,-0.024929581,-0.0147136515,-0.0024664013,0.018623732,-0.008729874,-0.0010997099,-0.042197216,0.05682046,0.033631206,0.005989428,0.018985357,0.02210438,-0.03528112,0.026941126,-0.04461559,0.020454463,-0.034829088,0.048774287,-0.02364129,-0.0060176803,-0.014917066,-0.012555198,-0.05189331,-0.0006187192,-0.04436697,0.006983899,-0.035461936,-0.007916216,0.016578285,0.018838447,-0.012973327,0.039010387,0.030150555,-0.032003887,-0.010701865,-0.00040117867,-0.007430281,0.034761284,0.01695121,0.017730968,-0.022782428,-0.03150665,0.007458533,0.04127055,-0.026398687,0.029404702,-0.008492557,-0.0026415638,-0.032410715,-0.036885835,0.07530858,-0.011543775,-0.022488607,0.011843246,-0.024002915,-0.02547202,-0.04179039,-0.07612224,0.023324868,0.003816848,-0.055238348,0.0082721915,0.012521295,0.04592648,0.0121709695,0.0069556474,-0.029608116,-0.02321186,-0.005294428,-0.01427292,0.045248434,-0.06667477,-0.006452761,-0.03889738,0.003791421,-0.012159669,-0.0054893675,-0.0047519896,-0.019527797,-0.026150068,-0.002644389,-0.0032828846,0.019652104,-0.02755137,0.01932438,0.030444376,0.019810315,0.00573516,-0.04366632,-0.016453976,0.05261656,0.0011639833,-0.0004308433,0.023110151,0.008006622,-0.02768698,0.029540312,0.024997387,-0.01970861,0.024929581,0.005904672,0.03654681,0.038219333,-0.017810073,-0.045248434,-0.0026980678,0.0082721915,-0.028636247,-0.03946242,0.01985552,0.055193145,0.036659822,-0.0009852892,-0.0024649887,0.03991445,0.019471291,0.0047322134,-0.0069273952,0.036207788,0.024545355,0.0026627528,-0.014871863,-0.0035795309,0.010600158,0.0147136515,-0.004514673,-0.010747069,-0.008582964,0.020036332,-0.04393754,0.009136703,-0.04881949,0.0071421103,0.0067974357,0.02755137,-0.0010064782,-0.0071251593,0.00008727225,0.022579014,-0.018623732,0.016171455,-0.0057464605,-0.06744322,-0.024680965,0.02194617,0.0041191443,-0.00020959467,0.006492314,0.038309738,-0.023550883,-0.0044609937,-0.016815603,-0.0049469285,-0.0037857706,-0.028139012,-0.023822103,0.03525852,0.05903542,0.017855275,0.0065827207,-0.0016612187,0.03523592,0.004740689,0.04967835,-0.05248095,-0.06545428,0.026466493,-0.0047915424,-0.0061306884,-0.016160155,-0.06708159,-0.010300687,-0.012645604,-0.032568928,0.022567714,0.053611033,-0.043688923,-0.062606476,-0.05663965,0.04746339,0.022872835,-0.04283006,-0.044140954,-0.040027462,-0.008458654,-0.0036332097,-0.02687332,0.028116409,0.0056334524,-0.00853776,0.04029868,0.06414338,-0.007667598,-0.044231363,0.021867063,0.024658363,-0.030873807,0.04782502,-0.04714697,0.009633939,0.021934867,0.015787229,0.034806486,-0.024002915,-0.032749742,0.028048605,0.0104701985,0.015470806,-0.016465276,-0.020940397,-0.0022064827,0.012080563,-0.02140373,0.0013829364,-0.0060854848,0.0043592867,0.05089884,0.011023938,-0.014860562,0.017516252,-0.019267878,0.018804545,-0.024793971,0.020092836,-0.06920615,0.01930178,-0.04253624,0.025788443,0.07544419,0.01427292,0.016793,-0.008724224,-0.020691779,-0.01133471,-0.018781943,-0.077885166,-0.0037236162,-0.02209308,0.030534783,-0.0129620265,-0.009696093,-0.029449904,-0.035100307,0.041315753,0.014035603,-0.025155598,-0.013086336,0.03313397,0.06355574,0.014385928,0.034512665,0.015617716,-0.04377933,-0.0066787773,0.017380642,0.016860805,-0.011379913,0.0073963786,-0.010447597,0.0293821,0.0054780664,0.010238532,-0.04590388,0.037699495,-0.048231848,-0.034806486,-0.054605503,-0.028297223,0.0037829455,0.012250075,0.0061080866,-0.030602587,0.016826903,-0.054741114,-0.030127954,-0.042739656,0.025291208,-0.035303723,0.0150413755,-0.026421288,0.036433805,-0.014465034,0.013323653,0.02558503,0.01147597,0.0026542773,-0.02195747,0.021991372,0.014905766,0.0293821,-0.013866091,0.005608026,-0.025946654,-0.006729631,-0.010187678,0.01370788,0.012498694,-0.03528112,-0.028884865,0.0022813505,0.0045542256,0.03161966,0.0043875384,0.0070178015,-0.002202245,0.017719667,-0.04253624,0.024477549,-0.0129959285,-0.004088067,-0.02014934,-0.016171455,0.034331854,0.036998846,-0.031529255,-0.023844704,-0.001088409,-0.0030144905,-0.023844704,0.027732182,0.004006136,0.0010813461,-0.00027086624,-0.00363886,-0.03806112,0.014182514,0.036026973,-0.0018166049,0.018409016,-0.0058707697,-0.05795054,0.006170241,-0.01665739,0.03860356,-0.00867902,-0.009458776,0.039530225,-0.012973327,-0.018578527,-0.029766327,-0.01889495,-0.016001943,-0.008260891,0.013877392,0.007012151,0.007119509,0.036139984,0.009277963,-0.034806486,-0.02126812,0.0038874778,-0.00048346267,0.010266784,0.0125664985,0.0009972963,0.005401786,-0.002630263,0.018793244,0.027958198,-0.017866576,-0.014295522,0.026556898,0.01287162,-0.016691294,0.018420316,0.0021754054,-0.01566292,0.015312594,0.020160642,0.036388602,0.0307834,0.020330153,-0.02070308,-0.007192964,0.02671511,-0.02560763,0.024409745,-0.038829576,-0.035891365,0.032207303,-0.014227717,-0.0025652833,-0.0053226803,-0.0062323953,0.017301537,-0.008260891,0.036026973,0.02841023,-0.0048621725,-0.005944225,0.07381687,-0.0074641835,-0.016171455,-0.0006254291,-0.03428665,-0.017414544,-0.010193328,0.019787714,-0.0121370675,0.001060157,-0.040389087,-0.014871863,-0.038558356,0.040389087,-0.035733152,0.0072268667,-0.03186828,-0.007995321,-0.048729084,0.059894282,-0.049859162,0.0006476775,0.015199587,-0.03439966,-0.016894707,-0.04226502,0.02978893,0.0129620265,0.011899751,-0.0071816635,0.009707394,-0.011820645,0.017843975,-0.012363084,-0.027664376,-0.01594544,-0.006198493,-0.057995744,0.037202258,0.02841023,0.026082264,0.001567987,-0.020409258,-0.078427605,0.020510966,-0.010978735,-0.013199343,-0.03134844,0.041880794,-0.02153934,0.000954212,-0.042739656,-0.021720152,-0.0125891,-0.015911538,-0.00950963,-0.020872591,-0.048412662,-0.010583206,-0.017719667,-0.014973571,0.0026429764,0.040253475,0.037315268,-0.018465519,-0.040615104,-0.012374384,-0.028229417,0.038829576,-0.027890394,-0.026918525,-0.0029608116,-0.022850234,-0.023889907,-0.0024522753,0.007452883,-0.018657634,0.0091649555,-0.02126812,-0.02883966,-0.04967835,-0.019821616,-0.04070551,-0.015617716,0.0024692265,-0.016126253,-0.031551857,-0.015459505,-0.0037801203,0.008385199,0.012261377,-0.01790048,0.012645604,-0.03150665,0.03964323,-0.010549304,-0.013775685,0.024703566,0.022974541,0.0065149157,0.055509567,0.03817413,-0.02308755,-0.0065262164,-0.02282763,0.0108318245,0.02125682,0.009554833,0.00029576334,0.05189331,-0.015097879,0.06563509,0.03654681,-0.008633818,0.0142164165,-0.012532596,0.034105837,-0.009283613,0.023935111,0.0070573543,-0.02533641,-0.02282763,0.01749365,0.021030802,-0.01735804,0.036139984,-0.031710066,0.022872835,-0.028523238,0.0074415817,0.014182514,-0.034603074,-0.016261863,-0.03889738,0.021313323,-0.021584542,-0.026376085,0.0028195516,-0.016329667,-0.009458776,-0.018341212,0.020680478,0.024183728,-0.0027842366,0.031438846,-0.04156437,-0.022160884,-0.009057597,-0.007029102,0.00363886,0.015753325,-0.016397472,0.044163555,0.0076223947,-0.013210644,-0.01984422,-0.03555234,-0.019267878,-0.018476821,-0.014137311,-0.00783146,-0.03819673,-0.007469834,0.013786986,0.032546327,-0.007848411,-0.025517223,-0.014566741,0.035371527,0.036004372,-0.005345282,-0.019697309,0.026941126,-0.004212376,-0.000021211086,0.075625,-0.014521538,0.04572307,-0.0025892975,-0.01777617,-0.0018971231,0.008690321,-0.046604533,-0.00363886,-0.022499908,-0.0153917,-0.04029868,-0.038965184,0.029156083,-0.05148648,-0.015357798,0.008984142,0.04674014,0.009063248,-0.0062154443,-0.004364937,-0.023121452,-0.016261863,0.025087792,-0.010690564,0.014013002,-0.04377933,0.021369828,0.024477549,0.0047209123,-0.0007373777,-0.017312838,-0.027890394,-0.0020793485,-0.020838689,0.0016146029,-0.032817546,-0.0054893675,-0.011204751,-0.00895024,0.025019988,0.05749851,0.021776656,-0.0040174373,0.040095266,-0.037202258,0.006209794,0.024590557,-0.002155629,-0.019527797,0.000021189015,0.00356823,0.022307795,-0.0133914575,-0.0104362955,0.0037546933,-0.0048875995,-0.017301537,-0.0010693389,-0.045949083,0.011103043,-0.02644389,0.023042347,-0.00615894,0.07124029,0.044841606,-0.0266021,0.0031727017,-0.004737864,-0.0026895923,0.062018834,-0.02294064,-0.02167495,0.028026003,-0.032297708,-0.007147761,-0.008356947,-0.037405673,0.0129620265,-0.0049073757,-0.028591044,0.018827146,0.014024302,0.053520624,-0.020691779,0.02153934,-0.016578285,-0.02714454,-0.031145027,0.0030596936,-0.038106322,-0.0321621,0.04283006,-0.039575428,-0.02673771,-0.056594446,0.025856247,0.033744212,0.0060628834,-0.024274135,-0.03862616,0.041089736,-0.016646089,0.0266021,0.014747554,0.03806112,-0.014939668,-0.0021895315,0.016679993,0.029630719,0.0006105968,-0.035439335,0.003260283,-0.008503858,0.02127942,-0.010424995,-0.0016753448,0.02450015,-0.008057476,0.027573971,0.02337007,0.0025568078,-0.01930178,-0.044592988,-0.032998357,-0.024884379,-0.054605503,0.010278084,0.0055712983,0.024002915,0.0643242,0.009769549,-0.005288778,-0.03021836,-0.02630828,-0.0069725984,-0.039824046,0.0026881797,-0.053791843,-0.007260769,0.0077297525,-0.0074246307,0.052571356,-0.021053405,0.029043077,0.012702107,-0.017550154,-0.04963315,-0.013673977,0.03189088,0.038219333,-0.011057841,-0.021087307,-0.007746704,-0.00009570371,-0.00036162583,-0.013967798,0.0051079653,-0.005079713,-0.029675921,-0.007741053,-0.03189088,0.0104362955,-0.023550883,-0.007029102,0.0008892323,-0.011809344,-0.03204909,-0.033653807,-0.04391494,0.034354456,-0.018126495,0.013594871,0.04773461,-0.02908828,-0.034919497,0.009063248,0.018793244,-0.01384349,0.023166656,-0.018951455,-0.014939668,-0.00727772,0.022194786,-0.027573971,-0.037021447,-0.0020369706,0.04355331,0.009311866,-0.0016527431,-0.0048197946,-0.04741819,0.02167495,0.025924053,0.0063341027,-0.0038818275,-0.032478523,-0.0067804847,0.015888935,0.01917747,-0.0073568258,0.023980314,0.02295194,0.006870891,-0.00769585,-0.009707394,-0.02490698,-0.027212344,0.0349647,0.007390728,-0.002789887,0.023889907,-0.000021906351,-0.0195956,-0.0026966552,-0.01721113,-0.00741333,0.011786742,0.019878121,0.0129620265,0.022013973,0.0006642756,0.006983899,0.009865605,0.009978613,-0.029562913,0.015267392,0.004432742,-0.014442433,-0.011628531,-0.014069506,0.007741053,-0.002849216,-0.011662434,-0.028365027,0.022838932,0.007921866,0.012419588,0.023844704,-0.024884379,-0.007950118,-0.011865848,-0.015323895,0.024545355,0.021109909,0.036004372,0.0027390332,0.05107965,0.008859834,0.007289021,-0.00419825,-0.0028718177,-0.035484537,0.035145514,-0.026918525,0.020183243,0.022511208,-0.00952093,0.013244547,-0.008905036,0.014939668,0.00615894,0.0072268667,0.02364129,0.012498694,0.033088766,0.026037062,-0.011594629,-0.013210644,-0.005178595,0.0014874688,0.010701865,-0.0016386171,-0.0018914727,0.016295765,-0.034738682,-0.0047463393,0.008102679,-0.009340118,0.009204508,-0.015855033,-0.006627924,-0.006384956,-0.0060346313,0.009261012,0.011362962,-0.0013504465,-0.031664863,-0.0018547451,0.015278692,-0.0011286682,0.0050571114,0.013380156,0.011199101,0.001518546,-0.0065940213,0.035348926,0.022228688,0.03539413,0.020251047,-0.005766237,-0.035190716,0.0012713409,-0.020205844,0.0039807097,0.013120238,-0.0041247946,0.024138525,-0.050718024,-0.022748526,0.0053255055,0.008803329,0.009475728,0.015267392,-0.022285193,0.036456406,0.021211617,0.014871863,0.02630828,-0.04601689,0.04027608,-0.038987786,0.023144053,-0.006209794,0.026263077,0.049452335,0.001391412,-0.0027192568,0.015233489,0.01719983,-0.047237378,-0.010667963,0.012306579,0.020443162,0.0030596936,-0.019053161,0.037586488,0.011018287,-0.012408287,0.00965654,-0.014928367,-0.012679506,0.031258035,0.021324623,0.019527797,0.012815116,-0.037021447,0.018827146,-0.044683393,0.008628166,-0.010667963,0.004472295,0.0012381447,0.030014945,-0.0034523967,-0.02965332,-0.033043563,-0.013459262,0.027777385,-0.004867823,-0.007209915,-0.030060148,0.0069782487,-0.012329182,0.0013031244,-0.036320794,-0.009583085,-0.008232638,-0.01441983,-0.0033874172,-0.003345039,-0.0033309131,-0.016126253,0.01330105,0.02014934,0.019776413,-0.009701744,0.042694453,0.0265795,0.025924053,0.008639468,0.00010462076,0.011809344,0.005122091,0.031981286,0.009261012,-0.014668449,-0.0065996717,0.034806486,0.012363084,0.008413452,0.0044440427,0.022126982,-0.029743725,0.00054561713,-0.01970861,0.007921866,-0.010526703,-0.0031953035,-0.0052661765,0.004494896,0.013334953,0.039575428,0.033382587,-0.0037292666,0.010148126,-0.0391686,0.02168625,0.016307065,-0.0018293182,0.005802965,-0.015843732,0.041315753,0.005277477,-0.013346254,-0.007814509,-0.034038033,0.0055995504,-0.003983535,0.010447597,-0.0041304454,0.022556413,0.018284706,0.009080199,0.020013731,-0.03706665,-0.009018045,-0.015549911,-0.05121526,0.030105352,-0.034218844,-0.017041618,0.01945999,-0.014046904,0.019154869,0.026037062,0.016838204,-0.0045118476,0.013346254,-0.0016004769,0.018397715,-0.031574458,0.0019253751,-0.01707552,-0.008746825,-0.01370788,0.019923324,-0.023889907,0.009441825,-0.010521052,0.0062832492,0.01985552,-0.001325726,-0.0060176803,-0.0129959285,0.010837475,-0.0071082083,0.008554711,0.052390546,-0.00882028,0.031145027,0.005051461,-0.013583571,-0.0027121939,0.0010756956,0.004116319,0.0000063622224,0.02978893,0.002924084,0.013470563,-0.019414788,0.03469348,0.036139984,-0.014487635,-0.02013804,-0.00965089,-0.010119873,-0.033066165,0.012973327,0.006814387,0.0067352816,-0.028026003,-0.026624704,-0.02084999,-0.03037657,0.022884136,-0.027189743,0.00041247948,-0.01971991,-0.030353969,-0.027325353,0.0016202533,-0.04827705,0.005831217,-0.004983656,-0.036004372,-0.017527552,0.0040824166,-0.008492557,-0.004393189,0.0076901997,-0.026782915,-0.009729995,-0.0053057293,-0.0024056595,0.00042554605,0.003384592,-0.023144053,-0.000895589,-0.00007107149,0.03245592,0.008577313,-0.039394617,0.0321395,-0.0075997934,-0.0010961783,-0.0024268485,0.0021782308,0.017572757,-0.0195843,0.0045542256,0.009362719,0.0013603347,0.0018787592,0.0035173765,0.028116409,0.024613159,-0.012035361,-0.006254997,0.06075314,0.011080442,0.05121526,0.007961419,0.028997872,0.027664376,-0.02881706,0.0072381673,0.034309253,0.036388602,0.014103408,0.0076619475,-0.038942583,-0.024138525,0.01272471,-0.0016230785,-0.028252019,0.0001809895,-0.006198493,-0.0065827207,-0.018284706,-0.0063736555,-0.013583571,0.020160642,0.024567956,-0.028591044,-0.019120967,-0.0070460537,-0.04981396,-0.042694453,-0.018544625,0.02296324,-0.022658119,0.004737864,0.015448204,-0.026150068,-0.008226988,0.043688923,-0.0028591044,-0.007628045,-0.022477306,0.037202258,0.018544625,-0.060798347,0.03623039,-0.011459019,-0.008249589,0.004294307,0.013753083,0.0007578604,0.0019903549,0.032297708,0.009407923,0.013877392,-0.023257062,-0.016860805,0.0068482896,-0.009865605,-0.0036671122,-0.014182514,0.02140373,-0.038422745,0.015222188,0.006057233,-0.0014274332,-0.057724524,-0.0050853635,-0.010227231,0.019606901,0.009910808,-0.020025032,-0.02533641,0.018409016,0.0035738805,-0.02268072,-0.005472416,-0.008170484,0.010967433,0.010424995,0.017663162,-0.018499423,-0.0046361564,0.006141989,-0.033812016,-0.00028128416,0.018329911,-0.0060628834,0.010792271,-0.01272471,-0.020906495,0.026285678,0.024680965,-0.018488122,-0.0021047755,0.017708365,-0.015470806,-0.027709581,0.0014027128,0.024816575,0.020793486,0.0030596936,-0.010752719,-0.03424145,-0.015459505,0.025652833,-0.020759584,0.0042180265,0.05248095,0.00083625974,0.010899629,0.022149583,0.037722096,-0.031687465,0.010605808,0.026760312,0.032094292,0.03582356,-0.02450015,0.007498086,0.026918525,0.026963728,0.022906737,0.00643581,0.02194617,-0.04520323,0.007865362,0.019267878,-0.020646576,-0.0044835955,-0.004494896,-0.0047265626,0.03397023,0.023596086,-0.024319338,0.054605503,0.013447961,0.002268637,0.035055105,0.019200072,-0.021923566,-0.02601446,0.017821373,-0.0020058933,-0.020420559,0.01427292,-0.022997145,0.009713044,0.0027489215,0.010792271,0.008594264,-0.015018773,0.0007479722,0.020081535,0.016273163,0.012668205,-0.02908828,-0.024545355,-0.027347954,-0.016849505,0.008238289,-0.028568441,-0.016250562,-0.021980071,0.018341212,-0.0029212588,-0.0029579864,0.033812016,0.0117076365,0.0419938,-0.0038422747,-0.017527552,-0.022443404,0.003596482,0.043756727,-0.0037405672,-0.023460478,-0.023550883,0.0008758126,0.007820159,-0.015448204]);
INSERT INTO entities (id, name, description, description_vec) VALUES (19, 'Confinity', 'Confinity is a company that merged with X.com to form PayPal.', [0.035701703,-0.06936719,-0.014185659,0.042104483,0.06529475,-0.0027347552,0.004106375,0.047828518,0.022613343,-0.0229414,-0.015373453,-0.007822474,-0.0017562388,-0.0002988929,-0.01773773,-0.0128394915,-0.036041074,0.044728942,0.014174346,-0.0020602576,0.010056659,-0.015712822,-0.015463951,-0.021131428,-0.023088459,-0.040860124,-0.052760694,0.031765014,-0.019298831,-0.041086372,0.03669719,-0.009451449,0.017884789,0.023088459,-0.03610895,0.014898335,-0.005797568,0.06004583,0.028688062,0.011578167,-0.028258193,0.028009322,-0.022341846,0.0009898286,0.06289654,0.017681167,0.014604215,-0.0064593386,-0.0054751663,-0.0043354495,-0.012579308,-0.011261421,0.024683498,-0.019253582,-0.057466622,0.007720663,0.02658397,-0.011018206,-0.024389377,0.045633927,-0.014638151,-0.038167793,0.0044400883,-0.011640385,0.035520706,0.04122212,-0.03841666,0.013880226,-0.03524921,0.045566052,0.019604264,0.036923435,-0.006317935,0.033959605,0.036832936,0.00095871976,0.023122396,0.039163277,-0.02640297,0.031810265,0.028348692,-0.0055826334,-0.012409623,-0.008750085,0.004745521,-0.007432199,-0.02454775,0.023099773,-0.018552216,0.06810021,-0.031765014,0.02192329,-0.017364422,0.035746954,0.0062387483,-0.017330484,-0.026040977,-0.013586105,-0.000030733296,0.018914212,0.002248325,0.0026781934,-0.01273768,-0.04043026,-0.020283002,0.04710453,-0.02848444,-0.059774335,0.01783954,0.012907365,-0.019253582,0.024660872,-0.047421277,0.014513716,-0.012794242,-0.008614337,-0.031289898,-0.02323552,-0.039774142,0.007839443,-0.041923486,0.0042025293,0.0070136427,0.034841966,0.022862213,-0.052624945,0.0018396672,0.019604264,0.017669855,-0.05687838,0.02357489,-0.016730933,0.017963976,0.022975337,-0.023778511,-0.009932224,-0.0689147,-0.022466281,-0.015644949,-0.023733262,-0.062308297,0.0035520708,0.0057862555,-0.06484226,-0.03407273,-0.01769248,-0.007935598,-0.05307744,-0.07900529,-0.077602565,0.0040950626,-0.027375832,-0.005743834,0.0035548988,-0.026335098,0.03626732,-0.009853037,0.03737593,-0.0029157524,0.029841918,-0.04778327,0.011685634,0.020260379,0.008026096,0.036131572,0.025656357,0.037805796,0.00925914,-0.041425742,0.018111035,-0.032489005,0.03076953,-0.044842064,0.014513716,-0.013337234,-0.023688013,-0.022816963,-0.04647104,-0.03864291,-0.039638393,-0.011097393,0.003874472,0.039774142,-0.0114707,-0.06529475,-0.04710453,-0.032828372,0.0014387866,0.040995874,-0.01570151,-0.018846337,-0.023755888,0.03699131,0.029434675,-0.0107749915,-0.010554401,0.03610895,-0.011629072,-0.020350877,-0.013529543,-0.0048812693,0.032851,0.00061334023,0.07963879,-0.027240084,-0.024366753,0.014366656,-0.0050311573,-0.0031929044,-0.009751226,0.019841822,-0.03533971,0.0342311,-0.027081711,0.004174249,-0.046787784,0.0030515003,-0.019581638,0.004075266,0.009530636,0.01574676,0.027398456,0.035362333,0.013767102,-0.04174249,0.012160752,0.04393708,0.007896004,-0.0056165704,-0.025452737,-0.022149537,0.009705977,-0.06484226,-0.01375579,-0.00753401,0.0069966745,-0.018111035,-0.017194737,0.018099723,0.041199494,-0.040317133,0.027036462,-0.0069005196,0.039593145,0.00656115,0.020260379,-0.028280819,0.02848444,0.016617808,-0.056606885,0.018337281,0.06583774,-0.023303393,0.033665486,0.00831456,-0.025000243,-0.012149439,-0.0068269894,0.011114362,0.028167695,0.02085993,-0.052986942,-0.014457154,-0.008088314,-0.012409623,0.0056618196,-0.020588435,0.016832743,-0.046742536,0.051538963,0.02196854,0.0052291234,0.026018353,0.017568044,-0.03271525,0.0028959557,-0.052579697,0.047059283,-0.0024816417,0.050769724,-0.03843929,-0.018009225,-0.032556877,-0.008382434,-0.018540904,0.0060351267,-0.06479701,-0.006255717,-0.02016988,0.013144924,0.01161776,0.009264796,0.007471792,0.042986844,0.030045541,0.0091799535,-0.026063602,-0.022986649,-0.009457106,0.039004903,0.032149635,0.010096252,-0.029660922,-0.007862068,-0.0025028524,0.013868913,-0.06285129,0.027737826,-0.010656212,-0.004078094,-0.025316989,-0.014276157,0.048914503,-0.02124455,-0.012624557,0.039027527,0.014004661,-0.036470942,-0.03149352,-0.045294557,0.025407488,-0.008914114,-0.01273768,0.012669806,0.031674515,0.047692772,-0.038959656,0.005698585,-0.0029581736,-0.023710638,-0.031629268,-0.029321551,0.058009613,-0.056787882,-0.043416712,-0.010118877,0.010277249,-0.0030910934,0.019954946,0.010322498,-0.009015924,-0.025701607,-0.015101957,0.004869957,0.061448563,-0.022590717,0.030882653,0.038461912,0.015113269,0.01686668,-0.038326163,-0.023212895,0.053846676,-0.0050226734,-0.00038992177,0.021991163,0.035860077,-0.07140341,0.0172513,0.023190271,-0.008908458,0.019954946,-0.014298782,0.020452688,-0.019219644,-0.012647182,-0.030588532,-0.01598432,0.0031278585,-0.018948147,-0.04122212,-0.0016077645,0.02143686,0.053394184,0.005458198,-0.010288562,0.04778327,0.013065738,-0.0008010542,-0.036380444,0.037421178,0.013280672,0.015769385,-0.024072632,-0.0067251786,0.025045492,-0.0017901758,0.019513763,-0.003631257,-0.01322411,0.022443658,-0.023212895,0.03160664,-0.063982524,-0.0073756375,0.00069606164,0.03524921,0.011255765,-0.012319124,0.0039253775,0.010435622,-0.024095258,0.033529736,-0.007907317,-0.05619964,-0.0052800286,0.017850852,-0.0068609263,0.018801088,0.0064140894,0.026900714,-0.009349639,0.010854178,-0.010661868,0.018676652,0.0062048114,-0.0022228723,0.00036694363,0.03330349,0.049457494,0.031787638,0.032013886,0.0026343581,-0.005591118,0.014276157,0.0025311331,-0.058914598,-0.08529495,0.015543138,-0.022398409,-0.014547653,-0.022783026,-0.046652038,-0.018144973,0.0056250547,-0.024366753,0.04773802,0.060543574,-0.030045541,-0.08348498,-0.061267562,0.051448464,0.061131816,-0.05493266,-0.05629014,-0.0052687163,-0.012341749,0.00004405621,-0.026516095,0.031516142,-0.013857601,0.02950255,0.017443608,0.12380211,-0.018235471,-0.019174395,-0.0050679226,0.040113512,0.009151673,0.022952711,-0.0342311,0.0010294218,0.05511366,0.015441326,0.03733068,-0.014344031,-0.023020586,0.020814681,0.030679032,0.037172306,-0.025678983,-0.011482012,0.014015974,0.010899427,-0.0075849155,0.01071843,-0.011374545,0.0021139912,0.017613294,-0.0036397413,-0.016606497,0.02755683,-0.015893819,0.008687867,-0.026176725,0.018156284,-0.044977814,0.0097116325,-0.05493266,0.018586153,0.064525515,0.01574676,-0.008037409,-0.009502355,-0.03538496,-0.018540904,-0.016165316,-0.0621273,0.0046889596,-0.03547546,0.025000243,0.00903855,-0.00014255299,-0.0044118077,-0.027217459,0.040995874,0.008981988,-0.06298704,-0.039728895,0.018099723,0.066335484,0.034593098,0.033439238,-0.0037754893,-0.046041172,0.016595185,0.014943584,-0.004663507,-0.004298684,-0.011261421,-0.006357528,0.032828372,-0.004151624,0.003043016,-0.023416517,0.055204157,-0.035701703,-0.036335196,-0.033620235,-0.030837404,-0.0022808479,0.009106424,-0.0180771,-0.016640434,0.012183377,-0.03203651,-0.01181007,-0.011532918,0.008178812,-0.037511677,0.014943584,-0.033801235,0.014174346,-0.011730883,0.017138176,0.01608613,0.012669806,-0.0007826716,-0.0017717932,0.01574676,0.0118326945,0.0030910934,-0.019853134,0.000016150998,-0.014615526,-0.020430062,0.0041770767,0.0054525416,-0.0015285782,-0.034638345,-0.022398409,-0.00580888,-0.022126911,0.012398311,-0.010972957,0.018371219,-0.011798757,0.0228509,-0.017556733,0.022579405,-0.006917488,-0.009751226,-0.014095159,-0.014083847,-0.005319622,0.01851828,0.0029581736,-0.052172452,-0.015961694,-0.005401636,-0.0278962,0.020724183,0.007963878,-0.0107749915,0.01832597,-0.014140409,-0.0027064742,0.016368937,0.04905025,-0.01424222,-0.017183425,0.0030882654,-0.061855804,0.041199494,0.0064763073,0.028665436,0.017341798,-0.010260281,0.023529641,-0.008574744,0.007358669,-0.0105374325,0.002214388,0.0032834029,-0.02916318,-0.0024010413,-0.0017208877,0.009315701,0.019525077,-0.013020488,-0.017409671,-0.027307957,0.010605306,-0.016844055,-0.007935598,-0.008467277,0.00227802,-0.008914114,0.00869918,0.01404991,-0.00083781924,-0.033959605,-0.023710638,0.027240084,0.017228674,-0.023371268,0.02114274,-0.0131223,-0.014355343,0.021380298,0.027534204,0.017375734,0.02547536,0.0026371863,-0.030927902,-0.01565626,0.03703656,0.0016077645,0.0164255,-0.007788537,-0.014117784,0.048688255,-0.018925523,-0.016742244,0.0010577026,0.019672137,0.0050877193,-0.0022059039,0.030995777,0.013065738,-0.004527759,-0.03237588,0.04389183,-0.0016374594,-0.0007565119,0.0089933,-0.046697285,0.0043439334,-0.012862116,0.001277586,-0.008636962,0.010384716,-0.027873574,-0.028258193,-0.039344274,0.008619993,-0.008761398,0.03208176,0.008376778,-0.004700272,-0.06172006,0.07945779,-0.036584064,0.0037189275,0.008965019,-0.01696849,-0.0042619193,-0.043099966,0.047330778,-0.0064423704,0.012873428,0.037489053,0.018710589,-0.030543283,-0.00193865,-0.01934408,-0.009389232,-0.02173098,-0.007845099,-0.05511366,0.0069683935,0.0245025,0.028710686,-0.012579308,-0.010842865,-0.05886935,-0.0018113864,-0.024864495,0.0017746213,-0.03140302,0.01584857,-0.032692626,-0.0035039934,-0.044751566,-0.03719493,0.010316842,-0.008331529,0.005871098,-0.005729694,-0.023303393,0.0016827086,-0.00996616,-0.017126864,-0.01696849,0.022692528,0.04481944,-0.024751373,-0.021391612,-0.028416567,-0.02240972,0.061222315,-0.041131623,-0.021844104,0.0049123783,-0.015950382,-0.010927708,0.018382533,0.0067308345,-0.004284544,0.021787543,-0.036810312,-0.027873574,-0.056787882,0.0028082852,-0.04063388,-0.04097325,0.025294363,0.006753459,-0.02362014,-0.009564573,-0.0060577514,-0.0039225495,0.030249164,-0.009689008,0.014129097,-0.035430208,0.01779429,-0.026131475,-0.013009177,0.01866534,0.01817891,0.0064140894,0.04126737,0.043235715,-0.0023260973,-0.011284047,-0.04088275,0.019355392,0.01322411,0.017194737,0.0361542,0.0621273,-0.016131379,0.044661067,0.039253775,0.016889304,0.02382376,-0.04106375,0.004734209,-0.0049321745,0.0031193742,0.0031674516,-0.04228548,-0.026629219,0.02357489,0.022907462,-0.030203914,0.016606497,-0.028009322,0.028348692,-0.03961577,0.0036963029,0.02012463,-0.025362238,-0.032353256,-0.02950255,0.013529543,-0.028982183,-0.036810312,-0.003354105,-0.018031849,0.011227485,-0.018699277,0.017726416,0.046968784,0.035068214,0.0120136915,-0.0490955,-0.009570229,0.0012316296,0.0018029021,-0.0125453705,-0.0032240131,0.0006274806,0.043348838,-0.008031752,-0.003874472,-0.013439044,-0.013303297,0.0041629365,-0.004886925,-0.02619935,0.0029214085,-0.013699228,0.0010930536,0.004120515,0.035271835,0.0032947152,-0.04033976,-0.019174395,0.049366996,0.00799216,0.0019867274,-0.009570229,0.03986464,-0.00003508589,-0.011753508,0.052851193,-0.020633684,0.04701403,0.0028577766,0.00038285158,-0.036335196,0.0030147352,-0.027873574,-0.011142642,-0.010978614,-0.011334952,-0.047511775,-0.05895985,0.0345026,-0.04228548,-0.03889178,0.027579453,0.05556615,0.013574793,0.023529641,-0.0211993,-0.041018497,0.0010435622,-0.004488166,0.001416162,0.0022568093,-0.021335049,0.01900471,0.018473031,0.03547546,-0.020452688,-0.0031391708,-0.020622373,0.020328252,-0.017081615,0.00057904975,-0.055973396,-0.010548745,-0.02162917,0.01079196,0.018122349,0.039434772,0.020780746,-0.0021620686,0.02488712,-0.0203735,0.017443608,0.026878089,0.013065738,-0.033552364,0.032398503,0.012160752,0.009445793,0.009417512,-0.023733262,-0.016097441,-0.017420983,-0.014887023,-0.020882556,-0.029457299,0.0048671286,-0.02416313,0.023959508,-0.0051951865,0.04855251,0.052715443,-0.0053054816,0.01735311,-0.019321455,0.008981988,0.04156149,-0.020746808,-0.024977619,-0.008099626,-0.025927855,-0.019909697,-0.022930088,-0.012534059,0.013110987,-0.0018919867,-0.029231053,0.00044047373,0.014751275,0.05556615,0.0136087295,0.015441326,0.002006524,-0.042353354,-0.033891734,0.0034898529,-0.008252342,-0.036584064,0.047285527,-0.032873623,-0.0067251786,-0.047376025,0.00014706026,0.03547546,0.04565655,-0.012805554,-0.013857601,0.026063602,-0.026018353,0.040452883,0.037692674,0.048824005,0.008048721,-0.0077263196,0.009474074,0.02207035,0.00035333348,-0.00010516929,-0.034864593,0.0029638298,0.028891684,0.005797568,-0.0054412293,0.03592795,-0.008184468,0.029774046,-0.0024151818,-0.0073134196,-0.02746633,-0.051448464,-0.048869252,-0.010435622,-0.030565908,-0.011465044,0.0059615965,0.02814507,0.0557019,0.023393892,0.018031849,-0.036629315,-0.022477593,-0.0017717932,-0.045973297,0.0061086565,-0.040271886,-0.0391859,0.01608613,-0.021538671,0.028574938,0.007737632,0.032737873,0.01015847,-0.015927756,-0.024389377,0.00037719542,0.016199252,0.013597418,-0.0046465383,-0.004013048,-0.041041125,-0.021493422,-0.023552265,-0.023065835,0.004714412,0.03348449,-0.028258193,0.006334903,-0.003074125,-0.008987644,-0.017149488,0.021210613,0.0059276596,-0.025022868,-0.03436685,-0.03567908,-0.03126727,0.02585998,-0.018631402,0.0063462155,0.03572433,-0.020871244,-0.018948147,0.012500121,-0.0004942073,0.019898383,0.029660922,-0.010577026,-0.009417512,-0.0036849906,-0.00012646828,-0.027104337,-0.027013836,-0.016301064,0.061086565,0.00993788,0.014988833,0.010690149,-0.02911793,0.020814681,0.0075113853,-0.00865393,-0.01322411,0.014943584,-0.004457057,-0.023020586,0.024344128,-0.019525077,0.047059283,-0.0020857104,0.026810216,-0.0023317535,-0.019988881,-0.0278057,-0.029434675,0.039480023,-0.02717221,-0.00053627504,0.025158616,-0.021889353,-0.004533415,0.014751275,-0.014853085,-0.010514808,0.013970724,0.020102005,-0.0059333155,0.041697238,0.011170923,-0.0007423715,-0.019559015,0.009926567,-0.0012903123,0.0013447528,0.013280672,0.0025056805,-0.023552265,-0.030294413,0.043529835,0.006544181,-0.0188124,-0.003942346,0.013880226,-0.005333762,-0.009485386,0.026855465,-0.042602222,0.005766459,-0.00802044,-0.00054758735,0.007081517,0.02162917,0.007573603,0.014298782,0.04436695,0.0045616957,0.0052715447,-0.011538574,0.030317036,-0.000050905473,0.027873574,-0.024909744,0.028620187,0.026606593,-0.001969759,0.013880226,-0.0072172647,-0.0025367893,0.00031550787,0.013020488,0.018631402,0.028982183,0.011289703,0.013258047,-0.008438996,-0.004966112,-0.0010166954,0.007528354,0.022579405,-0.01458159,0.016583871,0.009202578,0.0026824356,-0.007675414,0.004326965,-0.012432247,0.008450309,0.0009608408,0.0076980386,0.0014720166,-0.028801184,-0.008450309,0.048688255,0.014072535,-0.04160674,0.029977666,-0.004007392,-0.009683352,0.01521508,0.036244698,0.0055967737,-0.0060294704,-0.022862213,0.022341846,0.026425596,0.025678983,0.0089933,-0.0027913167,-0.04054338,-0.0029242365,-0.01580332,0.0061708745,0.016244503,0.021674419,0.024231005,-0.031878136,-0.019423265,0.019355392,0.016708307,0.022816963,-0.00595594,-0.035294462,0.02785095,-0.0030854372,0.021878041,0.013314609,-0.025339613,0.049547993,-0.03884653,0.015475264,0.0041007185,0.019706074,0.047602274,0.0069966745,0.004397667,-0.00802044,-0.00046946158,-0.03834879,-0.010893771,-0.008665242,0.026425596,0.0026145617,-0.00311089,0.0391859,0.0055826334,-0.012217313,0.020486625,0.0033258242,-0.02416313,0.028393941,-0.003280575,0.030226538,0.0041601085,-0.045475554,0.01657256,-0.04511356,0.013450357,-0.0073417,0.013484294,-0.0066459924,0.0066855852,0.009802132,-0.0245025,-0.019061271,0.0035718672,0.030384911,-0.004049813,-0.021063553,-0.051312715,0.000018835466,-0.020407438,-0.00914036,-0.019174395,0.002794145,0.011255765,-0.0147286495,-0.0074152304,0.007896004,-0.021595232,-0.024004757,0.032602128,0.016900618,0.016844055,0.004493822,0.043190464,0.040385008,0.009462762,0.015497888,-0.015011458,0.032262757,0.011923193,0.02585998,0.010803272,-0.0067930524,-0.003733068,0.055475652,0.012172064,0.0026244598,0.027647328,0.022375783,-0.01696849,0.012534059,-0.01139717,0.017703792,-0.0037613488,0.0052743726,-0.01139717,0.003566211,0.0013603073,0.022692528,0.030068165,-0.0009431653,0.019310143,-0.023088459,0.023416517,0.015780697,0.023099773,0.0050311573,-0.011764821,0.05117697,-0.008580401,0.0019881416,-0.006289654,-0.010135845,-0.017715104,-0.031719767,0.014638151,0.00843334,0.017545419,0.0060068457,0.012420936,0.0114197945,-0.04140312,-0.0010782062,0.0010492184,-0.053303685,0.0053139655,-0.007647133,-0.012138127,-0.0004114859,-0.003246638,0.016210565,0.01375579,0.014061223,-0.0010676009,0.0075905714,0.007115454,0.022319222,-0.02260203,-0.0066007427,-0.017432297,-0.0007565119,0.0037754893,0.031855512,-0.025226489,0.008371122,-0.0012556684,0.035430208,0.029140554,-0.014321406,-0.0019853134,0.003385214,-0.0064197457,-0.00052531617,0.0031561393,0.037783172,0.0013617214,0.045294557,-0.0024477048,0.027986698,0.02717221,-0.00367085,0.007935598,-0.014558965,0.017511483,-0.026606593,0.0068892073,-0.005639195,0.025995728,0.03932165,-0.008874521,0.011957129,-0.027330583,-0.00738695,-0.019242268,0.01404991,0.00073388725,0.021866728,-0.0139594115,-0.010446934,-0.037737925,-0.028009322,0.025045492,-0.036742438,-0.0033060275,-0.0017194737,-0.021855416,-0.03296412,0.009932224,-0.04325834,0.0061425935,0.018043162,-0.03160664,-0.062398795,0.017025052,0.0155544495,-0.0027983868,-0.0009438723,-0.030498033,-0.0035068213,0.010169782,-0.008619993,-0.022658592,0.014027285,-0.023665389,-0.012409623,-0.014027285,0.028326068,0.0345026,-0.020203816,0.018597465,-0.001694021,0.0072398894,0.0029836262,-0.011459388,0.008817959,-0.0376248,0.007980847,0.03710443,-0.012477497,0.0038179103,0.026674468,0.019728698,0.024412002,-0.014807836,-0.017703792,0.028371317,0.009841724,0.064254016,0.003931034,-0.008257999,-0.01993232,-0.020746808,0.0043693865,0.057376124,0.0047907704,0.030452784,0.014853085,-0.016448123,-0.027149586,-0.001418283,0.012138127,-0.022907462,-0.002770106,-0.0047964267,-0.019129146,-0.026810216,0.003591664,-0.03183289,0.017058989,0.014321406,-0.0295478,-0.017183425,-0.0014380796,-0.014853085,-0.022816963,-0.015463951,-0.00504247,-0.026040977,0.029276302,0.013303297,-0.022421032,-0.0357922,0.025701607,-0.0048925816,-0.023088459,-0.0009905356,0.03513609,0.017579356,-0.0490955,0.029728796,-0.009785163,-0.02416313,-0.0019146113,0.027918823,-0.0007158582,0.0007565119,0.014898335,0.020237753,0.00517539,-0.032647375,-0.015226392,-0.003948002,-0.004112031,-0.01307705,0.0023982134,0.009932224,-0.02552061,0.03086003,0.01438928,-0.0077602565,-0.036810312,-0.00076641014,-0.01458159,0.048190515,-0.0039564865,-0.021267176,-0.016323688,0.012081565,-0.0021196473,-0.022873526,0.008291936,0.0096494155,0.015011458,0.01003969,0.007896004,-0.018529592,0.00989263,0.018710589,-0.022862213,0.018212847,0.0020644998,0.001867948,-0.022828275,-0.009304389,-0.00095306354,0.02848444,0.0440502,-0.024027383,-0.009988785,0.013325921,-0.005684444,-0.02251153,-0.007336044,0.01856353,0.03436685,-0.0038009419,-0.017488858,-0.01263587,-0.027602078,0.02848444,-0.038801283,-0.006363184,0.02751158,-0.024841871,0.015362141,0.004013048,0.037262805,0.012081565,0.02109749,0.000795398,0.018043162,0.011629072,-0.0050877193,0.0003902753,0.0076358207,0.021855416,0.0071380786,0.0024971962,0.016391562,-0.03047541,0.021832792,0.035860077,-0.017002428,-0.008670899,-0.0058937226,0.0020206645,0.013982036,0.028688062,-0.019287517,0.035362333,0.0012033489,0.009089455,0.0061539058,0.021708356,-0.017126864,-0.014298782,0.02085993,0.0022624654,-0.036946062,0.02124455,-0.028212944,-0.0117195705,0.022036413,0.014264844,-0.0022751917,-0.012341749,0.0035633831,0.0342311,-0.001695435,0.004148796,-0.002873331,-0.0022271145,-0.027104337,-0.012036316,-0.011787445,-0.0045899767,-0.005774943,-0.024095258,0.012681119,0.0028224257,-0.009027237,0.020350877,-0.00042633334,0.034819342,-0.03547546,-0.026516095,-0.006776084,0.02162917,0.040679127,0.008342842,-0.012828179,-0.020339563,-0.017172113,0.0093552945,-0.021233238]);
INSERT INTO entities (id, name, description, description_vec) VALUES (20, 'PayPal', 'PayPal is a company formed from the merger of X.com and Confinity, which was acquired by eBay for $1.5 billion in October 2002.', [0.037425164,-0.07766083,-0.027340414,0.060136512,0.046993274,-0.0178033,-0.018164948,0.052862268,0.006137644,-0.028890325,0.00077818404,-0.032341458,0.0144761605,-0.027547069,-0.029799605,0.019301547,-0.028828328,0.054432843,-0.0004091117,-0.022856008,-0.008984312,0.0050346246,-0.011014694,-0.0011572662,-0.027733058,-0.03360205,-0.022566691,0.037466493,-0.051291693,-0.04992777,0.022814678,-0.012037636,-0.0066749463,0.030998202,-0.043149497,0.016759695,-0.040690307,0.043810792,0.018981233,-0.00477114,-0.041785575,-0.0024320674,-0.0061996407,0.016935352,0.042612195,0.003916106,-0.017028347,0.0035906252,-0.0055280128,0.0057088356,-0.00026606792,-0.016491044,0.062575035,-0.008204191,-0.029179642,-0.00942862,0.014042186,-0.014393499,-0.019776853,0.061087124,-0.027629731,-0.010244906,-0.023765288,-0.029303635,0.02275268,0.030667555,-0.07146119,0.011655324,0.0046109827,0.055672772,0.024095936,0.006401129,-0.0014788726,0.026162483,0.03806579,0.008524505,0.021719407,0.042322878,0.014641484,0.03283743,0.02936563,0.0046187323,-0.016036404,-0.0056416728,-0.015643759,0.002926747,0.0010668548,0.03296142,-0.02781572,0.008209357,-0.038685758,0.012440612,0.019528868,0.008824155,0.01557143,0.013876862,-0.06873335,-0.0049364637,0.005362689,0.010642717,-0.0058638267,-0.0012715721,-0.045588024,-0.043025505,-0.030667555,0.03635056,-0.042529535,-0.044720072,0.013701205,0.00015805854,0.0052438625,0.04153759,-0.018009955,0.03337473,-0.018619588,0.028539011,0.012719596,-0.03072955,-0.03812779,0.029386297,-0.037879802,0.007387905,-0.013897528,0.026844444,0.0041046785,-0.046166655,-0.038851082,0.017255666,0.035193294,-0.035689265,0.024695234,0.003195398,0.0436868,0.01806162,-0.033664048,0.0033271404,-0.037363168,-0.034470003,-0.03715651,-0.01719367,-0.04798522,0.0022318705,0.01258527,-0.020830791,-0.052200973,0.017183337,0.012388948,-0.043893456,-0.06005385,-0.07774349,0.003027491,-0.046455972,0.0012702806,0.019983508,-0.0014401248,0.009852262,0.0022628687,0.041806243,-0.0018560174,0.017431322,-0.050547738,0.0019399709,-0.008100864,-0.0004866072,0.041826908,0.015354443,0.024075272,-0.0036242066,-0.038933743,0.0013497134,-0.030481566,0.06042583,-0.012399281,-0.007599726,-0.020252159,-0.026741115,-0.034325343,-0.041702915,-0.051498346,-0.04455475,-0.0034588827,-0.009407954,0.01810295,-0.00523353,-0.049721118,-0.020076502,-0.009242631,0.021202771,0.017276332,-0.0038231118,0.005781165,-0.022132717,0.026183149,0.035131298,-0.019528868,0.008855153,0.026534462,-0.034242682,-0.022029389,-0.008658831,0.006866102,0.023496637,-0.016067402,0.05199432,-0.0350693,-0.04145493,0.0384791,-0.008183526,0.012368283,0.0062978016,0.013732204,-0.0350693,-0.00093317503,0.006308134,0.0036991187,-0.07257713,0.0206758,-0.0050165425,0.027836386,0.025542518,0.023289982,0.023723958,0.035585936,0.023661962,-0.036185235,0.013008912,0.050175756,0.0016919852,-0.026720451,-0.05513547,0.020789461,0.012967582,-0.042322878,0.002544436,-0.009562946,0.032258797,-0.025253203,-0.023455307,0.011996305,0.045298707,-0.041806243,0.028745666,-0.025439192,0.03639189,-0.003208314,0.021740073,-0.022194713,0.048274536,0.010157078,-0.02686511,0.041206945,0.035916585,-0.00008798969,0.05162234,0.018257942,-0.041165613,-0.002370071,-0.0041563422,0.0059774867,0.040194336,-0.0065096226,-0.01190331,-0.011851646,0.017493319,-0.014837806,-0.0006671072,-0.020551808,0.00787871,-0.033912033,0.054556835,0.06129378,0.004445659,0.010580719,0.04596,-0.027753724,0.024860559,-0.03223813,0.032176133,-0.011603661,0.039615702,-0.021905396,0.008369515,-0.022814678,-0.0035518773,-0.0059826532,0.001316132,-0.04852252,-0.037549157,-0.01466215,0.0012819049,0.023248652,0.017327996,-0.006979762,0.036784533,0.036515884,-0.025914498,-0.024529912,-0.022236044,-0.017978957,0.035792593,0.01190331,0.037693813,-0.036908526,-0.011975639,-0.030708887,0.016119065,-0.07613158,0.029406961,-0.03707385,0.009666272,0.0031514838,-0.014765477,0.065509535,-0.010622051,-0.032300126,0.020448482,-0.012264956,-0.014620819,-0.04104162,-0.06757608,0.0041873404,0.002632264,-0.044389427,0.023207322,0.027071763,0.05831795,-0.033457395,0.008875819,0.004670396,-0.031018868,-0.03430468,-0.044472087,0.060797807,-0.04765457,-0.008514173,-0.02777439,0.0039910185,-0.021120109,0.020086836,0.021006448,-0.010193243,-0.050175756,-0.0119653065,-0.02822903,0.055672772,-0.03661921,-0.002237037,0.039615702,0.023641296,0.041165613,-0.038541097,-0.013380891,0.033540055,0.009568112,-0.008973979,0.0063287998,0.043438815,-0.048853166,0.020944452,0.048357196,0.0027407578,-0.008183526,-0.0022861175,0.019177554,-0.005559011,0.0050837053,-0.02736108,-0.028208364,-0.028291026,0.0058896584,-0.07216381,-0.012512941,0.027092429,0.04839853,-0.0015783252,-0.022814678,0.04186824,0.0026219313,-0.00071877084,-0.028435685,0.03227946,0.012533607,0.032258797,0.022732016,0.0030894876,0.032217465,-0.017410656,0.017358994,-0.010301736,0.0012218459,0.019508202,-0.023062663,0.019756189,-0.043397482,0.002025216,0.0064114616,0.02936563,0.00063287996,-0.017699974,0.002745924,-0.0015899495,-0.026699785,0.045257375,-0.047365252,-0.05559011,-0.023372645,0.007176084,-0.0021982891,0.027609065,0.01156233,0.006519955,-0.010622051,0.0006112458,0.004512822,0.032362122,-0.011169686,-0.03880975,-0.0029732443,0.01500313,0.03347806,0.04236421,0.01080804,0.0030171585,0.04757191,-0.0026968436,-0.0005208344,-0.03597858,-0.04748925,0.01734866,-0.0034382173,-0.014207509,-0.0189709,-0.039388385,-0.03849977,-0.005667505,-0.036557212,0.044389427,0.045174714,-0.045133382,-0.053688888,-0.068940006,0.0128745865,0.03215547,-0.033540055,-0.038334444,-0.009640441,0.013628877,0.0048202206,-0.039698366,0.004654897,-0.0030326576,0.04064898,0.041496262,0.11539598,0.008844821,-0.01991118,0.0034511331,0.020748131,-0.026389804,0.037817806,-0.029448293,0.002448858,0.055094138,0.014589821,0.013804533,-0.018123616,-0.048646513,-0.0019050979,-0.0013561713,0.04492673,-0.020148832,-0.03401536,0.014124848,0.0037843639,-0.018660918,0.02225671,-0.023083327,-0.009500949,0.023248652,0.0031850652,-0.004337165,0.031225523,-0.0021350011,0.009960756,-0.048646513,-0.0024630656,-0.050093096,-0.0042622527,-0.039057735,-0.0028182534,0.04748925,0.0156127615,0.0054505174,-0.005471183,-0.056582052,-0.0017036096,-0.028621674,-0.07059324,-0.0016945684,0.0011424129,0.010534222,0.01557143,-0.0027665896,-0.032775432,-0.0064527923,0.042116225,0.0019567616,-0.051911656,-0.024178598,0.0077185524,0.051539678,0.02097545,0.06207907,-0.024013273,-0.02845635,-0.021120109,0.028497681,0.006416628,0.00008540651,0.0036991187,-0.0018327688,0.01685269,-0.014145513,0.0124199465,-0.022608023,0.04410011,-0.033498723,-0.0367432,-0.038830414,-0.034759317,0.00695393,0.011169686,-0.019208552,-0.0007349157,-0.0012728637,-0.050547738,-0.013814866,-0.0092167985,-0.008426345,-0.026575793,0.020892788,-0.0327961,0.0044404925,-0.009712771,0.0390784,0.0108183725,0.028167034,0.013360226,-0.010994029,0.025749173,0.01602607,0.027092429,-0.014817141,0.0011353092,-0.023517303,-0.0027485073,-0.0036758701,0.0062823026,-0.0024876057,-0.021450756,-0.025976494,0.012006637,0.032506783,0.013081241,0.0061996407,0.0016984432,-0.026059156,0.012564605,-0.029117646,0.0076927207,-0.02399261,-0.029386297,-0.0037946966,-0.0053988537,0.0067627747,0.019425541,-0.0048744674,-0.039967015,-0.029882267,-0.021657411,-0.018030621,0.01602607,0.005362689,-0.0059464886,-0.0073775724,0.0032754769,0.008555504,0.01201697,0.023103993,-0.01080804,-0.008013035,-0.017968625,-0.06724543,0.04583601,0.023269318,0.013969856,0.03480065,-0.016160397,0.041702915,-0.013897528,-0.011293679,0.0014556239,-0.02977894,-0.013277563,-0.019146556,-0.003531212,0.03775581,0.0010817081,0.009609443,-0.012926251,-0.010002087,-0.00045948377,0.007387905,-0.009805765,0.01247161,-0.006602617,0.0028492515,-0.022401368,-0.01110769,0.018826243,-0.004094346,-0.019962842,-0.023951277,0.0028699168,0.023186656,-0.043025505,0.025831835,-0.020717133,0.0017720639,0.029200306,0.04236421,0.0013167778,0.02599716,-0.019208552,-0.03676387,-0.02562518,0.04505072,-0.013349893,0.06298835,-0.04724126,-0.0614591,0.024219928,-0.01949787,-0.030584894,0.0140318535,0.007145086,-0.014207509,-0.0056210076,0.010580719,0.018733246,-0.0032625608,-0.020283157,0.03329207,-0.034408007,0.0076772217,0.007821879,-0.05373022,-0.009056642,0.018206278,-0.008994645,-0.022318706,0.010291403,-0.03068822,-0.022876674,-0.009097973,0.023000667,-0.0041356767,0.004063348,0.008725994,0.0010365024,-0.05199432,0.08047134,-0.0706759,0.0044094943,0.001999384,-0.020903122,-0.021781404,-0.031721495,0.032506783,0.0047788895,0.021202771,0.03451133,0.017142005,-0.027857052,-0.009506116,-0.021140775,-0.0051121204,-0.021027114,-0.009418287,-0.051333025,0.011004362,-0.0068609356,0.0135668805,0.00839018,-0.0067989393,-0.06294702,-0.0045334874,-0.00074008206,0.0063494653,-0.021285433,0.0043449146,-0.022463365,0.023227986,-0.050093096,-0.031039534,0.010301736,-0.024819227,-0.0047504744,-0.02225671,-0.03880975,0.0178033,-0.010312069,0.0036758701,-0.0016971516,0.01689402,0.052738275,-0.013360226,-0.027443742,-0.02252536,-0.020696467,0.05021709,-0.03155617,-0.014517492,0.0042002564,-0.0035932083,-0.010518723,-0.018309604,-0.0044224104,-0.008612334,0.028001709,-0.034945305,-0.00867433,-0.04496806,-0.004879634,-0.035131298,-0.019074228,0.009779933,-0.0025457274,-0.015147788,0.008968813,-0.022587357,0.00942862,0.044265434,-0.006261637,0.012822923,-0.04058698,0.020438148,-0.021058112,-0.009800598,0.0073104096,0.035193294,0.0031127362,0.03511063,0.04286018,-0.013101907,-0.02161608,-0.054432843,0.02905565,0.020169497,0.028725002,0.04064898,0.052655615,-0.03657788,0.04777856,0.04496806,0.0160984,0.026348472,-0.014641484,0.021636745,-0.010270738,-0.0063236332,0.0032470617,-0.023723958,-0.012895253,0.02047948,0.046497304,0.007305243,0.04546403,-0.01587108,0.026162483,-0.06703878,0.0033038917,0.02475723,-0.022628687,-0.04951446,-0.02827036,0.032341458,-0.011572663,-0.033498723,-0.005429852,-0.011520999,-0.008643332,-0.03775581,0.027671061,0.03182482,0.014972132,-0.006049816,-0.04236421,-0.02913831,0.0015163288,-0.0033813873,-0.0049338806,-0.025087878,-0.014600153,0.045174714,-0.023413977,-0.023413977,-0.0018276024,-0.023909947,-0.0005857369,0.0008007869,-0.03246545,-0.0056623383,-0.021202771,0.004239004,0.0026348473,0.034036025,0.0058173295,-0.054846153,0.01190331,0.012915918,0.0078063807,0.001351005,0.004096929,0.037549157,0.003771448,-0.014279839,0.038685758,-0.046207987,0.02384795,0.0020833376,-0.024591908,-0.021864066,0.0015641176,-0.0073930714,-0.0062668035,-0.010544555,-0.0099039255,-0.049762446,-0.038520433,0.0390784,-0.031845488,-0.02959295,0.019342879,0.058813922,0.0030171585,0.046414644,-0.03196948,-0.013143238,0.03151484,-0.0035932083,0.0069435975,-0.021512752,-0.025480522,0.005378188,0.018826243,-0.0066904454,-0.035131298,-0.0048202206,-0.013608211,0.031287517,-0.038189787,-0.0025018132,-0.0476959,-0.039781027,-0.005714002,0.0030507399,-0.020272825,0.0569127,0.0063701305,0.0035777092,0.013287896,-0.012027303,-0.004417244,0.036040578,0.015034128,-0.027629731,0.016253391,0.009444119,-0.0063546314,-0.02180207,-0.016625369,-0.013174236,-0.028435685,-0.008596835,-0.015168454,-0.028311692,-0.01628439,-0.0039057736,0.026575793,0.00071360444,0.06819604,0.052696943,0.020386485,0.0160984,-0.011634659,0.0013497134,0.02955162,-0.021864066,-0.0028879992,0.017741304,-0.012440612,0.0065509537,-0.0011159353,-0.0032418955,0.02221538,-0.025769839,-0.017090343,0.006643948,-0.0029009152,0.051539678,0.00026396906,0.027753724,0.0058638267,-0.04980378,-0.015488769,-0.0009163844,-0.030605558,-0.026017824,0.011252347,-0.021760738,-0.024281925,-0.076090254,0.007134753,0.028539011,0.022132717,-0.006566453,-0.014393499,0.02229804,-0.018939901,0.03356072,0.025604516,0.040111676,0.011066359,-0.02403394,-0.0021866648,0.024095936,-0.0045980667,-0.011820648,-0.0068454365,0.0051560346,0.022380702,0.003758532,-0.019177554,0.013101907,-0.017668976,0.019373877,-0.0040995125,0.00063836924,-0.025377195,-0.003476965,-0.0494318,-0.027919048,-0.03808646,0.016677033,0.0356686,0.029406961,0.041289605,0.020551808,0.018464597,-0.016677033,-0.045546692,-0.0021401676,-0.042570867,0.0008873236,-0.02909698,-0.031266853,0.012864254,-0.009046309,0.020768795,-0.0061841416,0.029406961,-0.017524317,-0.027712394,-0.03000626,-0.011810315,0.010260405,0.019136224,-0.013742536,0.01103536,-0.045629356,-0.022876674,-0.010663382,-0.011644991,0.031390846,0.028043041,-0.031948816,0.004239004,-0.005925823,0.017751638,-0.016119065,0.025687177,0.0024049438,-0.019776853,-0.021740073,-0.011386673,-0.021244101,0.031576835,-0.029840937,0.012368283,0.06129378,-0.038954407,-0.03616457,0.016005406,0.006178975,0.012554272,0.033850037,-0.0195392,-0.025955828,0.014899802,0.021471422,-0.031018868,-0.034077358,0.002885416,0.040091008,0.009035976,0.025025882,0.024467915,-0.04277752,0.007573894,-0.008963647,-0.009113472,0.01889857,0.019301547,-0.014558823,-0.027795056,0.031184193,0.015798751,0.03707385,-0.0032754769,0.043645468,0.009945257,-0.024819227,-0.006995261,-0.043149497,0.033436727,-0.014073184,0.011438337,0.026513796,-0.016615037,-0.009103139,0.0014323753,-0.043893456,-0.011810315,-0.008571003,0.017627645,-0.0047220597,0.03775581,0.017937627,-0.01368054,0.0014052519,0.0048899665,-0.0037456162,0.0064424598,-0.010492892,-0.013990522,-0.0033193908,-0.0153854415,0.007816713,-0.008818989,0.0007852878,-0.008261021,0.029034983,-0.008989478,0.0092322985,0.024612572,-0.043934785,0.028125703,0.0033529722,-0.024137268,0.004541237,0.0218434,0.024922555,0.018733246,0.04205423,0.016418714,-0.020913454,0.0087776575,0.0059619877,-0.014372833,0.04077297,-0.0032031476,0.031287517,0.036701873,0.0092167985,0.0247159,-0.0023584466,-0.015313112,0.0010571679,0.017658643,0.019301547,0.025707843,0.020510478,0.022628687,-0.0052386965,0.0021207938,0.0021401676,0.0022641604,0.030915542,-0.019931844,0.034593996,0.027009767,-0.013659875,0.014837806,-0.013256898,-0.02827036,0.02047948,-0.011644991,0.0021078777,-0.0023080746,-0.022422032,0.00028641048,0.033312734,-0.0008033701,-0.02535653,0.034242682,0.0009848387,0.017751638,0.027629731,0.030894876,0.006695612,0.006137644,-0.020954786,0.029220972,0.009366623,0.018030621,0.0058328286,0.01523045,-0.018753912,0.027795056,0.009020477,0.010229407,0.00014780654,-0.0011572662,0.028415019,-0.04176491,-0.020706799,0.025418526,-0.0049726283,0.02143009,-0.003575126,-0.012740261,0.0004843469,0.016863022,0.0061841416,0.007434402,-0.02599716,0.021781404,-0.026348472,0.020004174,0.0075377296,0.025604516,0.06381497,0.019146556,-0.009712771,-0.011479667,0.011004362,-0.026162483,-0.015840081,-0.0066387816,0.023765288,0.017668976,-0.016759695,0.039553706,-0.0021698743,-0.0039729364,0.01659437,-0.02134743,-0.010343067,0.015375108,0.010487725,0.017090343,0.0055228462,-0.04810921,0.016088067,-0.030088922,-0.013370558,-0.00597232,0.01582975,0.016015738,0.026389804,0.00959911,-0.025067214,-0.0057604993,0.017978957,0.031349517,0.022174047,0.0039186897,-0.040834967,0.012161628,-0.002714926,-0.01413518,-0.0035906252,0.0062668035,0.015375108,-0.008013035,-0.029489623,0.004995877,-0.012326952,-0.020438148,0.02494322,0.014651817,0.015302779,-0.022546027,0.039140396,0.036515884,0.00020035818,-0.002189248,-0.026989102,0.010653049,0.008483175,0.035999246,0.0043552476,-0.0024733983,-0.022463365,0.03298209,0.016077735,0.022566691,0.03155617,0.01368054,-0.03870642,0.020903122,-0.0025973911,0.003629373,-0.010043418,0.0025896416,-0.033168077,-0.006618116,0.011324677,0.023723958,0.021657411,-0.013473885,0.006163476,-0.02558385,0.01655304,0.014259174,0.0013057992,0.01368054,-0.0038592762,0.05645806,-0.009630108,-0.01247161,0.008834488,-0.03911973,-0.0070107603,-0.009986588,0.012740261,-0.01719367,0.020097168,0.008452177,0.010213908,0.013535881,-0.04013234,-0.013081241,0.011799983,-0.037652485,0.02143009,-0.011748319,-0.008343683,-0.0032315627,-0.011304012,0.0144761605,0.025025882,0.021719407,0.000040947496,0.011954973,0.026575793,0.008865486,-0.020376151,-0.00092219654,-0.006907433,-0.016666701,-0.0005766957,0.028001709,-0.025480522,-0.0070107603,-0.014403831,0.008116363,0.03320941,-0.017999623,0.015271781,-0.002882833,0.000987422,-0.000106959946,0.023971943,0.031308185,-0.012492276,0.036681205,-0.02388928,0.013742536,0.012574937,-0.01137634,0.007517064,-0.009066975,0.010162245,-0.02607982,-0.017927295,0.004014267,0.040483654,0.028972987,-0.02475723,0.0030610724,-0.02252536,-0.0048047216,-0.039161064,0.017183337,0.006602617,0.002357155,-0.014920468,-0.009283962,-0.024343923,-0.04633198,0.03963637,-0.010446394,-0.012182293,-0.007573894,-0.009397622,-0.021698741,-0.0137838675,-0.035813257,0.0105910525,0.029675612,-0.023021331,-0.036557212,0.024550576,0.015726421,-0.004737559,0.0015098708,-0.03748716,0.0106013855,-0.016770028,-0.001420751,0.018071951,0.026059156,-0.027609065,-0.018640252,-0.011727653,0.03420135,0.01965286,-0.006793773,0.03653655,0.0015512017,-0.003786947,0.017524317,-0.027154425,0.0052851937,-0.03401536,0.007542896,0.026968436,0.0029370796,0.024240594,0.020593138,0.0061686425,0.018381935,-0.017100675,-0.016408382,0.041289605,-0.0051302025,0.065344214,-0.011128355,0.016563373,0.00029851915,-0.03356072,-0.0057863314,0.024963886,0.015891746,0.021182105,0.022277376,-0.032734104,-0.013060576,0.0034640492,0.024736566,-0.013153571,-0.01753465,-0.014589821,-0.002610307,-0.025046548,0.0011850354,-0.027175091,0.038727086,0.013060576,-0.0396777,-0.021058112,-0.0037843639,-0.0058741593,-0.021450756,-0.005236113,0.013980189,-0.048853166,0.024695234,0.0019593448,-0.02052081,-0.019993842,0.026100487,0.0074550677,-0.0103379,-0.001329048,0.027650397,0.014352168,-0.054019533,0.021161439,-0.0055383453,-0.009175468,-0.011438337,0.020551808,0.01862992,-0.00036939525,0.030440236,0.0005528013,0.021595415,-0.03880975,-0.030708887,0.0058018304,-0.009893593,0.0041356767,0.002638722,-0.00045044263,-0.027567735,0.03147351,-0.0014272089,-0.0049519627,-0.051498346,-0.018950235,-0.016687365,0.036474552,-0.0015654092,-0.010472226,-0.010120913,0.0017681891,-0.01345322,-0.004977795,0.02063447,0.0040246,0.016377384,0.0018637669,0.009097973,-0.028415019,-0.014899802,0.015974408,-0.03725984,0.0031876485,0.032754768,-0.0062978016,0.0016028654,-0.016346386,-0.0028492515,0.01685269,0.029675612,-0.001759148,0.00511987,0.017906629,-0.00540402,-0.021285433,-0.005202532,0.0033762208,0.022091385,0.007501565,-0.011892977,-0.010508391,-0.023186656,0.024240594,-0.025769839,0.008865486,0.033850037,-0.02082046,0.0060601486,0.0049907104,0.030047592,-0.003743033,0.0037946966,0.015127123,0.023062663,0.0005502181,-0.02959295,-0.0017191087,0.0128745865,0.012574937,-0.0062564705,0.013835531,0.0108390385,-0.010048584,0.0124096135,0.02475723,-0.011892977,-0.019301547,0.0031876485,0.00649929,0.016666701,0.02143009,-0.018340603,0.044058777,-0.0043888288,-0.011014694,0.015881412,0.035482608,-0.0333954,-0.022008725,0.012047968,-0.021698741,-0.037053186,-0.01413518,-0.024116602,-0.026369138,0.018071951,0.006907433,0.004107262,-0.040669642,-0.02252536,0.04114495,0.0064476263,-0.001626114,-0.016573705,0.0068299375,-0.021264767,0.01643938,0.00270201,-0.0011902018,-0.010420563,-0.028291026,-0.00061996403,-0.027857052,-0.0028647506,0.0044069113,-0.00013125801,0.050465073,-0.009764434,-0.010911367,-0.0068506026,0.007356907,0.04277752,0.0040555983,-0.006018818,-0.017658643,-0.028580343,0.012791925,-0.028311692]);
INSERT INTO entities (id, name, description, description_vec) VALUES (21, 'eBay', 'eBay is a company that acquired PayPal for $1.5 billion in October 2002.', [-0.004272737,-0.069865376,-0.007794682,0.05964626,0.04173153,-0.0040928596,-0.029280892,0.07128354,-0.0222735,-0.0154955145,0.01694496,-0.0068666195,-0.0037174637,-0.050052807,0.01430676,0.048509512,-0.021293297,0.0220858,-0.04079304,-0.058478363,-0.0037226775,0.004116322,0.011387014,0.0077529713,-0.02132458,-0.040438496,-0.009650807,0.01430676,-0.06777984,-0.038561516,0.025360089,-0.03322255,0.006261815,0.06719589,-0.061606664,-0.0073932167,-0.03778987,0.023107713,0.030553067,-0.02329541,-0.058853757,-0.035787757,0.03388992,0.05505809,0.013128434,0.013660245,0.0038921272,-0.009348405,0.028321546,-0.022523763,0.006381733,0.0039468724,0.051637813,-0.0045099664,-0.036955655,0.0065225065,0.0388952,0.025401799,-0.022920014,0.038832635,-0.005250331,0.007862462,0.00032113958,-0.074119866,0.031887807,-0.0058499216,-0.0828791,0.010641435,-0.009191989,0.0316584,0.013263994,0.017049238,-0.0087436,0.019020066,0.07683106,0.011783265,0.03501611,0.070365906,0.051178996,0.050553333,0.01305544,0.02321199,0.0006559655,-0.00071429525,-0.019572733,-0.016121175,0.026465422,0.009968851,-0.047007926,-0.01681983,-0.009765511,0.01676769,0.0028024358,0.008654964,0.039041188,0.0033968128,-0.0613564,-0.0065902863,0.023649951,0.0047133057,-0.019301614,-0.006882261,-0.038832635,-0.05109557,-0.04713306,0.0072107324,-0.02692424,-0.03685138,-0.0071064555,0.0073619336,0.010505876,0.08054331,0.019353751,-0.006751915,-0.025547786,0.02481785,0.03309742,-0.023587385,-0.017914733,0.007278512,-0.028196415,-0.012867742,-0.024025347,-0.012617478,0.0024231293,-0.008493336,-0.05034478,0.02955201,0.053765055,-0.018999211,0.012085667,0.034181897,0.06419273,0.011845831,-0.018655097,0.009734228,-0.04079304,-0.043796204,-0.0011164122,-0.011418296,-0.02200238,-0.0041580326,0.028071282,0.033013996,-0.07983422,0.01868638,0.049427148,-0.048509512,-0.024525875,-0.08508977,0.00033498884,-0.038123555,-0.02298258,-0.00399119,0.009864574,0.029364314,0.023941925,0.019843852,-0.031908665,0.015558081,-0.05334795,0.010448523,-0.0027085869,0.022920014,0.025151536,0.026486278,0.0038738786,-0.030824186,-0.02880122,-0.0073880027,-0.028133849,0.017820885,0.013566396,0.0012363304,-0.047675297,-0.018102432,-0.07170065,-0.03899948,-0.00784682,-0.0836299,0.025401799,-0.011866686,0.00015006066,0.027028516,-0.05213834,-0.01332656,-0.0037278912,0.018801086,0.0018913182,-0.020177538,0.020260958,-0.021074317,0.0042440607,0.02168955,-0.01587091,0.0295103,0.009848933,0.0061106132,-0.052930843,0.0028650018,0.009171134,0.006605928,-0.022252643,0.061398108,-0.03487012,-0.032388337,0.045714896,0.023816794,0.020897046,-0.004736768,-0.00093066937,-0.046215426,-0.024796994,-0.0018887114,-0.010709215,-0.04667424,0.008201361,0.01587091,0.058728628,-0.010667505,0.0066945627,-0.0030735552,0.007909386,0.003928624,-0.041522972,0.009708159,0.020469513,0.0045621046,-0.007622625,-0.05455756,0.0029093195,-0.0033342468,-0.017946016,-0.00018362471,-0.021835538,0.07028248,0.0054119597,-0.031324714,0.013941792,0.03966685,-0.014911565,0.006538148,-0.000127576,0.015724923,-0.005787356,0.029969119,0.0023957568,0.019458028,0.0021611343,-0.008425556,0.060355343,-0.0038217404,-0.0046637743,0.047216482,0.011220171,-0.04905175,-0.0043561584,0.034807555,0.00552145,0.053973608,0.010438096,-0.013774949,0.0071116695,0.03591289,-0.027383056,-0.012148233,-0.009974064,-0.0025156748,-0.0037617811,0.06861406,0.05464098,0.022210933,-0.00034574236,0.008837448,0.00784682,0.004494325,-0.027174503,-0.0051330198,-0.03778987,0.046298847,0.007575701,0.013837515,0.003485448,-0.008107512,-0.019332897,0.019510167,-0.040250797,-0.03849895,-0.021626983,0.005239903,0.025380943,-0.000515192,-0.0065120785,0.033973344,0.036413416,-0.048592933,0.0015198326,-0.019864708,0.011908397,0.015412093,0.024671862,0.009009505,-0.022023235,-0.027153647,-0.027967006,0.044964105,-0.059062313,0.04980254,-0.043545943,0.016715553,0.0150262695,0.0045021456,0.046382267,-0.032847155,-0.0073306505,-0.016069036,-0.03126215,-0.03384821,-0.011366158,-0.02982313,0.000069327696,0.00076969224,-0.048050694,0.033472814,0.0053858906,0.019374607,-0.00885309,-0.0036184008,0.021981524,-0.020730205,-0.008112726,-0.016329728,0.0067675565,-0.0423989,0.038373817,0.002339708,-0.001774007,-0.019343324,0.012846887,0.032367483,-0.025401799,-0.062399164,0.008394273,-0.030031683,0.01775832,-0.044421867,0.005020922,0.0063295946,-0.00089156564,0.07833264,-0.017518483,0.01068836,0.06394246,0.018185852,0.002527406,0.009666448,0.031116161,-0.04020909,0.013660245,0.067321025,0.0024296467,-0.008832235,-0.0050782743,0.023107713,-0.027883584,0.0154955145,-0.0056257267,-0.037769012,-0.04471384,0.024108768,-0.0641093,0.0220858,0.005907274,0.03993797,0.020959612,-0.026340289,0.03428617,0.015620647,-0.021960668,-0.046799373,0.018258847,0.04154383,0.029948262,0.033013996,-0.0077373297,-0.004708092,-0.02665312,-0.0024583228,-0.024213046,-0.016517427,0.027779307,-0.01086563,0.0035428002,-0.020782342,0.013378698,-0.017862596,-0.0043222685,0.0063973744,-0.024338176,-0.009525674,-0.014484031,-0.040521916,0.03174182,-0.06652852,-0.060480475,0.0069187577,-0.010855203,0.014223339,0.030240238,-0.0052007996,0.032659456,-0.013618534,0.0028858571,0.020959612,0.03572519,0.0049453215,-0.052764,-0.019958556,-0.037664738,0.030657344,0.018029438,0.008201361,0.012043957,0.045714896,0.014473603,-0.0070386757,-0.02065721,0.010093982,-0.0008980829,-0.0026382,-0.004358765,-0.0140982075,-0.03403591,-0.015401666,0.00061979453,-0.015422521,-0.008488121,0.019822996,-0.054140452,-0.021647839,-0.05960455,0.024317322,-0.020271387,-0.021355864,-0.038123555,-0.0285301,-0.00992714,-0.0056257267,-0.04041764,0.0073358645,0.0102451835,0.056976777,0.008133581,0.08041818,0.019166054,0.0054588844,0.01193968,-0.003858237,-0.03505782,-0.00025792184,-0.016329728,-0.028822074,0.058728628,0.030824186,-0.021480996,-0.009108568,-0.032930575,-0.0070856004,-0.009765511,0.011866686,-0.015704067,-0.0027372628,0.008681034,0.023232844,-0.010526731,0.025339233,-0.028467534,0.0020399126,-0.011720699,-0.018707236,0.0011040294,0.07645566,-0.025589498,0.010344246,-0.033118274,-0.02415048,0.015641501,0.003138728,-0.03376479,-0.007372361,0.019020066,0.038644936,0.026569698,-0.0062670284,-0.04855122,0.01775832,-0.009191989,-0.07182578,0.022711461,0.01577706,0.016288018,0.011449579,-0.0005044384,-0.050052807,-0.014692584,0.00621489,-0.03466157,-0.024338176,-0.01815457,0.019656153,0.025547786,-0.0010799153,0.035933744,0.012659189,-0.0034724134,-0.054349005,0.022920014,0.01784174,-0.007961525,0.013128434,-0.0020320918,0.040271655,-0.01569364,0.020949185,-0.0010825223,0.020417374,-0.033681367,-0.027508188,-0.028321546,-0.036142297,0.002265411,0.025109824,-0.006809267,0.0040329006,-0.0021898104,-0.0392706,-0.0062930975,-0.0003812616,-0.045631476,0.0046090293,0.021564417,-0.025693774,0.02544351,-0.019458028,0.034411304,0.0076069837,0.0065955,0.022607185,-0.0047211265,0.011053328,0.050428204,0.024213046,-0.016340155,0.048509512,-0.01211695,-0.009697732,-0.002217183,0.014390182,-0.0053493935,-0.026527988,-0.01686154,0.019614443,0.004228419,0.01256534,0.012012674,-0.0017296894,-0.022377776,0.014974131,0.0063713053,-0.012408925,-0.04525608,-0.032847155,0.010511089,0.0150366975,0.000336944,0.034619857,0.0023331908,-0.06556918,0.0020985682,-0.02665312,-0.01774789,-0.0115434285,-0.013566396,-0.013597679,-0.0002848057,0.025547786,0.01882194,0.031241294,0.0076121977,-0.0026629658,-0.0019995053,-0.019697865,-0.016621703,0.052305184,0.03822783,-0.005438029,0.06202377,-0.0049166456,0.029677143,0.009629952,-0.01770618,-0.021626983,-0.025276667,0.009113782,0.005396318,-0.013900082,0.030886753,-0.008894801,0.037226774,-0.032117218,0.007721688,0.011793693,0.012659189,-0.01426505,-0.00936926,-0.026444566,0.02119945,-0.021918958,-0.008425556,0.027091082,-0.023587385,-0.0027998288,-0.005179944,-0.036413416,0.016027326,-0.031616688,0.030782476,-0.0013569003,0.00041482566,0.05409874,0.036246575,-0.02759161,0.007033462,-0.019426746,-0.027174503,-0.0441716,0.041752383,-0.012794749,0.05639283,-0.028467534,-0.058019545,0.023545675,-0.027383056,-0.008039732,0.020865764,-0.020073261,-0.014723867,0.0059489845,-0.011637278,0.021626983,-0.003548014,-0.014921993,0.044838972,-0.017101375,0.01475515,0.013691528,-0.042503174,-0.009384901,0.022920014,-0.024463309,-0.0008687551,0.012148233,-0.030553067,-0.007700833,0.004358765,0.018874079,-0.0009019933,0.003931231,-0.015485087,0.0070230346,-0.056309406,0.028154703,-0.036601115,0.0031986872,-0.0013516864,-0.006407802,-0.026236013,-0.013274421,0.023712518,0.008164864,0.036392562,0.0465074,-0.0029093195,-0.047049638,-0.0069396133,-0.03643427,-0.014713439,-0.044421867,0.0062409593,-0.014525741,-0.007382789,0.012106523,0.03572519,0.016788546,0.010083555,-0.029322602,-0.007591342,0.006652852,-0.012179516,-0.0030005614,-0.0052268687,0.009598669,0.02884293,-0.063775614,-0.005641368,0.025818907,-0.014411037,-0.010052272,-0.010062699,-0.046298847,0.0092076305,-0.0064860093,0.048801485,-0.018029438,-0.0039781556,0.048509512,-0.032534324,-0.010385958,0.0014989773,0.0016566957,0.036288284,-0.011929252,0.017591476,-0.011480862,0.0007234195,-0.054265585,-0.017153515,-0.013847943,0.005443243,0.01801901,-0.005568375,0.01113675,0.0075600594,-0.021220304,-0.013774949,0.002695552,0.009374473,-0.0033942058,-0.027216213,0.028112993,-0.03457815,0.015704067,0.03670539,0.0051955855,-0.018300558,-0.0115330005,-0.004940108,-0.012356787,0.0006308739,-0.005709148,0.022544619,0.00361058,0.006256601,0.046340555,-0.037435327,-0.04792556,-0.025339233,0.010260825,0.0044161174,0.011407869,0.033055708,-0.0058864187,-0.06398417,0.02696595,0.026819961,0.0097759385,0.017466344,-0.023691662,0.013712384,-0.010631007,-0.019166054,-0.014494458,0.0049166456,0.008154436,0.0349744,0.03215893,0.028133849,0.034411304,0.001651482,0.020782342,-0.06465154,-0.023629095,0.006725846,-0.022148367,-0.04838438,-0.011022045,0.041877516,-0.005615299,-0.027028516,-0.021522706,0.0031778319,-0.009510033,-0.023128567,0.025964893,0.01475515,0.0008772276,-0.018884506,-0.027883584,0.0017557587,0.0014181628,-0.0065798587,-0.009812435,-0.048843198,0.0014142524,0.031220438,-0.040355075,-0.0388952,0.011345303,-0.021626983,-0.024171334,-0.008654964,-0.032722022,-0.026215157,-0.0067154183,0.0040355073,0.0052972552,0.013774949,-0.013336987,-0.019113915,0.0065694307,0.0070595313,-0.020333953,0.017716607,-0.004090253,0.0295103,-0.0071690218,-0.034911834,0.023503963,-0.029322602,0.007414072,-0.003044879,-0.026507132,0.009337977,0.013795805,0.005839494,0.0038087058,0.021939814,-0.028008716,-0.02978142,-0.016162885,0.017070092,-0.025255812,-0.010099197,0.0016814615,0.058728628,-0.011678988,0.04659082,-0.020469513,-0.0063921604,0.027424768,-0.030323658,0.0062305317,-0.042795148,0.003863451,-0.027445622,0.01850911,-0.016871966,-0.019687437,0.00009262702,-0.02504726,-0.000051405146,-0.019020066,-0.014817717,-0.039604284,-0.029698,0.014661301,0.008727958,0.004272737,0.05722704,-0.0084047,-0.026799107,0.023608241,-0.018352695,-0.014869855,0.03591289,0.0041893157,-0.021501852,0.034181897,-0.014285905,-0.011230598,-0.036100585,0.0031126589,0.015088836,-0.042127777,-0.010234756,0.0044082967,-0.021898102,0.019051349,-0.017654043,0.019750003,0.012356787,0.054140452,0.0359546,0.04709135,0.00402508,-0.0033159985,-0.023045147,0.029093193,-0.025631208,0.0075287763,0.034807555,-0.0013288759,-0.00291714,0.015349527,-0.018050293,0.040438496,-0.05505809,-0.026590554,0.004676809,0.04158554,0.042002648,-0.018842796,0.054474138,0.019645726,-0.014077351,-0.0011366158,0.00040733078,-0.037080787,-0.013034585,-0.017966872,-0.017059665,0.010015775,-0.06219061,-0.019332897,-0.0033524951,0.011157605,0.005714362,-0.008441198,0.04784214,0.0015485086,0.014014786,0.009984492,0.04604858,0.023670806,-0.03603802,0.016642557,0.021856392,-0.0113035925,-0.017049238,-0.008091871,-0.00492968,-0.007966738,0.014150346,-0.03737276,0.009577813,-0.024213046,0.009489178,-0.0045360355,-0.00489579,-0.029030629,0.013701956,-0.036058877,-0.029989973,-0.04179409,0.025464365,0.02239863,0.009567386,0.011595567,0.025568642,0.032847155,-0.013003302,-0.027529044,0.0013008516,-0.016882395,-0.013910509,-0.03689309,-0.019510167,0.009004291,-0.013973075,0.020333953,-0.005745645,0.018905362,-0.040709615,-0.0068979026,-0.013305704,-0.0034671996,-0.014776005,0.021397574,-0.009374473,0.024379889,-0.04855122,-0.012367214,-0.009765511,-0.025318379,-0.015078408,0.03430703,-0.039583426,-0.031866953,-0.00565701,0.019218192,-0.012951164,0.021136884,-0.003490662,0.009911498,-0.017017955,0.008519405,-0.010792636,0.000808796,-0.035078675,0.04050106,0.045548055,-0.036684535,-0.029030629,0.010537159,-0.011115894,0.025151536,0.021585273,-0.009812435,-0.025589498,0.0058603496,0.0078103235,-0.023399686,-0.046966217,-0.018675953,0.024484165,-0.014869855,0.011324448,-0.0196353,-0.046757665,0.0079198135,0.013795805,-0.0133995535,0.04971912,0.026673974,-0.031908665,-0.0018978355,0.03240919,0.032304917,0.02611088,0.0049244664,0.036225718,0.0087436,-0.013222283,0.0041606394,-0.028300691,0.00063348084,-0.00019649637,-0.020187965,0.027883584,-0.018717663,-0.013576823,-0.0037774227,-0.022753172,-0.0018261453,0.00936926,0.011470435,0.002055554,0.042190343,-0.0048592933,-0.02231521,0.0038373817,0.009181562,-0.0011783264,0.016215025,0.005568375,-0.016642557,-0.01578749,0.007195091,0.004773265,0.00068496744,0.017299501,-0.014838572,0.018269274,0.012096095,0.0306782,-0.004457828,-0.0465074,-0.01569364,0.016288018,0.004901004,0.001410342,0.02137672,0.047550168,0.01242978,-0.00024749417,0.011616422,-0.01654871,0.017581047,0.0097759385,-0.024630152,0.016308872,0.00465074,0.026382,0.047299903,0.03756046,0.011793693,0.009619524,-0.004486504,0.030031683,-0.007893745,0.00031576282,0.011866686,0.018092005,0.009395329,-0.012346359,0.008550688,0.014119063,-0.023066001,0.023357976,-0.010036631,0.030594777,0.050428204,-0.017268218,0.027403912,0.017508054,-0.018832369,0.006313953,-0.031053595,-0.012388069,-0.019645726,-0.040146522,-0.0003646425,0.023941925,-0.015328672,0.018832369,0.051262416,-0.021814682,0.019280758,0.039333165,-0.01030775,0.020375663,-0.0025221922,-0.017862596,0.035349794,0.01659042,-0.004801941,0.01949974,0.035308085,0.00087201374,0.011897969,0.021772971,0.014744722,-0.009442253,0.011157605,0.028550955,-0.011658133,-0.004463042,0.020292241,0.021877248,0.022607185,0.0007749061,0.00392341,-0.007977166,0.010672718,0.018363124,0.011824976,-0.019155625,0.042002648,-0.012659189,0.025526932,0.007961525,-0.000079633166,0.059062313,0.02239863,-0.030845042,-0.0050756675,-0.0015485086,-0.015672784,-0.03403591,-0.01457788,0.018310985,0.0025143714,-0.0070386757,0.030115105,0.014598736,0.0154955145,0.0049818186,-0.03818612,-0.02039652,-0.023712518,0.024525875,-0.003013596,-0.003047486,-0.031637546,0.013555968,0.0054276013,-0.035975456,0.0024100947,-0.010771781,0.017195225,0.037539605,-0.009056429,-0.008727958,0.0063869464,0.005432815,0.035620913,0.008754027,0.031137018,0.008905228,0.007544418,0.034265317,-0.02266975,-0.004611636,-0.00927541,0.005615299,-0.015412093,-0.031533267,-0.013743666,-0.012648761,-0.0054745255,0.012554912,0.012492347,0.016350584,-0.02173126,0.022648895,0.025818907,0.0003969031,0.009974064,-0.0095569575,-0.013420409,-0.018488256,0.062357455,-0.0068666195,0.0001749893,-0.013774949,0.031408135,0.028029572,0.011345303,0.027821017,-0.013566396,-0.04584003,0.022774028,0.0041867085,-0.0042779506,-0.007195091,0.03205465,-0.017633187,-0.017101375,0.0029979546,0.038019277,0.012826032,-0.0033159985,-0.012419352,-0.022857448,-0.00011877766,0.03076162,0.00058069074,0.015109691,-0.0012272062,0.040355075,-0.013201428,-0.0059489845,0.015954332,-0.03372308,-0.011282736,-0.011199315,-0.002763332,-0.024567585,0.025005547,-0.010834347,0.00787289,0.033910777,-0.012033529,-0.007200305,0.0036210078,-0.03872836,0.041085012,-0.022482052,-0.007643481,-0.0009202417,0.0013829694,0.026090026,0.014066924,0.026548842,0.00934319,0.005258152,0.032659456,-0.0076747634,0.0020516436,0.015537226,0.015839627,-0.029301748,0.009833291,0.023003435,-0.01350383,-0.023649951,0.006032406,0.0032221493,0.035975456,0.004363979,0.02034438,0.00008667999,0.018258847,0.0062461733,0.031825244,0.017789602,-0.031408135,-0.0065172925,-0.04252403,0.023941925,0.017935589,-0.033013996,-0.017518483,0.0032273633,0.011376586,-0.0029744923,-0.014484031,0.026778251,0.036684535,0.012805176,-0.03618401,0.023357976,-0.0037748157,0.0052268687,-0.04463042,0.018675953,-0.000051201478,-0.005787356,0.004423938,-0.0127113275,-0.013962648,-0.041919224,0.04114758,0.014296332,-0.0024687503,-0.011595567,0.018905362,-0.03270117,-0.020021122,-0.017654043,-0.00047836927,0.020917902,0.012450635,0.0005376766,0.030615633,0.0035219449,-0.007445355,-0.0027998288,-0.044838972,0.026861673,-0.024880417,-0.009082499,0.029093193,0.046841085,-0.019531023,-0.035203807,0.018592533,0.03457815,-0.006996965,-0.01225251,0.027153647,-0.006506865,-0.00078924414,0.027383056,-0.02146014,0.014984559,-0.052513737,-0.012784321,0.0032847153,-0.009760297,0.049343724,0.015307817,0.030156815,0.0006318515,-0.012294221,-0.028196415,0.021230731,-0.004921859,0.03268031,-0.02057379,0.043212257,-0.0054797395,-0.028363258,-0.003795671,0.01131402,-0.0003701822,0.023274556,0.03966685,-0.049176883,-0.010427668,0.007414072,0.034995254,-0.014557024,-0.02239863,-0.0077842544,0.007257657,-0.010990762,0.0002662314,-0.026465422,0.058061257,-0.013263994,-0.036017165,0.0014624804,-0.006501651,0.005237296,0.0049140383,-0.006157538,0.021898102,-0.0392706,0.0023762048,-0.008211789,-0.011251453,-0.0016084678,0.040897314,-0.009692517,0.021168167,0.016121175,0.011220171,0.0110741835,-0.06360877,0.0053598215,0.008842663,-0.016892822,-0.017956445,0.03993797,0.028676087,-0.029093193,0.012961592,-0.0086080395,0.026673974,-0.0242339,-0.03176268,-0.0022993009,-0.018039865,0.0047341613,0.0049766046,-0.0065172925,-0.018144142,0.018394407,-0.0072107324,0.0019134771,-0.05017794,-0.028175559,-0.018759375,0.041251853,0.0013555968,-0.01538081,-0.0027085869,0.0004659864,-0.0045751394,-0.017674897,0.017674897,-0.0140982075,0.005438029,-0.016798973,0.036767956,-0.022961725,-0.016110746,0.006475582,-0.033305973,0.00887916,0.052555446,-0.032450903,-0.01565193,0.0106049385,-0.01649657,-0.0007266781,0.0038217404,-0.0060793306,0.019906418,0.021564417,-0.009264983,-0.011637278,-0.015130546,0.02485956,-0.016871966,-0.015172257,-0.011793693,-0.020730205,-0.04775872,0.0028180773,-0.0143276155,-0.018655097,0.008091871,-0.0083890585,0.01654871,0.0016410543,0.03607973,-0.02396278,-0.012398497,0.009572599,0.013222283,-0.029656287,-0.035871178,0.002794615,0.016079465,0.008373417,-0.025777195,0.019051349,0.005060026,0.0017974692,0.019885562,0.013409981,-0.03149156,-0.0076747634,0.0115434285,-0.0055840164,0.009869788,-0.00021262666,-0.0071429526,0.03572519,0.024004491,-0.017049238,0.011678988,0.01686154,-0.0006155583,-0.018728092,-0.02034438,-0.021981524,-0.028696943,-0.045714896,-0.033389393,-0.0206155,0.0016971029,0.008044946,0.015620647,-0.041960936,-0.0145674525,0.050678466,-0.00021523358,-0.02727878,-0.0105528,0.010740498,0.0004138481,0.016976243,0.005391104,0.013295277,-0.017591476,-0.0068301223,0.00433791,-0.007440141,-0.008973008,-0.01225251,0.0073358645,0.04905175,0.022064945,-0.019395463,0.0044135107,0.005391104,0.02790444,0.018728092,0.018363124,-0.024442453,-0.041168433,0.030824186,-0.0056361547]);
INSERT INTO entities (id, name, description, description_vec) VALUES (22, 'SolarCity', 'SolarCity is a solar-energy company created with the help of Elon Musk in 2006, which was acquired by Tesla in 2016 and became Tesla Energy.', [-0.02249736,-0.07267071,0.009550766,0.045886125,0.029161671,0.045461643,-0.021733299,0.033873383,0.026041755,-0.033109322,-0.05051294,-0.056285847,0.026572352,-0.032366484,-0.016671393,0.024640976,-0.031071825,0.00554475,0.0024513633,-0.043933522,0.01704281,0.00946587,0.051531687,-0.0027431922,-0.043551493,0.044103313,-0.038330406,0.03877611,0.010431559,-0.021075357,0.012182533,-0.021648403,-0.03775736,0.03039266,-0.032260366,0.0621012,0.0071471566,0.008622219,-0.017297499,0.023346316,-0.026084203,-0.0058206613,-0.013562088,0.0601486,0.018029723,-0.020565983,-0.033555023,-0.011513979,0.02449241,0.007630001,-0.011821725,-0.06587906,0.01790238,-0.01769014,-0.08273085,-0.032684844,-0.00093783217,0.03461622,-0.07674571,0.06711005,-0.002099842,0.043127015,0.009131594,0.00093119964,0.017658304,-0.014082073,0.012256816,0.05399366,-0.020958625,0.02948003,-0.016904855,0.019271323,0.035550073,0.0155253,0.044315554,0.0026795205,0.014899194,0.007348784,0.028058028,-0.01336046,0.01850726,-0.008457733,-0.03612312,-0.0023293258,-0.017074646,-0.022900615,0.014432268,-0.038309183,-0.052380644,-0.019929264,0.009041391,0.0057251537,-0.02142555,-0.0025840127,0.0074124555,0.027675997,-0.02725152,-0.010696857,0.029076776,0.019313771,0.0029527785,0.005825967,0.0022935104,-0.018677054,0.0149522545,-0.0045498786,-0.020130891,-0.0075238813,0.014071462,-0.01930316,0.027548654,0.0118005015,0.055946264,0.02602053,-0.0031650176,-0.019929264,-0.01887868,-0.02595686,-0.016533436,0.008149987,0.018719502,0.013010265,-0.018050948,0.051192105,0.039518945,-0.012702518,-0.005581892,-0.0065369685,-0.025617275,0.00032698107,-0.013190669,-0.00038236225,0.003064204,0.00562434,0.032196693,-0.07670326,-0.020332519,-0.060233496,0.0026317665,-0.013243728,0.010198096,0.03077469,0.028524954,0.03066857,-0.03977363,-0.05938454,0.04111074,-0.033937056,-0.019504786,-0.01119562,0.00306951,-0.03792715,-0.005560668,0.01124868,0.01390167,-0.02109658,-0.0036717388,0.007730814,-0.006239834,-0.047668934,0.0008496202,0.009630355,0.004181113,-0.009073228,0.0054386305,0.01411391,0.015068986,0.017594634,-0.05267778,-0.049833775,-0.053908765,0.0018703582,-0.0048204837,-0.003058898,-0.025362588,-0.017255051,-0.0049106856,0.028864536,0.0071206265,-0.049197055,-0.00903078,-0.03181466,-0.002772375,0.05581892,-0.0042792736,-0.03444643,-0.04359394,0.03402195,0.013042102,-0.07275561,-0.033066873,-0.006712066,0.012713131,0.007035731,-0.02034313,0.039455276,0.012638846,0.009142205,0.014750627,-0.03629291,-0.014485328,0.010909097,0.0025402384,0.05450304,-0.03115672,-0.049197055,-0.00792183,-0.024428736,0.012341712,-0.02860985,0.030541226,0.0074124555,-0.051956166,0.012851086,0.028355163,0.018963575,-0.028758418,-0.03213302,-0.0017350558,0.03678106,0.014527776,0.038754884,-0.010527066,-0.00034588363,-0.0002521999,0.016947303,-0.012140085,-0.020587206,0.03276974,-0.0008708441,-0.060488183,-0.038818557,-0.0404528,-0.02790946,-0.052932467,-0.049663983,0.04868768,0.009216489,0.0006420237,-0.041238084,0.0017814831,-0.0065953345,0.042341728,-0.003608067,0.039136916,-0.00056475535,0.004252744,0.0379696,-0.0025999306,0.004149277,0.019929264,0.03671739,0.012299264,0.05386632,0.043466598,-0.01973825,0.041089516,0.011758054,0.00335338,-0.05110721,-0.021393714,0.024577305,-0.0483481,-0.032387707,-0.017329333,-0.0059745344,-0.0043668225,-0.034106847,0.0010074731,0.034510102,-0.01449594,-0.0035841903,0.00022898625,-0.00933322,-0.038203064,-0.0071577686,0.026105426,0.0256385,-0.03883978,0.06469052,0.019918652,-0.020958625,-0.028418833,0.01400779,-0.014580836,-0.00067220145,-0.00046858445,0.012702518,0.022943063,-0.021467999,0.00025418965,-0.006457379,-0.0019857634,0.03245138,0.024640976,-0.0012986389,0.012829862,-0.013891058,-0.006096572,-0.01227804,0.05543689,-0.0364627,-0.039136916,-0.035146818,0.0095826015,0.03591088,-0.0384153,0.009120981,0.029819613,0.012235592,-0.014517164,-0.054545484,0.04174746,-0.0660913,-0.0112168435,0.0029660433,-0.014984091,-0.009879736,0.031835888,-0.057474386,0.0005965912,-0.038988348,-0.013455967,0.033724815,-0.037884705,-0.03678106,-0.0021993292,0.030053077,-0.014962866,0.0019353565,0.027102951,-0.037290435,0.021881865,-0.068128794,-0.0012044577,-0.031708542,0.01812523,-0.037099417,-0.03852142,-0.052125957,-0.03516804,-0.034170516,-0.0053563877,0.006420237,-0.0073700077,-0.044358,-0.04132298,0.0071471566,-0.017573409,-0.010484618,0.014570224,0.0056827054,0.040792383,-0.038054496,-0.03629291,0.01812523,-0.042808656,-0.035083145,0.05586137,-0.0068606334,0.021075357,0.0014989396,0.023516107,0.034510102,0.0070092008,-0.003109305,-0.076066546,0.050725177,-0.018040335,-0.0046029384,-0.043233134,-0.03476479,0.0041147885,0.035252936,-0.022964286,-0.019589681,0.048432995,-0.022412464,-0.017721977,-0.012935982,0.0069402233,0.012957206,-0.052168407,-0.0044013113,-0.001390167,-0.003990098,0.030498778,0.032154243,-0.027272742,-0.02228512,0.008929966,-0.045461643,-0.005359041,-0.03342768,0.009513624,0.048899923,0.006186774,-0.03667494,-0.024301393,0.021308819,0.023728346,-0.025214022,0.0404528,-0.013816775,-0.018263187,-0.032854635,-0.0007236032,-0.018072171,-0.0065900283,-0.011758054,0.08290065,-0.03597455,0.01606651,0.018263187,-0.009120981,-0.02190309,-0.038203064,0.003064204,-0.018210126,-0.0012250184,0.032812186,0.0014326149,0.00559781,-0.032918308,0.040771157,-0.027782116,0.04316946,-0.010267073,-0.011110724,0.011864173,0.06515744,0.0310506,0.0026901325,-0.015833048,0.004740894,-0.0339795,0.0060010646,-0.019334994,-0.06324729,-0.0068500214,-0.0027073768,-0.0035656192,0.013742491,-0.012500891,-0.020894954,-0.076448575,0.038309183,0.020374967,-0.043381702,0.0029899203,-0.016268138,0.035295386,0.024768319,-0.011174396,-0.021945538,0.01519633,-0.0189848,-0.037269212,0.0036770448,0.008282636,-0.017414229,-0.013975954,0.047626484,-0.021032909,0.010824202,-0.026253995,-0.007258582,0.022815717,-0.0029872672,0.042617638,-0.0003301315,0.054163452,0.02525647,-0.026593577,-0.012723742,0.004242132,0.0379696,0.016162017,0.0394765,-0.04635305,-0.021287596,0.013095161,-0.030923257,0.06362932,-0.014209417,-0.037417777,-0.0126176225,0.0031172638,-0.02493811,0.014262477,0.035507623,-0.0084152855,0.003647862,-0.0070410366,-0.0070198127,-0.017594634,-0.027209071,-0.040198114,-0.029076776,-0.0022497359,0.028737193,0.015557136,-0.009094452,0.036356583,0.00281217,0.030583674,-0.017106483,0.033661142,0.010160954,-0.035762314,0.020841893,0.047456693,0.028524954,0.014145745,0.0003952956,0.025214022,-0.016268138,0.0023505497,0.02931024,-0.007258582,0.024704648,-0.012776802,0.010845426,-0.012935982,0.013424132,-0.021064745,-0.010017692,0.015164494,-0.072543375,0.00056044426,0.0013715961,-0.008616913,0.0008469672,-0.02249736,-0.033130545,0.0102246255,-0.02807925,-0.00023279991,-0.009338527,0.007836934,0.007916524,0.013944118,0.027060503,-0.021107193,0.003937038,0.045631435,-0.021276984,-0.03852142,-0.012723742,-0.0059745344,0.05110721,0.022094104,0.021467999,-0.011025828,-0.0026689083,-0.0029289015,0.0167669,-0.015323673,0.010569514,0.024471184,-0.022921838,0.009619744,0.013562088,0.014166969,0.023537332,0.037141867,0.016830571,0.026275218,-0.044697583,-0.017944828,-0.018772561,-0.018592158,0.014050238,-0.005581892,0.010298909,0.025235245,-0.0310506,-0.015291837,0.017318722,0.029862061,-0.0006615895,-0.008834458,0.011238067,-0.009338527,-0.029883284,0.03457377,-0.039667513,0.020629654,0.055309545,-0.031984452,0.0034992944,0.0040484634,-0.026657248,-0.02239124,0.0058100494,0.012744966,0.006712066,-0.035443954,-0.01438982,-0.0020308641,-0.013880447,-0.031241616,-0.005011499,0.023749571,-0.016830571,-0.0031225698,0.03871244,0.025489932,0.02142555,0.0051521077,0.006998589,-0.014782463,0.0065528867,0.06299261,0.0038362243,0.031008152,-0.000018394758,-0.0023293258,0.0057198475,0.0009849227,0.013042102,-0.022157777,-0.03434031,0.046819977,0.007958972,-0.005879027,-0.0016130182,-0.0047462,-0.028036803,0.01173683,0.022667151,0.0042288667,0.038967125,0.006977365,-0.062483232,0.006934917,0.014474716,0.06778921,0.020162728,0.004417229,-0.010367887,-0.020332519,0.025107902,0.00047355882,0.0010353295,0.0001602572,-0.035889655,-0.004687834,0.026657248,0.013402908,-0.0010943586,0.013169445,0.025065454,-0.016639557,-0.010378499,0.036505148,0.012447831,-0.019706413,0.004724976,0.020810058,-0.034870908,-0.008813234,0.021818195,-0.03245138,-0.00041287165,0.016756289,0.033470128,-0.02417405,-0.037905928,-0.004170501,-0.029989405,-0.0032180776,-0.022157777,-0.012511503,-0.00012021363,-0.030520003,-0.0025296265,-0.02239124,0.029522479,-0.022454912,-0.014326149,-0.0014511858,-0.02449241,0.029607374,0.031835888,-0.028164146,-0.024959335,-0.015779987,-0.007847546,0.0031358348,-0.006462685,0.02801558,0.023303868,0.00067319634,0.032366484,-0.04499472,0.040665038,-0.007226746,-0.022921838,0.024980558,0.03661127,0.017499125,0.031835888,-0.030711018,-0.0005723827,0.013795551,-0.030116748,-0.027187847,0.0055182204,-0.018432979,0.0026171752,-0.05068273,0.008680585,-0.0049849693,0.066133745,0.040749934,0.021627178,0.0023744265,0.031241616,-0.026275218,0.021669626,-0.031496305,-0.020311296,-0.038372856,-0.034828458,-0.018432979,-0.015546524,0.050258253,-0.008781399,0.03342768,0.019069696,-0.039349154,-0.03701452,-0.02396181,0.0034992944,-0.018178292,-0.04754159,-0.006621864,-0.03765124,-0.014400433,-0.024110377,0.016533436,0.023452437,-0.011938457,0.035613745,-0.035507623,0.023834467,0.027888237,-0.006048818,-0.03276974,0.03703575,0.0039741797,0.036483925,-0.013763715,-0.032048125,-0.0018623993,-0.021680238,0.009227101,0.034955803,0.02211533,-0.015153882,0.012564563,-0.021499835,0.009778923,-0.02034313,0.013148221,-0.0016912814,-0.020523535,-0.024322618,-0.006186774,-0.0065369685,0.015482852,-0.026381338,-0.0046029384,-0.025192797,0.027336415,0.0074442914,0.029649822,0.012012741,0.009062615,-0.021881865,-0.0052025146,0.011832338,0.0067969617,-0.048093412,0.00027955888,0.038330406,-0.004555185,-0.012564563,-0.052932467,-0.0035735783,0.020958625,0.019770086,0.026784591,0.01266007,-0.021690851,0.008208353,-0.036908403,-0.005077824,0.048263203,-0.00833039,0.041259307,0.004847014,-0.0036770448,0.015260002,0.031305287,-0.02211533,0.0029686964,-0.033576246,0.0013848611,0.00407234,0.022900615,-0.010909097,-0.036420252,-0.026105426,-0.0047939536,0.024959335,-0.02504423,-0.0051998612,0.018316247,0.007258582,0.030923257,-0.008425898,-0.059639227,0.032217916,-0.022072881,0.0060222885,0.019982325,-0.015992226,0.025426261,0.024853215,-0.03888223,0.022072881,0.018454202,-0.003390522,-0.01287231,-0.0143685965,0.0018995412,-0.024534857,-0.02428017,0.017605245,0.020916177,0.03839408,-0.015726928,0.023006734,-0.015928555,0.010951545,-0.0040458106,-0.019823145,0.010410335,-0.02027946,-0.022030434,0.03472234,-0.018411754,-0.045504093,0.053484287,0.013944118,-0.0020030078,-0.0023770796,0.0054810783,-0.048135858,-0.034679893,0.03765124,-0.034043174,0.027463758,0.011163784,0.0013291482,-0.0089193545,0.05679522,-0.016968528,-0.026954383,-0.015726928,-0.017859932,0.0077467323,-0.026381338,0.017382395,0.0017841362,-0.0022099412,-0.0018876027,0.012002129,0.0075132693,-0.023155302,0.014761239,-0.0020666795,-0.0008343655,0.0071047083,0.009396892,0.009428728,-0.0032260364,0.0037062278,-0.022943063,0.016894244,0.050937418,-0.033724815,-0.02493811,0.0071524624,-0.012415996,0.05802621,0.04028301,-0.022476135,0.03141141,-0.059426986,0.0038096944,-0.016353033,0.014761239,0.010951545,-0.044315554,-0.020481087,-0.054163452,0.044145763,0.032493826,-0.0088716,0.0045419196,0.008622219,-0.03461622,0.010611962,0.0032684843,0.0003216751,0.010808283,-0.040474024,-0.025893187,-0.019823145,-0.009221795,0.00471967,0.0105164545,-0.0031623647,0.02211533,0.004796607,0.005252921,0.0054969965,0.019971712,-0.0115670385,0.051149655,-0.017785648,0.0011739483,0.027930684,0.00131522,0.007316948,-0.054205902,-0.017180767,0.0090573095,-0.018974189,-0.032430157,0.031071825,0.035061922,-0.004403964,-0.0041094823,-0.03701452,0.025680948,0.008197741,0.020640265,-0.019430503,0.03342768,-0.023134077,0.019504786,-0.014994702,0.0045525315,0.0320269,0.049239505,-0.0006642425,0.0032684843,-0.01914398,-0.0089989435,-0.018889293,0.021351267,-0.0147187915,-0.019462338,-0.007969583,-0.0046347743,-0.007794486,0.016575884,-0.05662543,-0.041259307,-0.017212603,-0.031008152,0.0057039293,-0.0030031851,-0.0041041765,0.00084033475,-0.021298207,0.015673868,0.028461281,0.0035443953,-0.029862061,0.00407234,-0.02256103,-0.061252244,-0.05174393,-0.02012028,0.003971527,0.0070994026,-0.0015135311,0.029395135,0.0033295031,-0.0057092356,-0.0062981993,-0.012479668,0.022221448,-0.016427318,0.029501254,0.02319775,-0.0037168397,0.019547233,0.021139028,-0.024704648,-0.029798388,-0.050428044,0.0037778586,-0.058832716,-0.0035046004,0.033194218,-0.0404528,-0.016788123,0.044442896,-0.0143685965,-0.010797671,-0.013753103,-0.0008065091,-0.041980922,-0.009794841,-0.009916878,0.018072171,0.038203064,0.003979486,0.0043562106,0.0020043342,-0.00719491,0.005295369,-0.0021555547,0.055182204,-0.034743562,0.0073540895,0.025065454,-0.025702173,-0.027209071,0.040622592,-0.009471176,0.002225859,0.02525647,0.039306708,-0.034191743,-0.0006672271,0.006611252,0.04987622,-0.040304232,0.070123844,-0.004478248,0.010866649,-0.016490988,-0.005332511,0.019865593,0.026742144,-0.005239656,0.0032923613,0.0014485328,-0.031347737,-0.011620099,0.006457379,0.044315554,0.013975954,-0.017255051,0.003411746,0.016692616,0.0049425215,-0.01758402,-0.00559781,-0.016628945,-0.017541572,-0.016416706,0.007630001,0.01395473,0.026466234,0.017912991,-0.0026941118,0.03981608,0.030753465,-0.028800866,-0.010362581,-0.031602424,-0.0060541243,0.041874804,-0.011535203,0.028376386,-0.011906621,0.011853562,0.011110724,-0.018698277,-0.0049266033,0.0062610577,0.038967125,-0.02211533,-0.05106476,0.01697914,-0.0016355687,-0.0014896542,-0.01704281,-0.0066271704,0.016310586,-0.03185711,-0.019844368,0.030647347,0.037417777,-0.036144342,-0.035231713,0.024534857,-0.013869834,-0.006674924,-0.044867374,-0.010537678,-0.027930684,0.00778918,0.04024056,0.0028148228,0.018188903,-0.025999308,0.019791309,0.009041391,0.024534857,0.014071462,0.0147187915,-0.042469073,0.0059533105,-0.01119562,0.015217554,0.004709058,0.035868432,0.0020839241,0.022136552,-0.022836942,0.0123311,0.035061922,0.018846845,0.0035099064,-0.0035443953,-0.014846135,-0.0121506965,0.01790238,-0.02434384,-0.0006625844,-0.042638864,0.036929626,-0.0266148,0.0013662901,-0.014029014,0.015864883,0.042256832,0.004403964,0.047371797,-0.00037506653,-0.010017692,-0.018210126,0.013519639,0.0049239504,-0.021139028,-0.0073540895,-0.007253276,-0.0018623993,-0.033767264,-0.032260366,0.0069296113,-0.012458444,0.0028307408,-0.02423772,0.030031852,-0.006754514,-0.005645564,-0.040898502,-0.02104352,-0.01119562,0.015695091,0.018050948,-0.014846135,0.012023353,-0.00015511704,0.014761239,0.001973825,-0.015705705,-0.0071736863,-0.012585787,0.009269549,0.023919363,0.04868768,0.0015387345,-0.058493134,-0.047966067,0.02385569,0.032196693,-0.0056402576,-0.028906984,0.0013437397,-0.030604899,-0.021680238,-0.026742144,-0.05399366,-0.036653716,-0.010214013,-0.005043335,-0.040261783,0.009078533,-0.03608067,-0.008033255,0.012012741,0.021627178,-0.01341352,0.016586497,0.013827386,-0.0065051327,-0.0057994374,-0.013063326,0.03066857,0.031793438,-0.0032393015,-0.012394772,0.0047939536,-0.03423419,0.03349135,-0.011694382,-0.008839765,0.023240197,0.0039741797,0.0076989783,-0.010755223,0.021436164,0.018687665,0.0009305364,0.006977365,-0.029076776,0.0049159913,0.01952601,0.022072881,0.0256385,-0.0034462346,0.0110895,-0.013721267,0.008399368,0.010877261,0.0015785294,-0.0014631243,0.009985856,-0.026275218,-0.012341712,-0.0040962175,-0.02693316,-0.030031852,0.00897772,-0.0067704315,-0.008319778,0.032090575,-0.003934385,0.0032817493,0.00023794008,-0.0032737902,-0.013816775,-0.009752393,-0.014421657,-0.009237713,0.010558902,-0.050810073,-0.0054810783,-0.003623985,0.010155648,0.058280896,0.020778222,0.02595686,-0.042150714,0.01390167,-0.024471184,-0.0053563877,-0.010309521,0.009869125,-0.02742131,0.032790963,-0.017944828,0.024577305,-0.03440398,0.017817484,0.0065475805,0.021107193,0.049791325,0.02699683,-0.020597817,-0.014092686,-0.0048735435,-0.042617638,0.017817484,0.02742131,0.04255397,-0.046692632,-0.026105426,0.0037380636,-0.0003438939,-0.021032909,-0.0098160645,0.006510439,0.015132658,-0.003401134,-0.014039625,-0.00005140169,-0.007799792,0.041513994,0.041259307,-0.019886816,0.044909824,-0.021701463,-0.032324035,0.0032897082,-0.005555362,-0.0113335755,0.0024606488,-0.009105063,-0.0384153,-0.003310932,-0.03860632,0.0054253656,-0.007561023,-0.0014365944,-0.015100822,-0.0011699689,-0.029522479,-0.0073222537,0.0027007444,-0.023622228,0.019823145,-0.0008741604,0.036208015,-0.015323673,0.010606656,0.02239124,0.042596415,-0.01168377,0.020703938,-0.0315812,0.01903786,-0.022603478,-0.023813242,-0.034849685,0.035146818,-0.00784224,0.002761763,-0.051022314,0.02142555,-0.022263896,-0.017997887,0.017700752,0.016130183,-0.01503715,0.01713832,-0.0069296113,0.019345608,0.004555185,-0.009174041,-0.052762676,-0.008855682,0.008404674,0.005550056,0.019112144,0.01217192,0.025001783,-0.012798026,-0.030795913,-0.003897243,0.018528486,-0.013731879,-0.007985502,0.022200225,0.05598871,-0.03981608,-0.013880447,-0.035825983,-0.013424132,0.026636025,-0.011450307,-0.0076883663,0.018751336,-0.02899188,-0.006982671,-0.0035709252,0.012023353,0.026126651,0.0059904526,0.011301739,-0.03315177,-0.017976664,-0.010824202,-0.020258235,-0.030880809,-0.0062026917,0.0026277872,-0.037226763,-0.011057665,-0.0029235955,-0.013753103,0.009365057,0.030201644,0.028864536,0.010447477,-0.025235245,0.019748861,0.028270267,-0.0022868777,0.0056933174,-0.012065801,0.011662547,0.010585432,0.0046108975,0.029416358,-0.021680238,-0.0074071493,0.00054684764,0.019006023,-0.019112144,-0.048050962,-0.024959335,-0.009407504,0.001534755,0.00092854665,0.00608596,-0.02763355,-0.02682704,0.003669086,0.0027325803,-0.032515053,0.009418116,-0.022242673,0.0054598544,-0.0069189994,-0.018740725,-0.027336415,-0.019271323,-0.02006722,-0.020300683,0.022539807,-0.026657248,0.021818195,0.024619753,0.017966053,-0.0004569776,0.0027073768,0.0062928936,-0.024004258,0.019483563,-0.027569877,-0.013349848,0.02525647,0.010357275,0.03552885,0.03877611,0.02769722,0.0146020595,-0.028800866,-0.0012933329,0.017499125,0.0037088806,-0.009386281,-0.004199684,0.020810058,-0.0069402233,-0.015068986,-0.01930316,-0.0350407,0.009964632,0.0068977755,-0.001963213,0.06384157,-0.00278564,-0.0059586167,0.034106847,0.015833048,0.012702518,0.02379202,0.0047117113,0.019536622,-0.014665731,-0.037608795,-0.020396192,0.015748153,0.023134077,-0.0038123473,0.0049557863,-0.0029262486,-0.026529904,0.042108264,-0.035061922,-0.046140812,-0.01758402,-0.00024904948,-0.0045286547,0.048135858,0.017318722,-0.00079589715,0.011779278,-0.00534047,-0.0031942006,0.010733999,0.03368237,0.02532014,0.00037937766,-0.02682704,-0.02493811,0.0177432,0.04229928,-0.01297843,0.02428017,-0.007900606,0.033003204,0.019621518,0.014177581,0.014039625,0.0017111789,-0.0054306714,-0.029968182,-0.021733299,0.020130891,-0.024810767,-0.03461622,-0.012161309,-0.009805453,-0.0000044976478,0.026381338,0.04363639,-0.025553605,-0.018549709,0.037905928,-0.004101523,-0.0076140827,-0.011874786,0.0015493465,0.029204119,0.040537696,0.035019476,0.015493465,-0.012224981,-0.04282988,0.036526375,0.015705705,0.012469055]);
INSERT INTO entities (id, name, description, description_vec) VALUES (23, 'Tesla Energy', 'Tesla Energy is the rebranded name of SolarCity after it was acquired by Tesla in 2016.', [-0.01611518,-0.08555997,-0.0028502685,0.05739994,0.008322368,0.06981859,-0.01671742,0.026291,0.013643908,-0.022822915,-0.0029151652,-0.020497013,0.026249466,-0.005944549,0.030776668,0.029883688,0.011016885,-0.009521661,-0.022075303,-0.038439687,0.040101044,-0.03524157,0.056278523,0.011037651,-0.025584923,0.00906998,-0.039124995,0.016738188,-0.013623141,0.009651455,0.002228557,-0.026623271,-0.034161687,0.03042363,-0.014651107,0.059227437,0.012190219,-0.02168073,-0.005409799,0.016634354,-0.037546705,-0.0056953453,-0.050712973,0.04406754,-0.00031312718,-0.0122421365,-0.03185655,-0.028180797,0.034867764,-0.016478602,-0.0036523931,-0.075259544,-0.01820226,-0.030340562,-0.071895294,-0.028492302,0.0022623031,0.056195457,-0.022366041,0.027453952,-0.021286158,0.0480548,0.005147616,0.013218185,0.039831072,-0.02519035,0.015004145,0.065582134,-0.0039509186,0.013726976,-0.015689455,0.0061366437,-0.010149863,0.009485319,0.062342484,0.012989748,0.02271908,0.028928407,0.0060743424,-0.019406745,-0.005150212,-0.0023479671,-0.030444397,-0.0073047862,-0.018098425,-0.013529689,0.021514595,-0.03827355,-0.0006447499,-0.016167097,-0.012148685,-0.007574757,-0.028596135,-0.014993762,-0.01947943,0.0414509,-0.016997775,-0.025688758,0.01335317,0.024401205,0.014557655,0.011577593,0.004984076,-0.012782078,0.023736661,-0.02519035,-0.005960124,-0.023362856,0.018098425,0.008275643,0.002492038,-0.01689394,0.06309009,0.012657477,-0.019645566,-0.03366328,-0.021701498,0.0045401817,-0.046310373,-0.010570395,0.014048864,0.019863619,-0.0025179966,0.0306313,-0.0013758127,-0.007351512,0.0058095637,-0.028160028,-0.05391109,-0.016052878,-0.008587147,-0.001184367,-0.04481515,-0.0069984733,0.011878714,-0.099515386,-0.040516384,-0.0370483,0.020424329,-0.016021727,0.00972414,0.013893112,-0.00072814233,0.0006421541,-0.025688758,-0.029509883,0.04122246,-0.04323686,0.0012784674,-0.02519035,0.011826796,-0.046933383,0.0003653691,0.023051351,0.037899744,-0.045355093,0.0011382903,0.017683087,-0.008176999,-0.03966494,0.00052144594,0.020943502,-0.013955412,0.015751757,-0.0038860217,-0.0017418307,0.009620305,0.008576764,-0.048096333,-0.042343877,-0.027890058,0.032541864,0.035573844,-0.010217356,-0.029136077,0.011079186,0.004589503,0.048553206,-0.0030008291,-0.015419485,-0.010030453,-0.025937961,-0.016842023,0.013706209,-0.045521226,-0.062384017,-0.040371016,0.043486062,-0.0138204275,-0.032791067,-0.01692509,0.021763798,0.0072632525,-0.0047296803,-0.026934776,0.030299028,0.023944331,0.022594478,-0.01290668,-0.015284499,0.015014529,-0.019500198,0.028824573,0.061761007,-0.036508355,-0.01810881,-0.009802016,-0.020891584,-0.007367087,-0.009204965,0.029634485,0.0032240741,-0.06549907,-0.005539593,0.00567977,-0.0056018936,-0.012605559,-0.01790114,-0.0034343398,0.049176216,0.031337377,0.03385018,-0.019271761,0.0044000046,-0.019250993,-0.0054409495,-0.0018962851,-0.0011915057,0.020372411,-0.015741372,-0.058396757,-0.0240897,-0.00689983,-0.042510014,-0.027993893,-0.042572316,0.042032372,-0.0066817766,0.02423507,-0.02340439,-0.010767681,0.012865146,0.05349575,-0.009729331,0.03895886,-0.009911043,0.023757428,0.040184114,-0.007886262,-0.010528861,0.0025192946,0.055863183,0.00035660804,0.028679203,0.027620088,0.0040599452,0.03110894,0.033621747,-0.0021130405,-0.022947516,-0.034680862,0.02429737,-0.02450504,-0.00954762,-0.052208196,0.002349265,0.039914142,-0.019230226,-0.0013115648,0.02801466,-0.018908339,0.004716701,-0.01837878,0.0007910923,-0.029239912,0.004618058,0.030589767,0.0129274465,0.01689394,0.08223725,0.040848657,-0.009921426,-0.0028892066,-0.00010488949,-0.04743179,-0.0072528687,-0.01700816,0.012512107,0.025896428,-0.03702753,-0.012127918,0.004150801,-0.010025261,-0.034847,0.018991405,-0.012096767,0.042530783,-0.019915536,-0.021120021,-0.018846037,0.023383623,-0.028346932,-0.075010344,-0.02123424,-0.015461019,0.0436522,-0.041803937,-0.0029359323,0.024152001,0.02141076,-0.010632696,-0.040433317,0.034909297,-0.081323504,-0.0065260245,0.024359671,-0.024193535,-0.0040080277,0.046102703,-0.024255836,-0.020227041,-0.040973257,-0.035366174,0.046310373,-0.034743164,0.015564854,-0.016572053,0.008966145,0.026602505,0.013550457,0.028616903,-0.006863488,0.03544924,-0.0743458,0.027204748,0.010362725,-0.0025971709,-0.04116016,-0.012148685,-0.026540205,-0.009786441,-0.04184547,-0.008722133,0.018721435,-0.023072118,-0.020123206,-0.027225515,-0.029177612,-0.03220959,0.023965098,0.012273287,-0.009802016,0.06932019,-0.028513068,-0.027786223,0.020227041,-0.03385018,-0.025273418,0.06907099,0.007574757,0.009179006,-0.0015938659,0.044150606,0.039415736,-0.004542778,-0.0033512719,-0.06063959,0.06794957,-0.018981023,0.011920248,-0.006520833,-0.044524413,-0.0011519186,0.0480548,-0.029406048,-0.02161843,0.059559707,-0.028160028,-0.027620088,-0.014059247,0.0129274465,-0.0019352232,-0.051751323,-0.0028502685,-0.008810393,0.022594478,0.016707039,0.006619476,-0.016613586,-0.027682388,-0.018711051,-0.057441477,-0.009163431,-0.007517648,-0.00776166,0.009848742,0.006593517,-0.0036497973,0.0027256666,0.016343616,0.026041796,0.017797304,0.030589767,-0.055240177,-0.0052592386,0.012688627,0.027578553,-0.060473453,-0.014287684,-0.027474718,0.04942542,-0.009215348,0.027786223,0.020465862,-0.015191048,-0.021576896,0.002551743,0.018420314,-0.023549758,0.021130405,0.012429039,-0.03385018,-0.008592339,-0.029655252,0.025647225,-0.040952493,0.019957071,0.0012226561,0.00036407117,-0.010456176,0.04427521,0.040973257,0.018171111,-0.03883426,0.050546836,-0.020912351,0.0107988315,-0.002532274,-0.031773485,-0.014246151,-0.014090398,0.010092754,0.023300555,-0.010611928,-0.033081803,-0.06383771,0.017672703,-0.013228568,-0.04207391,-0.010425026,-0.030755902,0.03104664,-0.0130312815,-0.0036705642,-0.013363553,0.03144121,0.0042156978,-0.016655121,0.02822233,-0.013052049,0.015772523,-0.007616291,0.059933513,-0.018399548,0.014391519,-0.024546575,0.014038481,-0.00069569395,0.006349505,0.013062432,-0.008405437,0.05939357,0.018700669,-0.037692074,0.00407552,0.028554602,0.029634485,0.04205314,0.026997078,-0.042447712,-0.030527465,0.010767681,-0.036093015,0.052208196,-0.035947647,-0.03366328,-0.025896428,-0.01992592,-0.047805596,0.0035407706,0.038938094,-0.0012823612,0.036155317,-0.0058978233,-0.007538415,-0.006287204,-0.0072424854,-0.04219851,-0.02319672,-0.008929803,0.018627984,0.005298177,0.02429737,0.041263994,-0.016634354,0.034473192,-0.0036082633,0.009879892,0.0023778195,-0.019406745,0.011037651,0.018358013,0.028554602,0.003021596,0.002392097,0.021431526,-0.037733607,0.006022425,0.03785821,0.007813578,0.010653462,-0.010596354,0.032998737,-0.00010229362,0.020631997,-0.0151598975,-0.0013823023,0.022656778,-0.047514856,0.004804961,0.019842852,-0.010663846,-0.016748572,-0.049716156,-0.022116836,0.031171242,-0.029281447,0.0080523975,-0.011421841,-0.010684613,0.031898085,0.0005678472,0.043901403,-0.016987393,0.002123424,0.04930082,-0.026291,-0.033725582,-0.008597531,0.03083897,0.040038742,0.022573711,0.05287274,-0.006354697,-0.019604033,-0.027350117,0.0031903277,-0.028596135,0.025771827,0.039083462,-0.012802845,0.021971468,0.008618298,-0.010513285,0.032791067,0.049508486,0.012076001,0.04439981,-0.02911531,0.0110065015,0.00027175545,-0.0006084077,0.016104795,-0.004143013,0.011203787,0.021743031,0.012730161,0.013093583,0.014298067,0.0035277912,-0.0045246063,-0.013789277,0.01600096,0.010461368,-0.017735004,0.052831206,-0.03848122,0.0052955807,0.031025873,-0.02313442,0.0024985278,0.0039587063,-0.027578553,0.0012525087,0.0115568265,0.013436238,0.0077512763,-0.038501985,-0.020206274,-0.004122246,0.012491341,-0.015928276,-0.00306313,0.021992235,-0.03702753,-0.0057887966,0.02753702,0.0064481483,0.03339331,-0.0007307382,0.017153528,-0.016125562,0.0028450766,0.061594874,0.022075303,0.032251123,0.028263863,-0.0076474417,-0.0012966385,0.0028969941,-0.0021987043,-0.019790934,-0.019977838,0.012387506,0.017433882,0.0107988315,0.005944549,-0.016239781,-0.0011752815,0.010144671,0.015419485,0.017350815,0.030797437,0.003512216,-0.078582264,-0.01659282,0.04184547,0.06063959,0.002181831,0.011255705,-0.014287684,-0.036799096,0.041201696,0.015627155,0.013695825,0.002224663,-0.03889656,-0.025522621,-0.015461019,0.010092754,-0.011515292,0.009620305,0.017381964,-0.00016143084,-0.0065467916,0.04228158,-0.0024881442,-0.00477381,-0.0015575237,0.029385282,-0.043610666,-0.015575238,0.013882728,-0.039519567,0.0013232462,-0.007294403,0.0262287,-0.029136077,-0.045272022,0.00021772884,-0.034535494,0.0057109203,0.010684613,-0.02058008,0.0055655516,-0.039831072,0.002938528,-0.023051351,0.023798963,-0.011847564,-0.041928537,0.005861481,-0.024110468,0.008841543,0.022615245,-0.04344453,-0.022698313,-0.01376851,-0.018191878,0.01555447,-0.0077564684,0.000016741353,0.0019845448,0.009973343,0.030174427,-0.05141905,0.025273418,0.00050489727,-0.008618298,-0.0003692629,0.018877188,0.024255836,0.016499368,-0.038875792,-0.0019572882,0.004794577,0.00212602,-0.018918721,0.011525676,-0.004960713,-0.0074397717,-0.045895033,-0.0030112125,-0.012740544,0.081323504,0.033144105,0.0074761137,0.016561668,0.047722526,-0.040931724,0.022905983,-0.033517912,-0.032583397,-0.0546587,-0.024152001,-0.013270102,-0.021535361,0.0370483,-0.022677546,0.02863767,-0.0034005935,-0.01920946,-0.057026137,-0.009173815,0.005269622,0.00006554579,-0.039000396,-0.014640723,-0.021556128,-0.0063598887,-0.033351775,0.00008574493,0.031898085,-0.021327691,0.035885345,-0.003961302,0.016426684,0.07700397,-0.023321321,-0.046518043,0.045728896,0.003473278,0.013986563,-0.01582444,-0.021493828,0.019365212,0.00278018,-0.0017431286,-0.0003877585,0.016094413,-0.005856289,-0.013311636,-0.039187297,0.016883558,-0.021151172,0.010212164,0.004002836,-0.018804504,-0.022345275,-0.003532983,-0.007470922,-0.0010733934,-0.018160727,-0.019666333,-0.011961782,0.019531347,-0.019759784,0.03758824,0.00689983,0.0174235,-0.04826247,0.002636109,0.011577593,-0.009433402,-0.03607225,0.0051761707,0.027682388,0.008270451,0.0044181757,-0.05486637,0.022677546,0.008389861,0.046019636,0.0185553,0.021255007,-0.0078031938,-0.0057213036,-0.044233672,0.016353998,0.051045243,-0.027453952,0.03586458,-0.000011965351,0.01941713,-0.0018132172,0.035926882,-0.046974916,-0.004636229,-0.031981155,0.03343484,-0.0006369623,-0.0025971709,-0.025065748,-0.030132892,-0.02753702,-0.024172768,0.026311768,-0.011276471,0.030132892,0.008680599,-0.007678592,0.023695128,0.016478602,-0.03902116,0.018243795,0.0018261966,0.004039178,0.036985997,-0.008379478,0.028596135,0.03443166,-0.01070538,0.0009682606,-0.0050956984,0.0005328029,0.010871516,-0.006416998,0.0105236685,-0.03036133,-0.014983378,0.014827626,0.00800048,0.025709525,-0.030278262,0.021597663,-0.030340562,0.028346932,-0.0020766982,-0.016073644,0.011889098,-0.012387506,-0.03578151,0.025024215,-0.00600685,-0.052706603,0.058604427,0.024982681,0.001225901,0.019385979,-0.004701126,-0.052083593,-0.012491341,0.022407575,-0.032915667,0.012366738,0.012750927,0.009371101,0.028180797,0.040371016,-0.043693732,-0.030776668,-0.01710161,0.0017690874,0.016021727,-0.00057855516,0.027661622,0.011110336,0.008592339,0.015419485,-0.008218533,0.027412418,-0.023051351,0.010565203,-0.025501855,-0.010108329,0.0073047862,-0.0046855505,0.000040783598,0.02078775,0.0057264958,-0.024048166,0.026415603,0.03434859,-0.040973257,-0.024401205,-0.011961782,-0.018929105,0.06778343,0.02340439,-0.033497144,0.033351775,-0.06267475,-0.021473061,-0.024899613,0.017288513,0.012304437,-0.044441342,-0.017371582,-0.038169716,0.03978954,0.021514595,-0.0022013,0.015045679,0.0072372938,-0.019739017,0.03883426,-0.016634354,0.025107283,-0.0017846626,-0.015751757,-0.013498539,-0.01941713,-0.022532176,-0.0072995946,0.0038860217,-0.014152699,-0.0024531,0.02340439,-0.014516121,-0.018762968,0.0084988875,-0.028097728,0.041471664,-0.0016003556,0.009251691,0.033497144,-0.016758956,-0.0062716287,-0.09187313,-0.02010244,-0.0031098558,-0.02161843,-0.015917892,0.012439423,0.0032318616,-0.0093088,0.0134777725,-0.01445382,0.042302344,-0.0044649015,0.009599538,-0.008166616,0.031503513,-0.013280486,0.033289474,-0.008893461,0.0020818901,0.039955676,0.05968431,-0.02519035,-0.015274116,-0.0069517475,0.002816522,-0.0131455,0.003857467,-0.01692509,-0.034930065,0.009796824,-0.018669518,-0.017381964,0.018918721,-0.04282152,-0.024567341,-0.034660093,0.0041274377,0.027703155,-0.008509272,0.022324506,-0.0046544,-0.024982681,0.03241726,0.015585621,0.004989268,-0.03621762,0.002472569,-0.004532394,-0.04226081,-0.04543816,-0.008898652,0.0033642512,-0.00015980842,0.015772523,0.010217356,0.02512805,-0.0112453215,0.031171242,-0.025107283,0.0009001189,-0.0109026665,0.070192404,0.024214303,0.0056745782,0.022677546,0.024795778,-0.03895886,-0.020528162,-0.023736661,0.025418788,-0.04826247,0.0005396171,0.04124323,-0.03559461,-0.022490643,0.038543522,-0.028056195,-0.008727324,0.007169801,-0.009807208,-0.03765054,-0.0025997667,0.0010013579,-0.000250664,0.018129576,0.015409102,0.0044623055,0.024629641,-0.0057264958,-0.0067492696,-0.011515292,0.012854762,-0.0034473191,0.018638367,0.031192008,-0.008483313,-0.052914273,0.012854762,0.0058510974,-0.0062560537,0.009874701,0.044939753,-0.055115573,0.009869508,0.017361198,0.037069064,-0.003208499,0.039062694,-0.004085904,0.016312465,-0.009210157,-0.0023946927,0.010430218,0.014879543,0.021597663,-0.0196871,0.030776668,-0.020746216,-0.028367698,0.020278959,0.048013266,-0.011079186,-0.0018313883,-0.01603211,0.02141076,0.009937001,-0.015679073,0.0069154054,-0.0436522,-0.012076001,0.009703373,-0.0031539856,0.013093583,-0.0061989445,0.024567341,-0.0061158766,0.025169583,0.03214729,-0.0061522187,-0.0026711533,-0.036985997,0.01246019,0.051045243,0.0050489726,0.0149210775,-0.006577942,0.009661839,0.023923565,-0.024318136,-0.016603203,0.008421011,0.039540336,-0.016582437,-0.022594478,0.01002007,-0.010487326,-0.014142316,-0.01724698,-0.0011266088,0.013249335,-0.012844379,-0.042779986,0.012418656,0.03910423,-0.01531565,-0.023072118,0.013405087,-0.013446622,0.00093646115,-0.037733607,-0.011193404,-0.030174427,0.0015951638,0.046019636,0.012148685,0.028450767,-0.016748572,0.0392496,0.014069631,0.0392496,0.02319672,0.033476375,-0.013041666,0.02141076,0.0072217183,0.008955762,0.009059597,0.011577593,-0.012595175,0.03262493,-0.008125083,0.009090747,0.03385018,0.026062563,-0.009132281,-0.021846866,-0.028160028,-0.0072995946,-0.002821714,-0.010305615,-0.013187034,-0.023695128,0.016997775,-0.018212644,-0.0072372938,-0.0040054317,-0.009667031,0.042364646,0.006676585,0.0546587,-0.0052826013,-0.027723923,0.013758127,-0.011473758,0.01017063,-0.020029755,0.0098383585,-0.019427512,0.012408272,-0.024068933,-0.042572316,0.014080014,0.0024362267,0.024068933,-0.014651107,0.016883558,0.003449915,-0.01680049,-0.0114529915,-0.023528991,-0.02141076,-0.020185508,0.016748572,0.02492038,-0.009184198,0.0047634267,-0.0018248986,0.023736661,-0.003473278,-0.00273605,-0.012553642,-0.011224554,0.03193962,0.029883688,0.005903015,-0.029509883,-0.026124865,0.021213474,0.027204748,-0.004885433,-0.028450767,-0.0015056062,-0.018752586,-0.013654292,-0.0059912745,-0.04101479,-0.035553075,-0.020413944,0.0035797087,-0.0051735747,0.0039119804,-0.022843681,-0.022490643,0.022075303,0.0070919245,-0.00069828983,0.010933816,0.029717553,-0.008384669,0.00011762549,0.005840714,0.010367916,0.016966626,-0.008171808,-0.03422399,-0.008561188,-0.041201696,0.036653724,-0.014256534,0.007932988,0.0129274465,-0.011369923,-0.022262206,0.0007190568,0.0196871,0.007958946,0.0018352821,0.023549758,0.005394224,0.005326731,-0.0035900923,0.031524282,0.001756108,0.001449795,0.017818071,-0.0113491565,-0.0006801187,0.0032785875,-0.011857947,-0.012844379,-0.015128748,-0.002331094,-0.002370032,-0.0010935115,-0.035428472,-0.026145631,0.0036446056,0.015128748,-0.0042494438,0.007387854,0.0060951095,-0.016987393,0.023549758,0.021151172,-0.0022038962,0.0023648401,-0.032105755,-0.004345491,0.000337139,-0.04344453,-0.013519306,-0.011941016,0.01965595,0.03598918,-0.00048542823,0.019354828,-0.035324637,-0.0013797064,-0.0023570526,-0.010580778,-0.009667031,0.030984338,-0.021192707,0.029634485,-0.026415603,0.023113653,-0.025854893,0.012896297,-0.021255007,0.026291,0.06221788,0.018534532,-0.0037795908,0.0037614198,0.00906998,-0.04469055,0.010399067,0.0013329807,0.040287945,-0.010829981,-0.016634354,0.033746347,0.02361206,-0.0033123337,-0.0027931593,0.025148816,0.0072424854,-0.01287553,-0.010975351,0.015741372,-0.013986563,0.019583264,0.011255705,-0.007901837,0.029011475,-0.031752717,-0.031025873,0.006489682,0.022407575,-0.032874133,0.005903015,-0.0056953453,-0.034722395,0.012512107,-0.02034126,-0.0060016583,-0.020393178,-0.015388334,0.007958946,0.0038081454,-0.0073463204,0.004431155,0.011307622,-0.016842023,0.03434859,0.0019092645,0.01944828,0.002389501,0.026415603,0.032894902,0.04838707,-0.015917892,0.021805333,-0.0393742,0.0015614176,-0.0013589395,-0.0067492696,-0.0633393,0.010097945,0.016478602,-0.03455626,-0.046310373,0.024110468,-0.009822783,-0.014100782,0.0064637233,0.0010740424,-0.028388467,0.023487458,-0.0185553,0.03702753,0.011754112,-0.019604033,-0.045811966,0.003841892,-0.008254875,0.011089569,0.019334061,0.006147027,-0.0134777725,-0.034660093,-0.030049825,0.016707039,0.022428341,-0.016540902,-0.013955412,0.022345275,0.06292396,-0.047930196,-0.03738057,-0.03337254,-0.0062352866,0.032915667,-0.00075475004,0.0010779363,0.035158504,-0.024359671,-0.017226212,0.03318564,0.019874003,-0.006520833,0.0071230754,0.022843681,-0.007907029,0.012387506,-0.022054536,-0.0078447275,-0.03806588,-0.00035660804,-0.019728635,-0.047514856,-0.028160028,0.018814886,-0.034577027,0.009677414,0.04606117,-0.0010870218,-0.006619476,-0.0032422452,0.018607216,0.009796824,-0.002181831,0.020600848,-0.008753283,-0.0050489726,0.026124865,0.023508225,0.002266197,-0.019905154,0.001142184,-0.0080523975,-0.0006619476,-0.035636142,-0.049674623,-0.022013003,-0.013810044,0.028139262,-0.012782078,0.012740544,-0.023965098,-0.015564854,-0.0007067264,0.005549976,-0.04406754,0.022739846,-0.036923695,0.0065260245,-0.005007439,-0.02061123,-0.020476246,-0.015596004,-0.011432224,-0.022490643,0.028803805,-0.022802148,0.01879412,0.015689455,0.023944331,0.012823612,-0.02230374,0.008514463,-0.012792462,0.0078031938,-0.04356913,0.008280834,-0.0044649015,-0.0076474417,0.03158658,0.050006896,0.018129576,0.00081185927,-0.016021727,-0.015170281,-0.0076682083,-0.0025179966,-0.03366328,-0.006905022,0.016499368,-0.036591426,-0.013207802,-0.02120309,-0.045936566,0.030174427,-0.016779723,-0.011110336,0.038169716,-0.008587147,-0.004740064,0.024338905,-0.00083652005,0.02670634,0.044732083,-0.012896297,0.028554602,-0.009407443,-0.024006633,-0.0013550456,0.016084028,0.036653724,0.015980193,0.02575106,0.0020896776,-0.04047485,0.042738453,-0.0007807088,-0.052623536,-0.00432732,-0.0050230143,-0.0053786486,0.024048166,0.0330195,0.005612277,-0.008571573,-0.013467388,0.0065052575,0.007455347,0.021971468,0.019396363,-0.0083275605,-0.010554819,-0.018472232,-0.019157542,0.021036955,-0.011504909,0.027910825,0.0033772306,0.035615377,0.025584923,-0.0116918115,0.032687232,-0.008114698,0.008825968,-0.050505303,-0.022179138,-0.001715872,-0.02313442,-0.028243097,-0.026187167,0.008306793,0.025231885,0.035137735,0.027723923,-0.03875119,-0.018212644,0.018607216,-0.0017444266,-0.033767115,-0.0112453215,0.0010759893,0.051875923,0.032687232,0.031545047,0.0067388862,0.011878714,-0.03978954,0.045355093,0.011889098,0.022054536]);
INSERT INTO entities (id, name, description, description_vec) VALUES (24, 'Hyperloop', 'Hyperloop is a high-speed vactrain transportation system proposed by Elon Musk in 2013.', [-0.046083458,-0.048870765,-0.03528265,0.017037408,-0.017339366,0.028895073,-0.0327973,0.033494126,0.05737205,0.037907362,-0.03697826,0.004842944,-0.03184497,-0.030497773,-0.015318569,-0.012751925,-0.05439892,-0.032727618,0.0043871035,-0.035770427,-0.0028265025,0.029313168,0.019882783,0.028082108,-0.007827684,0.006614045,0.002960061,0.0337264,-0.030358408,-0.00032754475,0.05291236,-0.02692073,0.016282512,0.009221337,-0.00047979408,0.011184066,-0.018605268,0.07827684,0.017025795,0.05337691,-0.006532748,-0.030265497,0.013797165,0.03602593,0.037791222,0.024528293,-0.050961245,-0.04018366,0.02617745,0.052401353,0.0035451048,-0.056861043,-0.016305739,0.030033221,-0.025085753,-0.030637138,0.04313356,-0.024760569,-0.03289021,0.018709792,0.03997461,-0.018256854,-0.0008623228,0.0096162055,0.03997461,0.019638894,-0.04750034,-0.0038906145,-0.0008848245,0.025619987,-0.008181904,0.0073340987,-0.0051594195,0.019627279,0.019604051,-0.018465903,-0.04757002,-0.0021979068,0.025016071,-0.0045032413,-0.005716881,-0.038046725,0.009302634,-0.005684943,-0.01544632,-0.0060101287,0.01710709,-0.0011729912,-0.012717083,-0.02852343,0.008193518,0.01350682,0.0151327485,0.010551115,0.0011200034,-0.020126672,0.013193248,-0.022600405,0.01778069,0.067266986,-0.03765186,0.011985416,-0.01095179,0.0011512154,0.018953681,-0.007938015,-0.024505066,0.017850371,-0.0044800136,-0.016990952,0.0048139095,-0.017409049,-0.0029411884,-0.010045915,0.01341391,-0.05384146,-0.043574885,-0.08636003,-0.017861987,0.001169362,-0.021462256,-0.006451452,-0.016665766,-0.02076543,-0.0042709657,-0.037791222,-0.014261715,0.03337799,-0.000589762,0.021868737,-0.0067127617,0.022298448,0.041461177,-0.016781904,0.027060095,-0.03535233,-0.03602593,-0.036676303,0.030497773,0.01464497,-0.035212964,-0.038046725,0.03091587,0.017327752,0.031984337,0.018314922,0.051704526,0.000407208,-0.0032896018,-0.020881567,-0.04429494,0.015516004,0.011364079,0.05988062,-0.020916408,-0.017083863,0.018454289,0.07237705,-0.026897503,-0.009691695,-0.03934747,0.008687103,0.011950574,0.025318028,0.02759433,0.037187308,-0.014064281,-0.015306955,-0.03433032,-0.07414234,-0.014900473,-0.018593654,-0.01944146,0.0321237,0.022762999,0.010934369,-0.021009319,-0.0779052,-0.0064108036,0.008199325,0.028500203,0.028871844,0.023726942,0.0022850102,-0.060809724,0.004558407,-0.02645618,0.004082242,-0.0068405136,-0.014749494,-0.046037003,0.037698314,-0.02387792,0.002485348,-0.027849833,-0.0016099595,0.00675341,-0.006097232,0.05175098,-0.0902158,-0.0151327485,0.05839406,-0.011311817,-0.039393924,0.0040677246,0.0050868336,0.046362188,-0.020196354,0.038186092,0.001858204,0.03344767,0.043389063,0.0068985824,0.050078597,-0.0043609724,-0.02854666,-0.029382851,0.021764213,0.060066443,0.0027989198,0.028175017,0.01886077,-0.021822283,0.025178663,0.0037309253,0.02615422,-0.041879274,-0.036606617,0.021636462,0.010133019,0.008141256,-0.031612694,0.0023111412,-0.06057745,-0.003225726,0.0053045917,0.020358948,-0.02994031,0.00015769328,-0.039370697,0.003408643,-0.011741526,-0.004691965,0.019000135,0.021648075,-0.002431634,-0.036281433,-0.032681163,0.039881703,-0.0033621879,0.026223904,0.018605268,-0.027129779,0.012659014,0.004273869,0.015759893,-0.025039298,0.004526469,0.018791087,-0.061553005,0.0031328157,0.047988117,0.0035712358,0.046315733,-0.008205132,0.016236058,0.0017652938,-0.047662932,-0.012960972,-0.0012847738,0.004593248,-0.012078326,0.009238758,-0.053980827,-0.0077696154,0.029545443,0.004834234,0.0046687373,0.013193248,0.05012505,0.022623634,-0.0017725524,-0.03590979,0.022507496,-0.011004052,0.030474545,0.019058205,0.068939365,-0.004703579,-0.02615422,0.014168805,-0.0072005405,-0.019325322,0.026061311,0.047268063,0.017025795,0.03042809,0.00990655,0.03858096,0.016410263,0.043737475,0.027640784,0.009349089,0.02110223,-0.020498313,0.083805,-0.019755032,0.017432276,0.0188027,-0.02332046,-0.064340316,0.022449426,-0.0011308914,-0.032657936,-0.016177988,-0.05565321,-0.035236195,-0.020417016,-0.027547874,-0.027362054,0.0012934841,-0.023808239,0.0047877785,-0.024203107,0.021531938,-0.0067940583,0.024203107,0.027524646,-0.064200945,0.0069914926,-0.016328968,-0.03175206,-0.0026392303,-0.11827468,0.012879676,0.0028627955,-0.040392708,0.013204862,-0.019116273,-0.05811533,-0.008530318,0.013437138,-0.013123565,0.009128427,-0.026688455,0.066570155,-0.03270439,-0.02778015,0.010220122,0.005281364,-0.005417826,-0.04863849,0.040113978,0.021322891,-0.026479406,0.011474409,-0.012206078,0.0140294405,0.013994599,-0.0049329507,-0.010086563,0.0065792035,0.010707901,0.060159355,-0.021032546,-0.00839676,-0.02854666,0.029243484,-0.045270495,-0.03460905,0.019116273,0.047175154,0.033215396,0.014343012,0.030172586,-0.0021688724,0.040787578,-0.0036031737,-0.023099799,0.030939097,0.058719244,0.005443957,-0.01483079,-0.0067127617,-0.025736125,0.019545984,0.051239975,-0.03061391,-0.0110447,-0.040462393,0.03184497,-0.023076572,-0.0178736,0.011323431,0.012345443,0.02427279,0.005542674,0.034771644,0.0012622721,0.025155436,-0.014041054,-0.059369616,-0.039742336,0.00411418,0.021369345,-0.03138042,0.00912262,0.0075083054,0.0010655639,0.011178258,0.06833545,-0.010069143,0.0127867665,-0.026061311,0.039115194,0.045944095,0.004314517,0.0033070224,0.015097908,0.041391492,0.0021049967,0.052261986,-0.057743687,0.04076435,0.04092694,0.015608913,0.043737475,-0.0032692775,0.032681163,-0.005432343,-0.018570427,-0.026665227,0.023924377,0.015829574,-0.009813639,-0.038999055,-0.018024579,0.0059636733,-0.002379372,0.018640108,0.029498989,0.004584538,-0.00090369687,-0.0008289332,-0.040880486,-0.010678866,-0.036908578,0.041554086,-0.0038499665,-0.022844296,0.025921945,0.02882539,0.01692127,-0.02550385,0.0049968264,-0.01516759,-0.009662661,-0.029150575,-0.02701364,0.014110737,-0.020173127,-0.010405942,0.0026885888,-0.024203107,0.04891722,0.0020846727,0.021241594,0.012496422,-0.02987063,0.0031850778,0.002270493,-0.01611992,0.025410939,-0.00324605,0.053005267,0.029057665,-0.026316814,0.005104254,0.025062526,0.006805672,-0.0032489535,-0.0036873736,-0.012821607,-0.010423363,0.04199541,0.0151327485,-0.018895611,-0.026386496,-0.0669418,-0.026107766,0.016630925,0.019278867,0.0049561784,-0.009854288,-0.023274004,-0.021787442,-0.072655775,-0.02617745,0.023692101,-0.03820932,0.0027074614,-0.045177583,0.02568967,0.008501283,0.01498177,0.032379203,-0.0070727887,0.0030253883,0.00267262,0.025991628,-0.03765186,-0.0025492236,-0.0060043214,0.0023880824,-0.0224262,-0.024667658,0.044805944,0.011724106,0.00018963117,-0.00095015194,0.007217961,0.008379338,-0.014854018,0.009912357,-0.02009183,0.008048346,-0.027362054,-0.03885969,0.00035875678,-0.015910871,-0.044945307,-0.006706955,0.0013965564,-0.01658447,0.0020367657,-0.027896287,-0.025619987,-0.019987306,-0.017792303,-0.016270898,-0.00972073,0.04273869,0.02987063,0.00772316,-0.013762323,0.027129779,0.021218367,-0.022972047,0.0008216746,0.018140716,0.02042863,0.032820527,0.029429305,-0.024783796,0.026386496,0.0023692101,0.00074037816,0.016712222,0.036351115,0.0061088456,0.027408509,0.001221624,0.0054468606,0.03927779,0.04415557,0.03205402,-0.022042945,-0.018605268,-0.012868063,-0.017711006,-0.013355841,-0.03704794,0.040903714,-0.019929238,0.038929373,0.008048346,-0.013773937,-0.015237273,0.006039163,0.0045235655,-0.0062424038,0.0037657665,0.0023692101,-0.024017286,-0.010214315,0.03495746,-0.027756922,0.020928022,-0.013262931,0.0678709,0.012775152,0.016549628,0.03639757,-0.04664092,-0.001612863,-0.0047906823,0.05565321,-0.03203079,0.03205402,-0.000113597234,-0.010365294,-0.014354626,-0.0056355842,-0.013901688,-0.047360975,0.02778015,0.0025608374,0.012217691,0.04854558,-0.014133964,-0.0053858883,-0.009238758,-0.011654423,-0.010545308,-0.024249561,0.036142066,-0.009221337,0.020591224,0.04854558,-0.011590547,0.0030602296,-0.011555706,-0.007223768,0.010731128,0.0012666273,0.0049823094,-0.0008354659,-0.02326239,-0.027710468,0.03971911,0.031914655,0.0069914926,0.011950574,-0.009953005,-0.028593114,0.04482917,-0.02289075,0.011474409,0.038371913,-0.019964078,-0.032193385,0.0023096895,-0.004163538,0.015016611,-0.030776503,0.042785145,-0.033052802,-0.014679811,0.012252533,0.012298987,-0.0028947333,0.008756787,0.029638354,0.01882593,0.0037454425,0.0018494936,0.0019162728,0.028500203,-0.0023735652,-0.014714653,0.008379338,-0.00089426065,-0.022193924,0.024110196,-0.008030925,0.017095476,0.049706955,0.07135503,-0.04341229,0.0008877279,-0.027710468,-0.029429305,-0.015469548,0.0045061447,0.03242566,-0.06977556,-0.01507468,0.0015620528,0.000097083896,-0.0052436194,-0.02645618,-0.0002834487,-0.02326239,0.018012965,0.017176773,-0.0019003039,-0.018779473,-0.0025956787,0.010649832,0.017606482,-0.0035160703,0.006927617,0.013483592,0.012647401,-0.004024173,-0.016073463,0.06067036,0.032657936,-0.00017266416,-0.017130317,0.033679947,-0.007967049,-0.026781365,-0.05546739,0.014377853,0.0042709657,-0.0048574614,-0.031171372,-0.016375422,0.01139892,-0.047059014,-0.0004395088,-0.008164484,-0.013053883,0.032402433,0.059090886,-0.026409725,-0.030799732,0.011677651,-0.010005267,0.0032489535,0.0102491565,-0.012624173,-0.029754492,-0.027547874,-0.038511276,-0.018082647,0.079763405,-0.024783796,0.0065850103,0.043830387,-0.013611344,-0.025410939,-0.023494666,0.014377853,0.025410939,-0.04301742,-0.01679352,-0.02024281,0.0006986411,-0.022251993,0.03744281,0.04520081,-0.014424308,0.028198246,0.018280081,0.06991492,0.030404862,0.013274545,0.014784335,-0.029266713,0.0071308576,0.015725052,0.041368265,-0.035189737,-0.00053677417,0.028662797,0.009372316,0.06615206,-0.018291695,-0.013704254,0.015376638,-0.008658069,0.02455152,0.014377853,-0.0029498988,-0.028384065,-0.004691965,0.021764213,0.0039341664,0.046106685,0.00024134875,-0.01919757,0.011335044,0.026316814,0.028453749,0.00029161462,0.037837677,0.004744227,0.0013080013,-0.034632277,-0.011863471,0.0063585415,-0.06150655,-0.03888292,-0.012159622,0.003710601,0.00975557,0.027408509,-0.0062017557,-0.0100284945,-0.021206753,0.004712289,-0.047848754,0.011985416,0.016166374,0.020010535,-0.01279838,-0.012031871,0.031984337,-0.002401148,0.020196354,0.03270439,-0.0033621879,0.032100473,0.033331532,-0.023204323,0.013332614,-0.022972047,-0.016874814,-0.009331668,0.03442323,-0.02350628,-0.01473788,0.006648886,0.0060681975,-0.030706821,-0.004128697,-0.06057745,0.002751013,-0.005908508,0.009953005,-0.0013174376,-0.048406214,0.026386496,0.0051739365,0.011671844,-0.001920628,-0.014157192,0.0060623903,-0.004430655,-0.02654909,0.028012425,-0.0052436194,0.0151327485,0.0036351115,-0.004819717,-0.040415935,-0.01811749,0.01716516,0.014180419,0.005844632,-0.014946928,0.023610804,0.02947576,0.034911007,0.01611992,-0.044945307,0.012310602,0.040508848,-0.007775422,-0.047616478,0.011294396,-0.0052436194,-0.046222825,0.025898717,-0.011102769,0.027338825,-0.021555167,0.0022559757,-0.03033518,-0.020312492,0.014377853,-0.007432816,0.05374855,0.015713437,0.00630628,0.02852343,0.04664092,0.012914518,0.02520189,0.046478327,-0.0020382174,-0.031078462,0.010417556,0.028895073,-0.00057161547,0.022391358,0.005240716,0.014296557,-0.0357472,0.018512357,0.009070358,0.031055234,-0.009180689,0.034748413,-0.0111608375,0.0129261315,-0.010992438,0.0034638084,-0.010156246,0.030404862,0.01602701,0.01483079,0.020138286,0.009865901,-0.03270439,-0.0024417962,0.011125997,-0.008652262,0.033424444,-0.028895073,-0.012287374,-0.0034434842,0.0032286295,0.07971695,0.0019743417,-0.015469548,0.008449021,0.04057853,0.023947604,-0.014586901,-0.0053016883,0.008925186,-0.014807563,-0.017246455,0.0045177583,-0.033285078,0.046199597,-0.043760702,-0.013425523,-0.058626335,-0.011439568,0.0009566847,0.020788657,-0.02341337,-0.014621742,-0.00526104,0.04143795,0.016085079,0.00077521947,-0.0041170833,0.030265497,-0.013611344,0.026990414,0.006346928,0.0510077,-0.0035509116,0.002270493,0.007862526,-0.02796597,-0.013135179,0.030033221,0.005943349,0.015063066,-0.03716408,-0.014784335,0.015864417,0.009772992,-0.007490885,-0.0065269414,-0.015423093,0.009883323,-0.0036612425,-0.015214045,-0.021775829,0.028639568,0.014842404,0.041461177,0.0033447673,-0.019023363,-0.019232411,-0.011166644,-0.03402836,0.01750196,0.018024579,-0.0011454085,-0.03621175,0.0007396523,0.0014865631,-0.039208103,0.02624713,0.02550385,-0.019174343,-0.00034169902,0.0072992574,0.036722757,0.03584011,-0.009471034,-0.0052842675,-0.022821067,0.0016665767,0.03839514,-0.007920595,0.0259684,-0.021113843,-0.010812424,-0.028802162,0.016433492,-0.01052208,-0.0006550895,-0.032750845,-0.012055098,-0.019000135,-0.004154828,-0.02464443,0.017002566,-0.0020962863,0.0000546664,0.007943822,0.02427279,0.029754492,0.0040154625,-0.020649292,0.012647401,-0.040601756,0.014703039,0.02322755,-0.017861987,-0.014784335,0.062064014,-0.028593114,-0.017571641,0.020846726,-0.041484404,0.02861634,-0.0012804187,-0.009378123,-0.015434707,0.009250372,0.0101388255,0.0034405808,0.047384202,-0.031589467,-0.0035044565,-0.010225928,0.011125997,0.0018393316,-0.037628632,0.053609185,0.010173667,-0.015248886,-0.008536125,-0.033145715,-0.023123026,0.032727618,-0.016096693,-0.038186092,0.023529507,0.025666442,0.018256854,0.02190358,0.0040532076,0.039742336,-0.048173938,0.017618097,-0.01824524,0.0011250845,0.024388928,-0.018140716,0.027269144,0.03630466,-0.046849966,0.0007247721,0.013773937,-0.03744281,0.00306894,-0.02042863,-0.016177988,-0.030009994,-0.01166023,0.0017754558,0.006857934,0.005745915,0.03374963,-0.0073050642,0.024133423,-0.027826605,0.0030021607,0.024156652,0.048731398,-0.029545443,0.033494126,0.0066953413,-0.0026189063,0.0275711,0.023157867,-0.016340582,-0.0071889265,-0.021160297,0.048452668,-0.0043435516,0.05202971,0.0023067861,-0.0152605,-0.017037408,0.001262998,-0.0018509454,0.045340177,-0.022101013,0.012554491,-0.029545443,0.0059317355,-0.026804592,-0.012554491,-0.006346928,0.0155973,0.034074817,0.032959893,-0.012809994,0.004340648,0.038232546,-0.00025024056,-0.02994031,0.018698178,-0.023192707,-0.0031124917,-0.040462393,-0.0035886564,-0.005908508,0.019360162,-0.0057546254,0.0073340987,0.030404862,0.003841256,0.014133964,0.024783796,-0.013901688,-0.0017202904,0.01455206,-0.003611884,-0.007943822,-0.038813237,0.0051942607,0.052447807,0.026084539,-0.011962188,-0.018094262,0.05755787,0.007699933,-0.023343688,0.003559622,-0.016909657,0.0127054695,0.00058903615,-0.0037918976,-0.0014212357,0.0017652938,-0.004070628,-0.0030050643,0.028476976,-0.042808373,-0.0015751182,-0.009714923,0.021253208,0.045827955,-0.014540446,0.06150655,0.008141256,-0.0178736,0.0008122384,0.006085618,0.010098177,0.0020019244,0.020846726,-0.014923701,0.00009826342,-0.0068869684,-0.013832006,0.016851587,0.0028932816,0.012113167,-0.012287374,0.023181094,-0.030056449,-0.010045915,-0.01375071,-0.02882539,-0.014226874,0.008838083,0.008925186,-0.0030602296,0.011201486,-0.022960434,0.044805944,0.020567995,-0.020358948,-0.009389737,0.0072469953,0.0038267388,0.041298583,0.008274814,-0.009314247,-0.019638894,-0.012763538,0.027176233,-0.01393653,-0.02520189,-0.0014001857,0.005272654,-0.005162323,0.00055383187,-0.013158407,-0.01378555,-0.006701148,-0.016514787,-0.01886077,0.02113707,0.030358408,-0.020068603,0.0011889602,0.015585686,0.023994058,0.020707361,0.0026522959,0.0061669145,-0.0014575288,0.0019322418,-0.008408373,-0.0259684,-0.022344902,0.013773937,-0.016340582,-0.014424308,0.012252533,-0.002871506,0.072098315,0.027942743,0.002045476,0.038186092,-0.00393707,-0.009325861,-0.012333829,-0.021020932,0.022437813,-0.011538286,0.0031821744,-0.05621067,0.046013776,-0.0012637238,0.025550304,-0.0068985824,0.03563106,0.003638015,0.0054526674,0.050961245,0.0018553005,-0.025829036,0.013634572,0.0047471304,-0.036629844,-0.0017435179,-0.02522512,-0.037140854,-0.0027568198,-0.020254424,-0.02122998,0.0019554694,0.04334261,0.007043754,0.021276435,-0.007101823,-0.0154927755,-0.019336935,-0.036002703,-0.022019718,-0.024156652,-0.028105335,-0.019058205,0.01350682,-0.02104416,0.04901013,-0.0061494936,0.012136395,0.0073515195,0.007159892,0.0024185686,-0.008350304,-0.019278867,0.03725699,0.0048139095,-0.038302228,-0.018651722,0.010771777,-0.013773937,0.017083863,-0.024319245,-0.00027165347,0.047360975,0.01455206,-0.031450104,-0.022844296,0.040532075,-0.0065733967,-0.026595544,0.032170158,-0.01507468,-0.03732667,0.021334505,-0.01747873,-0.0033447673,0.023924377,0.0142501015,0.012426739,0.012252533,0.030381635,-0.02682782,-0.017838757,0.012240918,0.012914518,-0.0014451891,-0.005057799,0.0016244767,-0.024714112,-0.023575963,0.015399866,0.00089426065,-0.005600743,-0.00031248314,0.00044386394,-0.014203646,0.0175368,-0.017432276,-0.0017290007,-0.014017826,-0.006039163,-0.017838757,-0.003579946,-0.042622555,0.0030282917,0.025341257,-0.0053684674,-0.028407292,0.014795949,0.008478056,-0.05500284,-0.003501553,0.013262931,0.022821067,-0.012101553,0.0017115801,0.013878461,-0.019917624,-0.022670088,-0.024574747,0.0037831871,-0.005371371,0.01843106,-0.011288589,-0.010289804,0.030219043,-0.026642,-0.0259684,0.0012223498,0.038046725,0.007839298,0.07432816,0.026665227,-0.056814585,0.012949359,-0.0069914926,-0.04993923,0.0113814995,-0.0033476707,-0.009070358,0.008588387,-0.0039573936,-0.029313168,-0.050636057,-0.030009994,-0.018907225,0.0327973,0.012949359,0.0155740725,0.021636462,0.020904794,-0.024969615,-0.02427279,-0.033029575,0.020056989,-0.017060636,-0.018709792,0.0013653444,0.02956867,-0.00623079,-0.0022269413,0.008977448,-0.02996354,-0.009372316,0.005490412,-0.020881567,-0.022670088,-0.007496692,-0.016433492,0.0013399393,0.0034463876,-0.01261256,0.02994031,-0.015701823,-0.015887644,0.015214045,0.009134234,0.04750034,0.027129779,0.02522512,0.01009237,0.0020628967,0.0036873736,0.034307092,-0.025643215,0.026316814,0.00157657,0.023424983,-0.019580824,0.015434707,0.01507468,-0.024086969,0.0357472,-0.011387306,0.016932884,-0.032216612,-0.05621067,-0.009964619,-0.026270358,0.001789973,-0.0035654288,0.02778015,-0.010371101,-0.014807563,0.0061494936,0.00013428427,-0.05012505,0.018837543,0.006765024,-0.027315598,-0.0045555034,-0.010765969,-0.033285078,-0.011526671,-0.027942743,0.009732343,0.014203646,-0.021520324,-0.0031879812,-0.0009886225,0.024597974,-0.020602837,0.022716543,0.009529103,-0.0037396355,0.022565564,0.01867495,-0.007665091,0.005992708,0.007066982,-0.00008692185,0.046757057,-0.017223228,0.007845105,-0.026572317,0.011201486,0.02350628,0.022333289,-0.03163592,-0.005287171,-0.0070321406,-0.018744633,-0.011892505,-0.041832816,-0.040508848,0.013994599,0.006596624,0.0010670156,0.022530723,-0.00020342252,0.027942743,0.052447807,0.03467873,0.004233221,0.021601621,0.025898717,-0.004587441,0.014087508,0.02520189,0.022159083,0.02387792,0.028175017,0.019418232,0.03163592,0.0052174884,-0.0010111242,0.0030834572,-0.00534524,-0.014412695,-0.010231735,0.01852397,-0.024365699,0.0085941935,-0.00975557,0.0112711685,0.018872384,0.014749494,-0.0071482784,-0.016526401,-0.0402998,0.022577178,-0.0016636732,0.008030925,0.0334709,-0.024667658,0.023192707,0.007061175,0.00241131,0.013181634,-0.0019612762,-0.034841325,-0.019696962,-0.015086293,0.03251857,-0.0006093602,0.005298785,-0.021299664,0.016201217,-0.030637138,-0.031821743,-0.017025795,-0.029313168,0.029824173,0.000584681,0.0208235,-0.023378529,-0.015620527,-0.034562595,0.018082647,-0.00193079,-0.011555706,-0.014877246,0.02316948,-0.020231197,0.051890347,0.013622958,-0.001429946,0.012949359,0.0044800136,-0.02117191,-0.028476976]);
INSERT INTO entities (id, name, description, description_vec) VALUES (25, 'U.S. Securities and Exchange Commission (SEC)', 'The U.S. Securities and Exchange Commission (SEC) is a government agency that sued Elon Musk in 2018, alleging that he had falsely announced securing funding for a private takeover of Tesla.', [-0.0035170924,-0.06335943,-0.02162595,0.06322139,0.00088430574,0.043021835,-0.041457403,0.013182626,0.003373303,-0.025836106,0.021948038,-0.072055824,-0.009708671,-0.031495664,-0.03340519,0.008265023,-0.042446677,-0.040215064,-0.003632124,-0.053236645,0.0070686946,0.034555506,0.032876045,0.01904924,-0.025537025,0.024041614,-0.008265023,-0.012492436,0.0021683464,0.047899175,0.04656481,-0.016311487,-0.045322467,-0.00264429,0.0030109533,0.02450174,-0.015069146,-0.0027564457,0.018738655,0.021545427,-0.010416116,-0.029678164,0.0017700494,0.013044588,0.010071021,0.014712547,-0.032738004,-0.041641455,0.005728576,0.033359177,-0.0013393997,-0.029448101,0.034624524,0.06717848,-0.027791645,-0.041572437,0.04642677,0.011940285,-0.01723174,0.042124588,-0.004900348,0.0027248121,-0.0657981,-0.02340894,-0.009777689,-0.0057515823,-0.0069996757,0.06575209,0.021108307,0.027837658,-0.0065453006,0.0062002055,-0.01933682,0.042147595,0.024271676,0.025721075,0.032323893,0.059356328,0.019451851,-0.034578513,-0.02838981,-0.038052466,-0.052362405,0.04831329,-0.05507715,-0.021959541,-0.04886544,-0.0013703144,-0.018738655,-0.02086674,-0.008995474,0.04460927,-0.0421706,-0.016207958,0.01566731,0.024409715,0.015644303,0.003980095,0.04286079,0.044517245,-0.02475481,-0.01268799,-0.038650632,0.0004403555,0.0026486036,0.022235617,-0.03966291,-0.030759461,-0.00050326344,-0.011135063,0.08963265,-0.021292357,0.010617421,0.0146435285,-0.011301859,-0.02300633,-0.049831707,-0.005093026,-0.029425094,0.018186502,-0.016150443,-0.016127435,0.021131312,0.03867364,0.08521544,0.019313812,-0.002161157,0.0020058642,-0.04794519,0.020855237,-0.015598291,0.015552279,0.041135315,0.010692191,0.021476408,-0.044011105,-0.02312136,-0.05608943,-0.003551602,0.009978995,-0.005208058,0.026894398,0.0013926019,0.009403837,-0.052546453,-0.0625312,0.0073275156,0.026917404,-0.048727404,-0.016932657,0.029816203,-0.015770838,0.0054438724,0.029402088,0.008132737,-0.01057716,-0.020728702,0.020280078,-0.016046913,-0.01268799,0.0015097903,0.062439177,0.036925156,0.0050815227,0.039869968,0.030506391,-0.00035731704,-0.031794745,-0.017611345,0.0012502501,-0.036373004,-0.04868139,-0.022258623,-0.01876166,-0.009260047,0.005426618,-0.034923606,-0.013424193,0.027055442,-0.049831707,-0.046725854,-0.021016281,-0.002325077,0.025537025,-0.0031748733,-0.020671187,-0.0031173576,0.01923329,0.019221788,-0.041319367,-0.021165822,-0.0039427094,0.01290655,-0.0047047944,-0.06299133,-0.022764763,-0.012561455,-0.02333992,0.0019497863,-0.011025783,-0.009277302,0.019877467,0.034854587,0.0370862,-0.03871965,-0.008460578,-0.014885095,0.022534698,0.04037611,-0.0032870292,0.038259525,-0.005423742,-0.021833006,-0.016921155,-0.011140815,0.016748607,-0.024386708,-0.03283003,0.01632299,0.037615348,0.013332168,0.09515417,-0.016461028,-0.02431769,0.00299945,0.017277753,-0.0012746943,0.0051447903,0.016530046,-0.052178353,-0.016817626,-0.012457927,-0.029563133,-0.038305536,-0.0077301264,-0.02970117,0.016150443,-0.011048789,-0.027538575,-0.0056653083,0.0075230696,-0.010841732,-0.032323893,-0.03338218,0.0001658972,0.032691993,0.020372104,-0.017530823,-0.024593765,0.050475884,-0.00459839,0.014988624,0.0017599842,0.022626724,0.024547752,-0.01835905,0.071457654,-0.017795395,0.0115549285,-0.0015169798,0.03220886,0.028182752,-0.020728702,-0.043619998,-0.01156068,0.0035084651,0.002382593,-0.08227063,0.0024429846,0.011002776,-0.001514104,0.012089825,-0.023834556,-0.008276527,-0.0020878243,0.036580063,0.02431769,0.041365378,-0.025537025,0.037316266,-0.00062153034,0.027354525,-0.039961994,-0.0031288606,-0.013746281,0.013228639,0.004845708,-0.03639601,-0.0272625,0.044954367,0.03464753,-0.0060621677,0.020544652,-0.009024233,0.0058953715,-0.01384981,0.029839208,-0.02002701,0.02588212,-0.0008986847,0.021821503,0.040123038,-0.028734904,-0.021165822,-0.035107657,0.046771865,0.0011388132,0.02344345,0.01864663,-0.027055442,-0.0006423798,-0.03216285,0.004336693,-0.060690694,0.06092076,-0.003318663,-0.038282532,-0.0048111985,0.012734002,-0.039823953,0.03184076,-0.026894398,-0.029586138,0.014747057,-0.014747057,-0.007143465,0.0072757513,0.06423367,-0.015391234,0.004903224,0.014079873,0.015000126,-0.009783441,-0.07978595,0.038627625,-0.027791645,0.01334367,-0.0046213963,-0.03450949,-0.021246344,-0.014609018,-0.028849937,0.0203606,0.0035027135,-0.032622974,0.008500839,-0.037707373,0.00806947,0.00996174,-0.0046961666,-0.02312136,-0.0432519,0.04601266,-0.040537152,-0.0067983703,0.0048198258,-0.02431769,0.019210285,0.06667234,0.0004241792,0.014091376,0.03409538,0.07168772,0.033244144,0.0064647784,0.0030253322,-0.0516262,0.00011835678,0.025721075,-0.029655159,0.010974019,0.010013505,0.017749382,0.018405063,0.036027912,0.02017655,0.02668734,0.006620071,0.025076898,0.0034624524,0.033612248,-0.009645403,-0.00930606,-0.016633576,-0.009242793,0.047853164,0.042124588,-0.01290655,-0.0015356725,-0.048451327,0.017105205,-0.01428693,0.033060092,-0.010755459,0.023535473,0.03701718,0.038558606,-0.02315587,0.040330093,0.015540775,0.03352022,-0.04343595,0.019095253,0.02519193,-0.030805474,0.012710997,0.02668734,-0.0027967067,-0.03264598,0.008661883,0.05834405,0.0069421595,-0.006125435,-0.02526095,0.019026233,-0.012918053,0.010243568,-0.03496962,-0.0025537026,0.04343595,0.023477959,-0.007638101,0.028297784,0.01795644,0.042216614,-0.0010108405,0.007517318,-0.010306835,0.08645778,-0.039455853,0.0015931883,-0.014125885,-0.039685916,0.017335268,-0.009570633,-0.07582886,0.021533923,-0.009478607,-0.028182752,-0.009794944,-0.054064874,0.04184851,0.022327641,-0.02424867,-0.0049176025,-0.043343924,-0.02977019,-0.013550728,0.005328841,0.045621548,0.019382833,-0.026710348,0.051028036,-0.031058544,0.0014206407,-0.021119809,0.0051246597,-0.042331643,-0.014954113,0.038328543,0.00727,0.014666535,0.03358924,0.0229028,0.0042072823,-0.038236517,-0.005432369,0.05503114,-0.03515367,0.022822278,-0.023454951,0.028458828,0.041457403,-0.023098353,0.011905775,-0.01497712,0.012872041,-0.07527671,0.052730504,-0.057745885,-0.030759461,0.024294684,-0.0019972369,0.03667209,0.025214937,-0.02638826,0.0029160522,-0.019658908,-0.050337847,0.043389935,0.052960567,-0.0019900475,0.030299336,-0.0102493195,0.02588212,-0.034624524,-0.04900348,-0.04826728,-0.016771613,-0.019819953,-0.0017182851,-0.024478734,-0.015839858,-0.021361375,-0.03664908,0.015425744,-0.020579161,0.020015506,0.038443577,0.01134212,0.02781465,0.010709446,0.0057515823,-0.0095533775,-0.0042619226,-0.0042446675,0.02712446,0.016852135,0.022017056,0.00078221515,0.020717198,-0.007281503,0.0063497466,-0.022109082,0.00019393615,-0.013401186,0.015736328,0.030437373,-0.028481835,-0.028757911,-0.006154193,-0.02700943,-0.0034624524,-0.034072373,-0.019589888,0.03301408,-0.011894272,0.008610118,-0.004529371,0.032070823,-0.012572958,0.00094973,0.004940609,-0.01723174,-0.007724375,-0.0032927808,-0.03552177,-0.023535473,-0.00031184359,0.019417342,0.040629175,0.06828278,0.032001805,-0.0001228502,-0.02700943,0.03352022,-0.0029218036,-0.03439446,0.037983447,0.02374253,0.04042212,0.032945063,0.0045753834,0.009582136,-0.023673512,0.008167246,-0.012239367,0.02090125,-0.020234065,0.03239291,-0.0073677767,-0.023086851,0.014493987,-0.059126265,0.016276978,0.008926456,0.008518093,-0.0014752808,0.024524746,0.012009303,-0.0114226425,0.02202856,0.010088275,-0.003729901,-0.037362278,0.0011661333,-0.018278528,0.022971818,-0.017714873,-0.017427294,-0.039317816,-0.012814525,-0.01246943,-0.007264248,0.03973193,0.015011629,0.026871393,-0.019612895,-0.035774842,-0.00048780607,0.029724177,-0.010134288,-0.030575411,0.003496962,-0.036511045,0.00020292301,0.053466707,-0.038259525,0.018002452,0.017162722,-0.022408163,0.016771613,0.0014839082,0.017864414,-0.025283955,0.023696518,0.0036004905,0.003977219,0.006154193,0.008449074,0.0038075475,-0.014505491,-0.020728702,0.044517245,0.03984696,0.009967492,0.0058838683,0.035797846,0.0045753834,0.05714772,0.0068616373,0.016898148,0.019313812,0.007839407,-0.03565981,0.0049981247,-0.053880822,0.040560156,-0.005173548,-0.004995249,-0.0016147566,-0.0057113213,-0.007994699,0.016092926,-0.0723319,0.025951138,-0.038006455,-0.022270126,-0.028734904,0.021476408,-0.022086075,-0.016438022,-0.0012545638,-0.0022819403,0.011790743,-0.018738655,0.008920704,-0.0039829705,-0.025283955,0.039754935,-0.0054898853,0.0628993,0.0039053243,-0.029241044,-0.049325567,0.028274778,0.020153543,-0.0012437797,-0.01763435,-0.0034336946,-0.11484759,0.04014604,-0.045276456,0.005602041,0.044816326,-0.048543353,-0.053880822,-0.045161422,0.015092151,0.034348447,-0.0113363685,-0.019808449,-0.023834556,-0.0150806485,-0.0052368157,-0.009697167,-0.008748156,-0.0068443827,0.007787642,0.0041727726,-0.014597516,0.027860664,0.027998703,-0.0007009741,-0.014701044,-0.035429746,0.005049889,0.00792568,-0.0014378956,-0.01697867,0.012101329,0.04304484,-0.028182752,-0.03108155,-0.02457076,0.017404288,-0.01807147,-0.006441772,-0.029218037,-0.03190978,-0.023293907,-0.017967943,-0.0037960443,-0.0020849486,0.03878867,0.038857687,0.0066545806,-0.04205557,0.031426646,0.0051562935,0.019532373,-0.01697867,0.00069737935,-0.0370862,-0.03478557,-0.0035429746,-0.03754633,0.031219589,-0.011572183,0.003235265,-0.03496962,-0.0004295713,-0.022592215,0.0053432197,0.0096339,-0.00088718155,-0.015356724,-0.016058417,-0.015471756,-0.013332168,-0.0016147566,0.0036292484,0.015770838,-0.033566233,0.041572437,-0.005245443,0.02475481,0.042446677,0.0084663285,-0.019842958,0.02381155,0.006786867,0.0042475434,0.0025968393,-0.016449524,-0.022546202,0.008328291,-0.018002452,0.0067351027,-0.016472531,-0.029862214,-0.024892848,-0.034808576,0.026963416,0.019934984,-0.029241044,-0.020912753,0.020245569,-0.009674161,-0.011802247,0.00050470134,0.0011064606,-0.018336045,0.003537223,0.006263473,0.023857562,-0.02613519,0.04385006,0.030506391,-0.009145016,-0.026848385,0.011928781,0.009357824,-0.017139714,-0.07012329,0.013136613,0.020878242,-0.008121234,-0.030000253,0.008845934,-0.00035048704,0.021004777,-0.003387682,-0.01312511,0.0050872746,-0.0010820164,-0.0043136864,-0.048773415,0.0031403638,0.04573658,-0.000839731,0.033129115,-0.010157294,0.0020346222,0.034440473,0.032231867,0.0050412617,-0.005242567,-0.03639601,-0.0012581586,-0.05024582,0.0052943313,0.041664463,-0.077899426,-0.016783116,0.007517318,0.042699747,-0.0028398437,0.018577611,0.009363576,0.00072362093,0.034854587,0.041687466,-0.03264598,0.015747832,0.0072067324,0.0014709671,0.040284082,0.011606692,0.03225487,0.018186502,0.0023480833,0.009927231,0.0039513367,-0.010071021,-0.049233545,-0.012158845,-0.0114226425,-0.029885221,-0.010191804,0.029126013,-0.006666084,0.0140338605,-0.0050153797,0.00905299,0.009323315,0.015115158,0.01977394,0.02744655,-0.0007455488,-0.02017655,-0.002573833,0.026641328,0.0031691217,-0.0439881,0.0070571913,0.004719173,-0.012526946,-0.028849937,-0.01606992,0.016311487,0.015506266,0.013769288,-0.04191753,0.0114514,0.00839731,-0.0034538251,0.019693417,-0.008840182,-0.027607594,0.0048198258,0.0027449427,-0.013976345,-0.03225487,-0.011198331,0.021568432,-0.013654256,0.00603341,0.013861313,0.009950237,-0.022247119,-0.015126661,0.018347546,0.023029335,0.005518643,0.02668734,-0.018232515,-0.00082966575,-0.032231867,0.00094397843,0.009662658,0.04525345,0.03954788,-0.03540674,-0.02271875,0.0051965546,-0.0012308386,0.038006455,0.021936534,-0.021763986,0.017116709,-0.046173703,-0.002861412,0.011008528,0.004503489,0.0034653284,0.001499725,0.002394096,-0.03246193,0.03276101,0.014125885,0.024156645,0.030023258,-0.0037529073,-0.028734904,-0.010784216,0.016265474,0.0019713547,0.0068501346,-0.05056791,-0.018151993,-0.025859114,-0.009093251,0.013677263,0.022247119,-0.014137389,0.030506391,0.049969744,0.017887421,0.0068098735,-0.03554478,-0.014137389,0.005078647,-0.027722627,0.020763211,0.05820601,-0.0015514892,-0.014735553,-0.057929937,-0.014459478,0.038949713,-0.04129636,0.023857562,-0.00023222013,-0.013907325,-0.043781042,-0.035452753,0.012296882,-0.029103005,-0.024892848,-0.033060092,0.027561583,-0.015460253,-0.056595568,0.03264598,0.007747381,-0.0065453006,0.021384383,0.042699747,-0.034601517,-0.01541424,-0.033359177,0.036488038,-0.02468579,-0.013757785,-0.016898148,0.014183402,-0.029126013,-0.0009828015,0.027791645,-0.0035343473,0.012745506,-0.014919604,-0.008523845,-0.026112182,0.023328418,-0.010341344,0.0074425475,-0.025951138,-0.0025350098,0.008656131,0.016438022,-0.0014882219,0.015977895,0.016518544,-0.021821503,0.03158769,-0.019359825,0.0032007555,0.013205633,-0.006666084,0.011848259,0.012975569,0.0058723656,-0.014919604,-0.016127435,0.012181851,0.017312262,-0.0046587815,0.020958764,0.02556003,-0.020303085,-0.016265474,0.011543426,-0.018704144,-0.04794519,-0.027722627,-0.011761986,-0.024294684,-0.02159144,0.04667984,-0.0054179905,-0.017392784,0.020291582,-0.019681914,-0.008368552,-0.023604494,-0.0058953715,-0.04159544,0.03165671,0.012826028,0.023696518,0.0403531,-0.007500063,-0.0023135738,0.018566107,0.018819178,0.043412942,0.0039829705,0.007569082,-0.027975695,0.008679138,-0.012664984,-0.02512291,-0.027561583,0.019888971,-0.0030080774,-0.023604494,0.003125985,0.02388057,-0.022189604,0.015057642,0.016932657,0.026618322,-0.02388057,0.01406837,-0.008345545,0.013654256,0.014482484,0.005918378,0.009375079,0.042262625,0.01814049,0.02286829,-0.018267024,-0.013757785,-0.020958764,0.008368552,0.039892975,-0.020245569,-0.02202856,-0.019578386,0.003384806,0.005107405,-0.029056992,-0.037776392,0.012457927,-0.001430706,0.0005366945,-0.028228765,0.02086674,-0.022327641,0.039892975,-0.008017706,-0.008000451,0.026940411,-0.0017441673,-0.028067721,0.0004101597,0.0084663285,0.02882693,-0.010358599,-0.004750807,-0.018968718,-0.014332943,-0.011290356,-0.020970268,0.007615095,0.0118597625,-0.010283829,-0.0019239043,-0.0018175,0.016184952,0.029218037,-0.01541424,-0.010099778,0.02177549,-0.014574509,-0.015092151,-0.0381675,0.008265023,0.04649579,-0.044908352,-0.04067519,0.036948163,-0.00817875,-0.0034451978,-0.011060293,-0.019854462,-0.0082477685,0.0057860916,0.042837784,0.024639778,0.005164921,-0.028619872,0.0013911639,0.039777942,0.019221788,-0.015437246,0.022350648,-0.015759336,-0.0050872746,0.015425744,0.056227468,-0.0014084186,-0.00012024402,-0.015253196,0.01334367,0.020441122,0.0132516455,0.020084525,0.022879794,-0.012480933,-0.01933682,-0.050982025,-0.044218164,0.010974019,-0.010617421,-0.0053432197,0.0071664713,0.014873591,-0.0043309415,0.001982858,-0.005133287,-0.0027995827,0.0070974524,-0.008587112,0.059126265,0.020855237,0.018290032,0.030069271,-0.0196359,-0.007281503,-0.017036187,0.02162595,0.004198655,0.039777942,-0.037707373,-0.019877467,-0.0048083225,-0.0039455853,0.02246568,-0.021579936,0.021372879,-0.008408813,-0.018784666,-0.04460927,-0.009277302,0.014793069,0.021660458,0.025168924,0.0051908027,-0.001169009,-0.0024818077,0.0073620253,-0.00008344287,-0.043458953,0.03621196,-0.0057889675,-0.0114514,0.034923606,0.04237766,-0.008840182,-0.036073923,-0.0035142167,0.0047421795,0.014459478,-0.026296234,-0.028688893,0.003358924,-0.045023385,-0.006620071,-0.01181375,-0.042446677,-0.04437921,-0.0110315345,0.03296807,-0.013424193,-0.0059356326,-0.0036637578,0.010600165,-0.010421867,0.007154968,0.012572958,0.01726625,0.033244144,-0.0021669085,0.009904224,0.016472531,0.040330093,0.009173773,0.012895047,-0.042515695,-0.0018304411,-0.0079429345,0.054663036,0.002918928,0.014125885,-0.012849035,0.021384383,0.008529596,0.023466455,0.0056796875,-0.013780791,0.025974145,-0.014505491,0.014022358,-0.008719399,0.025099905,0.04573658,0.028780917,-0.000071041024,0.035613798,-0.030483386,0.014919604,-0.015437246,-0.029816203,0.026503291,0.024547752,-0.010025008,-0.009041487,-0.016092926,0.016656581,-0.014804573,-0.013010079,0.01948636,-0.024708796,0.009116258,-0.011060293,-0.013608243,0.014885095,-0.023213385,-0.0026083426,-0.0014752808,-0.032738004,-0.012411914,-0.012135838,-0.012101329,-0.014137389,-0.023397436,-0.019382833,0.033175126,0.03276101,0.023673512,-0.02825177,-0.010347096,0.018738655,-0.027975695,-0.009835205,-0.02450174,0.009559129,0.015299208,0.022603719,-0.0077013685,-0.011204082,0.013010079,-0.006125435,0.044816326,0.031219589,0.03471655,-0.0022359276,-0.016415015,0.023834556,-0.015897373,-0.0031950038,0.03697117,0.014378956,-0.009679913,0.021062294,-0.0056480537,-0.01741579,-0.011100554,-0.0032180103,-0.014586013,-0.0028887321,-0.0029534374,-0.022799272,0.019244794,0.031426646,0.024800822,0.035751835,-0.02857386,0.02857386,-0.022189604,0.0029476858,0.021326866,-0.007200981,-0.028619872,-0.013711772,-0.027285505,-0.02199405,0.0069824206,-0.025352973,-0.019946488,0.013309161,0.015931882,0.0038478086,0.023604494,-0.04914152,-0.009490111,0.014954113,-0.017208735,-0.011198331,-0.0064187655,0.017369779,-0.022189604,0.0068041217,0.01541424,-0.0057084453,-0.05075196,0.016553054,0.005619296,0.035475757,0.014574509,-0.0028513467,-0.013953338,-0.004914727,0.014137389,-0.062209114,-0.029033987,0.01268799,-0.021729477,-0.0005230345,-0.038029462,-0.015310712,0.0033790546,0.0016722725,-0.022994826,0.008155744,0.021407388,0.011140815,0.004227413,0.007103204,-0.014091376,-0.0048802174,0.006827128,0.010634676,0.034348447,-0.030437373,-0.0067523574,0.054939114,0.04097427,0.014229414,-0.0033646754,-0.02908,0.037063196,-0.017990949,0.0016823377,-0.009104755,-0.020475632,0.0053029587,-0.021637453,0.00636125,0.0009856774,-0.0074540507,0.03595889,-0.008443323,0.006113932,0.0035832357,-0.003635,0.039984997,-0.033359177,-0.030161297,-0.021706471,-0.014850585,-0.008098228,-0.0059758937,0.018600617,0.0014637776,-0.015517768,-0.005878117,-0.021499414,-0.019888971,0.052408416,0.0011934533,-0.01246943,-0.04272275,0.025099905,-0.008955213,-0.029402088,-0.0032381408,0.018462578,0.010260822,0.0056480537,0.004681788,0.013044588,-0.008017706,-0.012549953,-0.0020029885,0.00034132044,-0.0013559355,-0.03667209,-0.01497712,0.0039168275,0.01021481,0.0017412915,-0.0040232316,-0.02159144,-0.015690316,-0.0052770767,0.01904924,-0.032599967,-0.02951712,0.011186827,0.0008462015,0.011692966,-0.01315962,-0.027883671,-0.01541424,-0.011146566,0.016403513,0.01676011,-0.02231614,-0.002175536,-0.018002452,0.021131312,-0.011025783,-0.016000902,0.008431819,-0.050291833,0.02174098,-0.022925807,-0.008282279,-0.007747381,-0.010582911,-0.002064818,0.03020731,-0.0042187856,-0.015793845,0.003166246,0.025168924,-0.006993924,-0.03278402,-0.015609794,0.006136938,0.044471234,0.015149668,-0.04304484,-0.03697117,-0.027768638,-0.02970117,0.015264699,-0.023293907,0.016633576,-0.008523845,-0.007965941,0.016403513,0.02075171,-0.00007414149,0.029885221,0.0036407516,0.03496962,0.0048140744,-0.046035662,-0.023362927,0.0031288606,-0.008006202,-0.022626724,-0.034325443,0.015885869,-0.019187277,0.029586138,-0.018589113,-0.042883795,0.004169897,-0.015034636,-0.002641414,-0.008368552,0.03257696,0.001941159,0.01410288,-0.017162722,-0.023454951,0.021441897,-0.010364351,0.04488535,-0.006815625,0.013941836,-0.041342374,0.012734002,0.04118133,-0.04743905,0.029033987,-0.0010568532,0.03478557,0.031196581,-0.010571408,-0.018094478,-0.029724177,0.002809648,-0.009582136,-0.003111606,0.025352973,-0.0024113508,-0.007557579,0.0006912683,-0.010784216,-0.01723174,0.022327641,0.0043596993,-0.007609343,-0.013964841,0.036557056,-0.0022129212,0.008822927,0.0009691416,-0.01694416,0.020832231,0.01919878,0.025836106,-0.0074655535,-0.0021827254,-0.01363125,0.0032812776,-0.02417965,0.012020807]);
INSERT INTO entities (id, name, description, description_vec) VALUES (26, 'Twitter', 'Twitter is a social media platform acquired by Elon Musk for $44 billion in 2022, which was later merged into X Corp. and rebranded as X.', [-0.007504217,-0.055594772,-0.037020084,0.06460199,0.03721402,-0.005963509,-0.02587958,0.028228352,-0.01629056,0.0073803137,-0.03682615,-0.0032942058,0.0011932405,0.0101816,-0.02812061,0.02071875,-0.040036853,-0.023552358,-0.031740736,-0.032947443,-0.02615971,0.013101404,0.01590269,0.007902862,0.008199152,0.03206396,-0.08214235,0.00857086,-0.03665376,0.026763065,-0.0039191083,-0.017454172,-0.0006861806,0.043247562,-0.027043194,-0.03863621,0.0009137852,0.037149373,0.049604326,0.06167141,-0.01945817,-0.0001550472,0.0045790267,0.025707195,-0.012476501,0.0038571565,-0.083736934,-0.0036820762,0.031762283,0.04494988,0.00026666097,-0.058309864,-0.0427304,-0.0010525028,-0.08425409,-0.047147814,0.0048699295,0.004517075,-0.023078294,0.02131133,-0.021020425,-0.006766185,-0.008339216,-0.01479295,0.06374005,-0.013597015,-0.0042665754,0.01786359,0.028357644,0.02865932,0.017195592,0.012648888,-0.055508576,0.017411076,0.028616223,-0.033529248,-0.021936232,0.0009211924,0.031352866,-0.042234786,0.01832688,0.019910686,-0.030361641,0.015913464,-0.020093847,0.0055917995,-0.0026787305,-0.023207584,-0.006512992,0.01603198,-0.008630118,0.033055186,-0.004315059,-0.014868369,0.008759408,-0.028486934,-0.02564255,0.01688314,0.0033669313,0.037537243,-0.0243281,-0.012142502,-0.0427304,0.016592238,0.008495442,-0.012174824,0.0027137466,-0.046716847,0.03113738,-0.0071325074,0.021472942,0.0025979243,0.013327661,-0.010251633,-0.03314138,-0.058827024,-0.007983668,-0.045682523,-0.046630654,0.0055217673,0.0045898007,0.009529763,0.01445895,0.058697734,0.03301209,-0.03460667,-0.0106826,-0.018176042,-0.050164584,-0.035791826,0.04208395,0.00051615055,0.014049531,0.035274666,0.024694422,-0.06425721,0.0093896985,0.005238945,-0.024392745,-0.016452173,0.018294558,-0.0146528855,0.014157273,-0.048182134,-0.053569224,-0.023854036,-0.03273196,-0.017314108,-0.047751166,-0.010370148,0.0045493976,-0.038830146,-0.0026921984,0.043204464,0.029628996,-0.015288562,-0.014512821,0.06714469,-0.00614667,-0.059990637,-0.008894086,-0.009136505,0.03223635,0.00992302,0.02301365,0.03667531,0.0035016087,-0.015762625,-0.057404835,-0.02131133,-0.017831268,0.015988884,-0.00305448,-0.0068254434,-0.055465482,-0.005618735,-0.013058307,0.0016322883,-0.027797386,-0.042514917,-0.032150153,-0.04156679,0.0068254434,-0.010951954,-0.08511603,-0.04525156,-0.0076604425,0.023444617,0.0024699809,0.0011211882,-0.0067284754,0.029628996,0.036416728,0.03314138,-0.019059526,0.022453392,0.019695202,-0.029499706,-0.038614664,0.05925799,-0.0019568605,0.08576248,0.00022255417,0.052664194,-0.01734643,-0.017518817,0.0380975,0.03572718,-0.0167754,-0.030447833,0.06361076,-0.026849257,-0.022259457,0.033033635,-0.0282499,-0.039929114,-0.019781396,-0.012304114,-0.021300554,0.049345747,0.012788952,0.0380975,0.019447396,-0.011743857,-0.049259555,0.06020612,0.0053736223,0.009265795,0.010806503,-0.015267014,0.023186035,0.029068738,-0.040295433,-0.05417258,-0.009648278,-0.031115834,0.011355986,-0.03917492,-0.008522376,-0.03339996,-0.034929894,-0.03404641,0.0017036672,0.08028919,0.006922411,-0.00237436,-0.0047810427,-0.07179914,-0.03245183,0.020298555,0.024478938,0.03296899,-0.017400302,0.04352769,0.024241906,-0.030361641,-0.016484495,0.030727962,-0.01162534,-0.04128666,0.0028497707,-0.0328828,-0.038205244,-0.021149715,0.003113738,0.014448176,-0.034089506,-0.03499454,-0.009869149,-0.0054221065,-0.018703977,-0.017260237,0.0032457218,-0.00640525,0.0018962558,-0.0010208536,-0.010828052,0.04204085,-0.056973867,0.027150935,0.041588336,0.029801384,-0.014771401,-0.023035198,-0.04270885,-0.01958746,0.018520815,0.03195622,-0.0040133824,0.02484526,0.019964557,0.026310548,0.03760189,0.008204538,0.017529592,0.0005696848,0.08011681,-0.00007600847,0.020298555,-0.01571953,0.039239567,0.03906718,-0.004565559,-0.011140503,-0.013306113,0.06817901,-0.010526374,0.046458267,0.013446177,0.022151714,-0.011646889,-0.012982887,0.0035958828,-0.03967053,-0.0132737905,0.03678305,-0.0062490245,-0.0013723612,0.012508824,-0.013435403,0.029241126,-0.055163804,-0.0749883,-0.0053628483,-0.0065830243,-0.0010619302,0.01997533,-0.00076159986,-0.008112958,-0.029478157,0.027754288,0.0043770107,0.024004875,-0.047320202,0.034132604,-0.013866371,0.012508824,-0.03458512,-0.021246683,-0.023293778,-0.015126949,-0.0723594,-0.0067284754,0.004772962,-0.0073641525,0.016322883,-0.04285969,-0.006507605,-0.038463823,0.036373634,-0.0021117392,-0.037106276,0.059990637,-0.03193467,-0.045036074,0.0070193787,-0.0005383723,-0.0043339143,0.03363699,0.010467117,-0.0069655078,0.004315059,0.08175448,0.032257896,0.019296557,0.0012902081,-0.05425877,0.028745513,-0.0108334385,-0.007105572,-0.0012174824,-0.0075365393,0.055551674,0.0011353293,0.035791826,-0.03363699,0.03389557,0.03917492,-0.005020768,0.019759847,0.049518134,0.0229921,-0.008086022,0.055594772,-0.022690425,0.042945884,0.020966556,0.0036066568,-0.009357376,-0.004113043,0.010865761,0.005475977,0.0040349304,-0.020083072,-0.051845357,-0.014211144,0.01603198,0.006459121,0.0048295264,0.034800604,-0.04229943,-0.02149449,-0.030964995,-0.02262578,-0.0036255117,-0.019231912,-0.002060562,-0.0044416557,-0.05430187,-0.014502047,0.0146744335,-0.008452345,0.001989183,-0.006351379,0.03391712,0.008780957,0.002865932,-0.02018004,0.03523157,0.08515912,0.0014396999,0.0008868497,0.02156991,0.024220357,0.037537243,0.012659662,-0.01425424,-0.03441273,0.017109398,-0.016333658,-0.01038631,-0.01592424,-0.029650545,-0.058180574,-0.027754288,-0.029391965,0.039886016,0.039239567,-0.039131824,0.027129386,-0.019813718,0.07550546,0.04874239,-0.026073517,-0.009524375,0.014760627,0.0027878191,0.0157734,-0.044777494,0.010946567,0.0022046666,0.002231602,0.03415415,0.04520846,-0.032128606,-0.07641049,-0.0033022864,0.0016834657,-0.016269013,0.04036008,-0.026353646,0.0022491103,0.026849257,0.0016336351,0.048440713,-0.019005654,-0.018574687,0.015913464,0.024522034,-0.014825272,0.001687506,0.018423848,0.014879143,-0.009422021,0.0012329703,0.0045790267,0.025190033,-0.03273196,0.009308892,-0.057620317,-0.027409514,0.015460948,-0.011431405,0.028982546,-0.03139596,-0.01966288,-0.00048786835,-0.00284169,-0.03941195,0.030706415,0.012638113,0.01819759,0.021375975,-0.0070409267,0.013112177,-0.004393172,-0.030469382,-0.0067769596,0.008490054,-0.017852817,0.034132604,0.019856814,-0.016064303,0.011689986,-0.023617003,0.023315327,0.03630899,0.009567472,0.00048517482,0.032279443,0.02458668,-0.013812499,0.019867588,0.01288592,-0.04667375,0.007972893,0.02110662,0.016603012,-0.007283346,0.015202369,-0.005268574,-0.013166049,-0.02141907,0.0010962728,-0.016085852,0.025728744,-0.03486525,-0.012745855,-0.050121486,-0.017314108,-0.012508824,-0.029219577,-0.005322445,-0.057361737,-0.023638552,-0.029779835,-0.020212362,-0.018122172,-0.024371196,0.0049884454,0.013834048,-0.023767842,0.014049531,-0.011722309,-0.008123732,0.0153963035,-0.03184848,-0.016215142,0.013941789,0.009896085,0.044906784,0.03643828,0.0512851,-0.011162051,-0.015945787,0.008253022,-0.01288592,0.0033830926,0.03339996,0.014771401,-0.031245124,0.0187363,0.0026154323,0.0059527345,-0.0031487541,-0.018876364,-0.040316984,0.02325068,-0.037106276,0.0032376412,0.023358423,-0.07317823,-0.00012272465,-0.030964995,0.02445739,0.012788952,0.02288436,-0.017561914,0.017400302,0.0069008623,-0.024478938,0.01571953,0.013866371,0.00996073,0.0077897324,0.014157273,-0.035317764,0.0077789584,0.016840044,0.003369625,0.0440664,-0.0132737905,0.001971675,-0.017184818,0.044605106,-0.0006053743,0.019425847,-0.03363699,0.013683209,0.015762625,0.009077247,-0.009217312,-0.030555576,-0.007261798,-0.0034181087,-0.007875926,0.017529592,-0.0054678963,0.017324882,-0.010925019,0.004797204,-0.008877925,-0.007843603,0.047147814,-0.010828052,0.06800663,0.025470162,-0.01868243,0.0066530565,0.0061412826,-0.015191594,-0.01162534,-0.05137129,0.0032861251,0.016635334,0.014426627,0.010359375,-0.0014989579,0.00013467726,0.049647424,0.020406298,0.04589801,0.017561914,-0.0054678963,-0.027732741,-0.043290656,-0.007875926,0.06128354,0.020406298,-0.015202369,-0.007089411,0.0013777483,-0.029413512,0.049604326,-0.002517118,0.021623781,-0.02288436,-0.025125388,-0.01479295,0.017486494,0.015794948,0.00018332941,0.0381406,-0.0005484731,-0.0014343128,-0.021117393,-0.023056746,0.029284222,0.00021817716,0.03704163,0.0057157027,0.02536242,-0.01925346,0.00953515,-0.028077515,0.06925643,-0.008576248,-0.027948225,-0.02564255,0.025146937,-0.035274666,0.018079074,0.010612568,-0.0017063608,0.047449492,-0.02943506,-0.011043535,-0.036976986,0.04443272,0.016128948,0.0011003132,0.008872538,-0.01801443,-0.0007299507,0.010828052,-0.06330908,-0.045941107,-0.012239469,-0.006803895,-0.019447396,-0.020621782,0.02221636,0.048440713,-0.02077262,-0.008554699,-0.07317823,0.0213652,0.021451393,-0.023229133,-0.035942666,0.01649527,0.02128978,-0.014976111,-0.022690425,-0.0065560886,0.020751072,-0.0011649582,-0.0060066055,-0.0065560886,-0.00063432986,-0.006620734,-0.018111397,0.0077897324,0.005330526,0.03064177,0.029521255,0.004861849,-0.047751166,0.01992146,0.007299507,0.0012639461,-0.017648108,-0.03801131,-0.026892355,-0.01479295,0.007940571,0.011452953,0.0045763333,0.0065291533,0.008543925,-0.033723183,-0.019781396,-0.050078392,-0.03561944,-0.0216992,0.02353081,0.005222784,-0.020912685,-0.030706415,0.007595797,-0.007466507,-0.002379747,0.0033130604,0.0061412826,0.020341653,0.01275663,0.055767156,0.009971504,0.009777568,0.027107839,0.006626121,0.0053251386,0.028357644,0.0059581217,-0.040187694,0.0072402493,-0.015471723,-0.00851699,0.0072941203,0.005381703,-0.028228352,-0.024414293,-0.017357204,0.059602767,0.039131824,-0.0128105,0.0024645939,-0.0041184304,0.007784345,0.011474502,-0.0017979414,-0.0068416046,0.0064914436,-0.013284564,-0.0139310155,0.01425424,-0.027258676,0.02577184,0.0045036073,-0.0054732836,-0.03559789,0.0033911732,-0.016409077,-0.038054407,-0.042105496,-0.027732741,-0.0047810427,-0.025685646,-0.0054598157,-0.022949005,-0.03197777,-0.011506825,0.029154932,-0.018122172,0.016678432,0.0027958998,-0.014782175,-0.029866029,-0.0063190567,0.053569224,-0.015687207,-0.0026154323,-0.0029278835,-0.008554699,-0.0037925115,-0.023767842,-0.021268232,0.0019743685,-0.041609883,-0.035533246,-0.018391525,-0.0023555052,0.0017561914,0.003735947,-0.002433618,0.011776179,0.01334921,-0.05244871,0.009906859,-0.0016901996,0.04430343,0.026116613,0.01569798,-0.010661052,0.03770963,0.00249961,-0.006523766,0.03605041,-0.0021736908,0.016980108,0.03564099,0.01425424,-0.019781396,-0.011452953,0.007342604,0.003884092,-0.026181258,-0.014372757,-0.040187694,-0.015525594,0.00017407036,-0.0010605834,0.007272572,-0.01479295,0.0022046666,0.014771401,0.0037170923,-0.016786173,-0.0028255288,0.044260334,0.02378939,-0.032688864,0.00025352993,0.014685208,-0.021990102,0.028680868,0.026375193,0.029111836,-0.0011764058,0.033227574,-0.018176042,-0.0041238177,0.037666533,0.0066045728,0.007859765,0.0104725035,0.0053897835,0.026913902,0.020869587,0.017572688,0.0062867342,0.055465482,-0.03945505,0.002504997,0.034628216,0.03508073,-0.0289179,0.013467725,-0.0010107527,0.010725697,-0.02721558,-0.010908858,0.028745513,-0.03301209,0.006033541,0.033572346,-0.04141595,0.031331316,-0.0003545379,0.035166927,-0.011539147,0.06917024,0.029241126,-0.019350428,-0.017324882,-0.01432966,0.02549171,0.052664194,-0.014706756,-0.026504483,0.022173263,-0.020988103,0.019738298,-0.021580683,-0.026655322,0.010483278,-0.02706474,-0.042644206,-0.0014410466,0.02030933,0.04417414,-0.028077515,0.00792441,-0.0027272145,-0.019307332,-0.036998536,-0.009734472,0.0001887165,0.009351988,-0.008807893,-0.027258676,-0.0014679821,-0.031589895,0.0007016685,-0.0073749265,0.0008686683,-0.013984886,0.010671826,0.025599454,0.01989991,0.04098498,-0.02005075,0.058525346,0.006793121,-0.0097506335,0.036739957,0.044109493,-0.028680868,-0.04800975,0.013456951,0.023186035,-0.016269013,-0.00814528,-0.024996098,0.03115893,0.007999829,-0.027258676,0.012077856,0.012562694,0.014006435,-0.03863621,-0.017260237,0.0015541755,-0.02167765,0.007983668,0.0075634746,0.022324102,0.012961339,0.036287438,0.015148498,0.017260237,-0.0034989151,-0.02123591,-0.027107839,0.016678432,-0.0064375727,-0.011377535,-0.004476672,0.021192813,0.027840482,0.017001657,-0.017788172,-0.011248244,-0.027797386,-0.010838825,0.01786359,0.0005504933,0.009125731,0.011118954,-0.018337656,0.01009002,0.030146157,-0.0055379285,-0.019113395,-0.0046948493,-0.011711534,-0.039131824,-0.04576872,-0.014232692,-0.0068362174,0.030016867,-0.017152496,-0.03113738,0.03245183,-0.035856474,0.00063028955,0.014415854,-0.002995222,-0.01675385,0.01654914,0.027560353,0.018154494,0.0019460863,-0.01992146,0.015859593,-0.015008434,0.018003656,0.0035958828,-0.01847772,-0.005287429,0.044109493,-0.0015029982,-0.009826053,0.01703398,0.003410028,0.020675652,0.008156055,-0.034972988,-0.0157734,0.016592238,0.016473722,0.022108618,0.037278663,-0.011765405,0.012077856,-0.014954562,-0.011862373,0.013359983,0.01360779,0.013758629,0.01492224,0.018337656,0.02090191,-0.016452173,-0.029133383,0.018337656,0.010504826,-0.019393524,0.0031218189,-0.037170924,0.0058072833,-0.03391712,0.003954124,0.018369978,-0.013704757,0.013338435,-0.01977062,0.022949005,0.020761846,-0.007347991,0.038485374,0.028853254,0.00036531207,0.0014450869,0.005074639,-0.04563943,-0.021516038,-0.00644296,0.032150153,0.010957342,-0.010230084,0.0042827367,-0.01853159,-0.014631337,0.0111297285,-0.011905469,-0.0067877336,-0.0033857862,-0.0057103154,-0.0056348965,0.034929894,-0.00784899,0.032171704,-0.0153101105,0.018294558,0.01208863,0.04783736,-0.026224354,0.0016713447,-0.0374726,0.022561133,0.0073910877,0.014189595,0.014965337,-0.01373708,0.025103841,-0.015762625,-0.013661661,0.019016428,0.005920412,0.03100809,-0.03184848,0.020481717,0.010095407,-0.03652447,0.02208707,0.021936232,-0.028292999,0.028336095,-0.01582727,-0.018973332,0.04245027,0.0027608837,-0.004433575,0.0034019474,-0.0069062496,0.029241126,-0.04089879,-0.0045682527,-0.043850914,0.0110166,0.022259457,0.01881172,0.017174043,-0.015676433,0.03572718,0.029176481,0.04193311,0.008759408,0.046889234,-0.006082025,-0.00118718,-0.0047460264,0.03130977,0.018833267,0.015762625,0.013413855,0.0080536995,-0.0061412826,-0.0047864295,0.0139956605,-0.01492224,-0.0051069614,-0.0020349734,-0.016258238,-0.025039196,0.010402471,0.004867236,0.0037143987,-0.0034962215,-0.0104725035,0.014372757,-0.001598619,-0.0032349476,-0.011005825,0.025534807,-0.025190033,0.053914,0.009890698,0.033529248,0.018865589,-0.012056308,0.013812499,-0.037946664,0.021332877,-0.019673653,0.015493272,-0.007908248,-0.01708785,0.0019932233,-0.03156835,-0.007768184,-0.02340152,-0.015105401,-0.002030933,-0.002095578,-0.012250243,0.0119377915,-0.030512478,0.016678432,0.041976206,0.0025777228,0.013101404,-0.029672094,-0.014749853,0.006378315,-0.03247338,-0.010612568,0.0018343042,-0.013187597,0.031740736,-0.010817277,-0.011679212,-0.024974551,-0.016096625,0.027818933,-0.029305771,0.008818666,-0.03077106,-0.0021669571,-0.010547923,-0.035964213,-0.018488493,-0.02878861,-0.024909904,-0.046716847,-0.04981981,0.01775585,-0.016225915,0.012627339,0.015126949,0.016818495,0.021580683,0.011140503,-0.00064645085,-0.000045285225,-0.006507605,0.03195622,0.0033965604,0.008592409,-0.008592409,0.012713533,-0.04585491,0.036093503,0.001047789,0.04232098,0.013618564,0.009077247,-0.002084804,0.028336095,-0.010919631,-0.046759944,0.0007858418,0.021182038,0.01208863,0.010488665,0.04404485,-0.03839918,0.0019609008,0.030059963,0.0591718,-0.00857086,0.0015582158,-0.028357644,0.013176823,0.007272572,-0.0059958315,-0.0041184304,0.001598619,0.04443272,0.010014601,-0.021149715,0.0019380057,-0.01860701,-0.004317753,0.028616223,-0.018057527,-0.005411332,0.022108618,0.0124872755,0.018844042,-0.006685379,-0.018132946,-0.017174043,0.0028497707,-0.030792607,0.0054221065,-0.024931453,-0.024220357,0.015590239,-0.0059473477,0.03589957,0.0037413342,0.0025198115,0.0034962215,-0.023336874,-0.018391525,0.002641021,-0.012519598,0.016603012,-0.031115834,-0.018003656,-0.024263455,0.04654446,-0.029478157,0.039390404,-0.03010306,0.024349649,0.06684302,0.041200466,-0.06404173,-0.01021931,-0.00305448,-0.03286125,-0.014415854,0.021149715,-0.00415614,-0.0044928333,0.04538085,0.015751852,-0.0019582072,0.009384311,-0.01891946,0.013866371,-0.011765405,0.0153101105,-0.022108618,0.035037633,-0.0009285997,-0.008199152,-0.01203476,0.025556356,0.0216992,-0.024694422,-0.041846916,0.020880362,0.012584243,-0.044389624,-0.014211144,-0.00049325544,-0.03393867,0.014049531,-0.021429844,-0.021203587,0.03536086,-0.0015124256,-0.01953359,-0.0013676476,-0.0021736908,-0.012745855,0.028163707,0.0041992366,-0.0036739956,-0.018143719,0.0023245295,-0.037300214,0.018973332,0.008565473,0.015611787,0.0052147033,0.024651324,-0.0177343,0.02971519,-0.012896694,-0.00572109,-0.012853597,-0.0056456705,0.018563913,0.007967507,-0.040446274,0.028960997,-0.01868243,0.0016686512,0.0038571565,0.012691985,0.0054571223,-0.0032403348,0.0043096724,0.028034417,-0.02590113,-0.011905469,-0.025534807,0.009384311,-0.018154494,-0.008037538,0.0025723355,0.0220332,0.017120173,-0.036739957,0.009136505,0.005791122,0.029025642,0.011840824,-0.0041292044,0.030555576,0.009017989,-0.013359983,-0.0049480423,-0.03678305,-0.014620563,-0.018553138,-0.0060066055,-0.008339216,0.007838217,-0.0070678624,0.033787828,-0.0007649668,-0.0011117607,0.0062382505,-0.0012114219,0.014221918,-0.017615786,0.007919023,-0.012465727,-0.03982137,-0.007999829,0.019695202,0.05611193,-0.01564411,-0.0036632214,-0.01834843,0.00419385,-0.002107699,0.042148594,0.0026248598,0.012961339,-0.019361202,0.031891573,-0.0007326443,-0.027862031,0.013112177,-0.024285004,0.032387186,0.002641021,0.01110818,0.054862127,-0.008770183,0.012788952,-0.012767403,0.026310548,-0.015633335,-0.039261114,0.014006435,0.027883578,-0.00052086427,-0.015471723,0.043807816,-0.04443272,-0.0065560886,-0.0033803992,0.01695856,-0.02523313,0.015730303,-0.0017548447,0.029779835,-0.0033965604,-0.058180574,-0.033744734,0.03941195,-0.04217014,-0.023832487,0.021246683,-0.011388308,0.0146528855,-0.0020282394,0.026181258,-0.022367198,0.0020632555,-0.018951783,0.004770268,0.0083930865,-0.007466507,-0.0018423848,0.03458512,-0.00013408804,0.0015959254,0.03115893,0.05887012,-0.024155712,0.0071217334,-0.0016632641,-0.0057264767,0.006189767,-0.026289001,0.014609789,0.018908687,-0.008425409,-0.027452612,-0.0427304,-0.018984105,-0.04012305,0.008279958,-0.0023716665,0.042795043,0.014512821,-0.010504826,0.030383188,0.03090035,0.038851693,-0.0004720438,0.023617003,0.0295859,0.0069978302,-0.021839263,0.0025952307,0.015579465,0.014523596,0.0011966074,0.015223917,0.012368759,-0.026116613,0.008247635,-0.022776617,-0.050250776,-0.017001657,0.00045823937,-0.026741516,0.0004373644,-0.004600575,0.010122343,0.0187363,0.0077520227,0.025987323,0.022281006,0.007919023,-0.0070139915,-0.036976986,0.0077897324,-0.004891478,0.0038867856,0.00008215313,0.010213923,-0.004772962,0.009594408,0.020460168,0.0011312889,-0.009551311,0.011118954,0.009987665,0.016990883,-0.024478938,-0.00101816,0.021171264,0.0020161185,-0.0023124085,-0.025577905,-0.023315327,0.018100623,-0.005559477,0.021613006,-0.011593018,0.024888357,0.02064333,-0.012131727,0.051845357,-0.03363699,-0.033486154,0.06477437,0.030081512,0.010337826,-0.01055331,-0.0029440448,0.006766185,0.010747245,0.021925457,0.03210706]);
INSERT INTO entities (id, name, description, description_vec) VALUES (27, 'Maye Musk', 'Maye Musk (née Haldeman) is Elon Musk\'s mother, a model and dietitian born in Saskatchewan, Canada, and raised in South Africa.', [0.04255442,-0.01406538,-0.005244179,0.056169063,-0.022548527,-0.01084086,0.01702408,0.021762623,-0.0166658,-0.0076105613,-0.033539634,-0.049465757,0.0056255744,-0.042346388,-0.046021648,0.080254726,-0.0006638293,-0.04183786,-0.059636287,-0.007454536,0.051499866,0.043571472,0.05034412,0.004215569,0.024339927,0.06305728,0.008535155,-0.014180955,0.026166,0.022560084,0.04722362,-0.013348821,-0.043432783,0.009650446,-0.00492924,-0.015278909,-0.01267849,-0.00056559127,0.008644951,0.030557819,-0.0070904773,-0.022340493,-0.018491872,0.091257386,0.025218291,-0.011690331,-0.03571243,0.009292166,0.048171327,0.03906408,-0.0333316,-0.039364573,0.049835596,0.02204,-0.026628297,-0.02136967,0.050112974,0.00006428815,-0.0068882224,0.056862507,-0.0014128946,-0.026397148,-0.038463093,-0.013152344,0.05940514,0.006096539,0.029586995,-0.009644667,-0.06097695,0.03795457,-0.029217158,0.03404816,-0.0036261405,0.032060284,-0.022248033,-0.050991338,0.001814515,0.010985328,-0.010713728,0.00774925,-0.014573907,-0.017313015,0.02517206,0.04162983,-0.025518784,-0.027737807,-0.0032216308,-0.02884732,-0.02294148,-0.027437316,-0.048679855,-0.041005727,-0.009309502,-0.0056197955,0.04241573,0.015614075,0.005307745,-0.0076625696,0.015001532,-0.016873833,-0.0036261405,-0.030095521,0.006553057,0.01559096,0.033308484,0.0007808482,0.04412623,-0.018711463,-0.027159937,0.047385424,-0.033216026,-0.032684386,0.04928084,0.01482817,-0.069899276,-0.016122602,-0.064767785,-0.035088327,-0.055336926,0.011343608,0.012794064,0.0074025276,0.006859329,0.0073042894,0.028708631,0.006275679,-0.03409439,0.03467226,-0.057602182,-0.0064490405,-0.010442129,0.021311883,0.025565013,-0.02893978,0.041722286,-0.027344856,-0.0066339592,-0.047339194,-0.0137071,-0.009280608,0.055568077,-0.01621506,0.033077337,0.022375165,0.00931528,-0.004004646,0.021843525,0.0058336076,-0.004371594,0.0033025327,0.018468758,-0.032823075,0.01263226,0.01263226,-0.026443377,0.003279418,0.006333466,0.00003512372,-0.046830665,-0.07345896,-0.007333183,0.037746534,0.0051806136,-0.046830665,0.056677587,0.047524113,-0.03041913,-0.032915533,-0.0074429787,-0.07960751,-0.05034412,0.04613722,-0.006813099,-0.050159205,-0.004045097,-0.014539234,0.0033256477,-0.045143284,-0.028754862,0.023022382,-0.003108946,0.02306861,-0.027784038,0.065831065,-0.02526452,0.027090592,0.009644667,0.016469324,0.03968818,-0.051915932,0.013926691,-0.019994337,0.0067437547,-0.007633676,-0.010228317,-0.031158805,0.028870435,-0.016249733,0.013487509,-0.0012214748,0.014550792,0.04717739,0.06523008,-0.0040797694,-0.016018584,-0.018757693,-0.017486377,0.0004258187,0.05787956,-0.0038543995,0.04928084,-0.0013038215,0.0103034405,-0.011048893,0.01227398,0.010205202,-0.04375639,-0.035735544,0.013210131,0.055937912,-0.0015443603,0.032383893,0.026720755,0.023831401,-0.020190813,-0.018387856,-0.022363609,0.009141919,-0.0036839277,0.00057606515,0.012851851,0.021959098,0.012435784,-0.0073909704,-0.02544944,-0.05034412,-0.03538882,-0.035365704,-0.006714861,-0.037076205,-0.00019196153,-0.003059827,0.005200839,0.02965634,0.020676225,0.040242936,-0.028153876,-0.038139485,-0.04058966,-0.014146282,0.03462603,0.03901785,0.037700303,0.012204636,0.006558836,0.012713162,-0.019797862,0.03726112,0.0155331725,-0.058665466,-0.03377078,0.02665141,-0.0027131045,-0.02674387,-0.0027174384,-0.00047204838,0.02056065,-0.050991338,-0.04743165,0.0039006292,0.030950772,0.008304006,-0.0069113374,0.023045495,-0.023993203,0.03462603,0.002692879,-0.04264688,-0.02342689,0.013163902,0.015244237,0.01008385,0.0072869533,-0.011788568,-0.011372501,0.054874633,0.055614308,0.058942843,-0.0035279025,-0.028015187,-0.01774064,-0.068835996,0.0016454877,-0.03561997,0.015221123,-0.019231547,0.01258603,-0.027876498,-0.01859589,0.011638322,0.055336926,0.07933013,-0.017058752,-0.03108946,-0.003767719,0.015244237,0.015047761,0.011973487,0.049142152,0.054366104,-0.048217557,-0.003929523,0.021912869,-0.04058966,-0.01639998,0.005770042,-0.0078012585,0.026928788,-0.0127016045,-0.016226618,0.006998018,0.018318512,-0.059774976,-0.010725286,0.0008660842,0.014342759,0.021797294,0.036359645,-0.06698681,-0.010783073,0.0028243444,-0.0023894967,0.020757126,-0.049511988,0.051268715,0.0052759624,-0.0047905506,-0.02074557,0.0076625696,-0.009777578,-0.056030374,-0.092366904,0.004027761,-0.0429936,-0.0552907,-0.06083826,0.0015255795,0.018318512,-0.0041462244,0.019185318,0.0031031673,0.0067264186,0.042485077,0.019589826,-0.034163736,-0.0032245202,-0.03298488,0.011985045,0.054504793,0.0056515783,-0.030534703,0.012643818,0.019797862,0.026004195,0.042369504,-0.03610538,-0.034741607,0.036706366,-0.013845789,0.013868904,-0.020814914,-0.008119088,0.02535698,0.03575866,0.013626198,-0.0106097115,0.0010820634,-0.017474819,-0.024987143,-0.03467226,0.033747666,-0.028870435,0.042092126,0.022571642,0.025102716,-0.03261504,0.052794296,-0.0403354,0.007726135,-0.03166733,-0.010546146,-0.004111552,0.022155574,0.025726818,0.011505412,0.050159205,-0.0034354432,-0.020456634,0.022883693,0.024224352,0.06550746,-0.05496709,-0.016596455,0.014134725,0.00022681437,-0.02101139,-0.006079203,0.008569827,-0.0074660936,-0.0011470739,0.008275113,-0.06305728,0.0055880127,-0.0059578503,0.061855312,-0.0451664,0.021670163,0.03723801,0.025957966,0.024131894,0.027576005,0.007494987,0.009985611,0.018341625,-0.0225832,0.025195176,0.038948506,-0.06661697,0.023103284,0.0060676457,-0.023900745,0.024409272,-0.035550624,0.0032534138,0.017047195,-0.036706366,-0.012285538,0.00631613,0.008587163,-0.0060676457,0.035273246,0.052655607,0.04627591,-0.023507793,0.025102716,-0.012886523,0.01685072,0.012909639,-0.03189848,-0.0021901312,-0.015822109,-0.0047414317,0.052563146,-0.015371369,0.01971696,0.011077787,0.022617871,0.032314546,0.014978416,-0.027807154,-0.004877231,0.0034932303,0.003678149,0.0002157987,-0.03518079,-0.0066859676,0.019035071,0.003490341,-0.03328537,-0.008552491,-0.010343891,-0.006056088,-0.05510578,0.033655208,0.0028098978,-0.026489606,-0.03767719,0.011343608,0.004094216,0.028523713,-0.0202486,0.013683986,-0.041028842,0.04255442,-0.01621506,-0.010713728,0.025749933,0.027275512,-0.008569827,0.024224352,0.007963062,-0.000301757,-0.004891678,-0.010008726,0.015660305,0.0014728487,0.0028965785,-0.04530509,0.017370803,-0.057093654,0.0037648296,-0.028824206,-0.002010991,0.05972875,-0.040659003,0.0045305085,-0.0039324122,-0.0029818143,0.0121352915,0.03633653,-0.033678323,-0.017393917,0.0040162033,0.01836474,-0.017220557,0.007246502,0.07105502,-0.00945397,0.0024675091,0.041907206,0.0030135973,0.024848454,-0.017844656,0.040312283,-0.015833665,-0.037561614,0.017093424,-0.0086044995,-0.01881548,-0.0066339592,0.02683633,-0.025380095,0.0059578503,-0.029771915,0.010060734,0.005576455,0.010078071,-0.027784038,0.000023159986,-0.015336697,0.008876098,-0.01545227,-0.020872701,0.012331767,0.014885957,0.018942611,-0.021600818,-0.01048258,-0.01661957,0.00047963293,0.032961763,0.020849586,0.04149114,-0.006836214,0.026859444,0.048217557,-0.015290467,0.007414085,0.013949806,0.017313015,0.00062662887,0.0328693,0.02056065,0.01890794,0.0006475767,0.025957966,0.0069517884,-0.013059884,-0.016122602,-0.032152742,0.010112743,-0.013545296,0.02593485,-0.027483545,0.01760195,-0.00095204246,-0.014261857,0.011881028,0.02764535,-0.0032534138,-0.008777861,0.011343608,-0.015221123,-0.04162983,-0.042508192,0.0565389,-0.012516686,0.033539634,0.007575889,0.018572774,-0.019000398,-0.01975163,-0.0040797694,0.011031558,-0.0032447458,0.010806188,-0.00040992725,-0.02625846,-0.020445077,0.0048685633,0.022294264,-0.022097787,-0.0138342315,0.011464961,-0.017405475,0.0014995752,0.007755029,-0.03518079,0.03319291,-0.007847488,-0.073551424,0.007177158,0.0022406948,0.0057324804,0.0119157005,0.018283838,-0.001814515,-0.0061832196,0.019728515,0.010147415,0.024964027,-0.030396014,0.03834752,0.022617871,-0.013152344,0.019312449,-0.001993655,-0.0065877293,-0.022063116,0.0014584019,0.02464042,0.010690614,0.050991338,0.01836474,-0.004663419,0.0058682803,-0.021970656,0.013071442,-0.0028055639,-0.026558952,-0.006084982,0.033539634,0.01993655,0.00057823217,-0.040566545,0.0129211955,0.013175459,-0.0024790666,0.014169397,-0.010759958,-0.014331201,-0.02598108,0.014677923,-0.0016050367,-0.03222209,-0.05935891,0.039849985,-0.021311883,-0.0022248034,0.010118522,-0.012042832,0.024155008,-0.0060098586,-0.034325536,0.007575889,0.04412623,0.001115291,-0.0073100682,-0.011985045,-0.00059267896,0.00047457658,0.0037908338,-0.0011759675,0.0078012585,0.052932985,-0.035735544,-0.007292732,0.020086797,0.038624898,0.0082577765,-0.01872302,-0.047847718,-0.0267901,0.030788967,0.033632092,-0.004646083,-0.0125282435,0.0019474253,-0.0033545413,0.014250299,-0.0059289564,-0.019046629,0.032383893,-0.026189115,-0.007755029,0.0008834203,0.02172795,-0.021577703,0.0030309334,-0.016735144,-0.001733613,0.06102318,-0.02602731,-0.005408873,-0.006275679,-0.017081868,-0.008980116,-0.0034614473,0.021982213,-0.042623766,-0.0029066913,-0.048772313,0.00976602,0.029263388,0.0582494,-0.0008834203,-0.008893435,0.013140786,0.035920464,0.043294095,0.018226052,0.019520482,0.00194887,-0.022929922,-0.005249958,-0.007633676,-0.008182653,0.0565389,-0.034209963,-0.004539177,0.010210981,0.031158805,-0.014666366,0.009950939,-0.02010991,0.0057844887,-0.021762623,-0.020421961,-0.014435218,0.0047789933,0.006841993,-0.013487509,-0.017578837,-0.021311883,0.0064432616,0.022837462,-0.004224237,0.0040508755,0.009297945,0.0003868124,0.005119937,0.0071367067,0.0053019663,0.04144491,-0.03175979,-0.021358112,0.025148947,-0.020271715,0.07202584,0.0020485527,-0.030488474,0.04458853,-0.013614641,0.0118290195,-0.0014880178,-0.030026177,-0.007194494,0.0027853383,0.015093991,-0.0048541166,0.019011956,-0.03127438,-0.0051748347,0.022525411,0.010702171,0.011580535,-0.011800126,0.028708631,0.00931528,-0.009696675,0.0030973887,0.00613699,0.021034505,-0.011124017,-0.040867038,0.006397032,0.01621506,-0.016272848,0.008078637,-0.03802391,-0.024247468,0.012736277,-0.020710897,0.0034152176,0.040312283,-0.014597022,0.026119769,0.0062294495,0.042115238,0.07604782,-0.012886523,0.019023513,0.036174726,-0.0043224753,0.036128495,0.041190647,-0.012978983,0.014701039,-0.01585678,-0.010199423,0.02454796,-0.01169611,0.049511988,-0.010193645,-0.020988274,-0.0035423492,0.008650729,-0.04664575,0.009321059,0.03730735,-0.007968841,0.025611242,-0.03982687,-0.023946974,0.0274142,-0.00774925,0.018295396,0.013764887,-0.007431421,0.012389555,0.023022382,-0.01787933,0.03090454,0.02468665,-0.022687215,-0.012008159,-0.0049119038,-0.050020516,0.00434559,-0.040266052,0.037700303,0.0098700365,0.013556854,-0.0004969691,0.007471872,-0.02280279,0.0038919612,-0.008460032,0.0071656005,0.023831401,-0.0059058415,-0.036128495,-0.000049119037,0.00018726633,0.010407457,0.025541898,-0.017266786,-0.025426324,0.0066628526,-0.041213762,-0.001810181,-0.06550746,0.00089570007,0.0291247,0.031921595,-0.03723801,0.026905674,-0.020098353,0.036706366,0.01299054,-0.009552208,0.009714012,-0.051777244,-0.035596855,0.02249074,-0.009771799,-0.006501049,-0.042300157,0.029170929,-0.0023302648,-0.017971788,-0.00904946,0.034117505,0.013106114,0.0011860803,0.03682194,0.009893152,-0.006980682,0.00703269,0.021878196,-0.021612376,0.0142271845,-0.026905674,-0.0062352284,0.0067495336,0.028708631,-0.033470288,-0.0067206398,0.001823183,-0.029795028,0.017174326,0.021623934,0.009297945,0.022409838,0.0009845478,0.022028442,0.013314148,-0.032314546,0.032892417,-0.029217158,0.0464146,0.009471306,0.024802223,-0.0411213,-0.032730613,0.027483545,0.024501732,-0.022016885,0.014204069,0.002607643,0.022432953,-0.03203717,-0.007471872,0.0027622234,0.0565389,-0.007957283,0.029309617,-0.0132679185,0.024524845,0.013233246,0.05182347,-0.02132344,-0.0057180338,0.005085265,0.035735544,0.038070142,-0.033123568,0.004140446,0.0014049489,0.001160076,0.016365306,-0.022363609,0.03132061,0.06814255,-0.016191946,0.047200505,-0.017555721,0.054735944,0.008176874,-0.026466493,-0.016087929,0.004501615,-0.00072161644,0.0043744836,-0.015833665,-0.021150079,0.02965634,0.021485245,0.03414062,0.021935983,-0.012285538,0.010996886,-0.0064259255,-0.03453357,0.004394709,0.005787378,0.06264122,-0.010367006,0.0034816728,0.036891285,-0.029402077,0.011164468,0.03467226,-0.014493004,-0.017370803,-0.048448704,0.03300799,0.020502863,-0.004622968,0.007315847,0.03471849,0.0060098586,-0.031413067,-0.018572774,0.026466493,-0.032245204,-0.0053886473,-0.04130622,0.039249,-0.0027983403,0.001381834,-0.01989032,-0.027737807,0.04350213,-0.012285538,-0.017775312,0.0073505193,0.020930488,-0.016365306,0.045767386,0.028084531,0.0033140902,0.022779675,0.0119619295,-0.024871567,-0.019740073,0.0015169114,-0.013025212,-0.033932585,-0.020317944,-0.0020485527,-0.001635375,-0.031158805,-0.0008458587,-0.01518645,0.009604217,-0.01084086,0.0033169796,-0.019035071,-0.01594924,0.038555555,0.01142451,0.029586995,-0.025819277,0.0029933718,0.017867772,-0.007593225,0.029101584,-0.003042491,0.025957966,0.0037908338,0.012412669,0.005273073,-0.032245204,-0.03203717,0.031736676,-0.017359246,-0.03749227,0.031066345,0.026882559,-0.038902275,-0.023057053,-0.030742738,0.0147934975,0.018029576,0.024571076,0.001635375,-0.0003893406,0.0020890038,0.010222538,-0.021993771,0.00869118,0.014677923,0.03372455,-0.0002017131,-0.031436183,-0.025403209,-0.0027521106,0.053117905,-0.0011470739,-0.005434877,-0.01787933,-0.0073967488,0.003964195,0.0023389328,0.000799629,-0.029217158,0.020606881,0.017729083,-0.029147813,0.032499466,-0.008991673,0.038948506,0.02387763,0.022895249,-0.0031782906,0.027830267,-0.00088414265,-0.021311883,0.03802391,0.0244555,-0.011459182,0.0061716624,-0.013811117,0.00020478303,0.018746136,-0.00094409677,0.003028044,0.011135574,0.03032667,-0.00023801062,-0.025218291,-0.005273073,0.014261857,0.006732197,0.01630752,0.010488358,0.03342406,-0.030049292,-0.006298794,0.0006403533,0.0025816387,-0.032823075,0.008928107,0.033123568,-0.0016411537,0.002343267,-0.044704102,-0.0017856214,-0.008269334,0.01738236,0.009974053,-0.020352617,0.003848621,0.009800692,0.00032414953,0.018087363,0.024478616,0.02436304,0.0044958363,-0.0024472838,-0.022236476,0.023900745,-0.009037903,-0.016688915,0.0011470739,0.0154985,-0.010806188,0.011349387,-0.01164988,-0.008668065,0.020190813,-0.012493571,-0.035989806,-0.04188409,0.0035365706,-0.0064894916,-0.04368705,0.022363609,-0.03920277,0.017324572,-0.00084007997,-0.003525013,-0.002692879,0.027391085,0.01406538,-0.020029008,0.06319597,0.01097377,0.006038752,-0.023033937,0.0041635605,-0.036775712,-0.005160388,0.04565181,-0.008280892,0.0045854063,-0.007859046,-0.019289333,-0.0008003513,0.010910205,0.027945843,-0.00083791296,0.031482413,-0.0058798376,-0.011678773,-0.0028561275,0.010575039,0.0020485527,0.032360777,-0.0040797694,0.017844656,0.03390947,-0.029101584,-0.0031465075,-0.027945843,0.00266543,-0.020329501,0.03682194,-0.00999139,0.035018984,0.000933984,0.0123086525,0.0014360094,-0.01886171,-0.009517536,0.0034845623,0.007177158,-0.019219989,-0.013163902,0.0019243105,0.0110893445,-0.02168172,-0.030534703,-0.03453357,-0.036752596,0.024501732,-0.027714694,0.032846186,0.0006923617,0.009950939,0.016134158,0.027367972,-0.028824206,0.03390947,-0.035989806,0.0027708914,0.010788851,0.0070442474,0.04116753,-0.0013117671,0.0031031673,-0.038555555,0.014319643,-0.03247635,0.029194044,0.030465359,-0.02316107,0.010719507,0.03867113,0.005024588,-0.016446209,0.020086797,-0.0040479866,-0.039572608,0.026350917,-0.012377997,-0.03705309,-0.000013656717,0.046183452,0.031806022,0.013383493,0.0073447404,-0.0034325537,0.042531308,0.038763586,-0.0064432616,0.009269051,0.005923178,-0.034695376,0.0027593342,-0.023484677,-0.0073216255,-0.021855082,0.02123098,0.015660305,0.0061889985,-0.0007060861,0.00029868708,0.018064247,0.015775878,-0.0059029525,-0.0028590169,-0.015798993,-0.039734412,0.009061017,0.01733613,-0.035943575,-0.0023678264,-0.008176874,0.009725569,0.044565413,0.0018621893,-0.0013890575,0.033747666,0.0096099945,-0.008806754,-0.012250866,0.02356558,0.009829585,-0.017497934,0.000008312539,0.0033400944,-0.008119088,-0.0071540433,-0.0059116203,-0.00067755376,0.0010445019,0.042092126,0.036452103,-0.031829134,0.018283838,0.034834065,-0.0004258187,-0.009910488,0.01312923,-0.006570393,-0.004354258,0.023137955,-0.016423093,-0.0002679877,-0.030303556,-0.022594756,0.0005627019,0.006593508,-0.007263839,-0.0061080963,0.0071713794,0.014897514,0.037885223,-0.035296362,-0.015036204,0.00092748296,-0.018792365,-0.04542066,0.0028431253,-0.002791117,0.013730215,-0.020780241,0.0058740587,-0.012112176,0.02230582,-0.030534703,-0.024524845,0.02526452,-0.014585464,-0.027252397,0.013256361,-0.035411935,-0.014781941,0.014839727,-0.030164866,-0.0040479866,0.0113089355,-0.0063508023,0.008627614,0.011534305,0.01406538,0.006217892,0.037168663,0.024617305,0.01679293,-0.0029789251,0.009592659,-0.021300325,0.010384342,-0.03906408,0.01671203,-0.014539234,0.011996602,-0.026766986,-0.0006649128,0.03485718,-0.030719623,-0.007038469,0.023923859,0.037561614,-0.02464042,-0.0137071,-0.030719623,-0.016134158,-0.02625846,0.02598108,0.008852984,0.01178279,0.03157487,0.015833665,-0.0047818827,-0.029887488,0.009349952,-0.012562916,0.035920464,0.021623934,0.0015039092,-0.0025744154,0.030835196,-0.022144018,-0.011395616,-0.023172628,0.016469324,-0.0059694075,-0.029471422,0.020237043,0.026605181,-0.04780149,0.021866638,0.03150553,0.026512722,0.008535155,-0.0015458049,0.05066773,-0.01850343,-0.010395899,-0.0014511786,-0.023484677,0.0000010637567,-0.010921762,0.041676056,0.0003503343,-0.013603084,0.025541898,-0.023103284,0.011857913,0.018064247,-0.018572774,0.030488474,0.0052990774,-0.023669597,0.015660305,-0.014076938,0.018341625,0.00085741613,0.013175459,0.018526545,0.02351935,0.035296362,0.0021959099,0.028500598,-0.037792765,0.039711297,0.017914,0.001635375,0.016284404,0.015128663,0.014215627,0.03409439,0.0038110593,-0.036452103,-0.023357546,0.047986407,-0.040196706,0.008448474,0.0047558784,0.009113026,0.013799559,-0.015463828,-0.032545697,-0.042947374,-0.008465811,-0.038278177,-0.00067394204,-0.025911735,0.012216193,0.0016859387,0.0007519546,-0.029910604,-0.015983911,0.010372785,0.0019315338,-0.008720074,0.022120902,0.00051538873,0.02884732,0.006241007,-0.035018984,0.0047558784,0.04447295,-0.00038717358,0.011522748,-0.038116373,0.031806022,0.0003055493,0.007263839,-0.0055533405,0.017185884,0.039341457,-0.012620702,-0.021439014,0.0066859676,-0.009448191,-0.008038186,0.0020846697,-0.0052355113,0.03323914,-0.0004207623,-0.006998018,0.026905674,0.0014909072,0.0015313582,-0.017266786,0.010731065,-0.027853383,-0.0123086525,-0.018676791,-0.037029974,0.01993655,-0.015382926,-0.027576005,0.013083,-0.0010567816,0.013730215,0.028107645,-0.024617305,-0.05931268,-0.02436304,0.013637756,-0.005102601,-0.021716392,0.004946576,-0.0017466152,0.0068651075,0.013233246,0.033216026,0.024501732,-0.011077787,0.007939948,-0.020572208,-0.00031313385,-0.021901311,-0.016018584,-0.0076856846,-0.0214159,0.015822109,-0.013510624,0.0150130885,0.031413067,-0.011592092,-0.005469549,-0.007050026,0.0004684367,0.017301459,-0.008639172,-0.021115407,-0.01833007,-0.04354836,0.04021982,-0.04093638,-0.023658039,0.024825338,0.023762057,-0.01890794,-0.03543505,0.030396014,0.012077504,-0.0011217921,0.034926523,-0.010326555,-0.01975163,-0.02893978,-0.017914,0.008477367,-0.030604048,0.008760525,-0.010580818,-0.022594756,-0.037538502]);
INSERT INTO entities (id, name, description, description_vec) VALUES (28, 'Errol Musk', 'Errol Musk is Elon Musk\'s father, a South African electromechanical engineer, pilot, sailor, consultant, emerald dealer, and property developer.', [0.04828272,0.00022389051,-0.01921824,0.007198371,-0.021408802,0.0129175475,0.0021538655,0.019986065,-0.032339036,0.021262012,-0.0064757112,-0.031029213,0.055825483,-0.06323275,-0.059303287,0.058128964,-0.01300788,-0.029290313,-0.038707476,-0.0043133767,0.04841822,0.008536421,0.031774458,0.006707188,-0.04367576,0.02486402,0.013233711,0.010083365,-0.011607726,0.039430138,0.034529597,-0.024525274,0.021284595,0.044917837,-0.019579569,0.019455362,0.018269747,-0.012477176,-0.019816693,0.026783586,-0.030758217,-0.05275418,-0.009801076,-0.005549803,0.034665097,-0.01943278,-0.06178743,-0.033558525,0.07746012,0.009123582,0.005100963,-0.007198371,0.03459735,0.00924779,-0.03288103,-0.014543532,0.004956996,-0.0032830217,-0.014103161,0.03784932,-0.013154671,0.012590092,-0.016361473,-0.038617145,0.0074354936,0.012228762,-0.025315683,0.009812368,0.014588699,0.05817413,0.0067918748,0.00624988,-0.006165193,-0.02212017,0.025428599,-0.043314435,-0.014261243,0.0007635919,-0.01668893,0.016564721,0.019206949,-0.004821497,0.004000036,0.013436959,-0.043156352,0.011980347,0.008169445,-0.05636748,0.023892947,-0.047605228,-0.050270036,-0.040581875,0.0147129055,0.013143378,0.035071593,-0.004976756,0.02123943,0.016959926,0.029448396,0.04053671,-0.025135018,-0.03997213,0.0021030535,0.0044037094,0.0061030895,0.027257832,-0.0025787107,-0.068381704,-0.013640207,-0.008903397,-0.04457909,0.002038127,0.031187296,0.04069479,-0.015695272,0.013493417,-0.06788487,-0.022854123,-0.02233471,-0.037442822,-0.016011436,0.007830699,0.018100375,0.0093607055,0.029222563,0.019466653,-0.06711705,0.029877475,-0.004310554,0.0048864237,0.017998751,0.031977706,0.0071532046,0.02218792,0.01163031,-0.040152796,-0.050044205,-0.059438784,0.012115846,0.011878723,0.013278877,0.007644388,-0.019500528,-0.02847732,0.0023528794,0.03143571,0.03130021,-0.008406568,-0.048011724,0.00495135,0.0040706084,-0.045008168,-0.001483429,0.04783106,0.017219633,0.036381412,0.001470726,-0.014566115,-0.037668653,-0.018190706,0.012590092,0.016011436,-0.0014947206,-0.0017064373,0.010337425,0.013403085,0.0074863057,-0.016485682,-0.018461704,0.008355756,-0.070143186,0.010060783,-0.04168845,-0.017332548,0.0040339106,-0.024773687,-0.0009922461,-0.02110393,0.023147702,-0.002066356,-0.0010289436,0.0066676675,-0.04265952,0.046656735,-0.057722468,0.05325101,0.023554198,-0.03527484,0.030735632,-0.040649626,0.004827143,0.019206949,0.026648087,0.022707332,-0.0068709156,-0.016056601,0.034303766,0.0007918208,-0.023147702,-0.028657986,0.016971217,0.0503152,0.07054968,0.0044714585,-0.06165193,0.01583077,-0.03592975,0.012928839,0.059438784,-0.0047904453,0.04625024,0.000039564577,-0.019331155,0.016203392,0.017931001,-0.034303766,0.03570392,-0.050721698,0.017524505,-0.0080791125,-0.02818374,0.034778014,0.029674226,-0.01684701,0.041010953,0.024660772,-0.027980492,-0.03721699,0.008615462,-0.033061694,-0.019026283,0.028838651,0.0031080025,-0.040491544,0.009377643,-0.030442052,0.007661325,-0.07050452,-0.018563328,0.021442678,-0.032180954,-0.0028864057,0.0035568422,0.00042202216,0.010975399,0.03202287,0.0025871792,0.0009724858,-0.0064926483,-0.0015229494,0.04652124,0.028816067,0.003458041,0.055960983,-0.019760234,0.03193254,-0.012206179,-0.0087961275,0.01864237,-0.050721698,-0.018100375,0.057270806,-0.030035555,-0.010806025,0.006340212,-0.00051411893,-0.0029245147,-0.04652124,-0.020279646,0.021137806,0.016948635,-0.0011023388,-0.055193156,0.008542067,-0.036652412,0.039046224,-0.01821329,-0.042591773,-0.029741975,0.02420911,0.017174466,0.031684123,0.013595041,0.013098212,-0.03699116,0.030735632,0.052573513,0.035658754,-0.0019859036,-0.002114345,0.027077166,-0.050360367,0.018269747,0.0068822075,0.0058095087,-0.00639667,0.02225567,-0.024570439,0.0070515806,0.027032001,0.04017538,0.03940755,0.0061030895,0.0058772583,-0.05302518,0.02197338,0.008423505,-0.011031857,0.006520877,0.033423025,-0.01698251,0.026241591,0.0045561455,-0.04819239,-0.011856141,-0.00096684,-0.035071593,0.025496349,-0.0046888213,-0.037171822,0.02420911,-0.03071305,-0.052709013,0.000004118553,0.000374033,-0.004409355,0.00025123727,0.043314435,-0.02132976,0.020403853,-0.020539353,-0.01769388,0.010710047,-0.043856427,0.05469633,0.026354507,0.0064079617,-0.016225975,0.0014721374,-0.037262157,-0.06381991,-0.048689216,0.020652268,-0.038842976,-0.019624736,-0.029651644,-0.025993176,-0.012906256,-0.023034787,0.053793002,0.004855372,0.031051796,-0.024118777,-0.040920623,-0.07800211,-0.021295886,-0.044624254,-0.00054058357,-0.00047212845,0.0396108,0.0010084776,0.012533634,0.0035709566,0.025067268,0.009467975,-0.014340284,-0.030171055,0.052212186,0.003949224,-0.02131847,-0.04733423,0.026580337,0.061245434,0.017953584,0.046001825,0.021645926,-0.016485682,-0.0030656592,-0.047514893,0.028725734,0.034281183,0.024457524,-0.022391168,-0.018156832,-0.012420719,-0.030464636,0.010580194,-0.03179704,0.041665867,-0.035907168,0.01929728,-0.008931626,-0.0015963446,0.02926773,0.013098212,0.033716604,-0.0007678262,0.007277412,0.004516625,-0.0068991445,0.045550164,-0.032384202,-0.0010818728,0.028003074,0.012273928,-0.009038895,0.0015836416,0.018585911,-0.045775995,-0.026219008,0.0071362676,-0.019602152,0.0010105949,0.0037092783,0.03997213,-0.03728474,0.07940227,0.0028059534,0.015130694,-0.004674707,-0.014633865,0.04146262,-0.012104555,0.026399674,0.009592182,0.037623487,0.0032068037,-0.008321881,0.023215452,-0.025338266,0.023757447,0.010851191,-0.03461993,0.01814554,-0.032068036,-0.053160675,-0.014791947,0.037013743,-0.047740728,-0.008570296,0.040288296,0.064858735,0.032790698,0.021024888,-0.0135160005,-0.018755285,0.018834326,0.030442052,-0.07045935,-0.016440514,-0.04819239,-0.007096747,-0.0044686357,0.019105325,-0.007717783,0.004818674,0.02276379,0.026851336,-0.03288103,0.0144532,-0.009112291,-0.0035399047,0.0153113585,-0.07167884,0.004025442,-0.03200029,0.004129889,0.025677012,-0.011777099,0.019173073,-0.0031559917,0.02651259,-0.04733423,0.028725734,0.030622717,0.0144532,0.0015667042,-0.05952912,-0.047018066,-0.049411878,-0.024728522,0.02811599,-0.038684893,0.0074693686,0.010828609,-0.02262829,0.011517393,-0.014724198,-0.063187584,0.025202768,0.0190037,-0.013301461,0.00003180163,-0.0094341,0.02746108,-0.021160388,0.00061256724,-0.047424562,0.023734864,-0.0012103143,-0.0027255008,-0.0075766384,0.002088939,0.033761773,-0.049547374,-0.006944311,-0.007379036,-0.039204303,0.050134536,0.048824716,0.016711513,0.030080723,-0.013595041,0.037668653,-0.0059280703,-0.021499135,0.03859456,0.002887817,-0.009208269,-0.032722946,-0.030193638,0.008118633,-0.0112238135,0.06120027,-0.010388237,-0.0067749373,0.005140484,-0.011184293,-0.053160675,0.0153904,0.022515375,0.012680424,-0.0038476,0.0010049491,0.004779154,0.004928767,0.01770517,-0.00459002,-0.0040621394,-0.0037883192,0.0037233927,0.02398328,-0.0035794254,0.014328993,-0.01094717,0.047379397,0.003610477,0.022142753,0.006165193,0.03188737,0.026602922,0.034281183,0.04247886,-0.036516912,-0.0017205519,0.031187296,0.014995195,0.0023655824,0.02558668,-0.039633386,-0.026535172,0.058219295,0.02601576,-0.017806794,-0.01821329,0.061832596,0.0028934628,0.028003074,-0.031322796,0.010269676,-0.0045561455,0.017422881,0.00008552476,-0.022346003,0.045505,-0.0006422076,0.026399674,0.0045448537,0.036245916,-0.012443302,-0.004770685,0.000015228172,-0.009569599,-0.010021262,-0.03446185,0.019929608,-0.022368586,0.010388237,0.015638813,0.02117168,0.012590092,0.0057219993,0.0077573033,-0.006323275,-0.013154671,0.011043148,-0.0018786337,0.01568398,0.0016753856,0.033761773,-0.013177253,-0.035094175,0.00016893235,0.01763742,0.008288007,-0.019952191,-0.0019506174,-0.015864646,-0.017163174,-0.020753892,-0.04460167,0.0153113585,-0.02999039,0.0040677856,0.01145529,0.005984528,0.03281328,0.012827215,0.00954137,0.039949547,0.0081976745,-0.03166154,0.02926773,0.021781424,-0.007977488,0.032474533,0.030419469,0.037487987,0.02145397,0.02276379,0.011585143,0.022052422,0.0024869666,0.015017778,-0.03315203,0.0032180953,-0.016395349,0.0094115175,0.0035229675,0.008129925,-0.015695272,0.01755838,-0.015808187,0.021724965,-0.061832596,-0.011969056,-0.009993033,0.0028737027,0.011449644,0.012736882,-0.020008648,-0.013188545,0.03918172,0.0020847048,-0.029719392,-0.0009993033,0.023780031,0.0031559917,-0.04995387,0.013843455,-0.01698251,0.030825965,-0.008750961,-0.042185277,0.009569599,0.034778014,0.010134177,0.0035653107,-0.022458918,-0.009767202,-0.012251345,0.018676244,-0.0147129055,-0.006120027,0.058580626,-0.06418124,-0.013165962,-0.009005021,-0.00053423207,-0.021284595,-0.0074354936,0.0020974078,0.0012872381,0.028928982,0.00469729,0.006227297,-0.027167499,-0.035229675,-0.005484876,0.011178647,0.015266192,0.02384778,0.06991735,0.0036189458,-0.0007586519,-0.014983904,0.052076686,-0.007977488,0.006842687,-0.047605228,0.007819407,0.056683645,-0.03620075,0.011698059,-0.0018419361,-0.027370747,0.020878099,0.0068709156,-0.008525129,-0.01373054,0.0046888213,-0.011664184,0.009422809,0.022741206,0.041530367,0.0040423796,0.009146166,-0.01091894,0.004985225,0.028657986,0.018303623,0.012161013,-0.036968574,-0.016508264,-0.017614838,0.008090405,0.019173073,0.08179608,-0.06914953,0.020686142,0.019263405,0.01857462,-0.029087065,0.026693253,-0.023825197,-0.0045053335,-0.032474533,-0.021634633,-0.022515375,0.007362099,-0.026535172,-0.0026450485,0.004999339,-0.03737507,-0.020008648,0.022741206,-0.017535796,0.0067467084,0.015209734,0.03071305,-0.0020197781,0.005865967,0.0012209002,0.004256919,-0.012872381,-0.018506872,0.008017009,-0.017479338,0.04247886,0.018992407,-0.009129228,0.0020282469,-0.009676869,0.03635883,0.023780031,0.013425668,0.016000144,0.004982402,-0.0044940417,0.028567653,0.01770517,0.013843455,0.006108735,-0.004383949,0.021521717,-0.003302782,0.014441908,0.025699597,0.010365655,0.0016626826,-0.00946233,-0.031751875,0.03179704,-0.008621108,-0.04638574,0.013357919,-0.024186527,0.007683908,0.03513934,-0.034416683,-0.0066281473,-0.012330386,-0.017456755,0.023892947,0.031232461,0.0022427866,0.009315539,-0.007875864,-0.0069556027,0.06133577,0.01221747,0.0055272197,0.029674226,-0.00084827864,0.02023448,0.02499952,-0.009710744,0.007825052,-0.04378868,0.008321881,-0.018766576,0.01921824,0.030600134,0.026693253,0.004750925,0.011957765,0.008389631,-0.061019603,-0.01943278,-0.017716462,-0.023599366,-0.007881511,-0.00841786,-0.006374087,-0.00081158103,0.015695272,0.027980492,-0.011387541,0.0071080388,0.043314435,0.0076500336,-0.008559004,-0.007452431,0.019173073,-0.050044205,0.011743225,0.010128532,-0.028703151,-0.03303911,-0.026083509,0.025451181,0.03028397,0.012262637,-0.016034018,0.0396108,0.0060805064,0.0022540782,-0.013030463,0.0015257724,-0.00881871,-0.007350807,-0.054244667,0.009134874,0.0026422257,0.014509657,0.05889679,-0.056683645,0.003483447,0.0135837495,-0.01488228,-0.024299443,-0.037826736,0.021182971,-0.008276715,-0.0044686357,0.0049908706,0.016429223,0.0073395157,0.010710047,0.006656376,0.017287383,-0.005905487,-0.07944743,-0.028816067,-0.0007403031,0.009710744,-0.056683645,-0.012161013,0.038707476,0.015480733,-0.031390544,-0.0025377786,0.024322025,-0.0035032074,0.0032322097,0.010681818,0.017976167,0.008530775,-0.03807515,0.022820247,-0.028364405,0.054334998,0.027144916,-0.021736257,-0.019489236,0.0018743994,0.01387733,0.00467753,0.021691091,-0.018292332,0.021645926,-0.014475783,0.02059581,0.036765326,-0.025067268,0.00032427956,-0.015187152,-0.061968096,0.04460167,-0.009834951,0.055464156,0.014938737,0.036381412,-0.017038967,-0.031119546,0.006323275,0.027280414,-0.006086152,0.009479267,0.0013415788,-0.02183788,-0.023870364,-0.037668653,0.016508264,0.04950221,-0.026602922,-0.021713674,0.009010667,0.045505,0.011675475,-0.0064644194,-0.0080960505,0.030984048,0.0087961275,0.022526667,0.019071449,-0.019816693,0.008389631,0.0072322455,0.03337786,0.031277627,0.008327527,0.0023401764,0.03692341,0.01929728,0.023396118,-0.029832307,0.079989426,0.03807515,-0.028003074,0.005967591,0.020132856,-0.008378339,-0.010280968,0.024909187,-0.018348789,-0.00034827413,0.024683356,0.034077935,0.0117883915,0.00063162175,-0.008017009,-0.0068822075,-0.019285988,-0.004203284,0.018484287,0.022075005,0.030261388,0.0029612123,-0.006379733,-0.060613107,0.0037854963,-0.029335478,-0.04963771,-0.000339629,-0.0055356883,0.017671295,0.0019096856,-0.0039181723,0.0067297714,0.034303766,0.034303766,0.038910724,-0.00050035736,0.011381895,-0.022808956,0.011161709,-0.025360849,0.0134482505,0.00063550327,-0.025835095,-0.043427348,-0.0015285952,0.021216845,-0.01719705,-0.014848405,-0.020178022,0.042388525,-0.016824428,0.04972804,0.052167017,0.013504709,-0.01640664,0.021871757,-0.015435566,-0.015141985,0.040265713,0.009112291,-0.014972611,0.033264942,-0.0007381859,0.02709975,-0.05876129,-0.0087114405,0.009846242,0.0012604207,0.018269747,-0.035523254,-0.026264174,0.031729292,0.009908346,0.023757447,0.04378868,-0.057677303,-0.01683572,0.019161781,-0.010670527,-0.011297208,-0.023463868,0.04293052,0.005521574,0.01915049,-0.008880814,-0.04089804,-0.0039605154,0.018823035,-0.0044516986,-0.0760148,0.006554752,0.007994426,-0.0022554896,-0.021916922,0.011184293,0.021024888,0.02131847,-0.018190706,0.020618392,-0.008903397,0.011353666,0.029900057,-0.009281664,0.045911495,0.014904862,-0.0047847996,0.017829377,-0.04010763,-0.015514607,0.0029866183,0.03317461,0.006368441,-0.00030081428,-0.024005862,-0.0028595882,0.024638189,0.007198371,0.006893499,-0.03093888,0.03303911,-0.03317461,-0.014114453,0.033129442,-0.0037375072,0.012127138,0.008880814,0.010026908,0.012725591,0.013109504,-0.0043641888,-0.057451468,0.026535172,0.07050452,-0.016609889,-0.0061426098,-0.03606525,-0.002704329,0.00030187287,-0.0025151956,0.01943278,0.0113085,-0.024525274,-0.01915049,0.0007297172,0.009846242,0.036900826,-0.016124351,0.01022451,0.0093607055,0.024051027,-0.009428455,-0.03188737,-0.016632471,-0.016926052,-0.03337786,0.0007487717,0.028522486,-0.01066488,0.015729146,-0.015187152,0.035523254,-0.019895732,-0.011585143,0.014690323,0.004180701,-0.018800452,-0.0007088984,0.0018264102,-0.0005137661,0.021815298,0.01213843,0.0022329064,-0.013899913,0.0063853785,0.021250721,-0.022142753,0.005445356,-0.024818854,0.013098212,-0.006120027,-0.00043790092,-0.040807705,-0.02183788,0.012703008,-0.011743225,0.012804632,-0.012691716,-0.014069287,0.01640664,0.01022451,0.019850567,0.009535724,0.038933307,0.00877919,0.050902363,0.021691091,-0.007932323,0.008073467,0.018743994,0.07104651,0.03200029,0.006323275,-0.0056457813,0.01496132,-0.0075709927,-0.024705939,0.00046965844,-0.009665578,-0.012127138,-0.019974774,-0.016000144,0.0041242433,-0.024299443,0.028996732,-0.010902003,0.01336921,0.00067043654,-0.04299827,0.009253436,0.01762613,0.012635258,0.0012300746,0.022775082,0.004564614,0.02680617,-0.018371372,-0.013132087,-0.02558668,0.015153277,-0.008000072,0.03337786,-0.0062329425,0.059303287,-0.0038532456,0.019929608,0.02196209,-0.015525898,0.0087453155,-0.025022103,-0.0135160005,0.005832092,-0.015221026,0.0043274914,-0.010642298,-0.02999039,-0.007170142,-0.0035060302,-0.025970593,-0.0040734312,-0.009851888,0.020765183,-0.027867576,0.0123529695,0.0188682,0.008649337,-0.007638742,0.029583894,-0.040130213,-0.004307731,-0.027641745,0.01163031,0.0432241,-0.0023218275,-0.01069311,-0.034439266,0.0033197193,-0.036313664,0.059438784,0.027348164,0.0076952,0.010151114,0.009857534,0.0032830217,-0.0023175932,0.0029019315,0.028816067,-0.026693253,0.014317702,-0.031616375,-0.04401451,-0.02637709,0.057496637,0.018619787,0.032745533,-0.033400442,-0.0005225876,0.010213219,-0.004516625,-0.020516768,-0.0064418362,-0.017908419,-0.016519556,-0.016745387,-0.015909811,0.0073903278,-0.00032251526,0.045753412,0.018902076,-0.009010667,0.007429848,0.0069047906,0.006170839,0.011246396,0.037126657,-0.029651644,0.016350182,-0.03708149,0.008931626,0.041665867,-0.009338122,-0.0043698344,0.012206179,0.009569599,0.026715837,-0.0067410627,0.029154815,0.005448179,0.02601576,0.029900057,-0.012409427,-0.0022385523,0.024073612,-0.015706563,-0.007926676,-0.0011355077,-0.019613445,0.008587233,0.025044685,-0.013899913,0.042365942,0.03382952,0.039294638,-0.00469729,0.0093098935,0.01698251,0.013278877,-0.02297833,0.017897127,-0.03662983,-0.016135642,0.035094175,-0.0069217277,0.020347396,-0.014825822,0.0015511784,0.0010952816,0.011443999,0.006046632,-0.008750961,-0.018371372,0.032429367,0.02739333,-0.013990246,-0.0012583035,0.0104559865,-0.047650393,-0.03333269,0.017931001,-0.033739187,0.022921871,-0.0050162766,-0.010890712,-0.03714924,0.040875457,-0.001559647,0.020110272,0.016790554,-0.016248558,-0.028228907,0.0046549467,-0.04674707,-0.014972611,-0.006532169,0.009270373,-0.04040121,0.015085528,0.001844759,-0.0026930377,0.009366351,-0.0019252114,0.018540746,0.012307803,0.0009576656,-0.001193377,0.02269604,0.010851191,-0.028454738,0.017547088,-0.019636028,-0.008350111,-0.04568566,-0.01633889,-0.000104799816,0.01633889,-0.009693806,-0.022278253,-0.01908274,-0.00044354668,0.024231693,0.043291852,-0.038481645,-0.019342447,-0.019331155,0.0013874507,0.013922497,-0.011619017,0.026219008,0.034145683,0.04855372,-0.008700149,-0.036471747,0.0144532,-0.0198054,0.012590092,0.00023676995,0.030171055,-0.015819479,0.0289064,0.02073131,-0.0071532046,-0.009710744,0.015582357,0.015254901,-0.007847636,-0.0047368105,-0.007271766,-0.0051489524,0.012770757,0.026422257,0.02225567,-0.015333942,-0.035071593,0.017332548,0.0035173218,0.011946473,-0.015819479,-0.011077023,-0.0724015,-0.00057128246,0.035297424,0.0041976385,-0.006470065,0.0398818,-0.033919852,-0.012104555,0.030848548,-0.0030543676,0.03396502,0.00045272108,-0.007458077,-0.0016796199,-0.00372057,0.0032943133,-0.00711933,0.02110393,0.025789928,0.009563954,-0.018563328,0.0054058353,0.040152796,-0.03873006,0.022199212,0.03130021,-0.028996732,-0.0031559917,0.029674226,-0.017772919,0.0017868897,0.008389631,-0.019466653,-0.033310108,0.0252931,-0.0039802757,-0.0141822025,-0.00024559148,-0.007045935,-0.013030463,-0.02999039,-0.027506245,-0.00975591,0.036742743,-0.034190852,-0.023825197,-0.021736257,0.027348164,-0.01849558,0.013527292,-0.008909043,-0.007796824,0.015796896,0.021736257,-0.008897752,0.031842206,0.0039294637,0.026309341,-0.021657217,-0.023825197,-0.037104074,0.019014992,0.0019252114,0.01813425,-0.031977706,0.010060783,-0.043088604,-0.014272535,-0.043833844,0.010139823,-0.0056147296,-0.0019308572,-0.02450269,-0.0040621394,-0.017422881,-0.0038617144,0.021182971,-0.018314915,0.00805653,-0.012511051,0.022018546,0.034936093,0.01821329,-0.02782241,0.0069838315,0.03231645,0.015887229,-0.0013225243,-0.0065265233,-0.040017296,0.022413751,0.014972611,0.00924779,-0.003381823,0.02067485,-0.01814554,0.011810974,0.02680617,-0.034213435,-0.018664952,-0.022075005,-0.015661398,0.009812368,0.023621948,0.027980492,0.010275322,-0.007966197,0.013109504,0.019771526,-0.048689216,0.02522535,-0.002590002,0.008045238,0.007932323,-0.00070007687,-0.013041754,-0.011946473,-0.005623198,-0.036449164,-0.014611281,0.0009357882,0.009270373,-0.008988083,-0.012872381,0.024005862,0.007147559,-0.014577407,0.0043698344,-0.039904382,0.0033112506,0.039362386,-0.04031088,-0.028161157,0.00831059,-0.004973933,-0.012251345,-0.021205554,-0.024051027,-0.0035737795,0.019387612,0.01156256,0.027415914,-0.008299299,-0.020900682,-0.015085528,0.0026379912,-0.014667739,0.018676244,-0.0111391265,-0.0035286134,-0.009196978]);
INSERT INTO entities (id, name, description, description_vec) VALUES (29, 'Kimbal Musk', 'Kimbal Musk is Elon Musk\'s younger brother.', [-0.011928884,0.00040459167,-0.03678257,0.03563173,-0.026734864,-0.0028024025,0.038641617,0.053159885,-0.047715537,-0.04678601,-0.044949096,-0.036118623,-0.016875276,-0.043289233,-0.030563615,0.008675552,-0.041540843,-0.049220476,-0.04877785,0.008581493,0.042249054,-0.016842078,0.025406973,0.05758619,-0.014551468,0.0054830816,-0.029434908,-0.02888162,-0.0066007227,0.029988196,0.048866373,-0.0194204,-0.04820243,-0.011973147,-0.03107264,0.049220476,-0.0070820833,0.026159445,-0.036074363,0.037800618,-0.011962081,0.005474782,-0.018181035,0.013356366,-0.012083804,-0.01059546,-0.07006836,0.0043294765,0.018778587,-0.0013942851,0.034680076,-0.011995278,0.0021260083,0.0040224018,-0.031316087,-0.021390105,0.024388924,-0.04160724,-0.018933507,0.024588108,0.02653568,0.0076077064,-0.03003246,-0.021135593,-0.034193184,-0.016598633,0.0055218115,0.03175872,-0.0035659396,0.019851964,-0.0021785705,0.035012048,-0.01319038,0.012426843,-0.03122756,0.012028475,-0.0117628975,-0.0058205873,0.017328972,-0.0051289774,0.018856047,-0.009782127,0.022186838,0.0014330152,-0.08348005,0.019531058,-0.03563173,0.0025700217,-0.025252054,-0.019774504,-0.060419023,-0.01795972,0.019243348,0.04193921,0.07254709,0.026469287,0.012371514,0.0153924655,0.016266659,0.07281267,-0.026889784,-0.006036369,0.01884498,-0.0007649203,0.0392613,0.029058672,0.024853686,-0.0206487,-0.019874096,0.046122067,0.0046033543,-0.036140755,0.05276152,0.061658386,-0.021102395,-0.017893326,-0.02797423,-0.019973688,-0.06966999,-0.061968226,-0.010518,-0.027000442,-0.0035106107,-0.0142416265,-0.052938573,-0.061348546,0.008869203,0.026889784,-0.04616633,-0.007447253,0.013677273,-0.03324153,0.023415137,0.028151281,0.04953032,-0.017472828,-0.038066197,-0.036893226,-0.014628928,0.015403531,-0.00048862223,-0.01905523,0.023857769,-0.02609305,0.016443713,0.0065121967,0.00047824808,-0.0071429447,-0.04408597,-0.026779126,0.023525795,-0.030497221,-0.023193823,0.01088317,-0.04309005,0.005112379,-0.0048025376,0.023879899,-0.043333497,-0.030718535,-0.009837456,-0.0021163255,0.026911916,0.028682437,0.01436335,0.012581764,-0.02057124,0.009715733,-0.024610238,-0.009051788,0.0011383896,0.023680715,0.0029932868,-0.030585747,0.016089607,-0.0071097477,-0.016642895,-0.03636207,-0.038309645,0.049928688,0.0047831726,-0.009898318,0.02126838,0.053735305,-0.054310724,0.043399893,0.002774738,-0.0015381399,0.015480991,-0.016853144,0.039482612,0.0010996594,-0.04590075,0.019464662,0.0006604873,-0.017340038,0.0029351916,-0.0047389097,-0.040390007,-0.028682437,0.020759357,0.008736414,0.0041911546,-0.00853723,-0.043908916,0.011054689,-0.031183297,-0.01869006,0.0042962795,-0.02828407,0.044440072,0.018811783,0.044926964,0.009505483,-0.029678354,-0.008708749,-0.030408695,-0.029147198,-0.045767963,0.005366891,-0.0033335588,0.02755373,-0.035742387,-0.008907933,-0.0049602245,0.019796636,-0.008681085,-0.03873014,-0.033042345,-0.025185658,-0.0015173916,-0.007369793,-0.0020084346,-0.021467565,-0.01015283,-0.0070986818,-0.0063406774,-0.04517041,-0.004061132,-0.030231643,-0.018678995,-0.013666207,0.038198985,0.023105297,0.0067999065,0.00412476,-0.025738945,-0.044816308,-0.044395808,0.010667387,0.018192101,0.031293955,-0.011951015,0.02726602,-0.030807061,0.021179855,-0.025871735,0.043753996,0.031249693,-0.05364678,-0.03284316,-0.010141765,-0.03149314,-0.02080362,-0.03151527,0.05616977,-0.011906752,0.007225938,-0.0045784563,-0.00018465979,0.035963703,-0.017483892,-0.06851915,-0.040921163,-0.016819948,0.021179855,0.0013368815,-0.016310923,-0.031293955,0.042249054,0.02043845,0.04780406,0.002232516,-0.01007537,-0.01764988,0.002106643,0.078345545,0.04559091,0.008924532,-0.006827571,-0.031736586,-0.033175133,-0.025119264,0.048910636,0.017749472,0.009577411,0.035432547,-0.018324891,-0.00059651333,0.0023694548,0.028793095,0.0049270275,-0.022020852,-0.033927605,-0.020560173,-0.006727979,-0.037402254,0.012880539,-0.013146117,0.03149314,-0.018833915,0.010136232,0.015735503,-0.044351544,0.000114807204,-0.0013472557,-0.03957114,-0.031249693,0.0041219937,-0.02301677,-0.0027968695,-0.07440614,-0.04793685,-0.017063394,0.007131879,0.046697486,0.025606157,0.039659664,-0.017041262,-0.003582538,-0.033197265,-0.013146117,-0.0017608382,-0.06263217,-0.0063130134,-0.0032007697,0.056523878,-0.031139035,-0.0029434909,-0.010910834,-0.051876258,-0.017052328,0.01991836,-0.016454777,-0.03109477,-0.02390203,-0.012050607,0.0035963703,-0.0052562337,0.01305759,-0.005416687,0.0046697487,0.06639453,-0.011541583,-0.022518812,0.017826932,-0.026070919,-0.013865391,0.06387154,0.015691241,0.0049851225,0.049043424,0.031559534,0.02578321,0.031471007,-0.041430186,-0.053823832,-0.03503418,-0.015768701,0.018181035,-0.034370236,-0.0038591821,0.058559977,0.014153101,0.05205331,0.00242755,0.022950375,0.014551468,-0.049220476,0.009018591,0.05510746,0.015005164,-0.019254414,0.014717454,0.022330694,-0.0013209746,0.0024068018,-0.012780947,-0.013367432,0.041231003,-0.027642256,0.002340407,-0.019099493,0.015890423,0.011630109,0.021434367,0.033064477,-0.040500663,-0.009350563,0.06997983,0.03784488,-0.040832635,-0.016908474,0.0055522425,-0.0022657134,0.0030430825,0.021135593,0.0026433321,-0.0015104755,-0.033197265,0.046077803,-0.05200905,-0.0153924655,-0.05143363,0.017660946,-0.021168789,0.00824952,-0.0015284574,0.028173411,0.015713371,0.034680076,0.002478729,-0.05559435,0.0075745094,0.024388924,0.03576452,0.021722076,-0.021865932,0.07378645,-0.03521123,0.0011293986,-0.029058672,-0.019885162,-0.0073421285,-0.004188388,-0.051920522,0.0027733548,0.033020213,-0.049972948,-0.057630453,0.008000541,0.008791742,0.034392368,0.024698766,-0.036649782,0.002181337,0.006135961,0.015868293,-0.06334038,-0.018833915,-0.015591648,-0.03109477,0.022452416,0.022474548,-0.0052230363,-0.024986474,-0.005505213,0.018003983,0.013035459,-0.009472286,-0.051831998,-0.029545566,-0.0024109513,-0.039371956,0.035963703,-0.0335735,-0.0030735135,0.015281808,0.007762627,-0.0014786616,0.056081247,-0.027642256,-0.07028968,0.025229922,-0.013289971,0.018944573,0.034967784,-0.036140755,-0.0064070723,0.00048032292,-0.003701495,-0.007895417,-0.0028148515,0.033927605,-0.01907736,-0.055195987,-0.0010111333,-0.00058302697,-0.033529237,-0.020991737,0.048290953,-0.016753552,-0.03403826,-0.007972877,0.028040623,-0.0073753255,0.027354546,-0.0009281402,0.0036461663,0.0039809053,0.017660946,-0.0013237409,-0.0044733314,0.07113067,-0.03266611,-0.012924802,-0.029147198,-0.0075634434,0.020349924,0.08595879,-0.0046061203,0.0009219157,0.027730782,0.016687158,-0.008199724,-0.021755274,0.023038901,-0.034060393,0.024543844,0.009831923,-0.020504843,-0.016476909,-0.04753848,0.0028826292,-0.015414597,-0.03633994,0.0067999065,0.0001465348,-0.05585993,-0.027022574,0.04264742,-0.0072923326,0.040235084,-0.013467024,0.017915457,-0.015104756,0.018291693,-0.03490139,0.022817587,-0.019741306,0.010429474,-0.0092565045,0.01003664,0.036716174,-0.005341993,-0.008426572,-0.005211971,-0.011397728,-0.004860633,0.017926523,0.038752273,0.011253873,0.052717257,-0.0065730587,0.042027738,-0.0042547826,-0.008349112,-0.0013050674,0.049353268,-0.004437368,-0.018424481,0.0073255296,0.031271823,0.018955639,0.0117407665,-0.011630109,0.034768604,0.008243987,-0.033484973,0.016487975,0.011818226,0.0075247134,-0.0054775486,-0.005687798,0.031913638,0.009472286,0.0129579995,0.024654502,0.015923621,-0.0061082966,-0.0013119836,-0.008753012,-0.010551197,-0.07785865,0.008891334,0.02638076,-0.0054028546,0.01209487,0.006539861,-0.01957532,0.02111346,-0.034016132,0.01801505,-0.010346481,0.013599813,0.04058919,-0.012714553,-0.040080164,-0.010103034,0.0038315176,0.027952097,-0.014064575,-0.029589828,-0.0076907,-0.031316087,-0.0025146927,0.005732061,-0.003928343,0.011696503,-0.0006483841,-0.027597994,-0.001791269,-0.03503418,0.028483253,-0.0050957804,0.004874465,0.020792553,-0.018601535,0.0033197266,0.018811783,0.030408695,-0.035698127,0.024720896,0.0059257117,-0.005311562,0.047449958,0.05068116,-0.014994098,-0.015835095,0.026956178,0.033905473,0.020847883,0.0005736902,-0.0092011755,-0.018524073,0.011641175,0.010169429,0.036804702,0.041120347,0.006373875,-0.026646338,-0.0141752325,-0.014462941,-0.02405695,-0.037446514,0.015149019,-0.0101141,0.013500221,-0.0032339669,-0.017638814,0.007414056,-0.03193577,0.021611419,-0.014971967,-0.033462845,-0.043466285,0.0024731962,-0.031205429,-0.018070377,0.025539763,0.02192126,0.019951556,-0.0412974,-0.033529237,-0.0041856216,0.037446514,-0.017583484,0.009018591,-0.021666748,-0.014628928,-0.00922884,0.033042345,-0.01816997,-0.018424481,0.033108737,-0.0066671176,-0.0039753723,-0.0013887523,-0.000008607299,-0.0048827645,-0.013854325,-0.027575862,-0.024012689,0.031913638,0.00009431827,-0.034945656,-0.011342399,-0.013455958,0.00073656434,0.018789653,-0.004589522,0.03209069,0.011004893,-0.0254955,0.008592559,-0.024167608,0.039969508,0.0092620365,-0.023083165,-0.03175872,0.00010996594,0.0015395231,-0.041872818,0.0037817217,0.029302118,-0.026624206,-0.0000058192472,-0.008924532,-0.02418974,-0.0072812666,-0.012891605,-0.0051594083,0.014595731,-0.014983032,0.03005459,-0.024543844,-0.0017331738,-0.014706388,0.0007780609,0.017561354,0.0012123918,0.0039421753,-0.046343382,-0.019221216,-0.010661855,0.03753504,0.018557271,0.038530957,0.00026246588,0.028151281,0.019531058,0.010246889,-0.044772044,0.0018216999,0.005643535,-0.011276004,-0.035388283,-0.0057597253,-0.02228643,0.01634412,0.00696036,0.011309202,0.021799536,0.003878547,-0.018501943,0.019099493,0.022386022,0.029102936,0.019431466,-0.022319628,0.009599542,0.0054969136,0.021412237,0.030231643,-0.010014508,-0.022242168,0.021124527,-0.04736143,0.04864506,-0.026159445,0.008885801,0.01246004,-0.0046835807,0.016731422,0.0303423,-0.02249668,0.008764078,-0.017428564,0.038198985,-0.013953917,0.050327055,-0.018822849,-0.0072370037,-0.021755274,0.029147198,0.018535139,-0.037734225,-0.0061580925,0.015115822,0.018181035,-0.0048772315,0.020493777,0.004274148,0.0050708824,0.00045507916,-0.011098952,-0.007762627,-0.030607877,-0.0011909519,0.0041219937,-0.04806964,0.03182511,-0.016532239,-0.0039504743,-0.00995918,0.024787292,0.011038091,-0.02697831,0.028815227,0.011314735,0.0142305605,-0.007945212,0.023481533,0.013776865,0.02505287,-0.021036,-0.014429744,0.01113215,0.00065910403,0.011453057,-0.001897777,0.026026655,0.03326366,-0.012471106,-0.02301677,0.016299857,0.036472727,-0.062499385,-0.019851964,-0.0028355997,-0.027288152,0.0028604977,-0.032378398,-0.042271186,-0.0013908271,-0.03299808,0.021578223,-0.0044788644,-0.011851423,0.02755373,0.0023473233,-0.029700486,-0.0046393177,0.008177593,-0.03268824,-0.023636453,0.0024870285,-0.02945704,-0.0020831283,-0.0031233092,0.028018491,0.008957729,0.02726602,0.028571779,0.04908769,0.03257758,0.007834555,-0.0024054185,0.00692163,-0.009356095,-0.015104756,-0.006722446,0.021821668,-0.02403482,0.0058095213,0.036118623,0.004061132,0.04251463,0.017107658,-0.039327692,-0.021810602,-0.052850045,0.010374146,0.009007525,-0.026181577,0.005635236,0.03618502,-0.008487434,0.058958344,0.00978766,-0.02147863,-0.023724979,-0.02328235,-0.030563615,0.014075641,-0.03678257,-0.0058925147,-0.0016515639,0.01436335,-0.008636822,-0.024433186,-0.0063904733,0.015779767,0.020349924,-0.021024935,0.005568841,0.017041262,0.008930064,0.010235824,0.009759996,-0.023038901,0.0070986818,-0.0047278437,-0.026048787,-0.020095412,0.008542763,0.010374146,0.0011148748,-0.008006074,-0.040943295,0.014706388,0.008199724,0.021235183,-0.018612599,0.00287433,0.018623665,-0.014009246,-0.011519451,0.01965278,-0.009920449,0.018590469,-0.03167019,0.018048245,-0.030585747,-0.048246693,-0.008000541,-0.006091698,0.00699909,0.019508926,-0.022607338,-0.0076519693,-0.02476516,-0.013754734,0.0058759158,0.045126148,-0.0065177297,-0.026048787,-0.0141641665,0.048556533,0.044971228,0.0020471646,0.021047065,0.016156003,0.0351891,-0.00092744856,0.050194263,0.023083165,-0.025938129,0.020582303,0.005687798,0.060197707,-0.013887523,0.014319087,0.024455318,0.01801505,-0.014684257,-0.044218756,0.02111346,-0.011441991,-0.0040832637,-0.04058919,-0.017295776,-0.017483892,-0.032223478,-0.004943626,-0.008371243,0.038132593,0.031847242,0.005510746,-0.014020312,0.016532239,-0.04393105,0.004835735,-0.03193577,0.0029019942,0.0011944099,0.044926964,0.018546205,-0.010069837,0.024167608,-0.02768652,0.013489155,-0.021589288,-0.027022574,-0.030430825,0.008802808,0.027066836,0.015790833,0.01267029,-0.012216593,0.011004893,0.027664388,-0.025893867,-0.0012123918,0.00995918,-0.024388924,-0.012316185,-0.017395366,-0.026889784,-0.00081886584,-0.027465204,-0.00388408,0.0055577755,0.0022297497,0.0042105196,0.0008368477,0.001449614,0.025982393,-0.045945015,0.010584394,0.039017852,0.022972507,-0.008376776,-0.014396547,0.013378498,-0.048025377,0.047848325,-0.03605223,-0.0045120614,0.007275734,0.011951015,0.028549647,-0.028416859,0.05262873,-0.03811046,-0.021655682,0.030607877,0.010888703,-0.0033501573,0.023968425,0.030298037,0.030231643,0.018656863,-0.026491417,0.008321447,0.0019959856,-0.01621133,0.014839177,0.04030148,0.010955097,-0.005947843,-0.021213053,0.03915064,-0.031382482,0.0067501105,0.02390203,0.042868733,-0.02916933,0.0069880243,0.014319087,-0.0092620365,-0.028682437,-0.013035459,0.029014409,-0.0067445775,-0.017826932,0.0042271186,0.0056656664,0.001056088,0.037800618,0.005604805,0.030696405,0.0092841685,0.018181035,0.0028231507,-0.0046365513,-0.02653568,0.010877637,0.02140117,-0.023525795,-0.0054443516,-0.04320071,0.012305119,0.023038901,0.0054443516,0.02403482,-0.033750553,0.028217675,0.00048827645,-0.038198985,0.01715192,-0.0077460282,0.03445876,-0.029213592,0.040390007,0.008149928,0.0018950106,0.005156642,-0.06856342,0.014252692,0.015558451,-0.042027738,0.021788472,-0.04674175,0.00999791,-0.008736414,0.011962081,0.039217036,0.034857128,0.054664828,-0.004218819,-0.016997,-0.011674372,0.035720255,-0.0068994984,-0.0068497024,-0.0130133275,0.036229283,-0.006196823,-0.0017428565,0.011320267,0.009051788,-0.003908978,0.0058095213,0.027177494,-0.008321447,-0.002730475,-0.05059263,0.029102936,-0.021677814,0.010047706,0.014983032,-0.008415506,-0.017295776,-0.014695322,0.035521075,-0.025716815,0.009981311,0.024588108,0.009599542,0.007535779,-0.002206235,0.0014703622,-0.0058427188,-0.019309742,0.00013711162,0.03839817,-0.022906113,0.018059311,0.005073649,-0.011541583,0.031448875,-0.0020222666,-0.0075191804,-0.0287267,-0.017904392,-0.0076132393,-0.02976688,0.025185658,-0.022098312,0.04061132,0.011126617,-0.031205429,-0.012725619,0.057232086,0.049397532,-0.0054941475,0.06887326,0.010042173,-0.0058759158,-0.033529237,-0.04660896,-0.00082370715,-0.033020213,-0.010739315,-0.010606526,0.016642895,-0.010656322,-0.015635911,0.020139674,0.0059699747,0.0053585917,-0.0024081848,0.015846161,-0.023193823,-0.014319087,-0.011464122,0.0025105432,0.004697413,0.019354006,0.0130243935,-0.002603219,0.024123346,-0.0050542834,-0.022518812,-0.040943295,0.0076575023,0.0045535583,-0.0003290333,-0.010518,0.030452957,0.035853047,-0.0015243078,-0.022308562,-0.023525795,0.012404711,-0.010739315,0.010346481,-0.031161167,-0.033484973,-0.0142748235,0.0018991602,-0.029833276,-0.019885162,-0.054886144,-0.018424481,0.03662765,-0.045767963,0.00086935336,-0.028837357,0.033219397,0.006130428,0.028948015,-0.010230291,0.047405694,-0.027885703,0.032865293,0.00061034557,-0.024167608,0.028616043,-0.03383908,-0.0004083955,-0.008675552,0.008957729,-0.007458319,0.013942852,0.05205331,-0.010938499,0.004736143,0.024831554,0.005076415,-0.02080362,-0.045369595,0.010927433,0.0035355086,-0.009848522,-0.04908769,-0.04424089,0.007353194,0.04789259,0.03164806,0.05470909,-0.012681355,-0.021080263,0.010739315,-0.0059367777,0.029966064,-0.02434466,0.0020803618,-0.0129801305,-0.0072370037,-0.022142576,-0.02638076,0.016299857,0.021611419,0.03443663,-0.017694142,-0.017273644,0.010728249,-0.011104485,0.027066836,0.0037595902,-0.04603354,-0.013610879,-0.045679435,-0.003529976,0.030298037,-0.029125066,0.005693331,0.0065730587,-0.03299808,0.038885064,0.014263758,0.022883981,-0.00035047322,0.014374415,0.032643978,-0.0080116065,0.022839718,0.00081886584,-0.014042443,0.02492008,-0.016045345,-0.012603895,0.01701913,-0.0052313358,-0.0075302464,0.0060197706,0.033662025,0.03850883,-0.007845621,0.02361432,0.022319628,-0.012249791,-0.01149732,0.04220479,-0.010966163,-0.01553632,0.03461368,0.0142416265,0.030519351,-0.0031011777,0.021024935,-0.018612599,0.031271823,0.00696036,0.002698661,0.00073241466,0.021932326,0.03545468,0.0033695223,-0.04264742,0.012205528,0.014020312,-0.00055985805,0.0412974,0.0072978656,0.014407613,-0.009439089,-0.008885801,-0.016609699,0.02434466,-0.026491417,-0.011674372,-0.016532239,-0.020294596,-0.0023362576,0.027907833,-0.012515369,-0.03815472,-0.023879899,-0.001872879,-0.021069197,0.031139035,0.059356708,-0.0072314707,0.003292062,0.009842989,0.012448974,0.000036114994,0.027929965,-0.011098952,0.012205528,0.049574584,-0.038442433,0.012282988,-0.025163528,0.032312006,-0.005176007,-0.03751291,0.020183938,0.004224352,-0.0105401315,-0.051212315,0.009759996,0.002333491,0.032798897,0.007220405,0.015259676,-0.026734864,-0.015204348,-0.016388383,0.03587518,0.023547927,0.007862219,0.02974475,0.007823489,-0.0071484777,-0.029966064,0.010257955,-0.035808783,0.050636895,0.008343579,0.0001002834,0.022540944,0.02374711,-0.014031378,0.0023805206,-0.0384203,0.0071097477,-0.022972507,-0.019796636,-0.03868588,0.018822849,-0.023924163,0.02249668,0.0014053509,0.0024164843,0.027531598,-0.008957729,0.033440713,-0.020991737,0.0062189545,-0.026048787,-0.028682437,-0.056966506,0.0037817217,-0.0034193182,0.010916367,-0.0013368815,0.0070876162,-0.022662666,-0.006783308,0.019973688,0.008564894,0.036583386,0.0022864616,0.006822038,0.0049768235,-0.0059755077,0.017583484,-0.026801258,-0.014053509,0.021179855,0.002434466,0.0016404982,0.000028528899,-0.0003641325,0.012637092,0.046697486,0.012637092,-0.044063836,0.013467024,0.011076821,0.017262578,-0.009931515,0.0014440811,-0.029479172,-0.03735799,0.041385923,-0.011973147,-0.0009661787,-0.0020333324,-0.0012697953,0.003184171,-0.014075641,-0.002899228,0.015403531,-0.016388383,-0.04926474,-0.014053509,-0.01436335,-0.034325972,-0.011165347,0.03412679,-0.041120347,-0.021545025,0.033684157,-0.025229922,0.000629019,0.025318448,-0.021567157,0.02755373,-0.006384941,-0.04005803,0.007059952,0.050238527,-0.012072738,0.03242266,-0.02432253,0.00046476172,-0.011408794,0.0065564597,-0.053513993,0.04441794,0.03521123,-0.02197659,-0.04647617,-0.023503663,-0.024743028,-0.014562533,0.01209487,0.016908474,0.03808833,0.03930556,0.008520631,0.061614122,0.019022033,0.005474782,0.0072370037,-0.009051788,0.0018618132,0.0065232627,0.0052368687,-0.004525894,0.011430925,0.036118623,0.010280087,0.005162175,0.0048080706,-0.0048412676,0.04629912,0.0073753255,-0.0026875953,-0.045502383,0.0408769,-0.034702208,-0.021467565,0.0026779126,0.0076187723,0.005048751,-0.019984754,0.03180298,-0.00034321132,-0.0010768363,0.013876457,-0.014706388,-0.009522082,-0.0010706118,0.0014177999,0.016333055,-0.016023213,0.044395808,-0.02001795,0.006329612,0.014684257,-0.0076962328,-0.021821668,-0.014252692,0.006379408,0.021500763,-0.0027567563,-0.008072468,-0.0061193625,0.009743397,0.030585747,-0.0077792257,-0.022253234,0.0013783781,-0.011818226,-0.010910834,0.0077792257,0.022684798,0.032909553,0.014817046,0.0058869817,0.0050017214,0.019110559,-0.010119633,0.014097772,0.019619584,-0.008393375,0.005781857,0.010700585,-0.008714282,-0.0266906]);
INSERT INTO entities (id, name, description, description_vec) VALUES (30, 'Tosca Musk', 'Tosca Musk is Elon Musk\'s younger sister.', [0.011909344,-0.054853685,-0.039031442,0.029669749,-0.035618328,-0.0025232695,0.022806942,0.0007031938,-0.02506204,-0.05046539,-0.051879395,-0.033180386,0.023184825,-0.068311125,-0.010312493,0.044516813,-0.026085975,-0.074308455,-0.018845288,-0.018820908,-0.0020036832,-0.009465308,0.030279234,-0.015237135,-0.0049124523,0.0015892332,-0.02754874,0.006009526,0.026963633,0.029035883,0.036959194,-0.024379415,-0.047856793,-0.007856267,-0.0005816776,0.0072406866,0.022441251,0.009142281,-0.0013248689,0.025159556,-0.01957667,-0.0043425835,-0.028231364,0.040835522,0.018906236,-0.008002543,-0.015505308,-0.011269385,0.031010617,0.0283045,0.03496008,-0.03123003,-0.036130294,0.0088558225,-0.06967637,-0.035374533,0.033619214,0.0038580424,-0.009270272,0.034448113,-0.050709184,0.0012334461,-0.01913784,-0.04473623,0.0067348136,0.0022840465,0.005253764,0.03378987,-0.023477377,-0.013298971,-0.05295209,0.044468053,-0.043102805,0.025720283,0.04385857,0.0035563472,0.0017324622,-0.0018406459,0.033863008,0.01209219,0.029523471,0.021636732,-0.036154673,0.027597498,-0.0063203634,0.020259295,-0.0367154,-0.046223372,-0.068116084,-0.021161333,-0.05968081,0.02628101,-0.010873219,0.02962099,0.06372779,-0.045199435,0.018187044,-0.04039669,0.038787648,0.015883189,-0.0029864784,-0.014335096,-0.012043431,-0.017041212,0.017211867,0.038714513,0.016382966,-0.03959217,-0.006716529,0.010446579,-0.03664226,-0.006582442,0.050270356,0.018162664,-0.01873558,0.0035228254,-0.024025913,-0.023172634,-0.019917982,-0.061826196,-0.03123003,0.00046206612,-0.008209768,0.018552735,0.0019442583,-0.045394473,0.022282785,0.0029697176,-0.05124553,-0.005284238,0.023050737,-0.04619899,0.008776589,0.02462321,0.043931708,-0.06094854,-0.0037727144,-0.040421072,0.015200566,0.023282342,0.011787447,-0.04966087,0.02459883,0.024440363,0.019515721,-0.033594836,-0.024476932,0.011354713,-0.01584662,-0.020759072,0.0046930374,-0.019917982,-0.018430838,-0.018308941,0.012342079,-0.012232372,0.011117013,0.036154673,-0.036617883,-0.074649766,0.0008342331,0.019942362,0.018833099,0.05626769,0.008502321,0.025744662,0.032644037,0.009666438,-0.02334329,-0.021917094,-0.038056266,0.024196569,-0.00016922742,0.018503977,-0.0064422605,-0.034521252,-0.039055824,-0.0011854491,-0.011750878,0.037324883,-0.0106477095,0.043517258,0.026890496,0.010617236,-0.044102363,-0.0019229264,0.0033095055,0.028523916,0.046345267,-0.04585768,0.012713865,0.027426843,-0.0016730374,0.05880315,0.0069907974,-0.029133402,-0.024050293,-0.019052513,-0.050709184,-0.0012540162,0.04741796,0.0325709,0.04422426,-0.033667974,-0.014286337,0.010495339,-0.0073321094,-0.0036355804,0.040274795,-0.0392021,0.046077095,-0.0012349697,-0.026207872,-0.016602382,-0.02745122,-0.015468739,0.0155296875,-0.04924642,-0.010885409,0.039128963,-0.0029240062,0.038982686,-0.0178823,-0.014810495,0.055341274,0.0059363875,-0.01104997,-0.01041001,0.0093068415,0.019308496,-0.020893158,0.040226035,-0.027036771,-0.007076125,-0.019540101,-0.02414781,-0.014213199,-0.03127879,0.009130091,-0.01921098,-0.03708109,-0.047101032,0.02835326,0.026890496,0.025671525,-0.014140061,-0.025305834,-0.055682585,-0.07972069,0.034886945,0.00039464177,0.025305834,0.0029575278,0.0011054542,0.0023008073,-0.002562886,0.018881857,0.02172206,0.009002099,-0.025622765,-0.012384743,0.005753542,-0.04093304,-0.044053603,-0.044370536,0.0051044403,0.025013281,0.0014749547,0.0035502524,0.03549643,0.02211213,0.0027411606,-0.01832113,-0.011848396,-0.03461877,0.0064666397,-0.004232876,-0.021356368,0.004025651,0.041493766,0.00095308275,0.0047783656,-0.0025613622,-0.011513179,-0.02623225,-0.013969405,0.046613444,0.037568677,0.013311161,-0.014810495,0.00012846809,-0.0068567107,-0.003562442,0.011921534,-0.004312109,-0.011628981,0.053439677,-0.025110798,0.008215863,-0.014505752,0.036617883,0.018223614,0.0015785671,-0.013152694,-0.0003466448,0.009751766,0.022209648,0.00020074924,0.041566905,0.013603713,-0.021831766,0.015590636,-0.017175298,-0.031083755,0.028962746,-0.005406135,-0.022002423,0.024001535,0.027036771,-0.044760607,-0.014749547,-0.028718952,-0.05339092,0.043297842,0.0010681232,-0.004790555,0.02537897,0.03842196,-0.043687914,-0.016821796,-0.028158225,-0.0064727347,0.030132957,-0.054414853,0.022087751,0.027621878,0.02247782,-0.0030413321,-0.028621433,-0.0048911204,-0.05797425,-0.053098366,-0.009172755,-0.008666882,-0.028499536,0.010513623,-0.012311605,-0.002520222,0.0019396872,-0.0020036832,-0.011689929,0.0066494853,0.057632938,0.010763512,-0.031863894,0.009885853,-0.012982039,0.00013303923,0.042054493,0.02752436,0.0065275882,0.0020143492,0.043614775,0.013189264,0.035520807,0.004153643,-0.02211213,0.036325328,-0.0028432494,0.001627326,0.0013324874,0.025671525,0.059437014,-0.007716085,-0.014481373,0.005089203,-0.020527467,0.016797418,-0.027036771,0.0046991324,0.046077095,0.0048423614,-0.007837982,0.036861677,0.008081776,-0.021344177,0.019930173,-0.045394473,0.023440808,0.020771261,-0.048856348,0.0038671847,-0.026207872,0.044394914,-0.0112632895,0.007380868,0.010757417,-0.0011298335,-0.015359032,0.04619899,0.025232695,-0.014079113,-0.04541885,0.0036233906,-0.013116125,0.027816912,0.040835522,0.022416873,0.0011397377,-0.00094927347,-0.011409567,-0.06338648,-0.0055432697,-0.00025845988,0.041006178,-0.010330778,0.06840864,0.028572675,0.01583443,0.041786317,0.016090414,0.03047427,0.014030353,-0.01023326,-0.007252876,0.050221596,0.03378987,-0.020990677,0.027816912,-0.0045498083,0.03337542,0.011537558,-0.055828862,0.0029605753,0.017199678,-0.07479604,-0.0017172251,0.035593946,-0.028085086,-0.02462321,0.023306722,0.017821353,0.013079557,-0.008520606,0.016029466,-0.00813663,0.048100587,0.014261958,-0.03325352,0.024062483,-0.026719838,0.005927245,-0.0076429467,0.0088009685,0.019296307,0.00530557,-0.021295419,0.019881412,0.02667108,-0.02124666,-0.04256646,0.0015724723,-0.048198104,-0.037227366,0.03847072,-0.05587762,0.03795875,0.0000023153302,0.01623669,-0.011110919,0.026110353,-0.056511484,-0.06714091,-0.012463976,0.011568032,-0.028133845,0.059095703,-0.036154673,0.0060003838,-0.009483593,-0.029864784,0.029645368,-0.019259738,0.041908216,-0.007905025,-0.045345712,0.0065702526,0.022806942,-0.023587083,0.038080648,0.00078242685,-0.021758629,-0.011184057,-0.011452231,0.025769042,-0.021600163,0.014761736,-0.041371867,-0.019722948,-0.059095703,0.026866116,0.0061344705,0.004833219,0.060607225,-0.020941917,-0.022282785,-0.018674633,-0.018467408,0.025866559,0.020381192,0.0016867508,-0.0088558225,-0.024659779,-0.012774814,0.009160565,-0.019332876,0.028011948,-0.0070273667,0.025720283,0.032668415,-0.007246781,0.0132867815,-0.020417761,0.02458664,0.004686943,-0.05885191,0.017163109,-0.034399357,-0.06343524,-0.015931947,0.024050293,-0.016187932,0.028816469,-0.025500868,0.033594836,-0.013871888,-0.022270596,-0.011763068,-0.005418325,0.011628981,0.018016389,-0.0125066405,-0.0017979819,0.002562886,-0.008928961,-0.020381192,-0.005598123,-0.07601502,-0.013384299,0.0022413826,0.034033664,0.014761736,0.03956779,0.0010894551,0.051001735,-0.016602382,0.015615015,-0.024281899,0.046515923,-0.044443674,-0.025500868,0.028475158,0.025452109,0.0051592938,0.045979578,0.014274147,-0.014286337,0.025183937,-0.012689485,-0.029011505,0.014810495,-0.009873663,0.009520162,-0.016870555,0.016322019,0.0063935015,-0.007905025,0.013689042,0.017857922,0.008033018,0.0073564886,0.021063814,-0.00666777,-0.011708214,-0.035301395,0.049465835,-0.00024646067,0.0022764278,-0.0062716044,0.016407346,0.009227608,-0.009855378,0.015566257,-0.012604157,-0.016565813,0.03291221,0.008264622,-0.023270153,0.004918547,0.036617883,-0.020710314,-0.028572675,-0.016541433,0.010562382,-0.012311605,0.018138286,0.0018711201,-0.0032028456,0.047613,0.022636287,-0.010970737,-0.008026922,0.011525368,0.017187487,0.004589425,0.03293659,0.01913784,-0.009044763,-0.014444804,0.004013461,0.0071614534,-0.04422426,-0.010306397,0.0060156207,0.019393824,0.05748666,0.028694572,-0.006049142,-0.028865227,0.038105026,0.026841735,0.0017309384,0.029084643,0.022429062,-0.016955884,-0.031400688,0.0056316447,0.03961655,0.025183937,0.00008204245,0.0077648438,0.002546125,0.018211422,0.027573118,-0.046637822,-0.0073991525,0.00022874748,0.022733806,-0.017187487,-0.011714309,0.009270272,-0.036471605,0.029450335,0.008587649,-0.02291665,-0.0057474473,-0.01960105,-0.0064422605,-0.013116125,0.028962746,-0.008630313,0.04302967,-0.015956327,-0.011549748,-0.0011664026,0.024915762,-0.024001535,-0.0042724926,-0.028158225,-0.0077770334,0.027207427,0.0350576,0.021124763,-0.0037635723,0.056413967,-0.0106599,-0.012604157,-0.02918216,-0.00427554,0.003211988,-0.016590193,-0.026914874,-0.014030353,0.038787648,0.0283045,-0.04658906,-0.038714513,-0.023062928,0.008404803,0.0057565896,-0.02374555,0.039445896,0.041079316,-0.011927629,-0.0024120384,-0.027207427,0.03959217,-0.03630095,-0.03123003,-0.026988013,0.01127548,0.036788538,-0.06455669,0.0040865997,0.013542765,0.0040713623,0.006844521,-0.0069725127,-0.011007306,-0.010586761,-0.014018164,-0.034277458,0.018503977,-0.0054853684,0.036593504,-0.0125066405,-0.0055371746,0.0065702526,0.02835326,0.0059942887,-0.015883189,0.053488437,-0.027207427,-0.04210325,-0.010653804,-0.012384743,-0.012787003,0.035520807,-0.02203899,0.02336767,-0.0010201262,0.026012836,-0.03929962,0.012244562,-0.014115682,-0.00750886,-0.021210091,-0.01000775,0.0101845,0.0015709486,0.03542329,-0.013823128,-0.008520606,-0.026914874,0.012567589,0.03171762,0.03951903,0.054024786,0.04093304,-0.0062350356,0.0106477095,0.008118345,0.029035883,0.018820908,-0.031205652,-0.022270596,0.039445896,-0.021953663,0.06796981,-0.0037818567,-0.06289889,0.021015055,-0.03964093,-0.0013583906,0.0129454695,0.0063691223,-0.011945914,-0.0038885167,0.01706559,-0.010019939,0.016468296,-0.016760848,-0.030206095,-0.0178823,0.009910232,0.023672413,-0.02669546,-0.0011214531,0.033156004,0.017845731,-0.014140061,0.0098675685,-0.0026253583,-0.013908456,0.0087461155,-0.020344622,-0.01627326,0.030084198,0.011799637,-0.014030353,-0.026744219,0.02503766,-0.018467408,-0.007368678,0.01662676,-0.018564925,0.024013724,-0.013067367,0.0017857922,0.0061558024,-0.012268941,-0.016431727,-0.0025415542,0.009910232,0.058510598,0.043907326,0.016882746,0.0023648033,-0.021076005,-0.007770939,-0.0040012714,-0.014261958,0.036983572,0.03283907,0.0063081738,-0.014968961,0.009544541,-0.051538084,-0.009916327,-0.0067713824,0.0034100707,0.02086878,-0.027329324,-0.06660456,0.009264178,0.008026922,0.04298091,-0.01667552,0.029255299,0.03637409,-0.008386519,0.022563148,-0.0009066095,0.016322019,-0.036154673,0.0056590717,-0.002680212,-0.031498205,-0.005808396,-0.019917982,0.025793422,0.01797982,0.0010772654,-0.015907569,0.011293764,-0.017297195,0.0028356307,0.025939697,0.016919315,-0.0030779012,-0.011507084,-0.011507084,-0.0019214026,-0.008758305,-0.022867892,0.030059818,-0.033814248,0.038495097,0.026061594,-0.0067774775,-0.04222515,-0.045930818,-0.012591968,0.0010833603,0.008398709,0.00490331,0.04919766,-0.00531776,0.013494006,0.011171867,-0.01579786,-0.012214087,-0.024927951,-0.0004673991,-0.041030556,-0.036495984,0.0014840969,-0.0061801816,0.05387851,0.0024089909,-0.0091971345,0.023148255,0.015103048,0.0027000203,0.009623774,0.024830434,-0.016382966,0.0036416752,0.016139172,0.036032777,0.0061558024,-0.006509304,-0.020076448,-0.046930373,0.020222725,-0.019637618,-0.017699456,0.009477498,-0.0047021797,-0.04636965,0.002270333,-0.016041655,0.036739778,-0.0015633301,0.0042298287,0.015688153,-0.038519476,-0.010946358,0.019674188,0.009093522,0.016919315,-0.02044214,-0.003009334,-0.00016875127,-0.037714954,0.004482765,0.031863894,0.01251883,0.024330657,-0.026061594,-0.005567649,-0.027816912,0.016419536,-0.01751661,0.025281454,-0.002881342,-0.00772218,0.004114026,0.008118345,0.040738,0.0071919276,0.018247992,0.021551402,0.02840202,0.027061151,0.043541636,0.0008007114,0.004647326,0.0035502524,-0.0008593744,0.015663775,-0.02537897,-0.0027396367,0.036105916,-0.016529243,0.022307165,-0.009404359,0.052025672,-0.005354329,0.00478446,-0.022831323,-0.013177074,-0.0105928555,-0.013359919,0.018686822,-0.013945025,0.01500553,0.016090414,0.05300085,-0.0036873866,0.004440101,0.016894935,-0.016346399,-0.030742442,-0.003727003,0.025013281,0.01229332,-0.019491343,-0.028645813,0.0022672857,-0.062801376,-0.019271927,-0.0017233199,-0.011104824,-0.0027731585,0.010672089,0.016126983,-0.006423976,-0.005454894,-0.019296307,0.016894935,0.03210769,-0.046808477,-0.028109467,0.02211213,-0.061046056,-0.020137398,-0.04207887,-0.0018985469,-0.005427467,-0.027499981,-0.045126297,-0.0011572604,0.047101032,-0.03447249,-0.01833332,-0.0022398587,0.04298091,-0.018016389,0.044833746,0.01249445,0.03127879,0.010050414,-0.00012913471,-0.000037497637,-0.0030215238,-0.0056864987,0.010507528,-0.028011948,0.0014223865,0.028231364,0.005951625,-0.07162672,0.03627657,-0.06782354,0.006838426,0.0233311,-0.008715641,-0.0042694453,0.017736025,-0.0013964834,0.0050282544,0.051196773,0.004211544,-0.007892836,-0.008490131,-0.029669749,0.027743775,-0.019978931,0.050172836,0.012073905,0.024891384,0.010507528,-0.044394914,-0.026354147,0.009117901,0.04875883,-0.035984017,0.025695903,0.058218043,-0.036008395,-0.021917094,-0.019661998,0.039738446,-0.022404682,0.0072589708,0.024513502,-0.0009896519,0.019442584,0.039543413,0.007051746,0.06358152,0.009946802,0.036861677,0.013372109,-0.004351726,-0.028597055,0.014761736,0.038226925,-0.01104997,0.002159102,-0.013238022,-0.018430838,0.016163552,0.00041178355,-0.00898991,-0.0042999196,0.0034009283,0.00076338043,-0.012555399,0.0349357,-0.015139617,0.05339092,0.016955884,0.012140949,0.0014307669,-0.0130551765,0.00035750127,-0.060509708,-0.0060278103,0.054951202,-0.04332222,-0.016053844,-0.0043090614,-0.01921098,-0.021039436,0.026159113,-0.00019979692,0.026134733,0.007460101,-0.02915778,-0.046979133,0.0035593947,0.044297397,-0.0005275858,0.0047021797,0.024196569,0.015200566,0.0155296875,-0.017260626,-0.0039098486,0.0031876084,-0.009002099,-0.0015458073,0.04992904,-0.004717417,-0.00958111,-0.060558468,0.028694572,-0.027158668,0.020210536,0.026792977,0.015139617,-0.018723391,-0.033546075,0.025257073,-0.0046077096,0.007716085,0.0013210595,0.006097901,-0.030279234,-0.02496452,0.032180827,0.0030443794,-0.004632089,0.0069847023,0.004330394,-0.0026284058,-0.025452109,-0.023550516,0.006076569,0.030571787,-0.0014117205,-0.016480485,-0.007801413,-0.015907569,-0.019881412,-0.036788538,0.015054289,-0.028036328,0.027378084,-0.00001498715,-0.00061405654,-0.017199678,0.019003754,0.05504872,-0.007198022,0.0836214,-0.029523471,-0.02837764,-0.02625663,-0.043297842,-0.028133845,-0.03215645,0.0076978,0.0047143693,0.015285893,-0.0007172881,-0.0208444,-0.007454006,-0.029133402,-0.0055920286,-0.0027061151,0.015212755,0.0005131105,-0.0073564886,-0.026622321,-0.012652917,0.00239223,0.0049002627,0.020539658,0.016431727,0.028718952,-0.011403471,-0.014261958,-0.014371665,0.009837094,0.023257961,0.02461102,-0.031961415,0.038519476,0.024318466,-0.018199233,-0.023538325,-0.018187044,-0.0011283099,0.002116438,-0.016809607,-0.05631645,-0.007502765,0.0008395661,0.025281454,0.0036081534,-0.01585881,-0.0516356,-0.0425177,0.012799193,-0.02251439,-0.008971625,-0.006174087,0.015322463,-0.0078075076,0.044346157,-0.005610313,0.02206337,-0.017687267,0.019527912,0.019869223,-0.025452109,0.0325709,0.0090874275,-0.01754099,-0.03247338,0.0258178,0.0053573763,0.013067367,0.046759717,0.0039311806,0.02247782,0.039372757,-0.011830111,-0.016029466,-0.0066860546,0.025622765,-0.013615903,0.01128767,-0.053147126,-0.03625219,0.031888276,0.0576817,0.020698123,0.015822241,-0.0097030075,-0.028060706,0.0074722907,0.0054427045,-0.0060826642,0.011324238,-0.042737115,-0.019869223,-0.0058023008,-0.019028133,-0.0433466,-0.019113462,0.024306277,0.021856146,-0.00856327,0.016029466,0.010019939,-0.0043395357,0.031059375,0.00063576945,-0.029474713,-0.00961768,-0.028231364,0.0011404995,0.022148699,-0.0033095055,-0.038909547,-0.025281454,-0.02039338,0.043419737,0.024428174,0.014676408,-0.0076612313,-0.012896711,0.011811826,-0.011202341,-0.009343411,0.026963633,-0.04883197,0.012591968,-0.010714753,0.01103778,0.03586212,0.0055371746,-0.020722503,0.012037336,0.029889163,0.0249889,-0.026963633,0.015151806,0.016638951,-0.0023434714,0.012372553,0.020076448,0.008051302,0.020917539,0.048222482,-0.007905025,-0.011440041,-0.020527467,-0.011025591,0.041176833,0.00024227044,0.0075149545,-0.03554519,0.009093522,0.01500553,0.038178165,-0.009873663,-0.025086418,0.030181715,0.0028051564,-0.036959194,0.03717861,0.0070334612,-0.00022684284,-0.0026710697,0.014932392,0.0010620282,-0.0005359662,-0.03998224,-0.013664662,-0.00750886,-0.039494652,-0.042395804,0.0056773564,-0.051928155,-0.008045207,0.016980262,-0.006030858,0.0028158224,0.021173522,0.027231807,0.00028360117,0.0012776337,0.017309384,0.013786559,0.010379536,0.029035883,-0.028060706,0.0051867208,0.0043669627,-0.03220521,0.025110798,-0.0026025025,0.008788779,0.009891948,-0.03330228,-0.0068506156,0.0056560244,-0.016456105,-0.040591728,0.007770939,-0.007460101,0.0307912,-0.04741796,0.004753986,-0.043175943,-0.027719395,-0.02547649,0.023440808,-0.006046095,-0.0057565896,0.024476932,0.0132867815,-0.00095841574,-0.006460545,-0.007825793,-0.006795762,0.031766377,0.009032574,0.02039338,0.018625874,0.04005538,-0.028280122,0.00041483098,-0.04578454,-0.003833663,-0.018857477,-0.032058932,-0.023904016,0.016992452,-0.021514835,0.030303612,0.0063508376,0.0014627649,0.036057156,0.022672856,0.023245772,0.007819697,0.0018939758,-0.028621433,-0.02127104,-0.03554519,0.022563148,0.04344412,-0.007076125,-0.008459657,0.038787648,-0.029669749,0.0012959182,0.032765932,0.0071919276,0.044760607,-0.0055432697,-0.017857922,0.0025674573,-0.04373667,0.027183048,-0.039762825,0.021831766,0.0122750355,-0.0038671847,0.0082402425,-0.005640787,-0.0051531987,0.013311161,0.04044545,0.019259738,-0.008703452,0.013835318,-0.0055798385,-0.022490012,0.01746785,0.008971625,-0.019308496,-0.03781247,0.026085975,0.013274591,0.014920202,0.0018497881,-0.00011475467,-0.01106216,-0.0068201413,-0.011720404,-0.0095933,-0.0057443995,-0.032253966,-0.031937033,-0.007600283,-0.034984462,0.0019899698,0.011165773,-0.01333554,0.015785672,0.023489567,0.004208497,-0.02166111,-0.005662119,-0.01623669,0.0108793145,-0.014371665,-0.037690576,0.029304057,0.021417316,0.013311161,0.01459108,-0.008191483,-0.0016166599,0.019735137,0.0216733,-0.030401131,0.015712533,0.0050130174,-0.017163109,-0.040079758,0.010312493,-0.03213207,0.0015100001,0.0004712084,0.011696025,0.011007306,0.023904016,0.008648598,0.017455662,0.031766377,0.0049063573,-0.0075271446,-0.012409123,0.01004432,0.0040865997,-0.0022352876,-0.0038031887,0.01746785,0.008033018,0.0074722907,-0.00025693618,0.030327993,-0.004302967,0.059437014,-0.028792089,-0.04176194,-0.012354269,0.019479154,-0.045735784,-0.01628545,0.016102605,0.010617236,0.039397135,0.00010437437,0.0066068214,0.024793865,-0.024708537,0.018552735,-0.012677296,-0.014505752,0.020369,-0.02090535,0.03956779,-0.01628545,0.016017277,0.0023267104,0.010544097,0.0145179415,-0.018491786,0.009648154,-0.03717861,0.05041663,0.011915439,0.0074783857,0.010080888,-0.001536665,-0.016882746,0.021953663,-0.018052958,-0.01249445,-0.0056864987,0.0057504945,-0.02039338,-0.029669749,0.03500884,0.01754099,-0.019332876,0.009727387,0.014615459,0.01248226,-0.028548295,-0.008544985,0.016529243,-0.007917215,0.01186668,0.01589538,0.001919879,-0.012012957]);
INSERT INTO entities (id, name, description, description_vec) VALUES (31, 'Timbavati Private Nature Reserve', 'Timbavati Private Nature Reserve is a location where Errol Musk partly owned a rental lodge.', [0.005523202,-0.017555228,0.008362289,0.0210266,-0.051277135,0.030771239,0.024758326,0.08157726,-0.0026097284,-0.016848555,-0.0053806277,0.014195435,0.049045537,-0.059806794,-0.026878342,0.037664395,0.022514332,0.0073518716,0.0110712,0.016501417,-0.0026655183,0.019328108,-0.045251824,0.052566502,-0.011591906,-0.003403185,-0.038383465,0.03027533,0.01698493,0.025613772,0.011517519,-0.030647261,0.029952988,-0.0014745585,-0.04857442,0.0013017647,0.03424261,-0.023617731,0.008275504,0.025365816,0.0058672396,0.0008345242,-0.012831681,0.04321859,-0.035110455,0.016290655,-0.045747735,0.0011041755,-0.0069861375,-0.0012149805,0.007537838,-0.04554937,-0.06397244,-0.05638501,-0.0636749,-0.0020595777,-0.014145844,0.029804215,0.004320619,0.030944807,-0.007878777,0.0016179077,0.049789403,-0.008002754,0.018237105,0.022253979,-0.07111355,0.051227544,0.009726043,-0.0011715883,-0.010910029,0.029952988,-0.02185725,-0.009571071,0.047111485,-0.00879621,-0.025279032,0.038383465,-0.01183986,-0.03307722,0.042152382,0.018671026,-0.0120320255,0.05450055,-0.014765732,-0.020295132,-0.032953244,-0.020158757,0.004853723,-0.018175116,0.011536116,-0.0076370197,-0.01311683,0.022241581,-0.021076191,-0.045400597,-0.017257681,-0.0210266,-0.0027708993,0.05112836,-0.049789403,-0.017394057,-0.02960585,-0.028192505,0.04155729,-0.0017775288,0.002096771,0.043640114,-0.005411622,0.016699782,-0.06392285,-0.04366491,0.033102017,0.033622723,-0.022551525,-0.044086434,-0.020282734,-0.012434953,-0.0016458026,-0.029159531,-0.012955659,-0.026357638,0.0050923796,0.009881014,-0.015769951,-0.0009778733,-0.05102918,0.005172965,-0.03553198,-0.0042462326,0.025985705,0.017518034,0.014914505,0.039350487,0.03535841,-0.031167967,-0.028911576,-0.00008368488,-0.021906842,-0.005334136,0.03468893,0.0104389135,0.012317174,-0.022601116,-0.008424277,0.020270336,-0.013067239,-0.0051326724,0.011319155,-0.016885748,0.013104432,-0.026308047,-0.010711664,-0.0046336628,-0.0055479975,-0.035160046,-0.038011532,0.028812394,-0.047706578,0.019675244,-0.020952214,-0.033895474,0.025093066,0.026952729,0.07706448,0.040986992,0.0057091685,0.016612997,-0.054252595,-0.038829785,-0.0015776149,0.022055615,-0.013575546,0.024857508,-0.041135766,0.0015845887,0.030225739,-0.008176322,-0.018497458,-0.008343692,-0.0647163,0.0029460175,0.0028344379,0.09714884,-0.042747475,0.0064840284,-0.01981162,0.049119923,0.02534102,-0.013513558,-0.019328108,0.027423844,-0.0053496333,0.056236237,-0.035060864,-0.0024996982,-0.014269821,0.016997328,-0.012918466,-0.0045282817,-0.01455497,0.036375027,0.058120698,0.015559188,-0.027250275,0.01433181,0.027994141,-0.026084887,0.020952214,-0.019390097,0.050706837,-0.013327592,0.013315194,-0.022365559,-0.013736717,-0.060848203,-0.047012303,-0.06213757,-0.02091502,0.025836932,-0.01583194,-0.007946964,-0.022377957,0.0025151954,-0.0067753755,0.038259488,-0.053806275,-0.0076618153,0.0036976319,-0.01034593,-0.0006175634,-0.0008980627,0.009515281,-0.05097959,-0.024448382,0.021063793,0.011412138,-0.0121746,0.013823502,0.00045910454,0.008529658,-0.015769951,-0.035234433,0.0121746,0.029804215,-0.012013429,0.01444339,-0.01200723,-0.022675503,0.052566502,-0.0039982777,0.024696337,-0.04183004,-0.004131553,-0.031242354,0.0337467,-0.085693315,0.072750054,0.01898097,-0.021534909,0.019923199,0.012459748,-0.025055872,-0.02208041,-0.026977524,-0.047929738,0.037986737,-0.05678174,0.04713628,0.010823244,-0.04857442,-0.00874042,-0.04500387,-0.04016874,-0.032011017,0.03037451,0.003945587,-0.053161595,-0.04735944,0.03773878,0.014914505,0.035457592,-0.03248213,-0.02152251,-0.022923458,0.004990098,0.028911576,0.012143605,-0.0047235466,0.030448897,0.09104915,0.036226254,-0.0005594489,0.024721133,0.004348514,0.003868101,0.028911576,-0.019030562,0.07017132,0.024659144,0.011034006,0.012292379,0.005538699,0.00048544977,-0.03925131,0.046367623,0.01090383,-0.051277135,-0.0048506237,0.029581055,0.03037451,-0.027250275,-0.03342436,-0.09422297,0.0025167451,0.010135168,-0.023530947,0.025316225,-0.001920103,-0.01875781,0.0043361164,-0.028564438,-0.019774426,0.029457077,0.026357638,-0.005278346,0.03161429,-0.009062762,0.014654152,0.0017310372,0.04173086,0.026605593,-0.021001805,-0.024584757,0.0054426165,0.027399048,-0.018658629,0.010370726,-0.015236846,-0.00021734822,-0.07389065,-0.022774685,0.020183552,0.019910801,-0.013959877,-0.0019603958,-0.020171154,-0.0041811443,-0.011331553,0.02091502,0.018633833,-0.02844046,0.0037069302,0.0152740395,-0.06546017,-0.018671026,0.019724835,0.022613514,-0.032779675,0.03491209,-0.007178303,0.012645715,0.06679913,0.0147905275,0.033821087,0.0022222984,-0.019390097,-0.012279981,-0.009013171,0.031068785,-0.018745413,0.015125267,0.026109682,-0.013959877,0.032035813,0.033349972,0.06927868,0.039970376,-0.029134735,-0.003834007,0.01653861,0.00091123534,0.023146618,0.027696595,-0.009589667,-0.031639084,0.025440203,-0.05360791,-0.005885836,-0.0013366335,-0.007624622,-0.0074138604,0.009124751,0.037218075,-0.0030699952,-0.03225897,-0.037986737,-0.0037441235,0.015422813,0.027473435,-0.025985705,-0.018832197,-0.035432797,0.027770981,0.004165647,0.019352904,0.0062608686,-0.019228926,-0.07036968,-0.04160688,-0.028242096,-0.05405423,0.038036328,-0.024250017,0.06595608,0.015224448,0.013798706,0.016922941,0.02955626,0.013873093,-0.031539902,0.016030304,-0.034986477,0.017790785,0.0065336195,0.04892156,-0.011034006,-0.01500129,-0.009174342,-0.014740936,0.02041911,-0.025365816,-0.049442265,0.030647261,-0.04726026,-0.017034521,0.03330038,-0.016340246,-0.07686611,-0.014319412,0.038259488,0.02203082,-0.007965561,0.05821988,0.012143605,0.018013945,0.037267666,0.0077424007,0.003889797,-0.011678689,-0.041854836,-0.009936804,-0.058071107,-0.013525955,0.036846142,0.027845368,0.011939042,0.0040695644,-0.029457077,-0.03369711,0.032159787,-0.0065770117,0.0057990523,-0.014344208,-0.00680637,-0.053657502,-0.0018178215,0.04299543,-0.01953887,-0.056037873,-0.0043237186,-0.009527679,-0.04088781,0.006003615,-0.004264829,0.041681267,-0.017840376,-0.043813683,-0.009713645,-0.008827205,0.009732242,-0.018509855,-0.02722548,0.004692552,0.0057866545,-0.060302705,0.012930864,0.05445096,-0.056682557,0.00680637,0.018274298,-0.018361082,-0.048128102,-0.011771672,0.039102536,0.032011017,-0.034713726,-0.016464224,0.06868359,0.015931122,-0.0021153677,-0.005157468,-0.037937146,0.035160046,-0.05583951,0.018013945,-0.039201718,-0.016451826,0.033002835,0.029506668,-0.013922684,-0.008015152,-0.018447867,0.016501417,0.009211536,0.005997416,0.021113385,0.0210266,0.003248213,-0.031515107,-0.041086175,-0.036548596,-0.02291106,0.0010770553,-0.0019046058,0.0033133014,-0.03468893,-0.0071411096,-0.014703743,-0.020654667,0.023059834,-0.005523202,-0.0070481263,-0.019340506,0.015769951,0.009657855,0.02883719,0.012372964,-0.010116572,-0.021001805,0.025688158,0.0034341794,0.016042702,-0.025588976,-0.033672314,-0.035234433,0.006037709,0.0084738685,0.011418337,0.015757553,0.045747735,0.012695306,0.06074902,0.00029735253,0.012906068,0.039970376,0.022006024,-0.0069427453,0.048227284,0.0045840717,-0.05817029,0.025861727,0.0018131724,-0.01040172,0.017406454,0.055194825,-0.0069427453,0.010767454,-0.016798964,0.016179075,0.041086175,0.0145797655,-0.025378214,0.008715625,0.050830815,0.007165905,0.020605076,-0.039003354,0.0010972017,-0.007178303,-0.008889194,-0.0076618153,0.008213515,0.038061123,0.015249244,0.02351855,-0.02462195,0.023580538,0.012589925,-0.024150835,0.018795004,-0.0068807565,-0.0024315107,-0.0498142,0.0139970705,0.012478345,0.0047576404,-0.018856993,-0.015137665,0.057128876,-0.011548514,-0.023642527,-0.0045809723,0.04272268,-0.020890225,0.012689107,-0.002040981,0.0074634515,0.025836932,-0.0018953076,-0.007444855,0.025390612,0.009986395,0.0030839427,-0.021621693,-0.04187963,-0.015732758,-0.033597928,-0.005523202,-0.0091619445,0.013253205,-0.012186998,-0.006124493,0.030448897,0.0018240204,0.03786276,0.019774426,-0.01637744,-0.002495049,0.020505894,-0.004376409,0.04155729,0.010885233,-0.021795262,-0.050558064,-0.004072664,-0.004066465,-0.011536116,0.022043217,0.040069558,-0.0016349546,-0.004776237,0.0016891947,0.018968573,-0.0053248378,-0.033126812,-0.00018703182,0.008591647,-0.0007140335,-0.0064406362,-0.0036046486,-0.028093323,0.035060864,0.001793026,-0.014877312,0.030523283,0.05331037,-0.024535166,0.010978216,0.015869133,-0.015707962,0.0215845,0.004326818,-0.007878777,-0.034118634,0.021572102,-0.049169514,-0.054847687,-0.020220745,-0.008858199,0.043962456,0.01765441,-0.023270594,0.004605768,0.0464668,-0.035903912,0.009459491,-0.03902815,0.005250451,0.00437021,0.042921044,-0.016997328,0.005892035,0.023382174,0.0010173911,-0.014468186,-0.0033504944,-0.04272268,-0.006955143,-0.0010708565,0.016253462,0.010029787,0.0735931,-0.008802409,-0.019625654,0.00852346,0.021609295,-0.012732499,-0.00013569735,-0.09288401,0.010228151,0.02495669,0.008628841,0.00580835,0.008821006,0.052120183,0.019724835,-0.012534135,0.033275586,-0.030944807,-0.021683682,-0.019290915,-0.01289367,0.06506344,0.044929482,0.008548255,-0.011591906,-0.0025136457,-0.011424536,0.0321102,-0.0006016788,0.018472662,0.025192248,-0.015769951,-0.022043217,0.0042524314,0.05075643,0.03692053,0.0016938439,0.036672574,0.00045174337,-0.023654925,-0.010662073,0.01792716,-0.005067584,0.033821087,-0.035234433,-0.007017132,-0.0030947907,-0.00026538954,0.0057990523,-0.0049436064,-0.020071972,-0.010686869,-0.010587687,0.012682908,0.02744864,0.0020316828,-0.0042679287,0.035432797,0.036994915,0.009602065,-0.00015322857,-0.0071968995,0.0182619,-0.002208351,0.03468893,0.013798706,-0.019390097,0.0028995262,-0.009416099,-0.0003823934,-0.018881788,-0.008492465,-0.024051653,0.0094099,-0.008721824,0.001665949,0.008641238,-0.011226172,-0.021324147,-0.016910544,-0.0060129133,-0.011908048,0.05018613,-0.010928625,0.016836157,0.011976236,0.052169774,0.013352388,0.030200943,0.008232112,0.0034000855,0.0006605681,-0.028787598,0.03275488,0.0023493755,-0.005740163,0.033225995,0.017344465,-0.017394057,-0.021782864,0.008182521,-0.0059943167,0.035903912,0.008455272,0.014753334,-0.03853224,0.015063278,0.04282186,0.009868616,0.008498664,0.01709651,0.006291863,0.033821087,0.040863015,-0.0064344374,0.0076618153,-0.0063600508,0.0017744293,-0.009248729,-0.0045127845,0.035160046,0.006391045,0.008139129,0.020828236,0.048053715,-0.015645973,0.005634782,-0.017642012,0.029853806,-0.019228926,-0.013513558,0.007866379,0.047557805,-0.026357638,0.019328108,-0.029407486,0.0003537236,0.00141102,-0.003834007,-0.038259488,0.028242096,0.0006985363,-0.026556002,0.008399482,0.018299093,-0.016513815,-0.009788032,0.013984673,0.02705191,0.027200684,0.01648902,-0.009453292,0.0083003,-0.012199395,0.011864656,0.0058300463,0.009335513,0.0023586738,-0.0128812725,-0.06258389,-0.010327334,0.013773911,-0.0025477395,-0.020332325,0.005383727,-0.003369091,0.021175373,-0.01034593,-0.02672957,-0.040813424,0.02722548,0.013935082,-0.010358328,0.023865687,-0.01671218,-0.017468443,0.020952214,-0.036003094,0.006353852,-0.011405939,-0.03307722,-0.029655442,0.024609553,0.015249244,-0.012868875,-0.027597412,0.00045058108,0.0021479118,-0.014133446,0.016898146,0.013067239,0.0066266027,-0.005684373,0.012094014,0.01583194,0.02086543,0.012819284,-0.017344465,-0.03954885,0.035903912,0.020505894,-0.008783813,-0.023419367,-0.056732148,-0.000058356643,0.034069043,-0.01422023,-0.041631676,-0.013649933,-0.0448303,0.011374945,0.010358328,-0.0015504948,0.032829266,-0.015745156,-0.0068869554,0.03037451,-0.02650641,-0.0062515703,0.0066451994,0.035209637,0.020109165,0.0057990523,0.010817045,-0.013538353,-0.002970813,0.0037317257,0.0037596207,-0.044483162,0.018695822,-0.01765441,0.02556418,0.02064227,-0.024039255,-0.04249952,0.014282219,0.011709684,-0.013587944,0.0073952638,-0.0018054238,-0.005058286,0.031068785,-0.0042679287,0.018051138,0.014468186,0.0041129566,-0.007382866,-0.016997328,0.042846657,-0.0016349546,0.021014202,0.00017221263,0.006787773,-0.04244993,0.0062329737,0.04133413,0.043342568,-0.013575546,0.037342053,-0.031341538,-0.007060524,0.020741452,0.015249244,-0.018968573,0.000891089,0.015075676,0.020022381,-0.010519499,0.028564438,0.018286696,-0.010358328,-0.020406712,0.01372432,0.02319621,0.04941747,0.008238311,-0.02412604,0.0085792495,-0.037218075,0.0044476963,-0.03759001,-0.0415077,-0.0337467,0.044483162,-0.010073179,0.034341794,-0.03949926,-0.059757203,0.011381144,0.021621693,-0.03463934,-0.042846657,-0.010166163,-0.0001627206,0.00415015,0.007426258,0.0067815743,-0.004500387,0.025539385,-0.03059767,-0.022613514,0.014840119,-0.029928192,0.00879621,0.0066451994,0.0084738685,0.015472404,0.057476014,0.0058114496,-0.013972275,0.0032854064,0.0068187676,-0.030200943,-0.014480583,0.013525955,0.037118893,-0.010197157,0.010575289,-0.021324147,-0.025130259,0.017889967,-0.0032885058,-0.022006024,-0.037713986,0.020654667,0.004137752,-0.027597412,0.019774426,0.019476881,0.038507443,0.048624013,-0.02955626,0.010073179,0.0147905275,-0.016327849,-0.034713726,0.020183552,0.0012901418,-0.00508928,0.00990581,0.013067239,-0.020617474,-0.012304776,0.018621435,0.031564698,-0.025390612,0.010829443,0.0100669805,-0.035432797,-0.027374253,0.04294584,-0.004271028,0.014282219,-0.0037782174,0.010228151,-0.008845801,0.01455497,0.0021820057,-0.0152740395,0.0053589316,0.0014288418,0.0166006,0.008343692,-0.01981162,-0.032606106,-0.0069241486,-0.015063278,-0.020109165,0.005904433,-0.042797066,0.03674696,-0.0016024105,0.019166937,0.017604819,-0.026357638,-0.0052938433,-0.020158757,-0.00020611276,0.009304519,0.001006543,0.019600859,-0.0016736976,0.0009678001,0.009750838,0.019886006,0.010835642,-0.05157468,-0.0023710716,-0.008380885,0.0048413253,-0.006446835,0.026630389,-0.0138358995,-0.022055615,-0.008442874,-0.0016845455,-0.012391561,0.0029537661,-0.025440203,0.009106155,-0.015881531,0.035160046,-0.010742659,-0.029804215,0.04200361,0.0077547985,-0.00016998491,-0.03027533,-0.0016814461,0.030225739,0.012261384,0.017307272,0.02839087,-0.0321102,0.016501417,0.0006473955,0.014183037,0.0032017215,-0.0014985792,-0.019253721,0.018547049,0.01815032,-0.0514755,0.025043475,0.012856477,0.010668272,-0.008343692,0.0037813168,-0.009416099,-0.0011708135,0.032011017,-0.019080153,-0.0025074468,-0.009707446,0.025266634,-0.02086543,-0.01134395,-0.013910286,-0.0052039595,-0.01970004,-0.016092291,0.013897888,-0.026283251,-0.023803698,0.028514847,0.008232112,0.014009468,-0.005826947,-0.0031955226,0.028713211,0.029804215,-0.021658886,0.018522253,0.021187771,0.009614463,0.07850262,-0.0016891947,0.009273524,-0.0073518716,-0.00957727,-0.018609038,-0.0072898827,0.025861727,0.015026085,0.041805245,-0.011529917,-0.0475826,-0.002888678,-0.049219105,-0.0066885916,-0.0015125267,0.011461729,-0.005820748,0.020047177,-0.0056967707,-0.0215845,0.0075998264,0.008442874,0.014815323,-0.0026717172,0.023072232,-0.005129573,0.008566852,-0.007872578,0.017406454,-0.02124976,0.02910994,-0.02861403,0.030746443,-0.011244768,0.0008019801,0.031118376,-0.009434695,0.036325436,-0.027696595,0.01289367,-0.012465947,0.00041416267,-0.01765441,-0.019352904,-0.023097027,-0.059310883,-0.017666807,-0.02883719,0.020071972,0.011715882,0.032829266,-0.015707962,0.020927418,0.014802925,-0.019414892,0.012540334,-0.0123481685,0.0026267753,0.00520086,0.017827978,0.0045902706,0.008864398,0.013823502,0.019997586,-0.027647004,0.0071907006,0.0048568225,0.031911835,0.0019619456,-0.018224707,0.03280447,0.02113818,-0.024448382,0.025105463,-0.043243386,0.04361532,-0.0043237186,0.0006400343,-0.011424536,-0.0503597,-0.0027414546,0.05544278,0.03741644,-0.005640981,-0.0052938433,-0.012930864,-0.0054302188,0.052318547,0.0002003013,0.016960135,-0.02722548,-0.0062050787,-0.007165905,0.013736717,0.007128712,0.0015473954,0.016253462,0.053112004,0.0029553159,0.03248213,-0.020096768,-0.006849762,0.057575196,-0.02529143,0.0142078325,0.0015807144,-0.036647778,-0.002561687,0.00052535505,0.007841583,-0.016253462,0.0017558327,-0.01228618,0.028043732,0.020381916,0.021038998,-0.016972532,0.015298835,0.014356606,0.00985002,-0.017220488,-0.0028437362,-0.03161429,0.03736685,-0.02163409,0.03379629,0.0072030984,-0.016216269,0.011387343,0.013897888,0.021944035,-0.009254928,0.027820572,-0.010972017,0.06322858,-0.000194393,-0.028068528,0.03972242,-0.00963306,0.012162202,0.016551008,-0.00060516567,-0.014976494,-0.034564953,0.0050830813,-0.015373222,0.0066390005,0.015460006,0.018447867,-0.027696595,0.00065204466,0.034763318,0.028688416,0.0018720618,0.0046956516,0.007389065,-0.017728796,-0.0022145498,-0.0023106325,0.017282477,0.013216012,-0.031341538,-0.0073952638,0.07017132,-0.03270529,0.04066465,0.025105463,-0.023010243,-0.011133188,-0.00025802836,-0.0015683166,-0.019799221,0.009366508,0.017245283,-0.04443357,0.018695822,0.0011808866,-0.028068528,0.008591647,0.011306757,0.02650641,0.011424536,-0.020133961,-0.0045406795,0.0210266,-0.011244768,-0.009112353,-0.007853981,-0.014294617,0.032159787,-0.014802925,0.006515023,0.029357895,-0.002467154,-0.0067691766,-0.008746619,0.040515877,-0.021609295,0.03669737,-0.010221953,-0.03932569,-0.036003094,0.03463934,0.0034899693,-0.004128454,-0.03630064,0.010445112,0.015509597,0.017406454,-0.006391045,-0.009329314,0.0011103743,-0.008622642,0.0071473084,-0.028911576,0.0074572526,-0.002274989,0.025985705,0.022179592,-0.011536116,-0.021200169,-0.02035712,-0.004416702,0.019836415,-0.01986121,0.03912733,0.010662073,-0.027597412,0.003768919,0.007227894,0.025204645,0.025861727,0.023270594,0.028961167,-0.0020161856,0.017803183,0.03347395,-0.028291687,-0.0007981058,0.02866362,-0.030944807,-0.0094099,-0.015670769,-0.012806886,-0.0056688758,-0.004968402,-0.0022920358,0.006158587,0.021125782,-0.025886523,-0.0061337915,0.039201718,0.00073611696,-0.035507184,0.052764867,0.012943261,-0.0073456727,-0.014567368,-0.011139387,0.018348685,-0.06615444,-0.01128816,-0.006335255,0.008554454,0.00075277645,-0.005157468,-0.000006404702,0.026258456,0.000545114,-0.021162976,-0.04668996,0.0042183376,-0.020543087,-0.010711664,0.040416695,0.019030562,-0.0007895823,0.004946706,-0.009236331,-0.005885836,0.008294101,-0.023530947,-0.018534651,-0.015100472,-0.004636762,-0.028490052,-0.008213515,0.018770209,-0.0011560911,-0.017741194,-0.031068785,-0.009750838,0.0045902706,-0.010538096,0.011691087,-0.011269564,-0.014815323,-0.054203004,0.032655697,0.021981228,0.0337467,-0.012484544,-0.017716398,-0.014753334,0.0030002578,-0.007283684,0.053707093,-0.011139387,-0.008269305,0.00398588,0.025812136,-0.033399563,0.019303313,0.013959877,-0.0040106755,0.03005217,0.02058028,0.0110712,0.018968573,-0.006564614,-0.015298835,0.008870597,-0.0042896247,-0.0376396,-0.028985962,-0.00042191125,-0.043565728,0.0027104602,0.042797066,0.011932843,-0.011257166,0.008269305,-0.005207059,-0.007779594,-0.025093066,-0.06451794,-0.014926903,-0.01926612,-0.030349717,0.020679463,-0.011629098,0.036548596,-0.01466655,0.0096392585,-0.007178303,0.0017201891,0.005079982,0.04299543,-0.007488247,-0.0114989225,0.009645457,-0.0066885916,0.009143348,-0.0083126975,0.037664395,-0.019129744,0.014195435,-0.0027073608,0.0321102,-0.01986121,0.00022277224,0.014232628,0.012490743,0.0011661643,-0.0067319833,-0.019129744,0.019675244,0.008746619,-0.039747216,-0.03059767,0.018336287,-0.0160551,0.012180799,0.005179164,-0.016699782,0.0017341366,-0.00968885,0.0016039602,0.023121823,0.051673863,0.032878857,-0.022898663,0.0016814461,-0.007878777,-0.0019634953,0.005107877,0.00481653,0.0048785186]);
INSERT INTO entities (id, name, description, description_vec) VALUES (32, 'Progressive Party', 'The Progressive Party is an anti-apartheid political party in South Africa, for which Errol Musk was elected to the Pretoria City Council.', [0.031373154,-0.049330004,-0.007923148,0.034156807,-0.010615534,0.057315897,0.00924082,0.020843182,-0.03623314,0.0057526953,-0.00038895578,-0.056038156,0.031259067,-0.030985266,0.0029775975,-0.004437875,0.00010151711,-0.009873987,0.005307767,0.058502372,0.03967848,0.034978215,0.013142499,0.045268606,-0.026399082,0.030985266,0.037898768,-0.010318915,-0.0025241128,0.03696328,0.011397011,-0.0071188537,0.024117399,-0.027745275,-0.021710223,-0.01472827,-0.014979254,-0.01739784,-0.018048119,0.01580066,0.018801074,-0.011693629,0.000017502565,0.044127766,-0.038583275,0.020147268,-0.059962653,-0.033746105,-0.010455816,0.005938082,-0.011414124,-0.010604125,0.012104332,0.030323578,-0.024870355,-0.019303046,-0.023866413,-0.04004355,-0.006833643,0.039746933,0.006126321,0.029935692,0.013655878,0.018105162,0.024414018,-0.011088983,-0.002314483,0.031053718,0.027608374,0.02085459,-0.0026011197,-0.030300763,0.008761666,-0.031806674,-0.008134203,-0.010239056,0.015218832,0.0071701915,-0.041891716,0.014785311,-0.06799418,0.026672885,-0.022965148,0.01594897,-0.037784684,-0.06913502,-0.021755856,-0.028657949,0.019805016,0.021926982,-0.0057555474,-0.024710637,-0.05320887,0.07036713,0.023181908,-0.014945029,0.0030460479,-0.025349507,0.066397004,0.013028415,0.0058639273,-0.046341,-0.026148098,-0.08574568,0.018493047,0.016793193,0.02063783,0.0054275556,-0.014500101,-0.016724743,-0.04086496,0.0033255543,-0.016690517,0.059232514,-0.0070903325,-0.009554551,-0.07242065,-0.049284372,0.037716236,-0.03760215,-0.013530386,0.00064421917,0.019679524,0.00510812,-0.0026310666,-0.030688647,0.0109691955,-0.019063469,-0.015538267,0.058593642,0.0029262595,0.011830531,-0.02445965,0.0466148,0.0029576328,0.010598421,-0.01739784,-0.0123895435,0.021482054,0.0033683358,0.023501344,0.021014309,-0.02028417,0.013587427,0.02201825,-0.059917018,0.023980496,-0.01890375,-0.015937561,-0.0035309058,-0.012252642,0.012275459,0.04627255,0.053939007,-0.031008083,0.03023231,0.008311033,0.04451565,-0.045451142,-0.012572078,-0.014956438,-0.0075694863,0.037944403,0.018972201,0.026672885,0.025737394,0.016701926,-0.012537853,-0.03545737,-0.021014309,-0.028908934,0.039313413,-0.056266323,0.012457994,0.02649035,-0.006497095,-0.00018520856,0.0042581926,0.0012713257,-0.070275865,-0.022622894,0.024642186,-0.003294181,0.054897312,-0.042781573,-0.00021069925,0.0018153647,0.053437036,-0.007078924,-0.01623418,0.0037647784,0.016188547,0.0060008285,0.027950628,-0.0036364337,-0.03897116,0.043466076,0.014808129,0.016268406,0.015127564,0.00353661,0.005553048,-0.006040758,0.023295993,-0.027334573,-0.042119883,-0.014682636,-0.031053718,0.07278571,-0.023934864,0.041549463,-0.017203895,0.0037733347,0.0035765395,0.011716447,-0.05088155,-0.05261563,-0.034704413,0.06616883,0.0059266738,-0.046637617,0.0042838613,0.0085049765,-0.00097328075,0.019097693,0.058639277,-0.041777633,0.033951458,-0.010820886,-0.03436216,-0.04504044,-0.025303874,-0.013564611,-0.0063830107,-0.009571664,-0.05334577,-0.0010666872,-0.016131505,-0.03456751,0.011128913,-0.04004355,0.0069819526,0.03607342,-0.013416301,0.033860188,0.020774731,0.011351377,0.028840484,-0.032787796,0.017009953,0.021664588,0.016884461,0.02064924,0.032787796,0.010438704,0.059369415,-0.0704584,-0.015481225,-0.04127566,-0.022109516,-0.0025754506,0.04755029,0.02418585,-0.029958509,0.006417236,0.013758553,0.029365271,0.0061377296,0.03696328,-0.0033540754,-0.014876579,0.033609204,-0.052296195,0.024003314,0.03976975,0.02280543,0.023353035,0.0052592815,-0.026307816,0.05891308,0.02273698,-0.0048656906,0.011071871,0.010375957,0.0005426129,0.055125482,-0.02742584,0.0046945647,-0.027745275,0.008613356,0.022896698,-0.04280439,-0.04006637,-0.011944615,0.027585559,0.029684708,0.022143742,-0.033312585,0.022885289,0.021379378,0.04394523,0.030711465,-0.012252642,-0.03710018,-0.0487824,-0.0005333436,0.044127766,0.0378075,0.0022232158,0.016211364,-0.05845674,0.03370047,-0.011014828,-0.057772234,-0.017740091,0.021949798,0.011579545,-0.016222773,-0.05882181,-0.03673511,-0.031555686,-0.009999479,-0.059095614,0.042621855,0.07287698,-0.00967434,0.049238738,0.05211366,-0.0058924486,0.012229825,0.038948342,0.00070625247,-0.025052888,0.021972615,0.002421437,0.047960993,0.037373982,0.0009476118,0.015447,-0.025395142,-0.04964944,-0.0418689,0.005995124,-0.021539096,0.0074725146,0.0017255234,-0.04960381,0.0085677225,0.035503,0.0052336124,0.036849193,0.021231068,0.033609204,0.022212192,-0.030871183,0.02945654,0.011163138,0.056357592,-0.031122169,0.0373968,0.029319638,-0.016713334,0.048006628,-0.0053163236,0.0048885075,0.030277945,-0.05471478,0.03773905,0.014625593,-0.038332287,-0.023592612,0.0004385111,0.046021562,-0.005227908,0.025052888,0.05558182,-0.0069819526,0.026581617,0.004654635,-0.023501344,0.043123826,0.013633061,-0.05188549,-0.009714269,0.0030289353,0.025942745,-0.029433722,-0.052752532,-0.029935692,-0.003981538,0.028612316,-0.030141044,0.010455816,-0.01588052,-0.05521675,-0.006508503,-0.040819325,-0.047459025,0.012229825,0.033654835,-0.038788624,-0.029114285,0.013804187,-0.022292051,-0.03242273,-0.019325862,-0.012092925,0.020694872,0.012092925,-0.010712505,0.07680148,-0.05768097,0.021630364,0.054167174,0.039701298,-0.0029119991,-0.008105682,0.009902508,-0.021310927,0.032080475,0.04670607,0.06794854,-0.030688647,-0.05261563,0.038993977,0.01580066,-0.002504148,0.018493047,0.017078403,0.0068450514,0.021516278,-0.012743204,-0.01371292,0.025395142,-0.009406242,0.005093859,0.0006837921,-0.018196428,-0.025668943,0.0013454804,-0.0016456645,0.032445546,0.0421427,0.0121841915,-0.00051302236,-0.04230242,0.029570622,-0.01689587,-0.029479355,0.012640528,-0.034019906,0.0036678067,-0.0031430195,-0.023273176,0.01594897,-0.01898361,0.030620197,0.0114426445,0.021984024,-0.010541379,0.0009839762,-0.03349512,-0.011334265,0.019725157,0.020672055,0.014135031,0.034293707,0.032240193,-0.015093339,0.03203484,-0.001521598,0.06028209,-0.042028617,-0.001196458,0.01623418,0.024779087,0.01457996,-0.01796826,-0.023330217,-0.04116158,-0.016918685,-0.02555486,0.010490041,-0.027517106,0.021276701,-0.021618955,0.006394419,0.008082865,-0.05348267,-0.004928437,0.022292051,0.014876579,-0.0092465235,-0.009081102,0.04253059,-0.07077783,-0.023056416,0.00073869515,0.054669145,-0.01143694,0.021527687,0.020329803,-0.011214476,0.03876581,-0.0074439934,0.052569997,-0.005413295,-0.021014309,0.032148924,-0.0051309364,-0.02165318,0.027676824,-0.022577262,0.015230239,0.035662718,0.035001032,0.02345571,0.0069135022,-0.004791536,0.028064711,0.03422526,0.027585559,0.012686162,0.021938391,0.012366726,-0.006576954,0.006907798,-0.016952911,-0.06484546,-0.018470231,0.0051879785,0.015720801,-0.0015002071,-0.0011600936,-0.023615427,-0.0075523737,-0.009719973,0.031373154,-0.0033626317,-0.004126996,-0.00023012921,-0.0013433413,0.004982627,-0.00490562,-0.022497403,0.0440365,0.0059666033,0.014420242,0.005359105,0.0025483556,0.035503,0.008864342,0.021231068,-0.04243932,0.019896284,0.036552574,-0.030916816,0.028406965,0.032650895,-0.023524161,0.008755961,0.018778259,0.029365271,0.000049020553,0.0038075598,0.0376706,0.021926982,0.011414124,-0.043283544,0.026307816,-0.00043744157,0.020409662,-0.006451461,-0.0064115315,0.0098625785,0.0102732815,-0.014990663,0.0032314349,0.010375957,0.008196949,0.019588256,0.0023558387,0.015321507,-0.012013066,0.006565545,-0.004517734,-0.028406965,-0.014842354,0.034316525,0.05307197,-0.008139907,-0.0009654375,-0.0020806105,-0.022200784,-0.02749429,-0.0037419614,0.023410076,0.000570421,-0.010010888,0.013872637,-0.02266853,-0.013439118,-0.034886945,-0.009600185,0.006177659,-0.036484126,-0.01486517,0.009029764,0.039883833,-0.031875122,0.00068094005,0.036826376,0.030004142,0.036575392,-0.017785726,-0.009725678,-0.020375436,0.00152445,0.027813727,-0.00364499,-0.0032200264,-0.021607546,0.010159197,0.027152037,0.004360868,0.028133161,0.033951458,-0.0022374762,0.030551746,0.013884046,0.02056938,-0.0033312584,-0.020249944,0.036324408,-0.027197672,0.04465255,-0.0052649854,-0.0199191,0.04755029,0.011123208,0.0032513994,0.043192275,-0.012891514,0.008784483,-0.0018139386,-0.0036136168,-0.027060771,0.0030574563,0.059415046,0.007985894,-0.020306986,-0.021413604,-0.0031059422,-0.002641049,-0.025577676,0.012457994,0.038514823,-0.003431082,-0.0003010753,0.01704418,-0.030437663,-0.01082659,0.011020533,-0.013439118,0.0027437247,0.044584103,0.069043756,0.023729512,0.00909251,0.009343496,-0.04964944,0.015857702,0.014751086,-0.0038560457,0.029981326,-0.039655667,-0.005507414,-0.04755029,-0.024847537,-0.01472827,0.04257622,-0.0016128652,-0.00015071592,0.03219456,0.026421899,-0.013701512,0.004358016,0.009326383,0.046158463,0.044789456,0.023033598,0.015789252,0.040842142,-0.010763844,-0.010900744,-0.009434762,0.021995433,-0.013963905,0.01501348,-0.043831147,0.03203484,0.0016713334,-0.009868283,0.011334265,0.01313109,0.013553202,0.021345152,0.009491805,-0.0055017103,0.011134617,-0.027380206,-0.011003421,-0.031008083,-0.013667286,0.03297033,-0.0077120913,-0.015424183,-0.012332501,0.015401366,0.0144430585,0.011921798,0.00321147,-0.027334573,-0.03326695,-0.027266122,-0.009075398,0.00397013,0.073333316,-0.059004344,0.017842768,0.044561286,-0.01457996,-0.041617915,0.0073812474,0.011898981,0.012731796,-0.03313005,0.05895871,-0.017591782,0.013108274,0.039176513,-0.013758553,0.01392968,-0.02822443,-0.029137103,0.037282713,0.0039359047,0.03230864,-0.01983924,0.002525539,-0.020831773,0.0071131494,0.012013066,0.030916816,-0.0037704825,-0.034613144,-0.00028200186,0.0110946875,0.018572906,0.015994605,0.0009590202,0.006611179,-0.02064924,0.021824306,0.04437875,-0.009640114,-0.004976923,-0.003288477,-0.0044749524,-0.0058810404,0.021516278,0.064982355,-0.004974071,0.047595926,0.0233074,0.023615427,-0.011454053,0.004435023,0.00116865,0.02959344,0.0035822436,0.014534326,0.025874294,-0.0007914591,-0.009189482,0.012674754,0.01933727,0.018059528,0.0113627855,0.00571847,0.011271519,0.0056015337,-0.0055359355,0.012743204,0.047869727,-0.0050567817,0.017740091,-0.03440779,-0.007780542,0.02388923,0.01262912,0.0024143066,0.02591993,0.019143328,0.029821608,0.03233146,0.013735737,0.042074252,-0.042256784,0.03630159,0.009999479,0.033609204,-0.0015729358,0.0029519284,-0.027836543,0.023501344,-0.0051024156,-0.02742584,-0.017694458,-0.010872223,-0.014773903,-0.035708353,0.028931752,-0.037647784,-0.029547807,-0.010307507,0.021755856,-0.025851479,-0.0011479722,0.027654009,-0.00800871,-0.045724943,0.006371602,-0.007980189,-0.04310101,0.02078614,0.020238535,-0.044561286,-0.024094582,-0.028110346,0.0052878023,0.011237293,-0.005875336,-0.020364027,0.024915988,-0.016279815,0.010147789,-0.023364443,0.030848365,0.018196428,-0.001033888,-0.036826376,-0.002609676,0.0008356667,-0.021607546,-0.0012941426,-0.0036535463,0.014043764,0.023569794,-0.022337684,-0.029684708,-0.08182118,0.045063257,-0.040728055,-0.004794388,-0.0030175268,-0.0142377075,-0.014488692,0.021938391,-0.024915988,0.037647784,-0.0061605466,-0.03440779,-0.013963905,0.012400952,-0.0023002226,-0.017865585,0.015709393,0.015526859,0.0063544894,-0.026421899,0.0049113245,0.019325862,0.01399813,-0.0352292,0.00403858,-0.00485143,0.02749429,-0.026581617,0.006086392,-0.005279246,0.006673925,0.030597381,0.0033227021,0.0220867,-0.016325448,-0.009948142,0.018823892,0.009902508,-0.026535984,-0.010923562,-0.040522706,-0.022930922,0.022029657,0.040819325,-0.0054874495,0.015640942,-0.039655667,-0.0032029138,-0.032650895,0.019154737,0.019565439,0.01884671,0.010638351,-0.04490354,0.008539202,0.027904993,-0.0053733652,0.025166973,-0.007752021,-0.022600079,-0.016188547,-0.019371497,0.0042781574,0.031099351,-0.046957053,-0.0031344632,0.017192489,0.0011337117,0.00012968165,0.01912051,-0.032057658,-0.016108688,-0.0008919958,0.01067828,-0.040385805,-0.0028064712,-0.002887756,-0.005598682,0.027562741,0.03313005,0.03867454,0.01977079,-0.0021077055,0.015743619,0.024938805,-0.004974071,0.040317353,0.020478113,-0.009434762,0.011716447,-0.011026237,0.008870046,0.0063487855,0.035913702,-0.039450314,0.01920037,0.03493258,0.023546977,-0.02445965,-0.02598838,-0.071416706,-0.03796722,0.0062175887,0.022223601,0.0012463698,0.013416301,0.028635133,0.009366312,-0.037510883,-0.036780745,0.0041526644,-0.010661168,0.004061397,0.0121841915,-0.016770376,0.0027822282,-0.021482054,0.00887575,0.024619369,-0.025098523,-0.029753158,-0.048873667,-0.025577676,-0.03817257,-0.03730553,-0.029365271,-0.018892342,0.044721004,-0.006942023,0.0211398,-0.03589089,-0.013553202,0.000816415,-0.03954158,-0.0027052215,0.0021775821,0.0018139386,0.027676824,0.022292051,-0.021025717,-0.04120721,0.028019078,0.037647784,-0.009429059,-0.018447414,0.0072557544,-0.029205553,0.0123895435,0.04129848,0.0013554628,0.008196949,0.009737086,0.0068735727,-0.007364135,-0.07319642,-0.012115741,0.012663346,-0.052935064,0.015298691,0.00094333367,0.013781371,0.034339342,-0.022257825,-0.011682222,0.018264879,-0.013142499,0.004520586,-0.032673713,0.0051451973,0.022531629,-0.0031173506,-0.0012207009,-0.004651783,-0.017363613,0.017477699,0.017922627,-0.021744447,0.010199127,0.0039102356,-0.012606303,0.0061605466,0.0030888296,0.014009539,-0.0026068238,0.02482472,0.0030004142,-0.004874247,-0.0017027066,0.0017640268,-0.012309684,-0.0036421379,0.009571664,-0.0054874495,-0.020740505,-0.008750258,-0.036392856,0.004794388,-0.0057783644,-0.022006841,0.0015458408,-0.020455295,0.014283341,0.01884671,-0.010917857,0.042644672,-0.037784684,0.007535261,-0.020774731,0.0031715406,-0.010638351,0.020478113,-0.050288312,-0.0012613434,-0.012092925,0.009132439,-0.025075706,0.00018859543,-0.025030073,0.06155983,0.025805844,0.015435591,-0.011009125,-0.0029048687,-0.0006424366,-0.04120721,0.024414018,-0.031213434,-0.0048542824,-0.011516799,-0.0053134714,-0.041777633,-0.0034624552,-0.013028415,-0.0005201526,-0.041960165,-0.028817667,0.057544068,-0.026102463,-0.011705038,-0.00995955,0.0011087557,-0.033175685,-0.04476664,-0.014077989,0.0009055433,-0.0052706897,-0.029433722,0.0021005752,-0.024801904,0.04034017,0.007814767,0.013747145,-0.023216134,-0.029114285,-0.0051566055,-0.0022103812,0.000788607,0.010313211,-0.024026131,0.0025012959,0.040728055,0.0004353025,0.015424183,0.015640942,0.029684708,-0.0015429887,0.03354075,-0.02382078,-0.026535984,-0.0113000395,0.011163138,0.031943575,0.0025611902,-0.045359876,-0.03182949,-0.02799626,-0.0485086,-0.013256583,0.008847229,-0.031236252,-0.0024014723,0.020729098,0.005381922,-0.043694247,0.009143848,0.016074462,0.059551947,-0.0064001232,0.043351993,0.033883005,0.002884904,0.0011579546,-0.026718518,0.001822495,0.009645819,0.04063679,0.00869892,-0.002285962,-0.027539924,-0.036621027,0.0022560148,-0.0057013575,0.016222773,0.0044492837,0.022577262,-0.0051309364,-0.030392028,0.01746629,0.0132794,0.026011195,-0.0047801277,0.013188133,-0.0020235684,0.008761666,-0.0020492373,-0.004569072,-0.011705038,0.016770376,0.03840074,0.028064711,0.026284998,0.03783032,0.02735739,-0.0007722074,0.008921384,-0.031395968,-0.004415058,0.036484126,-0.022976557,-0.016211364,0.0030403438,0.011060462,-0.0121841915,-0.0072557544,0.0064115315,-0.002776524,0.0020749064,0.008744554,-0.024938805,0.012891514,0.0104158865,-0.0032000616,0.014876579,-0.013895455,0.0035337578,-0.026353449,-0.035845254,0.03456751,0.036141872,-0.034886945,-0.007643641,-0.028908934,0.008145612,-0.009503214,0.028133161,0.062335603,-0.013267992,0.017295163,0.0399751,-0.025372325,0.022577262,-0.025760211,0.038606092,-0.008870046,0.008322442,-0.0117734885,-0.014488692,-0.009115327,0.05183986,-0.0014310436,-0.009680044,0.0066054747,-0.010758139,0.02035262,0.005082451,0.038651723,0.010661168,0.02252022,-0.00403858,-0.03449906,0.011562433,0.007997302,-0.007318501,-0.0017069847,0.010729618,0.0009426206,0.0074439934,0.010689689,0.01248081,-0.048554234,0.028133161,0.0023629689,0.010798069,-0.006263222,-0.008214062,-0.013222358,-0.017728684,0.009235116,0.009680044,-0.0019422834,-0.015104747,0.0064799823,0.0051908307,0.0037105884,0.020820364,-0.007666458,0.005139493,0.0013233767,0.011750672,-0.01573221,0.013724328,0.024915988,-0.008271104,-0.006257518,-0.02432275,-0.0038703063,-0.02945654,0.030277945,0.0011258684,-0.0026866826,-0.02569176,0.014625593,0.017557558,-0.018584315,0.015047705,0.03783032,-0.036940463,0.023569794,-0.025303874,0.0074382895,-0.027699642,0.016063055,0.007700683,-0.00031248372,-0.028794851,0.010010888,-0.034521878,-0.011956023,0.0029519284,0.044150583,0.007837584,0.0093492,0.006228997,-0.008436526,0.016633475,-0.025851479,-0.0064571653,-0.019394312,-0.011539616,-0.014089398,0.02915992,0.018242063,0.020523746,-0.022314869,-0.0233074,-0.019907692,0.013838412,-0.017078403,-0.0011800583,-0.0095317345,-0.00028503223,-0.034955397,0.0021932686,0.02966189,0.024665002,0.00855061,0.012834472,-0.01067828,0.02266853,-0.03246836,-0.009001243,0.029775973,-0.026535984,-0.017066995,-0.00022175115,-0.024801904,0.026216548,0.015834887,0.011026237,-0.004437875,-0.01912051,-0.0035480184,0.025897112,-0.050699014,-0.000490562,0.03602779,-0.005384774,0.009571664,0.0130055975,-0.0040129116,0.0068108262,-0.019896284,-0.02525824,-0.020010367,0.0013240897,0.0064115315,0.007666458,-0.032445546,0.005116676,-0.016930094,0.012400952,-0.006907798,0.04494917,0.0039587216,0.03773905,0.021185435,-0.009223707,-0.017546149,-0.037898768,-0.029867241,-0.00859054,0.016850235,-0.01349616,0.016279815,-0.016713334,0.024801904,0.019109102,-0.004763015,-0.007175896,-0.002642475,-0.013963905,0.020033184,-0.0051309364,-0.00837378,-0.06242687,0.041960165,-0.006331673,-0.0031886532,-0.026923869,-0.023638245,0.011642292,0.017477699,-0.0015387106,0.0076607536,0.023843596,0.0070047695,-0.016781785,-0.0003975121,0.03897116,0.041686364,-0.044401567,0.024528101,0.044401567,0.0047230856,-0.010934969,0.029388089,0.025007255,-0.051474787,0.05708773,0.037624966,-0.009195186,-0.010313211,-0.010398774,-0.0113798985,0.02252022,0.007991598,-0.03730553,0.0030517522,0.0004787971,-0.018732624,-0.003992947,0.0110946875,-0.03340385,0.010552788,0.017728684,-0.02849823,0.012743204,0.008904271,-0.046865787,0.01147687,-0.047732826,0.030392028,-0.011608067,0.0073127965,0.015481225,0.021310927,0.03212611,0.000978985,-0.027311755,0.0025683204,0.027334573,0.0046004453,-0.0011900407,-0.026581617,-0.04296411,0.019006427,0.006827939,-0.00028004104,-0.022896698,0.00033333976,-0.012937147,0.005498858,0.020489521,0.0177515,-0.00022050335,-0.03443061,-0.013074049,0.0020378288,-0.057452798,0.032947514,0.006673925,0.017717276,-0.014945029,0.0046375226,-0.006086392,0.0049398458,0.00386175,0.020683464,-0.016804602,0.021778673,-0.013792779,0.012674754,0.0077463165,-0.023295993,0.026535984,0.032148924,0.009035468,-0.029296821,0.024710637,0.025646126,0.010832294,-0.0006203328,-0.028566683,-0.022349093,0.003619321,-0.013256583,-0.0063259685,0.051794223,-0.001605735,0.01486517,0.03313005,0.015766436,-0.0056785406,0.022474585,0.018390372,-0.018778259,-0.0178884,0.0020806105,-0.0071587833,0.020603605,-0.019382905,-0.01970234,-0.0040756576,0.013769962,-0.0043694247,-0.015104747,-0.02216656,-0.029479355,-0.008402301,0.032217376,-0.025372325,-0.0064115315,-0.017409248,0.021333745,0.04184608,-0.044127766,-0.013302217,-0.0023373,0.012549262,-0.024733452,-0.019645298,-0.043192275,-0.035982154,0.011254406,0.026604434,0.0023344478,-0.005247873,0.021025717,-0.014887987,-0.005359105,-0.017272348,-0.004563368,0.0021005752,-0.017934036,-0.023204725]);
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (1, 1, 2, 'Elon Reeve Musk is the founder, chairman, CEO, and CTO of SpaceX.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (2, 1, 3, 'Elon Reeve Musk is the angel investor, CEO, product architect, and former chairman of Tesla, Inc.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (3, 1, 4, 'Elon Reeve Musk is the owner, executive chairman, and CTO of X Corp.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (4, 1, 5, 'Elon Reeve Musk is the founder of The Boring Company.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (5, 1, 6, 'Elon Reeve Musk is the founder of xAI.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (6, 1, 7, 'Elon Reeve Musk is the co-founder of Neuralink.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (7, 1, 8, 'Elon Reeve Musk is the co-founder of OpenAI.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (8, 1, 9, 'Elon Reeve Musk is the president of the Musk Foundation.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (9, 10, 1, 'Forbes estimates Elon Musk\'s net worth to be $196 billion as of April 2024.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (10, 1, 11, 'Elon Reeve Musk was born in Pretoria, South Africa\'s administrative capital.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (11, 1, 12, 'Elon Reeve Musk briefly attended the University of Pretoria before immigrating to Canada.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (12, 1, 13, 'Elon Reeve Musk matriculated at Queen\'s University at Kingston in Canada.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (13, 1, 14, 'Elon Reeve Musk transferred to the University of Pennsylvania and received bachelor\'s degrees in economics and physics.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (14, 1, 15, 'Elon Reeve Musk moved to California in 1995 to attend Stanford University but dropped out after two days.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (15, 1, 16, 'Elon Reeve Musk co-founded Zip2, an online city guide software company, with his brother Kimbal.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (16, 17, 16, 'Compaq acquired Zip2 for $307 million in 1999.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (17, 1, 18, 'Elon Reeve Musk co-founded X.com, a direct bank, in 1999.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (18, 18, 19, 'X.com merged with Confinity in 2000 to form PayPal.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (19, 20, 18, 'PayPal was formed from the merger of X.com and Confinity.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (20, 21, 20, 'eBay acquired PayPal for $1.5 billion in October 2002.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (21, 1, 2, 'Elon Reeve Musk founded SpaceX using $100 million of the money he made from the sale of PayPal.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (22, 1, 3, 'Elon Reeve Musk became an early investor in Tesla Motors, Inc. (later Tesla, Inc.) in 2004 and assumed the position of CEO in 2008.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (23, 1, 22, 'Elon Reeve Musk helped create SolarCity in 2006, which was acquired by Tesla in 2016 and became Tesla Energy.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (24, 22, 23, 'SolarCity was acquired by Tesla in 2016 and became Tesla Energy.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (25, 1, 24, 'Elon Reeve Musk proposed a hyperloop high-speed vactrain transportation system in 2013.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (26, 1, 8, 'Elon Reeve Musk co-founded OpenAI in 2015.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (27, 1, 7, 'Elon Reeve Musk co-founded Neuralink in 2016.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (28, 1, 5, 'Elon Reeve Musk co-founded The Boring Company in 2016.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (29, 25, 1, 'The U.S. Securities and Exchange Commission (SEC) sued Elon Musk in 2018, alleging that he had falsely announced securing funding for a private takeover of Tesla.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (30, 1, 26, 'Elon Reeve Musk acquired Twitter for $44 billion in 2022.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (31, 26, 4, 'Twitter was merged into X Corp. and rebranded as X.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (32, 1, 6, 'Elon Reeve Musk founded xAI in March 2023.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (33, 27, 1, 'Maye Musk is Elon Musk\'s mother.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (34, 28, 1, 'Errol Musk is Elon Musk\'s father.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (35, 29, 1, 'Kimbal Musk is Elon Musk\'s younger brother.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (36, 30, 1, 'Tosca Musk is Elon Musk\'s younger sister.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (37, 28, 31, 'Errol Musk partly owned a rental lodge at the Timbavati Private Nature Reserve.');
INSERT INTO relationships (id, source_entity_id, target_entity_id, relationship_desc) VALUES (38, 28, 32, 'Errol Musk was elected to the Pretoria City Council as a representative of the anti-apartheid Progressive Party.');