text
stringlengths
14
5.22M
embeddings
sequence
<?php namespace Lubos\Wedos\Shell; use Cake\Filesystem\File; use Cake\Filesystem\Folder; use Cake\Utility\Xml; class DnsShell extends WedosShell { /** * Gets the option parser instance and configures it. * * @return \Cake\Console\ConsoleOptionParser */ public function getOptionParser() { $parser = parent::getOptionParser(); $parser->addSubcommand('rowsList'); $parser->addSubcommand('domainInfo'); $parser->addSubcommand('rowAdd', [ 'help' => 'DNS row add', 'parser' => [ 'description' => implode(PHP_EOL, [ 'Example:', '', 'wedos rowAdd domain.cz 1.2.3.4 --name mail', '# Adds A record mail.domain.cz with IP 1.2.3.4', '', 'wedos rowAdd domain.cz "10 mail.domain.cz" --type MX', '# Adds MX record' ]), 'arguments' => [ 'domain' => [ 'help' => 'Domain name', 'required' => true ], 'rdata' => [ 'help' => 'Record data (e.g. IP address)', 'required' => true ] ], 'options' => [ 'name' => [ 'help' => 'Record name (default empty)' ], 'ttl' => [ 'help' => 'TTL (default 1800)' ], 'type' => [ 'help' => 'Record type (default A)' ], ] ] ]); $parser->addSubcommand('rowAddBatch', [ 'help' => 'DNS row add batch', 'parser' => [ 'description' => 'Batch DNS row add via passed json file.', 'arguments' => [ 'config' => [ 'requred' => true ] ] ] ]); $parser->addSubcommand('rowDelete', [ 'help' => 'DNS row delete', 'parser' => [ 'arguments' => [ 'domain' => [ 'help' => 'Domain name', 'required' => true ], 'row_id' => [ 'help' => 'Record ID', 'required' => true ] ] ] ]); $parser->addSubcommand('rowDeleteAll', [ 'help' => 'DNS delete all rows', 'parser' => [ 'arguments' => [ 'domain' => [ 'help' => 'Domain name', 'required' => true ] ] ] ]); return $parser; } /** * Getting domain DNS info * * @param string $domain Domain to check. * @return \Cake\Network\Http\Response */ public function domainInfo($domain) { $this->request['request']['command'] = 'dns-domain-info'; $this->request['request']['data'] = [ 'name' => $domain ]; $request = Xml::fromArray($this->request)->asXml(); $response = $this->client->post( $this->url, ['request' => $request], ['type' => 'xml'] ); if ($response->isOk()) { $results = Xml::toArray($response->xml); $this->out(pr($results['response'])); } else { debug($response); } return $response; } /** * Getting domain DNS list * * @param string $domain Domain to check. * @return \Cake\Network\Http\Response */ public function rowsList($domain) { $this->request['request']['command'] = 'dns-rows-list'; $this->request['request']['data'] = [ 'domain' => $domain ]; $request = Xml::fromArray($this->request)->asXml(); $response = $this->client->post( $this->url, ['request' => $request], ['type' => 'xml'] ); if ($response->isOk()) { $results = Xml::toArray($response->xml); $this->out(pr($results['response'])); } else { debug($response); } return $response; } /** * DNS row add * * Example: * wedos dnsRowAdd domain.cz 1.2.3.4 --name mail # Adds A record mail.domain.cz with IP 1.2.3.4 * wedos dnsRowAdd domain.cz "10 mail.domain.cz" --type MX # Adds MX record * * options via parser * - name Record name (default empty). * - ttl TTL (default 1800). * - type Record type (default A). * * @param string $domain Domain name. * @param string $rdata Record data (e.g. IP address). * @return \Cake\Network\Http\Response */ public function rowAdd($domain, $rdata) { $data = [ 'domain' => $domain, 'rdata' => $rdata, ]; unset($this->params['help']); unset($this->params['verbose']); unset($this->params['quiet']); if (!empty($this->params)) { $data = array_merge($data, $this->params); } if (!isset($data['name'])) { $data['name'] = ' '; } if (!isset($data['ttl'])) { $data['ttl'] = '1800'; } if (!isset($data['type'])) { $data['type'] = 'A'; } $this->request['request']['command'] = 'dns-row-add'; $this->request['request']['data'] = $data; $request = Xml::fromArray($this->request)->asXml(); $response = $this->client->post( $this->url, ['request' => $request], ['type' => 'xml'] ); if ($response->isOk()) { $results = Xml::toArray($response->xml); $this->out(pr($results['response'])); } else { debug($response); } return $response; } /** * Reads json config and add DNS records * * @param string $config Path to json file. * @return bool */ public function rowAddBatch($config) { $timeStart = microtime(true); if (!is_array($config)) { $file = new File($config); if (!$file->exists()) { $this->err('<error>Error</error>: config file does not exist.'); $this->hr(); return false; } $json = $file->read(); $config = json_decode($json, true); if (!$config) { $this->err('<error>Error</error>: file is not in valid json format.'); $this->hr(); return false; } } $this->out(sprintf('%s DNS records to add', count($config))); foreach ($config as $item) { $domain = $item['domain']; $rdata = $item['rdata']; unset( $item['domain'], $item['rdata'] ); $this->params = $item; $this->rowAdd($domain, $rdata); } $this->out(sprintf( '<success>rowAddBatch finished in %ss</success>', round(microtime(true) - $timeStart, 2) )); $this->hr(); return true; } /** * DNS row delete * * @param string $domain Domain name. * @param string $rowID Record ID (dnsRowsList to see IDs). * @return \Cake\Network\Http\Response */ public function rowDelete($domain, $rowID) { $this->request['request']['command'] = 'dns-row-delete'; $this->request['request']['data'] = [ 'domain' => $domain, 'row_id' => $rowID ]; $request = Xml::fromArray($this->request)->asXml(); $response = $this->client->post( $this->url, ['request' => $request], ['type' => 'xml'] ); if ($response->isOk()) { $results = Xml::toArray($response->xml); $this->out(pr($results['response'])); } else { debug($response); } return $response; } /** * DNS delete all rows * * @param string $domain Domain name. * @return bool */ public function rowDeleteAll($domain) { $response = $this->rowsList($domain); $records = Xml::toArray($response->xml); foreach ($records['response']['data']['row'] as $row) { $this->rowDelete($domain, $row['ID']); } return true; } }
[ -0.03655397146940231, 0.00008199311560019851, 0.003481648862361908, -0.014961695298552513, -0.034619588404893875, 0.02451731637120247, -0.016864683479070663, 0.040530938655138016, 0.02693372778594494, 0.04528215900063515, 0.0343872606754303, 0.014736336655914783, 0.011701746843755245, -0.008724881336092949, -0.02736254408955574, 0.0013040906051173806, -0.009556352160871029, -0.02403557300567627, -0.016979610547423363, 0.008307342417538166, -0.01544653158634901, 0.01361493393778801, -0.06184545159339905, -0.0388563871383667, -0.0273752361536026, 0.03407958149909973, 0.00845180545002222, -0.0033643567003309727, 0.059345562011003494, 0.05177436023950577, -0.025303175672888756, -0.011673315428197384, 0.025806725025177002, -0.04879085719585419, 0.005711575970053673, -0.009612614288926125, 0.0351765975356102, -0.01898813247680664, 0.0058099390007555485, -0.06461755931377411, 0.007718910928815603, -0.005770229734480381, 0.038260579109191895, -0.04218452423810959, -0.0440780408680439, -0.03369573876261711, 0.006340103689581156, -0.011569958180189133, 0.010959220118820667, 0.01861606352031231, 0.005746553186327219, -0.0014214926632121205, 0.04769267141819, 0.01914397068321705, 0.001837954274378717, -0.011095869354903698, 0.009422598406672478, -0.0027030028868466616, -0.05788474157452583, 0.033026039600372314, 0.0019005873473361135, 0.00294395606033504, 0.012844104319810867, -0.0741102397441864, 0.013929658569395542, 0.02256595715880394, -0.01722394861280918, 0.0020884457044303417, 0.006673680618405342, -0.028811244294047356, -0.02816341444849968, 0.018768813461065292, -0.030442092567682266, -0.04392736032605171, -0.013860916718840599, -0.0005029099993407726, -0.027576221153140068, 0.007336755748838186, 0.00014503314741887152, 0.03512093052268028, 0.005726990289986134, 0.05900285020470619, 0.013070273213088512, -0.0012460267171263695, -0.06009184941649437, -0.00945463590323925, 0.02396024577319622, 0.02138444595038891, -0.01133322436362505, 0.01980661228299141, -0.02712051197886467, 0.057636041194200516, -0.022192612290382385, 0.014665109105408192, 0.04229236766695976, 0.03957772254943848, -0.018273061141371727, 0.03660603240132332, -0.0297007467597723, -0.0005975819076411426, 0.05479320511221886, 0.0179818794131279, 0.008431434631347656, 0.011371630243957043, -0.03361920267343521, 0.010208101011812687, 0.022820953279733658, 0.03087933547794819, -0.014797602780163288, -0.018095972016453743, 0.005227451212704182, -0.012661907821893692, 0.03935032710433006, 0.004795358516275883, -0.013356818817555904, 0.05635584145784378, 0.002178121590986848, 0.01682695560157299, -0.03567352145910263, -0.007329407148063183, 0.01661119982600212, 0.010418386198580265, 0.018980566412210464, -0.03465665131807327, 0.010822192765772343, -0.03340252861380577, -0.02723412960767746, 0.05022680386900902, -0.027633197605609894, -0.036467816680669785, 0.028800012543797493, -0.016890354454517365, 0.02659364603459835, 0.017414074391126633, 0.00628273282200098, 0.030501047149300575, -0.004570385906845331, 0.015810001641511917, 0.05103485658764839, -0.06725895404815674, 0.025917567312717438, 0.024255000054836273, 0.01462757308036089, 0.10858172178268433, -0.010120071470737457, 0.008387557230889797, -0.010814642533659935, -0.00674049137160182, -0.04399784281849861, 0.008001270703971386, -0.015492327511310577, 0.018297355622053146, -0.0005011556786485016, 0.018121886998414993, -0.012704488821327686, -0.013687767088413239, 0.012912414036691189, 0.006885668728500605, 0.021363690495491028, 0.03518356755375862, -0.03700777888298035, -0.005719997454434633, -0.019293827936053276, 0.0492570623755455, -0.011373371817171574, 0.004174491856247187, -0.03314177319407463, 0.02040613628923893, -0.022783758118748665, -0.03199947625398636, 0.02971555106341839, -0.019528154283761978, -0.00563715398311615, 0.03032974898815155, 0.005432404577732086, 0.026179596781730652, 0.04192783683538437, -0.009718081913888454, 0.027137702330946922, 0.05054120346903801, -0.044358979910612106, 0.018523890525102615, -0.01934211701154709, 0.021366026252508163, 0.014594200067222118, -0.0072524831630289555, 0.012183001264929771, -0.024282731115818024, -0.045820772647857666, -0.04449723660945892, 0.03012273833155632, 0.01389546599239111, -0.02408745512366295, 0.0038449035491794348, 0.027379538863897324, 0.02634512260556221, -0.024229446426033974, 0.004775465931743383, -0.018299080431461334, -0.03641337901353836, -0.03147216886281967, 0.05714905261993408, -0.010683276690542698, -0.0017969802720472217, 0.012305881828069687, -0.04475376009941101, 0.026966581121087074, 0.05251666158437729, -0.07061450183391571, -0.002600438194349408, 0.04481854662299156, 0.020951436832547188, -0.027513135224580765, -0.038981322199106216, 0.0016623100964352489, -0.02593592181801796, -0.05816776305437088, 0.025358863174915314, 0.006194849964231253, 0.008077776059508324, -0.005833975505083799, 0.053540438413619995, 0.03832013159990311, 0.048024870455265045, -0.02682187408208847, -0.000655417563393712, -0.014913368970155716, 0.03362484276294708, -0.026634035632014275, 0.013749589212238789, 0.03919912502169609, 0.0300021693110466, 0.009573061019182205, 0.10068255662918091, 0.027949154376983643, 0.031291134655475616, 0.044873327016830444, 0.024069080129265785, -0.02580752968788147, 0.03587867692112923, -0.01526848878711462, 0.026471439749002457, 0.02336065098643303, 0.013742863200604916, 0.015312759205698967, 0.02331586554646492, -0.0027441540732979774, 0.012217827141284943, -0.000059610349126160145, 0.016247330233454704, -0.035348981618881226, 0.06579332053661346, 0.020276328548789024, 0.028674092143774033, -0.012929225340485573, 0.024391785264015198, 0.023205826058983803, 0.04974956437945366, -0.02767391875386238, -0.008323506452143192, 0.0013089310377836227, 0.033097464591264725, -0.0161366555839777, 0.02153211273252964, 0.03024563193321228, 0.010355752892792225, 0.009201460517942905, -0.007798348553478718, -0.0011703834170475602, -0.05592622980475426, -0.024912899360060692, -0.05944259837269783, -0.042594701051712036, -0.007649877108633518, -0.03360673785209656, -0.0081398356705904, 0.04020845144987106, -0.030946483835577965, 0.047949209809303284, -0.032261449843645096, 0.00671700295060873, -0.0222987812012434, -0.02004891447722912, 0.008996905758976936, 0.0091288136318326, 0.02883637696504593, -0.006420660763978958, 0.00852767750620842, -0.018998214974999428, 0.030545460060238838, -0.03718806058168411, -0.028462961316108704, 0.018092522397637367, -0.014104900881648064, 0.011019774712622166, -0.01131685171276331, -0.006854424253106117, -0.0023229809012264013, -0.025180771946907043, -0.043940842151641846, -0.01425950601696968, -0.012502983212471008, 0.008188075385987759, 0.006601423490792513, -0.04368613287806511, 0.0329887829720974, 0.035590656101703644, -0.003930536098778248, 0.054656315594911575, 0.03560197353363037, -0.023337356746196747, 0.020466268062591553, 0.05526738241314888, -0.00016787982895039022, -0.06667125970125198, 0.05520911514759064, 0.028277629986405373, 0.009619686752557755, -0.045305728912353516, -0.026713024824857712, -0.04153791442513466, -0.004014121368527412, 0.01391248032450676, -0.01888122223317623, -0.014549097046256065, 0.048658911138772964, -0.006419522222131491, -0.07879681140184402, 0.009745167568325996, -0.0544448085129261, -0.0009223882225342095, -0.020482588559389114, -0.031678274273872375, 0.0004742039309348911, 0.035958848893642426, 0.04485035315155983, -0.03606020659208298, -0.01355818286538124, 0.015102209523320198, 0.0361199826002121, 0.05115794017910957, -0.024006905034184456, 0.025319494307041168, 0.05737222358584404, -0.007067399565130472, 0.0009855234529823065, 0.021692568436264992, -0.008066426031291485, -0.027164006605744362, 0.008532208390533924, -0.0144955487921834, -0.010101906023919582, 0.023478489369153976, -0.008937546983361244, 0.0034045493230223656, 0.045941684395074844, -0.05273481830954552, -0.002871284494176507, 0.03397812321782112, 0.027326509356498718, 0.03324408829212189, 0.0028312194626778364, 0.004860383924096823, -0.04535861313343048, -0.02602129988372326, -0.04800362139940262, 0.0513334684073925, 0.03624542057514191, 0.05420447140932083, -0.08055277168750763, 0.0423237644135952, 0.016503414139151573, -0.06432891637086868, 0.05969424545764923, -0.049148280173540115, -0.03549674525856972, 0.05339568108320236, 0.0034622109960764647, 0.04551469907164574, -0.01575525477528572, 0.024988926947116852, -0.029978465288877487, 0.0015609199181199074, 0.032643627375364304, -0.011518202722072601, 0.04941726475954056, 0.0008212035754695535, -0.021889086812734604, -0.04432547092437744, -0.03259151428937912, -0.01564428023993969, -0.02370634488761425, 0.005067228339612484, 0.017267001792788506, -0.03695705905556679, -0.07426153123378754, 0.025544747710227966, 0.03760140389204025, 0.049462564289569855, 0.035437703132629395, 0.032134465873241425, -0.003482727101072669, 0.026747552677989006, 0.026784643530845642, -0.025635991245508194, 0.029185691848397255, -0.03429926186800003, 0.017053214833140373, 0.008160226978361607, -0.0074489242397248745, -0.026468373835086823, -0.035550184547901154, -0.04455447196960449, 0.05000142753124237, 0.012523160316050053, -0.00746102724224329, -0.02817145176231861, 0.01667330227792263, -0.012941380962729454, 0.025806976482272148, -0.03867447376251221, -0.04390144348144531, -0.06348949670791626, 0.05660771578550339, 0.03761688619852066, -0.04215816780924797, -0.030734525993466377, -0.03581378608942032, 0.026630792766809464, 0.042756013572216034, -0.013635233975946903, -0.024846239015460014, -0.0405854694545269, -0.018896574154496193, -0.03988046571612358, -0.0004724734171759337, 0.05986412242054939, 0.004552146885544062, 0.03861447051167488, -0.03262505307793617, 0.024083802476525307, 0.011483706533908844, 0.01377787534147501, 0.008740266785025597, 0.018071506172418594, 0.0032833870500326157, 0.0020463273394852877, 0.02935277670621872, 0.006247540935873985, -0.021975116804242134, 0.01802586019039154, -0.04722733795642853, 0.04866901412606239, -0.02484666183590889, -0.02642115205526352, -0.008290061727166176, 0.010660278610885143, 0.010096014477312565, 0.043738968670368195, -0.024270448833703995, -0.00652612280100584, 0.02966332994401455, 0.03170003741979599, -0.04460614174604416, -0.01959252916276455, 0.06564997881650925, -0.04316183552145958, -0.0190407894551754, 0.051300834864377975, 0.04158400744199753, -0.0075916419737041, 0.03984536975622177, 0.032867226749658585, -0.05633404105901718, 0.008775153197348118, -0.06131330505013466, -0.0016582674579694867, -0.007514195516705513, -0.043746426701545715, 0.019345995038747787, -0.02632525935769081, 0.053841620683670044, -0.0014299288159236312, -0.04658651351928711, -0.005641532596200705, -0.044382065534591675, -0.017840614542365074, -0.00365032022818923, -0.016885099932551384, -0.028831807896494865, -0.018256457522511482, -0.022797582671046257, -0.009168303571641445, -0.03181943669915199, 0.006144194398075342, 0.007741218898445368, 0.016194798052310944, -0.0031333838123828173, 0.015050269663333893, 0.017481887713074684, 0.019913846626877785, -0.006278368644416332, -0.026806224137544632, 0.02299658954143524, 0.002336501609534025, 0.0021989312954247, -0.042123135179281235, 0.00964476726949215, 0.011511259712278843, -0.004637269768863916, -0.040965400636196136, 0.0036419962998479605, -0.026993436738848686, 0.016609465703368187, 0.01376343984156847, 0.04266326501965523, -0.0016808813670650125, -0.003417725907638669, -0.049849722534418106, 0.04481722041964531, 0.05490567162632942, -0.04430006071925163, -0.06203055381774902, 0.05717600882053375, 0.0026790169067680836, 0.04079826921224594, 0.013096792623400688, -0.019789382815361023, -0.040724292397499084, -0.043441738933324814, 0.0033206890802830458, -0.031641267240047455, -0.019809499382972717, -0.03703374043107033, -0.02979995496571064, -0.014905953779816628, 0.04125119745731354, 0.019114701077342033, -0.03645690903067589, -0.012387567199766636, -0.027186784893274307, 0.00424485607072711, -0.03231160342693329, -0.02083667740225792, -0.01304918434470892, -0.018064316362142563, -0.00588726531714201, 0.07470624148845673, -0.006738386582583189, 0.03199082240462303, 0.0004329744551796466, 0.02456621453166008, 0.01288752630352974, -0.022784318774938583, -0.06740335375070572, -0.024634424597024918, 0.01903628557920456, -0.021823011338710785, -0.011619585566222668, 0.028326723724603653, -0.01611660234630108, 0.03218211978673935, -0.041930247098207474, -0.010121023282408714, -0.018002066761255264, -0.02196465991437435, -0.015468735247850418, 0.011328844353556633, 0.008030536584556103, -0.02699289098381996, -0.014312975108623505, -0.021979160606861115, 0.06567587703466415, 0.013722861185669899, 0.02139105089008808, -0.047321878373622894, -0.024145275354385376, -0.04871048405766487, -0.013934744521975517, 0.005353562068194151, -0.02600618451833725, -0.013098214752972126, -0.012992008589208126, -0.014189017005264759, 0.03940366953611374, -0.0049198162741959095, 0.03787907958030701, 0.07557914406061172, 0.001768119283951819, 0.019361205399036407, -0.05760640650987625, 0.03783711791038513, 0.04769398272037506, -0.03897248953580856, -0.0026384543161839247, 0.0006113445851951838, -0.02365432307124138, -0.01743379235267639, -0.049608264118433, -0.06813991814851761, -0.05335823446512222, -0.01498934905976057, 0.07851404696702957, -0.006271346006542444, 0.006932039279490709, 0.009039215743541718, -0.037479378283023834, -0.03946246951818466, 0.041589878499507904, 0.0053390879184007645, 0.007360358256846666, 0.05418297275900841, 0.026721565052866936, -0.005368970800191164, 0.025255825370550156, -0.012960284948348999, 0.027976136654615402, -0.05296814441680908, 0.05588555335998535, -0.005057510919868946, -0.04193595424294472, 0.02078459970653057, 0.023255852982401848, -0.059404950588941574, -0.04982179030776024, -0.0010522854281589389, -0.011518435552716255, 0.004182425327599049, -0.03450840339064598, -0.008525025099515915, -0.0060556973330676556, 0.009120430797338486, 0.04565059766173363, 0.01105635054409504, 0.005417663604021072, 0.012734687887132168, 0.0005243481136858463, 0.044136665761470795, -0.03267659991979599, -0.011176519095897675, 0.04004625231027603, -0.002945662010461092, -0.029389943927526474, -0.04042556881904602, -0.029408875852823257, -0.00988778006285429, 0.01336942333728075, 0.0379670225083828, 0.014938481152057648, 0.024693205952644348, 0.02198255993425846, 0.0005584186292253435, 0.05168488249182701, 0.009213306941092014, 0.0024243316147476435, 0.007541051134467125, -0.014067436568439007, -0.07552273571491241, -0.017231572419404984, 0.03132646903395653, -0.017988651990890503, 0.02062889374792576, -0.03625164180994034, 0.020417962223291397, 0.03309071436524391, 0.0024113431572914124, -0.012912112288177013, -0.07020510733127594, -0.018502740189433098, -0.04837935417890549, -0.04142746701836586, -0.037817686796188354, -0.004563802853226662, -0.02751438319683075, 0.002446394879370928, 0.024332258850336075, -0.019636554643511772, 0.03561222180724144, 0.0013320244615897536, -0.02896736189723015, 0.013122476637363434, -0.030758652836084366, 0.0179989505559206, -0.04222267493605614, -0.034484922885894775, -0.03917359560728073, 0.02684726007282734, 0.0018768595764413476, -0.03830629214644432, 0.014105741865932941, -0.007967242039740086, -0.0276303980499506, 0.03771848976612091, -0.020198984071612358, 0.0020203893072903156, -0.01911737211048603, -0.06928601115942001, -0.004334629513323307, -0.015830984339118004, 0.0072574433870613575, 0.04709898307919502, 0.045825038105249405, -0.04921586066484451, 0.012284989468753338, 0.013675619848072529, -0.002300306921824813, -0.015230532735586166, 0.008946510031819344, 0.029170028865337372, 0.017393598333001137, -0.030057895928621292, -0.01233364176005125, -0.008586885407567024, -0.06664806604385376, 0.025386637076735497, -0.028231335803866386, 0.0484594963490963, 0.009932457469403744, -0.003694529877975583, -0.013783666305243969, 0.0655655637383461, 0.006969733629375696, -0.004737979266792536, 0.0043726409785449505, 0.021609921008348465, 0.038083333522081375, -0.03210907056927681, 0.01146073080599308, 0.01023841556161642, 0.012136823497712612, 0.0010910705896094441, 0.016891594976186752, 0.006652043666690588, -0.005968162324279547, 0.01637866720557213, -0.0030811999458819628, -0.016212843358516693, -0.02633969485759735, -0.03612235188484192, 0.004956355784088373, 0.044399332255125046, 0.004683543927967548, -0.02230636030435562, 0.008750398643314838, -0.009375517256557941, -0.03244948387145996, 0.028500216081738472, -0.05775705352425575, -0.043194230645895004, 0.015703998506069183, -0.03677312657237053, -0.017144417390227318, -0.04291865974664688, -0.04054980352520943, -0.015048612840473652, -0.01566629856824875, -0.014466388151049614, -0.011418057605624199, 0.032669439911842346, 0.009232280775904655, 0.007349761202931404, -0.016354843974113464, 0.007631584070622921, 0.011482619680464268, 0.024784939363598824, -0.025083201006054878, -0.06485167145729065, 0.0404733382165432, 0.019427651539444923, 0.009114003740251064, -0.020532183349132538, 0.01360713504254818, 0.004675530828535557, 0.00620243651792407, 0.03920207545161247, -0.006017074920237064, 0.01730440743267536, -0.016499310731887817, 0.007266000844538212, -0.01718384213745594, 0.013107065111398697, -0.03550640866160393, 0.04375898092985153, 0.004744386300444603, -0.021158048883080482, -0.04218093678355217, 0.027124064043164253, 0.01750057563185692, -0.02145537920296192, 0.03714195638895035, 0.007686004042625427, 0.04824785888195038, 0.007291576825082302, 0.008008765056729317, -0.002037565689533949, 0.053659260272979736, 0.0653928890824318, 0.06469807028770447, -0.010393784381449223, 0.007624811492860317, 0.033120106905698776, -0.020367687568068504, -0.03322374075651169, 0.055890485644340515, 0.03230450302362442, -0.03357626125216484, 0.019409412518143654, -0.012818248011171818, -0.011603930033743382, 0.03296898305416107, -0.03237181156873703, 0.0067656091414391994, -0.03160528093576431, -0.015068973414599895, -0.020810408517718315, -0.026543373242020607, 0.04726976901292801, -0.04960373044013977, -0.0045880707912147045, 0.014842347241938114, -0.024334050714969635, 0.01849876530468464, 0.05050911754369736, -0.0029080521780997515, -0.0009780940599739552, 0.05219188705086708, 0.03008902631700039, 0.0064240931533277035, 0.01673448644578457, 0.033011842519044876, 0.015848057344555855, -0.016943765804171562, 0.008529998362064362, -0.004177390597760677, -0.0223934818059206, -0.044664327055215836, 0.0031297632958739996, -0.043803028762340546, 0.032667677849531174, -0.004694123286753893, -0.03247547149658203, 0.058817099779844284, -0.04190881922841072, -0.0053819348104298115, -0.05473477393388748, 0.022873053327202797, 0.00433505279943347, 0.0031312310602515936, 0.04794761538505554, 0.010788913816213608, -0.03521192446351051, 0.033217962831258774, 0.004657889250665903, 0.03177127242088318, -0.027663711458444595, 0.048766665160655975, -0.013131686486303806, 0.05036536976695061, 0.008681969717144966, -0.05097794532775879, -0.018945546820759773, 0.032367102801799774, -0.020529212430119514, -0.04464050382375717, -0.02461297996342182, -0.035844989120960236, -0.04933943226933479, -0.025178423151373863, -0.02399832010269165, 0.0015391501365229487, 0.05145920068025589, -0.006695265881717205, -0.027808142825961113, -0.0048827012069523335, 0.04102558642625809, -0.03461223468184471, 0.005956162232905626, 0.0005940112750977278, 0.018695637583732605, -0.00028353228117339313, -0.005935047287493944, -0.03380809724330902, -0.029856080189347267, 0.009757733903825283, -0.06692709028720856, 0.05592326074838638, -0.020002229139208794, 0.004342769738286734, -0.05201750621199608, -0.03901425376534462, -0.040715981274843216, 0.009402777999639511, -0.05275604501366615, -0.03889841586351395, 0.05040452256798744, 0.04605745151638985, 0.024257328361272812, 0.03258100524544716, -0.017405223101377487, 0.011472118087112904, 0.03428824618458748, 0.06682342290878296, -0.012708503752946854, 0.06080419197678566, 0.029495885595679283, -0.012842333875596523, 0.010556492954492569, -0.018162965774536133, 0.021178273484110832, -0.036183763295412064, -0.02634562738239765, -0.008254270069301128, 0.027628669515252113, -0.03397065028548241, -0.05623719096183777, 0.01942286640405655, 0.02214197628200054, 0.007068555802106857, -0.02919437736272812, -0.025678211823105812, 0.014161852188408375, -0.0778893455862999, -0.01337712537497282, -0.07458879798650742, 0.03351104259490967, -0.0010006201919168234, -0.015255623497068882, -0.01828755997121334, -0.059776946902275085, 0.16815170645713806, 0.0666838064789772, 0.03261036053299904, 0.018943587318062782, 0.018046624958515167, 0.015652863308787346, 0.026775917038321495, 0.017787640914320946, -0.005752746947109699, -0.039852675050497055, 0.04270004481077194, -0.01884835958480835, 0.014219026081264019, 0.012435761280357838, 0.010421532206237316, 0.06454571336507797, -0.03543965145945549, -0.009506936185061932, 0.03429267928004265, -0.034474875777959824, -0.05878005549311638, 0.0021231435239315033, 0.0114141795784235, 0.0445011667907238, 0.00777050293982029, 0.023045239970088005, -0.022659381851553917, -0.05403918772935867, 0.027752935886383057, -0.03062586300075054, 0.023044303059577942, -0.056252095848321915, 0.060300152748823166, 0.024082034826278687, -0.011426505632698536, 0.027203278616070747, -0.0019820358138531446, -0.005147362127900124, 0.011495571583509445, 0.04159458726644516, -0.02111935243010521, 0.005515331402420998, 0.01751251332461834, -0.06740953773260117, 0.007110873237252235, 0.02079164609313011, -0.03641343489289284, 0.020742636173963547, 0.01745639741420746, -0.020030830055475235, 0.05219505354762077, -0.04856548458337784, 0.020957952365279198, -0.03188682720065117, -0.047650981694459915, 0.016142288222908974, 0.020822687074542046, -0.010736427269876003, -0.02832902781665325, -0.01079024188220501, -0.006730087101459503, 0.014361829496920109, -0.0037895971909165382, 0.01520189456641674, -0.008932864293456078, 0.018153594806790352, 0.022096414119005203, 0.03864327445626259, 0.004381959792226553, -0.03538147732615471, 0.011192865669727325, -0.047946248203516006, -0.018313804641366005, -0.039227403700351715, 0.025219818577170372, 0.035272229462862015, -0.025681912899017334, 0.047647666186094284, 0.00159497803542763, -0.019133254885673523, -0.007341496646404266, -0.033579014241695404, -0.00445955665782094, 0.0001876638998510316, 0.01505430880934, 0.05465303733944893, -0.025929993018507957, -0.031011702492833138, -0.028184624388813972, 0.038499146699905396, 0.03155577927827835, 0.010503273457288742, -0.023717252537608147, -0.0029085627757012844, -0.011048978194594383 ]
icon-instagram icon-twitter icon-menu icon-arrow-right icon-dots-triple icon-facebook icon-youtube Donate 日本語 2022 September Graduate Program Report Responding to the request of two third-year university students who are actively utilizing Mirai no Mori's network and are currently job hunting, we held another session on finding one's strengths with the cooperation of Morgan Stanley. In addition, one of the graduates who is about to change jobs also participated, and we talked about their concerns and questions in a friendly atmosphere. We also had a special opportunity to meet the president of Morgan Stanley, Mr. Tamura, so show our deepest gratitude for their continued support. All three of the graduates were very nervous when they shared their comments about Mirai no Mori experiences, but he was very friendly. "What I learned from my Mirai no Mori experience is the leadership I gained from the Leader in Training (LIT) program that I participated for three years. In my third year of high school, I stepped up to take on the role of a leader. At first I tried to follow the leadership style of the previous leaders, but it was difficult, and through the program I realized that it was important to take on leadership that suited me. I am also grateful that through the graduate program, I am able to get together with other Mirai no Mori members and supporters even after leaving the care and receive advice from various role models to help me think about things from different perspectives. The Mirai no Mori space has also become one of the places where we feel at home." "I really learned a lot by joining outdoors activities with a diverse group of people at Mirai no Mori. The opportunity to learn about teamwork, communication, and my own strengths and weaknesses with the members of the Leader in Training program was an experience that I could not have had without Mirai no Mori. Through the outdoor experience, I also realized that being in nature is a stress reliever that allows me to reflect on myself and be positive, and even after graduation I still make time to spend time in nature on a personal basis. Mirai no Mori has always been there to watch over me. I would like to continue to participate in Mirai no Mori activities, work with children from care homes, and help them in many other ways!" "I used to not take much initiative on my own, but through my experience at Mirai-no-Mori, I learned that nothing starts or makes sense unless "I" take action. Also, through the Leader in Training and graduates program, I have learned that people are connected through relationships." Then we also had a session with one of the graduates who wanted to know more about bank. Thanks to the support from Morgan Stanley, she was able to meet 5 volunteers who shared their experiences and advices. Voices of Graduates "After talking to the volunteers and answering their questions, I realized that I actually have something that I care about, and that I am interested in pursuing. I could not have realized this on my own, so I would like to use this as a basis for finding my strengths and interests for job hunting." "When I asked the volunteers what they thought was important to be a trustworthy person, they all said "a person who keeps his/her word," which struck me as someone who is often late. I realized that even though it is something obvious, it is still very important. I was also nervous to talk with the president of such a large and trusted company, but it was a very special opportunity, and it was a very valuable experience!" Voices of Volunteer "I see growth in graduates every time I meet them. It's amazing to see how capable they are now to ask questions, and share their opinions." Also with another graduate who is considering a career change, in addition to checking in via ZOOM, we also spoke in person over lunch. He is searching for ideas and methods to rebuild his life back after leaving the school and job. We hope he will continue to utilize Mirai no Mori as a network where he can reach out any time. Summer Camp Winter Camp Back to Nature Leader in Training Graduate Program Upcoming Event Blog Uncategorized KIWL IMPERIAL PALACE WALK/JOG 2023 Leader in Training program report: LIT Project #2 – Hiroshima Visit 2022 Leader in Training program report: December 2022 December Back to Nature: Christmas Report vol.2 2022 COTT Christmas Charity Event Report Whether you donate, volunteer, or become a corporate sponsor, you can make a difference! Children We Support Issues Faced by the Children Essential Life Skills Program Concept Support by Donating Otakara-Aid Mirai no Mori Team Approved Specified Nonprofit Corporation Website designed by Custom Media Copyright © mirainomori 2017 All Rights Reserved.
[ 0.0037463661283254623, -0.016218269243836403, -0.02052891254425049, -0.009053860791027546, 0.00039360488881357014, 0.007254103198647499, -0.009492641314864159, 0.027225876227021217, 0.024272674694657326, 0.009645325131714344, 0.022319206967949867, 0.021728195250034332, 0.022483840584754944, -0.03223549574613571, -0.02480003610253334, -0.03505261242389679, 0.00013160519301891327, -0.028935709968209267, -0.027764543890953064, 0.011355620808899403, 0.008938423357903957, 0.044843029230833054, -0.050086330622434616, -0.04117785021662712, -0.030424991622567177, 0.016626935452222824, 0.023120271041989326, -0.011685849167406559, 0.05555099621415138, 0.045528560876846313, -0.028004886582493782, -0.03606153652071953, 0.018916793167591095, -0.06536725908517838, -0.03153994679450989, -0.015947721898555756, 0.03165716305375099, -0.05154946818947792, -0.019929349422454834, -0.02816459909081459, 0.02192557044327259, -0.008509351871907711, 0.07239150255918503, -0.05569782853126526, -0.06692411750555038, 0.012202579528093338, -0.0027663942892104387, -0.04241696372628212, -0.0066247377544641495, -0.054656464606523514, 0.02588445134460926, 0.0043792808428406715, 0.009770228527486324, 0.014263251796364784, 0.0219433531165123, -0.004026946611702442, 0.019439734518527985, -0.010007977485656738, 0.0032641200814396143, 0.04256471246480942, 0.008645151741802692, 0.03217977657914162, 0.05122748389840126, -0.06507717818021774, 0.018277274444699287, 0.024883922189474106, -0.010567150078713894, -0.010124571621418, 0.004579709377139807, -0.013913402333855629, -0.0128520168364048, 0.0010344983311370015, -0.031651902943849564, 0.0011364766396582127, -0.004957750905305147, -0.008899637497961521, 0.017908338457345963, -0.027752738445997238, -0.007631880696862936, -0.021529562771320343, 0.0020864224061369896, 0.05556636303663254, 0.028276577591896057, 0.01273826602846384, -0.0423656702041626, -0.03789982572197914, -0.007742746267467737, -0.002815847983583808, 0.006635176949203014, 0.006575204897671938, -0.0017698913579806685, 0.0668363869190216, -0.013886557891964912, -0.021559419110417366, 0.027850328013300896, 0.035361070185899734, -0.04074085131287575, 0.02095998264849186, 0.02054658532142639, -0.00023372448049485683, 0.04042582958936691, 0.019100939854979515, -0.007564419414848089, 0.0342368558049202, -0.05373730883002281, -0.036484211683273315, 0.0023747358936816454, -0.02504834346473217, 0.016635417938232422, -0.050396159291267395, 0.02584270015358925, -0.03670445457100868, 0.04240960627794266, 0.02795490436255932, 0.018493879586458206, 0.05533234030008316, -0.027085039764642715, 0.01794504001736641, -0.044920362532138824, 0.04103704169392586, 0.019831735640764236, 0.004924409557133913, 0.013858769088983536, -0.019835244864225388, 0.04223541170358658, -0.012828162871301174, -0.01243495475500822, 0.07779727131128311, -0.04642011970281601, -0.00980614684522152, 0.010181141085922718, -0.04845698922872543, -0.005442298948764801, 0.0066900006495416164, -0.005424661096185446, 0.02504127286374569, -0.009360644035041332, 0.02655855007469654, 0.02393803559243679, -0.07531952857971191, 0.05656195431947708, 0.04332329332828522, -0.0027945186011493206, 0.07628685981035233, 0.03135918825864792, 0.022990135475993156, -0.03203783184289932, -0.0251266211271286, -0.05475495010614395, 0.014180689118802547, -0.031660884618759155, 0.022264255210757256, -0.00303918169811368, 0.025250542908906937, -0.012600869871675968, 0.004182292614132166, -0.00988666620105505, 0.02582232467830181, 0.01739506609737873, 0.01601937972009182, -0.0018956889398396015, 0.04047233983874321, -0.011822874657809734, 0.07404404878616333, 0.016041316092014313, 0.036004651337862015, -0.02087746374309063, -0.018512606620788574, -0.011879580095410347, -0.032946620136499405, 0.023605214431881905, 0.014772852882742882, -0.025375230237841606, 0.010327835567295551, 0.01945757493376732, 0.06907352805137634, 0.05255798250436783, 0.0013098187046125531, 0.02957742102444172, 0.02539726160466671, -0.055165909230709076, -0.010605186223983765, 0.008038925938308239, 0.08148334175348282, -0.014113076962530613, 0.002768491394817829, -0.018489180132746696, -0.029076654464006424, -0.024844136089086533, -0.0007085706456564367, -0.021140364930033684, 0.03181195631623268, -0.024600226432085037, 0.017293816432356834, 0.012113725766539574, 0.018011564388871193, -0.009793881326913834, -0.012322572059929371, 0.007435545790940523, -0.056985680013895035, -0.029564855620265007, 0.039679937064647675, -0.03661133348941803, 0.043502189218997955, 0.009029950946569443, -0.01595129631459713, 0.01806260645389557, 0.06165410950779915, -0.024203302338719368, 0.01604023575782776, 0.022060025483369827, 0.019034715369343758, -0.00930656585842371, -0.015337302349507809, 0.0108770951628685, -0.024640347808599472, -0.014017380774021149, 0.024595601484179497, -0.01237053144723177, -0.011271004565060139, 0.02918250672519207, 0.020891902968287468, 0.00600977148860693, 0.015525272116065025, -0.010674930177628994, -0.02587937004864216, 0.0020696346182376146, 0.06632665544748306, -0.029960736632347107, -0.0022447898518294096, -0.006335096899420023, 0.03715309500694275, 0.03947478532791138, 0.05249965190887451, 0.05710535869002342, 0.03940296918153763, 0.020557330921292305, 0.07791199535131454, 0.035348694771528244, 0.016113588586449623, 0.008870875462889671, -0.00846328865736723, 0.06859540939331055, 0.04520821571350098, -0.00006158368341857567, 0.018234476447105408, -0.01338944397866726, -0.03421362116932869, 0.012726358138024807, 0.012440476566553116, -0.02647196128964424, 0.029451223090291023, 0.022780437022447586, 0.03291673585772514, -0.035782407969236374, 0.022631023079156876, 0.029017159715294838, 0.04664123058319092, -0.011266852729022503, -0.01736786775290966, -0.019024880602955818, -0.013821798376739025, 0.004972593858838081, 0.0020093147177249193, 0.013170176185667515, 0.009755968116223812, -0.012605476193130016, 0.020429758355021477, -0.008181898854672909, -0.04922666400671005, -0.0518023818731308, -0.05105869472026825, -0.036003030836582184, -0.042908925563097, -0.04612485319375992, 0.005829232279211283, 0.05695866793394089, -0.04180929809808731, 0.017811954021453857, -0.014027134515345097, -0.0106327710673213, -0.012066476047039032, -0.028247850015759468, 0.05593645200133324, 0.029027827084064484, 0.03284917399287224, -0.05085301771759987, 0.006551296450197697, -0.0223802849650383, 0.04471254721283913, -0.05883434787392616, -0.017312712967395782, 0.016511399298906326, -0.01786748319864273, 0.05226774886250496, -0.014866864308714867, -0.02502165548503399, -0.011865833774209023, -0.04361387714743614, -0.032837122678756714, 0.027098016813397408, -0.0026350750122219324, -0.015440021641552448, 0.0009711445891298354, -0.04707448184490204, 0.05978789180517197, 0.018240444362163544, -0.035461463034152985, 0.052289482206106186, 0.036880798637866974, -0.04283696785569191, 0.03556516021490097, 0.01657246984541416, 0.004856136627495289, -0.04293833300471306, 0.039367757737636566, 0.03457440435886383, -0.0044448962435126305, -0.004637593403458595, -0.020070593804121017, -0.04305323585867882, -0.006740496959537268, 0.0125566516071558, -0.027677452191710472, -0.02364974096417427, 0.03277921676635742, 0.019887039437890053, -0.04207337647676468, 0.0356275774538517, -0.04912465810775757, -0.0334649421274662, -0.032863788306713104, -0.02204795926809311, 0.08138905465602875, 0.0137223144993186, 0.027357351034879684, -0.004577798768877983, -0.037853628396987915, 0.01715405099093914, 0.003846418811008334, 0.054690346121788025, 0.012640951201319695, 0.03276744857430458, 0.019870616495609283, -0.020395979285240173, 0.007770803291350603, 0.0020444353576749563, -0.03948730602860451, -0.02755420282483101, -0.008116926066577435, 0.014263913035392761, 0.02124076895415783, 0.03741481155157089, 0.0033985308837145567, 0.013807571493089199, 0.04594027251005173, -0.03364749625325203, 0.005639093462377787, 0.004917272832244635, 0.011057966388761997, 0.0021860215347260237, 0.01863667368888855, 0.014620683155953884, -0.021978164091706276, -0.01166501548141241, -0.03666672855615616, 0.0365893580019474, 0.018602274358272552, 0.031840261071920395, -0.060881491750478745, 0.045038409531116486, 0.0050871605053544044, -0.0360247828066349, 0.04795866459608078, -0.04611586779356003, -0.014988178387284279, 0.07031995058059692, -0.016988327726721764, 0.03423941507935524, -0.05861148238182068, -0.007510640192776918, -0.009116985835134983, 0.05508267506957054, 0.04411014914512634, -0.005763150751590729, 0.02677822858095169, -0.013059703633189201, -0.031501512974500656, -0.012278413400053978, -0.02609584666788578, 0.004493937361985445, -0.040655139833688736, 0.005587741266936064, 0.014665939845144749, -0.06386157870292664, -0.03299151733517647, 0.04651534557342529, 0.03382370248436928, 0.04546689614653587, -0.0663488507270813, 0.0306951142847538, 0.02797830104827881, 0.017475776374340057, 0.03825543448328972, -0.011478492058813572, 0.011542601510882378, -0.04029368981719017, 0.03568636626005173, 0.0002148370840586722, -0.03135543689131737, -0.041786570101976395, -0.00428249454125762, -0.021314192563295364, 0.019719405099749565, 0.011095380410552025, -0.015587416477501392, -0.018615983426570892, 0.016258172690868378, -0.016048211604356766, 0.028083916753530502, -0.02715305984020233, -0.026740632951259613, -0.0151057168841362, 0.04991792514920235, 0.021798931062221527, -0.055066272616386414, 0.016292303800582886, -0.046239789575338364, 0.055314429104328156, 0.045065514743328094, -0.025764353573322296, -0.030861925333738327, -0.023905565962195396, -0.009338289499282837, -0.020582949742674828, 0.0034994918387383223, 0.04428297281265259, 0.003599654883146286, -0.020679982379078865, -0.03520375117659569, 0.019077133387327194, 0.03041679598391056, -0.01945250853896141, -0.01621193066239357, -0.008005059324204922, 0.00328271952457726, 0.011503169313073158, 0.024994762614369392, 0.0025439064484089613, -0.02716292254626751, 0.031043503433465958, -0.03240448236465454, 0.010578677989542484, 0.005373951513320208, -0.000019468414393486455, -0.012323598377406597, -0.023665163666009903, 0.02468561939895153, 0.045108430087566376, -0.02128019370138645, -0.00444059120491147, -0.008917046710848808, 0.02901887148618698, -0.04037115350365639, -0.04202079400420189, 0.055848486721515656, 0.00007079233910189942, -0.03182361274957657, 0.03944441303610802, 0.012128596194088459, -0.029748499393463135, -0.004420330747961998, 0.02106259949505329, -0.02439090423285961, 0.05255717784166336, -0.03429163992404938, 0.018986718729138374, -0.0009599599288776517, -0.050700023770332336, 0.028551697731018066, -0.033336225897073746, 0.037478215992450714, 0.007255184929817915, -0.013878582045435905, -0.03251030296087265, -0.03086138144135475, -0.017023468390107155, -0.02435857243835926, -0.031738169491291046, 0.011085042729973793, -0.0011904705315828323, -0.03140173479914665, 0.0011847272980958223, 0.0026537824887782335, 0.02604098804295063, -0.012060632929205894, 0.0002139629068551585, -0.011237542144954205, -0.0014018162619322538, 0.006508552003651857, 0.03134973719716072, -0.03602776303887367, -0.038935430347919464, 0.012514741159975529, -0.0034444902557879686, -0.01759354956448078, -0.04790749028325081, -0.006647290661931038, -0.021875005215406418, -0.007365807890892029, -0.032921452075242996, -0.0022547489497810602, -0.015606836415827274, 0.018182028084993362, 0.030430912971496582, 0.015200548805296421, 0.0024573958944529295, -0.002105159917846322, -0.005462032277137041, 0.05605170503258705, 0.041397739201784134, -0.06094667315483093, -0.013164030387997627, 0.02569093555212021, -0.015467341057956219, 0.05319453775882721, -0.028910988941788673, -0.012187927961349487, -0.032396964728832245, -0.04993269592523575, -0.019381489604711533, -0.034853581339120865, -0.0045209359377622604, -0.04590338096022606, -0.0011957564856857061, -0.006088634487241507, 0.035265300422906876, 0.0057267057709395885, -0.021773098036646843, 0.0220349058508873, -0.04262462258338928, 0.0031226887367665768, -0.02232167311012745, -0.005420096684247255, -0.026388922706246376, -0.004984445404261351, -0.003630558028817177, 0.04474985972046852, 0.025917425751686096, 0.038347482681274414, 0.041770368814468384, 0.008549952879548073, -0.003387057688087225, -0.011353975161910057, -0.05109194666147232, -0.05707278475165367, 0.02165141887962818, -0.015970870852470398, 0.0014489205786958337, 0.016211513429880142, -0.02622150257229805, 0.0645163357257843, -0.03305938094854355, -0.0021487008780241013, -0.029267309233546257, -0.0027694962918758392, -0.04140050336718559, 0.025558214634656906, 0.06192029267549515, -0.02450970746576786, 0.020733598619699478, -0.02317507378757, 0.05022868886590004, 0.036416664719581604, -0.0074461414478719234, -0.0256813857704401, -0.024856070056557655, -0.020533159375190735, -0.05518459901213646, 0.028119860216975212, -0.038560573011636734, -0.02574811689555645, -0.023045428097248077, -0.007131033111363649, 0.055869728326797485, -0.009949632920324802, 0.057141393423080444, 0.053580764681100845, -0.01178309042006731, -0.019902635365724564, -0.033439669758081436, 0.034079015254974365, 0.039054855704307556, 0.012230651453137398, -0.04725457727909088, -0.032137949019670486, -0.050418779253959656, 0.011247674003243446, -0.04682191088795662, -0.03731871396303177, -0.06884685903787613, -0.008976712822914124, 0.061176594346761703, -0.033672451972961426, 0.02043558843433857, -0.024421636015176773, -0.0344812273979187, -0.04115453362464905, 0.05277193337678909, -0.02145659178495407, -0.004850199446082115, 0.04435773193836212, 0.002255585975944996, 0.020683735609054565, 0.0015955261187627912, -0.030454233288764954, 0.006794570479542017, -0.032153788954019547, 0.058380305767059326, -0.016615482047200203, -0.03738582879304886, 0.00694478303194046, 0.06584882736206055, -0.04322478547692299, -0.02882668748497963, -0.004665459506213665, 0.014686341397464275, 0.003465061541646719, -0.008125045336782932, -0.0015224572271108627, 0.009165623225271702, -0.0009717477369122207, 0.011818718165159225, 0.04206566512584686, -0.0021990740206092596, 0.01981857232749462, -0.0003415466344449669, 0.004942419473081827, -0.05470335856080055, 0.013161989860236645, 0.01018488872796297, -0.008038864471018314, -0.023814765736460686, -0.028627734631299973, -0.02256927825510502, -0.017191046848893166, 0.006036823149770498, 0.04909011349081993, -0.028621278703212738, -0.023490166291594505, 0.012679634615778923, -0.016236532479524612, 0.05493471398949623, -0.012134318239986897, 0.0033585955388844013, -0.001537024392746389, -0.03385162353515625, -0.04742666706442833, -0.03993038460612297, 0.023852430284023285, 0.0045926314778625965, 0.04334189370274544, -0.02532120607793331, -0.015003371983766556, 0.034540195018053055, -0.015910858288407326, 0.010068995878100395, -0.04497170075774193, -0.057247649878263474, -0.027941597625613213, -0.04824480041861534, -0.027068402618169785, -0.012283287942409515, -0.01468860823661089, 0.00849937740713358, 0.041555799543857574, -0.04426000267267227, 0.0033120273146778345, 0.017714418470859528, -0.01425195299088955, -0.01750052534043789, -0.03134631738066673, 0.012568402104079723, -0.035656072199344635, -0.04627452790737152, -0.03755936771631241, -0.00407501682639122, 0.012000061571598053, 0.009865391068160534, -0.009201048873364925, 0.025401700288057327, 0.01365636382251978, 0.05072123929858208, 0.01982259750366211, 0.014261654578149319, -0.019589895382523537, -0.02032661624252796, 0.010037331841886044, 0.041398707777261734, 0.022184012457728386, 0.018303001299500465, 0.033803414553403854, -0.004288605879992247, 0.051549699157476425, 0.0015176307642832398, -0.0239038597792387, -0.04008597135543823, -0.0038830016274005175, 0.006114121526479721, -0.020814748480916023, -0.014400726184248924, -0.020442001521587372, -0.005600573495030403, -0.046649299561977386, -0.010257402434945107, -0.03613379970192909, 0.01552571076899767, 0.007252570707350969, 0.010707708075642586, -0.006777443923056126, 0.06679078191518784, 0.015640711411833763, 0.02756703644990921, 0.022339046001434326, 0.03594496473670006, 0.03351146727800369, -0.005434468388557434, 0.001750335330143571, 0.049939461052417755, 0.04088165611028671, -0.04680207744240761, 0.010640067979693413, 0.019434552639722824, -0.023898303508758545, 0.0430196151137352, -0.030779169872403145, -0.029070710763335228, -0.03686976805329323, -0.01346310693770647, -0.0015129074454307556, 0.02846597135066986, 0.0023404553066939116, -0.01305478811264038, 0.003371018450707197, -0.04845771938562393, -0.02019204944372177, -0.007822422310709953, -0.05498050898313522, -0.01780465990304947, 0.015273617580533028, -0.03138889744877815, -0.0007971776067279279, -0.016473503783345222, -0.05568785220384598, 0.01819014362990856, -0.026799919083714485, 0.02167304791510105, -0.05395817384123802, 0.026991993188858032, -0.002453843131661415, 0.031859781593084335, -0.02731400914490223, -0.030271053314208984, 0.0008360646897926927, 0.06518542766571045, -0.033104490488767624, -0.05747070163488388, -0.002035232027992606, 0.005864111706614494, 0.014536810107529163, -0.002287371316924691, 0.003981457557529211, 0.02792292833328247, 0.009079063311219215, 0.013225735165178776, -0.009745859540998936, 0.0027704339008778334, -0.002364878077059984, 0.025185709819197655, 0.002129034837707877, 0.018147436901926994, -0.05236972123384476, 0.02509288676083088, 0.012810439802706242, -0.04214709624648094, -0.03468151390552521, 0.016365939751267433, 0.040219176560640335, -0.029379863291978836, 0.03438100218772888, -0.0022185095585882664, 0.060648057609796524, -0.012589278630912304, 0.02744566649198532, 0.02364092878997326, 0.035138051956892014, 0.05630083754658699, 0.023329952731728554, -0.004360855091363192, 0.04801328852772713, 0.05774754658341408, -0.012937099672853947, -0.0129174143075943, 0.0779523029923439, 0.0021059659775346518, -0.02454454079270363, -0.007209875620901585, -0.0426868200302124, 0.030100008472800255, 0.01938926801085472, -0.017520315945148468, -0.012400113046169281, -0.05050491541624069, -0.00266640679910779, -0.008679276332259178, 0.0017730849795043468, 0.055095817893743515, -0.04304993152618408, 0.00703625800088048, -0.01615748181939125, -0.04166604205965996, -0.01142025925219059, 0.025562211871147156, 0.021568497642874718, 0.018890907987952232, 0.026058081537485123, 0.0195584986358881, -0.018177302554249763, 0.06852986663579941, 0.01800505816936493, -0.008957864716649055, -0.02544761262834072, 0.019417183473706245, 0.02130688726902008, -0.015747668221592903, -0.03687787801027298, 0.0015181933995336294, -0.025283001363277435, 0.03332524001598358, -0.01304568164050579, -0.006632224190980196, 0.048026833683252335, -0.06097481772303581, -0.02173466794192791, -0.0407363586127758, 0.020547717809677124, -0.06499003618955612, -0.02642558328807354, 0.04988299310207367, 0.006326694041490555, -0.003876730101183057, 0.05024934187531471, 0.008121561259031296, 0.022813815623521805, 0.03197333589196205, 0.047988276928663254, 0.01654013805091381, 0.03288865089416504, 0.05123191699385643, -0.013900435529649258, -0.05814995616674423, 0.032981254160404205, -0.013605691492557526, -0.04005841165781021, -0.0016691065393388271, -0.018901707604527473, 0.018082812428474426, -0.03587650507688522, -0.007478752173483372, -0.022052882239222527, 0.03300691023468971, -0.0007978642825037241, -0.049035463482141495, 0.041067179292440414, 0.03752466291189194, -0.013826957903802395, -0.007535874377936125, -0.005025611724704504, 0.0370127409696579, 0.0152095602825284, -0.010511155240237713, -0.014717950485646725, -0.0398472398519516, -0.016250716522336006, -0.04852418601512909, 0.062446851283311844, -0.0022364340256899595, -0.02758103422820568, -0.027734946459531784, -0.04301786422729492, -0.010412970557808876, -0.007598926778882742, -0.02245335839688778, -0.07178951799869537, 0.01433595921844244, 0.03368677571415901, 0.0011929714819416404, -0.01220344565808773, -0.050401050597429276, -0.02639893814921379, 0.031830258667469025, 0.07098311930894852, -0.010176541283726692, 0.026142258197069168, 0.04219818860292435, -0.02567487582564354, 0.04389767348766327, -0.038271449506282806, 0.038812171667814255, -0.016113609075546265, -0.008605687879025936, -0.0211777500808239, 0.023378504440188408, -0.004007677547633648, -0.05397837609052658, 0.020014125853776932, 0.022600481286644936, 0.004259044770151377, -0.010950945317745209, -0.08375038206577301, -0.02929079905152321, -0.06105003505945206, 0.0011579068377614021, -0.038475073873996735, 0.05424603447318077, 0.002991139655932784, -0.01218870747834444, -0.006362366955727339, -0.04282389581203461, 0.15958398580551147, 0.061614975333213806, 0.02751857042312622, 0.02825900726020336, -0.0021160936448723078, 0.05293414741754532, 0.03780844062566757, -0.024932483211159706, 0.007085173856467009, -0.0341910794377327, 0.02589414268732071, 0.011810903437435627, 0.034127555787563324, -0.020109690725803375, 0.029416127130389214, 0.06816957145929337, -0.041608598083257675, 0.01695702224969864, 0.014367971569299698, -0.03892620652914047, -0.04614799842238426, 0.02156202308833599, 0.006356423255056143, 0.01312223169952631, -0.02930324524641037, 0.02125748246908188, 0.010623514652252197, -0.037354424595832825, -0.012456581927835941, -0.012119153514504433, 0.01036884356290102, -0.027728920802474022, 0.03733743727207184, -0.012281334027647972, -0.032986029982566833, 0.05767735093832016, 0.02000322937965393, -0.02162235602736473, -0.005706239026039839, 0.03567610681056976, -0.013795081526041031, 0.01902707852423191, 0.03286583349108696, -0.05350460484623909, 0.02515631727874279, 0.02283286862075329, -0.03226036950945854, -0.035332437604665756, -0.0042296890169382095, -0.04927900433540344, 0.0707584097981453, -0.023190122097730637, 0.01866964064538479, -0.016163209453225136, -0.03734096884727478, 0.017158977687358856, -0.00873042643070221, -0.02545822784304619, 0.0030410559847950935, 0.01955264061689377, 0.030070753768086433, 0.0017984169535338879, -0.0113816037774086, 0.010081660002470016, -0.02283403091132641, 0.05825313553214073, 0.03162539005279541, -0.011557957157492638, -0.017677661031484604, -0.016987880691885948, -0.004957514349371195, -0.010218199342489243, 0.0028887076769024134, -0.04294319450855255, 0.027165433391928673, 0.014667747542262077, -0.007164505776017904, 0.010873393155634403, 0.007750978227704763, -0.04755229130387306, 0.0040086559019982815, -0.0437723770737648, -0.031222643330693245, -0.03028862178325653, 0.010165400803089142, 0.034107089042663574, -0.048930633813142776, -0.036390360444784164, -0.06978017836809158, 0.054164476692676544, 0.03542768955230713, 0.04779450595378876, -0.02121109329164028, -0.0058115143328905106, -0.018287230283021927 ]
Government should solve the health crisis now THE fact that the strike by medical doctors has continued after they rejected President Emmerson Mnangagwa's order to return to their workstations while their demands were being addressed, should push the authorities to urgently engage the medical fraternity to save lives. There is no doubt that since the strike started the majority of Zimbabweans have been inconvenienced, and many lives lost due to lack of attention by the medical personnel. We believe any serious government of the people by the people should move swiftly to curb further loss of lives, given the Mnangagwa regime is working hard to get a renewed mandate. If indeed, according to Mnangagwa's mantra of the voice of the people is the voice of God, then he should listen to those among us crying for government's intervention. While we feel for the patients who are bearing the brunt of the industrial action, we believe that the government needs to demonstrate a real commitment to addressing the challenges faced by doctors, nurses, in particular the medical fraternity. There is need for Mnangagwa to go beyond cheap talk, which was former President Robert Mugabe's hallmark. To simply follow the same culture sends fears that the government is more comfortable with following the same tradition — and is probably as clueless as its predecessor on how to tackle this very critical matter. This attitude in many ways shows that Mnangagwa is probably endorsing Health minister David Parirenyatwa's laisser-faire approach, chicanery and doublespeak, as the doctors have argued, negotiating in "bad faith". The least the government can do is to be honest in its dealings with the medical practitioners. Perhaps the biggest mistake the Health ministry made was to threaten the doctors in an attempt to coerce them back to work. This kind of attitude will never produce the desired results. What is needed is a win-win solution, because while the bickering goes on, patients in public health facilities continue to suffer. It is because of the insincerity on the part of the government that this strike would likely continue, claiming more casualties in the process. One is tempted to believe that government's approach to this problem is not as serious as it should be, because powerful politicians always easily access health services from the private sector and in foreign lands. Who will fight for the ordinary man on the streets? Clearly, the Health ministry has no sense of urgency concerning this critical issue at all, and that creates the impression that they do not care what becomes of the sick in our hospitals — probably dying from easily treatable conditions. Something needs to be done urgently! Dynamics of the rural vote We told you so! How long oh Lord, how long? Enter 2019: Reviving the 'New Zimbabwe' dream Bond notes and their possible long-term legacy Women have choice to change the world Previous article Motor drives GPW for short term insurers Next article Evelyn High wins talent search show STOKONONZI I don"t know how much Dr.s earn but it must be very little if life styles are any indicator. This is a basis of brain drain soon or later we will be missing them. These guys are not asking for too much after all in an hour he can raise that from the number of patients that he assists. Enough of empty rhetoric over the health crisis.The present leadership have their own priorities like garnering electoral support in the forthcoming elections. Buying chiefs 4×4 Isuzu D/Cabs is more important than addressing the health crisis in the country. Recruiting more personnel in the military is more important than the health crisis.Vasazvinetsa zvavo , makakonewa kubva kare and we have no hope in you.Zimbos have hope in a new gvt and not them.Vasatinyaudza. Eskom treasurer quits in latest high-profile departure Related posts: Forced Religious Conversions Bring Human Rights Violations into FocusChamisa is on the right trackPeople react to Mnangagwa MDC-T amnestyAMHVoices: Khupe ... Related posts: Dynamos to restore PeaceCourt dismisses case of U.S. woman charged with insulting MugabeOlomide, Charly Black promoters in a fixRioZim closes ...
[ -0.003167984541505575, -0.035706378519535065, -0.006607680581510067, 0.015538996085524559, 0.006423473823815584, -0.014747612178325653, -0.00608777953311801, 0.017012298107147217, 0.006644802633672953, 0.0042146299965679646, 0.02838739939033985, 0.002133334055542946, 0.0078040664084255695, -0.010219323448836803, -0.01730046235024929, 0.009238631464540958, -0.017734644934535027, -0.05306638404726982, 0.03371554985642433, 0.009738028049468994, 0.0016930330311879516, -0.013225359842181206, -0.03932177647948265, -0.023433955386281013, -0.006690137088298798, 0.03533052280545235, 0.013952571898698807, -0.02407531626522541, 0.02020847424864769, 0.06169761344790459, -0.022445810958743095, -0.040361929684877396, 0.04134714603424072, -0.05177340656518936, -0.002645473461598158, -0.029503894969820976, 0.01361364871263504, -0.05059361457824707, -0.012644879519939423, -0.011365007609128952, -0.004393982235342264, -0.023508669808506966, 0.04736833646893501, -0.030200477689504623, -0.03568417206406593, -0.01063192542642355, -0.017337845638394356, -0.005332499276846647, 0.00010574976477073506, -0.003953828010708094, 0.015234616585075855, -0.01418821606785059, 0.01884673908352852, -0.005229870788753033, -0.001189523609355092, 0.008415114134550095, 0.007457337342202663, 0.0078720822930336, -0.03273344039916992, 0.015948019921779633, 0.01386023685336113, 0.006456068251281977, 0.048870883882045746, -0.049622323364019394, 0.02129249833524227, 0.016579201444983482, -0.013782287947833538, -0.006555916741490364, 0.003131253644824028, -0.001761141000315547, -0.009842400439083576, 0.03230677545070648, 0.005630641244351864, -0.020323937758803368, 0.02195235900580883, 0.0034479405730962753, -0.009482922032475471, -0.04251834750175476, -0.0072186957113444805, 0.01773989200592041, 0.000497331318911165, 0.05204532667994499, 0.011672924272716045, 0.004911806900054216, -0.047100163996219635, 0.0015839614206925035, 0.014175618067383766, 0.033786192536354065, 0.0011157410917803645, -0.0029585883021354675, 0.0262866523116827, 0.03854544460773468, 0.005043637938797474, 0.012797491624951363, 0.0659710168838501, 0.048005811870098114, -0.048814430832862854, 0.015973029658198357, 0.03358110785484314, 0.02981714904308319, 0.03551222383975983, 0.05087119713425636, -0.0063804928213357925, 0.04289330169558525, -0.029348989948630333, -0.018477385863661766, 0.000798950670287013, -0.045243922621011734, 0.012416156008839607, -0.03554445877671242, -0.0008364379173144698, -0.0046013956889510155, 0.015794122591614723, -0.020649362355470657, 0.010406967252492905, 0.05329999327659607, 0.0037630724254995584, 0.053108297288417816, -0.044049330055713654, 0.0328059047460556, 0.019596876576542854, 0.03493252769112587, 0.04938020929694176, -0.017188044264912605, -0.006438749376684427, -0.01844814047217369, -0.001963200746104121, 0.060849905014038086, -0.01896897703409195, -0.01577797718346119, 0.007435931358486414, -0.036427341401576996, 0.004108874127268791, -0.015467967838048935, -0.014790329150855541, -0.014663384296000004, 0.008670371025800705, 0.044677410274744034, 0.037529341876506805, -0.01723809540271759, 0.03846941888332367, 0.04636286571621895, 0.032794855535030365, 0.08259522914886475, -0.009495809674263, 0.009083288721740246, 0.00929165631532669, 0.008819363079965115, -0.028661537915468216, 0.021552329882979393, -0.018714962527155876, 0.017337694764137268, -0.02865041233599186, 0.002039444399997592, -0.002287023700773716, 0.00875520147383213, -0.020438404753804207, 0.014249068684875965, 0.017331896349787712, 0.06301045417785645, -0.0067246356047689915, -0.01632135547697544, 0.0019471406703814864, 0.040442176163196564, 0.0022523037623614073, 0.029773546382784843, -0.007218117825686932, 0.0012691525043919683, 0.006454950198531151, -0.021369295194745064, 0.022922640666365623, -0.013836477883160114, -0.020616648718714714, 0.028920656070113182, 0.020729979500174522, 0.055392857640981674, 0.032572612166404724, 0.015935413539409637, 0.031762707978487015, 0.047626640647649765, -0.060884468257427216, 0.015441576950252056, -0.003119113389402628, 0.06373842060565948, 0.017672639340162277, 0.012017719447612762, 0.03334680572152138, -0.01917111501097679, -0.0030903294682502747, -0.046000994741916656, -0.024481995031237602, 0.03745999187231064, -0.026230543851852417, 0.030218524858355522, 0.020840687677264214, -0.00803824607282877, -0.015842458233237267, -0.00911489874124527, -0.022096702829003334, -0.036641739308834076, -0.02384132333099842, 0.057507939636707306, -0.05666067451238632, 0.05706257000565529, -0.010856173932552338, -0.01787532866001129, 0.027887655422091484, 0.06253740191459656, -0.0226370207965374, 0.040853194892406464, 0.025955429300665855, 0.025016270577907562, -0.0214067492634058, -0.024717990309000015, 0.003999949432909489, 0.023085372522473335, -0.023524368181824684, 0.02399502322077751, -0.03131914138793945, 0.0008032550103962421, 0.02125241607427597, 0.009581943042576313, 0.008280681446194649, 0.018349843099713326, -0.007788848131895065, 0.013354353606700897, 0.008507870137691498, 0.06342282146215439, -0.04182591661810875, -0.013160133734345436, -0.0187949538230896, 0.041661251336336136, 0.03288324549794197, 0.08803239464759827, 0.04529671370983124, 0.026334093883633614, 0.037141352891922, 0.05039481446146965, 0.018803192302584648, 0.030939185991883278, -0.024096202105283737, 0.010501794517040253, 0.055905651301145554, 0.024663493037223816, -0.03277774527668953, 0.03886333853006363, 0.009740657173097134, -0.004600634332746267, -0.0004429864347912371, 0.03385278210043907, 0.004807962104678154, 0.04723822697997093, 0.06222226470708847, 0.039014510810375214, -0.02848188579082489, 0.040949128568172455, 0.0645955428481102, 0.07253272086381912, -0.04637400060892105, -0.04283228889107704, 0.011096683330833912, 0.03438322991132736, 0.001671818783506751, -0.0006524745258502662, 0.03458341956138611, 0.01608479768037796, -0.013983654789626598, 0.0382942259311676, 0.011000183410942554, -0.027747247368097305, -0.04286174476146698, -0.04764297232031822, -0.017568431794643402, -0.054651934653520584, -0.07386944442987442, 0.004298688378185034, 0.0526183545589447, -0.027287224307656288, 0.02880387008190155, -0.012489363551139832, -0.0319330058991909, -0.021979615092277527, -0.010673807933926582, 0.04339035600423813, 0.026436181738972664, 0.04535117745399475, -0.04679889604449272, 0.016303880140185356, 0.013328256085515022, 0.011244664900004864, -0.000867529190145433, -0.03340471163392067, -0.007039720192551613, -0.01632152684032917, 0.029124666005373, -0.012255028821527958, -0.002956779208034277, 0.01643305830657482, -0.044494353234767914, -0.04775174334645271, -0.005744370631873608, 0.011148695833981037, 0.006312297657132149, -0.010696828365325928, -0.017443982884287834, 0.051066718995571136, -0.015358333475887775, -0.018631301820278168, 0.0380735769867897, 0.02072157897055149, -0.03268033266067505, 0.036984097212553024, 0.005663698073476553, 0.011882206425070763, -0.04816434532403946, 0.018961094319820404, 0.02594044990837574, -0.008287136442959309, -0.028219865635037422, -0.018893936648964882, -0.03215786814689636, 0.028888732194900513, 0.01778709888458252, -0.015423329547047615, -0.05613799765706062, 0.011379229836165905, 0.0380425862967968, -0.06714706867933273, 0.038746535778045654, -0.05538613349199295, -0.022812824696302414, -0.027999693527817726, -0.01988864876329899, 0.01641084812581539, 0.04808008670806885, 0.004070071503520012, 0.007566977757960558, -0.015609366819262505, 0.005824555177241564, -0.02022758312523365, 0.0569474920630455, -0.013436905108392239, 0.026678213849663734, 0.02717185765504837, -0.0076925852335989475, 0.002375612501055002, 0.03153180330991745, -0.022435909137129784, -0.012697989121079445, 0.027126967906951904, 0.013706507161259651, 0.01469080988317728, 0.04281779006123543, 0.030497252941131592, -0.015326942317187786, 0.042819488793611526, -0.032428644597530365, -0.005934049841016531, -0.0156803447753191, -0.022690128535032272, 0.009884749539196491, 0.007562645711004734, -0.006135095842182636, -0.001838086755014956, -0.05967101827263832, -0.06686092168092728, 0.01562785916030407, 0.015825334936380386, 0.06629388779401779, -0.03163240849971771, 0.06654537469148636, -0.02008833922445774, -0.031967274844646454, 0.04379647597670555, -0.06508354097604752, -0.00033094806713052094, 0.08984748274087906, -0.007806455250829458, 0.03303501382470131, -0.048521023243665695, 0.014521650038659573, -0.002855456667020917, 0.05270078778266907, 0.02031570114195347, -0.010796544142067432, 0.048326242715120316, -0.013332582078874111, 0.022347722202539444, -0.00778181804344058, -0.03747232258319855, -0.005717138294130564, -0.03763103485107422, 0.010956702753901482, 0.002179927658289671, -0.04922642931342125, -0.043123889714479446, 0.03901997581124306, 0.027063265442848206, 0.051749393343925476, -0.0008792795706540346, 0.04426943510770798, -0.013194062747061253, 0.015542593784630299, 0.05860334634780884, 0.0059166052378714085, 0.014857667498290539, -0.04125562682747841, -0.00024068304628599435, 0.003561588702723384, -0.050389062613248825, -0.061429087072610855, -0.0298165250569582, -0.008607177063822746, 0.04502280056476593, -0.002653007861226797, -0.03856950253248215, -0.020841585472226143, 0.023220766335725784, 0.006752129178494215, 0.008254549466073513, -0.07832418382167816, -0.03699209913611412, 0.020574171096086502, 0.04390878230333328, 0.03558546304702759, -0.058143679052591324, 0.029870325699448586, -0.04122646898031235, 0.03214990720152855, 0.019276238977909088, 0.008505744859576225, -0.056039802730083466, -0.03950747102499008, -0.024787141010165215, -0.05769246444106102, -0.010556393302977085, 0.01459092739969492, 0.007459092885255814, 0.019243428483605385, -0.08301110565662384, 0.0021519626025110483, 0.025199590250849724, 0.00046143049257807434, 0.011883602477610111, -0.010050604119896889, 0.029801717028021812, 0.002613905118778348, 0.047064848244190216, -0.0371188260614872, -0.02109791710972786, -0.007792626973241568, -0.06564275175333023, 0.022126074880361557, 0.000689101405441761, -0.037672579288482666, -0.014831418171525002, 0.018243594095110893, -0.004626203794032335, 0.04146619886159897, -0.008651470765471458, -0.02565331757068634, -0.02983376756310463, 0.006894898135215044, -0.04561274126172066, -0.02535533346235752, 0.06251761317253113, 0.01497845258563757, -0.012113189324736595, 0.027842029929161072, 0.010909433476626873, -0.0011997547699138522, 0.0113449115306139, 0.028754904866218567, -0.04765385016798973, 0.04026751592755318, -0.03028813935816288, 0.008336738683283329, -0.03431341052055359, -0.03398837149143219, 0.02709759958088398, -0.025426775217056274, 0.0322469063103199, 0.009264951571822166, -0.015079950913786888, -0.04424072802066803, -0.030489038676023483, -0.018384797498583794, 0.021168962121009827, -0.01991211250424385, 0.008349217474460602, 0.03387834131717682, -0.01249257568269968, -0.03858007863163948, -0.010106690227985382, -0.018084431067109108, -0.015949411317706108, -0.0013102117227390409, -0.036034028977155685, -0.022183235734701157, 0.0029262006282806396, 0.025815919041633606, 0.01051364466547966, -0.05038749426603317, 0.0005742191569879651, -0.014742991887032986, -0.03897687792778015, -0.06240095943212509, 0.010310159996151924, -0.00926097109913826, -0.0069616492837667465, -0.051015663892030716, 0.007988996803760529, -0.007015696261078119, 0.0452614426612854, 0.031232398003339767, 0.009367751888930798, -0.002731445012614131, -0.005267273634672165, -0.04152851551771164, 0.033661726862192154, 0.04260360077023506, -0.0542038157582283, -0.03997977077960968, 0.012356922030448914, 0.007945936173200607, 0.030220316722989082, -0.03248769789934158, -0.006324395537376404, -0.040018051862716675, -0.06334132701158524, -0.012154791504144669, -0.030715210363268852, -0.006438262294977903, -0.03321307525038719, -0.027544232085347176, 0.005445302929729223, 0.03026203066110611, 0.025557544082403183, -0.001516728661954403, -0.026948727667331696, -0.0729648545384407, -0.00623801164329052, -0.03415493667125702, -0.002460276475176215, -0.021052498370409012, -0.04132750630378723, -0.023053595796227455, 0.061578717082738876, 0.0453597828745842, 0.029291534796357155, 0.006556759122759104, -0.001259770942851901, -0.0021305980626493692, -0.006733913905918598, -0.012965369038283825, -0.03723989427089691, -0.00541651388630271, 0.009997148998081684, 0.03217470273375511, 0.002853265730664134, -0.026123788207769394, 0.05285976454615593, -0.020528709515929222, 0.023107198998332024, -0.028090190142393112, -0.009259341284632683, -0.01473242323845625, -0.028762690722942352, 0.057118095457553864, -0.00027929156203754246, 0.021561739966273308, -0.0381062850356102, 0.015147320926189423, 0.076716348528862, -0.0036438049282878637, -0.056738849729299545, -0.01729017123579979, -0.03475050628185272, -0.0729416161775589, 0.015004534274339676, -0.04574970155954361, -0.02976517751812935, -0.02341792732477188, 0.008414637297391891, 0.026323460042476654, -0.03383906930685043, 0.039315901696681976, 0.025007780641317368, -0.043680183589458466, -0.04033700376749039, -0.020891482010483742, 0.03780129924416542, 0.02730105072259903, -0.0037888912484049797, 0.0066917105577886105, -0.01634470373392105, -0.02206239104270935, -0.005817127414047718, -0.026538990437984467, -0.020053641870617867, -0.031032148748636246, -0.030144227668642998, 0.043507542461156845, 0.004463764373213053, 0.024382038041949272, 0.00586081575602293, -0.03313731774687767, -0.07975635677576065, 0.026635095477104187, -0.013278309255838394, 0.007702449336647987, 0.01772565208375454, 0.0010425146901980042, -0.02617518976330757, 0.00900163222104311, 0.01195671409368515, -0.01172974705696106, -0.01114058867096901, 0.06385263800621033, 0.009526511654257774, -0.04558432102203369, 0.040661100298166275, 0.059400249272584915, -0.05402213707566261, -0.05707347393035889, -0.02223571389913559, -0.01282941922545433, -0.02052447572350502, -0.03157337009906769, 0.015519161708652973, -0.044212210923433304, 0.004532629624009132, 0.011930469423532486, 0.036543864756822586, -0.004136041272431612, 0.030008971691131592, -0.002819755347445607, 0.05746074020862579, -0.045042701065540314, 0.03247454762458801, 0.011711540631949902, -0.018685296177864075, -0.014393329620361328, -0.03975183889269829, 0.0006340629188343883, 0.025674795731902122, -0.006312008947134018, 0.06262253224849701, -0.010023277252912521, 0.015444934368133545, 0.013909216970205307, -0.002716973191127181, 0.03620198369026184, 0.0025981555227190256, -0.035631921142339706, 0.0018126536160707474, -0.0036948053166270256, -0.017760496586561203, -0.04783066734671593, 0.017688754945993423, 0.026286639273166656, 0.023434774950146675, -0.03835974261164665, -0.026965627446770668, 0.0003927475481759757, 0.02064182236790657, 0.022868283092975616, -0.04478947073221207, -0.05223265290260315, -0.03375973179936409, -0.03230978548526764, -0.012221707962453365, -0.017931979149580002, -0.003865246893838048, 0.024731451645493507, 0.010282842442393303, -0.0016379833687096834, -0.026792477816343307, -0.012753141112625599, -0.04340127110481262, 0.0007068940321914852, -0.027186188846826553, 0.0024362194817513227, -0.018351446837186813, -0.07464902848005295, -0.028542589396238327, -0.005664832890033722, -0.014461572282016277, -0.025096824392676353, -0.0034924105275422335, 0.026580454781651497, 0.006520111579447985, 0.06058865413069725, 0.011440967209637165, 0.010464065708220005, -0.004086453001946211, -0.05449111387133598, 0.023238854482769966, 0.05603562295436859, -0.005482160020619631, 0.06538359075784683, 0.032183073461055756, -0.035587627440690994, 0.04282718151807785, -0.009769137017428875, -0.027506351470947266, -0.033396486192941666, 0.005845445673912764, -0.010394402779638767, -0.026391111314296722, -0.03876619040966034, -0.022256918251514435, -0.03649398311972618, -0.0620589517056942, 0.016183605417609215, -0.04096473753452301, 0.0014474079944193363, -0.014653975144028664, 0.01170624140650034, 0.009070521220564842, 0.02589980512857437, -0.034149907529354095, 0.032250624150037766, 0.002539617707952857, 0.028325840830802917, 0.010324114002287388, 0.007905918173491955, 0.019342517480254173, 0.0004274829989299178, 0.028264155611395836, -0.02280334196984768, -0.018934553489089012, 0.028901994228363037, -0.012683296576142311, 0.0222481619566679, -0.026944758370518684, -0.03866682946681976, -0.01962028257548809, -0.008335055783390999, 0.008706456981599331, 0.023600751534104347, 0.030825765803456306, -0.024356788024306297, 0.019394902512431145, -0.029695095494389534, -0.05438204109668732, -0.031374115496873856, -0.08194625377655029, -0.02107222191989422, 0.03547792136669159, -0.010543216951191425, -0.010985457338392735, -0.007632122375071049, -0.07331379503011703, -0.00407769251614809, -0.02946290373802185, 0.0008265859796665609, -0.01804136484861374, 0.03889374062418938, 0.009483065456151962, 0.037001702934503555, -0.021365506574511528, 0.017635442316532135, 0.0021291757002472878, 0.042108774185180664, -0.06474311649799347, -0.05586094409227371, 0.025051593780517578, 0.01683138869702816, 0.01400129683315754, 0.021080071106553078, 0.005398941691964865, -0.00203110184520483, -0.011509458534419537, -0.007530970964580774, 0.025920704007148743, 0.011821073479950428, 0.00978601910173893, 0.02130305767059326, -0.002987906103953719, 0.00634027412161231, -0.01829710230231285, 0.0013311391230672598, -0.01227019727230072, -0.060539353638887405, -0.05336584150791168, 0.0008795572794042528, 0.0632396936416626, -0.014651866629719734, 0.041471030563116074, -0.0011865224223583937, 0.02882285974919796, -0.020692704245448112, 0.009565277956426144, 0.020694201812148094, 0.06460246443748474, 0.00944320484995842, 0.04820818826556206, -0.015013166703283787, 0.033347584307193756, 0.061876147985458374, -0.017143627628684044, -0.019295696169137955, 0.023722445592284203, 0.03458899259567261, -0.013897101394832134, -0.00961587019264698, -0.019176380708813667, 0.0014299306785687804, 0.02836639992892742, -0.040728356689214706, 0.005580468103289604, -0.030882179737091064, 0.026169506832957268, -0.025821104645729065, -0.014131354168057442, 0.04335760697722435, -0.028454827144742012, -0.014278221875429153, -0.002972504124045372, -0.030226485803723335, -0.011542363092303276, 0.049477718770504, 0.013522153720259666, 0.010917800478637218, 0.0376342311501503, 0.02722947672009468, -0.007868478074669838, 0.040291059762239456, 0.023076554760336876, -0.01056068204343319, -0.03476261347532272, -0.013328340835869312, 0.009415564127266407, -0.011586208827793598, -0.021509794518351555, -0.016298769041895866, -0.03232443705201149, 0.026319779455661774, -0.02377462573349476, -0.016591213643550873, 0.018087172880768776, -0.038982950150966644, 0.011582438834011555, -0.04496784508228302, 0.030185170471668243, -0.039681416004896164, 0.0031302787829190493, 0.00568121112883091, -0.00556029099971056, -0.010689244605600834, 0.032770391553640366, -0.0050363061018288136, 0.04094107449054718, 0.017388394102454185, 0.034644804894924164, 0.006750150583684444, -0.02158697508275509, 0.037859704345464706, -0.021498756483197212, -0.029386527836322784, 0.03373102471232414, -0.000992659479379654, -0.023104844614863396, -0.02787059172987938, -0.03406258672475815, -0.040873751044273376, -0.01682937704026699, -0.024108855053782463, -0.0012939065927639604, 0.037057455629110336, -0.020154809579253197, -0.07152795791625977, -0.003861428005620837, 0.01778828538954258, -0.032655831426382065, 0.00530676543712616, 0.013212932273745537, 0.07704455405473709, -0.00792106706649065, -0.009758698754012585, -0.03943203017115593, -0.028406457975506783, 0.014645491726696491, -0.04738420620560646, 0.056963663548231125, 0.01713363640010357, -0.04966837540268898, -0.05254683271050453, -0.04363057389855385, -0.00716008897870779, -0.005369966849684715, -0.053551506251096725, -0.04632790759205818, 0.03708687424659729, 0.047323573380708694, -0.0005888107698410749, 0.008456257171928883, -0.01186258252710104, -0.0043462407775223255, 0.06460306793451309, 0.06889286637306213, -0.0006435059476643801, 0.05420200899243355, 0.012861857190728188, -0.004902224522083998, 0.028777647763490677, -0.026653464883565903, 0.02945074252784252, -0.006939854007214308, -0.007596990093588829, -0.014337815344333649, -0.017740579321980476, -0.033484626561403275, -0.08690855652093887, 0.025981733575463295, 0.025313546881079674, -0.02109181135892868, -0.006383370142430067, -0.07178576290607452, 0.006162557750940323, -0.06430695205926895, -0.002273079939186573, -0.03709542378783226, 0.04599941149353981, -0.008622497320175171, 0.007359211798757315, -0.0019017851445823908, -0.06216228008270264, 0.141608327627182, 0.03488839790225029, 0.027504200115799904, 0.003781764069572091, 0.018452540040016174, 0.03074072115123272, 0.0014021425740793347, 0.018674591556191444, 0.02782094106078148, -0.06332949548959732, -0.01502604316920042, 0.005089199636131525, 0.0421542264521122, 0.005175931379199028, 0.019194457679986954, 0.07102950662374496, -0.03225862234830856, 0.015432081185281277, 0.029518285766243935, -0.0194042157381773, -0.056503165513277054, 0.03297858685255051, 0.009014160372316837, 0.027219736948609352, -0.012433133088052273, 0.02816045470535755, 0.05862307921051979, -0.05787702649831772, -0.024723932147026062, -0.013469730503857136, 0.03986692428588867, -0.05804992839694023, 0.02828100137412548, -0.03011791594326496, -0.034397587180137634, 0.03772071376442909, 0.012123310007154942, -0.05221773311495781, 0.027418075129389763, 0.0048217084258794785, -0.030900917947292328, 0.02973034232854843, 0.05795498937368393, -0.019436372444033623, 0.026064079254865646, 0.005208486691117287, -0.027826741337776184, 0.018124157562851906, 0.015451609157025814, -0.03149914741516113, 0.0456199012696743, -0.023476900532841682, 0.027877775952219963, -0.012767167761921883, -0.039858218282461166, 0.010851655155420303, 0.015614509582519531, -0.025097817182540894, -0.02203509397804737, -0.033733755350112915, 0.045417435467243195, -0.010071776807308197, 0.018977878615260124, -0.0005302065401338041, -0.0038751151878386736, 0.010640135034918785, 0.03796858713030815, -0.0022479770705103874, -0.02036873996257782, 0.007335596717894077, 0.007486481685191393, 0.004176237620413303, 0.012085745111107826, -0.010372944176197052, 0.04352608695626259, 0.05149170383810997, -0.020804135128855705, 0.027379436418414116, 0.009684822522103786, 0.005556746385991573, -0.02259788289666176, -0.03549917787313461, 0.011386916972696781, -0.0019284170120954514, 0.01284595113247633, 0.030329519882798195, -0.040427129715681076, -0.035754960030317307, -0.062148772180080414, 0.04335683956742287, 0.07484731078147888, 0.03333047404885292, -0.010415186174213886, -0.01044108159840107, -0.005842425860464573 ]
Direction City center - Mala Strana district. Main street Karmelitská -turn to HARANTOVA STREET, turn right to NEBOVIDSKA street, turn left to PELCLOVA street and turn right to NOSTICOVA STREET. We are the corner house with the flags above the entrance.
[ -0.01386724691838026, 0.004998066928237677, -0.023180041462183, -0.006599096581339836, -0.0002953906951006502, -0.0146624855697155, 0.004867903888225555, 0.0449245423078537, -0.01482880674302578, -0.009202169254422188, 0.024245694279670715, 0.010985646396875381, -0.003211615141481161, -0.010464519262313843, -0.00609042402356863, 0.01323330495506525, -0.013713657855987549, -0.02246943674981594, -0.010425365529954433, -0.002150603337213397, -0.033896103501319885, -0.00025796101544983685, -0.08188017457723618, -0.023050149902701378, -0.02802431397140026, 0.03548136353492737, 0.045036766678094864, -0.018203597515821457, 0.05597849190235138, 0.03821178525686264, -0.007141208741813898, -0.046816401183605194, 0.03257492557168007, -0.06719642877578735, -0.011230340227484703, -0.012880221009254456, 0.032186359167099, -0.04141857847571373, -0.015598719008266926, -0.05369361862540245, -0.017347978428006172, -0.0021812093909829855, 0.009214215911924839, -0.061117157340049744, -0.041525863111019135, 0.018510695546865463, -0.02982446551322937, -0.02843162603676319, 0.014814683236181736, -0.020689615979790688, 0.001184155116789043, -0.007846609689295292, 0.03245402127504349, 0.014965667389333248, -0.0020186067558825016, 0.006967436987906694, 0.006826339289546013, 0.00718529149889946, -0.023753447458148003, 0.021776480600237846, 0.013520343229174614, 0.009580248966813087, 0.0430053174495697, -0.06802147626876831, 0.0251630712300539, 0.015029588714241982, 0.024073854088783264, -0.009170343168079853, 0.020869378000497818, -0.057776130735874176, -0.02716510370373726, 0.00910650473088026, -0.013582891784608364, -0.02798335812985897, -0.004072592128068209, 0.03561074286699295, -0.006476233247667551, -0.00027419900288805366, -0.013670464046299458, -0.013631179928779602, 0.019224105402827263, 0.040367111563682556, 0.0428161695599556, 0.025532221421599388, -0.02661651186645031, -0.02420349232852459, -0.010074369609355927, 0.010583821684122086, -0.014718418009579182, 0.020023012533783913, 0.02285170368850231, 0.05042539909482002, 0.004437889903783798, 0.004243397619575262, 0.03995294123888016, 0.05304805189371109, -0.0300127025693655, 0.05528870224952698, 0.029378142207860947, 0.0135672427713871, 0.029927169904112816, 0.01872652769088745, -0.017065562307834625, 0.04883909970521927, -0.043556828051805496, -0.012992724776268005, -0.015070713125169277, -0.03784477338194847, 0.014472569338977337, -0.04140297323465347, 0.007570351008325815, -0.019088616594672203, 0.029744986444711685, -0.006352439057081938, 0.010002877563238144, 0.06558330357074738, -0.0003081951290369034, 0.023760473355650902, -0.020029814913868904, 0.030142763629555702, 0.03818416967988014, 0.029818300157785416, 0.03067958727478981, -0.03403441235423088, 0.009661786258220673, -0.02719126082956791, -0.025862574577331543, 0.07574877142906189, -0.03302903100848198, -0.01848858781158924, -0.003918839152902365, -0.08030930161476135, -0.004373198840767145, 0.0028992968145757914, -0.014639896340668201, 0.006391528528183699, -0.022750675678253174, 0.008758927695453167, 0.042137786746025085, -0.04565864056348801, 0.058863211423158646, 0.00844202097505331, 0.0068984730169177055, 0.0778898149728775, 0.0160996001213789, 0.0043670679442584515, 0.011531366966664791, 0.004098002333194017, -0.056015029549598694, -0.0015398222021758556, -0.03823798894882202, 0.012441910803318024, 0.013601568527519703, 0.027721023187041283, 0.027790900319814682, 0.0047324043698608875, -0.0010928019182756543, 0.01759953983128071, -0.006777675356715918, 0.042118970304727554, -0.012614029459655285, 0.014424601569771767, -0.021231763064861298, 0.03975984826683998, 0.006410858128219843, 0.03320612385869026, -0.0316818468272686, -0.020396506413817406, -0.03925396874547005, -0.03930794075131416, 0.011208116076886654, -0.009901324287056923, -0.017963245511054993, 0.02526891976594925, 0.015529685653746128, 0.026466237381100655, 0.0446229912340641, 0.014230145141482353, 0.03247183561325073, 0.034956369549036026, -0.043443914502859116, -0.006636213976889849, 0.012324385344982147, 0.05964825674891472, -0.00986336637288332, 0.004464681260287762, 0.008560337126255035, -0.05030737817287445, -0.019005922600626945, -0.004394941031932831, -0.01426866464316845, 0.048199642449617386, -0.01851736009120941, 0.05557192489504814, -0.006324802991002798, 0.0015391692286357284, -0.03769790008664131, 0.006741779390722513, -0.016540732234716415, -0.07343986630439758, -0.03436274081468582, 0.055419228971004486, -0.034133028239011765, 0.009961376897990704, -0.00293656624853611, -0.008951939642429352, 0.01677818037569523, 0.07605473697185516, -0.03893319144845009, -0.02065739594399929, 0.054191961884498596, -0.0039671980775892735, -0.027014726772904396, 0.026020601391792297, -0.0012906810734421015, -0.014555823057889938, -0.003493404248729348, 0.035915032029151917, -0.0063986447639763355, -0.01625416800379753, 0.024761689826846123, 0.033778414130210876, 0.018931187689304352, 0.03577897697687149, -0.03217429667711258, 0.011665774509310722, 0.02457812801003456, 0.029937179759144783, 0.01078998763114214, 0.017827797681093216, 0.0019405147759243846, 0.012316400185227394, 0.03024342842400074, 0.04440223425626755, 0.0411422960460186, 0.031623244285583496, 0.033199209719896317, 0.027866721153259277, 0.002765926066786051, 0.018449431285262108, 0.01100844144821167, 0.024552101269364357, 0.04835192859172821, 0.02792537398636341, -0.0002209094527643174, 0.03427118808031082, 0.003956557717174292, 0.010049046017229557, -0.012139887548983097, 0.019483255222439766, -0.006802800111472607, 0.030342046171426773, 0.0037426226772367954, 0.04158012941479683, -0.014543222263455391, 0.015528961084783077, 0.048119693994522095, 0.04623458534479141, -0.024117328226566315, -0.005996127612888813, 0.00525533314794302, 0.004376083612442017, -0.0077583580277860165, -0.012415241450071335, 0.022565318271517754, 0.057255711406469345, -0.002549760742112994, -0.008357279933989048, -0.030539797618985176, -0.050023872405290604, -0.039645373821258545, -0.035258516669273376, -0.028757449239492416, -0.025477582588791847, -0.07173089683055878, -0.018578877672553062, 0.04888815060257912, -0.005058144219219685, 0.008334900252521038, -0.0014063144335523248, -0.011714966967701912, -0.01649325340986252, 0.007730092387646437, 0.04520925134420395, 0.023367751389741898, 0.050907202064991, 0.001549227861687541, 0.012905826792120934, 0.008454404771327972, 0.029640372842550278, -0.04839033633470535, -0.015300092287361622, -0.02011914551258087, -0.006817115005105734, 0.02341528795659542, -0.0394350104033947, -0.007512170355767012, -0.017113907262682915, -0.03373585268855095, -0.07805542647838593, -0.017010251060128212, 0.028657499700784683, 0.0011079413816332817, 0.017336292192339897, -0.022736888378858566, 0.009539121761918068, 0.028875669464468956, -0.032563526183366776, 0.02907143533229828, 0.06796267628669739, -0.019440408796072006, 0.055561453104019165, 0.03040672466158867, -0.01050847303122282, -0.0663406252861023, 0.07906929403543472, 0.048762526363134384, 0.030599256977438927, -0.03864783048629761, -0.0548388808965683, -0.03741626814007759, 0.025134112685918808, 0.019013358280062675, -0.019730789586901665, -0.013372479937970638, 0.04636946693062782, 0.013787629082798958, -0.057501643896102905, 0.02961292304098606, -0.046159978955984116, -0.05732336640357971, -0.0634792223572731, 0.0030530011281371117, 0.034791022539138794, -0.0018063710303977132, 0.062128402292728424, -0.007218826562166214, -0.017892325296998024, 0.010622687637805939, 0.002920338185504079, 0.0359727181494236, -0.0328381322324276, 0.030009128153324127, 0.00006803473661420867, -0.016153791919350624, 0.016118578612804413, 0.027558838948607445, 0.0026756434235721827, -0.025045322254300117, 0.003653755644336343, -0.027408281341195107, 0.0014423824613913894, 0.04332077503204346, 0.002968825399875641, -0.013715623877942562, 0.06072387471795082, -0.04252738505601883, 0.013211851008236408, 0.010811321437358856, 0.011383500881493092, 0.02453656867146492, -0.011681197211146355, 0.0076485974714159966, -0.00859334971755743, -0.02476746216416359, -0.06240079924464226, 0.043604589998722076, 0.03245671093463898, 0.036119770258665085, -0.04893334209918976, 0.06168736144900322, -0.012612098827958107, -0.037975799292325974, 0.025676866993308067, -0.07369375973939896, -0.039148323237895966, 0.057428013533353806, -0.00744924321770668, 0.037856053560972214, -0.03425395116209984, 0.04580158367753029, -0.0403297133743763, 0.010058823972940445, 0.02338423579931259, 0.014182589016854763, 0.02946527674794197, -0.01380633283406496, -0.024761635810136795, -0.020489854738116264, -0.010208666324615479, 0.024053946137428284, -0.028987310826778412, 0.03902275487780571, -0.0009134720312431455, -0.04951661452651024, -0.07183914631605148, 0.02388695254921913, 0.016260739415884018, 0.01660832203924656, -0.03441810980439186, 0.03877639397978783, 0.027373723685741425, 0.027957579120993614, 0.06021744757890701, -0.048005495220422745, 0.008067326620221138, -0.0031208875589072704, 0.0501088909804821, 0.039051320403814316, -0.0008360080537386239, -0.04402754083275795, -0.021446969360113144, -0.008191440254449844, 0.04622102156281471, -0.025271525606513023, -0.016503723338246346, -0.07071644812822342, 0.016707178205251694, -0.025131290778517723, 0.004640399944037199, -0.04009902849793434, -0.015578057616949081, -0.0027234903536736965, 0.03809031844139099, 0.026333928108215332, -0.05680685490369797, 0.0034370108041912317, -0.04697655513882637, 0.03154636546969414, 0.03232232853770256, -0.007571561262011528, -0.04645908251404762, -0.041414715349674225, -0.019966859370470047, -0.01355064008384943, 0.0007960867951624095, 0.029054054990410805, -0.0023155861999839544, 0.0066974651999771595, -0.04433564469218254, 0.021105032414197922, 0.02503792941570282, 0.004161255434155464, -0.013491916470229626, -0.03011511266231537, 0.0026878765784204006, -0.02462768740952015, 0.011362492106854916, -0.030478205531835556, -0.009146199561655521, 0.011231562122702599, -0.050872258841991425, -0.00042688989196904004, -0.0013323937309905887, 0.03595134988427162, 0.004883222747594118, 0.01072803046554327, 0.015635188668966293, 0.03303826227784157, -0.014834217727184296, 0.03922148793935776, -0.012493527494370937, 0.030335647985339165, -0.047124747186899185, -0.04618464782834053, 0.055289626121520996, -0.01577690616250038, -0.030479667708277702, 0.03989649936556816, 0.03828093782067299, -0.0407082624733448, -0.0006122678169049323, 0.008480931632220745, -0.045624278485774994, 0.020696796476840973, -0.03639773651957512, 0.02895168960094452, 0.010684904642403126, -0.03845306858420372, 0.010773523710668087, -0.008915365673601627, 0.019591432064771652, 0.001375146210193634, -0.02248893864452839, -0.0397811159491539, -0.053056586533784866, -0.010713541880249977, 0.009440814144909382, -0.020166004076600075, 0.003437348175793886, 0.02523871138691902, -0.028884273022413254, -0.004582623485475779, -0.023376954719424248, 0.03859829157590866, -0.008864159695804119, -0.00953180156648159, 0.035605691373348236, 0.006717726122587919, 0.0022799591533839703, 0.03863942250609398, -0.006075367331504822, -0.04800223931670189, -0.005360654555261135, -0.015552348457276821, -0.03424813225865364, -0.04375990480184555, 0.026424182578921318, -0.02443033643066883, -0.004208572208881378, -0.05114620178937912, -0.015070179477334023, -0.020280960947275162, -0.008249206468462944, 0.007831127382814884, 0.028609398752450943, 0.009923232719302177, 0.0038507396820932627, -0.01573461852967739, 0.013909776695072651, 0.016497530043125153, -0.06341711431741714, -0.016023756936192513, 0.0016599916853010654, -0.0005097124958410859, 0.019237032160162926, -0.0034499196335673332, 0.004102729260921478, -0.05751432105898857, -0.07810892909765244, -0.020396683365106583, -0.038440167903900146, -0.025983277708292007, -0.04161689057946205, -0.0637313574552536, -0.02948189340531826, 0.021503087133169174, 0.002876086626201868, -0.011338644661009312, 0.03806018829345703, -0.04643479362130165, 0.0055292751640081406, -0.015618758276104927, -0.021909618750214577, -0.05668855085968971, -0.007885013706982136, -0.00680667394772172, 0.06898053735494614, 0.015847090631723404, 0.007047177292406559, 0.015693506225943565, 0.007635392248630524, 0.007814931683242321, -0.02482444792985916, -0.0413932278752327, -0.053838808089494705, -0.014326992444694042, 0.021821103990077972, -0.006315105129033327, 0.020154614001512527, -0.013187583535909653, 0.06244373694062233, -0.021183675155043602, 0.013328375294804573, -0.01715204119682312, -0.0014254265697672963, -0.019610347226262093, -0.010871472768485546, 0.03765932470560074, -0.028752990067005157, 0.018368864431977272, -0.0002698713797144592, 0.07302258163690567, 0.029202863574028015, -0.02750251814723015, -0.01928776688873768, -0.0421854630112648, -0.046079181134700775, -0.05409230664372444, 0.047080785036087036, -0.02955293282866478, -0.004332399927079678, -0.033566225320100784, -0.020344143733382225, 0.07398568093776703, 0.01839437335729599, 0.03644256666302681, 0.06227776035666466, -0.00603079330176115, 0.006323486566543579, -0.05860596150159836, 0.03117429092526436, 0.050933998078107834, -0.020173195749521255, -0.003696120111271739, -0.029642079025506973, -0.005010668188333511, 0.02910195291042328, -0.007222658954560757, -0.021456822752952576, -0.06922505795955658, -0.00817134976387024, 0.06796589493751526, -0.01049994770437479, 0.049533549696207047, -0.019655970856547356, -0.042058855295181274, -0.032043036073446274, 0.03748134896159172, 0.012026476673781872, 0.0329468697309494, 0.046731363981962204, 0.030969534069299698, 0.02849026955664158, 0.01923154853284359, 0.009885139763355255, 0.00817515142261982, -0.042406756430864334, 0.08557239174842834, -0.03073030896484852, -0.06346078217029572, 0.009671533480286598, 0.06129796430468559, -0.04185432940721512, -0.027117131277918816, -0.006129681598395109, 0.02559126913547516, 0.024196980521082878, -0.03677694872021675, 0.012427795678377151, -0.005018328316509724, -0.000507232325617224, 0.02464214898645878, -0.0033519004937261343, 0.01273726113140583, 0.0385875441133976, 0.017691465094685555, 0.0383751355111599, -0.014206145890057087, 0.019691340625286102, 0.017204206436872482, -0.02700880914926529, -0.015672223642468452, -0.03206995502114296, -0.025641117244958878, -0.010313100181519985, 0.004528593737632036, 0.04334428161382675, -0.005607185885310173, 0.02490018680691719, 0.01639939285814762, -0.0013090415159240365, 0.06961677223443985, -0.0060747344978153706, 0.011770932003855705, 0.007009691093116999, -0.032632976770401, -0.0318552628159523, -0.02611744962632656, 0.033500730991363525, -0.017492862418293953, 0.024591149762272835, -0.03892698138952255, -0.02272554486989975, 0.008630321361124516, -0.01609068177640438, 0.0148703558370471, -0.05411786958575249, -0.02684048004448414, -0.024179350584745407, -0.06864669173955917, -0.03409179672598839, -0.028108589351177216, 0.003273132024332881, 0.008688895031809807, -0.01734628714621067, -0.04620819538831711, -0.0008067306480370462, 0.007477737031877041, -0.021171271800994873, 0.01241303514689207, -0.04136880487203598, 0.018234876915812492, -0.052854858338832855, -0.06258893013000488, -0.04073988273739815, 0.018455246463418007, -0.01971282809972763, 0.013271546922624111, -0.01682215929031372, 0.021488554775714874, 0.0005854517803527415, 0.029468856751918793, -0.011587247252464294, -0.006584472954273224, -0.008671184070408344, -0.060883257538080215, 0.009353089146316051, 0.04938802495598793, 0.000032943633414106444, 0.04498540237545967, 0.035522229969501495, -0.01617446541786194, 0.04041650518774986, 0.01452051941305399, -0.03788663074374199, -0.005337886977940798, -0.006917292717844248, -0.0003542783379089087, 0.003919784910976887, -0.029613154008984566, -0.004948094021528959, 0.003232451155781746, -0.056364525109529495, 0.017994999885559082, -0.02526373788714409, 0.02612488716840744, 0.022631675004959106, -0.01263645850121975, 0.03472394123673439, 0.059983737766742706, 0.002849295036867261, -0.022642051801085472, -0.001277836738154292, 0.0436098650097847, -0.004702378995716572, 0.006569537799805403, 0.0008184704929590225, 0.047382354736328125, 0.026794956997036934, -0.0008117282413877547, -0.0021855500526726246, 0.03252631425857544, -0.03368576616048813, 0.03821007162332535, -0.014424790628254414, -0.04334906116127968, -0.04738929122686386, -0.02070801518857479, -0.010385316796600819, 0.0410572774708271, 0.026078874245285988, -0.015537331812083721, 0.042600132524967194, -0.039076223969459534, -0.05095323920249939, 0.003605893347412348, -0.051796186715364456, -0.022410830482840538, 0.02947518229484558, -0.037291135638952255, -0.004119019955396652, -0.014569125138223171, -0.06722287088632584, 0.026634978130459785, -0.015660101547837257, -0.011209358461201191, -0.014847584068775177, 0.036577384918928146, -0.00435653468593955, 0.03959598019719124, -0.01750980317592621, -0.009954342618584633, 0.029919510707259178, 0.02980259619653225, -0.02833748795092106, -0.06898242980241776, 0.0034272554330527782, 0.014954906888306141, 0.021303514018654823, -0.010468626394867897, 0.013638005591928959, 0.0009090229868888855, -0.007616899907588959, -0.005371219478547573, 0.001024930621497333, 0.0424666665494442, -0.00636586919426918, 0.024409327656030655, -0.009776823222637177, -0.026445554569363594, -0.0299543309956789, 0.02275051735341549, -0.016334528103470802, 0.008295580744743347, -0.014865932986140251, 0.027448367327451706, 0.03894508630037308, -0.00745726004242897, 0.051762375980615616, 0.029964931309223175, 0.04864120855927467, -0.028315450996160507, 0.020056109875440598, -0.0013732864754274487, 0.03527034819126129, 0.02763812616467476, 0.01484315749257803, -0.01652691140770912, 0.01682427152991295, 0.03310602903366089, 0.008063345216214657, -0.029465770348906517, 0.04015156626701355, 0.024293765425682068, -0.0066812895238399506, -0.016872987151145935, 0.0012435972457751632, 0.02309330739080906, 0.014758134260773659, -0.02591790445148945, -0.02609524317085743, -0.012093350291252136, 0.00378962280228734, -0.022126998752355576, 0.0050447494722902775, 0.05478547886013985, -0.022395439445972443, 0.018025152385234833, -0.00022767839254811406, -0.03082543984055519, 0.006823549512773752, 0.05897117778658867, 0.004595247097313404, 0.011965098790824413, 0.02056785300374031, 0.0393071211874485, -0.006341245025396347, 0.06992966681718826, 0.008109984919428825, 0.007235326338559389, -0.02648521214723587, 0.030129842460155487, 0.008864681236445904, -0.020039159804582596, -0.03321022540330887, -0.008985980413854122, -0.04063522070646286, 0.02217164821922779, -0.022662967443466187, -0.03601885586977005, 0.0353628434240818, -0.034489039331674576, 0.0015545141650363803, -0.021872542798519135, 0.02839321829378605, -0.026595523580908775, -0.002970087341964245, 0.02188502624630928, -0.014798562042415142, -0.013045662082731724, 0.05389469116926193, 0.016696101054549217, 0.04598481208086014, 0.02155388705432415, 0.06410707533359528, -0.005156310275197029, 0.035538140684366226, 0.051476042717695236, -0.03970908373594284, -0.0014703546185046434, 0.006409532390534878, -0.001922190422192216, -0.05017663910984993, -0.01553843729197979, -0.015286843292415142, -0.017075451090931892, -0.02873643860220909, 0.008512320928275585, -0.0001084976174752228, 0.06164383888244629, 0.0029582942370325327, -0.05021679773926735, 0.008375483565032482, 0.03229913488030434, -0.03446964919567108, 0.012930570170283318, 0.01664227433502674, 0.06234405189752579, -0.015573196113109589, -0.02224118635058403, -0.033558327704668045, -0.010727392509579659, 0.0009937641443684697, -0.04311000928282738, 0.04231136292219162, -0.025769604369997978, -0.020127931609749794, -0.04197311028838158, -0.046058788895606995, -0.0018777811201289296, 0.0321531742811203, -0.040657199919223785, -0.02372504211962223, 0.02676619403064251, 0.051315389573574066, -0.006762877106666565, -0.001000315067358315, -0.02052048221230507, -0.012411658652126789, 0.042400509119033813, 0.06654021143913269, 0.00467204162850976, 0.04054238647222519, 0.03093576617538929, -0.013448433950543404, 0.001880953903310001, -0.008690268732607365, 0.0378950759768486, -0.03901471942663193, -0.008405962958931923, 0.009951947256922722, 0.010660034604370594, -0.05740021541714668, -0.08238092809915543, -0.004301060922443867, -0.01720028556883335, -0.005301948636770248, -0.01210043579339981, -0.05716675892472267, -0.0181648600846529, -0.042261190712451935, -0.03363994136452675, -0.048245567828416824, 0.01280422043055296, 0.007992875762283802, -0.007544973865151405, 0.00594815518707037, -0.07077039778232574, 0.16308625042438507, 0.07455923408269882, 0.02724672295153141, 0.022793537005782127, 0.020086688920855522, 0.07712651789188385, -0.0019888521637767553, -0.017191028222441673, -0.0005647661746479571, -0.02855711244046688, 0.024389538913965225, -0.019503526389598846, 0.03732534870505333, -0.017493247985839844, 0.014715059660375118, 0.050298143178224564, -0.02384728565812111, 0.01593281887471676, 0.02667919173836708, -0.043637800961732864, -0.0653756633400917, 0.03110686130821705, -0.0003466417547315359, 0.019289659336209297, -0.0005819740472361445, 0.014806995168328285, 0.03138045594096184, -0.05732479691505432, -0.03686682879924774, -0.026503710076212883, 0.03214704245328903, -0.027041474357247353, 0.028290411457419395, 0.0000810305355116725, -0.05518002063035965, 0.02524508908390999, -0.025264015421271324, -0.02850206196308136, 0.013092237524688244, 0.020927362143993378, -0.015562592074275017, -0.0254961047321558, 0.041657160967588425, -0.0003873982059303671, 0.03123495541512966, 0.0015179960755631328, -0.057482894510030746, -0.008083783090114594, 0.001499813050031662, -0.0018835410010069609, 0.08624637126922607, -0.02326958440244198, 0.002250812016427517, 0.014949290081858635, -0.032274577766656876, -0.019573427736759186, 0.010018297471106052, -0.03083229437470436, 0.003387059085071087, 0.013365587219595909, 0.020050136372447014, -0.0014345779782161117, -0.022982053458690643, -0.02845579944550991, -0.04035714268684387, -0.016317199915647507, 0.005919970106333494, -0.014350215904414654, -0.01002242136746645, -0.01875242590904236, -0.010373215191066265, -0.012997714802622795, -0.018589891493320465, 0.005299545358866453, -0.02268778160214424, 0.04907310754060745, -0.03627263009548187, 0.02643439546227455, -0.009657255373895168, -0.01631455309689045, -0.002409893088042736, -0.04823054373264313, -0.011481376364827156, 0.03264235705137253, 0.014319597743451595, 0.02594679594039917, -0.05418199300765991, -0.03651275485754013, -0.024168794974684715, 0.04240408539772034, 0.06861501932144165, 0.022793535143136978, -0.004513924475759268, -0.01125380676239729, 0.002225508214905858 ]
The San Mateo County Cal Fire Explorer program is designed for young men and women from ages 14-21 who are interested in learning about a career in the fire service. The Loma Mar Fire Department, established in June 1974, is located on Pescadero Creek Road in Loma Mar, California. The department is made up completely of volunteer firefighters from the community.
[ 0.0059458971954882145, 0.013513312675058842, -0.01635725051164627, 0.002372442279011011, 0.001306955236941576, 0.03821335732936859, -0.008951247669756413, 0.008841532282531261, 0.04242391884326935, 0.022973068058490753, 0.06043760105967522, 0.008038175292313099, 0.020370276644825935, -0.03658250346779823, 0.008407743647694588, 0.0061374567449092865, -0.02913772501051426, 0.007287869229912758, -0.023090554401278496, 0.01307514775544405, -0.010362516157329082, 0.022801879793405533, -0.05598209798336029, -0.033201105892658234, -0.022800160571932793, 0.01354241743683815, 0.04766431078314781, -0.004724440164864063, 0.04488787427544594, 0.03146020323038101, -0.0179001335054636, -0.05685598775744438, 0.04752710834145546, -0.05643152445554733, -0.018290359526872635, -0.012847330421209335, 0.0457279346883297, -0.03708440810441971, -0.013317098841071129, -0.05102289095520973, 0.03045676276087761, -0.01747269369661808, 0.0762198343873024, -0.05564398691058159, -0.04445262998342514, -0.019206969067454338, -0.015188573859632015, -0.036803361028432846, 0.014113683253526688, -0.03534580394625664, 0.014072075486183167, -0.010035502724349499, 0.02553153783082962, 0.010644153691828251, 0.010534342378377914, 0.007973317988216877, 0.006713325623422861, -0.0015068317297846079, -0.015673983842134476, 0.021655255928635597, -0.0057867527939379215, 0.010533691383898258, -0.009401018731296062, -0.041011497378349304, 0.019588492810726166, 0.04924403503537178, -0.027055663987994194, -0.008424236439168453, 0.024464042857289314, -0.003896024078130722, -0.004908151458948851, 0.01274755410850048, -0.03603089600801468, -0.022437021136283875, -0.007324925623834133, 0.003677726723253727, -0.002895407611504197, -0.0006781796109862626, -0.02032621018588543, 0.008751866407692432, 0.018208302557468414, 0.06300576031208038, 0.012939083389937878, 0.024767592549324036, -0.0406356155872345, -0.01868715137243271, 0.004046410787850618, 0.024613358080387115, -0.012300921604037285, -0.009030803106725216, 0.003445929614827037, 0.0860237330198288, 0.011024605482816696, 0.011865680105984211, 0.04902078956365585, 0.030827369540929794, -0.0390932597219944, 0.028589386492967606, 0.03533528745174408, -0.0187503844499588, 0.02472877874970436, 0.03852876275777817, -0.005952785257250071, 0.04355359077453613, -0.03838261961936951, 0.00035865322570316494, -0.02314206026494503, -0.019399084150791168, -0.03221656754612923, -0.07537323236465454, 0.00432487903162837, -0.0034547762479633093, -0.006919998209923506, -0.020124565809965134, -0.004243466071784496, 0.07018182426691055, 0.0017850655131042004, 0.041663456708192825, -0.03136036545038223, 0.016963744536042213, -0.006552866660058498, 0.01667412742972374, 0.05790776386857033, -0.03492921590805054, 0.004851985722780228, -0.014993151649832726, -0.010770967230200768, 0.07231853902339935, -0.03024045191705227, 0.006594768725335598, -0.006033006124198437, -0.03856079652905464, 0.014262069948017597, 0.02540210261940956, -0.011645998805761337, 0.008409283123910427, 0.007865863852202892, 0.016138557344675064, 0.0358855277299881, -0.0426330603659153, 0.03403797373175621, 0.01718868315219879, 0.0010692233918234706, 0.06478548049926758, 0.008989128284156322, 0.01543220691382885, 0.008742746897041798, -0.01025818008929491, -0.028519021347165108, 0.04150540009140968, -0.022305967286229134, 0.019605539739131927, 0.0009280808153562248, 0.022190574556589127, -0.004657938610762358, 0.017693819478154182, -0.004017652943730354, 0.018085326999425888, 0.030837329104542732, 0.027509164065122604, -0.05087548494338989, -0.0005142748123034835, -0.007890235632658005, 0.03641099855303764, 0.004258363042026758, 0.023941926658153534, -0.019645554944872856, -0.027410456910729408, 0.0007909090491011739, -0.04072325676679611, 0.02060152031481266, 0.0009284422849304974, -0.0007086860714480281, 0.010839750058948994, 0.018106576055288315, 0.004109724424779415, 0.050057634711265564, -0.01449363399296999, 0.0034052561968564987, 0.04299577325582504, -0.03252873197197914, -0.021366329863667488, -0.00029838105547241867, 0.05840839445590973, -0.0007421262562274933, -0.006574312224984169, -0.029180649667978287, -0.02323029190301895, -0.04395822435617447, -0.039028894156217575, 0.011827983893454075, 0.012248451821506023, -0.024025246500968933, 0.026877261698246002, 0.042835038155317307, 0.014297843910753727, -0.007227974943816662, -0.016399001702666283, -0.019057372584939003, -0.06836583465337753, -0.012558282352983952, 0.026510899886488914, 0.013030493631958961, 0.00339907337911427, -0.006057873833924532, -0.0036313305608928204, 0.020707856863737106, 0.08817974478006363, -0.04388900101184845, -0.015662921592593193, 0.04496240243315697, 0.01757338084280491, -0.03497179597616196, -0.0016638642409816384, 0.0017677679425105453, -0.0032116451766341925, -0.040325816720724106, 0.05308259651064873, -0.006490676198154688, -0.02714763581752777, -0.003141447901725769, 0.02790590561926365, 0.02952129766345024, 0.04858168214559555, 0.0097219692543149, -0.0006533096893690526, -0.00857535284012556, 0.05466637387871742, -0.033682096749544144, -0.007823001593351364, 0.001692519523203373, 0.03008945658802986, 0.03188936039805412, 0.0431523434817791, 0.03472511097788811, 0.01444108784198761, 0.058936480432748795, 0.047263845801353455, -0.002383187413215637, 0.02645989879965782, 0.016940699890255928, 0.014418230392038822, 0.05087792128324509, 0.02255433239042759, 0.0027313847094774246, 0.05078453570604324, -0.0156934205442667, -0.03786492720246315, -0.03486694395542145, 0.02813897468149662, -0.028071589767932892, 0.04896346107125282, 0.0009605287341400981, 0.03428250178694725, -0.030175458639860153, 0.002853843616321683, 0.02351629175245762, 0.05649123340845108, -0.04856548085808754, -0.01808617077767849, 0.00527747068554163, -0.020995698869228363, 0.004292819648981094, 0.002879578620195389, 0.0073962127789855, 0.023116813972592354, -0.007620326243340969, 0.021032866090536118, -0.01943259686231613, -0.046949490904808044, -0.029099224135279655, -0.055621616542339325, -0.043410178273916245, -0.04164808616042137, -0.06027481332421303, 0.012859405018389225, 0.05104304477572441, -0.026103777810931206, 0.001692641293630004, -0.011839613318443298, -0.004487945232540369, -0.011200865730643272, -0.009754898026585579, 0.03659959137439728, 0.025080326944589615, 0.03132710978388786, -0.02609264850616455, 0.02099345624446869, -0.0038934112526476383, 0.002482752315700054, -0.047297850251197815, -0.014381718821823597, -0.012666246853768826, -0.009974220767617226, 0.03711917996406555, -0.031454455107450485, 0.011493097059428692, -0.011350247077643871, -0.023416072130203247, -0.054267458617687225, 0.028198201209306717, -0.005458691157400608, -0.014190512709319592, -0.004305219743400812, -0.03486161306500435, 0.01569400168955326, 0.030751323327422142, -0.055225539952516556, 0.043521396815776825, 0.05830885469913483, -0.02902444265782833, 0.05115428939461708, 0.03177681192755699, -0.002250473480671644, -0.05608806759119034, 0.04648662731051445, 0.021983101963996887, -0.003220133250579238, -0.03680878505110741, -0.012348346412181854, -0.0027679125778377056, 0.0162506066262722, 0.00041160621913149953, -0.018361041322350502, -0.04436686262488365, 0.07364626973867416, 0.025721056386828423, -0.03689185157418251, 0.012557871639728546, -0.03616207465529442, -0.03373156860470772, -0.04910653457045555, -0.019514581188559532, 0.03345436602830887, 0.043532680720090866, 0.0600544698536396, 0.003075555432587862, -0.020364681258797646, 0.00023839485947974026, 0.03309730812907219, 0.046225808560848236, -0.032992567867040634, 0.03824540972709656, 0.06697791069746017, 0.006693830713629723, 0.002584841102361679, 0.01027745008468628, -0.013721966184675694, -0.005471958313137293, -0.0061902678571641445, -0.01493420172482729, 0.048665910959243774, 0.02702079899609089, 0.006806313060224056, -0.0042432029731571674, 0.06381291151046753, -0.03764431178569794, -0.013111693784594536, 0.002366157714277506, 0.028329215943813324, 0.005889258347451687, 0.0035482144448906183, 0.02319059893488884, 0.008313631638884544, -0.02141781710088253, -0.027256852015852928, 0.01989060826599598, -0.0027926466427743435, 0.021313929930329323, -0.08760078996419907, 0.055415164679288864, -0.0006915265112183988, -0.02000780962407589, 0.022236358374357224, -0.06313100457191467, -0.02761518582701683, 0.04132824391126633, -0.0014506374718621373, 0.0430728904902935, -0.03717822581529617, 0.009553513489663601, -0.018507860600948334, 0.016052065417170525, 0.04070420563220978, 0.017268093302845955, 0.00827063899487257, 0.01650613360106945, -0.016434097662568092, -0.032069966197013855, -0.03172091022133827, 0.007178489118814468, -0.029964232817292213, 0.02909955196082592, -0.010414053685963154, -0.043033815920352936, -0.04323219880461693, 0.05713271349668503, 0.039699796587228775, 0.021710557863116264, -0.01620142161846161, 0.03206009790301323, 0.017954351380467415, 0.02003755047917366, 0.016247741878032684, -0.009282226674258709, 0.0015091458335518837, -0.05405131354928017, 0.04073869064450264, 0.0369393490254879, -0.015232578851282597, -0.009109019301831722, -0.009622297249734402, 0.018791262060403824, 0.035474322736263275, 0.03145892545580864, -0.034189410507678986, -0.033855780959129333, 0.028148433193564415, -0.021799029782414436, 0.052613455802202225, -0.023256277665495872, -0.052945420145988464, -0.032511621713638306, 0.049597226083278656, 0.008011404424905777, -0.06059738248586655, -0.0015966477803885937, -0.034930095076560974, 0.03962952643632889, 0.03576291725039482, 0.006491761654615402, -0.03975437209010124, -0.02299533039331436, -0.025735972449183464, -0.025866147130727768, -0.018666718155145645, 0.0015111436368897557, -0.005887723993510008, -0.005846937652677298, -0.03551391139626503, 0.009760686196386814, 0.031100373715162277, 0.010579275898635387, -0.00002235680221929215, -0.0018378720851615071, 0.0010239146649837494, 0.008433379232883453, 0.020571647211909294, -0.0032975957728922367, -0.04468763247132301, 0.02578004263341427, -0.03360190987586975, 0.03288641571998596, 0.027125149965286255, -0.04539185017347336, 0.014321417547762394, 0.010980176739394665, 0.03269101306796074, 0.030890360474586487, -0.029327644035220146, 0.022795185446739197, 0.0025291701313108206, 0.02817694842815399, -0.05528302490711212, -0.03811658173799515, 0.04878513514995575, -0.027566825971007347, -0.01198852714151144, 0.040107473731040955, 0.0313088558614254, -0.03839278966188431, 0.03436776250600815, -0.003805310232564807, -0.06638340651988983, 0.02414322830736637, -0.034835923463106155, -0.0003530382236931473, -0.03126543015241623, -0.032593101263046265, 0.03959327191114426, -0.04894418269395828, 0.04884016141295433, -0.0200540442019701, -0.011095980182290077, -0.05204109102487564, -0.05803501605987549, 0.0037403444293886423, 0.030804578214883804, 0.013175413012504578, 0.012882746756076813, 0.026356885209679604, -0.007846718654036522, -0.035666197538375854, -0.00836293026804924, 0.04076506942510605, 0.013946793042123318, -0.03866386413574219, -0.011975955218076706, 0.02865176647901535, -0.012513616122305393, 0.022417940199375153, -0.016571680083870888, -0.03128451481461525, 0.01505967229604721, -0.008556895889341831, -0.033625222742557526, -0.04384912922978401, 0.023736346513032913, -0.024724744260311127, -0.030053382739424706, -0.047085024416446686, 0.011764159426093102, 0.010647603310644627, 0.01446273922920227, 0.012177753262221813, 0.01857938803732395, 0.008451689966022968, 0.01653224416077137, -0.02951355278491974, 0.047891873866319656, 0.014094856567680836, -0.06991531699895859, -0.04118756949901581, 0.031460538506507874, -0.006576560903340578, 0.023982979357242584, 0.004461493343114853, -0.02111814357340336, -0.050233062356710434, -0.05677920579910278, -0.001492811250500381, -0.058147042989730835, -0.014885127544403076, -0.031040752306580544, -0.031737055629491806, 0.007005371153354645, 0.034748923033475876, 0.03269263356924057, -0.04261888936161995, 0.007578578311949968, -0.024298107251524925, -0.027602607384324074, -0.02529032900929451, -0.0015671359142288566, -0.04018498957157135, -0.0026227894704788923, -0.004310559015721083, 0.03654004633426666, 0.003888373728841543, 0.013271022588014603, -0.004249444231390953, 0.021204739809036255, 0.006789748091250658, -0.02484762854874134, -0.05921949818730354, -0.041987378150224686, -0.010019981302320957, 0.008068974129855633, 0.01019118633121252, 0.02900199592113495, -0.05724025517702103, 0.025167640298604965, -0.014476894401013851, -0.011577566154301167, -0.012686487287282944, -0.02011697180569172, -0.023967256769537926, -0.001157076214440167, 0.036050815135240555, -0.024423422291874886, 0.03806021809577942, 0.0020262065809220076, 0.050464533269405365, 0.04795338958501816, 0.004811918828636408, -0.022958112880587578, -0.02912294492125511, -0.002102087251842022, -0.0511760413646698, 0.045543745160102844, -0.03724155202507973, -0.017582451924681664, -0.05293896794319153, -0.009177695959806442, 0.028407394886016846, -0.017524518072605133, 0.009003297425806522, 0.05187438800930977, -0.027509616687893867, -0.02658569999039173, -0.06834763288497925, 0.0768512710928917, 0.04158758744597435, -0.0156224574893713, -0.000930305861402303, 0.014514637179672718, -0.05124237760901451, -0.03557705134153366, -0.05839482322335243, -0.0339069664478302, -0.06585069000720978, 0.009597073309123516, 0.07299840450286865, 0.01916860044002533, 0.034805551171302795, -0.011505866423249245, -0.030318358913064003, -0.03546149283647537, 0.03330588340759277, 0.002588431118056178, 0.02791498973965645, 0.03489920124411583, 0.023151854053139687, -0.019574472680687904, 0.04110297933220863, -0.0072540100663900375, -0.003331810934469104, -0.011176502332091331, 0.06308955699205399, -0.017613990232348442, -0.05045360326766968, 0.0021525085903704166, 0.07043252140283585, -0.04224368557333946, -0.04352352023124695, 0.018867766484618187, 0.002641198458150029, 0.025796232745051384, -0.0033317417837679386, 0.019677286967635155, 0.0006146825617179275, -0.0034260181710124016, -0.0035828978288918734, 0.013043486513197422, 0.03919343277812004, 0.025152195245027542, 0.01651083678007126, 0.06142270565032959, -0.03836272656917572, 0.007329622749239206, 0.03319074958562851, -0.005062745418399572, -0.03515084832906723, -0.029715996235609055, -0.010249192826449871, 0.011116474866867065, 0.014537733048200607, 0.031426455825567245, -0.05070812255144119, -0.030940845608711243, 0.0207854975014925, -0.022507265210151672, 0.043792691081762314, 0.005616319365799427, 0.008229115046560764, 0.030020007863640785, -0.03217727690935135, -0.06553637981414795, -0.029023928567767143, 0.03444265201687813, -0.027493083849549294, 0.014053087681531906, -0.062199726700782776, 0.0033373036421835423, 0.03629019483923912, -0.0092915128916502, 0.00781649723649025, -0.05281619727611542, -0.04249558970332146, -0.03082498162984848, -0.062308408319950104, -0.047588225454092026, -0.0298744086176157, -0.011013941839337349, 0.019749240949749947, -0.007320748642086983, -0.038425836712121964, 0.009429619647562504, 0.02667928859591484, -0.04471457377076149, 0.027096187695860863, -0.034190431237220764, 0.02771911211311817, -0.05531330034136772, -0.024515977129340172, -0.04932085797190666, -0.0007968560676090419, -0.004367541056126356, 0.01189417950809002, -0.010513324290513992, 0.02719431184232235, 0.011553717777132988, 0.028844939544796944, 0.04983992874622345, 0.017438272014260292, -0.015967022627592087, -0.04136544093489647, -0.01232986245304346, 0.02771279215812683, -0.02644757181406021, 0.02908381260931492, 0.046728067100048065, -0.007557300850749016, 0.04554608464241028, -0.016504298895597458, -0.013046898879110813, -0.020863234996795654, 0.00032149371691048145, 0.001846727216616273, -0.003946444485336542, -0.0599762499332428, -0.02222486026585102, 0.004074765834957361, -0.03545193374156952, 0.007510327734053135, -0.02364957332611084, -0.002394943032413721, 0.0037897080183029175, -0.011462642811238766, -0.008417678065598011, 0.03339781612157822, -0.007221521809697151, 0.01316255982965231, 0.0085472846403718, 0.04323206841945648, 0.01507446076720953, 0.012300305999815464, 0.00483701890334487, 0.03257691115140915, 0.012116167694330215, -0.004731127992272377, 0.0055723669938743114, 0.01998968794941902, -0.053368616849184036, 0.07324005663394928, -0.012028523720800877, -0.017837299033999443, -0.046030037105083466, -0.0048590535297989845, -0.012109706178307533, 0.040447935461997986, -0.012175235897302628, -0.004310714080929756, 0.029001299291849136, -0.02083045430481434, -0.026089036837220192, 0.0168711356818676, -0.09215709567070007, -0.049969714134931564, 0.005790248513221741, -0.04366930201649666, -0.02589801885187626, -0.021831003949046135, -0.03188444674015045, 0.02122599259018898, -0.0205900389701128, -0.003530198708176613, 0.02756812795996666, -0.005760578904300928, 0.009273852221667767, 0.04575393348932266, -0.023809045553207397, 0.017052732408046722, 0.0007455882732756436, 0.04225117340683937, -0.03206656500697136, -0.0326169990003109, 0.00714831380173564, 0.03151959180831909, 0.016194403171539307, 0.001232233946211636, 0.0008838553330861032, 0.02644537016749382, -0.018691183999180794, 0.005490860436111689, -0.0332753024995327, 0.051972534507513046, 0.004768249578773975, 0.0215825866907835, -0.013660779222846031, 0.016925692558288574, -0.023380685597658157, 0.04903299733996391, -0.0172274149954319, -0.03247179463505745, -0.03952859714627266, 0.011785345152020454, 0.027066556736826897, -0.007284090388566256, -0.005277406889945269, 0.01089815329760313, 0.045250385999679565, -0.03850068151950836, 0.014753701165318489, -0.020252523943781853, 0.050559185445308685, 0.05109672620892525, 0.03440737724304199, -0.003382024122402072, 0.0475519634783268, 0.0445726178586483, 0.0047319247387349606, 0.0033728908747434616, 0.04109828919172287, 0.008646818809211254, -0.02178444154560566, -0.02254459261894226, -0.025023043155670166, 0.022166507318615913, 0.020905187353491783, -0.02438204176723957, 0.00946248322725296, -0.03983648493885994, 0.006581353023648262, -0.026980021968483925, -0.03273572772741318, 0.030375435948371887, -0.04055279120802879, 0.009129342623054981, -0.012418295256793499, -0.025475723668932915, -0.027617068961262703, 0.05346551537513733, -0.005994354374706745, 0.013393918983638287, 0.015204022638499737, 0.05193616449832916, -0.020942503586411476, 0.04933495447039604, -0.0017053628107532859, 0.010129925794899464, -0.032798632979393005, 0.027402358129620552, -0.0002652268740348518, -0.025646498426795006, -0.07343544811010361, -0.018095050007104874, -0.019444599747657776, 0.024133184924721718, 0.000907131761778146, -0.011471040546894073, 0.049830757081508636, -0.03970875218510628, -0.02468978613615036, -0.061293378472328186, 0.02108151838183403, -0.06895424425601959, -0.02198970504105091, 0.0389266163110733, -0.004328947514295578, -0.050877537578344345, 0.053366053849458694, 0.004988667089492083, 0.04449620470404625, 0.017007363960146904, 0.05314472317695618, 0.01262262649834156, 0.04191078618168831, 0.0333859957754612, -0.0805933028459549, -0.0048454818315804005, 0.03871707245707512, 0.0006397838005796075, -0.04964415729045868, -0.0431186743080616, -0.005306432954967022, -0.02083800546824932, 0.014219106175005436, -0.01879606582224369, -0.005279402248561382, 0.0313337966799736, -0.028571724891662598, -0.058042727410793304, 0.0011035277275368571, 0.04548913240432739, -0.03901474177837372, -0.005933148320764303, -0.012948949821293354, 0.042504310607910156, 0.0013022249331697822, 0.004823747090995312, -0.031131038442254066, -0.014712860807776451, -0.0291038416326046, -0.028066208586096764, 0.04302195459604263, -0.02014993131160736, -0.030134765431284904, -0.03215525299310684, -0.013997631147503853, -0.02111280895769596, 0.007963971234858036, -0.026274673640727997, -0.05086423084139824, 0.016618600115180016, 0.04583287611603737, 0.0033587776124477386, 0.02793189510703087, -0.03183490410447121, -0.03825564682483673, 0.06835579127073288, 0.05385321378707886, -0.010302603244781494, 0.03248811513185501, 0.06406005471944809, -0.005513065494596958, 0.04012184590101242, -0.029256097972393036, 0.0134936748072505, -0.01650594361126423, -0.016863495111465454, -0.03760266304016113, 0.010289966128766537, -0.044623203575611115, -0.061097171157598495, 0.031336620450019836, 0.017824845388531685, 0.017008120194077492, -0.02886211685836315, -0.0714607685804367, -0.028277000412344933, -0.04021704941987991, 0.003085165051743388, -0.07324995845556259, 0.017746906727552414, 0.018070345744490623, -0.017677024006843567, 0.01391145121306181, -0.052921079099178314, 0.141374409198761, 0.03402712196111679, 0.04197860509157181, 0.026950163766741753, 0.02166253887116909, 0.05343257635831833, 0.03993093594908714, -0.00506087439134717, -0.02942887879908085, -0.037935540080070496, 0.03869045898318291, -0.010578050278127193, 0.0331384651362896, -0.0002025619032792747, 0.015403594821691513, 0.07214686274528503, -0.02725946716964245, 0.016262495890259743, 0.03267073258757591, -0.024234358221292496, -0.04503989592194557, 0.033631566911935806, -0.008044092915952206, 0.026111764833331108, -0.013369332067668438, 0.01881568878889084, 0.01933402381837368, -0.040548358112573624, 0.015005386434495449, -0.021874597296118736, 0.010964744724333286, -0.06120164319872856, 0.028031663969159126, 0.018323956057429314, -0.03130272030830383, 0.034811485558748245, -0.008695912547409534, -0.015139201655983925, -0.018253544345498085, 0.04228786379098892, -0.03538338094949722, 0.0291586946696043, 0.021837864071130753, -0.020121704787015915, 0.013149093836545944, 0.029038993641734123, -0.03053414635360241, -0.00835688691586256, 0.0021141034085303545, -0.030026962980628014, 0.058132048696279526, -0.04718722030520439, 0.031413063406944275, 0.015548733063042164, -0.04155001789331436, 0.020857391878962517, 0.04600897431373596, -0.020093047991394997, -0.0258847214281559, -0.0011223477777093649, 0.03308109939098358, 0.003697663312777877, -0.040571942925453186, 0.029609067365527153, -0.04198941960930824, -0.002826157258823514, 0.022248277440667152, -0.021144026890397072, 0.0028074446599930525, -0.02178078517317772, -0.021035781130194664, 0.0016779176658019423, 0.0043271491304039955, -0.01813870668411255, 0.03824704512953758, 0.05124172940850258, -0.00003579123585950583, 0.02660159021615982, 0.02108480967581272, -0.007689286023378372, 0.004613025113940239, -0.03140269219875336, -0.0011474263155832887, 0.011038834229111671, 0.006369908340275288, 0.02459796704351902, -0.0388382151722908, -0.040505051612854004, -0.00975667405873537, 0.055861715227365494, 0.03156724199652672, 0.018324416130781174, -0.033289555460214615, -0.004761455114930868, -0.0006938969017937779 ]
Explore the table of the master cheesemaker, Roland Barthelemy. A creative table full of surprises for your palate! Discover our suggestion of wines to pair with your favourite dishes. How to enjoy your post-holiday detox with Bordeaux wines!
[ -0.0007826458313502371, -0.0012653222074732184, -0.0036356921773403883, -0.0021852392237633467, -0.026077555492520332, -0.0093471584841609, -0.02324110083281994, 0.039603255689144135, 0.00991983525454998, 0.04984530806541443, 0.009039744734764099, 0.02141951210796833, -0.006242820993065834, -0.025457045063376427, -0.0025283724535256624, -0.0038465142715722322, -0.03483424335718155, -0.03919705003499985, -0.04547770321369171, -0.010252903215587139, 0.0020970292389392853, 0.030361739918589592, -0.08231955766677856, -0.024829253554344177, -0.022528912872076035, 0.03388158231973648, -0.005292796529829502, -0.023440303280949593, 0.06814023107290268, 0.059974305331707, -0.04223359003663063, -0.024735398590564728, 0.036376964300870895, -0.04218241572380066, -0.012525521218776703, -0.04035775735974312, 0.02849321812391281, -0.03263874724507332, -0.012897844426333904, -0.043702997267246246, 0.016075756400823593, -0.03374386951327324, 0.02623378112912178, -0.023393169045448303, -0.016995040699839592, 0.005908775608986616, -0.01734807901084423, -0.0208031814545393, 0.03577158600091934, -0.047013767063617706, 0.018932541832327843, -0.01598002202808857, 0.011451768688857555, -0.01609688811004162, 0.021869074553251266, 0.03525093197822571, -0.019668452441692352, -0.001956143183633685, -0.029901644214987755, 0.04302205890417099, 0.016913456842303276, -0.024094240739941597, 0.018479084596037865, -0.05695979669690132, 0.025447046384215355, 0.026608102023601532, 0.009005106054246426, -0.02582148090004921, -0.0003653622989077121, -0.023798206821084023, 0.0009411039645783603, -0.006204890552908182, -0.003181725274771452, -0.0055233752354979515, -0.021114323288202286, -0.001866804203018546, -0.009061605669558048, -0.007794374134391546, -0.021010348573327065, -0.005746959708631039, 0.034148454666137695, 0.04130113497376442, -0.024718934670090675, 0.036863718181848526, -0.05216503143310547, -0.03104954957962036, 0.013925515115261078, 0.034191083163022995, -0.002633438678458333, 0.014773513190448284, 0.008256702683866024, 0.045938387513160706, 0.004372927825897932, -0.03765837103128433, 0.03448780998587608, 0.014854136854410172, -0.04753384739160538, 0.04994252324104309, 0.037113986909389496, 0.015171816572546959, 0.012113045901060104, 0.019635053351521492, -0.010296816937625408, 0.023875642567873, -0.024919509887695312, 0.0016127688577398658, 0.006162233185023069, 0.005169997923076153, -0.027777710929512978, -0.025672191753983498, -0.015393450856208801, -0.04947219416499138, 0.023384397849440575, 0.01620609313249588, -0.0019040179904550314, 0.05200888216495514, 0.004718744195997715, 0.035231512039899826, -0.040238793939352036, 0.00669858930632472, 0.0014239847660064697, -0.019527077674865723, 0.03790264204144478, -0.017216429114341736, 0.009470763616263866, -0.056094665080308914, -0.020505446940660477, 0.050486162304878235, -0.03440647944808006, 0.0020273206755518913, 0.02801061049103737, -0.05814891308546066, -0.0030780602246522903, 0.010836290195584297, -0.025228532031178474, 0.029442746192216873, -0.03962518274784088, 0.0231515821069479, 0.0018937509739771485, -0.06919735670089722, 0.07337163388729095, 0.0026813121512532234, 0.021223433315753937, 0.08627726882696152, -0.003535764291882515, 0.04240025207400322, -0.009067142382264137, 0.0006609673146158457, -0.049781620502471924, 0.05252193287014961, -0.02003752812743187, 0.007649529725313187, -0.009399152360856533, 0.04039181023836136, -0.02169598825275898, 0.004211976192891598, -0.013097868300974369, -0.016493473201990128, 0.03361324965953827, 0.033841896802186966, -0.054417096078395844, 0.01678415946662426, -0.0064009022898972034, 0.042353224009275436, 0.005132781807333231, 0.03995383903384209, -0.05637191981077194, 0.002650431590154767, -0.01805930957198143, -0.046070344746112823, -0.013574833981692791, 0.004361871629953384, -0.0057688308879733086, 0.008176897652447224, 0.032533932477235794, 0.02020297385752201, 0.04846233129501343, -0.012298760935664177, 0.046599533408880234, 0.03232864663004875, -0.027826067060232162, 0.015233083628118038, -0.019054871052503586, 0.036600276827812195, 0.033318690955638885, -0.005528425332158804, -0.0036588418297469616, -0.02537550777196884, -0.032036181539297104, -0.0376926064491272, -0.02166735753417015, 0.03720716014504433, -0.0285033006221056, 0.03290180861949921, 0.008657747879624367, 0.0027789275627583265, -0.03308045491576195, 0.0035924192052334547, -0.006818980909883976, -0.04522053524851799, -0.041181374341249466, 0.05362314730882645, -0.014862245880067348, 0.03358208388090134, 0.0330972783267498, -0.04022945836186409, 0.02752307802438736, 0.06756039708852768, -0.0465095154941082, 0.00898703746497631, 0.023669295012950897, -0.004743456840515137, -0.001515075797215104, -0.009664622135460377, 0.008488538675010204, -0.03916587308049202, -0.03412836417555809, 0.039767421782016754, 0.0024093580432236195, -0.0050515346229076385, 0.031966932117938995, 0.016728632152080536, 0.048089399933815, 0.0515570268034935, -0.025565702468156815, 0.016098856925964355, 0.002068073721602559, 0.06861113756895065, -0.01547950878739357, 0.005603364668786526, -0.05352659150958061, 0.049339067190885544, 0.04849794879555702, 0.07505068928003311, 0.06006936356425285, -0.00029293206171132624, 0.04017135873436928, 0.018170066177845, 0.003406928386539221, 0.008836721070110798, 0.015752041712403297, -0.007583749480545521, 0.025620635598897934, 0.019535552710294724, 0.002286463975906372, 0.03016417846083641, -0.019269105046987534, -0.015908177942037582, -0.010036681778728962, 0.030686931684613228, 0.008615593425929546, 0.02662283182144165, 0.027290740981698036, 0.007910547778010368, -0.05065881833434105, 0.014971043914556503, 0.030737850815057755, 0.06760114431381226, 0.012285717763006687, 0.0033494995441287756, -0.015753591433167458, 0.022203028202056885, -0.020933186635375023, 0.024219626560807228, 0.018925480544567108, 0.034023307263851166, 0.010822037234902382, 0.05640241503715515, 0.01137061882764101, -0.03914405405521393, -0.029201963916420937, -0.062370169907808304, -0.03533844277262688, -0.027257205918431282, -0.04756356403231621, -0.010581816546618938, 0.04366040229797363, -0.005431773141026497, 0.025572502985596657, 0.04600919783115387, 0.002835181774571538, -0.027978386729955673, -0.009280463680624962, 0.07411140948534012, 0.04973699897527695, 0.036509450525045395, -0.023702222853899002, 0.01907963678240776, -0.031742069870233536, 0.020391149446368217, -0.028607478365302086, 0.0035918313078582287, -0.02385549433529377, -0.0016722767613828182, 0.040510788559913635, -0.010082187131047249, -0.00944583397358656, -0.018703414127230644, -0.006945591885596514, -0.05460726469755173, -0.039201799780130386, 0.004814783111214638, -0.008208160288631916, 0.027991583570837975, -0.049310535192489624, 0.027060875669121742, 0.02432062104344368, -0.012124447152018547, 0.03687851130962372, 0.024880731478333473, -0.03217834234237671, 0.030891669914126396, 0.03214311599731445, -0.005783950909972191, -0.05790163576602936, 0.030847597867250443, 0.04515126347541809, 0.02068936824798584, -0.008009516634047031, -0.0023681973107159138, -0.04081283509731293, 0.005704822950065136, 0.015235058031976223, -0.02336846850812435, -0.030113274231553078, 0.046352606266736984, 0.005095676984637976, -0.07898090034723282, 0.023029206320643425, -0.0190515648573637, -0.028747403994202614, -0.013783324509859085, -0.021606305614113808, 0.010016227141022682, -0.0030504108872264624, 0.031845808029174805, 0.011463813483715057, -0.0362824909389019, 0.017538050189614296, 0.012081101536750793, 0.05298630893230438, -0.033855799585580826, 0.027577217668294907, 0.073826365172863, -0.00786301214247942, 0.010148178786039352, 0.02633650042116642, -0.012197965756058693, -0.018419137224555016, -0.007096949964761734, 0.0016339035937562585, 0.009620959870517254, 0.04354243725538254, 0.0030451156198978424, 0.047221388667821884, 0.06838326156139374, -0.03257351368665695, -0.007354597561061382, 0.02037532441318035, 0.043543461710214615, 0.016464365646243095, -0.007292989641427994, 0.03277713432908058, 0.007014770992100239, -0.027011731639504433, -0.042023103684186935, 0.02414601854979992, 0.00902441143989563, 0.05591044947504997, -0.0600038506090641, 0.03708064183592796, 0.036936577409505844, -0.026205500587821007, 0.04229564964771271, -0.06372418254613876, -0.0008600261062383652, 0.025324413552880287, -0.016833625733852386, 0.020765969529747963, -0.01972726359963417, 0.012840510345995426, -0.03398313373327255, -0.0038895888719707727, 0.04513612389564514, -0.0017802856164053082, 0.038442328572273254, -0.0411657877266407, 0.01486294250935316, -0.00024880823912099004, 0.004091127309948206, -0.02504492737352848, -0.04228774830698967, 0.02230558544397354, 0.0017416157061234117, -0.029029419645667076, -0.03286467865109444, 0.05150156468153, 0.02756478823721409, 0.013493555597960949, -0.04349973052740097, 0.04050619900226593, 0.03157583624124527, 0.014143154956400394, 0.03136587515473366, -0.021197473630309105, 0.035283155739307404, -0.03403405845165253, 0.04416859894990921, 0.03797157108783722, -0.03313922509551048, -0.00920486357063055, -0.030044037848711014, -0.033487141132354736, 0.012981114909052849, 0.036018867045640945, -0.026974992826581, -0.03749572113156319, 0.02749268151819706, -0.010499164462089539, 0.003896061098203063, -0.02875819243490696, -0.0054028392769396305, 0.009864576160907745, 0.012107559479773045, 0.04476262256503105, -0.043551892042160034, -0.023727672174572945, -0.027861855924129486, 0.05916951224207878, 0.0647154152393341, -0.006078297272324562, -0.039001334458589554, -0.02305837906897068, -0.03848506510257721, -0.015317500568926334, 0.016151973977684975, 0.057665515691041946, -0.03122551739215851, 0.02034629136323929, -0.031020697206258774, 0.01841370388865471, 0.027091005817055702, -0.004097940865904093, -0.011431286111474037, 0.04319702461361885, 0.0370083786547184, 0.008617253974080086, 0.047368373721838, 0.009264964610338211, -0.010754733346402645, -0.014596529304981232, -0.06276922672986984, 0.0034164488315582275, 0.00038527403376065195, -0.0003565131628420204, 0.020127443596720695, -0.017375808209180832, 0.03199949860572815, 0.018024398013949394, -0.036660488694906235, 0.014804049395024776, -0.0036500960122793913, 0.007133721373975277, -0.03965194150805473, -0.032040756195783615, 0.08342930674552917, -0.010326405055820942, -0.03952617943286896, 0.030475758016109467, 0.04151768609881401, -0.0013120566727593541, 0.010249507613480091, 0.05639730393886566, -0.03846106678247452, 0.019296130165457726, -0.008889840915799141, 0.024761280044913292, -0.008790859021246433, -0.032171666622161865, 0.006897109095007181, -0.03684181347489357, 0.01661975495517254, 0.001194214215502143, -0.007106952369213104, -0.03435212001204491, -0.06439201533794403, -0.022484153509140015, 0.0011601545847952366, -0.020800862461328506, -0.0018237398471683264, -0.011026585474610329, -0.03208618238568306, -0.010510961525142193, -0.0033736545592546463, -0.014567345380783081, 0.0032445117831230164, -0.009783231653273106, 0.050771333277225494, -0.003840123303234577, 0.022875657305121422, -0.010058878920972347, -0.007359681650996208, -0.0289751049131155, -0.021060410887002945, -0.025787509977817535, -0.03870026767253876, -0.057137779891490936, 0.0006508893566206098, -0.017860302701592445, -0.0059245890006423, -0.021128086373209953, -0.013925780542194843, -0.02950703725218773, 0.008537116460502148, 0.022000180557370186, 0.006855905521661043, 0.0019519951893016696, -0.006156604271382093, -0.01296421978622675, 0.05601160228252411, 0.009941223077476025, -0.04342593997716904, -0.037318747490644455, 0.05575459077954292, -0.02772272191941738, 0.04591292887926102, -0.015142292715609074, -0.023275859653949738, -0.014096259139478207, -0.06986872851848602, -0.03281721472740173, 0.0014980395790189505, -0.01690482906997204, -0.035129182040691376, -0.05152633786201477, -0.03646058961749077, 0.02907448820769787, 0.012636623345315456, -0.003831824753433466, 0.03434585779905319, -0.03274158388376236, 0.0009815078228712082, -0.01630694977939129, -0.019490525126457214, -0.05275435000658035, 0.0021548301447182894, -0.031963247805833817, 0.028201663866639137, -0.005455377511680126, 0.030023183673620224, 0.019675394520163536, 0.004225708078593016, 0.031066913157701492, -0.040621817111968994, -0.02564053423702717, -0.03630600869655609, -0.017935246229171753, 0.018367985263466835, -0.0007396605215035379, 0.019941411912441254, -0.03908170387148857, 0.046673573553562164, -0.03527219966053963, 0.006215529050678015, -0.021289996802806854, -0.016214314848184586, -0.02590109035372734, 0.008838437497615814, 0.05571229010820389, -0.05085594579577446, -0.010646338574588299, -0.014035707339644432, 0.05213995277881622, 0.038062602281570435, -0.022824853658676147, -0.021570313721895218, -0.03279399499297142, -0.051130261272192, -0.06756898760795593, 0.013691272586584091, -0.03619629889726639, -0.025273969396948814, -0.04179076850414276, 0.015135198831558228, 0.05038601532578468, 0.019343595951795578, 0.036761101335287094, 0.059207018464803696, -0.021686503663659096, -0.03472653031349182, -0.046544477343559265, -0.006742219440639019, 0.04351605847477913, -0.01641455665230751, -0.011757154949009418, -0.017633164301514626, -0.04309087246656418, 0.02490556240081787, -0.042811594903469086, -0.040483634918928146, -0.051715366542339325, 0.016924820840358734, 0.07507362216711044, -0.02639925666153431, 0.036721374839544296, -0.022345390170812607, -0.06544110178947449, -0.04892214015126228, 0.04230644926428795, 0.012416661716997623, 0.020522015169262886, 0.05828811600804329, -0.007837911136448383, -0.022707713767886162, 0.013087822124361992, -0.0014341608621180058, -0.018451951444149017, -0.061099980026483536, 0.06410647928714752, 0.03249609097838402, -0.0596892312169075, -0.010772270150482655, 0.05825839564204216, -0.06697945296764374, -0.03708169609308243, 0.008616810664534569, 0.025372780859470367, -0.0021732011809945107, -0.04263884946703911, 0.010060972534120083, -0.007216619327664375, 0.02501940354704857, 0.04096018522977829, 0.03448154777288437, -0.04143170639872551, 0.06544976681470871, 0.031593892723321915, 0.023305749520659447, -0.06339269131422043, -0.007171527948230505, 0.023503586649894714, -0.02012132667005062, -0.042029548436403275, -0.033621709793806076, -0.01774693839251995, -0.008082207292318344, 0.00014852455933578312, 0.03217848762869835, -0.03479532524943352, -0.010615168139338493, 0.017226725816726685, 0.013155654072761536, 0.029365915805101395, 0.004807105753570795, -0.012094659730792046, 0.03680295869708061, -0.019387349486351013, -0.02415754459798336, -0.03870125114917755, 0.004552890546619892, 0.00828317180275917, 0.021850278601050377, -0.05445174127817154, 0.013069750741124153, 0.04382357746362686, 0.009318836964666843, -0.010309075936675072, -0.03964053839445114, -0.06321373581886292, -0.05760730803012848, -0.042864568531513214, -0.04111343249678612, -0.0313454270362854, -0.015306917019188404, 0.015955567359924316, 0.013921761885285378, -0.03440308943390846, 0.0061709280125796795, -0.0064323944970965385, -0.021855805069208145, 0.005758979823440313, -0.006931426003575325, 0.04296829551458359, -0.02732333354651928, -0.06578177958726883, -0.010844049975275993, 0.018555855378508568, -0.024803441017866135, 0.012186984531581402, -0.007686451077461243, 0.004783523268997669, 0.011950859799981117, 0.028418222442269325, 0.007307148538529873, 0.031927190721035004, -0.010576334781944752, -0.03584576025605202, -0.009547307156026363, 0.01693497784435749, -0.028649743646383286, 0.030284438282251358, 0.03511843830347061, -0.008973686955869198, 0.04803510755300522, 0.009166889823973179, -0.019448209553956985, -0.03958314657211304, 0.00021957122953608632, 0.002777696819975972, -0.001295034191571176, -0.05798880755901337, -0.01869608834385872, -0.030604781582951546, -0.021557359024882317, 0.03712626174092293, -0.014151319861412048, 0.016298046335577965, -0.013837724924087524, 0.011861661449074745, -0.018781041726469994, 0.06363480538129807, -0.009497346356511116, 0.05447377637028694, 0.016962774097919464, 0.02551870234310627, -0.01476352009922266, -0.03129095956683159, 0.020160431042313576, 0.010308264754712582, 0.013760190457105637, -0.02191588655114174, -0.029379086568951607, 0.021931765601038933, -0.009336943738162518, 0.04476923495531082, -0.00495608476921916, -0.007205368485301733, -0.032228175550699234, -0.01604408025741577, 0.021548250690102577, 0.03208906203508377, 0.016398977488279343, -0.014113513752818108, -0.012331897392868996, -0.01189068891108036, -0.06308023631572723, -0.013966523110866547, -0.03075319528579712, -0.016255559399724007, 0.028219610452651978, -0.03250443935394287, -0.01333918608725071, -0.0015815896913409233, -0.017423078417778015, 0.009489519521594048, -0.021559083834290504, 0.014650532975792885, -0.026244666427373886, 0.05132031440734863, 0.0000987511666608043, 0.06201375648379326, 0.014718797989189625, -0.030237464234232903, 0.00196566479280591, 0.05311628058552742, -0.047060851007699966, -0.030921274796128273, 0.05265682190656662, 0.02279512956738472, 0.021614322438836098, 0.0029380018822848797, -0.002154536312445998, 0.019373735412955284, 0.011585394851863384, -0.004455271176993847, 0.004128511995077133, 0.01443942729383707, 0.013191869482398033, 0.038340047001838684, -0.02600647136569023, 0.0026613392401486635, -0.06477154791355133, 0.04699163883924484, -0.0313110426068306, -0.006204680539667606, -0.025206994265317917, 0.0493868850171566, 0.039382774382829666, -0.010392832569777966, 0.05379205197095871, 0.019223295152187347, 0.05479149520397186, -0.05838483199477196, 0.00646060798317194, 0.021669086068868637, 0.007620262447744608, 0.03568478301167488, 0.018671449273824692, 0.00047085521509870887, 0.03604627773165703, 0.03858431801199913, 0.005881164222955704, 0.009700276888906956, 0.06000128388404846, 0.023651277646422386, -0.0068142530508339405, 0.02083255536854267, -0.03508926182985306, 0.020104894414544106, 0.010015936568379402, -0.001985092181712389, 0.017606139183044434, -0.01628980226814747, 0.0024224265944212675, -0.014977142214775085, -0.026750411838293076, 0.03905439004302025, -0.032766394317150116, 0.021841445937752724, 0.0002556763356551528, -0.011733811348676682, 0.003419540822505951, 0.03891073539853096, 0.010763783007860184, 0.012530327774584293, 0.016768425703048706, 0.021729260683059692, -0.013399341143667698, 0.0390285961329937, 0.0037394091486930847, -0.0014203280443325639, -0.02997562661767006, 0.0421619638800621, -0.024785595014691353, 0.01905740797519684, -0.03148375451564789, 0.008452332578599453, -0.02532220631837845, 0.015000825747847557, -0.02902740053832531, -0.04173191264271736, 0.0486605130136013, -0.036306459456682205, -0.012436186894774437, -0.06099698320031166, 0.03103398159146309, -0.020627785474061966, 0.0005211189272813499, 0.02085624448955059, 0.0020691079553216696, -0.024448782205581665, 0.03675825148820877, -0.009901268407702446, 0.05288935825228691, 0.010046069510281086, 0.061263419687747955, -0.004441408906131983, 0.011712851002812386, 0.04384282976388931, -0.020463058724999428, -0.04795369133353233, 0.01592499390244484, -0.005006336607038975, -0.028790051117539406, -0.007152095437049866, -0.029248597100377083, -0.010242719203233719, -0.046284839510917664, -0.04629327356815338, 0.009691079147160053, 0.04087083041667938, -0.01101912371814251, -0.03323810175061226, -0.01956896111369133, 0.04192374646663666, -0.04884843900799751, 0.022494297474622726, 0.0017827919218689203, 0.005850828252732754, -0.016124946996569633, 0.016772478818893433, -0.057499296963214874, -0.03994133695960045, -0.015713173896074295, -0.04422470182180405, 0.022298313677310944, -0.03398054838180542, -0.029847277328372, -0.0423358753323555, -0.031517162919044495, -0.00853000394999981, -0.016746658831834793, -0.05524000898003578, -0.03742247447371483, 0.03897839039564133, 0.02497929520905018, -0.009520182386040688, -0.010702859610319138, -0.0324891172349453, 0.025544924661517143, 0.037054166197776794, 0.03395439311861992, 0.004188967868685722, 0.032711222767829895, 0.048303425312042236, -0.01722898706793785, 0.035472553223371506, -0.02705700881779194, 0.04250418394804001, -0.006718150805681944, -0.01746600866317749, -0.019133396446704865, 0.019834166392683983, -0.0032159192487597466, -0.06985483318567276, 0.03608429431915283, 0.005292450077831745, 0.014147914946079254, -0.010602612979710102, -0.08414433896541595, 0.008645485155284405, -0.033684905618429184, -0.011037880554795265, -0.06533176451921463, 0.02462492510676384, 0.0109335258603096, -0.01574910804629326, -0.023332389071583748, -0.07622964680194855, 0.1526683121919632, 0.04247058928012848, 0.04645073786377907, 0.006832468323409557, 0.002142725046724081, 0.040066953748464584, 0.024793006479740143, -0.014780141413211823, 0.0003459393628872931, -0.02322365716099739, 0.052792973816394806, 0.010996167548000813, 0.03625843673944473, 0.013059835880994797, 0.040318168699741364, 0.05268968641757965, -0.02793053537607193, 0.03131342679262161, -0.0015333720948547125, -0.04824318364262581, -0.048791319131851196, 0.021776003763079643, -0.0011641014134511352, -0.0029523384291678667, -0.012997627258300781, 0.01220410130918026, 0.02613459900021553, -0.0541456937789917, -0.03308134526014328, -0.03269343078136444, -0.00047785943024791777, -0.03409194573760033, 0.03945688530802727, -0.0010613992344588041, -0.051584139466285706, 0.042526036500930786, 0.009077895432710648, -0.041547924280166626, 0.005883965641260147, 0.058818519115448, -0.027193179354071617, -0.00949657429009676, 0.034792713820934296, -0.018602484837174416, 0.02943740226328373, 0.02461225539445877, -0.0414469875395298, 0.011968308128416538, 0.006756231188774109, -0.01647614873945713, 0.04842349886894226, -0.04578092321753502, 0.028414582833647728, -0.04780165106058121, -0.016445742920041084, 0.006949577946215868, 0.009512240998446941, -0.029636738821864128, -0.015656622126698494, 0.012267515994608402, 0.0026306374929845333, -0.0024350080639123917, -0.02130383625626564, -0.015130080282688141, -0.028676725924015045, -0.015050077810883522, 0.05084184184670448, 0.016101732850074768, -0.010501603595912457, -0.0048643420450389385, 0.007830117829144001, -0.01076516229659319, -0.016569115221500397, -0.04696688801050186, 0.014405768364667892, 0.049308568239212036, -0.017887359485030174, 0.012690870091319084, 0.02624453231692314, -0.04046490043401718, 0.0034484758507460356, -0.00992233119904995, 0.0032599628902971745, -0.009312604553997517, 0.013259236700832844, 0.06072743609547615, -0.05120173841714859, -0.031608037650585175, -0.0222775898873806, 0.045406632125377655, 0.033619679510593414, 0.01997574418783188, -0.0030272614676505327, 0.01762121543288231, 0.02418622002005577 ]
Tuesday, January 12, 2021 About Us Subscription Contact Us Privacy Policy Timera Media website A Heil Of A Laugh: Jokes And Humor In The Third Reich May 11, 2019 Jay Hemmings, Guest Author A column of German forces in Paris. Erichvoned - CC BY-SA 4.0 Sometimes, in the worst of situations, all you can do is laugh. Humor and laughter are two things that are central to being human. Even in the most inhuman of places, where darkness reigns supreme and the world seems to have been turned upside down (places like Nazi Germany during WWII, for example), people didn't lose their capacity to appreciate laughter and jokes. Indeed, sometimes laughter was the only thing that allowed people to cope with the reality of living through such a time in history. Despite long-standing stereotypes about Germans being serious, humorless people, humor has occupied an important position in German culture for centuries. German Corporal with armored destruction badge. Bundesarchiv Bild 101I-300-1897-10A / CC BY-SA 3.0 de The Nazi Party coming to power in 1933 may have darkened the national mood, but it didn't stop people making jokes and laughing. It did, however, change what they joked and laughed about – or, put another way, what they were and weren't allowed to joke about. Because of the severely authoritarian and strict nature of the Nazi Party, it's easy to assume that all forms of mockery or caricatures of Nazis and prominent Nazi Party members were immediately banned in Nazi-era Germany. This wasn't the case – not initially, anyway – and in the early part of the 1930s, a number of German publications openly mocked Hitler and the Nazis. Hitler, at the window of the Reich Chancellery, receives an ovation on the evening of his inauguration as chancellor, 30 January 1933.Photo: Bundesarchiv, Bild 146-1972-026-11 / Sennecke, Robert / CC-BY-SA 3.0 In fact, weirdly enough, in 1933, Hitler's personal secretary, Ernst "Putzi" Hanfstaengl, published a book of Hitler caricatures consisting of mocking images of Hitler taken from various publications around the world. The purpose of this book of Hitler caricatures was, however, to show how "wrong" the rest of the world was in their mockery of the Führer. Ernst Hanfstaengl with Hitler and Göring, 1932. Bundesarchiv, Bild 102-14080 / CC-BY-SA 3.0 de Various jokes about Hitler and the Nazis did the rounds among the German populace in the first half of the 1930s too, often portraying Hitler and his Nazis as thick-headed goons and loudmouth buffoons. In 1934, however, a year after Hitler took power, his regime started to crack down on mockery of the Nazi Party and its leaders. This was the case in published formats, at least; verbal jokes still circulated among the general populace about the party members. One which was quite popular described Hitler visiting a lunatic asylum, in which each patient salutes him with a "Heil Hitler!" except for one, who refuses to do so. Hitler asks him why, and the man replies, "I'm the doctor here, I'm the only one who isn't crazy!" Hitler Salutes soldiers. Bundesarchiv – CC-BY SA 3.0 In another case, a circus owner in the city of Paderborn trained his chimpanzees to do the Nazi salute every time they saw someone in a military uniform. While many people found this hilarious, when the Nazis found out they ordered him to make the chimps stop at once or they would be dispatched. Even though openly mocking the Nazi Party and its leaders was banned after 1934, many people continued to do so. One of them, German comedian Werner Finck, would go so far as calling out Gestapo informers in his audience and asking them if he was speaking slowly enough for them to write down everything he said. Finck in a comedy cabaret, 1937. Photo: Willy Pragher / CC BY 3.0 As a consequence, in 1935, Finck was interned in Esterwegen concentration camp for six weeks as punishment for continually mocking the Nazi regime. But that didn't stop him. Even at the camp, he continued to tell jokes, telling his fellow camp members not to be afraid of laughing – after all, they were already in the camp, what else could be done to them? Finck was freed after a couple of weeks, but he continued to joke about the Nazis. When he was arrested again, he was given the choice of joining the Wehrmacht or going to prison. He chose to join the army, and ended up being awarded an Iron Cross for his actions on the Eastern Front. Werner Finck As the war dragged on, the Nazis themselves tried to use humor to lift the mood of the public. The regime sponsored a number of comedy shows, humorous films, and comedy cabarets to try to keep people's spirits up. Many people though, found little to laugh about in Nazi Germany, and some of those who made a profession out of laughter ended up paying the ultimate price for crossing lines that the Nazi Party decreed could not be crossed. German artist Erich Ohser got into a lot of trouble over his anti-Nazi drawings. After being banned from working, he began (on the surface, at least) to toe the party line by drawing caricatures that mocked the British and the Soviets. But in his private life, he continued to mock the Nazis. Erich Ohser. Photo: Bundesarchiv, Bild 146-2003-0037 / CC-BY-SA 3.0 de Unfortunately, a neighbor overheard one of his anti-Nazi conversations with a friend and reported him to the Gestapo. Ohser took his own life before the trial started, and his friend was executed in 1944. Read another story from us: The Rise of the Third Reich Details the Life of German Citizens Humor and jokes were in short supply during the last, terrible years of the war. After it was finally over, laughter returned … slowly. After a few years, though, comedy and jokes had found their place in German society once again, and people were once more able to laugh and joke openly, despite the darkness of the recent past. Good Question: Did Flamethrowers From WW2 Explode When Shot? Sleeping with the enemy: The Collaborator Girls of WWII in images Repelled 30 Taliban: 400 Rounds, Launched 17 Grenades, Detonated a Mine, and Used His Tripod as a Weapon The 'Huey' – Legendary Workhorse of Vietnam War in 30 Pictures Vice Admiral Stockdale: "Hanoi Hilton" Beats His Face With a Stool, Cuts His Scalp And Wrists to Stop North Vietnamese Propaganda Attempts Clint Eastwood's MP40 Movie Prop Is Turned In To Police Fort Drum, The Unsinkable Concrete 'Battleship' of Manila Bay Amazing Story Of Captain Charles Upham, The Only Combat Soldier To Be Awarded The Victoria Cross Twice
[ -0.004374814219772816, -0.011637941002845764, 0.0018513536779209971, -0.012199747376143932, -0.012398540042340755, -0.022878572344779968, -0.0432397797703743, 0.01573886349797249, -0.03144530579447746, 0.01683463528752327, -0.0010493879672139883, -0.008315889164805412, 0.01807573437690735, -0.044707491993904114, 0.015439866110682487, -0.006510498002171516, -0.009998008608818054, -0.035122375935316086, -0.005097999237477779, -0.008518200367689133, 0.011872022412717342, -0.04018297791481018, -0.054408103227615356, -0.008748962543904781, 0.0007038842886686325, 0.06818220764398575, 0.022104792296886444, 0.011315306648612022, 0.07013916224241257, 0.04271630942821503, -0.0034692396875470877, -0.047723058611154556, 0.023782795295119286, -0.07290978729724884, 0.005749848671257496, -0.036969803273677826, 0.0455656424164772, -0.04380868747830391, 0.003950440790504217, -0.0201845895498991, -0.007562040351331234, -0.03290873020887375, 0.046268280595541, -0.020197339355945587, -0.04653148353099823, -0.007104623131453991, -0.017333514988422394, 0.0003823273000307381, 0.005014702677726746, -0.035745635628700256, 0.00984909851104021, -0.019283240661025047, 0.023353243246674538, -0.018169816583395004, -0.01690901815891266, -0.021404249593615532, -0.013421245850622654, -0.026598257943987846, -0.027741041034460068, 0.0057989684864878654, 0.02765785902738571, 0.0029543323908001184, 0.034941352903842926, -0.03549136221408844, 0.015383045189082623, 0.01820761151611805, 0.005169836804270744, 0.020014457404613495, 0.019524840638041496, -0.023747682571411133, 0.020587120205163956, -0.013179805129766464, 0.023005709052085876, -0.028864605352282524, -0.027569347992539406, -0.0011348447296768427, -0.0356406569480896, 0.018033083528280258, -0.011624080128967762, -0.021603714674711227, 0.030236922204494476, 0.0269333403557539, 0.02974952943623066, 0.0033699010964483023, -0.03444886952638626, -0.014764147810637951, 0.035657647997140884, 0.034915342926979065, 0.01290787011384964, 0.01829015649855137, -0.003336672903969884, 0.038999371230602264, -0.007298746611922979, 0.01176059152930975, 0.050781700760126114, 0.026586389169096947, -0.03424488380551338, 0.0652153268456459, -0.013926991261541843, 0.01491495966911316, 0.02238748036324978, -0.0036376286298036575, -0.038661614060401917, 0.0509294830262661, -0.04121146723628044, -0.013702919706702232, 0.01128542609512806, -0.0034315921366214752, -0.012024127878248692, -0.023197801783680916, 0.022412827238440514, -0.028843486681580544, 0.013025294058024883, 0.00730919511988759, 0.022517070174217224, 0.007784148678183556, -0.00825515016913414, 0.03839949890971184, -0.001904668053612113, 0.04543458670377731, -0.0011173402890563011, 0.009166587144136429, 0.016485990956425667, 0.011994825676083565, 0.0008378851925954223, -0.001563067315146327, -0.024335158988833427, 0.05284920334815979, -0.03134831786155701, -0.01935398206114769, 0.0013903557555750012, -0.026645667850971222, -0.004882154520601034, 0.03624511882662773, -0.0036355091724544764, 0.02426222153007984, -0.02715212106704712, 0.03826295956969261, 0.009160300716757774, -0.056696418672800064, 0.031891465187072754, 0.02717592753469944, -0.00008372325828531757, 0.08711369335651398, 0.01798093691468239, 0.02945421077311039, 0.008721861056983471, 0.00559262465685606, -0.03832021355628967, 0.01923789083957672, -0.037060342729091644, -0.015004009008407593, 0.006133816670626402, 0.0002526045136619359, -0.010864024050533772, 0.004651462659239769, -0.002581835724413395, 0.011098753660917282, 0.02142457105219364, 0.03203752264380455, -0.029770176857709885, 0.012225402519106865, 0.028281191363930702, 0.02846359647810459, 0.029060756787657738, 0.020055754110217094, 0.0011506276205182076, -0.03002936765551567, -0.019831867888569832, -0.0419989749789238, 0.0018599365139380097, 0.01499401405453682, -0.013499665074050426, 0.03329010680317879, 0.034147657454013824, 0.05835527554154396, 0.05282006040215492, -0.01913551427423954, 0.05054958909749985, 0.04766879975795746, -0.047080863267183304, 0.01329757273197174, 0.0007844014908187091, 0.06117286905646324, 0.006789242383092642, -0.02783440612256527, -0.0004806170181836933, -0.0397762730717659, -0.037231381982564926, -0.06925586611032486, -0.025930719450116158, 0.026296108961105347, -0.019928088411688805, 0.02662588283419609, 0.025620244443416595, 0.031263045966625214, -0.03744061663746834, 0.003076030407100916, 0.02410210855305195, -0.05630229786038399, -0.047037865966558456, 0.0708373412489891, -0.040158335119485855, 0.024892399087548256, 0.011011945083737373, -0.02707461640238762, 0.017663108184933662, 0.08262813836336136, -0.0371771939098835, -0.0038570952601730824, 0.012611336074769497, 0.03323650360107422, 0.0071991910226643085, -0.006549013778567314, 0.010445780120790005, -0.0002683635102584958, -0.024950062856078148, 0.0441063717007637, -0.04719564691185951, 0.010740776546299458, 0.003024753648787737, -0.005756326485425234, 0.03109000250697136, 0.04477880895137787, 0.0023790039122104645, 0.006413565017282963, 0.02165195159614086, 0.05918130278587341, -0.0037954924628138542, 0.004492929205298424, -0.022944871336221695, 0.0551736056804657, 0.017091169953346252, 0.0714542493224144, 0.03176964074373245, 0.0055919066071510315, 0.060579270124435425, 0.024677665904164314, -0.011092896573245525, 0.01882665418088436, -0.01770872063934803, -0.015256298705935478, 0.04760162904858589, 0.042676180601119995, 0.004202145151793957, 0.046365901827812195, 0.00931344460695982, 0.0034986482933163643, 0.028822625055909157, -0.002285737544298172, -0.023049429059028625, 0.020734628662467003, 0.013888892717659473, 0.04595169052481651, -0.05345700681209564, 0.005085819400846958, 0.023558415472507477, 0.04911617189645767, -0.0010057331528514624, -0.03345063328742981, -0.035158976912498474, 0.030420199036598206, 0.0018093336839228868, -0.004646501503884792, 0.019150802865624428, 0.023692645132541656, -0.009117672219872475, 0.039497558027505875, 0.003633617889136076, -0.06019079312682152, -0.02545180544257164, -0.05865740403532982, -0.03978036344051361, -0.011312541551887989, -0.036113038659095764, -0.017262808978557587, 0.03306115046143532, -0.04295759275555611, 0.023355834186077118, -0.01979571394622326, -0.003965569194406271, -0.01806102879345417, -0.023263365030288696, 0.05507461726665497, 0.03446534648537636, 0.04796850308775902, -0.017680291086435318, 0.03761877864599228, -0.020376788452267647, 0.02916526421904564, 0.004899315536022186, 0.0039601800963282585, -0.009725377894937992, 0.01895599253475666, 0.03339001163840294, 0.0041609033942222595, -0.010176685638725758, 0.015527362003922462, -0.016208268702030182, -0.04331064224243164, -0.013713228516280651, 0.012676010839641094, -0.0029591035563498735, -0.02247699163854122, -0.043858230113983154, 0.0363643653690815, 0.01757986471056938, -0.030592842027544975, 0.047563813626766205, 0.040458399802446365, -0.036409489810466766, 0.043824609369039536, 0.01505405642092228, 0.02499217912554741, -0.05370919778943062, 0.07245990633964539, 0.03917897865176201, 0.02534794993698597, -0.03615737706422806, -0.006452219095081091, -0.007258768193423748, 0.0024658124893903732, 0.0005954875377938151, -0.016439078375697136, -0.06272176653146744, 0.026513854041695595, 0.023412760347127914, -0.04551786929368973, 0.016738874837756157, -0.048380859196186066, -0.011775120161473751, -0.028527218848466873, -0.06270694732666016, 0.02756532095372677, 0.029065387323498726, -0.012605317868292332, -0.018405206501483917, -0.032503608614206314, 0.02999119646847248, 0.023671830072999, 0.021939100697636604, -0.017460722476243973, 0.026686500757932663, 0.03030424192547798, -0.03284917399287224, 0.02573329210281372, 0.038401853293180466, 0.008472093380987644, 0.013688908889889717, 0.004328540991991758, 0.026371804997324944, -0.0012897875858470798, 0.047156643122434616, 0.0070268576964735985, 0.004172628279775381, 0.042954012751579285, -0.02136022038757801, -0.002844516420736909, 0.027877967804670334, 0.0004034797311760485, 0.04093401879072189, -0.008851139806210995, 0.01620797999203205, 0.0028197180945426226, -0.04104439541697502, -0.04173494502902031, -0.006810291204601526, 0.013196336105465889, 0.060535162687301636, -0.06822939962148666, 0.0505840890109539, -0.016918662935495377, -0.032630037516355515, 0.06824274361133575, -0.056503694504499435, 0.01866464503109455, 0.03568991273641586, 0.002389919711276889, 0.052231524139642715, -0.03431662172079086, 0.020859351381659508, -0.011137105524539948, 0.037272389978170395, 0.028562186285853386, -0.03432504087686539, 0.04407446086406708, -0.004325022920966148, -0.017495181411504745, -0.01234483066946268, -0.023638656362891197, -0.027374835684895515, -0.029060402885079384, -0.031214622780680656, -0.01908956654369831, -0.05695231631398201, -0.050474267452955246, 0.041059885174036026, 0.02102065272629261, 0.0535011924803257, 0.010141618549823761, 0.03428971394896507, -0.019988473504781723, 0.012720663100481033, 0.03157554939389229, 0.017994774505496025, 0.014843028038740158, -0.0354904904961586, 0.05729787051677704, 0.007654641754925251, -0.014997893944382668, -0.009572490118443966, -0.007168972864747047, -0.018371706828475, 0.02506454661488533, 0.029445599764585495, 0.011075222864747047, -0.03103008307516575, 0.01777048036456108, 0.031837161630392075, 0.010977625846862793, -0.030244523659348488, -0.018787899985909462, 0.007003110367804766, 0.029129914939403534, 0.02510882541537285, -0.04730024188756943, -0.004533886443823576, -0.01709781587123871, 0.03547375276684761, 0.0382511243224144, 0.006744356360286474, -0.05197029188275337, -0.03417729586362839, -0.03195223957300186, -0.059129443019628525, -0.013291938230395317, 0.01963312365114689, 0.02936706691980362, -0.0008185363258235157, -0.049875568598508835, 0.045242585241794586, 0.01982192136347294, 0.003159221727401018, -0.0024937945418059826, 0.01828037016093731, 0.031332358717918396, -0.0038972455076873302, 0.0488637275993824, -0.01335781067609787, -0.04403845965862274, -0.0007238383404910564, -0.0732271671295166, 0.012702543288469315, -0.01410140935331583, -0.011986931785941124, -0.014252997003495693, 0.012640382163226604, -0.0035225332248955965, 0.03441036120057106, -0.006429973524063826, -0.0128108449280262, -0.01630263403058052, 0.03822612762451172, -0.05176972597837448, -0.04652518033981323, 0.052657049149274826, -0.0022828567307442427, -0.02192571572959423, 0.01842719316482544, 0.05609965696930885, -0.009078923612833023, -0.011191992089152336, 0.029000384733080864, -0.03175174817442894, 0.033161841332912445, -0.03297136351466179, 0.01995018683373928, -0.04147008806467056, -0.04440607130527496, -0.009765122085809708, -0.03331376239657402, 0.004692800808697939, 0.013727976940572262, -0.04200819879770279, -0.03225585073232651, -0.06081732362508774, -0.0071348645724356174, 0.00980729516595602, -0.0336226150393486, -0.03199109807610512, 0.027511905878782272, 0.0009542066836729646, -0.03199596703052521, -0.016775084659457207, -0.012160162441432476, -0.005711775738745928, -0.031324006617069244, 0.01405870821326971, -0.00760162528604269, 0.018777575343847275, 0.003380941227078438, -0.0009719906374812126, -0.03284299001097679, -0.019483890384435654, 0.0019485914381220937, -0.013285144232213497, -0.038201864808797836, -0.02020912431180477, -0.023216811940073967, 0.0007218960672616959, -0.01538889016956091, 0.00881408154964447, -0.016955604776740074, 0.0437907911837101, 0.05562179163098335, 0.0052735460922122, 0.017256660386919975, -0.018603108823299408, -0.036528315395116806, 0.035660140216350555, 0.016759654507040977, -0.0560324564576149, -0.028032274916768074, 0.03395357355475426, -0.030197080224752426, 0.046549178659915924, -0.00911258440464735, -0.008127092383801937, -0.020043961703777313, -0.053010255098342896, -0.007914802990853786, -0.060799647122621536, -0.036868225783109665, -0.05729953944683075, 0.010014427825808525, -0.0001312593958573416, 0.05477789044380188, -0.03437913581728935, -0.014257198199629784, -0.019068997353315353, -0.04226632043719292, -0.043177105486392975, -0.011678913608193398, -0.05899132415652275, -0.01036642212420702, -0.006487375590950251, -0.012246087193489075, 0.05230351909995079, 0.020359594374895096, 0.041840482503175735, -0.02505335956811905, -0.002268488286063075, 0.013943484984338284, -0.014571317471563816, -0.05018020421266556, -0.052669234573841095, -0.016123048961162567, -0.014602482318878174, 0.010958818718791008, 0.043428122997283936, -0.045060016214847565, 0.054267290979623795, -0.028345797210931778, 0.010112560354173183, -0.04644103720784187, -0.04451503977179527, -0.033252257853746414, -0.010668177157640457, 0.04534560814499855, -0.04244448244571686, 0.02502078004181385, -0.011852193623781204, 0.014776432886719704, 0.03403425216674805, -0.004952185787260532, -0.03151266649365425, -0.016645878553390503, -0.060383327305316925, -0.038577765226364136, 0.04162703827023506, -0.0328114852309227, -0.033165428787469864, -0.028144847601652145, 0.02255711890757084, 0.056936115026474, 0.013432134874165058, 0.009032588452100754, 0.05299931392073631, -0.03130640834569931, -0.018115276470780373, -0.00719419214874506, 0.03200672194361687, 0.02806578390300274, 0.003318043192848563, -0.005442173685878515, -0.0065521677024662495, -0.03619560971856117, 0.03476949781179428, -0.052860818803310394, -0.0024645377416163683, -0.059603556990623474, -0.011245266534388065, 0.08532797545194626, -0.010312351398169994, 0.056139569729566574, 0.02618599310517311, -0.033577993512153625, -0.02894425019621849, 0.03557486832141876, 0.0064499350264668465, 0.020223025232553482, 0.06859808415174484, -0.03268025442957878, 0.009814140386879444, 0.0048844278790056705, 0.023049235343933105, -0.00949926022440195, -0.028360940515995026, 0.06727444380521774, -0.01493885088711977, -0.0428350567817688, 0.018258817493915558, 0.05602215602993965, -0.03569187596440315, -0.019574999809265137, 0.013667288236320019, 0.0036552660167217255, 0.013124067336320877, -0.04025023803114891, -0.00012678471102844924, -0.009350653737783432, 0.04560902342200279, 0.014275657944381237, 0.032246097922325134, -0.0195461492985487, 0.04652394726872444, 0.0165358055382967, 0.030591707676649094, -0.02946067601442337, 0.06229577586054802, 0.021202784031629562, -0.024870548397302628, -0.01293924916535616, -0.029911832883954048, 0.018041620030999184, 0.010366267524659634, -0.006511945743113756, 0.029534514993429184, -0.013243917375802994, -0.010082603432238102, 0.07567283511161804, -0.011043953709304333, 0.03216588497161865, -0.01503131166100502, -0.030935391783714294, 0.005906944628804922, -0.03683176264166832, -0.05658229812979698, -0.024412913247942924, 0.005070155952125788, -0.013290093280375004, 0.030771881341934204, -0.059081532061100006, -0.024051625281572342, 0.03190389648079872, -0.015076479874551296, -0.0073245554231107235, -0.047103818506002426, -0.05972209572792053, -0.04045135900378227, -0.02543036639690399, -0.015486546792089939, 0.014946570619940758, 0.010229386389255524, -0.004813245497643948, 0.03319957107305527, -0.04560833051800728, -0.034519877284765244, -0.0034597788471728563, -0.03421389311552048, 0.00965277012437582, -0.02897624671459198, 0.021152282133698463, -0.029215790331363678, -0.05593741685152054, -0.025746777653694153, -0.017786074429750443, -0.011589654721319675, -0.02220640890300274, -0.01123068667948246, 0.010605373419821262, 0.010931702330708504, 0.04179895296692848, 0.027341699227690697, 0.017924712970852852, 0.02661694958806038, -0.06340828537940979, 0.005625932011753321, 0.042511437088251114, -0.020373988896608353, 0.02094537951052189, 0.007165734656155109, -0.02401103265583515, 0.02235267497599125, -0.006030078046023846, -0.021939536556601524, 0.01966444030404091, -0.02497538924217224, 0.0036684381775557995, 0.01735425367951393, -0.0532420314848423, -0.04599912837147713, -0.028665592893958092, -0.04053271561861038, 0.028614530339837074, -0.041790202260017395, 0.03777921199798584, -0.026795051991939545, 0.0033442454878240824, -0.001174880308099091, 0.05904514342546463, -0.007451831363141537, 0.025016196072101593, -0.006412867922335863, 0.020643053576350212, 0.0005870311288163066, -0.012643533758819103, 0.03430737182497978, 0.03027695044875145, 0.01814875565469265, -0.0028935333248227835, -0.02097906917333603, 0.01383872702717781, -0.025978710502386093, 0.014407848939299583, 0.001830065855756402, -0.03857927396893501, -0.025662273168563843, -0.008932139724493027, 0.017128169536590576, 0.052798785269260406, 0.01963406801223755, -0.03746635839343071, 0.02643434703350067, -0.046084318310022354, -0.06982029974460602, 0.027740467339754105, -0.06783579289913177, -0.008290840312838554, 0.022417103871703148, -0.04290136694908142, 0.0038134462665766478, 0.00996894296258688, -0.06840826570987701, 0.005370997823774815, -0.01675949990749359, 0.014131207950413227, -0.039588652551174164, -0.019611671566963196, -0.01170311588793993, 0.042724356055259705, -0.0007376691792160273, -0.019257357344031334, 0.030658530071377754, 0.06187716871500015, -0.027369795367121696, -0.029500914737582207, 0.0005162939778529108, 0.011027221567928791, -0.025633951649069786, -0.0015951108653098345, -0.025172341614961624, 0.008189384825527668, -0.015625042840838432, 0.022564632818102837, -0.013913825154304504, 0.01948460564017296, 0.014023203402757645, 0.04908996447920799, 0.01966354064643383, -0.0008242960320785642, -0.04533415660262108, 0.040826067328453064, 0.018383432179689407, -0.008635605685412884, -0.0105348015204072, 0.05319218337535858, 0.020472601056098938, 0.005593959242105484, 0.020446565002202988, 0.023576227948069572, 0.04394688084721565, -0.02802266925573349, -0.006482044234871864, -0.028173739090561867, 0.03153238445520401, 0.023730836808681488, -0.0027189620304852724, -0.00387974688783288, 0.048120446503162384, 0.05063117295503616, -0.026835525408387184, 0.025467349216341972, 0.016102885827422142, -0.004291752818971872, -0.02757355570793152, -0.011534147895872593, -0.01034159492701292, -0.015261759050190449, 0.03267642855644226, 0.0034333858639001846, 0.008182179182767868, -0.029333731159567833, -0.012082100845873356, -0.013977083377540112, -0.010862788185477257, 0.04127003997564316, -0.038863152265548706, -0.007010305300354958, 0.005137177649885416, -0.0077184331603348255, 0.00993612315505743, 0.062486011534929276, 0.006753712426871061, 0.015086977742612362, 0.03818027302622795, 0.020858829841017723, -0.0444013774394989, 0.048095475882291794, 0.028677498921751976, -0.003919800277799368, -0.02882961928844452, 0.02070382423698902, 0.024752618744969368, -0.009076034650206566, -0.049739185720682144, 0.013957695104181767, -0.006721619050949812, 0.03279845416545868, -0.0358145497739315, -0.003908810671418905, 0.025317855179309845, -0.039806708693504333, 0.00035816553281620145, -0.05690041929483414, 0.053776271641254425, -0.027408570051193237, -0.00990819651633501, 0.019879130646586418, 0.017151592299342155, -0.009584602899849415, 0.03575408086180687, -0.004607762210071087, 0.04714813828468323, 0.003442589193582535, 0.057532601058483124, 0.013157062232494354, -0.002292053308337927, 0.06123259291052818, -0.047181762754917145, -0.021862413734197617, 0.012604864314198494, -0.009891964495182037, -0.020854590460658073, 0.007850578054785728, -0.06500348448753357, -0.010159039869904518, -0.018236998468637466, -0.006613781675696373, -0.02625500038266182, 0.055269137024879456, -0.028313640505075455, -0.045994266867637634, -0.03597274795174599, 0.006989027373492718, -0.03200654312968254, 0.027890190482139587, 0.012049716897308826, 0.041940852999687195, 0.005859676748514175, -0.019946055486798286, -0.03073316439986229, -0.005714491009712219, -0.007693408988416195, -0.049152571707963943, 0.042297594249248505, -0.032015733420848846, -0.01739141345024109, -0.0648588314652443, -0.05426131188869476, -0.006072674412280321, 0.011367982253432274, -0.06897015124559402, -0.02632525935769081, 0.05156071484088898, 0.04723825678229332, 0.013757957145571709, 0.018998578190803528, -0.023328183218836784, 0.015267598442733288, 0.028740286827087402, 0.0390569344162941, 0.03362602740526199, 0.04918913543224335, 0.03551614657044411, -0.01371778454631567, 0.047695837914943695, -0.04545334726572037, 0.02029585652053356, -0.004220196511596441, -0.028362421318888664, -0.03432343900203705, 0.006731810048222542, -0.0005911172484047711, -0.06002575904130936, 0.02858697809278965, 0.035267867147922516, 0.0009952170075848699, -0.029138116165995598, -0.11306813359260559, -0.0028789741918444633, -0.06154082715511322, 0.0005701456102542579, -0.06248271092772484, 0.0445961132645607, 0.030888445675373077, -0.004042110871523619, 0.005370268598198891, -0.053352709859609604, 0.13716734945774078, 0.026444153860211372, 0.021485455334186554, -0.026900039985775948, 0.0171097032725811, 0.05332868918776512, 0.028149697929620743, -0.034489795565605164, 0.002832443919032812, -0.021375073119997978, 0.028054194524884224, -0.005844407714903355, 0.030549393966794014, 0.011237752623856068, 0.04109665006399155, 0.08269771933555603, -0.03082391619682312, 0.018876798450946808, 0.013887469656765461, -0.07053112238645554, -0.04984265938401222, 0.008555915206670761, 0.03888299688696861, 0.005049875937402248, -0.014669360592961311, 0.013401946984231472, 0.007140051573514938, -0.03205309435725212, 0.015340818092226982, -0.026740267872810364, 0.006402301136404276, -0.034566204994916916, 0.02481227181851864, -0.03170229122042656, -0.04865344613790512, 0.03965211659669876, -0.0077345590107142925, -0.029201693832874298, 0.027693694457411766, 0.006358106154948473, -0.023159209638834, -0.004406851716339588, 0.062077246606349945, -0.03870387747883797, 0.03968638554215431, 0.017432237043976784, -0.0285887960344553, 0.011463972739875317, 0.008759147487580776, -0.042301442474126816, 0.058597058057785034, -0.05444832146167755, 0.04379045218229294, 0.0021401059348136187, -0.025264091789722443, 0.0065571460872888565, -0.004788224585354328, -0.01605577953159809, 0.0012155554722994566, 0.028261398896574974, 0.020493365824222565, 0.004987906198948622, 0.012788841500878334, -0.015609134919941425, -0.03023628331720829, 0.024739423766732216, 0.05179334059357643, 0.022221723571419716, -0.007139868102967739, -0.0008660085150040686, -0.010892386548221111, -0.009665205143392086, -0.0083239721134305, -0.016383841633796692, 0.010083667933940887, 0.03417465463280678, -0.016540855169296265, 0.01860491931438446, -0.005769168026745319, -0.04871398210525513, -0.0233752578496933, -0.03479238227009773, -0.02750520035624504, -0.02999035269021988, 0.019085772335529327, 0.04859929159283638, -0.05124758556485176, -0.022840792313218117, -0.006704521365463734, 0.06191849708557129, 0.03967297822237015, -0.003659866750240326, 0.003280606819316745, -0.01610078103840351, -0.004938588012009859 ]
Athens, 13.01.2014: EMTech's new venture in Germany (EMTech UG) was accepted by the European Space Agency Business Incubation Center in Darmstadt. EMTech UG will initiate operations within the first quarter of 2014. The mission of the new business entity is to focus on simulations for electrical smart-grids. The main innovation point of the new entiry is the utilization of the Spacecraft Operational Simulators Software Infrastructure to facilitate parallel execution of multiple smart-grid simulation threads. EMTech UG is a startup company, having as principal objective to offer sophisticated services in smart-grid applications. The differeantiating point of the new entiry is the ownership of a simulation framework that provides, on-line and in real-time, consulting information in smart-grid operations. EMTech UG underpins this simulation framework on an innovative concept, called the "Smart-Grid Parallel Universe". This includes the simultaneous execution of simulations of "identical" smart-grid topologies under investigation, fused with historical datasets, real-time measurements, and contingency events. A centralized intelligent component processes the information and performs iterative calculations, in order to spawn smart-grids' "Big-Bangs", creating instances of new parallel universes, or terminating parallel universe instances that are improbable to happen in the future. EMTECH UG will acquire technology and know-how from EMTech established in Greece. Since 2009 EMTech has been working in ESA/ESOC research and development projects and in 2011 has been accepted as a Qualified Partner for Ground Segment Software Development Frame Contract. Recently, EMTech has introduced an innovative Parallel Discrete Event Simulation scheduler for the SIMSAT kernel (the simulation engine of ESA Operational Simulators), supporting synchronized multi-threaded execution of simulation models. The latter effort provides a key feature supporting large-scale simulation applications, requiring clusters of multicore-multiprocessor workstations. This innovative PDES scheduler shall be the heart of the smart-grid Prognosis services offered by EMTech UG. ESA's Business Incubation Centres (BICs), initiated by ESA's Technology Transfer Programme Office (TTPO), work to inspire entrepreneurs to turn space-connected business ideas into commercial companies, and provide technical expertise and business-development support. Business Incubation Centres across European countries support selected entrepreneurs with comprehensive commercial and technical assistance to help them startup businesses that apply space technology to non-space industrial, scientific and commercial fields.
[ -0.013105932623147964, 0.016521146520972252, -0.04001665487885475, 0.0014184153405949473, -0.020513178780674934, 0.027489542961120605, -0.011965654790401459, -0.0067238640040159225, 0.0011601826408877969, 0.020599180832505226, 0.02819989062845707, 0.0043785409070551395, 0.029067620635032654, -0.023446563631296158, -0.033688802272081375, 0.007539395708590746, -0.0007834437419660389, -0.03572308272123337, -0.017710737884044647, -0.009123057126998901, 0.0024210368283092976, 0.011003613471984863, -0.07497519999742508, -0.04298817366361618, -0.0469394326210022, 0.05825507268309593, 0.044876955449581146, -0.012833760119974613, 0.07410961389541626, 0.040658146142959595, -0.02215529978275299, -0.04362427815794945, 0.019785210490226746, -0.0380842499434948, -0.022710150107741356, -0.027496006339788437, 0.03829267993569374, -0.008648727089166641, -0.021907750517129898, -0.056155674159526825, 0.016095619648694992, 0.0011598228011280298, 0.03751739487051964, -0.045001547783613205, -0.03154491260647774, -0.024539677426218987, 0.022315382957458496, -0.025100652128458023, 0.024657072499394417, -0.025966918095946312, 0.011306938715279102, 0.0345824733376503, 0.0010503160301595926, -0.005378086119890213, -0.020972179248929024, -0.004573062993586063, 0.013699390925467014, -0.008291068486869335, -0.0389229990541935, 0.022154012694954872, 0.02625792846083641, 0.007120032794773579, 0.03160455822944641, -0.04130776971578598, 0.029187051579356194, 0.0272457767277956, -0.019939295947551727, -0.024690324440598488, 0.01473878975957632, -0.016552751883864403, -0.0164438858628273, 0.007852044887840748, -0.003917599096894264, -0.01961040124297142, 0.010714659467339516, 0.006763819605112076, -0.023545125499367714, -0.010275728069245815, -0.00827110093086958, -0.053895171731710434, 0.01374147366732359, 0.03474400192499161, -0.0021317342761904, 0.0214419923722744, -0.05939752981066704, -0.010650225915014744, -0.006619618274271488, -0.0038905565161257982, -0.004168940242379904, 0.0018203919753432274, 0.00797531008720398, 0.04374230280518532, 0.0085607236251235, 0.012109513394534588, 0.03245813399553299, 0.053008947521448135, -0.04818044602870941, 0.022798234596848488, -0.021592091768980026, 0.01711045391857624, 0.021571500226855278, 0.04131399840116501, -0.047573868185281754, 0.06199213117361069, -0.039845287799835205, -0.006795147433876991, 0.021448545157909393, 0.018381109461188316, 0.02347227744758129, -0.03924775868654251, 0.006867361720651388, -0.007189652882516384, 0.004447060637176037, -0.004580430220812559, 0.010846778750419617, 0.07156491279602051, -0.03818625584244728, 0.02339661866426468, -0.018652429804205894, 0.015445489436388016, -0.024979326874017715, 0.01609037071466446, 0.035971369594335556, -0.012402767315506935, -0.0019995947368443012, -0.03915908932685852, -0.017533516511321068, 0.0340983122587204, -0.01979861967265606, -0.03265710547566414, -0.009245184250175953, -0.04452081769704819, -0.03449622169137001, 0.03534961864352226, 0.016059350222349167, 0.026354223489761353, 0.0322704017162323, 0.06299477070569992, 0.01052863523364067, -0.056887637823820114, 0.003098489949479699, -0.004623878747224808, 0.03305141627788544, 0.11457157880067825, 0.004957521799951792, 0.024477973580360413, 0.012550377286970615, -0.03128887712955475, -0.030630897730588913, 0.014046153984963894, -0.026588236913084984, -0.0066691115498542786, -0.006985807325690985, 0.04146307334303856, 0.009596630930900574, -0.011600717902183533, -0.007053550332784653, 0.011295421048998833, -0.004195049405097961, 0.029498646035790443, -0.007232261821627617, 0.008053065277636051, 0.005070066079497337, 0.03486253321170807, -0.01103349681943655, 0.01279173232614994, -0.01776537299156189, 0.001452620723284781, -0.03681599721312523, -0.04003116488456726, 0.010535353794693947, 0.0092746177688241, -0.016457615420222282, 0.018100891262292862, 0.017841320484876633, 0.04453811049461365, 0.035019755363464355, -0.0005972337094135582, 0.03268922120332718, 0.03668580204248428, -0.05743003636598587, -0.015244221314787865, -0.01657818630337715, 0.0766606554389, 0.014808127656579018, 0.014685573987662792, 0.0044877054169774055, -0.02080606482923031, -0.011300446465611458, -0.01869596168398857, -0.015161707065999508, 0.043660491704940796, -0.04127642512321472, 0.03936056047677994, -0.010444791987538338, 0.0014553471701219678, -0.005687058437615633, -0.008374390192329884, -0.027376819401979446, -0.04037303477525711, -0.01738722063601017, 0.04135754331946373, -0.01761568710207939, 0.019170181825757027, -0.007819827646017075, -0.027398930862545967, 0.004232356790453196, 0.038606103509664536, -0.05097873881459236, -0.003069426631554961, 0.06474815309047699, 0.019736340269446373, -0.02524646557867527, -0.0006949526723474264, 0.020558521151542664, -0.010861344635486603, -0.032468073070049286, 0.0566527359187603, 0.008834742940962315, -0.008803133852779865, 0.013275101780891418, -0.019976435229182243, 0.03171195462346077, 0.02122372016310692, -0.019361598417162895, 0.01934572122991085, 0.012292956933379173, 0.06780105829238892, -0.0049256086349487305, -0.007501651998609304, -0.00336084165610373, 0.027820972725749016, 0.01795896887779236, 0.061868052929639816, 0.055860280990600586, 0.006734667811542749, 0.03911333531141281, 0.03816302865743637, -0.007712988648563623, 0.0032432591542601585, 0.012092242948710918, -0.0020629155915230513, 0.03834862262010574, 0.018225770443677902, -0.007590487599372864, 0.019182490184903145, -0.002965494291856885, -0.015541131608188152, -0.012168025597929955, 0.041736800223588943, -0.047109730541706085, 0.02013363316655159, 0.0065280054695904255, 0.031887419521808624, -0.03240964189171791, 0.004754367750138044, -0.00380336819216609, 0.05690362676978111, -0.029733508825302124, -0.005200974177569151, -0.014467577449977398, 0.008068478666245937, -0.03683308884501457, -0.010424437001347542, 0.0032945137936621904, 0.04379882663488388, 0.01037385780364275, 0.00845086108893156, -0.0031868747901171446, -0.04169264808297157, -0.07660727947950363, -0.051831528544425964, -0.027765633538365364, -0.03159130737185478, -0.059131965041160583, -0.0055325995199382305, 0.024365507066249847, -0.03236636146903038, 0.05008956789970398, -0.028492413461208344, 0.026696451008319855, -0.020970532670617104, -0.01420400757342577, 0.039576102048158646, 0.017751606181263924, 0.02966366894543171, -0.04300079867243767, 0.05190521478652954, -0.016612732782959938, 0.04561552777886391, -0.03751314803957939, -0.02349279075860977, -0.008575496263802052, -0.030864229425787926, 0.014584923163056374, -0.0006933962577022612, -0.014367321506142616, 0.01049224566668272, -0.04259219020605087, -0.039630912244319916, -0.0022432166151702404, 0.00787983275949955, -0.003776479745283723, -0.018205448985099792, -0.025202777236700058, 0.06010565161705017, 0.03527146577835083, -0.028428198769688606, 0.04122967645525932, 0.046885617077350616, -0.05255464091897011, 0.024526799097657204, 0.007159129716455936, 0.005140357650816441, -0.058882467448711395, 0.036342598497867584, 0.07066040486097336, -0.03128918260335922, -0.019739121198654175, -0.004232348408550024, -0.004376573488116264, 0.003147895447909832, 0.037494443356990814, -0.019829005002975464, -0.03288770467042923, 0.044681258499622345, 0.012906444258987904, -0.0641583800315857, 0.04442572593688965, -0.00975845567882061, -0.025260047987103462, -0.0423211008310318, -0.022872891277074814, 0.04321666061878204, 0.024763548746705055, 0.012930141761898994, 0.0028504750225692987, -0.014548013918101788, 0.0034455277491360903, 0.01109063159674406, 0.03427938371896744, -0.04138682037591934, 0.021764324977993965, 0.035921610891819, -0.010301553644239902, 0.008119409903883934, 0.061666928231716156, -0.02513093315064907, 0.00813635066151619, -0.019086632877588272, -0.017626363784074783, -0.012861453928053379, 0.0417783185839653, -0.005915002431720495, 0.026407068595290184, 0.03993481397628784, -0.030852608382701874, -0.027024883776903152, -0.017950747162103653, -0.0024410118348896503, 0.018208874389529228, 0.0010038657346740365, -0.003392788115888834, 0.01969367265701294, -0.050911691039800644, -0.05423331260681152, 0.009862908162176609, 0.009578579105436802, 0.03318580240011215, -0.06437768042087555, 0.0527343787252903, -0.01848190277814865, -0.050155822187662125, 0.0279706884175539, -0.034565847367048264, -0.005221466068178415, 0.03525863587856293, 0.009217552840709686, 0.039997637271881104, -0.04046747088432312, -0.003347851801663637, -0.009137735702097416, -0.0028609789442270994, 0.030863488093018532, -0.009223198518157005, 0.026741255074739456, 0.009806450456380844, 0.00819912925362587, -0.04021105170249939, -0.03780822455883026, -0.0017738615861162543, -0.03062053769826889, 0.00557878939434886, 0.009961666539311409, -0.03436849266290665, -0.0580083467066288, 0.03789941594004631, 0.043540745973587036, 0.03381814807653427, -0.011491771787405014, 0.06813468039035797, -0.004527020268142223, 0.007961617782711983, 0.03116600215435028, 0.0105430381372571, 0.013550999574363232, -0.03184732422232628, 0.06337912380695343, 0.03671595826745033, -0.023055145516991615, -0.028063761070370674, -0.03727263584733009, -0.03512270376086235, 0.003258768003433943, -0.016692815348505974, -0.019222673028707504, -0.02004477195441723, -0.009472138248383999, -0.0008443080587312579, 0.03575919568538666, -0.03297634422779083, -0.024191096425056458, -0.036288969218730927, 0.04982425644993782, -0.0029116198420524597, -0.05259940028190613, -0.019505569711327553, -0.050723105669021606, 0.03946118801832199, 0.038619764149188995, -0.030926216393709183, -0.05892970412969589, -0.026391396299004555, -0.006185500416904688, -0.032519109547138214, 0.008712311275303364, 0.04642244800925255, -0.01659110002219677, -0.008497573435306549, -0.049036718904972076, 0.027305424213409424, 0.039263226091861725, -0.015147378668189049, -0.02638629451394081, 0.012042087502777576, 0.012119938619434834, 0.014822589233517647, 0.025553680956363678, -0.009739351458847523, -0.026919277384877205, 0.020104946568608284, -0.04394915699958801, 0.02650616317987442, -0.03961140289902687, -0.00003284178819740191, -0.006396706216037273, 0.012254415079951286, 0.018410300835967064, 0.04503069445490837, -0.026746027171611786, 0.0007238423568196595, -0.013559536077082157, 0.06553923338651657, -0.06504888087511063, -0.03353657200932503, 0.057581521570682526, -0.00034682461409829557, -0.02027549035847187, -0.0017397726187482476, 0.06557204574346542, -0.02233142964541912, 0.018816892057657242, 0.014051998034119606, -0.014935784973204136, 0.0310494527220726, -0.04514233395457268, 0.03832598775625229, 0.01578456535935402, -0.01824100874364376, -0.02379496395587921, -0.031192902475595474, 0.03066321089863777, 0.004098277073353529, -0.013626160100102425, -0.0355067104101181, -0.061202384531497955, -0.010654835030436516, -0.001726932474412024, -0.016421930864453316, 0.015028075315058231, -0.014514104463160038, 0.025069192051887512, 0.0009893265087157488, 0.010212259367108345, -0.00637080380693078, 0.0018712118035182357, -0.010908197611570358, 0.005352898500859737, 0.035150572657585144, 0.02506856434047222, 0.01671510376036167, -0.02663346566259861, -0.03670983761548996, 0.012383774854242802, -0.012249310500919819, -0.05471862107515335, -0.06508778780698776, 0.007953576743602753, -0.05332200229167938, -0.011886640451848507, -0.017861345782876015, -0.009396493434906006, -0.014383654110133648, 0.037383072078228, 0.011332519352436066, 0.02820596657693386, -0.007759890053421259, 0.0032471211161464453, -0.026745928451418877, 0.0381128191947937, 0.021521423012018204, -0.06938707083463669, -0.028259068727493286, 0.034571368247270584, -0.009738661348819733, 0.044601887464523315, 0.010748875327408314, -0.020506925880908966, -0.018781062215566635, -0.06695115566253662, 0.004060977138578892, -0.058999061584472656, -0.009601599536836147, -0.05544671788811684, -0.006887602619826794, -0.03282191604375839, 0.024858204647898674, 0.0432465635240078, -0.04890508949756622, -0.013429910875856876, -0.020285116508603096, 0.025420062243938446, -0.05634690821170807, -0.0024647314567118883, -0.015308077447116375, 0.0023519988171756268, -0.005250713787972927, 0.05814218893647194, 0.006175616290420294, 0.0003448385978117585, -0.006456079892814159, 0.013669196516275406, 0.021641848608851433, 0.020530521869659424, -0.04875943437218666, -0.061905600130558014, -0.00013015381409786642, -0.009402703493833542, -0.01301747839897871, 0.004311389289796352, -0.02418365888297558, 0.05218217894434929, -0.042283542454242706, -0.026347463950514793, -0.02136734314262867, -0.0009050188236869872, -0.011606008745729923, -0.0040755742229521275, 0.0467926561832428, -0.010263266041874886, 0.053640227764844894, 0.014641355723142624, 0.05625450238585472, 0.0629916563630104, 0.029989684000611305, -0.04886876419186592, -0.020668620243668556, -0.03308354318141937, -0.06441105157136917, 0.03461545705795288, -0.041936226189136505, -0.05369284749031067, -0.003966689109802246, -0.012760481797158718, 0.032040249556303024, -0.006642888765782118, 0.0592743381857872, 0.049205388873815536, 0.009693377651274204, -0.002975164446979761, -0.025617288425564766, -0.004387764725834131, 0.025261426344513893, 0.0033642498310655355, 0.046427108347415924, -0.010857551358640194, -0.024645693600177765, 0.004901737906038761, -0.05500941723585129, -0.057951074093580246, -0.035852573812007904, 0.006988248787820339, 0.035396791994571686, -0.036991097033023834, 0.04528749734163284, -0.02319188416004181, -0.029655249789357185, -0.03060448169708252, 0.02760954387485981, -0.008080377243459225, -0.003168619703501463, 0.05421527102589607, 0.028825940564274788, -0.004282851703464985, 0.013858445920050144, -0.018550388514995575, 0.02113642543554306, -0.018632471561431885, 0.056728869676589966, -0.0036676269955933094, -0.021676354110240936, 0.013054118491709232, 0.05452987179160118, -0.0449422225356102, -0.052383746951818466, 0.015873242169618607, 0.0026915152557194233, -0.001206731889396906, -0.04848606139421463, 0.02863452211022377, -0.008887708187103271, 0.004580969922244549, 0.0007306585903279483, 0.0427166149020195, 0.01132200751453638, 0.03560743108391762, 0.02085319347679615, 0.023298485204577446, -0.024497227743268013, 0.02223026566207409, 0.03679217770695686, -0.0021637980826199055, -0.01953176036477089, -0.08355317264795303, -0.034251123666763306, -0.00268017640337348, -0.030963808298110962, 0.05122701823711395, -0.01959732361137867, 0.03321536257863045, 0.04208983853459358, 0.0024013046640902758, 0.036056648939847946, 0.00216687167994678, -0.00901846494525671, 0.0480099692940712, -0.02586435340344906, -0.05365004390478134, -0.028476407751441002, 0.021233854815363884, -0.0004929333226755261, 0.03877895697951317, -0.039708349853754044, 0.007996845990419388, 0.043403156101703644, -0.01476417388767004, 0.007367117330431938, -0.04057430475950241, -0.037365999072790146, -0.019682278856635094, -0.03947008401155472, -0.011633849702775478, 0.003048405982553959, -0.029035987332463264, 0.00046987144742161036, 0.020878879353404045, -0.04593333974480629, 0.0017888940637931228, 0.02791144698858261, 0.012162853963673115, -0.0022571992594748735, -0.04072889685630798, 0.017697669565677643, -0.06642606854438782, -0.05103326961398125, -0.0328817218542099, -0.006848028860986233, -0.0069900620728731155, -0.010050119832158089, -0.04441679269075394, 0.006237071007490158, -0.019322458654642105, 0.028334202244877815, 0.005086163524538279, 0.02188163809478283, -0.04535698518157005, -0.0599900558590889, -0.03032921999692917, 0.03440786153078079, -0.0050807008519768715, 0.03111857920885086, 0.04922166094183922, -0.003934330772608519, 0.0474611334502697, -0.03750206530094147, -0.00012673265882767737, -0.019047683104872704, 0.02004922553896904, 0.03649943694472313, 0.013608171604573727, -0.03860385715961456, -0.02377336472272873, 0.03425624221563339, -0.026356279850006104, 0.023968925699591637, -0.011221322230994701, -0.001664644805714488, -0.00589622650295496, -0.02373158372938633, -0.02378341741859913, 0.0445052906870842, -0.004987514577805996, 0.028542635962367058, 0.026144422590732574, 0.02257288619875908, 0.006948875263333321, -0.00972797255963087, -0.007219861727207899, -0.0025403767358511686, -0.003911291714757681, -0.03438536450266838, 0.034556325525045395, 0.0372982993721962, -0.0014272924745455384, 0.011471189558506012, -0.013134932145476341, -0.013583609834313393, -0.043893687427043915, -0.03495731204748154, 0.026232527568936348, 0.060185909271240234, 0.018897639587521553, 0.023932818323373795, 0.015034361742436886, -0.03179849684238434, -0.06540961563587189, 0.011731021106243134, -0.06982274353504181, -0.04728172719478607, 0.03492490574717522, -0.04011625796556473, -0.008820461109280586, 0.010755134746432304, -0.05185253918170929, 0.0037291741464287043, -0.014477129094302654, -0.01399959810078144, -0.02256794087588787, 0.02841358631849289, 0.00570798572152853, 0.033122558146715164, -0.03144598752260208, 0.0033035981468856335, 0.0031803264282643795, 0.06492795795202255, -0.041937634348869324, -0.04103747382760048, -0.005633877590298653, 0.04601968079805374, -0.009613381698727608, -0.020217929035425186, -0.004009572323411703, -0.0015413690125569701, 0.012418798170983791, 0.007499979343265295, 0.001522388425655663, 0.037353403866291046, -0.024938521906733513, 0.012097068130970001, 0.01106320321559906, 0.02667933516204357, -0.006342665292322636, 0.04081020504236221, 0.018584929406642914, -0.02161789871752262, -0.04845365136861801, 0.06329556554555893, 0.05594027042388916, -0.011721459217369556, 0.03375480696558952, 0.021708473563194275, 0.0513598695397377, 0.007798512000590563, 0.029726047068834305, -0.002301735570654273, 0.040775932371616364, 0.005477580241858959, 0.03561966121196747, -0.012419602833688259, 0.0078042419627308846, 0.05138629302382469, -0.01908642053604126, -0.032386474311351776, 0.04187692701816559, 0.023579927161335945, -0.03822558745741844, 0.016368968412280083, -0.02880585752427578, 0.0011923561105504632, -0.018824191763997078, -0.006302697118371725, 0.024242985993623734, -0.018959255889058113, 0.005119727924466133, -0.011136364191770554, -0.02080455981194973, 0.04042123630642891, -0.03204948082566261, -0.009100343100726604, -0.008991834707558155, 0.004419542849063873, 0.02587883360683918, 0.028244566172361374, -0.006095347926020622, -0.023493310436606407, 0.0321354903280735, 0.03916100040078163, -0.0021852413192391396, 0.023370740935206413, 0.057561397552490234, 0.01646094210445881, -0.034891217947006226, 0.02861197106540203, 0.015386427752673626, 0.02270585484802723, -0.04100422561168671, -0.0031548263505101204, -0.038327112793922424, 0.06673675775527954, -0.04205404594540596, -0.03828108310699463, -0.007298513315618038, -0.05558359995484352, -0.01761694997549057, -0.05722770467400551, 0.02096758782863617, -0.05344615876674652, -0.0070535410195589066, 0.03730123117566109, -0.006805384531617165, -0.03755846619606018, 0.052740976214408875, -0.005796957761049271, 0.0383809357881546, 0.06800616532564163, 0.033905722200870514, -0.016419975087046623, 0.06074121221899986, 0.06240471079945564, -0.006347916554659605, -0.0019196795765310526, 0.03101888857781887, -0.02168189361691475, -0.011809729970991611, -0.008185074664652348, -0.04497959092259407, -0.005769052542746067, 0.014752184972167015, -0.021514892578125, 0.01371838990598917, 0.02441471442580223, -0.020079489797353745, -0.04855905473232269, 0.02349555306136608, 0.049781329929828644, -0.05000273138284683, 0.010486012324690819, 0.025216035544872284, 0.05827833339571953, -0.011379286646842957, -0.02787553146481514, -0.010607009753584862, -0.027084069326519966, -0.023489071056246758, -0.04040205106139183, 0.012184628285467625, -0.00598024670034647, -0.006490116007626057, -0.0643850564956665, -0.03203076496720314, -0.015761978924274445, -0.013688835315406322, -0.05067018046975136, -0.01659826934337616, 0.04154351353645325, 0.06279845535755157, 0.029456404969096184, 0.012944071553647518, -0.01984010636806488, -0.005567840300500393, 0.04472753405570984, 0.06134964898228645, 0.007622159086167812, 0.04636122286319733, 0.02823087014257908, 0.008367136120796204, 0.016257669776678085, -0.03965505212545395, 0.03230525925755501, -0.03750341385602951, 0.002852607984095812, -0.0014496524818241596, -0.018910443410277367, -0.027544591575860977, -0.0740792378783226, 0.01915164291858673, 0.02997957356274128, 0.008420213125646114, -0.010057804174721241, -0.04799990728497505, -0.014831488020718098, -0.05554617941379547, -0.011209635064005852, -0.014313735999166965, -0.002778775757178664, 0.02358710579574108, 0.0031177429482340813, -0.0106973210349679, -0.040852341800928116, 0.15014807879924774, 0.042317312210798264, 0.03550470992922783, -0.01752842776477337, 0.018133116886019707, 0.05730626359581947, 0.03258689120411873, -0.01242249645292759, 0.02610037289559841, -0.03450000286102295, 0.012382781133055687, 0.02407120168209076, 0.008213791996240616, 0.015979774296283722, 0.00018124404596164823, 0.07151616364717484, -0.07048442959785461, -0.008355261757969856, 0.023483190685510635, -0.04686500132083893, -0.07675493508577347, 0.013375363312661648, 0.0035097035579383373, 0.027912817895412445, -0.02027095854282379, 0.026866775006055832, 0.01593434438109398, -0.039623141288757324, 0.0024145562201738358, -0.033423807471990585, 0.002569496864452958, -0.028054315596818924, 0.00909538846462965, 0.013748622499406338, -0.048253219574689865, 0.05577646195888519, 0.009523805230855942, -0.020924273878335953, -0.02851843275129795, 0.0286641176789999, -0.014326730743050575, 0.008873874321579933, 0.06510082632303238, -0.01834653690457344, 0.017281508073210716, 0.04399609938263893, -0.027294542640447617, -0.00458681071177125, 0.03433478623628616, -0.041295718401670456, 0.040446147322654724, -0.028627609834074974, 0.05689697340130806, -0.004618956707417965, -0.028431186452507973, 0.008065575733780861, -0.013006149791181087, -0.04740292206406593, 0.0033659464679658413, 0.030955661088228226, 0.05281674116849899, -0.016417711973190308, -0.019835781306028366, 0.02254551462829113, -0.02585224062204361, 0.01995963603258133, 0.016833754256367683, 0.008867137134075165, -0.003325879108160734, 0.0018774119671434164, -0.046074029058218, 0.021425925195217133, 0.0006901641027070582, -0.033516205847263336, 0.021715180948376656, 0.047259628772735596, -0.00843107607215643, 0.028453953564167023, -0.005520681384950876, 0.002556866267696023, -0.011635750532150269, -0.020582612603902817, -0.005201628431677818, -0.017928488552570343, 0.019505133852362633, 0.044558484107255936, -0.030535155907273293, -0.028560474514961243, -0.027964787557721138, 0.050821807235479355, 0.04806926101446152, 0.022341109812259674, -0.030294423922896385, -0.006497448310256004, -0.02255982905626297 ]
Spensa's Cloud-Based Technology Helps Farmers Automate Pest Control Flatiron Taps Vasoncelles of Unum Therapeutics for Chief Medical Officer Brad Bernthal Director, Silicon Flatirons Centers' Entrepreneurship Initiative CEO and Founder, Techstars Anne Swift Founder, Young Inventors Alan Saltiel Director, Life Sciences Institute, University of Michigan Money, Mergers & Expansions For Booktrack, Other SF Startups Bernadette Tansey @Tansey_Xconomy While big tech companies like Google filed their quarterly reports this week, a number of their smaller brethren in San Francisco caught my eye as they recorded their own benchmarks of progress. —Booktrack, which enhances the allure of e-books by adding music and sound effects, said it had closed a Series B financing round that netted $5 million from investors including COENT Venture Partners and Sparkbox Ventures. Booktrack, whose backers also include Peter Thiel, will use the money to try to grow the market for its suite of offerings. They include e-books called Premium Booktracks, which have soundtracks created by the company's own engineers. Booktrack also operates a service that allows authors to add a score to their own books, and the Booktrack marketplace, an e-book store where all these audio-enhanced books can be sold. "Booktrack is creating a new marketplace for authors, publishers and musicians to create soundtracks for their eBooks and reach a new audience of more than 2.5 million readers while earning new revenue streams," CEO Paul Cameron said in the funding announcement. "Booktrack will continue to help schools, parents and people looking to re-engage with reading in a modern, immersive and fun way while also increasing comprehension and retention." Two other San Francisco consumer-tech companies are growing their markets:. —Luxe is expanding its online valet service to Seattle. Luxe is an Uber-like service for people who have their own cars, but sometimes want a driver on-demand to park it while they rush to a meeting, or to drive them home from a party. Luxe already operates in San Francisco, Boston, Los Angeles, and Chicago. With its latest expansion, Luxe will now serve downtown Seattle and other city neighborhoods including Pioneer Square, South Lake Union, Belltown, and Capitol Hill. —Weddington Way, an online wedding commerce site that started by helping brides collaborate with their distant bridesmaids to choose dresses for the big event, has opened a new Gent Shop for tuxedo and suit rentals. Now the groom and groomsmen can also be totally color coordinated with the rest of the wedding party, the company says, because the rented suits include the coat, pants, shirt, vest, tie, cufflinks, and studs. As Weddington Way puts it, "everything but the boxers." Lastly, two San Francisco companies have teamed up with other startups to augment their services: —Edtech company Handsfree Learning is merging with a Philadelphia-based startup, ApprenNet, which has similar goals and methods. Both have been expanding the scope of online learning to hands-on skills through the use of voice-controlled videos and other media. Handsfree Learning's system has been used to teach cooking, dentistry, and cosmetology. The merged company will continue to operate in both San Francisco and Philadelphia under the name ApprenNet. Handsfree Learning co-founder and CEO Paul Freedman will be the chief executive of ApprenNet. Sadly, former ApprenNet CEO Rachel Jacobs, 39, died in an Amtrak train derailment outside of Philadelphia in May. —Zendrive, whose smartphone sensors track driver behavior, is teaming up with Urgent.ly, an on-demand roadside service company whose free app is challenging the venerable subscription-based leviathan AAA. The partnership will take advantage of synergies between the ability of Zendrive's sensors to tell when a car has been involved in an accident, and Vienna, VA-based Urgent.ly's communication features. Urgent.ly detects the accident location, allows the customer to request a tow truck or other help, and also notifies a family member or other contact person. Bernadette Tansey is Xconomy's San Francisco Editor. You can reach her at btansey@xconomy.com. Follow @Tansey_Xconomy Educational Play Kit Company Osmo Sold to India's Edtech Firm Byju's for $120M Soundtrap Lands $6M for Collaborative Music & Audio Creation App Degreed Scores $42M to Grow Worker Training and Skills Platform
[ -0.01240453589707613, 0.0047547658905386925, -0.003641905263066292, 0.0023264519404619932, -0.005661425180733204, 0.012187531217932701, 0.00145282584708184, 0.012362021021544933, 0.0315246619284153, 0.010501964949071407, 0.010812941007316113, -0.013070621527731419, 0.02623498998582363, -0.030202697962522507, -0.012137148529291153, -0.014740223065018654, -0.0145101398229599, 0.0045539396815001965, 0.010633271187543869, -0.0032968376763164997, -0.015668241307139397, 0.030018551275134087, -0.06306397169828415, -0.031857896596193314, -0.02213125303387642, 0.04124204069375992, 0.026598652824759483, -0.014608019962906837, 0.06267610192298889, 0.06680967658758163, 0.011834505945444107, -0.05354120582342148, 0.03552175685763359, -0.06129065155982971, -0.0259026400744915, -0.00440656952559948, 0.0285043828189373, -0.0032954150810837746, -0.04533543065190315, -0.052487459033727646, 0.016061175614595413, -0.01288789976388216, 0.04761310666799545, -0.06242694333195686, -0.017113087698817253, 0.0017151487991213799, 0.0005507428431883454, -0.04043298959732056, 0.018489500507712364, -0.04687650874257088, -0.01610158011317253, -0.009765206836163998, 0.03021557442843914, -0.001245133695192635, 0.0238150916993618, -0.0032363927457481623, -0.024460891261696815, -0.007993132807314396, -0.004493643995374441, 0.02158036082983017, 0.036372262984514236, 0.006919575855135918, 0.02181340381503105, -0.03029254451394081, 0.029818745329976082, 0.023086559027433395, 0.010984973981976509, -0.02387911267578602, 0.014365095645189285, -0.017854927107691765, -0.02298565022647381, -0.008505874313414097, -0.018223237246274948, -0.028705831617116928, 0.007092444226145744, -0.010644140653312206, -0.004765568766742945, -0.028515761718153954, 0.024613279849290848, 0.0034249513410031796, 0.002634250558912754, 0.039578840136528015, -0.022820772603154182, 0.0037776848766952753, -0.07418076694011688, -0.03888621926307678, -0.0062029543332755566, -0.02122102864086628, 0.0009977429872378707, -0.01535378210246563, -0.0019336617551743984, 0.05085870251059532, 0.019457394257187843, -0.008378582075238228, 0.031316567212343216, 0.06161580979824066, -0.03083011507987976, 0.019010335206985474, -0.007170958910137415, 0.006690777372568846, 0.009499733336269855, 0.01224163081496954, -0.007922806777060032, 0.04517054185271263, -0.03537570685148239, 0.010020533576607704, 0.029589742422103882, -0.017359759658575058, 0.011797178536653519, -0.049187395721673965, 0.006119606550782919, -0.002404947066679597, 0.016456322744488716, -0.005949695594608784, -0.011899986304342747, 0.058359015733003616, -0.0138841038569808, 0.018591299653053284, -0.02036624774336815, 0.02932596765458584, -0.029071038588881493, -0.011442987248301506, 0.020829029381275177, -0.034356120973825455, 0.0016873746644705534, -0.0637272372841835, -0.03518976271152496, 0.06540673971176147, -0.032636821269989014, 0.010239455848932266, 0.02168765477836132, -0.035595279186964035, -0.025821004062891006, 0.019381841644644737, 0.021461453288793564, 0.03789623826742172, 0.004726851359009743, 0.029694098979234695, 0.02634834498167038, -0.054209206253290176, 0.03810698166489601, -0.003829552559182048, -0.00015584618085995317, 0.11141011863946915, -0.014057877473533154, 0.03525771200656891, -0.021223368123173714, -0.013680043630301952, -0.029930826276540756, 0.03528958931565285, -0.017965158447623253, 0.0211050882935524, 0.012494172900915146, 0.02148687280714512, -0.009928995743393898, 0.003271512221544981, -0.018559832125902176, 0.015412593260407448, 0.04284924268722534, 0.050052858889102936, -0.009670846164226532, 0.01717112399637699, -0.005860342178493738, 0.05929715558886528, -0.008311531506478786, 0.04029197618365288, -0.019407546147704124, -0.021963728591799736, -0.025647977367043495, -0.01764325425028801, -0.019204668700695038, 0.007532986346632242, -0.027625693008303642, 0.017602764070034027, 0.042614128440618515, 0.028928780928254128, 0.0438590906560421, 0.0013933085137978196, 0.03725140169262886, 0.0037473486736416817, -0.035250239074230194, 0.0008005268755368888, -0.010570568032562733, 0.05841527134180069, -0.008893334306776524, 0.018194066360592842, 0.006887034047394991, -0.021770233288407326, -0.008071048185229301, -0.036003947257995605, -0.003742341883480549, 0.03504684939980507, -0.042920760810375214, 0.025781793519854546, -0.015804709866642952, 0.007599753327667713, -0.021556377410888672, -0.00037535798037424684, 0.002545428229495883, -0.045788832008838654, -0.0370342880487442, 0.03010040521621704, -0.04323084279894829, 0.02150864340364933, -0.030723081901669502, -0.012279604561626911, 0.020294150337576866, 0.06451447308063507, -0.061253055930137634, 0.011225923895835876, 0.03480565920472145, 0.023435702547430992, -0.03965079039335251, -0.025311345234513283, 0.03686782345175743, -0.013376107439398766, -0.0388571172952652, 0.047136832028627396, 0.0007505707326345146, -0.03331298381090164, 0.0011224679183214903, 0.0005324791418388486, 0.03216824308037758, 0.017048895359039307, 0.007617815863341093, 0.0024243255611509085, 0.004659474361687899, 0.0687616765499115, -0.006772605702280998, -0.008268294855952263, -0.0036878057289868593, 0.05612292140722275, 0.025644628331065178, 0.0794893205165863, 0.032021112740039825, 0.01287003979086876, 0.05315275490283966, 0.024644847959280014, -0.014143155887722969, 0.024270523339509964, 0.0016498100012540817, -0.014097421430051327, 0.029346086084842682, 0.02518918365240097, -0.014295270666480064, 0.02546423114836216, -0.007148636505007744, -0.013676699250936508, -0.05412575975060463, 0.03584733232855797, -0.037921302020549774, 0.045104019343853, 0.004607533570379019, 0.03341911733150482, -0.03563098981976509, 0.002405232982710004, 0.012298112735152245, 0.07775305956602097, -0.030902883037924767, -0.013044350780546665, -0.0032980218529701233, 0.021610546857118607, -0.015235449187457561, 0.03846493363380432, 0.023798013105988503, 0.004928982816636562, -0.012330194003880024, 0.029626261442899704, -0.03155361860990524, -0.02592841163277626, -0.056704092770814896, -0.0735716000199318, -0.03435554355382919, -0.032489776611328125, -0.052431218326091766, -0.010506321676075459, 0.02097255177795887, -0.04197508096694946, 0.048557572066783905, 0.009390447288751602, 0.0011597303673624992, -0.049988627433776855, 0.014462491497397423, 0.011797502636909485, 0.02477501705288887, 0.05157025158405304, -0.04497481510043144, 0.040050167590379715, -0.018419520929455757, 0.06007892265915871, -0.03343024104833603, 0.012668626382946968, -0.014360223896801472, -0.028515519574284554, 0.048674918711185455, -0.0076048471964895725, -0.007996249943971634, 0.0008743368089199066, -0.0552947111427784, -0.023034052923321724, -0.007800723891705275, -0.015397712588310242, -0.006833377759903669, 0.012707659043371677, -0.005813792813569307, 0.05001416429877281, 0.018016595393419266, -0.05197501927614212, 0.04706300050020218, 0.02038518153131008, -0.059170085936784744, 0.03544093295931816, 0.0038861967623233795, -0.0028134332969784737, -0.052360065281391144, 0.03313339129090309, 0.037719134241342545, -0.011192281730473042, -0.01872021146118641, -0.02493670955300331, -0.007417740765959024, -0.020977139472961426, -0.009804698638617992, -0.017769910395145416, -0.04449434578418732, 0.021696871146559715, 0.03320331126451492, -0.0723501592874527, 0.02986568585038185, -0.04287062585353851, -0.033802375197410583, -0.03142467513680458, -0.015003260225057602, 0.03365364298224449, 0.0355251282453537, -0.0038597502280026674, 0.007647825870662928, -0.026237109676003456, -0.004972883500158787, 0.026743412017822266, 0.03386300429701805, -0.04057018831372261, 0.005356315057724714, 0.08303893357515335, 0.027470258995890617, 0.02164095640182495, 0.037233494222164154, -0.024859203025698662, -0.011339073069393635, -0.023032156750559807, -0.023705609142780304, -0.0013482255162671208, -0.0071060447953641415, -0.0025694449432194233, 0.023807452991604805, 0.029210297390818596, -0.019840655848383904, -0.011678552255034447, -0.004797336645424366, 0.004125300794839859, 0.023029619827866554, 0.02488999255001545, 0.0228189155459404, -0.0015399104449898005, -0.06008780002593994, -0.021937595680356026, 0.01597871631383896, 0.01073390617966652, 0.037960443645715714, -0.06986103951931, 0.036026619374752045, -0.005037698429077864, -0.036895569413900375, 0.059752728790044785, -0.0560041107237339, -0.003556914860382676, 0.053383562713861465, -0.016616394743323326, 0.034937843680381775, -0.024971453472971916, -0.013496411964297295, -0.017925435677170753, 0.038876011967659, 0.04015704616904259, -0.013491016812622547, 0.026788929477334023, -0.01642640307545662, -0.02638467587530613, -0.02499403804540634, -0.0005576424882747233, 0.0028772528748959303, -0.012482702732086182, 0.01693105138838291, -0.0040365285240113735, -0.0035885884426534176, -0.037646349519491196, 0.012659848667681217, 0.03243868052959442, 0.027086365967988968, -0.005083953961730003, 0.051082793623209, 0.011524681001901627, 0.044012073427438736, 0.031214682385325432, -0.0043207332491874695, 0.009281987324357033, -0.033421169966459274, 0.02809477597475052, 0.025911688804626465, -0.011338133364915848, -0.00740022724494338, -0.01778605952858925, -0.031955331563949585, 0.02400907129049301, 0.0033883980941027403, -0.03127666562795639, -0.047354403883218765, -0.006635662633925676, 0.012009239755570889, 0.04189944639801979, -0.0345463901758194, -0.023785514757037163, -0.04989763721823692, 0.04471207037568092, 0.015289213508367538, -0.021102765575051308, -0.007053751032799482, -0.049413591623306274, 0.03391914442181587, 0.05168355256319046, -0.028802385553717613, -0.04400114715099335, -0.006625745445489883, -0.03642760217189789, -0.016245462000370026, 0.03336809575557709, 0.03666317090392113, 0.030750278383493423, 0.010153393261134624, -0.0336114726960659, 0.03556225076317787, 0.041352126747369766, 0.006662092171609402, 0.013821585103869438, 0.022359095513820648, 0.034049708396196365, 0.028500784188508987, 0.020974554121494293, -0.0017734328284859657, -0.027043431997299194, 0.03535783290863037, -0.041485391557216644, 0.025724902749061584, -0.013466100208461285, -0.022678958252072334, -0.013827010057866573, 0.01406776625663042, 0.007786347530782223, 0.03044241853058338, -0.005878162104636431, 0.005358075723052025, -0.00726207485422492, 0.07064834982156754, -0.02148355543613434, -0.05193981155753136, 0.045665424317121506, 0.017894132062792778, -0.04053383693099022, 0.029683751985430717, 0.04593285545706749, -0.025528162717819214, 0.010958695784211159, 0.00404973141849041, -0.028928764164447784, 0.054350946098566055, -0.04087173938751221, 0.02153763175010681, -0.011566299945116043, -0.050071489065885544, -0.018765516579151154, -0.04920770600438118, 0.011159428395330906, 0.01095898449420929, -0.002309898380190134, -0.04039103537797928, -0.04474955424666405, -0.034956302493810654, 0.009416269138455391, -0.035884931683540344, 0.0372074693441391, 0.005129849538207054, 0.01271478645503521, -0.008141648024320602, 0.022179797291755676, 0.00425108103081584, 0.009011301212012768, -0.0035632241051644087, -0.008839980699121952, 0.02433115616440773, 0.011134863831102848, 0.02565808594226837, -0.07661085575819016, -0.028703859075903893, 0.008418514393270016, -0.018075555562973022, -0.04679756611585617, -0.05892368033528328, -0.008221383206546307, -0.042215436697006226, -0.027768295258283615, -0.02620336227118969, 0.003101251320913434, -0.0019610298331826925, 0.013946113176643848, 0.02889270707964897, 0.0279182530939579, 0.007245891727507114, 0.011430117301642895, -0.02782418578863144, 0.043025050312280655, 0.03521391376852989, -0.006112902890890837, -0.02523060142993927, 0.04869185760617256, -0.017070677131414413, 0.052741583436727524, 0.0034950438421219587, -0.025849293917417526, -0.025940965861082077, -0.0518408939242363, -0.007499681785702705, -0.037780094891786575, -0.025937635451555252, -0.04714881628751755, -0.02688438631594181, -0.021558936685323715, 0.04258578643202782, 0.03082020953297615, -0.01417401060461998, 0.013923827558755875, -0.04085374251008034, -0.01593277044594288, -0.0424063615500927, -0.0238904170691967, 0.00323341297917068, -0.002493245992809534, 0.011573202908039093, 0.05299258977174759, -0.025429559871554375, 0.021100739017128944, -0.020698845386505127, 0.01319426205009222, 0.03187853470444679, -0.0010502717923372984, -0.04892623424530029, -0.033781878650188446, 0.0060509489849209785, -0.014418059028685093, 0.023165790364146233, 0.02588164247572422, -0.05289085581898689, 0.03562860190868378, -0.05881974846124649, -0.00015124584024306387, -0.014580926857888699, -0.0059019471518695354, -0.03353075310587883, -0.007084272336214781, 0.04915491119027138, -0.0008949860348366201, 0.012004144489765167, -0.02167765609920025, 0.06461957097053528, 0.04659556597471237, 0.01662154123187065, -0.03930492326617241, -0.04280417412519455, -0.03823279216885567, -0.04973169416189194, 0.005240217316895723, -0.03504961356520653, -0.011833492666482925, 0.011329066008329391, -0.0182301364839077, 0.03287922218441963, -0.02759624645113945, 0.051950547844171524, 0.05379724130034447, 0.02127970941364765, -0.01669098623096943, -0.019419964402914047, 0.033218130469322205, 0.05415977165102959, -0.008002080023288727, -0.00981514435261488, -0.009764372371137142, -0.024985361844301224, 0.01419751439243555, -0.04550552740693092, -0.04530622437596321, -0.03657000884413719, -0.00449043745175004, 0.07677628099918365, -0.057117775082588196, 0.01300161611288786, 0.012129922397434711, -0.015783173963427544, -0.03788995370268822, 0.06624604016542435, -0.021303534507751465, -0.0007887053652666509, 0.034122567623853683, 0.011509761214256287, -0.0227332953363657, 0.03956623747944832, -0.007306739222258329, 0.02579628862440586, -0.038899969309568405, 0.05799085646867752, -0.039374612271785736, -0.050307441502809525, 0.006975353695452213, 0.052276257425546646, -0.044304586946964264, -0.03858988359570503, 0.017566651105880737, -0.0007911546272225678, 0.0029278264846652746, -0.04314775764942169, 0.028532739728689194, -0.025126302614808083, -0.01353062130510807, -0.0022322465665638447, 0.05253481864929199, -0.015832528471946716, 0.04656402766704559, 0.01736864447593689, 0.02814916893839836, -0.04230593144893646, 0.022919166833162308, 0.023694371804594994, 0.0016368316719308496, -0.03706550970673561, -0.07048003375530243, 0.0041894856840372086, -0.02386315166950226, -0.0116238072514534, 0.04647093638777733, -0.010922138579189777, 0.018450483679771423, 0.028047600761055946, 0.02340872772037983, 0.039617814123630524, -0.007519172504544258, -0.020048614591360092, 0.03433150425553322, -0.039679378271102905, -0.04736779257655144, -0.007046286016702652, 0.010720650665462017, 0.007766608614474535, 0.048536814749240875, -0.08350643515586853, 0.02318388596177101, 0.046644821763038635, -0.012677931226789951, -0.0018838171381503344, -0.04800041764974594, -0.030379801988601685, -0.007495064288377762, -0.03006875514984131, -0.035150572657585144, -0.022411102429032326, -0.0022497992031276226, 0.030784955248236656, 0.0054849013686180115, -0.023805512115359306, -0.009381545707583427, 0.009420257993042469, -0.023025479167699814, 0.00879779364913702, 0.0008902644622139633, 0.04431115835905075, -0.037443023175001144, -0.03380396217107773, -0.04216217249631882, 0.02280133217573166, -0.041419193148612976, 0.009502135217189789, -0.026724783703684807, 0.007007598411291838, 0.008042984642088413, -0.0019942757207900286, 0.018514761701226234, -0.0006759350071661174, -0.02242320589721203, -0.037680160254240036, -0.019945954903960228, 0.036783505231142044, -0.03168167546391487, 0.01517809834331274, 0.03629736974835396, -0.03041630983352661, 0.031753409653902054, -0.0026416543405503035, -0.019159860908985138, -0.04492802545428276, 0.02664918825030327, 0.005809161812067032, 0.004718099720776081, -0.004755917005240917, -0.05704379081726074, 0.02851223759353161, -0.03139246627688408, 0.005524163134396076, -0.012327724136412144, 0.017127541825175285, 0.02894752472639084, -0.0031536887399852276, 0.0030231454875320196, 0.05917631834745407, 0.0039243982173502445, 0.022821199148893356, -0.01245996542274952, 0.037696562707424164, 0.02275305800139904, -0.0030240309424698353, 0.02478765696287155, 0.007762171793729067, 0.013488699682056904, -0.047765400260686874, 0.015353498049080372, -0.0007679811678826809, -0.014114966616034508, 0.011853735893964767, 0.0012462123995646834, -0.006232683081179857, -0.05830583721399307, -0.022083209827542305, -0.02289046347141266, 0.03214140236377716, -0.007531032431870699, 0.02613542228937149, 0.01976115256547928, -0.046013034880161285, -0.04240284487605095, -0.01222713477909565, -0.06165655329823494, -0.04739560931921005, 0.04697726294398308, 0.0035386872477829456, -0.01781405694782734, 0.015567844733595848, -0.032856088131666183, -0.006542044226080179, -0.009088501334190369, -0.018336331471800804, -0.02227037586271763, 0.01683785393834114, -0.0037128867115825415, 0.012185981497168541, -0.0013368912041187286, -0.004321820102632046, 0.00248902291059494, 0.06248228996992111, -0.0534278079867363, -0.0329897403717041, 0.024419520050287247, 0.04476642608642578, -0.005514741875231266, -0.0015707806451246142, -0.024353550747036934, -0.006256579887121916, 0.006040884181857109, 0.009666954167187214, -0.018397312611341476, 0.05328286066651344, -0.01691405475139618, 0.049824271351099014, 0.026564031839370728, 0.02503373846411705, -0.039130620658397675, 0.05752837285399437, -0.0071849822998046875, -0.008683482185006142, -0.027677150443196297, 0.039841748774051666, 0.038100168108940125, -0.011785553768277168, 0.008728395216166973, 0.010825643315911293, 0.014364233240485191, -0.0027937223203480244, 0.006620658095926046, -0.026362961158156395, 0.035698194056749344, 0.048827383667230606, 0.05518367141485214, -0.026948630809783936, 0.024570677429437637, 0.03751632571220398, 0.0001290986401727423, -0.009829849936068058, 0.03082709200680256, 0.008089888840913773, -0.022096483036875725, 0.005844296421855688, -0.05649035423994064, 0.020625831559300423, -0.025158153846859932, -0.03424452990293503, -0.006812582723796368, -0.04374502971768379, 0.0019252524944022298, 0.016511641442775726, -0.03952082619071007, 0.037448979914188385, -0.018963657319545746, -0.006233883555978537, -0.01076037809252739, -0.03256462141871452, -0.006145551335066557, 0.04558635130524635, -0.009730162099003792, -0.012819286435842514, 0.03762643411755562, 0.04481695592403412, -0.007394426967948675, 0.015073041431605816, 0.029683558270335197, 0.03428994119167328, -0.005703813396394253, -0.004558764398097992, 0.010226651094853878, -0.008201324380934238, -0.010756613686680794, 0.056690700352191925, -0.047714587301015854, 0.03040350042283535, -0.010094625875353813, -0.031509220600128174, 0.058265116065740585, -0.054858338087797165, -0.01765296794474125, -0.039663299918174744, 0.016586441546678543, -0.0648181363940239, -0.011425149627029896, 0.032720889896154404, -0.029344648122787476, -0.041912540793418884, 0.029194418340921402, 0.008821122348308563, 0.037299979478120804, 0.021489890292286873, 0.06619097292423248, -0.010551285929977894, 0.03816472366452217, 0.061438124626874924, -0.02302105911076069, -0.02804344892501831, 0.02262287214398384, -0.018324384465813637, -0.022388743236660957, -0.009592153131961823, -0.04887976124882698, 0.011087154969573021, -0.007566456217318773, -0.0253503005951643, -0.005384598392993212, 0.04840608686208725, 0.02090197429060936, -0.033602144569158554, -0.009173430502414703, 0.04144308343529701, -0.05132920667529106, -0.007586598861962557, 0.03927930071949959, 0.01515504252165556, -0.002897013211622834, -0.03865224868059158, -0.00046792018110863864, -0.035174060612916946, 0.012445185333490372, -0.03459318354725838, 0.05689701810479164, -0.0038051309529691935, -0.00563765037804842, -0.030347580090165138, -0.05008910968899727, -0.04418308660387993, -0.02971619926393032, -0.025078946724534035, -0.04847041144967079, 0.04733864963054657, 0.037221938371658325, -0.0008232343825511634, -0.00019721093121916056, -0.02311614155769348, 0.010122363455593586, 0.043728381395339966, 0.06956607848405838, 0.0026590032503008842, 0.05012465640902519, 0.01633569970726967, 0.015385275706648827, 0.015913356095552444, -0.026928646489977837, 0.007956546731293201, -0.032248660922050476, -0.017126567661762238, -0.012837164103984833, 0.03397994488477707, -0.02245442196726799, -0.07072395086288452, -0.007485948968678713, 0.02486994117498398, 0.018473809584975243, -0.014462445862591267, -0.05823345109820366, 0.011845744214951992, -0.06135755032300949, -0.05533852055668831, -0.02873111702501774, 0.013443996198475361, 0.025729332119226456, -0.016980811953544617, -0.005468669347465038, -0.05430899187922478, 0.1927041858434677, 0.0762120708823204, 0.018176550045609474, -0.011669540777802467, 0.004175626207143068, 0.0391828678548336, 0.05011504516005516, 0.0022805631160736084, 0.016536695882678032, -0.04552638158202171, 0.019591715186834335, -0.02870548702776432, 0.029595445841550827, 0.005347244907170534, 0.018438737839460373, 0.05790404602885246, -0.0508790947496891, 0.00034225895069539547, 0.020943323150277138, -0.06375972181558609, -0.05770104005932808, 0.011516074649989605, 0.016485942527651787, -0.009500721469521523, -0.009937704540789127, 0.025174971669912338, 0.021737415343523026, -0.027303574606776237, -0.014342885464429855, -0.022222405299544334, 0.025147629901766777, -0.03944139555096626, 0.03419872745871544, -0.0026039504446089268, -0.0581098347902298, 0.031082192435860634, -0.009982994757592678, -0.002536296145990491, -0.023758744820952415, 0.03623427078127861, 0.007079890463501215, 0.022473735734820366, 0.0203153807669878, -0.03472532704472542, 0.017123766243457794, 0.04092564433813095, -0.01380935125052929, -0.007251839619129896, 0.03942691534757614, -0.05235442891716957, 0.032700832933187485, -0.02713019959628582, 0.05109696090221405, 0.017738109454512596, -0.0269172303378582, 0.006270683370530605, 0.014463071711361408, -0.0007838453748263419, -0.02919168956577778, 0.023938028141856194, 0.03015003353357315, 0.00610382342711091, -0.030900800600647926, 0.0020343009382486343, -0.0325770378112793, 0.00047178182285279036, 0.012803392484784126, 0.00127611611969769, 0.02540626749396324, -0.03312107175588608, -0.050086889415979385, 0.013565659523010254, -0.008453289978206158, -0.01831156574189663, 0.005324699450284243, 0.008622842840850353, -0.01876266673207283, 0.0355420783162117, -0.02413015067577362, -0.0009305479470640421, -0.0009529194794595242, -0.04186737909913063, -0.006589551456272602, 0.015146820805966854, 0.03513723984360695, 0.0565357431769371, -0.043776072561740875, -0.03469501808285713, -0.0444677397608757, 0.03493056818842888, 0.06400838494300842, 0.020071757957339287, -0.0025381988380104303, -0.004211700987070799, -0.012892686761915684 ]
A well designed business class area. Good, friendly staff. Comfortable seating, with full reclining bed a real bonus. Entertainment system OK, although routing on handheld device a bit quirky. Choice of films and music reasonable. although more under "classic" heading would have been welcome. Food and beverages very good. Good selection of wines, but from a personal standpoint would have welcomed a slightly larger range of whiskies (my own preference is for Islay malts). Only main issue on this flight (and not on the return journey from Doha to London on 2 April) was a group of passengers mingling in the open area behind row 5 who were drinking more than other business class passengers and were becoming louder as the flight progressed. Fortunately it was a daytime flight (2.00pm departure from Gatwick) and the noise reducing headphones proved a real blessing in diminishing the sense of intrusion, but some passengers were trying to sleep and the noise was detrimental to this. Staff tried their best to mitigate the intrusion but the group seemed determined to be noisy. Procedures for both boarding and disembarking were very smooth and we were able to transfer to our ongoing flight with ease. Economy. Seats are very cramped (width wise, as well as leg-room wise). I am not tall 5-7, and even I had problem. It is also very uncomfortable when the passenger in front of you reclines their seat. Thankfully the flight attendants made sure every one had their seat in upright position when meals were served. Even with that, it was hard to eat. Also it was a struggle to get the seats to a reclining position, and even harder to get them back to upright (it may just have been me). The service was good: flight attendants were cheerful and attentive. The food was excellent (at par with and sometimes exceeding that of Emirates). The entertainment system was also good (not as many choices that you get in Emirates, but varied enough). However the cramped seat made me wish I had availed myself of their business class upgrade offer for this leg of the journey (12.5 hours). This flight was the most cramped I have ever been on. I'm 5'11", not overly tall but had bruised knees after the flight. The seat pitch is not as advertised, in addition the seat width is thinner than anything I have experienced before, i had to sit an an angle to fit shoulders with the passenger next to me. Food was delicious, but eating it was a struggle in the seats, even though the seat in from hadn't reclined! Service was poor, on several occasions I asked crew for water and they forgot to come back. Rubbish took 2 hours to be collected after the meal. Excellent seat, but on the other hand it was business class. Very nice for solo travelers. There are two small compartments on both hand sides that are very convenient for storing small items. Power supply it is also cleverer placed, and the cable is not easily trapped. Window blinds are automatically controlled but unfortunately they don't get fully dark. Finally, there is a hidden drawer, I suppose for shoes, just at the floor level towards the aisle. Aisle seat as usual. Very nice facility. Except for the head rest which can only be shifted up or down unlike its 777. Leg room is bad and narrow. I am not big but have longer legs (stand at 175) so an unintentional stretch may reach the front passenger. I was used to their 777 and almost will not recommend. Choosing row 10 and 26 probably helps a fair bit. Very good seat like most other seats in business class. The A and K seats are good for solo travelers, E and F is better for people travelling together (unless a window is important). but have TOTAL CONTROL of my baggage. yet hope to bring a carload of cases. Show me an hourly rate per 100kilos - maybe on selected flights,and I would be Most Interested.. Comfortable seating. However the view outside is blocked due to wings of the aircraft.
[ 0.006142834201455116, -0.010359534993767738, -0.004580535460263491, 0.004028654657304287, -0.011870276182889938, -0.00844445638358593, -0.0046753413043916225, 0.021823197603225708, 0.006287535652518272, 0.005739110521972179, 0.05364695563912392, 0.003038958879187703, -0.008763098157942295, -0.030748946592211723, -0.016840605065226555, -0.01235041581094265, -0.02309405617415905, -0.009745735675096512, -0.021832631900906563, -0.024654068052768707, 0.0010042790090665221, -0.019851839169859886, -0.056755103170871735, -0.040054354816675186, -0.012090545147657394, 0.05357978865504265, 0.038818806409835815, 0.005838010460138321, 0.081050343811512, 0.06267845630645752, -0.002587951021268964, -0.043054040521383286, 0.050756875425577164, -0.0414915569126606, -0.02825826406478882, -0.009001413360238075, 0.019808325916528702, -0.04376472905278206, -0.022919226437807083, -0.04881427809596062, 0.01380442176014185, -0.024941734969615936, 0.03306331858038902, -0.03409480303525925, -0.006765312980860472, 0.00023737501760479063, 0.01451912336051464, -0.025167962536215782, 0.04774506017565727, -0.06426522135734558, 0.0008156471885740757, 0.0014706412330269814, 0.0132870152592659, -0.022844621911644936, -0.011165866628289223, -0.0016778582939878106, 0.011690930463373661, 0.023500600829720497, -0.039123985916376114, 0.0518605038523674, 0.046819720417261124, 0.01116179209202528, 0.04312443360686302, -0.05415383353829384, 0.022910265251994133, 0.00595988892018795, -0.011393716558814049, 0.017228640615940094, 0.0017594732344150543, 0.003095834283158183, -0.004861132707446814, 0.011462550610303879, 0.005519008729606867, -0.008026794530451298, -0.015430820174515247, -0.011732026003301144, -0.003013467648997903, -0.015183466486632824, 0.01058671809732914, -0.004241441376507282, 0.0422968715429306, 0.030291957780718803, 0.01271725818514824, -0.010194279253482819, -0.06419302523136139, 0.004705514293164015, 0.024373065680265427, 0.04276846721768379, 0.008629976771771908, 0.024324849247932434, 0.011915093287825584, 0.07242625951766968, 0.0020432183519005775, -0.05451904237270355, 0.03263901174068451, 0.04247654974460602, -0.03827638551592827, 0.026086021214723587, 0.00748113077133894, 0.006387840025126934, 0.027756188064813614, 0.01579403318464756, -0.004129630047827959, 0.029610376805067062, -0.06051776558160782, -0.004779099021106958, 0.01404175441712141, -0.02536376193165779, 0.012463215738534927, -0.017549218609929085, -0.025554852560162544, -0.004584191832691431, 0.02050725929439068, -0.028450841084122658, -0.014331623911857605, 0.04904359206557274, -0.005250328220427036, 0.05787639692425728, -0.05561613664031029, 0.05618328973650932, 0.014056898653507233, 0.009134824387729168, 0.05062367767095566, -0.017889590933918953, -0.0058893803507089615, -0.0629090815782547, -0.008800510317087173, 0.048085201531648636, -0.03296416997909546, -0.04421937093138695, 0.018120083957910538, -0.03518902137875557, -0.047199685126543045, 0.027608921751379967, 0.0078206155449152, -0.0005672482075169683, -0.002490974497050047, 0.05528784915804863, -0.006044901441782713, -0.048450808972120285, 0.049014680087566376, 0.02625272236764431, 0.0167254451662302, 0.11514592915773392, 0.008179294876754284, 0.02666187286376953, 0.009631632827222347, 0.00035240064607933164, -0.05403798073530197, 0.005428488366305828, -0.018325325101614, 0.029673367738723755, 0.009308021515607834, 0.025407938286662102, 0.01727786287665367, -0.035250235348939896, -0.017279623076319695, 0.02237776108086109, 0.026922255754470825, 0.011129959486424923, -0.028996987268328667, 0.029708728194236755, -0.004990779794752598, 0.04933040216565132, 0.004756555426865816, 0.028823040425777435, -0.008481238037347794, -0.01547196228057146, 0.022707074880599976, -0.04496920108795166, 0.000035622622817754745, 0.00808743480592966, 0.009491519071161747, 0.010779716074466705, 0.015232967212796211, 0.048027247190475464, 0.04244660586118698, 0.014930115081369877, 0.051368117332458496, 0.03316112980246544, -0.03647628054022789, -0.021837707608938217, -0.0006266934797167778, 0.0446702279150486, 0.018017202615737915, -0.006006279494613409, 0.031154602766036987, -0.02192508615553379, -0.04856770858168602, -0.0562821589410305, -0.018591932952404022, 0.03684559836983681, -0.03404168412089348, 0.05191222205758095, 0.0057326010428369045, 0.005992588121443987, -0.011847061105072498, -0.014310610480606556, -0.02205871231853962, -0.01442194264382124, -0.024530455470085144, 0.031208284199237823, -0.05848227068781853, 0.05712537840008736, 0.01152875553816557, -0.02436600625514984, 0.002587203634902835, 0.0579095259308815, -0.014082465320825577, 0.005879096686840057, 0.05562204122543335, 0.0010365345515310764, -0.024511994794011116, -0.02057282067835331, -0.0009940682211890817, -0.03627463057637215, -0.02828134223818779, 0.042770031839609146, 0.019993649795651436, -0.022508976981043816, 0.006552399601787329, 0.008575275540351868, 0.013591846451163292, 0.008649025112390518, -0.021813666447997093, 0.01693546772003174, 0.009672190062701702, 0.0615188293159008, -0.015718067064881325, -0.013300739228725433, -0.03438348323106766, 0.034849073737859726, 0.02647806704044342, 0.07670644670724869, 0.03683772683143616, 0.003506266977638006, 0.02930561453104019, 0.002703386126086116, 0.00966380350291729, 0.004776604939252138, -0.020492009818553925, 0.024380039423704147, 0.04819294437766075, 0.009129369631409645, 0.00364480447024107, 0.03425104543566704, -0.005271079018712044, -0.013334003277122974, -0.020189156755805016, 0.021199706941843033, 0.022600678727030754, 0.04644625261425972, 0.00891023688018322, 0.04138036444783211, -0.02047790214419365, 0.019551774486899376, 0.04298575222492218, 0.05832190811634064, 0.003248911816626787, -0.017818013206124306, -0.022126920521259308, 0.005566516425460577, -0.007923376746475697, 0.0038107966538518667, 0.008218466304242611, 0.004768536891788244, -0.022297414019703865, 0.014932346530258656, -0.020340243354439735, -0.06437253952026367, -0.04200780391693115, -0.05256538838148117, -0.04969921335577965, -0.03537449985742569, -0.023662669584155083, -0.0036263319198042154, 0.03834420070052147, -0.02036099322140217, 0.06684332340955734, -0.015492658130824566, 0.0037446566857397556, -0.010671219788491726, -0.006518397945910692, 0.05748234689235687, 0.01704031229019165, 0.044697146862745285, -0.022943325340747833, 0.04334903880953789, -0.011488385498523712, 0.027611492201685905, -0.02890431135892868, -0.002206540899351239, -0.017439881339669228, -0.012710262089967728, 0.055526167154312134, -0.035942841321229935, -0.0036046034656465054, 0.0449325256049633, -0.05219339579343796, -0.034942395985126495, -0.007682172581553459, 0.020975349470973015, 0.012955830432474613, 0.013823134824633598, -0.043007753789424896, 0.06023387610912323, 0.01147313043475151, -0.014834018424153328, 0.029098838567733765, 0.049598902463912964, -0.02834070473909378, 0.0067314147017896175, 0.02174149639904499, -0.0161118283867836, -0.035155944526195526, 0.04427454248070717, 0.035688724368810654, 0.012195674702525139, -0.03777088597416878, -0.036213114857673645, -0.01491688285022974, 0.025706851854920387, 0.04651590809226036, 0.006724660750478506, -0.015002249740064144, 0.035161904990673065, 0.020866548642516136, -0.04469938576221466, 0.050171054899692535, -0.05019722133874893, -0.03559233620762825, -0.050325337797403336, -0.04889539256691933, 0.0014383964007720351, 0.012166118249297142, 0.015646660700440407, 0.03760707005858421, -0.03374413400888443, 0.022742675617337227, 0.01367489155381918, 0.015414834022521973, -0.016738710924983025, 0.009779754094779491, 0.03808949515223503, 0.00918121449649334, 0.0282401405274868, 0.020985232666134834, -0.030881809070706367, -0.010606780648231506, -0.017150798812508583, -0.00858218502253294, 0.017284611240029335, 0.029654083773493767, 0.036784056574106216, 0.049799513071775436, 0.03786527365446091, -0.024044865742325783, -0.009066910482943058, -0.004871469456702471, 0.010783679783344269, 0.04500032216310501, -0.03190499544143677, 0.023998860269784927, -0.021373271942138672, -0.03483472764492035, -0.04476131126284599, 0.02326885797083378, 0.024139968678355217, 0.03562353923916817, -0.039408210664987564, 0.06654307246208191, -0.0045957486145198345, -0.05185195058584213, 0.05339423194527626, -0.05345791205763817, 0.005638965871185064, 0.03655695915222168, -0.015157519839704037, 0.03359992802143097, -0.03759172931313515, 0.016820818185806274, -0.05182686075568199, -0.001048098667524755, 0.023746395483613014, -0.039671313017606735, 0.035792771726846695, -0.05000072717666626, -0.013859742321074009, -0.023421889171004295, -0.033436842262744904, -0.004593458492308855, 0.01711302623152733, 0.020028812810778618, -0.0016918391920626163, -0.03560544177889824, -0.03537580370903015, 0.022052457556128502, 0.03245232626795769, 0.028712105005979538, -0.008780120871961117, 0.027302682399749756, 0.018026001751422882, -0.008550910279154778, 0.04243721812963486, -0.013201775029301643, 0.022387772798538208, -0.018066421151161194, 0.04310807213187218, 0.007844400592148304, -0.03585292026400566, -0.034196674823760986, -0.03510301560163498, -0.0018727349815890193, 0.021042538806796074, -0.0021122549660503864, -0.0028440977912396193, -0.03737536072731018, 0.01787455752491951, 0.013749494217336178, 0.013786275871098042, -0.05171782150864601, -0.03246795013546944, 0.0027782439719885588, 0.04594065621495247, 0.025525426492094994, -0.07097873836755753, -0.0030401914846152067, -0.038186002522706985, 0.07018430531024933, 0.050894372165203094, -0.03185534477233887, -0.057449620217084885, -0.03151191398501396, -0.004907635040581226, -0.01599038392305374, -0.006660824175924063, 0.041391029953956604, -0.0011027769651263952, 0.011334777809679508, -0.03503137454390526, 0.04295596480369568, 0.03546571731567383, -0.047299858182668686, 0.007143672090023756, -0.016115307807922363, 0.019574344158172607, -0.00820045918226242, 0.057168301194906235, -0.0005356186302378774, 0.0018996595172211528, 0.028152387589216232, -0.04943247139453888, 0.004934641066938639, -0.012270678766071796, -0.0385870486497879, -0.007104797288775444, 0.01754881627857685, 0.022455452010035515, 0.03473806008696556, 0.015044230967760086, 0.029565241187810898, -0.009704576805233955, 0.015679553151130676, -0.002471270738169551, -0.02580225095152855, 0.046454980969429016, 0.01204580906778574, -0.0323687382042408, 0.034792594611644745, 0.016812030225992203, -0.012462874874472618, -0.010464534163475037, 0.04472890496253967, -0.01684783585369587, 0.03430666774511337, -0.03929346427321434, 0.024082547053694725, -0.018287423998117447, -0.037726566195487976, -0.004199156071990728, -0.0538434162735939, 0.026828516274690628, -0.0016203616978600621, -0.0040310947224497795, -0.060259461402893066, -0.04564540460705757, -0.00920519046485424, 0.011447723954916, -0.029948431998491287, 0.04836547002196312, 0.009564896114170551, -0.006828716024756432, -0.0062377359718084335, -0.035304486751556396, -0.016048237681388855, -0.0027626666706055403, -0.005220373161137104, 0.026059871539473534, -0.0013579775113612413, 0.015099559910595417, 0.01845431514084339, -0.005390840116888285, -0.01933818683028221, -0.005866353865712881, -0.014974095858633518, -0.03336334973573685, -0.07079196721315384, -0.008058037608861923, -0.021619373932480812, 0.007194510195404291, -0.024353569373488426, 0.010622172616422176, -0.004570025950670242, -0.0046744272112846375, -0.0030616323929280043, -0.00018188396643381566, 0.004584408365190029, 0.010598386637866497, -0.019557055085897446, 0.04870377853512764, 0.024868877604603767, -0.04145962372422218, -0.014931794255971909, 0.058517854660749435, -0.011069436557590961, 0.030658503994345665, -0.005935446359217167, -0.010836807079613209, -0.02837389148771763, -0.06193726137280464, -0.02526184357702732, -0.0218436848372221, -0.021623700857162476, -0.05474492907524109, -0.04248638451099396, -0.03283144533634186, 0.00788359995931387, 0.0034069065004587173, 0.014646237716078758, -0.025781210511922836, -0.047018736600875854, 0.00028410294908098876, -0.02167128026485443, -0.027633216232061386, -0.033229123800992966, 0.03347522020339966, 0.011314967647194862, 0.034973662346601486, -0.007280054036527872, 0.0386071503162384, 0.014412778429687023, 0.014979338273406029, 0.03038775734603405, -0.0420888252556324, -0.045265231281518936, -0.045774560421705246, -0.00756088737398386, 0.024808038026094437, 0.00010805243800859898, 0.0009618806070648134, -0.03371349349617958, 0.04902331158518791, -0.06961715966463089, -0.0003469848888926208, 0.00743844173848629, 0.005085387267172337, -0.022921239957213402, -0.03211882337927818, 0.07233668863773346, -0.024029459804296494, 0.029646776616573334, 0.0017814460443332791, 0.04574904963374138, 0.06149400770664215, -0.007916171103715897, -0.047705259174108505, 0.0008274266147054732, -0.04001011326909065, -0.06210539489984512, 0.009605899453163147, -0.03698832914233208, -0.035833872854709625, -0.013701329007744789, -0.016360146924853325, 0.018344126641750336, -0.005574791692197323, 0.0413665845990181, 0.06765163689851761, -0.03744664043188095, -0.020163986831903458, -0.03752446919679642, 0.01639772765338421, 0.029185470193624496, -0.014566746540367603, 0.0046793255023658276, 0.006127425003796816, -0.01563296653330326, -0.009916000999510288, -0.03938351571559906, -0.011480005457997322, -0.0521831251680851, -0.0390472374856472, 0.05687112733721733, -0.019710956141352654, 0.05172857269644737, 0.004832805134356022, -0.06328855454921722, -0.04243495687842369, 0.0446154922246933, -0.005505742039531469, 0.004310022108256817, 0.05756773799657822, 0.0028687226586043835, -0.03740512207150459, -0.0271595548838377, 0.014122530817985535, -0.01691179722547531, -0.030584702268242836, 0.07381542772054672, -0.041520263999700546, -0.03681236505508423, 0.01575680449604988, 0.06240290403366089, -0.05370718240737915, -0.037824470549821854, 0.0032824163790792227, -0.0014545362209901214, -0.026297450065612793, -0.04234856739640236, 0.04626883938908577, -0.014780564233660698, -0.01084145624190569, 0.017028747126460075, 0.022805074229836464, -0.007689599879086018, 0.07127007097005844, 0.012399887666106224, 0.0279665719717741, -0.050641968846321106, 0.0027993391267955303, 0.041471030563116074, -0.03565771132707596, -0.01668570376932621, -0.030945397913455963, 0.007826723158359528, 0.01527001615613699, -0.0028748211916536093, 0.05653033405542374, -0.01694365404546261, 0.03355953097343445, 0.005734347738325596, 0.010092458687722683, 0.06289499253034592, -0.007192487828433514, 0.007702089846134186, 0.03202584385871887, -0.034342583268880844, -0.021647397428750992, -0.04951918125152588, 0.02312629483640194, -0.027582671493291855, 0.031177405267953873, -0.012029624544084072, 0.027359770610928535, 0.029048390686511993, -0.015532073564827442, -0.015739744529128075, -0.06538733094930649, -0.044817619025707245, -0.04619401693344116, -0.06130014732480049, -0.037415724247694016, -0.0361650288105011, -0.0068160914815962315, 0.006473000161349773, 0.023212682455778122, -0.01903396099805832, -0.027926942333579063, -0.026619743555784225, -0.029123801738023758, 0.028805911540985107, -0.025717588141560555, 0.03127509728074074, -0.02821885421872139, -0.06315135210752487, -0.02760821022093296, -0.01863323152065277, -0.027548203244805336, 0.015159215778112411, -0.022179165855050087, 0.0017398588825017214, -0.023901356384158134, 0.028751879930496216, 0.010098112747073174, 0.014230786822736263, -0.0270977932959795, -0.024829331785440445, -0.03729871287941933, 0.014320746064186096, 0.00002582995693956036, 0.04575119540095329, -0.0001687653420958668, -0.03276452794671059, 0.0274664219468832, 0.010329539887607098, -0.011975642293691635, -0.0007321739103645086, -0.014758395962417126, 0.009855730459094048, -0.0030603499617427588, -0.05725429952144623, -0.01745258830487728, -0.0005753763252869248, -0.014473644085228443, 0.05706435441970825, -0.024092810228466988, 0.007597941439598799, 0.01385660469532013, -0.020235568284988403, 0.03125473111867905, 0.07997863739728928, -0.012673987075686455, 0.03755088523030281, -0.002778786700218916, -0.011573215015232563, 0.019433800131082535, -0.01469303760677576, 0.007895303890109062, 0.004450101871043444, 0.02753870002925396, -0.03374223783612251, -0.010997399687767029, 0.046420443803071976, -0.028003811836242676, 0.025245804339647293, -0.024073585867881775, -0.018109135329723358, -0.06675161421298981, 0.026787079870700836, 0.014655189588665962, 0.0705704465508461, 0.018933573737740517, 0.00834735855460167, 0.03995273634791374, -0.03894849866628647, -0.053585272282361984, 0.005576897878199816, -0.05195824056863785, -0.021448109298944473, 0.014101176522672176, -0.0048618922010064125, 0.0007712551741860807, -0.034748781472444534, -0.029103431850671768, 0.0197500828653574, -0.011858283542096615, -0.0198429673910141, -0.00228671170771122, 0.04018629342317581, -0.023098040372133255, 0.030297331511974335, -0.021218040958046913, -0.012676557525992393, 0.028614191338419914, 0.024223024025559425, -0.05051719397306442, -0.05824180692434311, 0.007814921438694, 0.005455159116536379, -0.0021360195241868496, 0.0037851789966225624, -0.022540323436260223, 0.056347306817770004, -0.01145363599061966, -0.010709487833082676, -0.004526390694081783, 0.013583014719188213, 0.009778841398656368, 0.0323016531765461, 0.008558978326618671, -0.00390744861215353, -0.03354305028915405, 0.0197432991117239, 0.0182998925447464, -0.02683262899518013, -0.05133567005395889, 0.04121541231870651, 0.05391964316368103, -0.004772917367517948, 0.03295375406742096, 0.01850200816988945, 0.03984449803829193, -0.012843863107264042, 0.002521469723433256, -0.02134787291288376, 0.03255172446370125, 0.045989394187927246, 0.005088247358798981, -0.014900440350174904, 0.04467789828777313, 0.03203126788139343, 0.0073173800483345985, -0.01853357069194317, 0.05207011103630066, 0.03944157436490059, -0.026757914572954178, 0.028861043974757195, -0.017220981419086456, 0.015179491601884365, -0.007938227616250515, -0.020060671493411064, -0.008432230912148952, -0.018979039043188095, -0.010453685186803341, 0.012018654495477676, -0.011171267367899418, 0.05692855268716812, -0.027987312525510788, -0.01704113930463791, -0.015139453113079071, -0.013199875131249428, 0.00814243033528328, 0.05058777332305908, 0.01033860258758068, 0.008420545607805252, 0.015042115934193134, 0.009649418294429779, 0.01244642399251461, 0.03983047232031822, 0.00481751561164856, -0.007176688872277737, -0.030305923894047737, 0.020634233951568604, 0.012737267650663853, -0.03857573866844177, -0.033597204834222794, 0.015516112558543682, -0.032597627490758896, 0.026222866028547287, -0.049503639340400696, 0.007334601134061813, 0.010774688795208931, -0.06808395683765411, -0.010826319456100464, -0.03849513456225395, 0.017427634447813034, -0.08015657216310501, -0.018296964466571808, 0.012851853854954243, -0.005094933323562145, -0.02932308241724968, 0.02809349074959755, 0.010518248192965984, 0.008129499852657318, 0.028882747516036034, 0.0421745739877224, 0.001386685180477798, 0.025681382045149803, 0.05255671218037605, -0.01705128885805607, -0.028486285358667374, 0.01983531564474106, -0.013585247099399567, -0.027001699432730675, -0.032944172620773315, -0.04012126103043556, -0.0124899260699749, -0.010299894027411938, 0.005868252832442522, 0.006298379506915808, 0.042546309530735016, 0.011165645904839039, -0.04368121922016144, 0.0027946443296968937, 0.03420661762356758, -0.045119550079107285, 0.03153950721025467, -0.0023435018956661224, 0.03698251396417618, -0.03083518147468567, -0.023819874972105026, -0.04246482998132706, -0.036208972334861755, 0.02244647778570652, -0.015308362431824207, 0.03256983682513237, -0.0024709689896553755, -0.039926156401634216, -0.03840084746479988, -0.020786097273230553, -0.014442570507526398, -0.010697697289288044, -0.06242474541068077, -0.05877021327614784, 0.05314211547374725, 0.03600537031888962, 0.01667964644730091, 0.03276342898607254, -0.014135518111288548, -0.002423795871436596, 0.002486749552190304, 0.08638546615839005, -0.004500468261539936, 0.0390356071293354, 0.026951299980282784, -0.003137673018500209, 0.01747831702232361, -0.05031997337937355, 0.030051516368985176, -0.024408921599388123, -0.0026897385250777006, -0.001672716811299324, -0.002589066978543997, -0.004197447095066309, -0.04501783102750778, -0.0009858126286417246, 0.008158697746694088, 0.024543918669223785, -0.027475591748952866, -0.06731265038251877, 0.015456588007509708, -0.06643155962228775, -0.008832428604364395, -0.0448925606906414, 0.04314659535884857, 0.045135267078876495, 0.016759753227233887, -0.02608632482588291, -0.03657390549778938, 0.13589036464691162, 0.06251227855682373, 0.004099736455827951, 0.010608219541609287, 0.0035882415249943733, 0.04524555429816246, 0.022480372339487076, -0.017766332253813744, 0.00934908352792263, -0.02770102582871914, 0.03728972375392914, 0.0052633145824074745, 0.04274774342775345, 0.005901009310036898, 0.021409425884485245, 0.05689069628715515, -0.025909295305609703, -0.010174472816288471, 0.04831501841545105, -0.0412038154900074, -0.04663486406207085, 0.018061388283967972, 0.020656730979681015, -0.006353670731186867, -0.005308924708515406, 0.02733212150633335, 0.04517185688018799, -0.0765056386590004, -0.014559142291545868, -0.05202604830265045, 0.008243972435593605, -0.06902985274791718, 0.03915993869304657, -0.002085129264742136, -0.03940163925290108, 0.06143548712134361, 0.013449408113956451, -0.04202685505151749, -0.013978427276015282, 0.009188564494252205, -0.004257508087903261, -0.0045216078869998455, 0.028361525386571884, -0.04130731150507927, -0.007319679483771324, 0.0445774681866169, -0.03159724920988083, 0.019094940274953842, 0.0321248359978199, -0.050408486276865005, 0.03305862098932266, -0.036135248839855194, 0.034751031547784805, -0.015181067399680614, -0.02398785389959812, -0.011943819001317024, 0.0036339806392788887, -0.024018127471208572, 0.0011644939659163356, 0.008820567280054092, 0.011412812396883965, -0.005548849236220121, -0.017413580790162086, -0.0008465630817227066, -0.03265762701630592, 0.006261340342462063, 0.02577071450650692, 0.009878130629658699, -0.0025318353436887264, -0.03336092084646225, -0.026416130363941193, 0.007638915441930294, -0.01948876865208149, 0.00490918755531311, 0.0466025173664093, 0.006959994789212942, -0.035558536648750305, 0.02410493791103363, 0.044005632400512695, -0.03239534795284271, 0.004467432852834463, -0.0011100801639258862, 0.0014885147102177143, 0.0011288506211712956, 0.014225986786186695, 0.04242810606956482, -0.038881417363882065, -0.05889689177274704, -0.03230445459485054, 0.04462301731109619, 0.06060658022761345, 0.040148116648197174, -0.002179125091060996, -0.012389525771141052, -0.02207197993993759 ]
Pepero (빼빼로) é um biscoito doce em forma de palito coberto de chocolate produzido pela Lotte na Coreia do Sul desde 1983. É similar ao biscoito japonês Pocky. Pepero Day Pepero Day é uma iniciativa de marketing para impulsionar a venda do produto. Neste dia as pessoas devem comprar o biscoito para presentear aqueles que lhe são queridos. Ver também Pocky Ligações externas Pepero Site (Coreano) Culinária da Coreia do Sul Biscoitos
[ -0.015500452369451523, -0.002001621760427952, -0.02012416534125805, -0.001946592703461647, -0.015589442104101181, 0.003030836582183838, 0.0205822940915823, 0.04092472046613693, 0.014899756759405136, 0.030661631375551224, 0.024870747700333595, 0.005249166861176491, -0.023828810080885887, -0.007604451384395361, -0.009797907434403896, -0.0029082060791552067, -0.008387353271245956, -0.04736886918544769, -0.02852518856525421, 0.026883676648139954, 0.018821459263563156, 0.012295223772525787, -0.04607434198260307, -0.054615527391433716, 0.0006014517275616527, 0.055030833929777145, 0.034915149211883545, -0.0011617833515629172, 0.061986375600099564, 0.0454208105802536, -0.0036509823985397816, 0.002094072289764881, 0.036298878490924835, -0.052321434020996094, 0.0045804958790540695, 0.013931119814515114, 0.03413601964712143, -0.015534283593297005, -0.014584679156541824, -0.08781798183917999, -0.010971198789775372, -0.03904411941766739, 0.04243893548846245, -0.023264411836862564, -0.05175328627228737, -0.004170103929936886, -0.011851254850625992, -0.05402226746082306, 0.025882543995976448, -0.0068446011282503605, 0.013172666542232037, 0.011950532905757427, 0.03650209680199623, 0.02475552074611187, -0.002905889879912138, 0.01341149304062128, 0.03698248416185379, -0.011821518652141094, -0.03743092343211174, 0.04722118377685547, -0.005816696211695671, -0.008933773264288902, 0.04094209894537926, -0.06676369160413742, 0.030138546600937843, -0.006375201046466827, 0.0004382826737128198, 0.0012426809407770634, -0.0022241296246647835, -0.056720513850450516, 0.010197974741458893, -0.004544518887996674, 0.0019512157887220383, -0.04268195480108261, 0.019370192661881447, -0.003126352559775114, -0.0005019659292884171, -0.0029670335352420807, -0.02200886607170105, 0.003690197831019759, 0.03952614217996597, 0.060364965349435806, 0.05202747508883476, 0.02986612729728222, -0.058864157646894455, -0.006650382652878761, 0.02121836133301258, 0.0027548412326723337, 0.01237492449581623, 0.004145342856645584, -0.01246523205190897, 0.05024602264165878, -0.02381492592394352, 0.015924576669931412, 0.040584031492471695, 0.05191732943058014, -0.043783679604530334, 0.04262477532029152, -0.020920706912875175, 0.017384959384799004, 0.0677688792347908, 0.04056365787982941, -0.0014626715565100312, 0.06309009343385696, -0.03149029240012169, -0.020695414394140244, 0.02287272736430168, 0.004562634043395519, -0.02016034722328186, -0.020892880856990814, 0.023248111829161644, -0.03330942243337631, 0.010377729311585426, -0.0032412689179182053, -0.016907012090086937, 0.047733306884765625, -0.005491713061928749, 0.0039598774164915085, -0.03693274036049843, -0.011632462963461876, -0.009516880847513676, -0.015963319689035416, 0.047745514661073685, 0.001057861722074449, 0.008197975344955921, -0.02754572406411171, -0.04405032470822334, 0.039308734238147736, -0.03265969455242157, -0.016049398109316826, -0.010888856835663319, -0.018857179209589958, 0.02662765048444271, 0.017847737297415733, -0.008619622327387333, 0.055036552250385284, -0.01861516758799553, 0.006733194924890995, 0.049914851784706116, -0.057617831975221634, 0.06515450775623322, 0.02422945387661457, -0.003372706938534975, 0.06077277660369873, 0.008351328782737255, 0.012891271151602268, -0.025605782866477966, -0.0035785234067589045, -0.006628187373280525, 0.021199770271778107, -0.025964975357055664, -0.017675666138529778, 0.005011128261685371, 0.047694671899080276, 0.02274302765727043, 0.029674850404262543, -0.0022867852821946144, 0.04119229316711426, 0.013174065388739109, 0.006931122392416, -0.05485980585217476, 0.005314752925187349, -0.010196893475949764, 0.03116273321211338, -0.01646200753748417, 0.047996532171964645, -0.030674781650304794, 0.006892876699566841, -0.02967868372797966, -0.049037083983421326, 0.01805063709616661, -0.004106521140784025, -0.01949378289282322, 0.010318226180970669, 0.012647680006921291, 0.035134848207235336, 0.01686055026948452, 0.009654494933784008, 0.049854397773742676, 0.032343942672014236, -0.044058285653591156, -0.03219388425350189, -0.012930848635733128, 0.06410883367061615, 0.02175748161971569, 0.0018438552506268024, -0.009792809374630451, -0.04984626546502113, -0.019463248550891876, -0.0284015703946352, -0.02445913292467594, 0.004250355064868927, -0.0014350541168823838, 0.02009662427008152, 0.004219214431941509, 0.020630594342947006, 0.0008169141365215182, -0.034438956528902054, -0.015440952964127064, -0.05983146280050278, -0.007475204300135374, 0.0721365213394165, -0.014076542109251022, 0.031010117381811142, 0.00813828594982624, -0.028207654133439064, 0.02106974460184574, 0.05878986790776253, -0.05293724685907364, 0.03033570945262909, 0.0187735166400671, 0.014859448187053204, -0.01105045061558485, -0.009971835650503635, -0.03451891615986824, -0.021072424948215485, -0.014683826826512814, 0.03800630569458008, 0.011426487006247044, -0.0027371493633836508, 0.0016742192674428225, 0.026119807735085487, 0.04196702688932419, 0.031859491020441055, 0.011632222682237625, 0.00616412190720439, -0.001767820562236011, 0.039739444851875305, -0.007610974833369255, 0.0059507363475859165, -0.006963834632188082, 0.039836760610342026, 0.008535396307706833, 0.06388333439826965, 0.0381745770573616, 0.009044392965734005, 0.04922312870621681, 0.028272993862628937, -0.010297690518200397, 0.020397145301103592, 0.0037541729398071766, 0.015042641200125217, 0.01225733757019043, 0.015614520758390427, -0.02016604132950306, 0.04100955277681351, 0.04634448513388634, -0.018193000927567482, -0.0007342752069234848, 0.03201305493712425, -0.0073572564870119095, 0.053241975605487823, -0.011037098243832588, 0.05086962878704071, -0.032463133335113525, -0.028784720227122307, 0.007970044389367104, 0.05278092995285988, -0.0022192925680428743, -0.017708653584122658, 0.015203817747533321, 0.026548519730567932, -0.016944631934165955, 0.000537202344276011, 0.03083285689353943, 0.02251632884144783, 0.03937205299735069, 0.04333769157528877, -0.023386647924780846, -0.045875560492277145, -0.04118107631802559, -0.046374961733818054, -0.02825755812227726, -0.02913183905184269, -0.056860897690057755, 0.015990816056728363, 0.04668387398123741, -0.05510801449418068, 0.016170773655176163, -0.010638426057994366, -0.039618514478206635, -0.00826044287532568, -0.005075704772025347, 0.022592417895793915, -0.01509274821728468, 0.05456157773733139, -0.036090489476919174, 0.029631881043314934, 0.006457737646996975, 0.031857602298259735, -0.01971564069390297, 0.0042727249674499035, -0.014062939211726189, -0.014028273522853851, 0.023532001301646233, 0.032457366585731506, -0.027913950383663177, 0.01896766759455204, -0.0053773787803947926, -0.05586037039756775, -0.00516544422134757, 0.01589263044297695, -0.016286436468362808, -0.004409600980579853, -0.07060834020376205, 0.05681265518069267, 0.012647990137338638, -0.020664284005761147, 0.03986475616693497, 0.008736317045986652, -0.0272053349763155, 0.04463581740856171, 0.037963997572660446, -0.011804821901023388, -0.043911274522542953, 0.044498007744550705, 0.03152822330594063, 0.028039511293172836, -0.040863122791051865, -0.0021021156571805477, -0.04793578013777733, 0.025024324655532837, 0.02866622991859913, -0.0024925614707171917, -0.0191961657255888, 0.03508394956588745, 0.006278034765273333, -0.03855094686150551, 0.05655074119567871, -0.03586376830935478, -0.04855785146355629, -0.0028380840085446835, -0.03310102969408035, 0.0012027514167129993, 0.02499527484178543, 0.020548466593027115, -0.01484712865203619, 0.02004731446504593, -0.03474332392215729, 0.0049895793199539185, 0.057292379438877106, 0.00703777652233839, 0.022337837144732475, 0.04508845508098602, -0.03783336281776428, -0.004264866933226585, 0.04420061036944389, 0.003339205402880907, -0.028825363144278526, -0.002641263185068965, -0.019230935722589493, 0.0009213650482706726, 0.040212009102106094, 0.003150612348690629, -0.001702136010862887, 0.06064571440219879, -0.016490010544657707, 0.021687950938940048, 0.006280101835727692, 0.036877457052469254, 0.05972965434193611, -0.0131777198985219, 0.029944248497486115, -0.0028807243797928095, -0.03149326518177986, -0.027408301830291748, -0.004352375399321318, 0.025417815893888474, 0.0332174114882946, -0.07353769242763519, 0.0857718214392662, 0.015221654437482357, -0.05015018582344055, 0.036244168877601624, -0.07706321775913239, -0.019773630425333977, 0.03498655557632446, -0.030776897445321083, 0.06012415885925293, -0.026194492354989052, 0.03094424493610859, -0.037111952900886536, 0.03677917644381523, -0.021213173866271973, -0.008580229245126247, 0.03711797669529915, 0.004795072600245476, 0.01962745189666748, -0.014587853103876114, -0.023211056366562843, -0.013697871007025242, -0.0254976786673069, 0.00334169645793736, -0.011366886086761951, -0.05847257003188133, -0.011142358183860779, 0.03022857755422592, 0.01982562057673931, 0.08190944790840149, -0.015158848837018013, 0.03602210804820061, 0.02538413740694523, 0.02722010388970375, 0.009355263784527779, 0.01364880707114935, -0.0004909304552711546, -0.03774906322360039, 0.0533672459423542, 0.013792459852993488, -0.017982998862862587, -0.04233367368578911, -0.05173588916659355, -0.05363652855157852, 0.03240837901830673, -0.011331435292959213, -0.026978638023138046, -0.04137800261378288, 0.03267042338848114, -0.017933616414666176, 0.04416094720363617, -0.02053646370768547, -0.01025069784373045, -0.024240337312221527, 0.02610260434448719, 0.032966602593660355, -0.034486331045627594, -0.03221071884036064, -0.026341598480939865, 0.03462663292884827, 0.04462765157222748, -0.03241104260087013, -0.055878184735774994, -0.02366400696337223, -0.022108333185315132, -0.026518700644373894, 0.008675298653542995, 0.049735404551029205, -0.001403069938533008, 0.012227713130414486, -0.03955996781587601, 0.04305293783545494, 0.04754092916846275, -0.002617398975417018, -0.0031571220606565475, 0.012185098603367805, 0.0069511146284639835, 0.013532985933125019, 0.046006157994270325, -0.031332604587078094, -0.020133161917328835, 0.009667825885117054, -0.04690757766366005, 0.021425209939479828, 0.0021424847654998302, -0.01437167078256607, -0.02502473071217537, 0.004815998487174511, 0.03089439682662487, 0.013183034025132656, -0.02929983101785183, -0.002244845498353243, -0.025589782744646072, 0.019324151799082756, -0.0370914489030838, -0.04296211898326874, 0.029517939314246178, -0.012914958409965038, -0.02900565415620804, 0.01956724375486374, 0.04944875091314316, -0.03267265856266022, -0.011016231030225754, 0.040773265063762665, -0.0549975223839283, 0.038089148700237274, -0.03721055015921593, -0.008309392258524895, -0.007484396919608116, -0.03355303034186363, 0.013693210668861866, -0.037390705198049545, 0.03559551388025284, 0.016911830753087997, -0.03439889848232269, -0.03904028609395027, -0.05374151095747948, -0.013902707025408745, -0.0004885562229901552, -0.01989850029349327, 0.013368433341383934, -0.018132923170924187, -0.030960077419877052, -0.00027915084501728415, -0.018844706937670708, -0.009503740817308426, -0.026058683171868324, -0.0042667812667787075, 0.009675482288002968, -0.0035314953420311213, 0.0346422977745533, 0.014469929970800877, 0.013166292570531368, -0.03254461660981178, -0.02272271178662777, 0.011131481267511845, -0.02686760388314724, -0.013260649517178535, 0.021485978737473488, -0.02626718580722809, -0.01628274656832218, -0.025354601442813873, 0.015677642077207565, -0.008540245704352856, -0.009869685396552086, 0.03818455711007118, 0.003353419713675976, -0.01404774934053421, -0.00007312652451219037, -0.05472932755947113, 0.04560384154319763, 0.028047533705830574, -0.054292231798172, -0.0725395530462265, 0.031162837520241737, 0.006064172368496656, 0.05049412325024605, -0.014821392484009266, -0.013852098025381565, -0.058853089809417725, -0.06638572365045547, -0.022703994065523148, -0.05864037573337555, -0.010403970256447792, -0.059997688978910446, -0.02196509577333927, -0.005223032087087631, 0.020162664353847504, -0.0029220236465334892, -0.012349314987659454, 0.015614660456776619, -0.05487570911645889, 0.004663402680307627, -0.0235818549990654, -0.04080536589026451, -0.020061302930116653, 0.015714671462774277, -0.021670812740921974, 0.05015956237912178, 0.012847243808209896, 0.030241454020142555, 0.0297419261187315, 0.03236404433846474, -0.003122658934444189, -0.004325419664382935, -0.04220541939139366, -0.04041024670004845, -0.011016515083611012, -0.013584617525339127, -0.004970426671206951, 0.010450989939272404, -0.03702172264456749, 0.041623663157224655, -0.03209756687283516, -0.0036474561784416437, -0.03147697076201439, -0.02096949703991413, -0.029965275898575783, 0.04028751701116562, 0.0550970621407032, -0.024649690836668015, 0.005557864438742399, -0.02417745813727379, 0.07248301059007645, 0.07864275574684143, 0.010362403467297554, -0.01908196322619915, -0.020295429974794388, -0.06415144354104996, -0.056199077516794205, 0.005768975708633661, -0.03491760790348053, -0.016369890421628952, -0.01298933569341898, -0.008131606504321098, 0.03291549161076546, 0.0016852996777743101, 0.0695374608039856, 0.0696382075548172, -0.013492072001099586, -0.003995200153440237, -0.01931474357843399, 0.046427398920059204, 0.05091521888971329, -0.018550101667642593, -0.024166302755475044, -0.027981402352452278, -0.04367755725979805, 0.008480791002511978, -0.05601784959435463, -0.06945590674877167, -0.07996729016304016, -0.007609034422785044, 0.046862613409757614, -0.03752871975302696, 0.022880489006638527, -0.004633564967662096, -0.03454218804836273, -0.055047713220119476, 0.064145527780056, 0.005755267571657896, 0.005669723730534315, 0.06547285616397858, -0.012398075312376022, -0.031227977946400642, 0.011171034537255764, 0.020896876230835915, 0.016496332362294197, -0.02362145483493805, 0.06845318526029587, 0.009359828196465969, -0.0476611889898777, 0.036170005798339844, 0.03628353774547577, -0.0605088546872139, -0.030635148286819458, -0.009120539762079716, -0.011360634118318558, -0.022280145436525345, -0.021705131977796555, -0.0026061374228447676, 0.0024285505060106516, -0.00013907902757637203, 0.034581612795591354, 0.015483973547816277, -0.02837209776043892, 0.029240073636174202, 0.02891761250793934, 0.01854618452489376, -0.020166873931884766, -0.04206843301653862, 0.036808885633945465, -0.0396152064204216, -0.02557237818837166, -0.03905552998185158, 0.006646163761615753, -0.009263833053410053, -0.0151861272752285, 0.026317493990063667, -0.0032877412158995867, 0.006150837056338787, 0.008133554831147194, -0.017200656235218048, 0.012220893055200577, -0.006375092547386885, -0.007363422773778439, -0.0008729191031306982, -0.02435242012143135, -0.07431790232658386, -0.05964609608054161, 0.007711727172136307, -0.03133324906229973, 0.04386509954929352, -0.042765580117702484, -0.0008933054050430655, 0.02348281256854534, 0.005980554036796093, 0.0015149156097322702, -0.05392370745539665, -0.02100495807826519, -0.04577548801898956, -0.022954434156417847, -0.051180608570575714, -0.017681673169136047, -0.017653334885835648, 0.023114638403058052, 0.003038963535800576, -0.02730662375688553, 0.00418825214728713, 0.011264688335359097, -0.023535307496786118, 0.0076994081027805805, -0.040219590067863464, 0.018266065046191216, -0.042466383427381516, -0.0650259479880333, -0.035213652998209, 0.01715220883488655, -0.010944605804979801, 0.02397199533879757, -0.005096714943647385, 0.02246219478547573, -0.015137258917093277, 0.049287691712379456, 0.00696839252486825, 0.0234458539634943, -0.001943638315424323, -0.03331483528017998, -0.030670370906591415, 0.05892322584986687, 0.0050573525950312614, 0.029833249747753143, 0.032693780958652496, -0.028081271797418594, 0.007941203191876411, 0.004062217194586992, -0.019873177632689476, -0.04365517944097519, 0.003654825733974576, 0.00961210299283266, -0.016188818961381912, -0.021866369992494583, -0.01600552350282669, -0.03981390967965126, -0.037712451070547104, 0.01693154312670231, -0.03131185099482536, 0.03699161857366562, -0.011050596833229065, 0.013005465269088745, -0.01701970398426056, 0.046764347702264786, -0.015506858006119728, 0.042230915278196335, -0.0006298368098214269, 0.05393489822745323, 0.0016212206101045012, -0.035213250666856766, 0.023299837484955788, 0.01449844054877758, 0.011927100829780102, -0.026155445724725723, -0.0025352889206260443, 0.019885966554284096, 0.024820400401949883, 0.03637603297829628, -0.010344869457185268, -0.03437673673033714, -0.03123611956834793, -0.012316158972680569, 0.0073190778493881226, 0.013838455080986023, -0.01982453279197216, -0.015378243289887905, 0.049008265137672424, -0.04363792762160301, -0.03529856726527214, -0.0011482912814244628, -0.03723917156457901, -0.01536633726209402, 0.03742934390902519, -0.001963759772479534, -0.02912892960011959, -0.019158538430929184, -0.03928177058696747, 0.042026836425065994, -0.020219916477799416, -0.0002666887012310326, 0.0030558444559574127, 0.024040671065449715, -0.01981273479759693, 0.05000118538737297, -0.024048784747719765, -0.030035074800252914, 0.015569303184747696, 0.04995366185903549, -0.04726345092058182, -0.037082526832818985, 0.002319768536835909, 0.016619842499494553, 0.008273155428469181, -0.013127105310559273, 0.022278834134340286, 0.026643823832273483, 0.0014309673570096493, 0.022558635100722313, -0.01014719158411026, 0.019733160734176636, -0.008528335019946098, 0.02841947041451931, -0.003067723009735346, -0.020238257944583893, -0.025644203647971153, 0.028731344267725945, -0.011398350819945335, -0.0051078493706882, -0.04868795722723007, 0.04764531925320625, 0.044950854033231735, 0.018426382914185524, 0.04998115450143814, 0.018058938905596733, 0.008615725673735142, -0.028674669563770294, 0.006413708440959454, -0.028919121250510216, 0.029464928433299065, 0.02937825210392475, 0.00004450034975889139, -0.006951192393898964, 0.02346245013177395, 0.0395137295126915, -0.010554504580795765, 0.0022876549046486616, 0.04655534774065018, 0.030936473980545998, 0.00964197888970375, 0.011015753261744976, -0.03343923017382622, 0.012694788165390491, 0.02686055563390255, -0.01101340539753437, -0.00036722462391480803, -0.03877013176679611, 0.002205922966822982, -0.008499217219650745, 0.004108414985239506, 0.03403793275356293, -0.02599065937101841, 0.01791534759104252, -0.01928263157606125, -0.013889748603105545, -0.035149555653333664, 0.0335775651037693, 0.008037470281124115, 0.013361047022044659, 0.04578744247555733, 0.02280522510409355, -0.0315127894282341, 0.028704365715384483, 0.04030992090702057, 0.017800698056817055, -0.03187434375286102, 0.03267349675297737, -0.010435339994728565, -0.022730479016900063, -0.02139579877257347, -0.020340507850050926, -0.04882790520787239, 0.027708500623703003, 0.018311144784092903, -0.00257189036346972, 0.019651353359222412, -0.024241387844085693, -0.007290202658623457, -0.050107479095458984, 0.03965746983885765, -0.0063025434501469135, 0.0021376630757004023, 0.011362332850694656, -0.01831124536693096, -0.008797220885753632, 0.03738779574632645, -0.005608211271464825, 0.03166837990283966, 0.020390240475535393, 0.07133602350950241, 0.02008182741701603, -0.001795317861251533, 0.017904099076986313, -0.038436006754636765, -0.00854109600186348, -0.005587574560195208, -0.02968616969883442, -0.056138284504413605, -0.006822400260716677, -0.052173253148794174, -0.008541936054825783, -0.03665018454194069, -0.01581120863556862, 0.0018282532691955566, 0.0520956926047802, -0.025759777054190636, -0.030227594077587128, 0.01254844106733799, 0.025542182847857475, -0.02934270352125168, 0.003806732129305601, 0.021015729755163193, 0.05428970605134964, -0.018463870510458946, -0.010337571613490582, -0.05715106055140495, -0.034572992473840714, -0.01670237071812153, -0.05463497340679169, 0.040629152208566666, -0.03186151385307312, -0.02697649970650673, -0.048764102160930634, -0.034430958330631256, -0.014042671769857407, 0.01934082619845867, -0.033350665122270584, -0.03229449316859245, 0.037743907421827316, 0.05205513536930084, -0.001951898098923266, -0.010097561404109001, -0.016628338024020195, -0.022781725972890854, 0.01746469922363758, 0.07889334112405777, -0.011115599423646927, 0.016813723370432854, 0.04830541834235191, -0.020558515563607216, 0.023537956178188324, -0.0406254306435585, -0.000479223788715899, 0.005705867428332567, -0.023615606129169464, -0.0427476242184639, 0.021541936323046684, -0.03068746253848076, -0.07788369804620743, 0.033071525394916534, 0.00129361217841506, 0.0339273102581501, -0.013150973245501518, -0.06053955480456352, -0.008426964282989502, -0.03384838625788689, 0.008858445100486279, -0.05095982924103737, 0.03445380926132202, 0.0031104926019906998, -0.031513817608356476, -0.0009158971370197833, -0.0624835267663002, 0.1385975331068039, 0.06028338894248009, 0.05130385607481003, 0.006212967913597822, 0.014954275451600552, 0.06205763667821884, 0.022189276292920113, 0.011248515918850899, 0.027520867064595222, 0.0016649541212245822, 0.0713970959186554, 0.02870422974228859, 0.05064951255917549, 0.003891477594152093, 0.003568379208445549, 0.04091048613190651, -0.02307814732193947, -0.0030591723043471575, 0.012886518612504005, -0.014893347397446632, -0.05904465913772583, 0.0102413734421134, 0.005632395856082439, 0.006213538348674774, -0.007922468706965446, 0.012377383187413216, 0.010342015884816647, -0.0328449122607708, -0.027768652886152267, -0.0248920526355505, 0.014753433875739574, -0.016898758709430695, 0.0322425551712513, 0.012399662286043167, -0.036910153925418854, 0.04267977550625801, 0.010469464585185051, -0.017771108075976372, 0.026661377400159836, 0.029277678579092026, -0.03460944816470146, 0.03527402505278587, 0.04382200166583061, -0.03785516694188118, 0.028989383950829506, 0.035596877336502075, -0.024289682507514954, 0.02760777436196804, 0.01710962876677513, -0.04272260516881943, 0.058907706290483475, -0.06049371883273125, 0.021466877311468124, -0.02104627899825573, -0.04788048565387726, -0.0024898014962673187, 0.022104261443018913, -0.02011091075837612, -0.015985244885087013, 0.014197437092661858, 0.0369953028857708, -0.008022023364901543, -0.003753379685804248, -0.016564879566431046, -0.01968148536980152, 0.01685529388487339, 0.04551702365279198, 0.019746309146285057, -0.004442521370947361, -0.024752872064709663, -0.010523233562707901, -0.002248945878818631, 0.025388162583112717, -0.021648308262228966, 0.0450177863240242, 0.004674374125897884, -0.02701353095471859, 0.02536177448928356, 0.012992934323847294, -0.03673342242836952, 0.004160013049840927, -0.05527777597308159, -0.019871236756443977, -0.02490876615047455, 0.029925184324383736, 0.05515655502676964, -0.019305415451526642, -0.029061198234558105, -0.024636011570692062, 0.06288363039493561, 0.05106176808476448, 0.004220364615321159, -0.015046941116452217, -0.016895154491066933, -0.01190622616559267 ]
<!-- .slide: data-background="/img/ferneyhough-deforce-screenshot.png" --> <div class="overlay-title"> <h2>Brian Ferneyhough</h1> <h1>*Time and Motion Study II*</h2> <h3>1973–76</h3> </div> -- <!-- .slide: class="image-right" --> <div> &nbsp; &nbsp; ### Brian Ferneyhough b. 1943, Coventry, UK </div> <figure> ![Ferneyhough in 1988](img/ferneyhough.jpg) </figure> Note: - '60s: Birmingham School of Music, RAM (Lennox Berkeley) - '68: Ton de Leeuw in Amsterdam - '69–71: Klaus Huber in Basel - '73–86: Teacher in Freiburg - '70s see rise in recognition, teaches at Darmstadt - '87 —> UCSD Photo: August 1988, Betty Freeman -- ### *Time and Motion Study* series 1. for solo bass clarinet (1971–77) 2. for cello and electronics (1973–76) 3. for 16 solo voices with percussion & electronics (1974) <!-- .element: type="I" class="roman" --> -- ![Technical diagram for Ferneyhough's Time and Motion Study II](/img/ferneyhough-tech-layout.png) Note: - 2 looping tapes (14" & 9") - 2 contact mics, 1 throat, 1 "air" - 2 foot pedals - ring modulator - ≥ 2 assistants - "electronic environment" (*CW*, p.13) - relate to Berio Modern performances use Max/MSP -- <video controls> <source data-src="https://github.com/delucis/generals-presentation/blob/master/video/bf-rendering-deceptive.mp4?raw=true" type="video/mp4"> Brian Ferneyhough saying, "The cellist is, erm, encompassed and enveloped, by this envelope: different speakers speaking back to him things he's spoken already, distorting, rendering untrue, rendering deceptive like walking on very thin ice." </video> Note: from: *Electric Chair Music*, 2005 directed by Colin Still "The cellist is, erm, encompassed and enveloped, by this envelope: different speakers speaking back to him things he's spoken already, distorting, rendering untrue, rendering deceptive like walking on very thin ice." -- ### Time and Motion Study <video controls> <source data-src="https://github.com/delucis/generals-presentation/blob/master/video/gilbreth-stamping.mp4?raw=true" type="video/mp4"> <source data-src="https://github.com/delucis/generals-presentation/blob/master/video/gilbreth-stamping.webm?raw=true" type="video/webm"> Sorry, old browser, no video for you. </video><!-- .element: class="fragment grow" data-fragment-index="1" --> Note: - Frank Bunker & Lillian M. Gilbreth - video: 1910–1924 -- Ferneyhough, *Collected Writings*: > "…the 'memory of a production process', the place of performance as the point > of confrontation for **objectively measurable systems** and **subjective > obscuration, erosion and eradication**" (107) &nbsp; > "…between **objectively measurable systems** and their nemesis, **subjective > criteria of retention**." (114) Note: - efficiency - W. Benjamin - tape as memory -- ![Time and Motion Study II, I.3.iii (p.5), cello part](/img/ferneyhough-examples-1.png) <audio controls> <source src="../../audio/ferneyhough-tms-ii-p5.ogg" type="audio/ogg"> <source src="../../audio/ferneyhough-tms-ii-p5.mp3" type="audio/mpeg"> Sorry, old browser, no audio for you. </audio> Note: - Inefficiency/excess of instrumental gesture - arguable relation to L's _Pression_ (1969) - such inefficiency exacerbated by electronic swamping later -- Ferneyhough, _Collected Writings_: > …the **'raw'** elements were forced to generate new offshoots by being passed, > under pressure, through an **alien** formal grid. (113) Artaud, _Le Pèse-Nerfs_: <!-- .element: class="fragment" data-fragment-index="1" --> > The grid is a terrible moment for sensitivity and substance. <!-- .element: class="fragment" data-fragment-index="1" --> Note: - Introduce quote 1 with _TMS I_ revision process information - Quote 2 from same text used for cellist in _TMS II_ - Used twice by F. in his other writings -- Ferneyhough, *Collected Writings*: > "…the electronic 'cage'…" (108) &nbsp; > "…encounter between the sort of self-expression demarcating the individual and a sometimes uncooperatively febrile array of sonic 'distorting mirrors' of collectivity…" (108) -- <video controls> <source data-src="https://github.com/delucis/generals-presentation/blob/master/video/bf-rendering-deceptive.mp4?raw=true#t=9.5,16.4" type="video/mp4"> Brian Ferneyhough saying, "… distorting, rendering untrue, rendering deceptive …" </video> Note: "… distorting, rendering untrue, rendering deceptive …" -- #### Ferneyhough's Binaries ![Ferneyhough's Binaries](/img/ferneyhough-examples-2.png) -- <!-- .slide: data-background="#000000" --> <video controls> <source data-src="https://github.com/delucis/generals-presentation/blob/master/video/bf-scream.mp4?raw=true" type="video/mp4"> Sorry, old browser, no video for you. </video> Note: - The "violence" is very clear in how F. speaks of the exhaustion/death of the musician at the end of the work. - "switching off" / electric chair - discuss form/dramaturgy -- ![Time and Motion Study II, formal diagram](/img/ferneyhough-examples-4.png) Note: - s.24–28: 11 pitch class expanding pitch field (starts G, ends C#) - s.30–41: self-implication/mutilation in ring modulation - s.44: entrance of scream prepared by high wavering B -- # But! > A cyborg is a cybernetic organism, a hybrid of machine and organism, a > creature of social reality as well as a creature of fiction. > > […] > > This chapter is an argument for _pleasure_ in the confusion of boundaries and > for _responsibility_ in their construction. <!-- .element: class="fragment" data-fragment-index="1" --> — Haraway, _Simians, Cyborgs, and Women_, 149–50 <!-- .element: class="fragment" data-fragment-index="1" --> Note: - credit Iddon - more positive spin - deconstructing binaries - "organism/machine, self/other, culture/nature, reality/appearance, whole/part, agent/resource, truth/illusion" - is cello technology? -- > A cyborg body is not innocent, it was not born in a garden; it does not seek > unitary identity and so generate antagonistic dualisms without end (or until > the world ends); it takes irony for granted. __One is too few, and two is > only one possibility.__ — Haraway, _Simians, Cyborgs, and Women_, 180 Note: - "electronic environment" as cyborg-subject - space of experience expanded from the unitary subject - Counter-argument to F.'s pessimism -- ![Distributed agency or oppressive control?](/img/ferneyhough-examples-3.png) Note: - local vs. distributed - the cyborg agency is not unitary/local - this dilutes the fear that the subject is being imprisoned oppressed
[ -0.013250639662146568, 0.0041056000627577305, -0.013892712071537971, -0.005603079218417406, -0.004382421728223562, -0.012765593826770782, -0.02889043465256691, 0.0010295839747413993, 0.032284386456012726, 0.011568302288651466, 0.03636504337191582, 0.011307542212307453, 0.028475258499383926, -0.04822908341884613, -0.005886522121727467, 0.018949775025248528, -0.020435640588402748, -0.05514135956764221, -0.023427193984389305, 0.00010036986350314692, 0.03185673803091049, -0.0019769466016441584, -0.05853220820426941, -0.01840786263346672, -0.010909218341112137, 0.05230037495493889, 0.03166084364056587, 0.009801818989217281, 0.028271978721022606, 0.06317255645990372, 0.0136782331392169, -0.013914310373365879, 0.036504507064819336, -0.07244803011417389, -0.03259531036019325, -0.02846757508814335, 0.061673685908317566, -0.022191543132066727, 0.006500666029751301, -0.06130598112940788, 0.001445101574063301, -0.03984133154153824, 0.01767004281282425, -0.04955103248357773, -0.03002762794494629, -0.01151410210877657, 0.020205628126859665, -0.031038178130984306, -0.006164150312542915, -0.04791427403688431, 0.029298705980181694, -0.009575938805937767, 0.03554970398545265, -0.0024623943027108908, 0.018721500411629677, 0.0011090555926784873, 0.00834168866276741, -0.02943272888660431, -0.022988993674516678, 0.027018731459975243, 0.02634132094681263, 0.013204065151512623, 0.01989646814763546, -0.06834609061479568, -0.009884276427328587, 0.03144245222210884, 0.03915740177035332, -0.015399744734168053, 0.019440921023488045, -0.027571678161621094, -0.052862878888845444, 0.0061131869442760944, -0.022440603002905846, -0.0025644449051469564, 0.005068022292107344, -0.004468170460313559, -0.016185380518436432, 0.0035236875992268324, 0.005857785232365131, -0.012478681281208992, 0.02406979911029339, 0.04444647580385208, 0.0009168008109554648, -0.004151157569140196, -0.04738835617899895, -0.033594224601984024, -0.017348762601614, 0.010480908676981926, 0.00410588551312685, -0.0019563045352697372, 0.03270760551095009, 0.061280734837055206, -0.01789436861872673, -0.03139229118824005, 0.044626787304878235, 0.026103924959897995, -0.04691920056939125, 0.038394272327423096, 0.015669289976358414, -0.008101950399577618, 0.04758845642209053, 0.04435175657272339, -0.026873035356402397, 0.048325393348932266, -0.048548340797424316, -0.02511587180197239, -0.00799790769815445, 0.005132390186190605, 0.006088263355195522, -0.07205904275178909, 0.020134959369897842, -0.01156423706561327, -0.0023334468714892864, 0.028311854228377342, -0.002039198763668537, 0.05830065906047821, 0.012055177241563797, 0.034890271723270416, -0.03211071342229843, 0.03237643092870712, 0.018395159393548965, 0.034554753452539444, 0.029097704216837883, -0.015021263621747494, 0.015208233147859573, -0.020027052611112595, -0.047425176948308945, 0.03140078857541084, -0.03610190376639366, -0.002760613337159157, -0.00427646329626441, -0.008987477980554104, -0.029121916741132736, -0.016189243644475937, 0.0016335237305611372, 0.034463413059711456, -0.02444099821150303, 0.0456569567322731, 0.017344512045383453, -0.06393146514892578, 0.026935232803225517, 0.017782745882868767, -0.010360163636505604, 0.09525949507951736, 0.00018686067778617144, 0.014970706775784492, -0.005099583882838488, 0.009498693980276585, -0.020173538476228714, 0.01664520800113678, -0.019907841458916664, 0.019299577921628952, -0.03637790307402611, 0.04163672775030136, -0.00905256811529398, -0.0007923310622572899, -0.011110723949968815, 0.033982302993535995, 0.0401163287460804, 0.04476481303572655, -0.04544175788760185, 0.011975889094173908, 0.016938678920269012, 0.0417400561273098, 0.0038494884502142668, 0.04612847790122032, -0.017084045335650444, 0.0016885476652532816, 0.014436035417020321, -0.01967822015285492, 0.005788425449281931, -0.00010676842794055119, 0.015932908281683922, 0.011108601465821266, 0.03907874599099159, 0.03045501559972763, 0.037734609097242355, 0.006189668085426092, 0.022211555391550064, 0.032360248267650604, -0.01724071055650711, -0.030397897586226463, 0.026035189628601074, 0.0474468469619751, 0.009179244749248028, 0.007014438975602388, -0.0056449309922754765, 0.009007617831230164, -0.025655996054410934, -0.03213969245553017, -0.016765234991908073, 0.05148832127451897, -0.028237003833055496, 0.023384802043437958, 0.011378816328942776, -0.0009223226807080209, -0.01211229246109724, -0.0326312780380249, -0.01344482135027647, -0.04978206008672714, -0.025271302089095116, 0.030076202005147934, -0.018642961978912354, 0.014069419354200363, -0.018763205036520958, -0.002978414064273238, 0.045963138341903687, 0.07693082839250565, -0.046646688133478165, 0.028376447036862373, 0.03466810658574104, -0.0032652579247951508, -0.016316480934619904, 0.014778338372707367, 0.00997807364910841, -0.0043279556557536125, -0.01442085113376379, 0.029101837426424026, 0.01788172870874405, 0.023594936355948448, 0.030941713601350784, 0.016365209594368935, 0.037210240960121155, 0.015876153483986855, -0.009343888610601425, 0.022795096039772034, 0.003103419439867139, 0.056595880538225174, -0.009575985372066498, 0.024908481165766716, 0.015707973390817642, 0.03598223626613617, 0.010698789730668068, 0.06285808235406876, 0.054075367748737335, 0.02112167701125145, 0.030942320823669434, 0.04498695209622383, 0.01848967745900154, 0.03297009691596031, 0.018828846514225006, 0.01546168327331543, 0.06577492505311966, 0.04508151113986969, -0.026913050562143326, 0.039379823952913284, -0.009358538314700127, -0.011472748592495918, -0.0029596828389912844, -0.01749512366950512, -0.028229931369423866, 0.07063264399766922, -0.007303313352167606, 0.02761041186749935, -0.018859488889575005, 0.004916071426123381, 0.03586254268884659, 0.060679543763399124, -0.009389524348080158, -0.025428064167499542, 0.015299377962946892, 0.019409166648983955, -0.02187865972518921, 0.002734844572842121, 0.023256545886397362, 0.02206146903336048, 0.008283034898340702, 0.02855731174349785, -0.0059898425824940205, -0.034922998398542404, -0.026742860674858093, -0.06625895947217941, -0.0777769535779953, -0.03225548565387726, -0.059364430606365204, 0.00268171145580709, 0.052803829312324524, -0.0453796461224556, 0.061483293771743774, -0.01722434163093567, -0.02101842314004898, -0.04033111035823822, -0.02320200577378273, 0.04553339257836342, 0.026698390021920204, 0.016584206372499466, -0.034353628754615784, 0.030395856127142906, -0.01779627427458763, 0.011061721481382847, -0.04338450729846954, -0.027038361877202988, 0.0018795812502503395, -0.007884485647082329, 0.01677360013127327, 0.008982209488749504, -0.015814004465937614, -0.005657476373016834, -0.05667392536997795, -0.06817124038934708, 0.024760300293564796, 0.012175421230494976, -0.01759856566786766, -0.012711159884929657, -0.05669598653912544, 0.05795201286673546, 0.011034680530428886, -0.06176586076617241, 0.0461290217936039, 0.024315807968378067, -0.05260384455323219, 0.035461924970149994, 0.024939512833952904, 0.01479362603276968, -0.03528761863708496, 0.041833601891994476, 0.0525163933634758, 0.012527897022664547, -0.03593021631240845, -0.008117231540381908, -0.014440874569118023, 0.011052115820348263, 0.022684741765260696, -0.015613535419106483, -0.036848679184913635, 0.06316829472780228, 0.04786547273397446, -0.06382595002651215, 0.04191545024514198, -0.049623675644397736, -0.04690772294998169, -0.021834446117281914, -0.018216758966445923, 0.01061167847365141, 0.04765860363841057, 0.009640122763812542, 0.00841604545712471, -0.01039523258805275, 0.025996172800660133, 0.01204387005418539, 0.028071295469999313, -0.02090582065284252, 0.006352443713694811, 0.04698313772678375, -0.016761332750320435, 0.013150735758244991, 0.004626518581062555, -0.03331868723034859, -0.013819835148751736, 0.021115465089678764, -0.005428817123174667, 0.02279028855264187, -0.002878526458516717, 0.0049205804243683815, 0.021302390843629837, 0.05570957809686661, -0.031759679317474365, -0.00832708366215229, -0.0023300559259951115, 0.03262852504849434, 0.029780197888612747, 0.01453317143023014, 0.03484545275568962, -0.02355267107486725, -0.03676324710249901, -0.07625386118888855, 0.03189085051417351, 0.009914959780871868, 0.06471041589975357, -0.06018148735165596, 0.05104780197143555, 0.028915338218212128, -0.054411109536886215, 0.03410986438393593, -0.03475688397884369, 0.03056706115603447, 0.053136616945266724, -0.0028560583014041185, 0.045265428721904755, -0.021471159532666206, -0.004763525910675526, -0.01195502933114767, -0.0005734482547268271, 0.015083023346960545, -0.009825864806771278, 0.0092887282371521, -0.03902239352464676, -0.05053366720676422, -0.010407107882201672, -0.01118836086243391, -0.02587158791720867, -0.025292426347732544, 0.006613756064325571, -0.010020624846220016, 0.005551271606236696, -0.03345333784818649, 0.03268633782863617, 0.02949182316660881, 0.01236382033675909, -0.005715337116271257, 0.025742530822753906, -0.0022853766568005085, 0.012783201411366463, 0.044732119888067245, -0.013759023509919643, 0.0036231190897524357, -0.0535321868956089, 0.03398410603404045, 0.015180311165750027, -0.0024991105310618877, -0.04873119294643402, -0.012208730913698673, -0.037616875022649765, 0.03337046876549721, 0.020857660099864006, -0.035400040447711945, -0.025473974645137787, 0.013876731507480145, -0.02489415928721428, 0.006222679279744625, -0.024091307073831558, 0.006854845676571131, -0.0067985388450324535, 0.05086132138967514, 0.025093404576182365, -0.03350469097495079, 0.016811473295092583, -0.07282519340515137, 0.031203843653202057, 0.05848373845219612, -0.030500834807753563, -0.017185311764478683, -0.002995271235704422, -0.05398279055953026, -0.03821040317416191, -0.00228428584523499, 0.043053459376096725, 0.0008673242991790175, 0.0016096117906272411, -0.05466535687446594, 0.027146238833665848, 0.0157612431794405, -0.016758669167757034, -0.004771081265062094, 0.011052923277020454, 0.023764068260788918, -0.004885456990450621, 0.0051600756123661995, 0.009549903683364391, -0.01117000076919794, 0.029529543593525887, -0.05967225879430771, 0.01651238463819027, -0.016547340899705887, -0.027690665796399117, 0.0028967431280761957, 0.034262239933013916, -0.01350521668791771, 0.029853306710720062, 0.015982363373041153, -0.019864844158291817, -0.015579313039779663, 0.0575840063393116, -0.04034655913710594, -0.023579834029078484, 0.0381297841668129, -0.008667641319334507, -0.037007443606853485, 0.017004182562232018, 0.02302788570523262, -0.0036124293692409992, 0.009520294144749641, 0.04785590246319771, -0.03316386789083481, 0.013783409260213375, -0.03700913116335869, -0.0017855424666777253, -0.011440543457865715, -0.05625838041305542, 0.012765212915837765, -0.04109998419880867, 0.03428171947598457, -0.022127704694867134, -0.03729900345206261, -0.045073408633470535, -0.05892886593937874, -0.0473744198679924, -0.0407060943543911, -0.023116085678339005, 0.019876249134540558, 0.02230195328593254, 0.002386840060353279, -0.004791426472365856, -0.02022789791226387, -0.02427482046186924, -0.011661098338663578, -0.0316835381090641, 0.0005872463807463646, -0.00209755077958107, 0.009691298939287663, 0.025121571496129036, -0.004241506103426218, -0.02164224535226822, 0.011833219788968563, -0.002937356708571315, -0.03364470228552818, -0.025174817070364952, -0.020192405208945274, -0.030527783557772636, -0.013296220451593399, 0.0012579300673678517, 0.017480097711086273, 0.006065848283469677, 0.04130268096923828, 0.02084498293697834, -0.0026177780237048864, 0.002608801703900099, 0.0175105519592762, -0.03016202338039875, 0.06443863362073898, 0.018528077751398087, -0.03337696194648743, -0.008198080584406853, 0.03994258493185043, -0.010257397778332233, 0.05440279841423035, 0.006745978258550167, -0.01147005707025528, -0.06256835162639618, -0.06436577439308167, 0.02975129336118698, -0.021110113710165024, -0.01721865125000477, -0.06601884961128235, -0.03923316299915314, -0.03215313330292702, 0.010465361177921295, 0.01284912507981062, -0.02137123979628086, 0.0012284594122320414, -0.03655052185058594, -0.009486043825745583, -0.0265928003937006, 0.008795996196568012, -0.0460568405687809, -0.0032464510295540094, -0.005265435203909874, 0.05268343165516853, 0.0026096650399267673, 0.02957211807370186, 0.005160837899893522, 0.004103492479771376, 0.03262630105018616, -0.009932522661983967, -0.03221891447901726, -0.07745292037725449, 0.006380497477948666, 0.00884160678833723, -0.019195323809981346, -0.0011392055312171578, -0.03302380070090294, 0.05828656628727913, -0.02298578992486, -0.00550443958491087, -0.022829130291938782, -0.015514013357460499, 0.002331626834347844, -0.011422722600400448, 0.07595094293355942, -0.011825751513242722, 0.0015170235419645905, 0.007946349680423737, 0.05843442678451538, 0.04744740203022957, -0.019154096022248268, -0.033787474036216736, -0.0076092807576060295, -0.04481801018118858, -0.03332828730344772, 0.018099648877978325, -0.02021891623735428, -0.009478622116148472, -0.031622327864170074, 0.0014527494786307216, 0.033307503908872604, 0.004511017352342606, 0.030052008107304573, 0.05702315270900726, 0.0009286493295803666, 0.004938769154250622, -0.01392215583473444, 0.022055046632885933, 0.009835170581936836, -0.015212707221508026, -0.011594284325838089, -0.010436912067234516, -0.033953454345464706, -0.015285877510905266, -0.019463438540697098, -0.07221846282482147, -0.03871213644742966, -0.030037380754947662, 0.08100917935371399, 0.008802661672234535, 0.03098319098353386, 0.013932580128312111, -0.032477185130119324, -0.04328615590929985, 0.03683926537632942, -0.02577361837029457, 0.019262246787548065, 0.023256823420524597, -0.013692774809896946, 0.015097172930836678, -0.02906980738043785, -0.010188359767198563, -0.015060714446008205, -0.006048126611858606, 0.053589820861816406, -0.016371337696909904, -0.023804495111107826, 0.013770394027233124, 0.028725536540150642, -0.048787716776132584, -0.045295897871255875, -0.027446603402495384, -0.015087428502738476, 0.008339367806911469, -0.04306018352508545, 0.01976851187646389, 0.00463114446029067, -0.000672333815600723, -0.010629091411828995, 0.0495840460062027, -0.02147499844431877, 0.03474437817931175, 0.003314182162284851, 0.00021106770145706832, -0.032015446573495865, 0.00508378678932786, 0.02049114555120468, -0.016537904739379883, -0.014680463820695877, -0.045763690024614334, -0.027598224580287933, 0.015327470377087593, -0.030537178739905357, 0.018602224066853523, -0.020713413134217262, 0.017291512340307236, 0.03689675033092499, -0.02347906120121479, 0.028847545385360718, 0.0015048458008095622, -0.015271084383130074, -0.0164723452180624, -0.022441159933805466, -0.07485242187976837, -0.006276758387684822, 0.007659167982637882, 0.002894052304327488, 0.03094506822526455, -0.06468600034713745, -0.011866265907883644, 0.04185044392943382, 0.04753940925002098, -0.005954629275947809, -0.04369896650314331, -0.04560510069131851, -0.047198645770549774, -0.02599458582699299, -0.006466117221862078, -0.015169378370046616, -0.00856241025030613, 0.024126240983605385, 0.01949758268892765, -0.030547432601451874, -0.013419318944215775, -0.003845852566882968, -0.005364713259041309, -0.00303765875287354, -0.04476046934723854, 0.0006076106801629066, -0.03954821825027466, -0.03176019340753555, -0.03196123242378235, 0.00872675608843565, -0.03917969763278961, -0.0032356816809624434, -0.006455657072365284, 0.03150157257914543, 0.013097717426717281, 0.02650095708668232, 0.0017171655781567097, -0.000274521647952497, -0.016377823427319527, -0.02849963679909706, -0.020499086007475853, 0.06857157498598099, 0.019502978771924973, 0.0359969399869442, 0.01931297406554222, -0.020953567698597908, 0.044863343238830566, 0.0006913862307555974, -0.03572772815823555, -0.022359957918524742, 0.0036328905262053013, 0.013287350535392761, 0.002488716971129179, -0.06047847121953964, -0.021337080746889114, -0.0005405602278187871, -0.05340910702943802, 0.011759375222027302, -0.0019473707070574164, 0.026950152590870857, -0.03007270023226738, -0.02380508743226528, -0.0053625646978616714, 0.05876481905579567, -0.0016098720952868462, 0.07024344801902771, -0.003983712289482355, 0.030485190451145172, 0.00654844893142581, 0.016110850498080254, 0.0372566394507885, 0.06351892650127411, -0.0046545653603971004, -0.04795398935675621, 0.012237445451319218, 0.015909889712929726, -0.03073849529027939, 0.05309366062283516, -0.023890813812613487, -0.020541969686746597, -0.03152687847614288, -0.012362400069832802, 0.04185562953352928, 0.060398127883672714, 0.01924744062125683, -0.00774614792317152, -0.009472429752349854, -0.0242479108273983, -0.02954154834151268, 0.013748063705861568, -0.06357337534427643, -0.0605686753988266, 0.04124338924884796, -0.005486823618412018, 0.006814809050410986, -0.009187591262161732, -0.03723053261637688, -0.02644396387040615, 0.013675069436430931, -0.001726101734675467, -0.017141642048954964, 0.025068609043955803, 0.0009774558711797, 0.023687100037932396, -0.013090427033603191, -0.01707782968878746, -0.00003363966607139446, 0.04081038758158684, -0.029809996485710144, -0.06523121893405914, 0.016251133754849434, 0.050544433295726776, -0.014513027854263783, -0.012979622930288315, -0.013101018965244293, 0.02126839943230152, -0.0041290936060249805, -0.011436975561082363, 0.00922051165252924, 0.0037756997626274824, 0.019011573866009712, 0.020443055778741837, 0.010387188754975796, -0.031229043379426003, -0.01431281678378582, 0.049898456782102585, 0.003533919807523489, -0.01853771135210991, -0.04811083897948265, 0.059651073068380356, 0.016083939000964165, -0.024753650650382042, 0.008322582580149174, 0.020211443305015564, 0.030696509405970573, 0.007028739899396896, 0.0046264720149338245, 0.0013003087369725108, 0.05873456224799156, 0.01426178403198719, 0.028623459860682487, -0.013834726996719837, 0.03358161076903343, 0.04855614900588989, 0.011209548451006413, 0.02316589094698429, 0.03102542646229267, 0.009742461144924164, -0.03043491020798683, 0.010389954783022404, -0.05438770726323128, 0.015416394919157028, 0.03371932730078697, 0.004557454958558083, 0.04848000779747963, -0.023794876411557198, -0.0041379001922905445, -0.0006500576855614781, -0.029701711609959602, 0.06330080330371857, -0.015537170693278313, -0.028766781091690063, -0.005084930919110775, -0.020685769617557526, -0.01063469983637333, 0.027665723115205765, 0.010201393626630306, 0.027292964980006218, 0.04893973097205162, 0.04171965271234512, -0.005625601392239332, 0.04660780355334282, 0.005915033631026745, -0.011082608252763748, -0.00946128461509943, 0.021777160465717316, 0.033376388251781464, 0.00040413375245407224, -0.04009517282247543, -0.0017159098060801625, -0.0395224504172802, 0.012668468989431858, -0.024104082956910133, -0.02356625534594059, 0.03386268392205238, -0.03213716670870781, -0.013654113747179508, -0.044117964804172516, 0.05266960710287094, -0.018490588292479515, 0.0009787576273083687, 0.035731032490730286, -0.006436951458454132, -0.05237874761223793, 0.07892958074808121, -0.0065635796636343, 0.0517851747572422, -0.0039028802420943975, 0.06450548022985458, -0.023791387677192688, 0.0273442342877388, 0.04593983292579651, -0.021165011450648308, -0.026225699111819267, 0.04203858971595764, -0.03562624379992485, -0.050436750054359436, -0.008635330013930798, -0.021674364805221558, -0.0036083399318158627, -0.017673542723059654, -0.002579333493486047, 0.020508496090769768, 0.04901193827390671, 0.011992326937615871, -0.009520091116428375, -0.029788905754685402, 0.032595932483673096, -0.06147623807191849, 0.022392205893993378, 0.0269875880330801, 0.03586212918162346, -0.0032884697429835796, -0.017366139218211174, -0.026745613664388657, -0.0216053556650877, -0.0003613372100517154, -0.061119724065065384, 0.03038243018090725, -0.02094954252243042, -0.0373658761382103, -0.046386901289224625, -0.023202592507004738, -0.06385841220617294, 0.00637931888923049, -0.03386061638593674, -0.03522687032818794, 0.00583241879940033, 0.04474726691842079, 0.016376618295907974, 0.03466252610087395, -0.02800571173429489, -0.0026560055557638407, 0.05339459329843521, 0.055073484778404236, -0.001986294984817505, 0.04609280824661255, 0.007121135015040636, -0.013274387456476688, 0.020525960251688957, -0.02541838400065899, 0.014994905330240726, -0.03219394385814667, -0.010777326300740242, -0.023590391501784325, 0.03540074825286865, -0.036356326192617416, -0.060001831501722336, -0.006451137829571962, 0.022444333881139755, -0.009563424624502659, -0.027063937857747078, -0.08508459478616714, 0.025974465534090996, -0.05804283916950226, -0.0026440504007041454, -0.04615288972854614, 0.02217498980462551, 0.01560412347316742, -0.0051749954000115395, -0.00026269929367117584, -0.062310073524713516, 0.18425382673740387, 0.051947221159935, 0.03566394001245499, 0.010495997965335846, 0.0009510827367193997, 0.04122410714626312, 0.013518023304641247, -0.004500596784055233, 0.006235375069081783, -0.035565249621868134, 0.01838286593556404, -0.008865307085216045, 0.004895046353340149, -0.011448431760072708, 0.017361866310238838, 0.062444109469652176, -0.032721471041440964, -0.013803033158183098, 0.01744278520345688, -0.058008838444948196, -0.042539630085229874, 0.034539561718702316, -0.003115191822871566, 0.008198468014597893, 0.0035029789432883263, 0.004599140025675297, 0.02601752243936062, -0.04391077160835266, -0.013558229431509972, 0.0061418525874614716, 0.0045996252447366714, -0.03261885792016983, 0.003000633791089058, -0.003914499655365944, -0.02918804995715618, 0.053725872188806534, 0.01598663441836834, -0.02626108191907406, -0.00020770465198438615, -0.007426320109516382, -0.040084946900606155, 0.031439486891031265, 0.02110423892736435, -0.04411423206329346, -0.01619194820523262, 0.02551315538585186, -0.022598212584853172, 0.009163804352283478, 0.0249306783080101, -0.06110544130206108, 0.06349191069602966, -0.028238411992788315, 0.031449094414711, -0.022252840921282768, -0.011779160238802433, 0.030769892036914825, -0.0010397440055385232, -0.00952818337827921, -0.026210037991404533, 0.007051898166537285, 0.018094656988978386, 0.0028995696920901537, -0.004186274483799934, 0.03362230211496353, -0.04846322163939476, 0.00906980037689209, 0.00031810588552616537, 0.01872236654162407, -0.0668245404958725, 0.007849306799471378, -0.022488877177238464, -0.03903011605143547, -0.014215722680091858, -0.005978436209261417, 0.04550039395689964, 0.04105205088853836, -0.027354685589671135, 0.06171134114265442, 0.004024977795779705, -0.015892269089818, -0.022702863439917564, -0.02113889530301094, 0.0060701677575707436, -0.017996668815612793, 0.008481413125991821, 0.02148413099348545, -0.06726374477148056, -0.03181401640176773, -0.05493319407105446, 0.048226598650217056, 0.023232126608490944, 0.0037893252447247505, 0.007104626391083002, -0.020418617874383926, -0.02385069616138935 ]
Roachville may refer to: Roachville, Kentucky, a community in Green County Roachville, California, a mining settlement in Inyo County
[ 0.005464151967316866, -0.0186616200953722, 0.012365763075649738, 0.02694488689303398, -0.04575200378894806, -0.016044877469539642, 0.04289845749735832, -0.005810514558106661, 0.015076788142323494, 0.020151838660240173, 0.04325799643993378, -0.0006018499261699617, -0.002250430639833212, -0.037995126098394394, 0.014069593511521816, -0.02706020139157772, 0.001477530226111412, -0.034980956465005875, -0.0436415858566761, 0.037347301840782166, 0.011534430086612701, 0.03354399651288986, -0.06893595308065414, -0.007097762078046799, 0.0206295195966959, 0.06152920052409172, 0.03467879816889763, -0.004102522507309914, 0.019824368879199028, 0.03329849988222122, 0.002458613133057952, -0.05112667381763458, 0.013059571385383606, -0.03658031299710274, -0.004553327802568674, -0.026372434571385384, 0.038344431668519974, -0.01806403510272503, -0.0063927569426596165, -0.06332190334796906, -0.0077678668312728405, -0.027755256742239, 0.022664209827780724, -0.014410208910703659, -0.009960218332707882, -0.015210149809718132, -0.0012899843277409673, -0.01784440316259861, 0.021543625742197037, -0.05457981303334236, 0.012563337571918964, -0.022995859384536743, -0.014138175174593925, 0.0025733779184520245, -0.0029810487758368254, -0.016693558543920517, 0.019981246441602707, 0.009334048256278038, -0.015403525903820992, -0.009572688490152359, 0.009495501406490803, 0.014105085283517838, 0.0003712648176588118, -0.06280853599309921, 0.01305029634386301, 0.001908446429297328, 0.01504177413880825, -0.011493108235299587, 0.010126405395567417, -0.035700634121894836, -0.018069135025143623, 0.004784200806170702, 0.020325032994151115, -0.03440026193857193, 0.023830685764551163, -0.01690695621073246, 0.029614411294460297, -0.034060027450323105, -0.026932738721370697, 0.021796364337205887, 0.008764015510678291, 0.06529413163661957, 0.026893341913819313, 0.004774796310812235, -0.060135163366794586, -0.020756106823682785, 0.010964428074657917, -0.005879404488950968, -0.014499681070446968, 0.009583696722984314, 0.022413108497858047, 0.06703529506921768, 0.03806031867861748, -0.013743409886956215, 0.06253668665885925, 0.04077528044581413, -0.039069030433893204, 0.06565843522548676, -0.015436298213899136, 0.01271862257272005, 0.03077464923262596, 0.006174114532768726, -0.015097316354513168, 0.04259779676795006, -0.037121932953596115, -0.01219172589480877, 0.004719776101410389, 0.005894297268241644, -0.008119432255625725, -0.012051751837134361, 0.010118497535586357, 0.003504884196445346, 0.0279344841837883, -0.01891803927719593, -0.016162246465682983, 0.06169521436095238, -0.00475455354899168, 0.01880588009953499, -0.039460666477680206, -0.0018886553589254618, 0.005398467183113098, -0.02480422705411911, 0.033735524863004684, -0.024926532059907913, -0.00976389180868864, -0.045701369643211365, -0.04952355846762657, 0.061169978231191635, -0.03224651515483856, -0.01062094233930111, 0.009156224317848682, -0.039373405277729034, -0.020583154633641243, 0.019762493669986725, 0.0091038653627038, 0.04281506687402725, -0.011697862297296524, 0.04457583278417587, 0.006530106067657471, -0.05502529814839363, 0.03770379349589348, 0.03733157739043236, 0.013511380180716515, 0.06441913545131683, 0.020937243476510048, 0.011458649300038815, 0.030874039977788925, -0.010654258541762829, -0.045363184064626694, 0.016273261979222298, -0.0551949180662632, -0.007950830273330212, 0.01606576517224312, 0.04135480523109436, 0.00366187933832407, 0.016575703397393227, 0.03203603997826576, 0.019850270822644234, 0.03213067725300789, 0.018483828753232956, 0.0122795095667243, 0.032084785401821136, 0.02833477593958378, 0.06059703603386879, -0.035457272082567215, 0.03135699778795242, -0.043523047119379044, 0.013275045901536942, -0.07028704136610031, -0.010160605423152447, -0.006056302227079868, 0.022087756544351578, 0.005623504053801298, 0.047801073640584946, 0.013733968138694763, 0.0518481470644474, 0.007970906794071198, -0.02176126465201378, 0.04664597660303116, 0.03583560511469841, -0.014345998875796795, -0.014761214144527912, -0.036269236356019974, 0.05956333503127098, 0.0009007189655676484, -0.012572403065860271, 0.004811215680092573, -0.019744087010622025, -0.04573380947113037, -0.017279423773288727, 0.008581976406276226, 0.01424670871347189, -0.022696491330862045, 0.018600547686219215, 0.0034854193218052387, 0.040803808718919754, -0.009065046906471252, -0.04930064082145691, -0.007064044941216707, -0.062555693089962, -0.03215218335390091, 0.05929189920425415, -0.03757825121283531, 0.009638911113142967, -0.005152945406734943, -0.04136495664715767, 0.0265498086810112, 0.05271173268556595, -0.04510646313428879, 0.04047047719359398, 0.04166339710354805, -0.006847569718956947, -0.031227227300405502, 0.03185461089015007, 0.011071952059864998, -0.01256392803043127, -0.03155473619699478, 0.04262150079011917, -0.011250488460063934, -0.00126776029355824, 0.010607740841805935, 0.018534066155552864, 0.032904647290706635, 0.030629711225628853, 0.008032857440412045, -0.026049703359603882, -0.0007000394398346543, 0.043279118835926056, -0.039500318467617035, 0.014951913617551327, -0.010612641461193562, 0.05734427645802498, -0.020524082705378532, 0.07028046995401382, 0.006965198088437319, -0.03953273594379425, 0.02766052819788456, 0.0449514240026474, -0.017720907926559448, 0.019752059131860733, 0.010929124429821968, 0.027182022109627724, 0.045277126133441925, 0.010568165220320225, -0.01594756543636322, 0.02665209025144577, -0.015387299470603466, -0.025454556569457054, -0.023312462493777275, -0.0038958957884460688, -0.012389279901981354, 0.04430229216814041, 0.023303644731640816, 0.03793507441878319, -0.020917564630508423, -0.014449169859290123, 0.05119010806083679, 0.06859112530946732, -0.030692679807543755, -0.010088615119457245, -0.027730993926525116, 0.018260514363646507, 0.00004187759623164311, -0.018707802519202232, 0.039463672786951065, 0.023767512291669846, 0.01832089014351368, 0.019035475328564644, -0.014144702814519405, -0.003784655826166272, -0.04693250730633736, -0.05179202929139137, -0.04966401308774948, -0.03601276874542236, -0.07224220782518387, -0.0023770458064973354, 0.0485239140689373, -0.04437720403075218, 0.002626317786052823, 0.00230760732665658, -0.03702956810593605, -0.016875263303518295, -0.021453047171235085, -0.0033379190135747194, 0.04891055077314377, 0.03331296145915985, -0.06227564066648483, 0.03837409242987633, -0.017771467566490173, 0.01566888950765133, -0.009212089702486992, -0.02336760424077511, -0.011718139052391052, -0.011645454913377762, 0.007279777433723211, 0.04748257249593735, 0.005802192259579897, -0.0006061483290977776, -0.014090707525610924, -0.06368345767259598, -0.03319419547915459, 0.00757865235209465, -0.03446819260716438, -0.018297186121344566, -0.04633329063653946, 0.061213135719299316, 0.008153699338436127, -0.0018330987077206373, 0.0313706211745739, 0.06070432811975479, -0.034800510853528976, 0.031202491372823715, 0.0020745783112943172, 0.03130932152271271, -0.04864112660288811, 0.06258887052536011, 0.008617573417723179, 0.012437754310667515, -0.03501112759113312, -0.019080301746726036, -0.04370548948645592, 0.02813173271715641, -0.006612736731767654, -0.043438252061605453, -0.019829949364066124, 0.029353728517889977, -0.02475525066256523, -0.058643046766519547, 0.010205655358731747, -0.06195969134569168, -0.041019778698682785, -0.018792517483234406, -0.020985107868909836, 0.04220498725771904, 0.0377642847597599, 0.04538199305534363, -0.005592972040176392, -0.03179846704006195, -0.0023171689826995134, 0.02353721112012863, 0.056562379002571106, -0.044276341795921326, 0.027463162317872047, 0.02056591399013996, 0.03157199174165726, 0.04617542028427124, 0.016691500321030617, -0.009568246081471443, -0.029407041147351265, -0.04270811378955841, 0.0021396074444055557, 0.015688559040427208, 0.05441499128937721, 0.025585006922483444, -0.009227749891579151, 0.026770230382680893, -0.0369037501513958, 0.023478809744119644, 0.004391862545162439, 0.0033850481268018484, 0.013976773247122765, 0.01597546972334385, -0.009977088309824467, -0.02662157453596592, -0.029823200777173042, -0.030170615762472153, 0.019332997500896454, -0.012438694946467876, 0.0275722648948431, -0.04150629788637161, 0.0730333924293518, -0.012255340814590454, -0.03816426172852516, 0.03354819491505623, -0.026227520778775215, -0.007774521596729755, 0.029698504135012627, -0.022570747882127762, 0.06284142285585403, 0.011260300874710083, 0.026531018316745758, 0.015760546550154686, -0.006999406032264233, -0.014770534820854664, -0.00540137616917491, 0.03954475745558739, -0.04891905561089516, -0.0372990146279335, -0.03562265634536743, 0.002054577926173806, -0.0328756645321846, -0.05909472703933716, 0.02250322513282299, -0.0006497538415715098, -0.0387314036488533, -0.07517454773187637, 0.04530886188149452, 0.017929324880242348, 0.041944652795791626, 0.01457459107041359, 0.02219550497829914, 0.02123722806572914, 0.031116250902414322, 0.03187462314963341, -0.0023939639795571566, 0.01696614921092987, -0.046639539301395416, 0.03853054717183113, 0.040097594261169434, -0.00973154604434967, -0.04399788752198219, -0.021813485771417618, -0.03606598451733589, 0.021421166136860847, 0.025246789678931236, 0.01780153252184391, -0.023017186671495438, -0.01080294419080019, 0.024796241894364357, 0.029533682391047478, -0.005988753400743008, -0.01667570136487484, -0.001492544892244041, 0.019529256969690323, 0.00557406060397625, -0.034963902086019516, 0.030556976795196533, -0.04775040224194527, 0.06173035129904747, 0.026362407952547073, 0.013473110273480415, -0.011654828675091267, -0.004899822641164064, -0.037123553454875946, -0.023251444101333618, 0.012421706691384315, 0.024265967309474945, 0.0008807705016806722, 0.0012577753514051437, -0.045119691640138626, 0.036402251571416855, 0.030940774828195572, 0.0073714228346943855, -0.024057140573859215, -0.020434636622667313, -0.0007884579827077687, -0.0013970412546768785, 0.050265975296497345, -0.02689230442047119, -0.039495743811130524, 0.02211378701031208, -0.052182719111442566, -0.017594793811440468, -0.019414512440562248, 0.004101158119738102, -0.007969466038048267, 0.031705331057310104, -0.016462847590446472, 0.019128603860735893, -0.03162951394915581, 0.019494378939270973, -0.018127143383026123, 0.026190850883722305, -0.025137152522802353, -0.011416294611990452, 0.03247768431901932, -0.025224748998880386, -0.03560897707939148, 0.03990311548113823, 0.04190738499164581, -0.02751770056784153, -0.0036698458716273308, 0.04589954763650894, -0.08450669795274734, 0.039629410952329636, -0.011958482675254345, 0.018123643472790718, -0.006995770148932934, -0.030633602291345596, -0.0049246372655034065, -0.021345900371670723, 0.048684198409318924, -0.006777203641831875, -0.0015766324941068888, -0.02410956285893917, -0.04814119637012482, -0.001078148721717298, -0.002083397936075926, -0.041544776409864426, -0.009525524452328682, -0.022336481139063835, -0.01916947402060032, -0.012114214710891247, -0.00799331720918417, 0.001763071515597403, -0.0007776145939715207, 0.004462237004190683, 0.02940034680068493, 0.008664002642035484, 0.0213608518242836, 0.016549939289689064, -0.017942477017641068, -0.03501040115952492, -0.004436618182808161, 0.004141550976783037, 0.018608668819069862, -0.05332473665475845, 0.007269427180290222, 0.007758121471852064, 0.011437362991273403, -0.039731208235025406, 0.010134800337255001, -0.006646711844950914, 0.038031917065382004, 0.023086363449692726, 0.03839865326881409, 0.020081404596567154, 0.020914457738399506, -0.016201313585042953, 0.02433425560593605, -0.021108610555529594, -0.033455729484558105, -0.041602589190006256, 0.0333394892513752, -0.01213812455534935, 0.054976873099803925, 0.004661091137677431, -0.018276631832122803, -0.036877866834402084, -0.020641064271330833, 0.011050003580749035, -0.03417990729212761, -0.019006744027137756, -0.0247716773301363, -0.004654526710510254, -0.04353155940771103, 0.026225104928016663, 0.003741204971447587, -0.024287888780236244, 0.009599663317203522, 0.007963147945702076, -0.002136233728379011, 0.0058382791467010975, -0.020292216911911964, -0.03273572772741318, -0.007803543005138636, -0.02977583557367325, 0.062312088906764984, 0.004148767329752445, 0.01055646687746048, -0.0010623207781463861, 0.00232956581749022, -0.005564525257796049, -0.03084537386894226, -0.061700183898210526, -0.03414280712604523, -0.04565734416246414, 0.008330414071679115, 0.02313033863902092, -0.0034565806854516268, -0.034302692860364914, 0.02858049049973488, -0.04868689551949501, -0.012830831110477448, -0.004620966035872698, -0.028560258448123932, -0.013121611438691616, 0.02979205548763275, 0.04373452439904213, -0.001551995170302689, 0.033287569880485535, -0.012753608636558056, 0.058700744062662125, 0.005226418375968933, 0.0005099684349261224, -0.018366623669862747, -0.05215636268258095, -0.06961966305971146, -0.06143181025981903, 0.03982282429933548, -0.024431509897112846, -0.015477675013244152, -0.016522277146577835, -0.01438315398991108, 0.054130375385284424, 0.01673724129796028, 0.031332217156887054, 0.0570930577814579, 0.015439176931977272, 0.007923154160380363, -0.021974751725792885, 0.04395392909646034, 0.07304582744836807, -0.013305473141372204, -0.010439352132380009, -0.0142637575045228, -0.04331361874938011, 0.015211200341582298, -0.06318144500255585, -0.049739547073841095, -0.07091373950242996, -0.019677219912409782, 0.0778164193034172, -0.024729907512664795, 0.026544108986854553, 0.00218216166831553, -0.07010464370250702, -0.048856694251298904, 0.03501628339290619, -0.014642004854977131, 0.00926136877387762, 0.07610509544610977, -0.015060849487781525, 0.002374691190198064, 0.023184645920991898, 0.014487601816654205, 0.008247550576925278, -0.03263993561267853, 0.03672178089618683, -0.011554675176739693, -0.021251052618026733, 0.04265662282705307, 0.015617212280631065, -0.039806071668863297, -0.04913217946887016, 0.0058511001989245415, -0.004453278612345457, 0.005752522498369217, -0.041208118200302124, 0.036704350262880325, 0.0025337236002087593, -0.014688338153064251, 0.005705532152205706, 0.0071302298456430435, -0.016342133283615112, 0.07683035731315613, 0.0038573071360588074, 0.012140247039496899, -0.023976529017090797, 0.009729351848363876, -0.009182224050164223, -0.012283938005566597, -0.04173219949007034, -0.049551453441381454, 0.025413421913981438, 0.012255114503204823, 0.018070969730615616, 0.0456199049949646, 0.004162515979260206, -0.0032269179355353117, -0.01324023213237524, 0.006789640057832003, 0.043476399034261703, 0.009828155860304832, 0.007313630543649197, 0.014642028138041496, -0.03704313188791275, -0.07085325568914413, -0.012362833134829998, 0.007957572117447853, -0.016390938311815262, 0.03162132948637009, -0.05844258517026901, -0.01237880066037178, 0.015181911177933216, 0.0010540304938331246, -0.0076456922106444836, -0.0712217390537262, -0.008300967514514923, -0.036592770367860794, -0.0037465638015419245, -0.03751954063773155, 0.019869355484843254, 0.004167980048805475, 0.013311483897268772, 0.004671168979257345, -0.01681177131831646, -0.002648662542924285, 0.051073551177978516, -0.001980727771297097, -0.00044786612852476537, -0.04074883088469505, 0.001957176486030221, -0.06166230887174606, -0.025998936966061592, -0.056519750505685806, 0.011078073643147945, -0.005871602334082127, -0.05369305610656738, 0.008055567741394043, 0.011740393936634064, -0.02622552402317524, 0.01747194118797779, 0.02552214078605175, -0.024062976241111755, -0.02009091153740883, -0.049619343131780624, -0.0028268215246498585, 0.04723702371120453, -0.02270929515361786, 0.05712758004665375, 0.03478330001235008, 0.03136792033910751, 0.03456654027104378, -0.02298860065639019, -0.013554041273891926, -0.009608326479792595, 0.0033012351486831903, 0.00908821914345026, -0.0036133474204689264, -0.0323554202914238, -0.02108265832066536, 0.010602044872939587, -0.0538477897644043, -0.019959401339292526, -0.0018238784978166223, 0.03405984863638878, 0.008298869244754314, 0.01914628967642784, -0.005723455920815468, 0.05688745528459549, -0.01701829954981804, -0.002731368876993656, -0.017533564940094948, 0.028255531564354897, 0.022621164098381996, 0.010896457359194756, 0.013521033339202404, 0.02269814722239971, 0.019669177010655403, -0.04885509982705116, 0.0033530418295413256, 0.009007774293422699, -0.028315026313066483, 0.055640414357185364, 0.027344807982444763, -0.013368980959057808, -0.07212080806493759, -0.009876127354800701, -0.0029594283550977707, 0.012901918031275272, 0.0024661957286298275, -0.01613912172615528, 0.05237147957086563, -0.02399587817490101, -0.03872470185160637, 0.036072988063097, -0.08414507657289505, -0.01850498840212822, 0.04186340793967247, -0.01042681373655796, -0.01188039593398571, -0.02438901551067829, -0.05371376499533653, 0.014436561614274979, -0.04421789199113846, 0.01190713606774807, 0.0020478772930800915, 0.007487507537007332, 0.009869985282421112, 0.036534570157527924, -0.028870249167084694, 0.004472601227462292, 0.02165408432483673, 0.015634575858712196, -0.02272985689342022, -0.0360553003847599, -0.019434316083788872, 0.01545218750834465, 0.016351593658328056, -0.005766758229583502, 0.012425065971910954, 0.037183552980422974, -0.029897546395659447, 0.011804510839283466, 0.04336348548531532, 0.005520307924598455, 0.020212244242429733, -0.0025797246489673853, -0.015237090177834034, 0.010975286364555359, -0.011345332488417625, 0.0720783919095993, 0.009353947825729847, -0.011432388797402382, -0.015759266912937164, 0.042073193937540054, 0.044035352766513824, -0.011901396326720715, 0.01267364714294672, 0.03462660685181618, 0.0339234359562397, -0.02251533791422844, 0.010597948916256428, -0.03752758353948593, -0.0030152357649058104, 0.05865728110074997, 0.02441219426691532, -0.01949768327176571, 0.0414031445980072, 0.04857056587934494, -0.016646690666675568, 0.0007361761527135968, 0.0527883805334568, 0.016873091459274292, -0.00983676128089428, 0.0047796922735869884, -0.008494891226291656, 0.006705256644636393, 0.009608237072825432, -0.021822310984134674, -0.0007471698918379843, -0.01580657623708248, -0.013341494835913181, -0.0168605949729681, -0.025703854858875275, 0.03185766190290451, 0.001442617503926158, -0.021927328780293465, -0.006457643583416939, -0.002188559155911207, -0.007321493234485388, 0.035693515092134476, -0.0006938994047231972, 0.028223946690559387, 0.030234914273023605, 0.049891259521245956, -0.009597103111445904, 0.05640925467014313, 0.017520755529403687, 0.031255289912223816, 0.00020622056035790592, 0.03812159225344658, 0.028200363740324974, 0.009099416434764862, -0.029090607538819313, -0.0030027427710592747, -0.019075559452176094, 0.016616113483905792, 0.0011533844517543912, -0.002269290154799819, 0.01852925308048725, -0.04565228894352913, 0.010269826278090477, -0.025829533115029335, 0.05198387801647186, -0.050550010055303574, -0.005348464474081993, 0.036633823066949844, -0.007115576881915331, -0.039887573570013046, 0.05184962600469589, -0.0023319690953940153, 0.027134310454130173, 0.03293055295944214, 0.06580692529678345, 0.01737930066883564, 0.049474336206912994, 0.021715054288506508, -0.006446546409279108, -0.014155085198581219, -0.0027498474810272455, -0.021956106647849083, -0.045121755450963974, -0.006400182843208313, -0.04298758506774902, 0.00019754123059101403, -0.0332726426422596, -0.018890120089054108, -0.017131170257925987, 0.023236190900206566, 0.012852424755692482, -0.04121105745434761, 0.011892712675035, 0.03237391263246536, -0.004962836857885122, 0.0016836945433169603, 0.03314506262540817, 0.03297040984034538, -0.00013437106099445373, -0.005143881309777498, -0.03292004019021988, -0.02366235852241516, 0.013013863004744053, -0.032432183623313904, 0.042294181883335114, -0.015304993838071823, -0.03692415729165077, -0.02084345929324627, -0.045853305608034134, 0.012888573110103607, 0.0187001284211874, -0.018486227840185165, -0.0186284389346838, 0.050423748791217804, 0.012440080754458904, -0.03333651274442673, -0.0065890466794371605, -0.043716900050640106, -0.016248906031250954, 0.022129997611045837, 0.09342381358146667, -0.028164280578494072, 0.04745985195040703, 0.015861155465245247, -0.03291821479797363, 0.012080265209078789, -0.05070526897907257, 0.011277798563241959, 0.012746680527925491, -0.007204447407275438, -0.03965705633163452, -0.017374655231833458, -0.01435922272503376, -0.06501584500074387, 0.03776903450489044, 0.01435419823974371, 0.03267271816730499, -0.040710899978876114, -0.08296386152505875, -0.018160365521907806, -0.04524870216846466, -0.008852307684719563, -0.033125441521406174, -0.002955225296318531, 0.017339253798127174, -0.019241251051425934, 0.02042127214372158, -0.05712588131427765, 0.17563125491142273, 0.0422828271985054, 0.013403799384832382, -0.04010539874434471, 0.01690727286040783, 0.026981020346283913, 0.029648352414369583, -0.013343002647161484, 0.028598325327038765, -0.02523437887430191, 0.019497161731123924, 0.013581684790551662, 0.00975319929420948, 0.05219736695289612, 0.033499304205179214, 0.06235019862651825, -0.04666204750537872, 0.007543837185949087, -0.015151378698647022, -0.015343889594078064, -0.0558646060526371, 0.002314761048182845, 0.007945065386593342, 0.05539081618189812, -0.015873508527874947, 0.025102831423282623, 0.008836288005113602, -0.06759652495384216, -0.0019816916901618242, -0.020255200564861298, 0.024962037801742554, -0.04608326777815819, 0.04675965756177902, -0.021397721022367477, -0.06623679399490356, 0.009347640909254551, 0.024139592424035072, -0.032316744327545166, 0.016989728435873985, 0.031946416944265366, -0.030590808019042015, -0.017280688509345055, 0.04067276045680046, -0.040706221014261246, 0.034079231321811676, 0.02475588396191597, -0.04366438463330269, 0.0031152935698628426, 0.011744211427867413, -0.005253097508102655, 0.06955622136592865, -0.004308124538511038, 0.02839702181518078, -0.020303236320614815, -0.022290684282779694, -0.02344437688589096, 0.010791567154228687, -0.03170081600546837, -0.039875198155641556, 0.02246061898767948, 0.053466349840164185, -0.014358927495777607, -0.01734399050474167, -0.006644889246672392, 0.0005962149007245898, 0.03957972303032875, 0.0014909892342984676, -0.039414841681718826, -0.03130877763032913, -0.044367145746946335, 0.002262882888317108, -0.0054006027057766914, 0.002195292618125677, -0.018609467893838882, 0.02466699294745922, 0.013154746033251286, -0.016243666410446167, 0.010787085629999638, -0.015028135851025581, -0.02706947736442089, -0.037578608840703964, -0.0680810958147049, -0.04502721503376961, -0.013624407351016998, 0.011957933194935322, 0.0532817617058754, -0.06119968742132187, -0.028531795367598534, 0.00042118201963603497, 0.04757765680551529, 0.03821819648146629, 0.003851663088425994, 0.02650291845202446, 0.01205356977880001, -0.04024183377623558 ]
Lyra will lull you to sleep. what you want to be. you present them with an hourglass. Sagittarius, an archer without a bow. you have already forgotten her name. women are born from supernovae. you have taken its place. Tesneem Madani is a freshman at Eastern Michigan University majoring in biochemistry. She draws inspiration from the university's greenhouse as well as her faith, and her best writing comes after sunset. She enjoys warm cups of tea, painting and looking after her birds.
[ 0.003080813679844141, 0.005686245858669281, -0.017933284863829613, -0.0380823016166687, -0.03397570177912712, -0.0074441940523684025, 0.002994185546413064, 0.04182260483503342, 0.01397133618593216, 0.008515381254255772, 0.03570221737027168, 0.01390831358730793, -0.010187922976911068, -0.05261628329753876, -0.03180185332894325, -0.008606278337538242, -0.012688105925917625, -0.012386467307806015, -0.020717239007353783, -0.029320944100618362, -0.0018555345013737679, 0.0310134869068861, -0.07974902540445328, -0.018924562260508537, -0.02036997303366661, 0.03469756990671158, 0.03645212948322296, 0.004212106112390757, 0.06340204924345016, 0.06602410227060318, -0.029073478654026985, -0.03080693818628788, 0.032994020730257034, -0.05634838715195656, -0.004395840689539909, -0.018878186121582985, 0.029211778193712234, -0.028397779911756516, -0.018596265465021133, -0.03371407464146614, 0.021111520007252693, -0.005728456657379866, 0.03946053236722946, -0.01708178035914898, -0.03863278031349182, -0.009059377014636993, -0.028392888605594635, -0.022079311311244965, 0.013434634543955326, -0.040718935430049896, 0.006937386933714151, -0.017128709703683853, -0.0014960799599066377, 0.001996167004108429, -0.005507905036211014, 0.01790652982890606, 0.019623106345534325, 0.0023120963014662266, 0.006502551957964897, 0.032055314630270004, 0.041413336992263794, 0.01529549527913332, 0.0237201526761055, -0.06184937432408333, 0.005221222527325153, 0.02734566479921341, 0.013342145830392838, 0.009615197777748108, 0.012307403609156609, -0.008520558476448059, -0.00607853289693594, 0.011639460921287537, -0.014202813617885113, -0.015110081061720848, -0.01996101811528206, 0.01335308887064457, -0.026929695159196854, 0.020239699631929398, -0.011707961559295654, -0.007535967510193586, 0.004017386119812727, 0.04337528720498085, -0.007315113674849272, 0.013024415820837021, -0.04495564103126526, -0.0409102626144886, -0.02171875722706318, 0.044567108154296875, -0.0040148841217160225, -0.013960122130811214, 0.006562471389770508, 0.058592356741428375, -0.0007106155389919877, -0.023946011438965797, 0.04724767431616783, 0.040011417120695114, -0.039985205978155136, 0.011464502662420273, 0.00193831289652735, -0.017068933695554733, 0.020142486318945885, 0.022205909714102745, -0.005966874770820141, 0.03130105510354042, -0.044342461973428726, -0.012428037822246552, 0.008483844809234142, -0.010389456525444984, -0.0023023805115371943, -0.029825374484062195, -0.0008969162590801716, -0.03121808171272278, 0.02543015219271183, 0.04294496402144432, 0.023956330493092537, 0.0399482287466526, -0.021713677793741226, 0.05470895394682884, -0.039920464158058167, 0.01248097699135542, 0.009979719296097755, 0.019738487899303436, 0.019554777070879936, -0.01314513199031353, 0.04458605498075485, -0.026567263528704643, -0.02866058051586151, 0.03919646516442299, -0.041764311492443085, -0.011205172166228294, 0.0026464860420674086, -0.05925571545958519, 0.026247132569551468, 0.013313609175384045, -0.009899083524942398, 0.05528075993061066, 0.01065700501203537, 0.05577467381954193, -0.0042546153999865055, -0.07918257266283035, 0.02655109576880932, 0.03401491045951843, 0.0011680044699460268, 0.11277730017900467, -0.0023232600651681423, 0.024160724133253098, 0.013941974379122257, 0.004227489698678255, -0.044396210461854935, 0.017530621960759163, -0.047036390751600266, -0.008980119600892067, -0.017702480778098106, 0.028588207438588142, -0.01621047593653202, -0.03377201780676842, -0.0026307988446205854, -0.0034070091787725687, 0.028415491804480553, 0.013356998562812805, -0.015511476434767246, -0.008885776624083519, 0.010930950753390789, 0.05863656476140022, 0.00694321421906352, 0.028914883732795715, -0.020872745662927628, -0.0392642617225647, -0.0009358171955682337, -0.04549838602542877, 0.02675374411046505, -0.010296185500919819, -0.017543485388159752, 0.02630082331597805, 0.023975428193807602, 0.03498166427016258, 0.005306053441017866, -0.028616374358534813, 0.025271013379096985, 0.025008318945765495, -0.020312540233135223, 0.02556573413312435, 0.00520115764811635, 0.056484367698431015, 0.0022778399288654327, 0.01132749579846859, 0.01153666339814663, -0.01746702380478382, -0.021422667428851128, -0.011764499358832836, -0.014071389101445675, 0.05479300394654274, -0.013841724023222923, 0.037379954010248184, -0.011796445585787296, 0.015719952061772346, -0.03471158444881439, -0.025010641664266586, -0.011640682816505432, -0.05150941014289856, 0.014150533825159073, 0.03947373852133751, -0.05569668486714363, 0.025271015241742134, -0.00035840951022692025, -0.030269039794802666, 0.007584939710795879, 0.05798839032649994, -0.05893983319401741, 0.007070132531225681, 0.03314577788114548, 0.019314156845211983, -0.03619011864066124, -0.007089002523571253, 0.021997135132551193, -0.03619882091879845, -0.038967233151197433, 0.057550832629203796, -0.031021468341350555, -0.01581757701933384, 0.026273801922798157, 0.022562505677342415, 0.050692055374383926, 0.03687547147274017, -0.021889356896281242, -0.001753455027937889, 0.010423706844449043, 0.04761625826358795, -0.021900024265050888, -0.025350354611873627, 0.008028632029891014, 0.026646077632904053, 0.0357864573597908, 0.047374699264764786, 0.019861552864313126, 0.00038417879841290414, 0.038257453590631485, 0.055888380855321884, -0.010060064494609833, 0.02830503322184086, 0.023274820297956467, 0.013265756890177727, 0.04179854318499565, 0.0699101984500885, -0.01277178805321455, 0.04223110154271126, -0.020417775958776474, -0.02532300353050232, -0.020464032888412476, 0.0476556122303009, 0.005829819943755865, 0.037126488983631134, 0.027201956138014793, 0.006736343260854483, -0.03253357112407684, 0.01446108240634203, 0.035539258271455765, 0.04308820515871048, -0.006226395722478628, -0.03255100175738335, -0.017803708091378212, 0.002066822722554207, 0.011497332714498043, 0.00037038547452539206, 0.02147599123418331, 0.008783633820712566, 0.01620568335056305, 0.023729778826236725, -0.00846059713512659, -0.05264795944094658, -0.03068290278315544, -0.06723397225141525, -0.03367600589990616, -0.02959943562746048, -0.02221810258924961, -0.02039247937500477, 0.051352810114622116, -0.04799654334783554, 0.04864181578159332, -0.0032384819351136684, -0.00686422036960721, -0.010550200007855892, -0.03578741475939751, 0.0489802248775959, 0.016028478741645813, 0.04156731069087982, -0.04109988734126091, 0.049528900533914566, -0.019443467259407043, 0.03630288317799568, -0.047180306166410446, 0.013286210596561432, -0.02607513964176178, -0.01801122911274433, 0.03609670698642731, -0.01986202970147133, -0.0060583679005503654, -0.018481861799955368, -0.04681731387972832, -0.05229143425822258, 0.04593859240412712, 0.037194378674030304, -0.004963740706443787, 0.022904805839061737, -0.030912229791283607, 0.033845458179712296, 0.048725809901952744, -0.025318074971437454, 0.025870755314826965, 0.013296877034008503, -0.045345596969127655, 0.03454906865954399, 0.007797061465680599, -0.0027495992835611105, -0.03492480888962746, 0.02464219368994236, 0.031086256727576256, 0.019967075437307358, -0.011992965824902058, -0.02471180632710457, -0.04039726406335831, 0.004301005508750677, 0.0017098741373047233, 0.0012528517981991172, -0.009107342921197414, 0.04111751541495323, 0.016750263050198555, -0.0732758417725563, 0.036097411066293716, -0.03813687339425087, -0.020633773878216743, 0.00893376860767603, -0.03411886468529701, 0.02874458022415638, 0.02437550388276577, 0.031097032129764557, 0.01346402894705534, -0.03471866995096207, -0.01367227640002966, 0.009494350291788578, 0.07128648459911346, -0.04002523049712181, 0.016664311289787292, 0.05771203339099884, 0.015157556161284447, 0.021220481023192406, 0.03368660435080528, -0.02515997737646103, -0.02770870551466942, 0.01109875738620758, 0.01053284015506506, 0.004328217823058367, 0.02588037960231304, 0.01450468972325325, 0.013170471414923668, 0.053181909024715424, -0.012241938151419163, -0.026536939665675163, 0.015617981553077698, -0.02350843884050846, -0.013365569524466991, 0.02088170312345028, 0.011910299770534039, -0.01946013607084751, -0.015884988009929657, -0.03174744173884392, 0.025916175916790962, 0.01747904345393181, 0.0737636387348175, -0.0699949860572815, 0.0551530197262764, -0.014561492949724197, -0.026607483625411987, 0.038811616599559784, -0.043696191161870956, -0.0009227913105860353, 0.03482319787144661, -0.01605643518269062, 0.0033808103762567043, -0.023496873676776886, -0.005535339005291462, -0.010703890584409237, 0.01190329808741808, 0.026987479999661446, -0.014623576775193214, 0.022611789405345917, -0.016545385122299194, -0.04163535684347153, 0.00006061324165784754, -0.028801582753658295, -0.009201166220009327, -0.023063812404870987, 0.0014168567722663283, -0.008800002746284008, -0.05431700125336647, -0.08463336527347565, 0.02155444025993347, 0.0454232320189476, 0.02916368655860424, -0.010179759934544563, 0.03515629470348358, 0.030628912150859833, 0.02078506536781788, 0.053575996309518814, -0.03799455612897873, 0.036597758531570435, -0.039396822452545166, 0.04343691095709801, 0.011505740694701672, -0.014332858845591545, -0.02672218531370163, -0.008718148805201054, -0.02691500633955002, 0.03691597282886505, 0.009551411494612694, -0.025490783154964447, -0.021986115723848343, 0.041096679866313934, -0.009846127592027187, 0.03822360932826996, -0.035616304725408554, -0.005641292780637741, -0.029650161042809486, 0.04331721365451813, -0.019532201811671257, -0.02897660993039608, -0.010078958235681057, -0.04520347714424133, 0.06047956272959709, 0.03753003478050232, -0.012811815366148949, -0.029973333701491356, -0.03372630104422569, -0.029654119163751602, -0.03747820109128952, -0.011244362220168114, 0.046534158289432526, -0.005122940521687269, 0.027991559356451035, -0.04403701424598694, 0.04799395427107811, 0.04573611542582512, -0.004471864551305771, -0.007145281881093979, 0.007781514432281256, 0.015160433948040009, -0.030078161507844925, 0.04095971956849098, -0.014413123950362206, -0.04093913733959198, 0.03785602003335953, -0.07586662471294403, 0.03297774866223335, -0.0010689867194741964, 0.02068871073424816, 0.011477744206786156, -0.022633027285337448, 0.01047933753579855, 0.02364165335893631, -0.04152996838092804, -0.002355216071009636, -0.022984249517321587, 0.0443117618560791, -0.041080545634031296, -0.04222183674573898, 0.03704984486103058, -0.009762120433151722, -0.022742196917533875, 0.04079566150903702, 0.043887242674827576, -0.003044074634090066, 0.007285724859684706, -0.008329466916620731, -0.04038507118821144, 0.05634201690554619, -0.04347378760576248, 0.0035622562281787395, -0.017357762902975082, -0.05443403497338295, 0.010382608510553837, -0.021724995225667953, 0.039218224585056305, -0.008710126392543316, 0.0020041426178067923, -0.036830827593803406, -0.04843410477042198, -0.027884580194950104, -0.003722570138052106, -0.02808704786002636, 0.015085036866366863, -0.02708854153752327, -0.04445112124085426, -0.013530404306948185, 0.01121461857110262, 0.029014015570282936, 0.0034795422106981277, -0.048565901815891266, -0.03586801886558533, -0.002605194691568613, -0.0066495672799646854, 0.031186508014798164, -0.014288120903074741, -0.03657486289739609, 0.017086703330278397, -0.012119177728891373, -0.0186165664345026, -0.046356674283742905, -0.030872197821736336, -0.045058391988277435, -0.022413449361920357, -0.020491940900683403, 0.008191276341676712, -0.03625320643186569, -0.0000027457929263619008, 0.016152236610651016, 0.02376100793480873, -0.002889788243919611, 0.011643456295132637, -0.03422703966498375, 0.05336986854672432, 0.03384588286280632, -0.04313906654715538, 0.0037705462891608477, 0.03248675540089607, -0.0006066766800358891, 0.056508373469114304, -0.024352334439754486, -0.050337474793195724, -0.034061580896377563, -0.05378284305334091, -0.005307001993060112, -0.039542656391859055, -0.018827520310878754, -0.04622212424874306, 0.00526271341368556, -0.017112379893660545, 0.035074371844530106, -0.012529461644589901, -0.03852125257253647, -0.01276254840195179, -0.06292524933815002, 0.03149993717670441, -0.03507259115576744, -0.007870646193623543, -0.021505232900381088, -0.008204878307878971, 0.009275139309465885, 0.07627423852682114, -0.011713766492903233, 0.04405980929732323, 0.019317617639899254, 0.007319678086787462, -0.003446535672992468, -0.008616198785603046, -0.039348453283309937, -0.038440097123384476, 0.006833937484771013, -0.004513976164162159, 0.01686793752014637, 0.022106487303972244, -0.04285905882716179, 0.03829077258706093, -0.04480743780732155, -0.0137904342263937, -0.0047051189467310905, -0.01753600686788559, -0.009408908896148205, -0.01931605488061905, 0.052802201360464096, -0.033950645476579666, -0.0139377536252141, 0.003766020992770791, 0.027442876249551773, 0.06072279438376427, -0.0076151276007294655, -0.051501739770174026, -0.025179030373692513, -0.03799313306808472, -0.057324111461639404, 0.024882500991225243, -0.037236135452985764, -0.011297754012048244, -0.04899489879608154, -0.009237623773515224, 0.045992884784936905, -0.06356329470872879, 0.015482247807085514, 0.03774399682879448, -0.029945015907287598, -0.012750066816806793, -0.05248792842030525, 0.01989593170583248, 0.06085214391350746, -0.026546435430645943, 0.003184625180438161, -0.0342983640730381, -0.05341731011867523, 0.0006747262668795884, -0.05412726849317551, -0.016848402097821236, -0.04951160028576851, 0.0014127555768936872, 0.05976254120469093, -0.028122171759605408, 0.032007038593292236, -0.005703289061784744, -0.023251380771398544, -0.04688761755824089, 0.08105847984552383, 0.024762311950325966, 0.014110509306192398, 0.053834009915590286, -0.004933645483106375, -0.011618603952229023, 0.016533425077795982, 0.002790941623970866, -0.014643983915448189, -0.03707750886678696, 0.03895021602511406, -0.01582096889615059, -0.007844848558306694, 0.02290698140859604, 0.04361897334456444, -0.076853908598423, -0.04799174144864082, -0.011428196914494038, 0.005416429601609707, -0.01841815561056137, -0.04022783041000366, -0.008282500319182873, -0.006116396747529507, -0.013849608600139618, 0.024219157174229622, 0.028578247874975204, 0.0034974971786141396, 0.05665101483464241, -0.003462563967332244, 0.0263101477175951, -0.06416518986225128, 0.023143194615840912, 0.03271159529685974, 0.001291982363909483, -0.03329067304730415, -0.04568193852901459, 0.004562642425298691, -0.008548702113330364, -0.01703636534512043, 0.053662631660699844, -0.02542145550251007, 0.016343852505087852, 0.01496131345629692, 0.004841361194849014, 0.03463556617498398, -0.010972892865538597, -0.007972896099090576, 0.01497013121843338, -0.04443531483411789, -0.038586776703596115, -0.04138529300689697, 0.05551435425877571, 0.005910194478929043, 0.033499348908662796, -0.035423099994659424, -0.012790548615157604, 0.05132971704006195, 0.003575987881049514, -0.0037926400545984507, -0.03731486573815346, -0.042148467153310776, -0.045751191675662994, -0.06710874289274216, -0.029517335817217827, -0.03641865774989128, 0.004015140235424042, 0.0335707888007164, 0.00455089146271348, -0.01905917562544346, 0.00699062692001462, 0.010452274233102798, -0.02275025099515915, 0.014435425400733948, -0.008762737736105919, 0.026587985455989838, -0.04549378901720047, -0.015990544110536575, -0.054866891354322433, -0.01768861897289753, -0.01697811484336853, 0.007063328288495541, -0.0184348002076149, 0.020755594596266747, -0.019940974190831184, 0.05473701283335686, 0.024266034364700317, 0.004813868552446365, -0.019155004993081093, -0.03863894194364548, 0.001189327915199101, 0.06048844754695892, -0.015412992797791958, 0.05125478282570839, 0.041274942457675934, -0.029009096324443817, 0.01040450856089592, -0.003319739131256938, -0.03606522083282471, 0.024907805025577545, 0.02028583735227585, 0.024231337010860443, 0.008754372596740723, -0.006553373299539089, -0.03643663972616196, 0.017906460911035538, -0.028699254617094994, 0.01806141994893551, -0.0036093511153012514, 0.0017184719908982515, -0.0024717547930777073, -0.00088843097910285, -0.0024652741849422455, 0.04797694832086563, 0.02176217921078205, 0.017298439517617226, 0.013963860459625721, 0.018753204494714737, 0.013148757629096508, -0.004994367714971304, 0.01332218386232853, 0.03933567553758621, 0.033634427934885025, -0.008580470457673073, -0.009867662563920021, 0.0014871841995045543, 0.017215846106410027, 0.04899835214018822, -0.029938220977783203, -0.0285950880497694, -0.027098990976810455, 0.0069253770634531975, -0.0010148094734176993, 0.05005648732185364, 0.045599885284900665, -0.0369100347161293, 0.020203083753585815, -0.05037855729460716, -0.05589289963245392, -0.004544952884316444, -0.07078898698091507, -0.04166664928197861, 0.037701014429330826, -0.03529832139611244, 0.01376495324075222, 0.0043675838969647884, -0.0243527889251709, -0.009087134152650833, -0.025867149233818054, 0.005504073575139046, -0.02936621382832527, 0.019623009487986565, -0.013463950715959072, 0.03823442384600639, -0.026647360995411873, 0.01889270730316639, -0.016863157972693443, 0.04656064137816429, -0.033656708896160126, -0.033361807465553284, 0.03291618824005127, 0.006865546107292175, 0.020620016381144524, -0.0015527330106124282, 0.006550034042447805, -0.002876676619052887, -0.009419398382306099, 0.03466687351465225, -0.005465185269713402, -0.016550419852137566, 0.025811761617660522, 0.02979547716677189, 0.010887112468481064, 0.02680055983364582, -0.03911216929554939, 0.013520450331270695, 0.014255378395318985, -0.03501198813319206, -0.030527904629707336, 0.01085368450731039, 0.046732012182474136, -0.010426729917526245, 0.038122598081827164, 0.01066250167787075, 0.06868499517440796, 0.0074905408546328545, 0.002977205440402031, 0.0006299311644397676, 0.04823659360408783, 0.02150367572903633, 0.04093879461288452, -0.022382747381925583, 0.022501317784190178, 0.04623493552207947, -0.002363146748393774, 0.008163711056113243, 0.03260558843612671, 0.055208299309015274, -0.02447567693889141, 0.0013032659189775586, -0.02891341969370842, -0.0265779010951519, 0.02253064326941967, -0.023671910166740417, 0.018719086423516273, -0.03110877424478531, 0.004593058954924345, -0.05281275883316994, 0.007489446084946394, 0.05498569831252098, -0.02223188430070877, -0.0039020241238176823, -0.0004608041199389845, -0.030008060857653618, 0.01641959697008133, 0.04775745049118996, 0.02538904920220375, 0.012587415054440498, 0.03730139881372452, 0.009655213914811611, -0.005216830875724554, 0.03377091884613037, 0.013567917980253696, -0.0017903742846101522, -0.002394433133304119, 0.018905095756053925, 0.016047772020101547, 0.00017618286074139178, -0.01617555133998394, 0.0025657652877271175, -0.045385971665382385, 0.03736082464456558, -0.026569558307528496, -0.024247603490948677, 0.031074045225977898, -0.07073702663183212, -0.01676599681377411, -0.04484674334526062, 0.029150651767849922, -0.020261799916625023, 0.001942214323207736, 0.040118150413036346, -0.009880350902676582, -0.024925192818045616, 0.03797748684883118, 0.010132583789527416, 0.04661879315972328, 0.0015578160528093576, 0.02827920764684677, -0.011284952983260155, 0.051434941589832306, 0.053876545280218124, -0.008031213656067848, -0.014187807217240334, 0.01238290686160326, 0.01718243584036827, -0.06271316111087799, -0.002853491110727191, -0.030075332149863243, 0.026443203911185265, -0.022466879338026047, 0.011286113411188126, -0.021265024319291115, 0.047119006514549255, -0.008982162922620773, -0.021929940208792686, -0.004408699460327625, 0.03777628019452095, -0.04911110922694206, -0.001865973463281989, -0.01580738089978695, 0.0383090041577816, -0.010166255757212639, 0.011351663619279861, -0.006318720988929272, -0.054724227637052536, -0.003509124740958214, -0.05766403302550316, 0.047902319580316544, 0.0015002799918875098, -0.030337395146489143, -0.03257286921143532, -0.04347569867968559, -0.02329554408788681, 0.011796724982559681, -0.016063373535871506, -0.020901164039969444, 0.03659610077738762, 0.048136286437511444, 0.0025931084528565407, -0.01571885496377945, -0.048338763415813446, -0.007114488165825605, 0.04698400944471359, 0.04041203111410141, -0.007988151162862778, 0.03493603691458702, 0.026607612147927284, -0.017770055681467056, 0.030305225402116776, -0.023080341517925262, 0.030721059069037437, -0.04007326439023018, -0.014522315934300423, -0.02190610021352768, 0.00460048858076334, -0.005122947506606579, -0.061027076095342636, 0.0016705687157809734, 0.01704142987728119, 0.0047506531700491905, -0.01572207547724247, -0.08058332651853561, -0.02504483051598072, -0.022124923765659332, -0.00026908647851087153, -0.06355971843004227, 0.033860523253679276, 0.029881224036216736, -0.010942267253994942, 0.019329488277435303, -0.06391216814517975, 0.15835390985012054, 0.06570421904325485, 0.04667537286877632, 0.003570731496438384, 0.03143879398703575, 0.05823322758078575, 0.0309901162981987, -0.011388691142201424, 0.0052048866637051105, -0.023613840341567993, 0.021444348618388176, -0.021804478019475937, 0.06575346738100052, -0.001978627173230052, 0.006837510969489813, 0.08531559258699417, -0.017993200570344925, 0.00857354886829853, 0.005048627499490976, -0.037533022463321686, -0.06162209436297417, 0.028238169848918915, 0.010524437762796879, 0.022259898483753204, 0.010164361447095871, -0.013419665396213531, 0.040548019111156464, -0.03630409017205238, 0.010674367658793926, -0.01207856833934784, 0.01898014545440674, -0.01869799755513668, 0.040553510189056396, -0.00936759915202856, -0.009865089319646358, 0.03651108592748642, -0.009020566008985043, -0.012873068451881409, 0.005633333697915077, 0.03557960316538811, -0.031749971210956573, -0.017998185008764267, 0.027452168986201286, -0.05325052887201309, 0.0031857637222856283, 0.016758956015110016, -0.001619572751224041, -0.0039660255424678326, 0.0005922284326516092, -0.02727096900343895, 0.06573619693517685, -0.04160912334918976, 0.006605530623346567, -0.011993487365543842, -0.03234567493200302, 0.02802766114473343, 0.004371095914393663, -0.02468622475862503, -0.025527561083436012, 0.0017010824522003531, -0.007059989497065544, 0.0008288181270472705, -0.03756631165742874, -0.008657334372401237, -0.034261059015989304, 0.04646474868059158, 0.03005870245397091, 0.007280263584107161, -0.03124098666012287, -0.01773962751030922, -0.04143500328063965, 0.00897352397441864, -0.03194572404026985, -0.00961635448038578, 0.05170026794075966, 0.03439087048172951, -0.03413676097989082, 0.0540105439722538, -0.026075363159179688, 0.00023280057939700782, -0.0228734128177166, -0.03178248181939125, -0.020608359947800636, 0.005438686348497868, 0.00034198834327980876, 0.03690388426184654, -0.04269164428114891, -0.010802077129483223, -0.046358633786439896, 0.044681109488010406, 0.054770972579717636, 0.028440898284316063, 0.002924182452261448, -0.003965246491134167, -0.018980668857693672 ]
DNotes Pay DNotes 2015 Year in Review By admin January 7, 2016 February 22nd, 2017 Blog 2015 was a busy year for DNotes. The company saw to the creation of multiple savings plans to help either retired persons or attending university students. It is also seeking to create a new business entity that fully integrates the blockchain, and DCEBrief has set out on a mission to provide solid, no-nonsense stories regarding DNotes and the world of digital currency in general. When all is said and done, DNotes clearly has a lot on its plate, and this is JUST THE BEGINNING… December – DNotes Announces Company Launch and Book for Small Business Owners for 2016 DNotes today announced the early 2016 release of a book for small business owners. The announcement comes on the heels of October's revelations about the company's plans for the launch of a new for-profit enterprise next year. DNotes officials have confirmed that the new company launch and the planned book release are part of an ongoing strategy to differentiate the DNotes ecosystem and better serve partners and customers throughout the cryptocurrency industry and beyond. http://dcebrief.com/bitcoin-alternative-dnotes-announces-company-launch-and-book-for-small-business-owners-in-2016/ November – Cryptopia Starts Adding DNotes & DNotes Video Series Launched Based in New Zealand, Cryptopia is setting out to create the simplest and most effective uses for cryptocurrency users. In November, the company offered DNotes a pleasant surprise when they started adding the DNotes cryptocurrency to its platform, thereby helping to solidify DNotes' reputation as the digital money of the future. https://www.cryptopia.co.nz/Exchange?market=NOTE_BTC Timothy Goggin, director of CRISP for Students, launched the first of a series of DNotes videos. The DNotes video series provides an introduction to digital currency, its advantages, DNotes projects and services, and our plans to harness the potential of payment protocol to become a prominent and competitive money transfer processor in the near future. https://www.youtube.com/watch?v=BsXO8ttmSxw October – DNotes will Launch New Company in 2016 that Integrates the Blockchain, the DNotes Currency and a New Payments Systems The DNotes team will create a new company that will focus on the DNotes cryptocurrency, blockchain technology, and the payment system in 2016. DNotes the currency will have 25 percent ownership in the company to start, subject to dilution, as the company is expected to grow heavily over time. Company founder Alan Yong believes that the new structure is likely to bring about more social benefits than even the Internet itself. http://dcebrief.com/bitcoin-alternative-dnotes-announces-new-company-launch-in-2016-to-integrate-the-currency-payment-system-and-blockchain/ September – DNotes Launches DCEBrief News Site & DNotes Listed on Cryptsy Exchange DNotes launches DCEBrief, allowing readers the opportunity to learn more about what's happening in the world of DNotes and cryptocurrency. The site is designed to give business owners, decision-makers, and others who have a say in the world of finance and digital currency unbiased, to-the-point information regarding today's most important cryptocurrency-related stories without any "fluff or filler." http://thebitcoinnews.com/bitcoin-alternative-dnotes-launches-dcebrief-com-digital-currency-executive-brief-news-portal-3/ After some time the DNotes team and supporters made a push to have DNotes listed on Cryptsy, and finally got listed in September. This was a win for the DNotes community demonstrating their strength. https://www.cryptsy.com/markets/view/NOTE_BTC August – DNotes Offers Free Bitcoin Education App In an attempt to show the general public that one doesn't need to be fully "tech savvy" to understand digital currency, DNotes launched an education app via Google that features how-to guides, definitions, links and even a quiz to assure everyone is learning about the money of the future. Cryptocurrency is looked at as something that will likely affect how business is done all over the world, and DNotes wants to make sure everyone is familiar with how it will work. http://bitcoinprbuzz.com/free-bitcoin-education-google-play-app-launched-by-dnotes/ June – DNotes Presents at Nasdaq in New York & Alan Yong is Interviewed by CoinTelegraph The Silicon Dragon Event, which took place at the Nasdaq in New York, featured Alan Yong and DNotes making an appearance on the panel alongside Francesco Rulli of bitLanders and Sarah Martin of the Digital Currency Council. Yong is a cryptocurrency and technology entrepreneur that has been innovating in the technology field for over three decades. http://www.prnewswire.com/news-releases/digital-currency-dnotes-to-present-at-nasdaq-in-new-york—builds-on-bitcoins-shortfalls-300098845.html Yong was also interviewed by cryptocurrency news platform CoinTelegraph. During the talk, Yong spoke on a number of topics, including what it was about bitcoin that influenced him to create DNotes and how cryptocurrency could potentially solve the country's debt crisis. Yong refers to DNotes as a "currency with a purpose." http://cointelegraph.com/news/114557/dnotes-will-be-known-as-the-currency-with-a-purpose May – DNotes Launches World's First Cryptocurrency Employee Incentive Plan DNotes has launched an employee incentive benefits plan. Employees must register for the program using a single form. From there, they are issued a dashboard that provides information regarding their specific and unique activity. Their employer is then able to send them DNotes accordingly. The program is built to help employees build long-term goals for before and after retirement. https://www.cryptocoinsnews.com/bitcoin-alternative-dnotes-launches-worlds-first-digital-currency-employee-incentive-benefits-plan/ March – DNotes Offers Help with Student Debt through Cryptocurrency DNotes launches CRISP for Students, a new savings plan designed to help university attendees alleviate some of the debt and financial ailments they're likely to experience after graduation. Schools, students and clubs alike will be eligible to join in on the action. They'll be apportioned specific and unique codes, which they can use to get their hands on special gifts of up to 500 DNotes, the cryptocurrency that is slated to grow beyond measure in the next five years. http://finance.yahoo.com/news/digital-currency-student-debt-solutions-094800790.html;_ylt=AwrBJR9uShlVcxQAZ_zQtDMD February – DNotes Launches New Retirement Plan Set to Help the Underfunded and Unbanked The plan is set to offer up to 12 percent annual returns for participants. In today's economy, many are underserved by the traditional methods of modern-day banks, and it's becoming harder to save for retirement. DNotes is aiming to change all this through its own digital currency, which is not only completely secure, but is slated to grow heavily in value. http://bitcoinprbuzz.com/bitcoin-alternative-dnotes-digital-currency-retirement-savings-plans-provide-12-annual-interest-relief-for-underfunded-retirement-accounts-and-the-unbanked-worldwide/ Bitcoin Alternative DNotes Announces Company Launch and Book for Small Business Owners in 2016 Website: DNotesCoin.com Company Website: DNotesGlobal.com Stocks.Exchange BiteBTC DCEBrief DNotesVault NextGenHERo 4 Pillars of Success © 2020 DNotes. DNotes Newsletter Receive DNotes updates in your email.
[ -0.000009241560292139184, -0.023689940571784973, -0.01212800107896328, -0.015472828410565853, -0.04201727733016014, 0.011384609155356884, 0.02339785173535347, 0.03216804563999176, 0.025901377201080322, 0.05514814332127571, 0.0024225697852671146, -0.004590366967022419, 0.023131227120757103, -0.02120404876768589, -0.023457800969481468, -0.0029902455862611532, -0.021118519827723503, -0.028226345777511597, -0.024592578411102295, 0.00032685601036064327, -0.020291484892368317, 0.002963364589959383, -0.04126064106822014, -0.05674942955374718, 0.009586835280060768, 0.06971338391304016, 0.011820988729596138, 0.021734625101089478, 0.10114479809999466, 0.04678836464881897, -0.004315997939556837, -0.03212234750390053, 0.016322549432516098, -0.04602334648370743, -0.010741104371845722, -0.018376441672444344, 0.023686952888965607, -0.019557222723960876, -0.01978653483092785, -0.05346902459859848, 0.017611538991332054, -0.01251702755689621, 0.059101201593875885, -0.0070487260818481445, -0.057524990290403366, -0.02712257206439972, -0.03167283535003662, -0.014627117663621902, -0.03333364799618721, -0.039410077035427094, 0.011336082592606544, -0.008600198663771152, 0.04517428204417229, -0.012788360007107258, -0.009419032372534275, 0.02661510929465294, -0.018870089203119278, -0.034652434289455414, -0.03443041071295738, 0.005079967435449362, 0.022767324000597, -0.011650487780570984, 0.04552236571907997, -0.0456443689763546, 0.025552215054631233, 0.015396235510706902, -0.04757954180240631, -0.048784784972667694, 0.0003924295015167445, -0.022344717755913734, -0.018089264631271362, -0.021407589316368103, -0.022578325122594833, -0.047032345086336136, 0.0022127011325210333, -0.01475564669817686, -0.020631272345781326, -0.011136673390865326, -0.019980866461992264, 0.01372578926384449, 0.021082187071442604, 0.030629616230726242, -0.02177601493895054, 0.00647220341488719, -0.052864354103803635, -0.03641361743211746, 0.004300242755562067, -0.033117420971393585, -0.00012196844909340143, 0.007025705184787512, 0.008311864919960499, 0.0464363619685173, 0.0260319784283638, -0.014062292873859406, 0.04243812337517738, 0.06140840798616409, -0.024743055924773216, 0.04758185148239136, 0.010570303536951542, 0.006341889034956694, 0.026201853528618813, -0.006504033226519823, 0.008264073170721531, 0.04445096477866173, -0.04603728652000427, -0.01789536513388157, -0.006158696487545967, 0.00722439493983984, -0.024001194164156914, -0.04579220339655876, 0.0016764546744525433, -0.0012179703917354345, 0.030344657599925995, 0.005433897953480482, -0.0006031563389115036, 0.05334314703941345, 0.002605405170470476, 0.033032841980457306, -0.0074452743865549564, 0.02050909213721752, 0.000987890176475048, 0.018004486337304115, 0.03742732107639313, -0.03520530089735985, 0.011555320583283901, -0.01297621801495552, -0.03952663391828537, 0.05123079568147659, -0.036754265427589417, -0.012618566863238811, 0.004800942726433277, -0.06116824969649315, -0.04290490597486496, 0.0306940246373415, -0.0004042109940201044, -0.008831223472952843, -0.006609933450818062, 0.011876600794494152, 0.008025405928492546, -0.04545510187745094, 0.014804031699895859, 0.012604755349457264, 0.01413524430245161, 0.10119195282459259, 0.007658627815544605, 0.016042450442910194, -0.025912735611200333, -0.01578432507812977, -0.019656283780932426, 0.04971204698085785, -0.019859539344906807, 0.03254658356308937, 0.012041828595101833, 0.019394882023334503, -0.017779536545276642, -0.018543245270848274, -0.012778731063008308, 0.02355179749429226, 0.009288989938795567, 0.022789228707551956, -0.010145211592316628, 0.007137960288673639, 0.009311302565038204, 0.04162060469388962, 0.007821256294846535, 0.04919963702559471, -0.03320464491844177, -0.017059048637747765, 0.010402989573776722, -0.03049001470208168, 0.04158623144030571, 0.0033563999459147453, -0.035152144730091095, 0.026193086057901382, 0.02859206311404705, 0.034070152789354324, 0.04389650374650955, -0.033142801374197006, 0.05606601759791374, 0.00665984395891428, -0.03614625707268715, 0.013727761805057526, -0.002304081106558442, 0.029731303453445435, 0.0011146250180900097, 0.014178953133523464, 0.017246464267373085, -0.05490758270025253, -0.016159571707248688, -0.034133970737457275, -0.02311856485903263, 0.0028556548058986664, -0.05492198094725609, 0.032357003539800644, 0.037996575236320496, -0.00041590837645344436, -0.01885075308382511, -0.0054085892625153065, -0.019694868475198746, -0.05350920557975769, 0.002547611016780138, 0.027606887742877007, -0.021845754235982895, 0.017734773457050323, -0.011151866987347603, -0.023384777829051018, 0.04657096043229103, 0.061835989356040955, -0.05606413632631302, -0.0056694271042943, 0.016037777066230774, 0.01490152906626463, -0.0036204529460519552, -0.03131653741002083, -0.0033847051672637463, -0.007267444860190153, 0.00013618053344544023, 0.043405547738075256, -0.0017729697283357382, -0.028177911415696144, 0.00038158861570991576, 0.015602759085595608, 0.04747672379016876, 0.044570744037628174, 0.0017539161490276456, 0.006781183648854494, 0.007204089779406786, 0.02674202434718609, -0.02036026306450367, -0.004599429201334715, -0.014470888301730156, 0.07671051472425461, 0.019784584641456604, 0.06675295531749725, 0.01504172757267952, 0.026601681485772133, 0.05245097354054451, 0.024301735684275627, -0.014784673228859901, 0.032850343734025955, -0.017957989126443863, -0.007245554588735104, 0.01776190474629402, 0.02167567051947117, 0.00905569177120924, 0.02078617736697197, -0.020650409162044525, -0.028717586770653725, -0.02185993641614914, 0.024320457130670547, -0.0686427503824234, 0.02959982305765152, -0.00041008583502843976, 0.026219414547085762, -0.056251466274261475, -0.001764262793585658, 0.02082413248717785, 0.05554598942399025, -0.026095490902662277, -0.0009327525040134788, 0.012335996143519878, 0.04165566340088844, -0.03223355859518051, -0.010051582008600235, 0.041236523538827896, 0.00932435505092144, 0.0026692624669522047, 0.04770892858505249, -0.01179859321564436, -0.014620980247855186, -0.024561740458011627, -0.06480903178453445, -0.03770977631211281, -0.03434951975941658, -0.05268864333629608, -0.009649508632719517, 0.05655625835061073, -0.04303275793790817, 0.026244863867759705, -0.03618595004081726, 0.008987045846879482, -0.0225727166980505, -0.009824085980653763, 0.02031652256846428, 0.05741993337869644, 0.037716303020715714, -0.042929764837026596, 0.05601106956601143, -0.010704188607633114, 0.039943523705005646, -0.03366556391119957, -0.00000554768075744505, 0.00663144513964653, -0.008086907677352428, 0.04886014387011528, -0.0023960755206644535, -0.03430606424808502, -0.022826120257377625, -0.02234690450131893, -0.0442974828183651, -0.006526477634906769, 0.008896232582628727, 0.009172928519546986, 0.021654531359672546, -0.03721630573272705, 0.05780846253037453, 0.005482905078679323, -0.028630012646317482, 0.03223035857081413, 0.004510707221925259, -0.030386196449398994, 0.035247042775154114, 0.042793381959199905, -0.0011716213775798678, -0.057286277413368225, 0.06691126525402069, 0.03598956763744354, -0.0002594682446215302, -0.022013872861862183, -0.009906821884214878, -0.003627388272434473, 0.017338864505290985, 0.012382831424474716, -0.02850651554763317, -0.03231346607208252, 0.043573588132858276, 0.03318457677960396, -0.0739578977227211, 0.044692154973745346, -0.05511266365647316, -0.03422956541180611, -0.010343965142965317, -0.015054420568048954, 0.014346322044730186, 0.03422156721353531, 0.02183905988931656, -0.0026949364691972733, -0.045529305934906006, 0.016480455175042152, 0.009958850219845772, 0.05700766295194626, -0.03464425355195999, 0.010095646604895592, 0.035377442836761475, 0.009393912740051746, 0.010170341469347477, 0.014824054203927517, -0.019473539665341377, -0.046502262353897095, 0.013167444616556168, -0.017023755237460136, -0.006699819583445787, 0.0309419184923172, 0.016663778573274612, 0.036881983280181885, 0.05615510046482086, -0.0405251644551754, -0.006202959921211004, 0.006583043374121189, 0.04064421355724335, 0.03907974436879158, 0.008759711869060993, 0.02528965286910534, -0.016893574967980385, -0.028079554438591003, -0.03595994785428047, 0.02140752039849758, 0.019391942769289017, 0.03858408331871033, -0.055946480482816696, 0.0472402386367321, 0.02298232913017273, -0.040574315935373306, 0.032424189150333405, -0.06864864379167557, 0.022697927430272102, 0.0505993589758873, -0.032345861196517944, 0.03919200971722603, -0.03313488885760307, -0.00478364760056138, -0.023274701088666916, 0.022422850131988525, 0.038971517235040665, 0.0020976008381694555, 0.018573317676782608, -0.04047295078635216, -0.014772606082260609, -0.02008804865181446, -0.0076038772240281105, -0.01701648347079754, -0.005483225453644991, -0.008350998163223267, -0.0246583204716444, -0.014627269469201565, -0.06652925908565521, 0.04022374749183655, 0.048324208706617355, 0.030072472989559174, -0.019491100683808327, 0.039299119263887405, 0.02908557839691639, 0.024200912564992905, 0.04242413118481636, 0.012388022616505623, 0.011932957917451859, -0.021212158724665642, 0.017832232639193535, 0.01779753528535366, -0.015213225036859512, -0.018444301560521126, -0.02657623589038849, -0.04836181178689003, 0.014408295974135399, -0.015316306613385677, -0.02306257374584675, -0.00923884380608797, 0.0018067272612825036, -0.0213690847158432, 0.02359330840408802, -0.004896888975054026, 0.00455944100394845, -0.06210467219352722, 0.014793915674090385, 0.012759726494550705, -0.04912736639380455, 0.0026626023463904858, -0.02881479635834694, 0.05089301988482475, 0.03638925403356552, -0.025433644652366638, -0.01739838346838951, -0.026414692401885986, -0.041902508586645126, -0.004114018753170967, 0.011602853424847126, 0.029534468427300453, 0.01239430159330368, -0.0030939385760575533, -0.04869881644845009, 0.01864977739751339, 0.035478364676237106, 0.00018821425328496844, 0.0010767565108835697, 0.005494828801602125, 0.02089870721101761, 0.006768924184143543, 0.028771229088306427, 0.01456473208963871, 0.005532663781195879, 0.03430165722966194, -0.06668740510940552, 0.031945303082466125, 0.0003916035348083824, -0.01280247699469328, 0.01061958447098732, 0.02157621644437313, 0.0027378425002098083, 0.015133178792893887, -0.02124897390604019, 0.017377423122525215, 0.024314837530255318, 0.04190276190638542, -0.02361300028860569, -0.023611055687069893, 0.053384214639663696, 0.011336663737893105, -0.04263021796941757, 0.030665257945656776, 0.05560459569096565, 0.0021504771430045366, -0.0013134591281414032, 0.01302429661154747, -0.035743359476327896, 0.025301512330770493, -0.04473855346441269, 0.020127249881625175, -0.016444029286503792, -0.0617525540292263, 0.021992463618516922, -0.05111357569694519, 0.05684371292591095, -0.006373865529894829, -0.011753832921385765, -0.02979612909257412, -0.054118070751428604, -0.012524726800620556, 0.0021693904418498278, -0.04388387128710747, 0.020924409851431847, -0.005050224717706442, 0.004806916229426861, -0.017552601173520088, 0.014481195248663425, -0.01703156903386116, 0.018004076555371284, -0.025665581226348877, -0.007506703957915306, -0.008280334062874317, 0.033287692815065384, 0.019815664738416672, -0.03223752975463867, -0.03245999291539192, 0.05736534669995308, -0.0008152623777277768, -0.014580856077373028, -0.05781914293766022, -0.011349212378263474, -0.018297528848052025, -0.005643093958497047, -0.042233873158693314, 0.011028631590306759, 0.010469526052474976, 0.021007593721151352, 0.0068685393780469894, 0.04253896325826645, 0.017430145293474197, 0.010315805673599243, -0.04603520408272743, 0.048548392951488495, 0.04626590013504028, -0.039131831377744675, -0.06652719527482986, 0.056541118770837784, -0.025443220511078835, 0.04398364573717117, 0.005300020799040794, 0.001299084979109466, -0.019520243629813194, -0.018568402156233788, -0.01448418665677309, -0.01652488298714161, -0.013342291116714478, -0.035362113267183304, -0.01597054861485958, 0.00827091559767723, 0.034311965107917786, 0.021166888996958733, -0.004222954157739878, 0.01165660098195076, -0.02879425138235092, -0.005968727637082338, -0.039406001567840576, 0.0036640705075114965, -0.029460987076163292, -0.0016553823370486498, -0.03119846060872078, 0.032113075256347656, -0.004426902160048485, 0.015930939465761185, 0.014104148373007774, 0.00046949833631515503, 0.04408138990402222, -0.006408506538718939, -0.07407447695732117, -0.05904446169734001, 0.04646695405244827, -0.0007155927596613765, 0.03462362661957741, -0.025951284915208817, -0.034348249435424805, 0.05043531209230423, -0.044166456907987595, -0.00991750881075859, -0.015077383257448673, -0.03685673326253891, 0.03283720836043358, -0.0016989122377708554, 0.02702871710062027, -0.046003442257642746, 0.026031460613012314, -0.017041053622961044, 0.021248532459139824, 0.04269944131374359, 0.016422763466835022, -0.03178390860557556, -0.06140175461769104, -0.03817412257194519, -0.05085325986146927, -0.003395134350284934, -0.02341652847826481, -0.016226615756750107, -0.02125212922692299, -0.007117504719644785, 0.00946344155818224, -0.01039409451186657, 0.048631373792886734, 0.06287481635808945, -0.008760090917348862, -0.00948633998632431, -0.010381787084043026, 0.025586847215890884, 0.030776631087064743, -0.016187788918614388, -0.008531940169632435, -0.004569771699607372, -0.03286295756697655, -0.006671449169516563, -0.051432136446237564, -0.023043841123580933, -0.059037528932094574, -0.015658525750041008, 0.06965745985507965, -0.042672429233789444, 0.02048037387430668, -0.007150663528591394, -0.05718357115983963, -0.0372074730694294, 0.031207099556922913, -0.011577654629945755, 0.00750032439827919, 0.016509199514985085, -0.00013641231635119766, -0.009385386481881142, 0.024457113817334175, -0.021685132756829262, -0.010716710239648819, -0.03146122023463249, 0.06950389593839645, -0.02794320322573185, -0.030763253569602966, 0.02375677600502968, 0.05124865844845772, -0.052990179508924484, -0.0513179749250412, 0.008611715398728848, 0.009858326055109501, 0.0078010112047195435, -0.02230151556432247, 0.044576551765203476, -0.0022530939895659685, -0.011469943448901176, 0.03625332564115524, 0.01741747371852398, -0.01953611895442009, 0.04058227315545082, 0.009329012595117092, 0.06649797409772873, -0.029136719182133675, -0.0022058715112507343, 0.020072558894753456, -0.008904920890927315, -0.017287306487560272, -0.030026473104953766, -0.010832526721060276, 0.01397086214274168, 0.0042112842202186584, 0.04568905010819435, -0.04159403592348099, 0.01865265890955925, 0.03469647839665413, 0.012901835143566132, 0.03194819390773773, 0.008784537203609943, -0.030510811135172844, 0.009615016169846058, -0.04751482233405113, -0.05489824712276459, -0.011202242225408554, 0.017267169430851936, 0.0015688968123868108, 0.03270374983549118, -0.08228795975446701, 0.021274318918585777, 0.026447461917996407, 0.00558644812554121, -0.026955580338835716, -0.06987220793962479, -0.04022272676229477, -0.04926290735602379, -0.01985194906592369, -0.031509701162576675, -0.024746518582105637, -0.0023022161331027746, 0.013641081750392914, 0.029637755826115608, -0.03783629462122917, -0.0020880894735455513, 0.01378259900957346, -0.008568347431719303, 0.027898086234927177, -0.02225353941321373, 0.03445243835449219, -0.016303781419992447, -0.0369948148727417, -0.04958229139447212, -0.0053473347797989845, -0.0350467711687088, -0.0251762755215168, -0.03454472869634628, 0.022376051172614098, 0.01187989767640829, 0.016182197257876396, 0.022952314466238022, 0.005147239658981562, -0.01683885231614113, -0.057425182312726974, -0.007982565090060234, 0.02731461077928543, -0.011628865264356136, 0.05993100255727768, 0.0336187370121479, -0.032332826405763626, 0.034265585243701935, 0.00856213178485632, -0.04126064479351044, -0.019301408901810646, 0.015065104700624943, -0.007492736913263798, 0.00602106936275959, -0.01944691129028797, -0.029861990362405777, -0.022548848763108253, -0.046411484479904175, 0.025427812710404396, -0.05085200071334839, 0.0002656292635947466, 0.019165808334946632, -0.02363896742463112, -0.03858845680952072, 0.04359070584177971, -0.038320694118738174, 0.04962506890296936, 0.019539395347237587, -0.01479731872677803, 0.01250886544585228, 0.0117306774482131, 0.03053438290953636, 0.016944607719779015, 0.018164465203881264, -0.04929066821932793, 0.007956516928970814, -0.011202375404536724, -0.00801077764481306, 0.03965030238032341, -0.01383607555180788, -0.009389051236212254, -0.06270783394575119, -0.015379009768366814, 0.009685075841844082, 0.06823275238275528, 0.00006101204053265974, 0.0004522196832112968, 0.008298084139823914, -0.026555664837360382, -0.03537829965353012, 0.0120879877358675, -0.05317240580916405, -0.03605988249182701, 0.03791256994009018, -0.011870243586599827, -0.003313787281513214, -0.010922661051154137, -0.01599491387605667, -0.012790119275450706, 0.015758929774165154, 0.013541115447878838, -0.026302801445126534, 0.030502580106258392, -0.014919432811439037, 0.033149536699056625, 0.021146927028894424, 0.003949277568608522, 0.016595231369137764, 0.06771787256002426, -0.06581812351942062, -0.053025487810373306, 0.02435937151312828, 0.0437423512339592, -0.01628960855305195, -0.021444454789161682, -0.0046911886893212795, 0.009534388780593872, 0.02559330128133297, 0.029559306800365448, -0.026221124455332756, 0.05059989169239998, -0.008599680848419666, 0.019271807745099068, 0.024690233170986176, 0.008092492818832397, -0.01755288429558277, 0.059248290956020355, 0.009724701754748821, -0.01191624440252781, -0.03692994266748428, 0.046495068818330765, 0.03800053149461746, -0.005889961961656809, 0.05032113566994667, 0.011046739295125008, 0.03684496507048607, -0.022981083020567894, 0.03958456218242645, -0.005285437218844891, 0.0481545589864254, 0.040918126702308655, 0.030456559732556343, -0.00892162136733532, 0.04254882410168648, 0.049839477986097336, -0.019444173201918602, 0.0015191854909062386, 0.0599190816283226, 0.03045608475804329, -0.04413018003106117, 0.010924406349658966, -0.038272351026535034, 0.02222096361219883, 0.02501749061048031, -0.015133037231862545, 0.008011740632355213, -0.03465387970209122, 0.010869749821722507, -0.008955511264503002, -0.006355864927172661, 0.04695647209882736, -0.012331198900938034, -0.016607431694865227, -0.029197778552770615, -0.0032995021902024746, 0.010579868219792843, 0.03305993974208832, -0.0001793920819181949, 0.008863143622875214, 0.0543612502515316, 0.02350509725511074, 0.008739637210965157, 0.032590582966804504, 0.04680616036057472, 0.009130601771175861, -0.04508160427212715, -0.016938531771302223, -0.006152426358312368, -0.012832798063755035, -0.005486584734171629, 0.01017712615430355, -0.027888063341379166, 0.041438717395067215, -0.0463913194835186, -0.02538640797138214, 0.03988507017493248, -0.04920944198966026, -0.00769427977502346, -0.048467546701431274, 0.032040152698755264, -0.04469139128923416, 0.012898102402687073, 0.004472155589610338, -0.040151264518499374, -0.009496090933680534, 0.043950848281383514, 0.0012001803843304515, 0.016639379784464836, 0.003461324842646718, 0.04725859314203262, 0.0072723026387393475, 0.0326559916138649, 0.02081136591732502, -0.04387902095913887, -0.0006109463865868747, 0.025810709223151207, -0.04092088341712952, -0.010264418087899685, -0.012266089208424091, -0.052891816943883896, -0.03359956666827202, -0.0024200603365898132, -0.009807775728404522, 0.008252044208347797, 0.03822820261120796, 0.009022546000778675, -0.047342199832201004, 0.00652109831571579, 0.02825213223695755, -0.01888612098991871, 0.03522507846355438, 0.012744743376970291, 0.02940496616065502, -0.005042023025453091, -0.013779973611235619, -0.008135859854519367, -0.02430787682533264, 0.014503463171422482, -0.03311927616596222, 0.026163047179579735, -0.005678270477801561, -0.02447766810655594, -0.02896762825548649, -0.03968263417482376, -0.02935607358813286, -0.009542311541736126, -0.04381702467799187, -0.09928292036056519, 0.04726298898458481, 0.031242484226822853, 0.009524773806333542, -0.015328358858823776, -0.013716321438550949, -0.002876651706174016, 0.020712757483124733, 0.07569578289985657, -0.013905368745326996, 0.025038111954927444, 0.02400592714548111, 0.01433507725596428, 0.02938491851091385, -0.028357643634080887, 0.040915973484516144, -0.007698072586208582, -0.026828881353139877, -0.04190249368548393, 0.02717958576977253, -0.023553788661956787, -0.07506480067968369, 0.02684629149734974, 0.026694776490330696, 0.013461180031299591, -0.023427918553352356, -0.059229206293821335, -0.008135163225233555, -0.048972807824611664, -0.0014657564461231232, -0.05653386190533638, 0.0138655761256814, -0.017982084304094315, -0.006802565883845091, 0.015565939247608185, -0.06376231461763382, 0.16443893313407898, 0.04206521064043045, 0.06831490248441696, 0.013629167340695858, 0.009998809546232224, 0.022908806800842285, 0.04108165204524994, -0.007774809841066599, -0.016034500673413277, -0.0502982921898365, 0.019005892798304558, 0.011399307288229465, 0.010016185231506824, 0.014752866700291634, 0.00504389638081193, 0.059687547385692596, -0.046522341668605804, -0.008753563277423382, 0.012704746797680855, -0.026062360033392906, -0.07288649678230286, -0.0019441084004938602, 0.02606263756752014, 0.006350057199597359, -0.010543333366513252, 0.03910650685429573, 0.0023489652667194605, -0.054914724081754684, -0.004631125368177891, 0.005526403430849314, 0.023777374997735023, -0.03655688092112541, 0.04737528786063194, -0.0018725962145254016, -0.050628598779439926, 0.016607942059636116, 0.010458705946803093, -0.011498654261231422, -0.0018492365488782525, 0.05697796866297722, -0.008831839077174664, 0.005492279306054115, 0.049229275435209274, -0.04959370940923691, 0.007661744020879269, 0.008993145078420639, -0.025110658258199692, 0.014398697763681412, 0.0262739434838295, -0.05756524205207825, 0.04457860440015793, -0.04349815845489502, 0.01575675792992115, -0.013785218819975853, -0.032997976988554, 0.004402248654514551, 0.002819613553583622, -0.006467161700129509, -0.01801927760243416, 0.0025043452624231577, 0.040567897260189056, 0.012265083380043507, -0.02092321589589119, -0.013702268712222576, -0.030667809769511223, 0.014168567024171352, 0.029334666207432747, 0.050672631710767746, 0.009597194381058216, -0.03266754001379013, -0.019955698400735855, -0.007909733802080154, -0.030169950798153877, -0.03139488026499748, 0.04487752169370651, 0.03132869675755501, -0.013228248804807663, 0.05127881094813347, 0.01388909574598074, -0.021610766649246216, 0.025272751227021217, -0.025921743363142014, 0.0037224055267870426, -0.021749617531895638, 0.03724496811628342, 0.07421310245990753, -0.03942907601594925, -0.032220929861068726, -0.002722587902098894, 0.025796454399824142, 0.04130174592137337, 0.002307030139490962, -0.03819550946354866, -0.02326599881052971, 0.01610517129302025 ]
Using Claim Based Authentication for Identity and Access Management By Kirit Parmar See more articles by Kirit In this multi-part blog series for Identity and Access Management (IAM), we take a look at IAM capabilities, complexity and challenges organizations face today. We also address why assessing your IAM environment is more critical now than ever before. Identity and Access Management Series Part 2 In this part of the blog series for Identity and Access Management (IAM), we explore Claim Based Authentication (CBA) in more detail. CBA is more complicated by implementation but is more secure than authentication mechanisms of the past. Claim Based Authentication Claim based identity helps us understand the federation concept we discussed earlier. Applications often referred to as the "relying party" must trust the Identity Provider and often refer to as Security Token Services (STS) (Azure AD, ADFS, Ping Identity, octa, and more) to: Identity provider verifies the identity of the users Create claims with appropriate attributes Sign the token with a signature which issues the credential to keep it secure When a signed token comes back to the relying party or application, the application needs to verify if the token is intact and not tampered with, before allowing a user to access the application. The diagram below shows the basic components involved when a user starts signing into an application. It also shows how the identity provider crafts the token, which is digitally signed, for that application, and how it grants access. In the above diagram, we introduced "Identity protocols and tokens." Identity providers used to support federation. Fiddler is a popular and free tool that an IAM professional can use to inspect tokens and claims over the wire. Types of Identity Protocols and Tokens They Support Traditionally, the federation in and across enterprises uses WS-Federation and SAML-P. These protocols use tokens to store claims. Claims are attributes about the user, such as name, email, and more. These token types also vary based on the protocols used. Usually, in Identity and Access Management topics, we refer to such diagrams of identity flow on the wire as "token flow diagram." See the image below. WS-Federation Protocol An industry consortium developed and released this protocol in Dec of 2006 as part of the larger WS-Security framework, which they built on the work of WS-Trust. This protocol defines two profiles. Active requestor profile Passive requestor profile As our blog series continues, we will talk about these profiles in detail. Token support: WS-Federation is a token agnostic protocol, and it can support SAML and JWT token. SAML 2.0 Protocol SAML stands for "Security Assertion Markup Language." It is a mature protocol used in identity since 2002. The disadvantage of SAML 2.0 protocol is that it is XML based and very descriptive, so it is heavy on a wire. We mostly use SAML with SOAP, XML, and SaaS applications. It can be difficult and unsuitable for bandwidth conscious mobile users. Token support: SAML-P issues SAML tokens. OAuth 2.0 Protocol OAuth 2.0 (Open Authorization Framework) is a delegation of an access protocol for authorization. In OAuth 2.0, a client accesses a protected resource (Web Service or Web API) on behalf of a user. Clients can be a public client or private client. It provides delegated authorization to API (Application programing Interfaces). OAuth 2.0, preceded by OAuth 1.0, published in April 2010. OAuth 1.0 required message signatures, which made it incredibly complex. With the release of OAuth 2.0, they removed the need for a signature and developed it with dependency on communications security. Let us briefly talk about OAuth 2.0 protocol in detail. In the modern identity world, if you are building a new application, you should consider OAuth 2.0 and OpenID Connect protocols where possible. See the simple diagram below with two applications – App1 and App2. OAuth 2.0 allows a user to consent to App1 having access to their resources on App2, where App2 is a Web API. As part of the consent process, App1 will declare the type of access required. The user can approve or deny access. (We see pop-ups for the consent screen many times.) If the user approves access, OAuth 2.0 issues App1 an access token. The access token proves to App2 that App1 is authorized to access a resource. Along with access-token, there is a refresh token. OAuth 2.0 has the following four flows: Authorization Code Grant flow Implicit Grant flow Resource Owner Password flow Client credential grant flow Token support: Code redemption for Access Token, plus Refresh Token in authorization grant flow. OpenID Connect Protocol OAuth 2.0 is not intended for authentication. OpenID Connect defines an Identity layer on top of OAuth 2.0, used for Authentication. The application validates the user and provides an id_token as proof of the user's authentication. OpenID Connect mandates a JSON web token (JWT) for the id_token. Token support: Code redemption for Access Token, plus Refresh Token in authorization grant flow and an ID_Token. Types of Application Now we have talked about different types of protocols, identity providers, web apps and web APIs, and token protocol support. If we combine all components, the process looks something like the diagram below. The diagram shows how applications talk to each other irrespective of application code language. I want us to focus on the complexity involved when we migrate an on-premise application. An architect must follow all these complexities very carefully. A few of today's competitive Identity providers include: Microsoft Azure Active Directory Oracle Identity Management Amazon Cloud Directory Apache Directory Social Identity providers (Google, Facebook, Twitter, Amazon) On-Premise: Microsoft ADFS (Active Directory Federation Services) Site Minder Note: On-premise IDPs listed above can be in any cloud with IaaS implementation. In this blog, we discussed CBA and how hybrid identity, different protocols, and tokens play such an important role in authentication and authorization for different types of applications. In our next blog, we will introduce Microsoft's Identity stack, take a deep dive into different identity components, and understand its complexity even further. Kirit Parmar is a Microsoft Certified Azure Architect for our Modern Software Delivery practice. He has lead and architected several Azure Identity and Access Management (IAM) based solutions for Cloud and Hybrid infrastructure. Kirit also works on modern cloud and edge computing-related projects for the Internet of Things (IoT) with Artificial Intelligence (AI) and Machine Learning (ML), within MSD. Kirit has a Master's degree from the University of North Carolina at Charlotte and nearly twenty years of technology experience. He enjoys diving deep into the technology at hand. Along with securing and protecting Web Apps/Web API using ADFS or Azure AD, Kirit is highly skilled at Azure AD B2B, B2C, MFA, Role-Based Access Control (RBAC), Graph API plus Office 365 and all of its workloads. Follow Kirit on Twitter. Planning IAM's Success for Enterprises and Consumers in Cloud and Digital Transformation Era Asset Protection: Identity Control in Office 365 AWS and the Internet of Things: Unveiling the Mystery Business Transformation: An Initiative or Way of Life? Want to learn more about our digital expertise?
[ 0.003133737947791815, -0.015114402398467064, -0.018911628052592278, 0.005921056028455496, -0.002224684227257967, 0.004416974261403084, -0.013150470331311226, -0.014932912774384022, 0.019780529662966728, 0.03345603868365288, 0.005737497005611658, -0.008182919584214687, 0.013325869105756283, -0.020646346732974052, -0.01780635677278042, 0.01852048747241497, -0.027866963297128677, -0.01032113004475832, 0.007583283353596926, -0.036305222660303116, 0.006406936328858137, 0.008974343538284302, -0.05776771530508995, -0.010724171996116638, -0.006591123063117266, 0.061960600316524506, 0.019356442615389824, -0.010181572288274765, 0.05936269462108612, 0.0648542046546936, -0.03390512615442276, -0.015807854011654854, 0.019741708412766457, -0.04534144699573517, -0.044655147939920425, -0.03277904540300369, 0.03447578847408295, -0.05551993474364281, -0.04917321726679802, -0.04265253618359566, 0.006064819637686014, -0.00010050063428934664, 0.024194205179810524, -0.057294562458992004, -0.058545976877212524, -0.006225296761840582, -0.03568873926997185, -0.016607318073511124, 0.009479868225753307, -0.038520410656929016, -0.0020950366742908955, 0.006283686030656099, -0.006003770045936108, 0.019774174317717552, -0.008969060145318508, 0.020874353125691414, 0.016510337591171265, -0.008108504116535187, 0.0014449784066528082, 0.017860671505331993, 0.023841023445129395, 0.007345263846218586, 0.023532327264547348, -0.05044873431324959, 0.01172234769910574, 0.014946568757295609, 0.008859304711222649, 0.0018910045037046075, 0.008425943553447723, -0.0389811135828495, 0.021987123414874077, -0.011744998395442963, -0.005495667457580566, -0.02688382938504219, -0.0001604412536835298, 0.0037564472295343876, 0.01575726829469204, -0.010899542830884457, -0.000803882721811533, 0.02554203011095524, 0.01866135187447071, 0.06571397185325623, -0.026294970884919167, 0.015859264880418777, -0.022297758609056473, -0.006765941623598337, 0.03125188499689102, 0.005764061585068703, 0.002758082700893283, -0.008973006159067154, 0.02800922282040119, 0.05269356444478035, -0.007454592734575272, -0.01952645555138588, 0.008929573930799961, 0.061391569674015045, -0.03392961621284485, 0.05051333084702492, 0.0036444137804210186, 0.027571383863687515, 0.03298911079764366, 0.016617093235254288, -0.01889789290726185, 0.04388614371418953, -0.03374498710036278, 0.026248564943671227, 0.011774100363254547, -0.005190166644752026, -0.033519357442855835, -0.059111930429935455, -0.005157633684575558, -0.04033469781279564, -0.0015137168811634183, -0.00904948078095913, -0.005885784048587084, 0.05449562147259712, 0.021196184679865837, 0.06171250343322754, -0.0209132619202137, 0.0200481116771698, 0.001962588867172599, 0.01036401093006134, 0.04837488755583763, -0.04879773408174515, 0.00547158345580101, -0.0127174761146307, -0.014785898849368095, 0.02541336603462696, -0.04737680405378342, 0.01957303285598755, 0.01365972775965929, -0.03265664726495743, -0.023679547011852264, 0.02613184228539467, 0.003719278844073415, 0.020188137888908386, 0.019674647599458694, 0.021154826506972313, 0.02978924848139286, -0.03966168686747551, 0.02230961062014103, 0.031435418874025345, 0.02394113317131996, 0.10957755893468857, 0.0047905645333230495, 0.015341843478381634, 0.010784807614982128, -0.005993389058858156, -0.041543446481227875, 0.005398241337388754, -0.010539191775023937, 0.019236885011196136, 0.02448124997317791, 0.008862531743943691, -0.014028582721948624, -0.01697840727865696, 0.007996765896677971, 0.025360947474837303, -0.0007137397769838572, -0.020905092358589172, -0.01030073594301939, 0.03877861797809601, -0.018209658563137054, 0.04222021996974945, -0.021377792581915855, 0.024141261354088783, 0.014502247795462608, -0.01991628296673298, 0.023000797256827354, -0.047680098563432693, 0.033694248646497726, -0.028417713940143585, -0.022196132689714432, -0.0015538540901616216, 0.018550805747509003, 0.04388135299086571, 0.04412953183054924, 0.0025191542226821184, 0.023130375891923904, 0.0549682155251503, -0.05521220713853836, -0.021486641839146614, 0.015009988099336624, 0.07206109166145325, 0.020328478887677193, 0.013457014225423336, -0.009899681434035301, -0.015944499522447586, -0.03354692459106445, -0.04794251546263695, 0.002877424703910947, 0.027455950155854225, -0.04784555733203888, 0.0602693073451519, 0.00939229130744934, -0.0002190294035244733, -0.023657824844121933, 0.0019388645887374878, -0.010844424366950989, -0.06295809894800186, -0.026021365076303482, 0.04229672998189926, -0.007803248707205057, 0.02446969971060753, 0.010768546722829342, -0.00013657270756084472, 0.04532542824745178, 0.038455963134765625, -0.06649462878704071, -0.01875406689941883, 0.05675184354186058, 0.007678847294300795, -0.006980242673307657, -0.0519862063229084, 0.02482610195875168, -0.01893693208694458, -0.008575212210416794, 0.0476251021027565, -0.0058716232888400555, 0.002855767961591482, 0.0034183040261268616, 0.011944768950343132, 0.02427399344742298, 0.027319423854351044, -0.03330758959054947, -0.009942576289176941, -0.0008761255885474384, 0.04516930133104324, -0.012344025075435638, -0.032096486538648605, -0.0009847357869148254, 0.05504181608557701, 0.04202900826931, 0.0662936344742775, 0.04404735565185547, 0.026864029467105865, 0.047915756702423096, 0.021984273567795753, -0.008772442117333412, 0.029403196647763252, 0.01653514988720417, 0.006921723019331694, 0.00984284095466137, 0.02272283285856247, 0.009221209213137627, 0.010920646600425243, -0.006161069963127375, -0.003003476420417428, 0.000272143428446725, 0.02995963953435421, -0.058860063552856445, 0.05619100108742714, 0.023326179012656212, 0.03990776836872101, -0.02242923527956009, -0.03506845980882645, 0.02313229814171791, 0.038947027176618576, -0.052240435034036636, -0.035170286893844604, -0.003942656796425581, 0.01203069556504488, 0.003364107571542263, -0.0034199438523501158, 0.0001774499105522409, 0.01929335854947567, 0.016422947868704796, 0.027735507115721703, -0.0028313505463302135, -0.034694042056798935, -0.0504167415201664, -0.04593488946557045, -0.06490267068147659, -0.027402667328715324, -0.046154893934726715, -0.005342299118638039, 0.0039620292373001575, -0.04032127559185028, 0.011452342383563519, -0.015214025974273682, 0.003044049022719264, 0.0051339794881641865, -0.04783468320965767, 0.06180482357740402, 0.0147530697286129, 0.03664765879511833, -0.0225661788135767, 0.03813060000538826, -0.0009828824549913406, 0.05322309955954552, -0.025051912292838097, 0.0002234018174931407, 0.006737056188285351, -0.054438963532447815, 0.020130814984440804, -0.024276506155729294, -0.012306569144129753, -0.019271308556199074, -0.012942437082529068, -0.03710024803876877, 0.002237462205812335, 0.028543507680296898, -0.0033817847725003958, 0.007151748053729534, -0.05169108510017395, 0.0483405664563179, 0.00717967702075839, -0.03736593946814537, 0.05367458611726761, 0.046317122876644135, -0.03538859635591507, 0.06706941872835159, -0.005627072881907225, 0.012212330475449562, -0.052007317543029785, 0.08820153772830963, 0.05736703425645828, -0.009943095967173576, -0.022981004789471626, -0.04220966249704361, -0.03237679973244667, 0.011085894890129566, 0.030220020562410355, -0.030167438089847565, -0.046808719635009766, 0.03147140145301819, 0.0008220202871598303, -0.06986454874277115, 0.02001243457198143, -0.04953012242913246, -0.04295026510953903, -0.03757041320204735, -0.03205083683133125, 0.007128398399800062, 0.026563741266727448, 0.007955514825880527, -0.009288950823247433, -0.028672706335783005, 0.009904877282679081, 0.037297412753105164, 0.06050622835755348, -0.042267508804798126, 0.0472385510802269, 0.026937706395983696, -0.0013473054859787226, 0.024725914001464844, 0.03407880291342735, -0.07242843508720398, 0.010246619582176208, -0.02032376080751419, 0.006816035136580467, 0.028410304337739944, 0.011108236387372017, 0.008484497666358948, -0.004223134368658066, 0.05963951349258423, -0.03760623186826706, -0.017470115795731544, -0.001218493445776403, 0.026645977050065994, 0.036572329699993134, 0.03336940333247185, -0.012571927160024643, -0.007616633083671331, -0.015774160623550415, -0.05919743701815605, -0.027509460225701332, 0.025532416999340057, 0.06576374173164368, -0.08269575983285904, 0.03323156759142876, -0.02509401924908161, -0.0034805885516107082, 0.05584977939724922, -0.06787196546792984, -0.01177428849041462, 0.04320670664310455, 0.012350276112556458, 0.04637922719120979, -0.04849725216627121, 0.006188135128468275, -0.008272969163954258, 0.006211107596755028, 0.030621793121099472, 0.004001259803771973, -0.003227183362469077, -0.04512249678373337, -0.004161051474511623, -0.023708401247859, -0.013621073216199875, -0.006264845374971628, -0.01768149435520172, -0.016748331487178802, 0.011979730799794197, -0.05009619519114494, -0.029723579064011574, 0.019016163423657417, 0.029550110921263695, 0.04718540608882904, -0.007177154067903757, 0.042097996920347214, 0.012104309163987637, 0.025924956426024437, 0.036231573671102524, -0.023838628083467484, 0.021554816514253616, -0.03898788243532181, 0.02713738940656185, -0.005751392804086208, -0.038724929094314575, -0.02328149601817131, -0.016515681520104408, -0.04317509010434151, 0.02742934040725231, -0.007414691150188446, -0.02366681769490242, -0.04562487080693245, 0.03251772001385689, -0.021662060171365738, 0.040598124265670776, -0.02960243448615074, -0.021431878209114075, -0.043650783598423004, 0.038657333701848984, 0.040075771510601044, -0.04760098084807396, 0.011160427704453468, -0.015483834780752659, 0.015821900218725204, 0.045684732496738434, -0.00796731747686863, -0.04453181102871895, -0.03082522563636303, -0.030611205846071243, -0.018906282261013985, 0.005270970519632101, 0.024691106751561165, -0.02007070928812027, 0.005140623543411493, -0.030804136767983437, 0.05329582840204239, -0.006538911256939173, -0.01481538824737072, -0.021286215633153915, -0.019816650077700615, 0.038184452801942825, 0.0010952081065624952, 0.03149418905377388, -0.036369092762470245, -0.022577831521630287, 0.010903614573180676, -0.053021661937236786, 0.005186656955629587, -0.00031544355442747474, -0.029183652251958847, 0.014433245174586773, 0.036781396716833115, 0.014021892100572586, 0.03778822720050812, -0.030894339084625244, -0.001210497342981398, 0.002637383760884404, 0.03685256466269493, -0.03897692635655403, 0.004664573352783918, 0.05058269947767258, -0.014798377640545368, -0.027982618659734726, 0.035398177802562714, 0.03293792903423309, -0.00871106144040823, 0.026749053969979286, -0.010892990976572037, -0.049992453306913376, 0.011357891373336315, -0.03484807536005974, 0.006056531798094511, -0.024707486853003502, -0.06381948292255402, -0.00451620202511549, -0.03661543130874634, 0.05170435458421707, 0.017322184517979622, -0.005668393801897764, -0.0531679168343544, -0.02709527499973774, 0.007179478649049997, -0.026247231289744377, 0.0038660105783492327, 0.02639567106962204, -0.023342527449131012, -0.0008465076680295169, -0.007164007052779198, -0.012883000075817108, -0.025904634967446327, 0.0012329337187111378, -0.029440466314554214, -0.007294435519725084, -0.0012202846119180322, -0.0009581610793247819, 0.04292551800608635, -0.011121173389256, -0.051428209990262985, -0.00818995013833046, 0.02512877807021141, -0.011503498069941998, -0.045798324048519135, 0.014008088037371635, -0.02421403117477894, -0.009094041772186756, -0.032190293073654175, -0.0072705792263150215, -0.03580022230744362, 0.00048626618809066713, 0.014088558033108711, 0.021047618240118027, 0.023199791088700294, 0.03454909101128578, -0.04825461655855179, 0.02331915684044361, 0.04576393961906433, -0.05486229434609413, -0.011132420040667057, 0.04968748241662979, -0.01950247772037983, 0.05140940099954605, 0.007172707002609968, -0.019673559814691544, -0.005631306674331427, -0.007675639353692532, 0.0038659339770674706, -0.035980623215436935, -0.0034940377809107304, -0.04584844410419464, -0.03490770608186722, -0.003166487440466881, 0.046722572296857834, 0.033485446125268936, -0.03483609855175018, -0.004065959248691797, -0.042599812150001526, 0.03397531434893608, -0.007172154728323221, -0.011701911687850952, -0.0314377024769783, -0.0006613957812078297, 0.020527569577097893, 0.04158974066376686, 0.008077696897089481, 0.014153938740491867, -0.0016448346432298422, 0.007333581801503897, 0.05384404957294464, 0.013434507884085178, -0.0608515590429306, -0.03802991658449173, 0.019009588286280632, 0.009157839231193066, 0.004991778638213873, 0.01635870710015297, -0.03567497059702873, 0.0233446154743433, -0.01578247733414173, 0.01843293011188507, -0.0334099680185318, -0.02912994660437107, -0.044202037155628204, 0.029685596004128456, 0.06573790311813354, -0.06413783133029938, 0.016981197521090508, -0.034655746072530746, 0.048823464661836624, 0.03347412496805191, 0.0049056499265134335, -0.05349387228488922, -0.021556712687015533, -0.054116714745759964, -0.035724855959415436, 0.014419985935091972, -0.02268879860639572, 0.000930344860535115, -0.03398667275905609, -0.0332372710108757, 0.039510615170001984, 0.006800516974180937, 0.03411388024687767, 0.06020817905664444, 0.013354216702282429, -0.023854048922657967, -0.001164279761724174, 0.049018364399671555, 0.03754528984427452, -0.02924850955605507, 0.004673284012824297, 0.019788404926657677, -0.033770304173231125, 0.002060108119621873, -0.05091014504432678, -0.024161871522665024, -0.03735888749361038, -0.02971254289150238, 0.04375208541750908, -0.043002426624298096, 0.014860163442790508, -0.016253558918833733, -0.03463427349925041, -0.014375505037605762, 0.01827518828213215, -0.022310998290777206, 0.033786434680223465, 0.04969096556305885, 0.024014953523874283, -0.033952608704566956, 0.019385406747460365, -0.020678211003541946, 0.0437910296022892, -0.05089149251580238, 0.0823928639292717, -0.008105304092168808, -0.02179349586367607, 0.050681374967098236, 0.05898478999733925, -0.05164129287004471, -0.06729520857334137, -0.010091770440340042, -0.0008713190327398479, -0.012883668765425682, -0.01886598765850067, -0.0012372167548164725, 0.011671117506921291, -0.02254832535982132, -0.042689599096775055, 0.045448899269104004, 0.003949380945414305, 0.039839006960392, -0.01765740104019642, 0.03188604488968849, -0.03450189530849457, 0.04750576615333557, 0.04185635969042778, 0.008962464518845081, -0.018645139411091805, -0.040671978145837784, 0.006469682324677706, 0.0036558369174599648, 0.012347111478447914, 0.02788342908024788, -0.023391904309391975, -0.007507504429668188, 0.03408662602305412, 0.009921622462570667, 0.06765689700841904, -0.0016906956443563104, 0.0032275456469506025, 0.031016947701573372, -0.03241434693336487, -0.057352710515260696, -0.06203056499361992, 0.011615077964961529, -0.019030258059501648, 0.020310094580054283, -0.050391484051942825, 0.024671947583556175, 0.02631412260234356, 0.01734471693634987, 0.007775354199111462, -0.06310226768255234, -0.04269681125879288, -0.05294322222471237, -0.026288554072380066, -0.03028644435107708, -0.002321175066754222, 0.01232284028083086, 0.03396209701895714, 0.0027971388772130013, -0.02015594206750393, -0.0193891990929842, 0.00456086965277791, -0.02196757309138775, -0.02947423793375492, -0.05712239816784859, 0.026861678808927536, -0.013186207972466946, -0.05289772152900696, -0.07302793860435486, -0.01744748465716839, -0.021381152793765068, -0.005202079191803932, -0.010000437498092651, 0.022561801597476006, 0.002987094921991229, 0.03366395831108093, -0.022667810320854187, 0.020190324634313583, -0.02283773384988308, -0.044671010226011276, -0.01579812541604042, 0.02559070475399494, -0.016197457909584045, 0.022922907024621964, 0.005802846979349852, -0.02388664148747921, 0.04208492487668991, 0.00022761468426324427, -0.02853262796998024, -0.016512157395482063, 0.018424682319164276, 0.022006342187523842, 0.013286937959492207, -0.0014210951048880816, -0.037354547530412674, -0.001572159118950367, -0.03024681657552719, 0.02206289954483509, 0.008509478531777859, -0.008151735179126263, 0.023822948336601257, -0.006064708810299635, 0.01177649199962616, 0.02320331148803234, -0.0038187874015420675, 0.0513390488922596, -0.006125958636403084, 0.04906852915883064, 0.025447530671954155, -0.003524740459397435, 0.02167353592813015, 0.017230572178959846, 0.0009967908263206482, -0.03929641842842102, 0.030411146581172943, -0.014343642629683018, -0.0013480889610946178, 0.030639521777629852, -0.01894950494170189, -0.02262331359088421, -0.030808959156274796, 0.004983276128768921, 0.04326396435499191, 0.05955244228243828, -0.0022527044638991356, 0.044258955866098404, 0.05834927037358284, -0.027257192879915237, -0.024379221722483635, -0.0010397406294941902, -0.07962188124656677, -0.031231895089149475, 0.03615107759833336, -0.004706026520580053, -0.021260470151901245, -0.028666242957115173, -0.025798669084906578, -0.012150319293141365, 0.013147166930139065, -0.022371571511030197, -0.020840832963585854, 0.03894791007041931, -0.0012032883241772652, 0.023607425391674042, -0.010678564198315144, -0.025198234245181084, 0.01162108313292265, 0.03698207065463066, -0.04881933331489563, -0.054327402263879776, 0.017062148079276085, 0.04572046548128128, -0.014049835503101349, -0.013884519226849079, -0.014865157194435596, 0.007788704242557287, -0.007233280222862959, 0.0380639024078846, 0.017360800877213478, 0.014698082581162453, -0.014706467278301716, 0.043553560972213745, -0.008819219656288624, 0.001441535772755742, -0.020395930856466293, 0.03931576758623123, 0.012530208565294743, -0.038907043635845184, -0.037796083837747574, 0.03242916613817215, 0.008854641579091549, -0.04176176339387894, 0.04298023506999016, -0.009897910058498383, 0.03482365608215332, -0.0091786477714777, 0.013813741505146027, -0.006329098716378212, 0.04424739629030228, 0.055544257164001465, 0.013072649948298931, -0.028650760650634766, 0.02326807752251625, 0.06432484090328217, -0.0019895844161510468, 0.003863242221996188, 0.024984845891594887, 0.014083036221563816, -0.03757467493414879, 0.02887633629143238, -0.03093518316745758, -0.004143604077398777, 0.011541181243956089, -0.01423182338476181, 0.015721479430794716, -0.03529719263315201, 0.0014890258898958564, -0.0351969338953495, -0.011865805834531784, 0.046569544821977615, -0.017438802868127823, 0.009929174557328224, 0.012062245979905128, -0.047808967530727386, 0.02586689032614231, 0.014062180183827877, 0.033132683485746384, -0.01646837592124939, 0.0747298151254654, 0.029178444296121597, -0.010317732580006123, 0.04103932902216911, 0.008600344881415367, -0.004826382268220186, -0.022596731781959534, -0.01871589384973049, 0.00014125615416560322, 0.005682236049324274, -0.016443846747279167, 0.0008559869020245969, -0.048377763479948044, 0.02995232120156288, -0.0387449748814106, -0.007028684020042419, 0.0329856351017952, -0.041471559554338455, -0.006072323303669691, -0.03349974751472473, 0.06116635352373123, -0.048153068870306015, -0.03141622990369797, 0.03181775286793709, -0.016536051407456398, -0.025047237053513527, 0.06499181687831879, -0.006990786176174879, 0.05001744627952576, 0.008745566010475159, 0.038567930459976196, 0.00545463478192687, 0.03957861661911011, 0.03644676133990288, -0.034278977662324905, 0.003147909650579095, 0.029266534373164177, -0.01562536135315895, -0.04266159608960152, -0.009421013295650482, -0.015447967685759068, -0.009196433238685131, -0.023714136332273483, -0.03308489918708801, -0.025711361318826675, 0.026700271293520927, 0.00967748835682869, -0.04201223701238632, 0.008463570848107338, 0.05571024864912033, -0.049201902002096176, 0.024685923010110855, 0.0028945226222276688, 0.029726995155215263, -0.009896228089928627, -0.020402027294039726, 0.005443734582513571, -0.04065966606140137, -0.015415857546031475, -0.024215031415224075, 0.03284108638763428, 0.029406003654003143, -0.019981296733021736, -0.06038369610905647, -0.041405148804187775, 0.00882992334663868, -0.01232034619897604, -0.02391081675887108, -0.03222544491291046, 0.027740398421883583, 0.03627282753586769, 0.037759967148303986, -0.012365521863102913, -0.03843460977077484, -0.009693054482340813, 0.02844739705324173, 0.05972684174776077, -0.00952745508402586, 0.033276431262493134, 0.02828727476298809, 0.008505579084157944, 0.012360370717942715, -0.03336691856384277, 0.021469075232744217, -0.010319467633962631, -0.009478730149567127, -0.03795553743839264, -0.012876351363956928, -0.03370656073093414, -0.06422170251607895, 0.01964659057557583, 0.037523310631513596, 0.019700750708580017, -0.03848176449537277, -0.02569485269486904, -0.002236661035567522, -0.05502907931804657, -0.004964721854776144, -0.06650307029485703, 0.0008351840078830719, 0.00962819717824459, -0.03185291960835457, 0.023542148992419243, -0.03657001629471779, 0.15900616347789764, 0.02351047843694687, 0.013282333500683308, -0.019666125997900963, 0.04453108459711075, 0.08161468803882599, 0.035041939467191696, -0.012425537221133709, -0.005944442003965378, -0.052942775189876556, 0.028820624575018883, -0.01700747385621071, 0.014866218902170658, 0.017101576551795006, 0.04058252274990082, 0.053581736981868744, -0.021761737763881683, -0.009972650557756424, 0.0219107773154974, -0.07350625842809677, -0.04359637573361397, 0.008864253759384155, 0.01325258705765009, 0.025405434891581535, 0.0231841579079628, 0.004220626316964626, 0.01753729023039341, -0.041503921151161194, 0.015000441111624241, -0.016447000205516815, -0.008187881670892239, -0.02027534693479538, 0.04093470796942711, -0.02320970967411995, -0.031843896955251694, 0.06421143561601639, 0.028156287968158722, -0.008709021843969822, 0.006153151858597994, 0.024025585502386093, 0.014609498903155327, -0.006931906100362539, 0.04611179605126381, -0.052843764424324036, -0.004133572336286306, 0.020367814227938652, -0.03405072167515755, 0.0028423182666301727, 0.012355869635939598, -0.02042640931904316, 0.06521580368280411, -0.024942219257354736, 0.01719508320093155, -0.01887187734246254, -0.020557131618261337, 0.00809395033866167, 0.028050275519490242, -0.030015679076313972, -0.032271094620227814, -0.02574549987912178, 0.011297066695988178, 0.02215949445962906, 0.0067061069421470165, -0.01321044284850359, -0.025802763178944588, 0.026960378512740135, 0.033771783113479614, 0.025866379961371422, 0.0022053811699151993, -0.013580630533397198, -0.008973768912255764, -0.008530670776963234, -0.01634449139237404, -0.034882090985774994, 0.015505067072808743, 0.020963190123438835, -0.021025821566581726, 0.05541544035077095, 0.0008097809040918946, -0.028824960812926292, -0.008304261602461338, -0.017820173874497414, -0.015437457710504532, -0.04158279672265053, 0.03497977554798126, 0.04922804981470108, -0.052162736654281616, -0.04332534968852997, -0.028585651889443398, 0.03538479655981064, 0.045439448207616806, 0.021106518805027008, -0.0157619696110487, 0.0020961861591786146, -0.003771986812353134 ]
Michael Daly Memorial Scholarship Fund The City of Jackson mourns the loss of former city manager, Mike Daly who passed away on Wednesday, October 25, 2017, at the age of 57. Mike was City Manager of Jackson, CA, from 1999 until he retired in April of this year. Mike's true passion in life was his family. Whether it was coaching his girls through softball and tennis, chaperoning field trips, or attending every band concert and tennis match, Mike always put his family first. Mike was a shining example of integrity, character, and compassion. Mike's wife, Linda has established the Michael Daly Memorial Scholarship Fund. Contributions may be made payable to the Michael Daly Memorial Scholarship Fund at PO Box 1154, Jackson, CA, 95642. Donations can also be made online CLICK HERE (select the Micheal Daly Memorial Scholarship Fund in the drop down menu). Read full Obituary | Daneri Mortuary
[ -0.00765640614554286, 0.028386253863573074, -0.0055753495544195175, 0.006100172642618418, -0.006251991726458073, 0.004194432869553566, -0.011589545756578445, 0.012259564362466335, 0.020222429186105728, 0.016720866784453392, 0.02003825642168522, -0.02495449036359787, 0.005403201561421156, -0.0409834198653698, -0.03532939404249191, -0.005439077969640493, -0.017139945179224014, -0.035574089735746384, -0.014207336120307446, -0.000869434850756079, -0.012632500380277634, 0.04270191118121147, -0.06582603603601456, -0.0314418189227581, -0.026272740215063095, 0.03201819583773613, 0.04746020957827568, -0.009596221148967743, 0.03822653368115425, 0.026381466537714005, -0.019223934039473534, -0.07329495996236801, 0.04103635624051094, -0.07401514053344727, -0.019220486283302307, 0.0005315273301675916, 0.019671205431222916, -0.0579291470348835, 0.006175568327307701, -0.05514676123857498, 0.015617722645401955, -0.01734209433197975, 0.04614344611763954, -0.028413161635398865, -0.04857339709997177, -0.01984989270567894, -0.030311372131109238, -0.04230395331978798, -0.007794948760420084, -0.036253802478313446, -0.03546210005879402, -0.02987758256494999, 0.03570571169257164, 0.008208667859435081, 0.005884124897420406, 0.0063079893589019775, 0.013695316389203072, -0.0346393883228302, -0.015698760747909546, 0.03118744306266308, 0.02558307535946369, 0.0035497096832841635, 0.037618257105350494, -0.048773448914289474, 0.03752351179718971, 0.0484502874314785, -0.019639166072010994, -0.009191852062940598, 0.017365457490086555, -0.024323023855686188, 0.015268911607563496, 0.018204793334007263, -0.023308096453547478, -0.017544198781251907, -0.010642423294484615, -0.007409225217998028, -0.00961746834218502, 0.006077438127249479, -0.0003532224509399384, -0.008560072630643845, 0.005241088103502989, 0.06273963302373886, 0.021933306008577347, 0.02812185510993004, -0.06739842891693115, -0.04015635326504707, -0.007959404028952122, 0.013238949701189995, -0.004335432313382626, 0.021585717797279358, -0.02452278696000576, 0.05944916605949402, 0.027441298589110374, 0.01039823330938816, 0.04246123880147934, 0.05539465323090553, -0.04698169231414795, 0.03656128793954849, 0.011168976314365864, 0.0004708714841399342, 0.0365474671125412, -0.014859418384730816, -0.002638233592733741, 0.027074472978711128, -0.03935279697179794, -0.043303344398736954, 0.010233220644295216, -0.02237578295171261, -0.009670672006905079, -0.017746655270457268, 0.026410292834043503, -0.025976991280913353, 0.040781114250421524, -0.006975558120757341, -0.03953295946121216, 0.04230481758713722, 0.007269785739481449, 0.02896762639284134, -0.03472401574254036, 0.018441304564476013, 0.026371261104941368, -0.012050480581820011, 0.03324493020772934, -0.04252568632364273, 0.03488418832421303, -0.00680315587669611, -0.01699286885559559, 0.06509903073310852, -0.014619060792028904, -0.02944948710501194, 0.01816338300704956, -0.03818722069263458, 0.011483662761747837, 0.0003057124267797917, 0.004810564685612917, -0.0008171708905138075, 0.017439911141991615, 0.03244725242257118, 0.010845432057976723, -0.03339000418782234, 0.07200819253921509, 0.041373685002326965, 0.0355239138007164, 0.07752854377031326, -0.009084245190024376, 0.029527200385928154, 0.011784004047513008, -0.0013454026775434613, -0.041224922984838486, 0.014009764418005943, -0.03753232583403587, 0.017785830423235893, -0.018566494807600975, 0.02502365969121456, 0.013760109432041645, -0.004570618271827698, -0.004564114846289158, 0.01177614089101553, 0.031666409224271774, -0.002229178324341774, -0.03786155954003334, -0.015197789296507835, 0.006550336256623268, 0.047704264521598816, 0.016754616051912308, 0.02163124643266201, -0.02058321423828602, -0.028804682195186615, -0.00005634999615722336, -0.04164012148976326, -0.0036505372263491154, -0.02043706737458706, -0.024226408451795578, 0.024614229798316956, 0.023648202419281006, 0.05583846569061279, 0.04990642890334129, 0.004723368678241968, 0.040685735642910004, 0.018874455243349075, -0.024042557924985886, -0.010352635756134987, 0.03870746120810509, 0.06504085659980774, 0.029745880514383316, -0.007733799051493406, 0.00125418312381953, -0.017148466780781746, -0.01944432035088539, -0.020886635407805443, 0.02008715271949768, -0.006741935387253761, -0.013528372161090374, 0.023350916802883148, -0.0010707364417612553, 0.010927475057542324, 0.018176589161157608, -0.042597446590662, -0.018506372347474098, -0.044372040778398514, -0.02511201798915863, 0.04401325061917305, -0.015587395057082176, 0.01050740946084261, -0.006206025835126638, -0.004370007663965225, 0.02463207021355629, 0.0654011219739914, -0.052873119711875916, 0.0013376937713474035, 0.08211293071508408, -0.005329588893800974, -0.008084329776465893, -0.00573336984962225, 0.0004934166790917516, -0.0010107974521815777, -0.02785496413707733, 0.04632064700126648, -0.02468867599964142, -0.007685892749577761, 0.01802365668118, 0.04580308124423027, 0.026475876569747925, 0.012961816973984241, 0.0026567266322672367, -0.002657901728525758, 0.025341298431158066, 0.038040198385715485, -0.045868534594774246, -0.02057773433625698, 0.02069871872663498, 0.04540088772773743, 0.037022508680820465, 0.061933618038892746, 0.05837473273277283, -0.011071196757256985, 0.047190431505441666, 0.07710696756839752, 0.027053100988268852, 0.022856850177049637, 0.02070613205432892, 0.014542165212333202, 0.0494040846824646, 0.007310178596526384, 0.016683420166373253, 0.025188641622662544, -0.03628627955913544, -0.01753631979227066, -0.02512623928487301, 0.04844151809811592, -0.02689216285943985, 0.051206719130277634, 0.03975038230419159, 0.051908355206251144, -0.006975013297051191, 0.03794798627495766, 0.041367534548044205, 0.06948042660951614, -0.024350544437766075, 0.007347927428781986, 0.010196062736213207, 0.008570030331611633, -0.016353704035282135, 0.0024749706499278545, 0.03317036107182503, 0.03167840093374252, 0.02284732274711132, 0.02636430598795414, -0.002681151730939746, -0.03845888376235962, -0.0266558900475502, -0.07368850708007812, -0.018778124824166298, -0.031591664999723434, -0.03892132267355919, -0.012807468883693218, 0.04468446969985962, -0.046099867671728134, 0.004736686125397682, -0.007565351668745279, -0.03732267767190933, -0.03519487380981445, -0.01286811288446188, 0.04208942875266075, 0.046446576714515686, 0.04075932502746582, -0.025926878675818443, 0.05010586977005005, -0.009520933963358402, 0.006226317025721073, -0.024481281638145447, -0.025320885702967644, -0.010204222984611988, -0.029167165979743004, 0.03972848504781723, -0.04862093925476074, 0.004556876141577959, -0.0037504800129681826, -0.02482018619775772, -0.04935549199581146, 0.013576822355389595, 0.024126848205924034, 0.007272085640579462, 0.007268350571393967, -0.023163245990872383, 0.03364023566246033, 0.018436629325151443, -0.045665860176086426, 0.0445169098675251, 0.051605671644210815, -0.04027804359793663, 0.05169958993792534, 0.013889815658330917, 0.02642257697880268, -0.04117530956864357, 0.04801037907600403, 0.03348906338214874, 0.006530687678605318, -0.016458580270409584, -0.01719597727060318, -0.0053102318197488785, 0.022339263930916786, 0.003315448062494397, -0.014385812915861607, -0.015237540937960148, 0.05440926551818848, 0.005765858571976423, -0.0377633236348629, 0.008437654934823513, -0.04593541473150253, -0.0074995290488004684, -0.026794860139489174, -0.011221951805055141, 0.020095771178603172, 0.05117083340883255, 0.04524192586541176, -0.0052876826375722885, -0.03873210772871971, 0.005679954309016466, -0.0022770832292735577, 0.025692211464047432, -0.0312117300927639, 0.028405241668224335, 0.0654510110616684, -0.00409293919801712, -0.0027737398631870747, 0.037191033363342285, -0.005445059854537249, -0.009416262619197369, 0.04465486481785774, -0.025764402002096176, 0.018626339733600616, 0.033075690269470215, -0.008384046144783497, 0.014465817250311375, 0.08649472892284393, -0.025868676602840424, 0.01629508100450039, 0.0289278756827116, 0.03298342227935791, 0.03644179180264473, 0.02099926583468914, -0.005669224075973034, -0.023351307958364487, -0.04007139801979065, -0.08682192862033844, 0.03602713719010353, 0.005940169095993042, 0.047833554446697235, -0.05840429663658142, 0.060928188264369965, 0.0022140895016491413, -0.0522424653172493, 0.047082334756851196, -0.030182039365172386, 0.011399637907743454, 0.05629532411694527, 0.00248081237077713, 0.04922110587358475, -0.022828837856650352, 0.011640130542218685, 0.01073901355266571, -0.011065426282584667, 0.02654121071100235, 0.014236150309443474, 0.003568297252058983, -0.008315395563840866, -0.02224329113960266, -0.008773328736424446, -0.0008397247293032706, -0.008387774229049683, -0.01527898944914341, -0.009722152724862099, 0.00011241587344557047, -0.037980735301971436, -0.04808967933058739, 0.05927923321723938, 0.007897816598415375, 0.012197217904031277, -0.037586506456136703, -0.0063966852612793446, 0.019394073635339737, 0.027595560997724533, 0.031019633635878563, -0.020559584721922874, 0.008616525679826736, -0.06068471446633339, 0.03723132982850075, 0.022770890966057777, -0.02077237330377102, -0.04401076212525368, -0.014905418269336224, -0.0024299435317516327, 0.014991836622357368, 0.01467671524733305, -0.01881732977926731, -0.01001762319356203, 0.015611737035214901, -0.0015110798412933946, 0.028655001893639565, -0.01903531514108181, -0.020014360547065735, 0.0023238854482769966, 0.026285408064723015, 0.03744078800082207, -0.06576207280158997, 0.018788691610097885, -0.009821537882089615, 0.03819485381245613, 0.039268702268600464, -0.002848636591807008, -0.06116675212979317, 0.011722446419298649, -0.034634754061698914, -0.011429057456552982, 0.03264101967215538, 0.04411100223660469, -0.018061399459838867, -0.0027044794987887144, -0.0227703507989645, 0.03086945228278637, 0.014455435797572136, 0.02592971920967102, 0.008270853199064732, 0.00017631263472139835, 0.023444509133696556, -0.003335485700517893, 0.03524104133248329, -0.0346192941069603, -0.023974459618330002, 0.01489832904189825, -0.030882641673088074, -0.004940485581755638, 0.02242511697113514, -0.03509151563048363, 0.0017934703500941396, 0.004612169694155455, -0.024832000955939293, 0.0350068137049675, -0.01824207790195942, 0.02928011491894722, -0.018014727160334587, 0.02223750203847885, -0.03203040733933449, -0.03175310790538788, 0.056345999240875244, -0.006854638922959566, -0.002401624573394656, 0.01917944848537445, 0.021469824016094208, -0.004301054403185844, 0.03269068896770477, 0.025867944583296776, -0.06128031015396118, 0.039058033376932144, -0.029474912211298943, 0.02407108061015606, -0.0422690324485302, -0.010493435896933079, 0.023584401234984398, -0.01969570480287075, 0.032522764056921005, -0.01117766834795475, -0.03649453446269035, -0.020510708913207054, -0.043597180396318436, 0.0052483961917459965, 0.0077395024709403515, -0.005287580657750368, 0.009278303012251854, 0.025707736611366272, -0.009704707190394402, -0.014277725480496883, -0.00013933565060142428, 0.011592715047299862, 0.022110462188720703, 0.006760728545486927, 0.01636332832276821, 0.018357573077082634, -0.025131503120064735, 0.038683194667100906, -0.01419098861515522, -0.04426997900009155, 0.022046789526939392, -0.01592085137963295, -0.062357526272535324, -0.05172421410679817, -0.029880812391638756, -0.06599481403827667, -0.016728952527046204, -0.0441376194357872, 0.012660585343837738, -0.001881941338069737, 0.020319469273090363, 0.018835660070180893, 0.024702085182070732, 0.0010704414453357458, 0.019402476027607918, -0.03908386453986168, 0.02303178980946541, 0.040320418775081635, -0.0588277243077755, -0.03488941118121147, 0.035619672387838364, -0.02740819752216339, 0.05368097126483917, -0.020012972876429558, 0.001273042755201459, -0.06053461134433746, -0.05363605543971062, -0.003629460232332349, -0.0017752473941072822, -0.01081228256225586, -0.054686352610588074, -0.031775202602148056, -0.01551057305186987, 0.026751432567834854, 0.015595757402479649, -0.013077623210847378, 0.00007776687562000006, -0.027780817821621895, -0.01620916835963726, -0.027371732518076897, -0.005244972184300423, -0.04468461126089096, 0.005241874139755964, -0.0004555431369226426, 0.05804058536887169, -0.01135485339909792, 0.02573496475815773, -0.006064704619348049, 0.00692641781643033, -0.006858437787741423, -0.012420125305652618, -0.06439678370952606, -0.039693351835012436, -0.011747060343623161, -0.012050527147948742, 0.024928780272603035, -0.02637982740998268, -0.027166811749339104, 0.07663571834564209, -0.02575678750872612, 0.006033694837242365, -0.030782481655478477, -0.01294309925287962, -0.00856928713619709, -0.008670009672641754, 0.06551814824342728, -0.010596449486911297, 0.01784510537981987, -0.030484039336442947, 0.05283142998814583, 0.004098831210285425, 0.018288683146238327, -0.03056485764682293, -0.027285762131214142, -0.014502791687846184, -0.04749578237533569, 0.033764563500881195, -0.03053688444197178, -0.017116954550147057, -0.047597430646419525, -0.017075611278414726, 0.04104205220937729, -0.009426858276128769, 0.05105241760611534, 0.04941129684448242, -0.023387663066387177, -0.004220481961965561, -0.03261107951402664, 0.05157492682337761, 0.04362579807639122, -0.010713424533605576, 0.00860337819904089, -0.024022528901696205, -0.043391767889261246, -0.0237581804394722, -0.05918891727924347, -0.04400010034441948, -0.050974905490875244, -0.00451665511354804, 0.08198056370019913, 0.015414278022944927, 0.0257392767816782, -0.024596944451332092, -0.059987522661685944, -0.03619883954524994, 0.05095384269952774, -0.012527520768344402, -0.00997580774128437, 0.049873024225234985, 0.013905654661357403, -0.015285666100680828, 0.006695696618407965, -0.024558575823903084, 0.009370565414428711, -0.028672173619270325, 0.056319624185562134, 0.006731037981808186, -0.051733147352933884, 0.01274191401898861, 0.07967106997966766, -0.07838136702775955, -0.02778618037700653, 0.0066358596086502075, 0.01562325470149517, -0.02334820292890072, -0.01358643639832735, 0.0035722563043236732, 0.02747226506471634, -0.02142832614481449, -0.00632129842415452, 0.04169168323278427, 0.013747288845479488, 0.05404980480670929, -0.0157107412815094, 0.029117325320839882, -0.028554199263453484, 0.018356051295995712, 0.02545079030096531, -0.021844787523150444, -0.012674232013523579, -0.03637253865599632, -0.017666099593043327, 0.007862377911806107, -0.009347639046609402, 0.05142056196928024, -0.030702762305736542, -0.00044906133553013206, 0.019776733592152596, -0.038820892572402954, 0.0430486723780632, 0.0012503673788160086, -0.002037634141743183, 0.009120126254856586, -0.020177027210593224, -0.06060361489653587, -0.0426110215485096, 0.01533324085175991, 0.024556970223784447, 0.02569427527487278, -0.05528433993458748, 0.004590734373778105, 0.03899161145091057, 0.02066582255065441, 0.010556613095104694, -0.05494443327188492, -0.02412928268313408, -0.021680155768990517, -0.0431230254471302, -0.06304943561553955, -0.024116462096571922, -0.00511914724484086, 0.03895292803645134, -0.01357463002204895, -0.055075470358133316, 0.009788633324205875, 0.014569278806447983, -0.04639475420117378, -0.0009689689031802118, -0.03089068830013275, -0.002514286432415247, -0.032666854560375214, -0.05404452607035637, -0.02150038629770279, -0.03473181650042534, -0.025493739172816277, 0.00028962737997062504, 0.003907985053956509, 0.02479122392833233, -0.014985417015850544, 0.029107561334967613, 0.007636684458702803, 0.022427035495638847, 0.00004066125984536484, -0.039041657000780106, 0.012510035187005997, 0.04716514050960541, -0.025690115988254547, 0.019653670489788055, 0.051517974585294724, -0.013250993564724922, 0.048062946647405624, -0.013082419522106647, -0.021720118820667267, 0.008028479292988777, 0.010858047753572464, -0.0260634608566761, 0.02784494124352932, -0.041900672018527985, -0.012092812918126583, -0.016648191958665848, -0.04638262093067169, 0.0048914505168795586, -0.004249460529536009, 0.015567081049084663, -8.594809060014086e-7, -0.0051522161811590195, -0.038646094501018524, 0.04622005671262741, -0.006345998961478472, -0.004871414974331856, -0.0061553288251161575, 0.04512814059853554, 0.028796562924981117, 0.0022025350481271744, 0.0239319559186697, 0.026855524629354477, 0.010750478133559227, -0.029668375849723816, -0.0012683793902397156, -0.006383846513926983, -0.03347938135266304, 0.042784176766872406, -0.010502705350518227, -0.0035614599473774433, -0.06509941071271896, -0.023656457662582397, 0.022916844114661217, 0.050334855914115906, -0.009780977852642536, -0.012523172423243523, 0.019816480576992035, -0.04397357627749443, -0.016462676227092743, -0.003815299831330776, -0.06130165234208107, -0.03410205990076065, 0.045406654477119446, -0.04129547253251076, -0.03786758705973625, -0.029660535976290703, -0.05179756134748459, 0.0017378585180267692, -0.018463443964719772, 0.0054134586825966835, -0.00028257083613425493, 0.014501267112791538, 0.023145342245697975, 0.0337747298181057, 0.005668458063155413, 0.004601759370416403, -0.006655785255134106, 0.05249226093292236, -0.028507033362984657, -0.02902471087872982, 0.06695151329040527, 0.036438241600990295, 0.020796924829483032, 0.0037111686542630196, 0.023583553731441498, 0.019747359678149223, -0.023076210170984268, 0.0028037226293236017, 0.0050924657844007015, 0.013857952319085598, -0.0009879566496238112, 0.004837431944906712, 0.03567907214164734, 0.010775692760944366, -0.013010465539991856, 0.04570983350276947, 0.00044755730777978897, -0.03315005451440811, -0.0032462850213050842, 0.026964275166392326, 0.04504814371466637, -0.034933459013700485, 0.04155071824789047, -0.0029556681402027607, 0.040878985077142715, -0.007616298273205757, 0.009333927184343338, -0.012732135131955147, 0.050506964325904846, 0.02271178364753723, 0.05257243290543556, 0.026614973321557045, 0.052504729479551315, 0.035727839916944504, 0.005693306215107441, 0.0011642543831840158, 0.04046095907688141, 0.024744339287281036, -0.04612366482615471, -0.016226211562752724, -0.024266723543405533, -0.004475685767829418, 0.007099353242665529, 0.0022485123481601477, -0.000050961582019226626, -0.017624124884605408, 0.007598897907882929, -0.017319316044449806, -0.026645898818969727, 0.06131674721837044, -0.007560234051197767, -0.016273293644189835, 0.005170972086489201, -0.0002914818760473281, -0.020966000854969025, 0.05297178402543068, -0.0015066463965922594, -0.029334647580981255, 0.03014860861003399, 0.03506004437804222, 0.010694504715502262, 0.04835101589560509, 0.025651004165410995, -0.02780355140566826, -0.043064940720796585, -0.0007956042536534369, -0.0013868121895939112, -0.031676407903432846, -0.038931336253881454, -0.010565814562141895, -0.037510357797145844, 0.02598082274198532, -0.017178339883685112, -0.02065666951239109, 0.03863021358847618, -0.0452270582318306, -0.04304996132850647, -0.05009833350777626, 0.023759953677654266, -0.027248434722423553, -0.04543017968535423, 0.041287682950496674, -0.00780516117811203, -0.059491220861673355, 0.040185581892728806, -0.012750129215419292, 0.046164993196725845, -0.0007894111913628876, 0.033865105360746384, 0.019157378003001213, 0.0034781137946993113, 0.05659990385174751, -0.052002839744091034, -0.014438086189329624, 0.00867395382374525, -0.005461464170366526, -0.05809077247977257, -0.025191660970449448, -0.030512524768710136, -0.02631988562643528, -0.025981634855270386, -0.01643340475857258, 0.0038884272798895836, 0.011966808699071407, -0.03804750740528107, -0.046687643975019455, 0.002381982048973441, 0.00962158665060997, -0.025178100913763046, 0.01818937249481678, 0.013583353720605373, 0.024009527638554573, -0.033458415418863297, -0.01791687123477459, -0.0011480762623250484, -0.02353024110198021, 0.005250159651041031, -0.04523072764277458, 0.02016809582710266, -0.024476097896695137, -0.027013877406716347, -0.008267460390925407, -0.029953453689813614, 0.012745984829962254, 0.01667996682226658, -0.05040481686592102, -0.05896299332380295, 0.010252214968204498, 0.04273955896496773, -0.04074778035283089, 0.011508687399327755, -0.010577813722193241, -0.021009940654039383, 0.04589662700891495, 0.01720871403813362, 0.002853092970326543, 0.021313264966011047, 0.020787429064512253, -0.008991950191557407, 0.028151754289865494, -0.0325913205742836, 0.04508737847208977, -0.0041644680313766, -0.03673548251390457, -0.020890895277261734, 0.02195139415562153, -0.007434047292917967, -0.07482608407735825, 0.008732100948691368, 0.006360029336065054, 0.04341870918869972, -0.02731948345899582, -0.07993832975625992, -0.020763682201504707, -0.03926340118050575, -0.029554015025496483, -0.05547375604510307, 0.04454362019896507, -0.005401425529271364, 0.007278362289071083, -0.021200189366936684, -0.07922287285327911, 0.13432016968727112, 0.02513395994901657, 0.019506556913256645, 0.003110630437731743, 0.040734127163887024, 0.05621533468365669, 0.021452687680721283, -0.015673760324716568, -0.02189558371901512, -0.03672307729721069, 0.030535195022821426, -0.01363918837159872, 0.024938398972153664, -0.001517482683993876, 0.019657641649246216, 0.06354214996099472, -0.02355470135807991, 0.012694981880486012, 0.03714229539036751, -0.05108657851815224, -0.05214398726820946, 0.011483819223940372, -0.016726460307836533, 0.01771261729300022, 0.014550752937793732, 0.01472103875130415, 0.004584148991852999, -0.04018807411193848, -0.007455188315361738, -0.006761659402400255, 0.021362468600273132, -0.012706805020570755, 0.02762535586953163, -0.02535860612988472, -0.03361399844288826, 0.05728689581155777, -0.015450793318450451, -0.03924257308244705, -0.013661066070199013, 0.02425709366798401, -0.021923240274190903, -0.022239306941628456, 0.042867571115493774, -0.030373036861419678, 0.01591947115957737, 0.026063930243253708, -0.03483596444129944, -0.014553528279066086, 0.013044257648289204, -0.04161085933446884, 0.032675474882125854, -0.02612907625734806, 0.027289066463708878, 0.00802193209528923, -0.04289676621556282, 0.03251521289348602, -0.013218309730291367, -0.02461140602827072, -0.02827179804444313, -0.009961032308638096, 0.04207191243767738, 0.011705532670021057, -0.044927872717380524, -0.0006942287436686456, -0.061280813068151474, 0.015316116623580456, 0.03286486864089966, -0.011212341487407684, 0.0007830538670532405, -0.02149905450642109, -0.01882164180278778, 0.051559120416641235, 0.019398456439375877, -0.045278072357177734, 0.034900251775979996, 0.036680907011032104, 0.00392038794234395, 0.0389561653137207, 0.042857877910137177, -0.009423947893083096, -0.0019851161632686853, -0.04406465217471123, -0.024164067581295967, -0.040870171040296555, 0.00727430684491992, 0.024035725742578506, -0.024007344618439674, -0.0446358248591423, -0.013020786456763744, 0.060043852776288986, 0.050971776247024536, 0.01526770181953907, -0.032283056527376175, -0.02829333394765854, -0.02685552090406418 ]
My name is Phill McManus. I'm the 8 year old programming in BASIC on a Commodore Pet in the picture in the top right. This site is simply my presence on the web outside social media. Mainly a collection of projects I've worked on or have in progress, some hardware and some software.
[ 0.006923637818545103, -0.008584684692323208, -0.02530025504529476, -0.0054681808687746525, 0.014465994201600552, -0.013010450638830662, 0.011827372014522552, 0.015104621648788452, 0.01312827505171299, 0.026074063032865524, 0.0320562981069088, -0.01764967292547226, 0.0017035872442647815, -0.031516432762145996, -0.03182408958673477, -0.0016432547708973289, -0.016349727287888527, -0.03538946062326431, -0.022170107811689377, 0.0008253345149569213, 0.009670938365161419, 0.0087879104539752, -0.061945077031850815, -0.03147653490304947, -0.0392654687166214, 0.025835132226347923, 0.020337434485554695, 0.02309923991560936, 0.03468421474099159, 0.05598914250731468, -0.02079380303621292, -0.023110929876565933, 0.055231258273124695, -0.06821120530366898, -0.03867032751441002, -0.007461882662028074, 0.044008247554302216, -0.03478258475661278, -0.03547941520810127, -0.05672438442707062, 0.03261817619204521, -0.02799687162041664, 0.021504487842321396, -0.03689674660563469, -0.054818183183670044, -0.022478997707366943, -0.011116169393062592, -0.005302078556269407, 0.027322230860590935, -0.014899899251759052, 0.016715461388230324, -0.002686593681573868, 0.036949291825294495, 0.005043823271989822, -0.009585061110556126, -0.003933018539100885, 0.030565205961465836, -0.0187846589833498, -0.034984905272722244, 0.033672504127025604, 0.0010539726354181767, 0.0025898651219904423, 0.02358967810869217, -0.08448448032140732, 0.006073863711208105, 0.012710643000900745, -0.011837761849164963, -0.029626106843352318, 0.009516166523098946, 0.006939089857041836, 0.01720975525677204, 0.019691675901412964, -0.043987106531858444, -0.004200341179966927, -0.002067356137558818, -0.004686701111495495, -0.007157259155064821, 0.0036507376935333014, -0.006584696471691132, 0.017548134550452232, 0.023021478205919266, 0.057663287967443466, -0.005962991621345282, 0.04484943300485611, -0.05777140334248543, -0.03456175699830055, -0.014440224505960941, 0.04560542106628418, -0.01857847534120083, -0.0025656982325017452, 0.029690926894545555, 0.04092558100819588, 0.03634743392467499, 0.0011537958635017276, 0.03841784968972206, 0.03784102201461792, -0.02784796990454197, 0.04508526250720024, -0.0009373981156386435, 0.009590412490069866, 0.05646468326449394, 0.040503643453121185, 0.002014964120462537, 0.04940527677536011, -0.03361714258790016, -0.021174974739551544, -0.0003431465884204954, -0.013915267772972584, -0.012684903107583523, -0.028626665472984314, 0.009728948585689068, -0.012212381698191166, 0.0009274488547816873, -0.0034072597045451403, -0.011955059133470058, 0.01575484685599804, -0.009860281832516193, 0.033478278666734695, -0.027826253324747086, 0.015613985247910023, 0.009481331333518028, 0.029332883656024933, 0.042349923402071, -0.03185964748263359, -0.0023542954586446285, -0.05359590798616409, -0.04227873682975769, 0.061416011303663254, -0.007983786053955555, -0.03131936490535736, -0.003748002229258418, -0.027538342401385307, -0.02327110804617405, 0.02122410573065281, 0.014671078883111477, 0.029479442164301872, -0.0000953020789893344, 0.03811977058649063, 0.040493275970220566, -0.035796768963336945, 0.0427551232278347, -0.00010429116809973493, -0.0003443333553150296, 0.10234802961349487, -0.03093927539885044, 0.022341229021549225, -0.016238264739513397, -0.008375427685678005, -0.0066251992247998714, -0.0005015472997911274, -0.025228755548596382, 0.0240365881472826, -0.00714009627699852, 0.020639406517148018, 0.012355859391391277, -0.003564318409189582, -0.012127221561968327, 0.0207865871489048, 0.020653001964092255, 0.019389500841498375, -0.03531563654541969, 0.0056942179799079895, 0.027213476598262787, 0.04815340042114258, 0.0023217855487018824, 0.01692548580467701, -0.02328561246395111, -0.0061707026325166225, -0.018212197348475456, -0.016960106790065765, 0.0006273527396842837, -0.0015767831355333328, -0.021920057013630867, 0.021062513813376427, 0.01867806911468506, 0.06618522107601166, 0.022576039656996727, 0.010002638213336468, 0.0317966565489769, 0.020060447975993156, -0.04846448078751564, -0.01349622942507267, 0.003036973997950554, 0.06297902762889862, 0.0011516112135723233, 0.013309847563505173, 0.00953823421150446, -0.01935480907559395, -0.05036730319261551, -0.02982601523399353, 0.014542767778038979, 0.015698760747909546, -0.04341624677181244, 0.027956299483776093, 0.016472993418574333, 0.009504718706011772, -0.00571403605863452, -0.005193784367293119, -0.02476547285914421, -0.05823827162384987, -0.03993028774857521, 0.03618573024868965, -0.0038706520572304726, 0.014355245977640152, 0.029812313616275787, -0.04161546379327774, 0.007680821232497692, 0.04521532356739044, -0.08133919537067413, -0.0007806842913851142, 0.015278530307114124, -0.007224435452371836, -0.024403568357229233, -0.024549806490540504, -0.007234668359160423, -0.015628235414624214, -0.011000772006809711, 0.030241210013628006, -0.017869601026177406, -0.008430138230323792, 0.013770811259746552, 0.0267842598259449, 0.04074869304895401, 0.027255598455667496, -0.0018664062954485416, 0.01124593522399664, 0.01384920347481966, 0.0316929891705513, -0.04510756582021713, -0.01508275792002678, -0.011072380468249321, 0.04208800941705704, 0.025895822793245316, 0.06326523423194885, 0.0386185385286808, 0.017678381875157356, 0.061276521533727646, 0.045116670429706573, -0.009584599174559116, 0.03584901988506317, -0.03579852357506752, 0.01486686710268259, 0.04302782937884331, 0.015276196412742138, 0.024930140003561974, 0.0085433479398489, 0.0009278747602365911, -0.024463437497615814, -0.010205378755927086, 0.025739407166838646, -0.046596504747867584, 0.0515592060983181, 0.007097328547388315, 0.01310177706182003, -0.008855790831148624, -0.0028466531075537205, 0.021370863541960716, 0.0602453276515007, -0.03894695267081261, 0.022452853620052338, 0.01961328648030758, 0.010154679417610168, -0.00887830089777708, 0.013262416236102581, 0.037290558218955994, 0.019274117425084114, 0.003121978370472789, 0.029443489387631416, -0.023865975439548492, -0.052114371210336685, -0.015705501660704613, -0.044900160282850266, -0.03588514402508736, -0.02881895750761032, -0.06044980511069298, 0.025440018624067307, 0.009509489871561527, -0.027871593832969666, 0.0203288272023201, -0.003816986922174692, -0.004719162825495005, -0.045902859419584274, 0.005174740217626095, 0.05489354580640793, 0.023205768316984177, 0.00764274038374424, 0.00730003509670496, 0.02036532200872898, 0.002044001827016473, 0.026624374091625214, -0.020877443253993988, -0.0022884465288370848, 0.009869661182165146, -0.010313916020095348, 0.03841707482933998, -0.009769691154360771, 0.006142349913716316, 0.011013306677341461, -0.03219800442457199, -0.026583312079310417, -0.026480630040168762, 0.027039941400289536, -0.009099338203668594, 0.01160886324942112, -0.05237254872918129, 0.0433049201965332, 0.021782876923680305, -0.042302828282117844, 0.04475996270775795, 0.034186311066150665, -0.05266490951180458, 0.0444197915494442, -0.005562332924455404, 0.004955270793288946, -0.056530822068452835, 0.03237916901707649, 0.03069349378347397, 0.022497031837701797, -0.006469479762017727, -0.022151781246066093, -0.011841196566820145, 0.014016065746545792, 0.01793280988931656, -0.028426485136151314, -0.036676764488220215, 0.04371914640069008, 0.03935512527823448, -0.0761771872639656, 0.024539027363061905, -0.01000221911817789, 0.003260678378865123, -0.03921585530042648, -0.046547044068574905, 0.018560966476798058, 0.01390258688479662, 0.0252021923661232, 0.02393477037549019, 0.015592177398502827, -0.010666243731975555, 0.013136356137692928, 0.044301752001047134, -0.011847268790006638, 0.021567411720752716, 0.04530664160847664, -0.017508575692772865, 0.017503900453448296, -0.0012384643778204918, -0.017993943765759468, -0.008093275129795074, -0.0011554528027772903, -0.004487129859626293, 0.0057957591488957405, 0.04702585190534592, -0.0026779137551784515, 0.004007324110716581, 0.047321975231170654, -0.0554666705429554, -0.007472519762814045, 0.009307775646448135, 0.015390854328870773, 0.0042410120368003845, 0.03030322678387165, -0.0012381990673020482, -0.02443188987672329, -0.041088301688432693, -0.04261429235339165, -0.009937141090631485, 0.0296173058450222, 0.045067742466926575, -0.06030769646167755, 0.07116179168224335, 0.002079739235341549, -0.02631233073771, 0.024457931518554688, -0.034539103507995605, 0.0007201585685834289, 0.04235255345702171, -0.01495499350130558, 0.04773133620619774, -0.0144576421007514, 0.026371583342552185, -0.009633934125304222, -0.010309453122317791, 0.05332265794277191, 0.005792360287159681, 0.0034859254956245422, -0.02612830139696598, -0.026983048766851425, -0.03955609351396561, -0.02836447022855282, -0.02737521007657051, -0.020402977243065834, -0.0021531269885599613, -0.007988812401890755, -0.0022574756294488907, -0.062288299202919006, 0.0640094056725502, 0.020705679431557655, 0.04869517311453819, -0.015452336519956589, 0.03999011963605881, -0.018464285880327225, 0.005609468091279268, 0.040542103350162506, -0.0140335438773036, 0.0167390126734972, -0.03946387395262718, 0.06442385166883469, 0.028721101582050323, -0.020647350698709488, -0.04107287526130676, 0.007853008806705475, -0.008054413832724094, 0.037072427570819855, 0.004090610891580582, -0.025097325444221497, -0.03308790177106857, 0.02111770585179329, -0.007918150164186954, 0.027036847546696663, -0.04905853047966957, -0.01929975301027298, 0.0009442281443625689, 0.029588866978883743, 0.0416523776948452, -0.06709429621696472, -0.02329578623175621, -0.01916840299963951, 0.06848584860563278, 0.030406955629587173, 0.03154776617884636, -0.04700223729014397, -0.027631090953946114, -0.04102275148034096, -0.0211824718862772, 0.03453676402568817, 0.04066497087478638, 0.001519179088063538, 0.020548691973090172, -0.03419938683509827, 0.028779270127415657, 0.024966197088360786, 0.014916487969458103, -0.013243184424936771, 0.023085078224539757, 0.012719372287392616, -0.01293556485325098, 0.023375432938337326, 0.01334952563047409, -0.023845702409744263, 0.026140909641981125, -0.06998615711927414, -0.01533958874642849, -0.02071988955140114, -0.015616844408214092, -0.004272375255823135, 0.011135412380099297, 0.03840845078229904, 0.03752370923757553, -0.025851259008049965, 0.009751798585057259, -0.010741711594164371, 0.05553252622485161, -0.05323002487421036, -0.03784728795289993, 0.03279140591621399, 0.001840320648625493, -0.029199333861470222, 0.02643863670527935, 0.04928482323884964, -0.034388888627290726, -0.0022120384965091944, 0.011179531924426556, -0.052805814892053604, 0.024911656975746155, -0.026597021147608757, 0.012543744407594204, -0.026105273514986038, -0.005926228128373623, -0.007418487686663866, -0.03519793972373009, 0.024350712075829506, -0.02604357711970806, -0.03062436915934086, -0.0262744203209877, -0.06871718913316727, -0.023265836760401726, 0.00013457154273055494, -0.0018216508906334639, 0.025530587881803513, 0.005366526078432798, -0.02065909467637539, -0.0020518768578767776, -0.014521834440529346, 0.01847994513809681, 0.0022722608409821987, -0.01955200359225273, -0.009356739930808544, 0.0006584104266948998, 0.012766764499247074, 0.034901320934295654, -0.005755809135735035, -0.01817474514245987, 0.004477015230804682, -0.014180307276546955, -0.016064239665865898, -0.027207497507333755, 0.01571502722799778, 0.0014598164707422256, -0.011983850039541721, -0.030883751809597015, 0.0016956060426309705, -0.00198493548668921, 0.01580066978931427, 0.03425028920173645, 0.00008292388520203531, 0.013551918789744377, 0.024408023804426193, -0.05721934884786606, 0.0475008599460125, 0.025505611672997475, -0.04710819572210312, -0.01979077234864235, 0.03374866396188736, -0.022154413163661957, 0.034915246069431305, 0.01335370633751154, -0.01561081875115633, -0.04652778431773186, -0.035417523235082626, -0.0046051274985075, -0.05647385120391846, -0.019116275012493134, -0.03913726285099983, -0.03156236559152603, -0.008610543794929981, 0.031412672251462936, 0.018485182896256447, -0.039990730583667755, -0.004467200953513384, -0.022898564115166664, 0.007750710938125849, -0.026294980198144913, -0.010128459893167019, -0.04125874489545822, -0.008636328391730785, -0.008600838482379913, 0.04841286689043045, -0.026579134166240692, 0.028936009854078293, 0.0011427397839725018, 0.037663888186216354, 0.05143263190984726, 0.028861572965979576, -0.06708461791276932, -0.03383248671889305, 0.003958149813115597, 0.01850448176264763, -0.015106559731066227, 0.03070737048983574, -0.023293299600481987, 0.044027116149663925, -0.010830986313521862, 0.016886882483959198, -0.04088418930768967, -0.004727761261165142, -0.05369346961379051, 0.004813252482563257, 0.04970472678542137, -0.02341974899172783, 0.022499632090330124, -0.02994936890900135, 0.07110404968261719, 0.03231075033545494, -0.01107750553637743, -0.00927862897515297, -0.01523119118064642, -0.013669115491211414, -0.04208788648247719, 0.04235651344060898, -0.04303344339132309, -0.00691621471196413, -0.04772024229168892, 0.01372863445430994, 0.04049152508378029, -0.03833925724029541, 0.07911120355129242, 0.0614299550652504, 0.03234513849020004, -0.019234294071793556, -0.04419906437397003, 0.020719464868307114, 0.013721644878387451, -0.005998536013066769, 0.013804621994495392, -0.01638876646757126, -0.03304446116089821, -0.06238016113638878, -0.050061870366334915, -0.06460848450660706, -0.05392984673380852, -0.01750657893717289, 0.06338668614625931, -0.0011083362624049187, 0.050083763897418976, -0.001168420072644949, -0.03830783814191818, -0.026208527386188507, 0.024701597169041634, 0.018819959834218025, 0.021211573854088783, 0.043476179242134094, 0.001457628095522523, 0.009421057999134064, -0.009287470951676369, -0.0322345532476902, -0.026784731075167656, -0.054181359708309174, 0.046130068600177765, -0.009698928333818913, -0.016330566257238388, 0.018133068457245827, 0.06143607571721077, -0.05379080772399902, -0.08158180117607117, 0.004349390044808388, 0.016464460641145706, 0.0009103126358240843, -0.04724305868148804, 0.0021942672319710255, -0.04267146810889244, -0.045400235801935196, -0.004901968874037266, 0.011781599372625351, -0.01453810092061758, 0.022209346294403076, -0.018135936930775642, 0.015176217071712017, -0.01007957011461258, 0.009444252587854862, 0.03022824041545391, -0.014214645139873028, -0.020585455000400543, -0.03657547011971474, 0.01775272749364376, 0.00028351196669973433, 0.006272519007325172, 0.05536302551627159, -0.021427545696496964, 0.05515678972005844, 0.03602854907512665, -0.008743789978325367, 0.014803145080804825, 0.002381960628554225, -0.024713462218642235, -0.009695847518742085, -0.07510856539011002, -0.05989652872085571, -0.01856214553117752, 0.017601732164621353, 0.024854114279150963, 0.01329678762704134, -0.06574535369873047, -0.011923668906092644, 0.02524280548095703, 0.018589356914162636, -0.015599031001329422, -0.03446919843554497, -0.058260079473257065, -0.05883185938000679, -0.04239136353135109, -0.019609320908784866, -0.026529185473918915, -0.005231978837400675, 0.016480496153235435, 0.031157435849308968, -0.044953133910894394, -0.027776194736361504, 0.029926270246505737, -0.03963596746325493, 0.016859114170074463, -0.052061617374420166, 0.042849019169807434, -0.05225492641329765, -0.03464676812291145, -0.044771336019039154, -0.006255814805626869, -0.027998199686408043, -0.015517800115048885, -0.005184781271964312, 0.004946515895426273, -0.009031901136040688, 0.057675447314977646, -0.01716497354209423, -0.019506266340613365, -0.018697556108236313, -0.07350823283195496, -0.004985167644917965, 0.028712023049592972, -0.040896687656641006, 0.031900402158498764, 0.014703848399221897, -0.022279197350144386, 0.02671409212052822, -0.015686990693211555, -0.02998638153076172, -0.00462614418938756, 0.016996895894408226, -0.0006747935549356043, 0.010241116397082806, -0.03687417134642601, -0.003520915051922202, -0.006157565861940384, -0.016327975317835808, 0.02047310583293438, 0.021550757810473442, 0.02086576633155346, 0.0018076844280585647, -0.00244405260309577, 0.0028816068079322577, 0.06940988451242447, -0.0010224083671346307, 0.02532929927110672, -0.0006753770285286009, 0.009294549934566021, 0.010510815307497978, -0.020143212750554085, 0.03101102076470852, 0.014637281186878681, 0.016256393864750862, 0.0045828018337488174, 0.010339946486055851, 0.02297898754477501, -0.03539443016052246, 0.02794652432203293, -0.0165586955845356, -0.030459284782409668, -0.05561637133359909, 0.0049558524042367935, 0.013034654781222343, 0.012295051477849483, -0.025193382054567337, -0.01904420554637909, -0.008844804018735886, -0.042057037353515625, -0.014030872844159603, 0.031466566026210785, -0.09914290904998779, -0.048733215779066086, 0.038384947925806046, -0.029497740790247917, -0.0048307874239981174, -0.027865136042237282, -0.024472279474139214, 0.00930800847709179, 0.0055469912476837635, -0.003778773359954357, -0.003517299424856901, 0.036872200667858124, -0.008665045723319054, 0.019193585962057114, -0.027910124510526657, -0.020736530423164368, 0.008477369323372841, 0.03203069418668747, -0.027231480926275253, -0.06133956462144852, 0.007209197152405977, 0.016093702986836433, 0.015887673944234848, -0.028504986315965652, -0.009510896168649197, 0.005236051045358181, 0.012018484994769096, 0.006053744815289974, 0.002636801451444626, 0.028459375724196434, -0.005061212461441755, 0.04961907118558884, 0.0014657083665952086, -0.00018961780006065965, -0.0477004200220108, 0.05766516923904419, 0.030906883999705315, -0.012558656744658947, -0.0043621975928545, 0.047356925904750824, 0.034095074981451035, -0.022938907146453857, 0.03289632126688957, 0.04023214057087898, 0.06060832738876343, 0.009963681921362877, 0.014077781699597836, 0.01627889834344387, 0.06475786864757538, 0.04798629507422447, 0.044271957129240036, 0.004532415419816971, 0.025144927203655243, 0.07212091237306595, -0.013415707275271416, 0.0037180681247264147, 0.020726915448904037, 0.020748810842633247, -0.03400325030088425, -0.008275344967842102, -0.015366505831480026, -0.04438692703843117, 0.02264213003218174, -0.010668782517313957, 0.0057113198563456535, -0.030839072540402412, -0.0050813076086342335, -0.045762233436107635, -0.010242264717817307, 0.041980206966400146, -0.00018457490659784526, -0.004028215538710356, 0.017166055738925934, -0.015862789005041122, -0.008495328947901726, 0.026494545862078667, -0.013076097704470158, 0.01702071912586689, 0.027408117428421974, 0.04451804608106613, 0.004109090194106102, 0.049198150634765625, 0.01872635819017887, 0.023480262607336044, -0.04899843782186508, 0.00195502326823771, 0.0173876341432333, 0.006911142263561487, -0.030352531000971794, -0.0224023275077343, -0.03468039631843567, 0.029746538028120995, -0.031099019572138786, -0.04449191689491272, 0.03086625039577484, -0.06348557770252228, -0.04216139391064644, -0.05035049840807915, 0.048668913543224335, -0.04135643690824509, 0.014360258355736732, 0.039295751601457596, -0.01660648174583912, -0.025070277974009514, 0.054494623094797134, 0.006193734239786863, 0.06353238970041275, 0.00897260382771492, 0.03156905621290207, -0.015150879509747028, 0.05558290332555771, 0.044753361493349075, -0.0435962975025177, 0.011686299927532673, 0.03457518294453621, -0.024616114795207977, -0.02341027371585369, -0.01366714108735323, -0.0485350601375103, -0.008824787102639675, -0.014113944955170155, -0.02777809463441372, 0.005801446735858917, 0.0694759264588356, -0.0038612785283476114, -0.014483830891549587, -0.0015179315814748406, 0.04752388596534729, -0.07929301261901855, 0.016631487756967545, 0.017807738855481148, 0.02410012111067772, 0.00919323693960905, 0.014706682413816452, -0.028199944645166397, -0.017878921702504158, 0.001015663263387978, -0.04428335651755333, 0.02173294685781002, -0.016582608222961426, -0.026933016255497932, -0.0280986987054348, -0.03792943060398102, -0.06912253051996231, -0.0028716542292386293, -0.007258505094796419, -0.042236726731061935, 0.03659575805068016, 0.06065059080719948, 0.016336696222424507, 0.013256451115012169, -0.010029626078903675, -0.023650268092751503, 0.06050511449575424, 0.06704164296388626, -0.00936140213161707, 0.028365032747387886, 0.050882529467344284, -0.035933248698711395, 0.032997168600559235, -0.04606989398598671, 0.048434194177389145, -0.017975719645619392, -0.007009499706327915, -0.042565539479255676, 0.02341415174305439, -0.0211785901337862, -0.0637073889374733, -0.001956519903615117, 0.048409126698970795, 0.02374890446662903, -0.030397366732358932, -0.07986874878406525, -0.02949623204767704, -0.06496861577033997, -0.02083616331219673, -0.04582102596759796, 0.028721511363983154, 0.005089052487164736, -0.019131621345877647, -0.02269672229886055, -0.04323191940784454, 0.1374240517616272, 0.060597505420446396, 0.04137969762086868, 0.005125024355947971, 0.028146103024482727, 0.054353296756744385, 0.025381729006767273, 0.00013692176435142756, 0.007885260507464409, -0.03931817039847374, 0.0338258296251297, 0.030277952551841736, 0.024479901418089867, 0.016223222017288208, 0.015181947499513626, 0.051008712500333786, -0.0383838415145874, 0.010148429311811924, 0.007257553283125162, -0.04281184822320938, -0.04952447488903999, 0.0268366988748312, -0.02391199767589569, 0.0021770247258245945, 0.0026424077805131674, 0.01660050079226494, 0.04616287723183632, -0.06188357621431351, -0.014664212241768837, 0.01613864116370678, 0.030069269239902496, -0.013224434107542038, 0.04346558079123497, -0.015346219763159752, -0.024566911160945892, 0.07716184854507446, -0.00362248788587749, -0.018317805603146553, -0.014161800034344196, 0.007154122926294804, -0.024269387125968933, -0.017511580139398575, 0.04395396634936333, -0.01880224421620369, 0.021457990631461143, 0.041065189987421036, -0.050810981541872025, 0.006935266777873039, 0.050617516040802, -0.03451242670416832, 0.05387245863676071, -0.029789090156555176, 0.0252190213650465, 0.00043534798896871507, -0.006644526030868292, 0.012489218264818192, 0.0043836310505867004, -0.016984207555651665, -0.018730828538537025, -0.009815036319196224, 0.009017124772071838, 0.025347191840410233, -0.015785235911607742, 0.01830270141363144, -0.03819992393255234, -0.009750011377036572, 0.024582354351878166, 0.023855676874518394, -0.007889741100370884, -0.001623655902221799, -0.026544420048594475, -0.0047453162260353565, 0.0006706721615046263, -0.03489985689520836, 0.023205170407891273, 0.033342525362968445, -0.030537517741322517, 0.039019230753183365, 0.015927767381072044, -0.03822019323706627, -0.022550327703356743, -0.010486193932592869, 0.0006248652352951467, -0.009606307372450829, 0.02229437418282032, 0.02757498063147068, -0.03662891313433647, -0.010305492207407951, -0.02998754382133484, 0.052924927324056625, 0.06624004989862442, 0.03301676735281944, -0.0431145615875721, -0.020023174583911896, 0.002566051669418812 ]
'Royal Pains' season 5, episode 7 review: Jeremiah and Divya's house of horrors Royal Pains July 31, 2013 Last week on "Royal Pains," we like to think that we saw some pretty substantial progress when it comes to a few of the stories that we have been following on the show all season long. Hank was getting closer to allowing the hospital to be the new home of the business, Evan pressed along with his campaign, and Divya made the move to live with Jeremiah. Ironically, our favorite moment this week was actually seeing something that felt at first almost inconsequential: Divya and the exploding candy kitchen. This of course was something that made Jeremiah extremely uncomfortable, mostly because nobody wants to come home and see their entire room become an explosion of chocolate and other sorts of assorted candy pieces. In the end, though, we saw the two come together over this, and Dr. Sacani did something very sweet. In the drama department, Evan and Paige squared off over a … painting. This story was nice, but also very predictable. There was an issue of Evan not liking a piece of art, she lashed back, and the two were at odds until a compromise was reached. At this point, we'd prefer to see him doing more with the campaign and Paige having something more exciting to do. The major long-term story this week was the negotiations between Hank's attorney (ironically also the center of a medical mystery this time around) and also the representatives from the hospital. Hank demanded that they all work to get a deal done, and they did! Shelby is taken with more than just Hank's business seemingly, but we'll find out more on that soon. What we did learn here is that a certain patient of his in Hungary is sniffing around, and that means trouble far worse than some chocolate all over the kitchen. Overall, this was a fun "Royal Pains" episode, and there's nothing more that we would really ask of the show than to provide breezy summer entertainment. So long as it does that (and potentially give us Jeremiah and Divya someday), we'll be thrilled. What did you think about this week's "Royal Pains" episode? If you want to take a look at just some of what is going to be coming up ahead on the USA show, be sure to just head on over to the link here. Photo: USA 1923 season 1 episode 5 return date: Who could die next? La Brea season 3 renewal confirmed early at NBC! AGT: All-Stars finale: What to expect moving forward
[ 0.02687285840511322, -0.00954822450876236, -0.019205529242753983, 0.02687942422926426, -0.01382903940975666, -0.013375325128436089, -0.03621469438076019, 0.010130765847861767, -0.0013590208254754543, 0.010326728224754333, 0.044950466603040695, -0.006040044594556093, 0.006856106221675873, -0.031159600242972374, -0.0043217819184064865, -0.03263213485479355, -0.030773025006055832, -0.014580450020730495, -0.028662776574492455, 0.019106430932879448, 0.02759517729282379, 0.01211829949170351, -0.06292429566383362, 0.003243327373638749, -0.0076160733588039875, 0.04507703334093094, 0.046872030943632126, -0.008077239617705345, 0.052972160279750824, 0.06228919327259064, -0.019780416041612625, -0.03765768185257912, 0.046053122729063034, -0.05803203210234642, 0.0005553143564611673, -0.023106221109628677, 0.0612606443464756, -0.023224802687764168, -0.01239621639251709, -0.05237707868218422, 0.006778811104595661, -0.015220544300973415, 0.03737783059477806, -0.04731619730591774, -0.06162003055214882, 0.005360250361263752, 0.01224837638437748, -0.01140184048563242, 0.02003636211156845, -0.033335741609334946, -0.0019893592689186335, -0.008825796656310558, -0.003293725661933422, -0.0013105151010677218, 0.00875312089920044, 0.017434390261769295, 0.0121623445302248, 0.0047341445460915565, -0.010897580534219742, 0.007984630763530731, 0.02361471951007843, -0.010833858512341976, 0.013770160265266895, -0.06833774596452713, 0.0062818885780870914, 0.02039441280066967, 0.006060757674276829, -0.033376313745975494, 0.02722937799990177, -0.005264865234494209, 0.008555097505450249, 0.008133714087307453, -0.03021346405148506, -0.017336927354335785, -0.02195621468126774, -0.026299459859728813, -0.01139180175960064, -0.008677253499627113, 0.013645232655107975, 0.008603083901107311, 0.030891120433807373, 0.045469123870134354, 0.0075170379132032394, 0.022196173667907715, -0.05827442556619644, -0.011958032846450806, -0.0026567638851702213, 0.015640974044799805, -0.015341738238930702, 0.03440069779753685, -0.010113522410392761, 0.04984157532453537, -0.006914201192557812, 0.010989715345203876, 0.05840268358588219, 0.05119885876774788, -0.056928664445877075, 0.027825603261590004, 0.02737792208790779, -0.019582482054829597, 0.0343557633459568, 0.016152944415807724, -0.023130035027861595, 0.04509370028972626, -0.046007513999938965, -0.008306068368256092, 0.057495664805173874, -0.007577476557344198, -0.007017960771918297, -0.014815487898886204, 0.011351821944117546, -0.03238799422979355, 0.0071939569897949696, 0.011946565471589565, -0.03647788614034653, 0.06547445058822632, 0.011556261219084263, 0.017324769869446754, -0.057937998324632645, 0.0037791149225085974, 0.008463443256914616, -0.0027219566982239485, 0.05946189910173416, -0.06727500259876251, 0.011858390644192696, -0.012857845984399319, -0.03322870656847954, 0.034742869436740875, -0.036783427000045776, -0.049922239035367966, 0.0035871006548404694, -0.029951991513371468, -0.0030770988669246435, -0.005730734206736088, -0.02545144595205784, 0.022518353536725044, -0.003087174380198121, 0.007970686070621014, 0.016267860308289528, -0.037697918713092804, 0.05225416272878647, 0.006791961379349232, 0.010177059099078178, 0.0872085690498352, -0.0018162860069423914, -0.011317167431116104, -0.02112557739019394, -0.0027783606201410294, -0.0790502279996872, 0.03666933625936508, -0.029240889474749565, 0.01277925819158554, 0.024668244644999504, 0.005833604373037815, -0.017004815861582756, 0.0038160549011081457, 0.013345630839467049, 0.026610735803842545, 0.026851657778024673, 0.05176872760057449, -0.007413119543343782, 0.004679047968238592, -0.01442041713744402, 0.04441524296998978, -0.017012521624565125, 0.013110747560858727, -0.03428388759493828, -0.004421287681907415, -0.014503713697195053, -0.043713707476854324, 0.03721722960472107, 0.010881297290325165, -0.012720867991447449, 0.007701918017119169, 0.03620610386133194, 0.038413915783166885, 0.036267027258872986, 0.012039216235280037, 0.031223047524690628, 0.04485929757356644, -0.03780778869986534, 0.011795186437666416, 0.023931240662932396, 0.04557693004608154, 0.0006872127414681017, -0.013288353569805622, 0.02440221607685089, -0.03494465723633766, -0.05633007362484932, -0.0513862743973732, -0.028861630707979202, 0.023593680933117867, -0.032670628279447556, 0.03311978653073311, 0.04945177957415581, 0.012145107612013817, -0.04455995932221413, -0.03544451668858528, 0.010368620045483112, -0.035958968102931976, -0.01657157763838768, 0.045379724353551865, -0.035479746758937836, 0.017084915190935135, -0.00012126682850066572, -0.04534990340471268, 0.039574310183525085, 0.06871147453784943, -0.03254113718867302, -0.010667138732969761, 0.010540755465626717, 0.03672259673476219, -0.006377430632710457, -0.027922190725803375, -0.022915532812476158, -0.016545986756682396, -0.022358320653438568, 0.07617999613285065, -0.01274796761572361, -0.0006211173022165895, 0.054115910083055496, 0.02603990025818348, 0.027354715391993523, 0.05542144551873207, -0.01163350697606802, -0.005953122861683369, 0.03485507518053055, 0.015604517422616482, -0.026257364079356194, -0.03425223380327225, 0.00005092641004011966, 0.058156222105026245, 0.026205487549304962, 0.06135934591293335, 0.04284614697098732, 0.017041156068444252, 0.02583429589867592, 0.031077049672603607, -0.005659144371747971, 0.037287019193172455, -0.010379056446254253, -0.0014339943882077932, 0.022905243560671806, 0.001976798987016082, -0.01747521385550499, 0.03291136771440506, -0.023254871368408203, 0.0016710871132090688, -0.005881159100681543, 0.02782423235476017, 0.04221852123737335, 0.0669703483581543, 0.04793265461921692, 0.04643074423074722, -0.01332671009004116, 0.014363291673362255, 0.04688169062137604, 0.08215758949518204, 0.003549981862306595, -0.017530322074890137, -0.014823127537965775, 0.018202168866991997, -0.04425008222460747, -0.001716779195703566, 0.05654815211892128, 0.012552764266729355, -0.00030312425224110484, 0.015630923211574554, 0.02091989666223526, -0.03032512031495571, -0.04098759591579437, -0.05507949739694595, -0.03621494397521019, -0.04759950935840607, -0.0456673763692379, 0.03561949357390404, 0.04243505746126175, -0.022983703762292862, 0.01717718318104744, -0.0005867923609912395, -0.002741887466982007, -0.013468514196574688, -0.02136574499309063, 0.05188165232539177, 0.02599404938519001, 0.0739346593618393, -0.061888668686151505, 0.03240232169628143, -0.010201330296695232, 0.036541473120450974, -0.015782207250595093, -0.02099171280860901, 0.007883921265602112, 0.008207284845411777, 0.029999179765582085, -0.014363055117428303, -0.015258630737662315, -0.009363435208797455, -0.02690982073545456, -0.06330913305282593, 0.01818017102777958, 0.008216203190386295, 0.014390496537089348, 0.0013223104178905487, -0.026268452405929565, 0.05339314788579941, 0.04687170684337616, 0.009692752733826637, 0.03627116605639458, 0.006531244609504938, -0.017133869230747223, 0.020821455866098404, 0.014090185984969139, 0.011831801384687424, -0.04538434371352196, 0.04471801966428757, 0.02522040158510208, 0.030339259654283524, -0.04441287741065025, -0.017749935388565063, -0.03333289921283722, 0.023406829684972763, 0.0016845412319526076, -0.010377759113907814, -0.0648391842842102, 0.02903931960463524, 0.011523484252393246, -0.09045086801052094, 0.034521233290433884, -0.03540242463350296, -0.03195590525865555, -0.007005108520388603, -0.02791515737771988, 0.03523595631122589, 0.018790634348988533, 0.02947583980858326, 0.004057683516293764, -0.031880222260951996, -0.002519564237445593, 0.009294839575886726, 0.046734292060136795, -0.003724107053130865, 0.011233801022171974, 0.022106293588876724, -0.006486336700618267, 0.045627474784851074, 0.016845690086483955, -0.02655494399368763, -0.004091215785592794, 0.025990433990955353, 0.0028774391394108534, -0.007888607680797577, 0.0461764894425869, 0.014627252705395222, 0.00013334494724404067, 0.0301132183521986, -0.04692875221371651, -0.006137827876955271, 0.006609629839658737, 0.015976006165146828, 0.03363824635744095, -0.020980075001716614, -0.02518065646290779, -0.030482420697808266, -0.08105906844139099, -0.07408151030540466, 0.05344313755631447, -0.012153515592217445, 0.026140958070755005, -0.02964315004646778, 0.053294356912374496, -0.002117833122611046, -0.02210484817624092, 0.03745405748486519, -0.05433932691812515, -0.01140772644430399, 0.02760755456984043, -0.00793798454105854, 0.04454609379172325, -0.015310329385101795, 0.01763422228395939, -0.023949699476361275, 0.010212905704975128, 0.04632551968097687, -0.014179580844938755, 0.04306285083293915, -0.033594533801078796, -0.02155946008861065, -0.00848998874425888, -0.024331530556082726, 0.018931444734334946, -0.020098336040973663, 0.03635389730334282, -0.013079335913062096, -0.046883076429367065, -0.026018822565674782, 0.018897633999586105, 0.033842284232378006, 0.044525664299726486, 0.010214647278189659, 0.03105947934091091, 0.012339319102466106, 0.026451321318745613, 0.039917316287755966, 0.0014142916770651937, 0.016920432448387146, -0.051847800612449646, 0.0119670070707798, 0.032212819904088974, -0.033421218395233154, -0.0041219452396035194, -0.03235442936420441, -0.018223753198981285, 0.02333100512623787, 0.005563187412917614, -0.02451612614095211, -0.043649423867464066, 0.05563899502158165, -0.014499655924737453, 0.026384683325886726, -0.028921008110046387, -0.02491755783557892, -0.006545688956975937, 0.03880918771028519, 0.006147600244730711, -0.051372334361076355, 0.009994007647037506, -0.05026543512940407, 0.056527089327573776, 0.08380229026079178, -0.0038149277679622173, -0.04354870319366455, -0.0007803128683008254, -0.05528934672474861, -0.008267431519925594, 0.007894772104918957, 0.03197794780135155, 0.007153871934860945, 0.022030310705304146, -0.030121933668851852, 0.015163869597017765, 0.03675277531147003, 0.005512007977813482, 0.0027984005864709616, 0.018561597913503647, 0.03414757177233696, 0.01198591012507677, 0.04513530060648918, -0.0233392883092165, -0.03170992434024811, -0.0001414522557752207, -0.07702130079269409, -0.0036825109273195267, 0.015329604037106037, -0.01403603795915842, -0.0008737550815567374, -0.006449562497437, 0.04530811309814453, 0.06197015568614006, 0.012686939910054207, 0.01750751957297325, -0.032460011541843414, 0.03224138170480728, -0.05419163033366203, -0.04618130251765251, 0.03768950700759888, 0.01742829941213131, -0.035660333931446075, -0.004260037560015917, 0.026872145012021065, -0.027984393760561943, 0.0027916550170630217, 0.025368306785821915, -0.053257256746292114, 0.04187483713030815, 0.0006794573273509741, 0.03262701630592346, -0.0015095986891537905, -0.029968654736876488, 0.006577807944267988, -0.06647810339927673, 0.0372065044939518, 0.008466479368507862, 0.009687245823442936, -0.05047765374183655, -0.03104618936777115, -0.02649640291929245, -0.0035497851204127073, -0.020437929779291153, 0.004904801491647959, 0.05464993044734001, -0.01796259731054306, -0.0057591283693909645, -0.009008781984448433, -0.0016227090964093804, -0.004195375833660364, -0.022653527557849884, 0.010510594584047794, -0.015724966302514076, 0.00801512598991394, 0.020067986100912094, -0.020626939833164215, -0.03988854959607124, 0.005768001079559326, 0.03933453932404518, -0.02328724041581154, -0.07932459563016891, -0.0008094043005257845, -0.009210917167365551, 0.0038416096940636635, -0.037536829710006714, -0.004176054149866104, -0.017975106835365295, 0.014724958688020706, 0.014492425136268139, 0.005546840839087963, 0.021323280408978462, -0.010005511343479156, -0.006696460768580437, 0.025251807644963264, 0.03796222433447838, -0.04109707847237587, -0.029814237728714943, 0.04697684943675995, -0.027762727811932564, 0.02028399333357811, -0.02865137904882431, -0.003453298471868038, -0.04441103711724281, -0.041293803602457047, -0.0025752682704478502, -0.0276485662907362, -0.017937149852514267, -0.015238192863762379, -0.022425400093197823, -0.022117141634225845, 0.03910699486732483, -0.013583650812506676, 0.0029759269673377275, -0.020308906212449074, -0.04613504931330681, -0.011881878599524498, -0.02314509078860283, -0.008223118260502815, -0.017377564683556557, 0.0003419997519813478, -0.00636637769639492, 0.02659253031015396, -0.003986448049545288, 0.04292657971382141, -0.02253090590238571, 0.016171542927622795, 0.010624365881085396, -0.018691081553697586, -0.037594929337501526, -0.054488103836774826, -0.001305140438489616, -0.0011799923377111554, 0.004273608792573214, 0.03291502967476845, -0.031168263405561447, 0.05524041876196861, -0.052557021379470825, -0.01288294605910778, -0.012040230445563793, -0.03226073831319809, -0.004367796704173088, -0.018970927223563194, 0.0574958510696888, -0.023778049275279045, -0.0147927887737751, -0.01804829016327858, 0.04559817537665367, 0.07290071994066238, -0.0024115974083542824, -0.03452049195766449, -0.03435725346207619, -0.01647648587822914, -0.07080139964818954, 0.023371165618300438, -0.022188100963830948, -0.014562174677848816, -0.03133004531264305, -0.0331910215318203, 0.028788918629288673, -0.013835633173584938, 0.02166667766869068, 0.025365453213453293, -0.006986125372350216, 0.006025795824825764, -0.036126285791397095, -0.0002271801931783557, 0.06467690318822861, -0.011322424747049809, -0.026682380586862564, -0.009100323542952538, -0.031149141490459442, 0.006805595476180315, -0.03173726424574852, 0.0013293244410306215, -0.07000625133514404, -0.015118097886443138, 0.06329672038555145, -0.0393320769071579, 0.041068319231271744, 0.014493602328002453, -0.05999523401260376, -0.038526665419340134, 0.05070096254348755, -0.016351548954844475, -0.01530290674418211, 0.03593252971768379, 0.00503021152690053, -0.03308273106813431, -0.022087540477514267, 0.036997776478528976, -0.025302743539214134, -0.00656292587518692, 0.08336243033409119, -0.02709781751036644, -0.06778296828269958, 0.01917002908885479, 0.0266812052577734, -0.06387704610824585, -0.027704328298568726, -0.00866085384041071, 0.01607104018330574, -0.024095093831419945, -0.03051530010998249, -0.025564830750226974, -0.010765787214040756, -0.0008887602598406374, 0.038136597722768784, 0.020252740010619164, 0.01744665391743183, 0.053040631115436554, -0.01109419483691454, 0.048866577446460724, -0.039228327572345734, 0.035399243235588074, 0.007751905359327793, -0.00014967114839237183, -0.0409296415746212, -0.021147213876247406, -0.04923436418175697, -0.0039964416064321995, 0.01113978587090969, 0.044442255049943924, -0.04247989133000374, -0.012843598611652851, 0.03801986202597618, -0.015260361135005951, 0.03213439881801605, 0.011374392546713352, 0.012263120152056217, 0.029761744663119316, 0.00629824586212635, -0.05146855115890503, -0.04416034743189812, 0.009360555559396744, -0.011494150385260582, 0.041358474642038345, -0.0689193457365036, -0.0088119488209486, 0.01213662140071392, -0.04066814109683037, -0.0013791322708129883, -0.058711472898721695, -0.09033746272325516, -0.014101065695285797, -0.049928780645132065, 0.0077971722930669785, -0.007456732448190451, 0.005017100367695093, 0.02796543389558792, 0.0169682539999485, -0.037595558911561966, 0.004353953059762716, 0.012600419111549854, -0.04397445544600487, 0.00561131164431572, -0.03140496462583542, 0.019013548269867897, -0.02281738817691803, -0.04179269075393677, -0.04362183436751366, 0.0064399512484669685, -0.020285144448280334, -0.008447892963886261, -0.023983677849173546, -0.010242661461234093, -0.005876079201698303, 0.04974986985325813, 0.021448472514748573, 0.019084235653281212, -0.0055198632180690765, -0.027269558981060982, 0.020252970978617668, 0.02284303493797779, -0.00030280224746093154, 0.025168852880597115, 0.01986061781644821, -0.05135408043861389, 0.029113484546542168, 0.018443327397108078, -0.004417043644934893, -0.023793965578079224, -0.0013106776168569922, -0.017650747671723366, -0.01304740458726883, -0.020609954372048378, -0.013206982985138893, -0.04384507238864899, -0.04232463240623474, 0.024040358141064644, 0.0012861392460763454, 0.0067978911101818085, 0.028371397405862808, 0.011215686798095703, -0.016635842621326447, 0.046593938022851944, -0.030656324699521065, 0.029936401173472404, -0.00022139000066090375, 0.0007630949839949608, 0.03340508043766022, 0.006224309094250202, 0.03331975266337395, 0.009623152203857899, 0.033512506633996964, -0.015432565473020077, -0.01673034578561783, -0.007488755043596029, 0.0018506221240386367, 0.01902843452990055, -0.00743264751508832, -0.034788839519023895, -0.03301553428173065, -0.014410169795155525, 0.017557775601744652, 0.04311796650290489, 0.038033466786146164, -0.005870080552995205, 0.008959202095866203, 0.00038771278923377395, -0.05985520780086517, -0.0024210878182202578, -0.046637486666440964, -0.04634121432900429, 0.03612862899899483, -0.0186854787170887, 0.0009826874593272805, -0.0263604074716568, -0.020700428634881973, -0.0037216865457594395, -0.019727732986211777, 0.001141584594734013, -0.037797704339027405, 0.038160599768161774, 0.015229679644107819, 0.04713940992951393, 0.016951236873865128, -0.020561562851071358, -0.003355768509209156, 0.05306962504982948, -0.03871817886829376, -0.04018966108560562, -0.01920519769191742, 0.025944583117961884, 0.004192346706986427, 0.012744957581162453, 0.01806102879345417, 0.01875731348991394, -0.022552521899342537, 0.0062197120860219, -0.013846240006387234, 0.02323576994240284, 0.011002383194863796, 0.032839689403772354, -0.028846368193626404, 0.01276419684290886, -0.0233254786580801, 0.03431306034326553, 0.007095244713127613, -0.03243585303425789, -0.04608515650033951, 0.06531649827957153, 0.053115446120500565, 0.00869964063167572, 0.062037888914346695, 0.050266873091459274, 0.021702390164136887, -0.024953415617346764, 0.029265165328979492, -0.007969362661242485, 0.02728983759880066, 0.04579411819577217, 0.013044862076640129, -0.009656082838773727, 0.04002168029546738, 0.055771730840206146, -0.023944973945617676, 0.0007056744652800262, 0.05347708240151405, 0.014074313454329967, -0.01861187256872654, 0.0011031196918338537, -0.007935557514429092, 0.02974320575594902, 0.027822546660900116, -0.016949567943811417, -0.0031599905341863632, -0.011135297827422619, 0.003979249857366085, -0.028586843982338905, -0.04311706870794296, 0.05309328809380531, -0.040327414870262146, 0.010139821097254753, 0.006480860523879528, -0.0181351900100708, -0.029303371906280518, 0.04113464057445526, -0.009304218925535679, 0.02623303420841694, 0.02693057805299759, 0.014868462458252907, 0.002073151059448719, 0.05192571505904198, 0.011743527837097645, 0.006707454565912485, -0.010144395753741264, -0.015129998326301575, 0.0028461457695811987, -0.023205578327178955, -0.007636984344571829, 0.015268865041434765, -0.03741148114204407, 0.02913452498614788, 0.012817715294659138, -0.015866830945014954, 0.0629238709807396, -0.03944920375943184, -0.016954058781266212, -0.01921577751636505, 0.044696833938360214, -0.031221460551023483, -0.012291539460420609, 0.034720905125141144, -0.00303781614638865, -0.010442625731229782, 0.03707350417971611, 0.02226119115948677, 0.019638806581497192, -0.006668834015727043, 0.0616065077483654, 0.012422575615346432, 0.021164648234844208, 0.040055181831121445, 0.008053065277636051, -0.023196371272206306, -0.0022982978262007236, -0.014670565724372864, -0.04931850731372833, -0.024057714268565178, -0.04750936105847359, 0.003927214536815882, -0.009609056636691093, 0.0008781679207459092, -0.018234988674521446, 0.05418851226568222, -0.029068125411868095, -0.06820834428071976, 0.015284211374819279, 0.025829162448644638, -0.03841260075569153, 0.01838848367333412, -0.021742891520261765, 0.03443526104092598, -0.008326773531734943, -0.02461598627269268, -0.03177192434668541, -0.05822377651929855, 0.004502477124333382, -0.011562371626496315, 0.04241551458835602, -0.015523884445428848, -0.017381250858306885, -0.06605831533670425, -0.03488306701183319, -0.04119730368256569, -0.011886985041201115, -0.03001258336007595, -0.05391363427042961, 0.036265477538108826, 0.028919637203216553, -0.018319526687264442, 0.010045835748314857, -0.03128918632864952, 0.018627600744366646, 0.004374684300273657, 0.061370886862277985, 0.016231071203947067, 0.0272320955991745, 0.025374338030815125, -0.010887346230447292, 0.035013481974601746, -0.03505021333694458, 0.04539203271269798, -0.04959576949477196, 0.00014813721645623446, -0.01819060742855072, 0.042347945272922516, -0.006843737326562405, -0.0614268034696579, 0.036733370274305344, 0.012688159942626953, 0.0072600035928189754, -0.040488991886377335, -0.07890585064888, -0.011594357900321484, -0.02120278961956501, -0.0001455258170608431, -0.045036330819129944, 0.03289758414030075, -0.012369392439723015, 0.002417775569483638, -0.049123577773571014, -0.06525595486164093, 0.15385164320468903, 0.055601708590984344, 0.03463617339730263, 0.001453574514016509, 0.01947210542857647, 0.04203096777200699, 0.01867518201470375, -0.02563764713704586, 0.00538242980837822, -0.03928520530462265, -0.003160058753564954, -0.00677872309461236, 0.05510189011693001, 0.021767068654298782, 0.04805177077651024, 0.038743238896131516, -0.014913092367351055, 0.02590649016201496, 0.036856599152088165, -0.018647491931915283, -0.060383494943380356, 0.010843921452760696, -0.00427220156416297, 0.015229608863592148, -0.016280969604849815, 0.01700407639145851, 0.03905106335878372, -0.017684420570731163, -0.02394365333020687, -0.038381606340408325, 0.03368450701236725, -0.03841036185622215, 0.02134457230567932, -0.01714400388300419, -0.02339138649404049, 0.030726110562682152, 0.020112594589591026, -0.014846292324364185, 0.022598156705498695, 0.02044198103249073, -0.03506346046924591, -0.0024262582883238792, 0.052381012588739395, -0.030347639694809914, -0.010725731961429119, -0.007245148066431284, -0.03875092789530754, 0.000038901660445844755, -0.00008067414455581456, -0.03664277121424675, 0.07182613015174866, -0.004890576004981995, 0.006975593511015177, -0.01888526976108551, -0.01478886790573597, 0.0017046580323949456, -0.005394732113927603, -0.014036961831152439, 0.0054377056658267975, -0.029168637469410896, 0.012418665923178196, -0.01447141170501709, -0.03600680083036423, -0.00200180453248322, -0.04238726198673248, -0.02109229750931263, 0.025800297036767006, -0.02681616134941578, -0.0034894589334726334, -0.019725404679775238, -0.011554812081158161, -0.004527934826910496, -0.03144502639770508, -0.019404549151659012, 0.0762118324637413, 0.009737917222082615, -0.03171297907829285, 0.04691892862319946, 0.02184922993183136, -0.001980100991204381, -0.018174439668655396, -0.039426539093256, -0.004677493590861559, -0.015745021402835846, 0.003555292496457696, 0.025835076346993446, -0.002740575233474374, -0.027519362047314644, 0.0015365340514108539, 0.038263775408267975, 0.018830085173249245, 0.0058287810534238815, -0.023710506036877632, 0.017184648662805557, -0.012532107532024384 ]
Sadly, David Cameron isn't about to don his trainers, pop on his Lycra and start an actual boot camp (well, not to our knowledge) but DC and his cabinet have recently decided that they have to do something about our ever-expanding waistlines here in the UK. The government's new programme will offer adults who are at risk of type-2 diabetes a new 'healthy lifestyle' programme, supported by the NHS. The national programme is launching this year, and its aim is to help people to avoid developing the disease by focusing upon prevention rather than cure. The so-called government 'boot camp' will consist of 13 sessions focusing on exercise, education and lifestyle changes, following a referral from a GP for pre-diabetic patients. According to recent online polls, there are 2.6 million people in England with type-2 diabetes, and surveys tell us there are over 200,000 new diagnoses in the UK every year. Although there are other factors, being overweight and inactive are the most significant risk factors for type-2 diabetes – a serious disease which affects many major organs, including the heart, blood vessels, nerves, eyes and kidneys. NHS England's chief executive, Simon Stevens, said the new government-led scheme would reduce hospital admissions, prevent strokes and other complications of diabetes, such as amputations. Following a recent survey by Public Health England, it was revealed that 61.7% of adults in the UK were overweight or obese (65.3% of men and 58.1% of women). Polls on our nation's weight showed a rapid increase in obesity over the last 10 years in men, women and children. So, why are we becoming increasingly over-weight as a nation? Experts blame desk jobs with long hours, fast food and hidden salts and sugars in our food, as well as less emphasis on activity and exercise in our busy modern lives. According to the Chief medical Officer, adults should aim to be active daily. Over a week, activity should add up to at least 150 minutes (2½ hours) of moderate intensity activity in bouts of 10 minutes or more – which amounts to approx. 30 minutes per day at least 5 days a week. According to recent online surveys, 63.3% of UK adults do not meet these recommended amounts of activity. Our nation's health is a serious concern. Type-2 diabetes alone costs the NHS over £10bn per year. Our poor choices of food and lack of exercise are crippling both the NHS and us. So, perhaps it is essential that the government are getting involved in what has been dubbed our 'health timebomb'. Who knows – maybe we will see the Prime Minister in Lycra after all. At Opinion Outpost, we love opinions. In fact, we reward our members with cash or vouchers when they share their views in paid online surveys. Got things on your mind? What do you think about the government getting involved in our health? Join the discussion on our Facebook page and join us to take part in paid online surveys in your spare time.
[ 0.026942577213048935, -0.007226681802421808, -0.026768485084176064, 0.01709655672311783, -0.02728055603802204, -0.007580871693789959, 0.01925460807979107, 0.0381259024143219, -0.004352067597210407, 0.014876695349812508, 0.03187580406665802, -0.021435070782899857, 0.051205966621637344, -0.024684827774763107, -0.020349174737930298, 0.014733334071934223, -0.0487227626144886, -0.024542978033423424, -0.017179887741804123, 0.025818895548582077, -0.0035527818836271763, 0.025399401783943176, -0.0565001517534256, -0.04217751696705818, -0.025204703211784363, 0.026411501690745354, 0.018743988126516342, -0.027965789660811424, 0.04798687621951103, 0.036110278218984604, -0.016530727967619896, -0.0416453555226326, 0.04449086636304855, -0.039188072085380554, -0.028769776225090027, -0.017003456130623817, 0.019774915650486946, -0.032496098428964615, -0.026671437546610832, -0.018165241926908493, 0.0034764648880809546, -0.052271295338869095, 0.020555518567562103, -0.027288926765322685, -0.035641737282276154, -0.016672329977154732, 0.001418215106241405, -0.025905266404151917, 0.01235763169825077, -0.016212986782193184, -0.007608070503920317, 0.025602348148822784, -0.0023831853177398443, -0.02166299894452095, -0.0011313605355098844, 0.05198671668767929, -0.006685114931315184, 0.011544751934707165, -0.037436340004205704, 0.031887393444776535, -0.024550918489694595, 0.039022933691740036, 0.041454777121543884, -0.06976363807916641, 0.035785023123025894, 0.0077521358616650105, -0.02190377376973629, -0.01543981209397316, 0.014760902151465416, -0.0009220929932780564, 0.010431784205138683, -0.007519308011978865, -0.016533199697732925, -0.016917437314987183, 0.01997576840221882, 0.0013045594096183777, -0.003592819208279252, -0.008041834458708763, -0.013041410595178604, 0.008999349549412727, 0.0377904437482357, 0.06779826432466507, -0.011126083321869373, 0.0015818714164197445, -0.07089123874902725, 0.016601230949163437, 0.02079956606030464, 0.0388304628431797, -0.005211442708969116, -0.012452793307602406, 0.008429517969489098, 0.04565758630633354, -0.013880962505936623, 0.0024219986516982317, 0.04117228835821152, 0.03331466391682625, -0.04982125014066696, 0.018679136410355568, 0.030888179317116737, -0.003905485849827528, 0.03649864345788956, 0.028301697224378586, 0.012751948088407516, 0.026805076748132706, -0.03498503193259239, -0.005852346308529377, 0.018757810816168785, -0.05740561708807945, -0.021332453936338425, 0.001093750586733222, 0.0030488281045109034, -0.019550083205103874, 0.02894023060798645, -0.007783099543303251, 0.016463203355669975, 0.04717772826552391, 0.01655900478363037, 0.045185431838035583, -0.043160904198884964, 0.04913391172885895, 0.006056774407625198, 0.008594181388616562, 0.029530389234423637, -0.016340648755431175, 0.025778954848647118, -0.016744157299399376, -0.0013993906322866678, 0.03508680686354637, -0.04866878688335419, -0.016899799928069115, 0.018502293154597282, -0.04294772073626518, -0.015764307230710983, 0.004819581285119057, -0.03090602159500122, 0.014620145782828331, 0.030898423865437508, 0.060131143778562546, 0.008983204141259193, -0.03877337649464607, 0.03314775228500366, 0.05574354901909828, -0.007194066420197487, 0.07624645531177521, -0.0003183689550496638, 0.010149894282221794, -0.028736969456076622, -0.025629574432969093, -0.05220486968755722, 0.027051540091633797, -0.0024646036326885223, 0.04088488221168518, -0.008907299488782883, -0.004585466347634792, -0.02797846496105194, 0.0106181176379323, -0.012042506597936153, 0.055983614176511765, 0.03010406345129013, 0.03543642535805702, -0.015156264416873455, 0.004908016417175531, -0.029734043404459953, 0.054295409470796585, -0.020917339250445366, 0.031197572126984596, -0.03013656847178936, 0.004565683659166098, 0.04277005046606064, -0.017573805525898933, 0.0022241061087697744, 0.002145350445061922, -0.044903457164764404, 0.009495548903942108, 0.01744358241558075, 0.0815744400024414, 0.06976848840713501, -0.023973187431693077, 0.06322494149208069, 0.031433720141649246, -0.06310340762138367, -0.017445599660277367, -0.020963985472917557, 0.07770252972841263, 0.002151055494323373, -0.008724020794034004, 0.006007583811879158, -0.032390158623456955, -0.034115515649318695, -0.02205640636384487, -0.007191250566393137, 0.0164144616574049, -0.02791418880224228, 0.04447370022535324, 0.03242842108011246, -0.00958327203989029, -0.024459464475512505, 0.014864686876535416, -0.025989703834056854, -0.038595572113990784, -0.03615753725171089, 0.05470248684287071, -0.01958458684384823, 0.058940861374139786, 0.004744548350572586, 0.008621642366051674, 0.004146627150475979, 0.05338701605796814, -0.02800070308148861, 0.00715987291187048, 0.018113572150468826, 0.03157539665699005, 0.00358782522380352, -0.011516355909407139, 0.007319186814129353, 0.01095897238701582, -0.03602016344666481, 0.03563818708062172, 0.0008903887355700135, 0.0007722536684013903, -0.005494958255439997, -0.007094175089150667, 0.0540233850479126, 0.045679859817028046, 0.016914496198296547, 0.028194116428494453, 0.024411387741565704, 0.07084771245718002, -0.03456678241491318, 0.004848412238061428, -0.023471832275390625, 0.05001625791192055, 0.033356182277202606, 0.08744946122169495, 0.04171409830451012, 0.021463261917233467, 0.03862250596284866, 0.060001228004693985, -0.00899563543498516, 0.05373094230890274, 0.003268821630626917, 0.04801907762885094, 0.06085387244820595, 0.019046194851398468, -0.022627174854278564, 0.010086740367114544, -0.030731230974197388, 0.00800150353461504, -0.0036291389260441065, 0.01668434590101242, 0.004923120606690645, 0.037794079631567, 0.026379019021987915, 0.023180166259407997, -0.022669866681098938, 0.03202090039849281, 0.062154851853847504, 0.044048476964235306, -0.040440697222948074, -0.024903323501348495, 0.01448807492852211, 0.023846395313739777, -0.008896782994270325, 0.004415379371494055, 0.032615870237350464, 0.030971990898251534, -0.005369090475142002, 0.029492462053894997, 0.007726266980171204, -0.004609973635524511, -0.044957004487514496, -0.04747345298528671, -0.08139336854219437, -0.057263389229774475, -0.03778873383998871, 0.04339345172047615, 0.01761041022837162, -0.05151381716132164, 0.027998993173241615, -0.034545037895441055, -0.014970959164202213, -0.034023597836494446, -0.007744818460196257, 0.047642793506383896, 0.02004871517419815, 0.005863948259502649, -0.03191720321774483, 0.030070768669247627, -0.016832999885082245, 0.003723367815837264, -0.023972565308213234, -0.05498466268181801, 0.003821565303951502, 0.017461400479078293, 0.053778234869241714, -0.022485438734292984, 0.005564909894019365, 0.014482048340141773, -0.05988236516714096, -0.032221537083387375, 0.0180351585149765, 0.004385017324239016, 0.012259186245501041, 0.022992242127656937, -0.027919888496398926, 0.03540549799799919, 0.025526411831378937, -0.02649656869471073, 0.032416705042123795, 0.02354424074292183, -0.02216329053044319, 0.03690115362405777, 0.016189932823181152, 0.012982986867427826, -0.0682840421795845, 0.007874056696891785, 0.060325026512145996, -0.015341587364673615, -0.022804144769906998, -0.028000082820653915, -0.038937751203775406, 0.024889543652534485, 0.010659595020115376, -0.006473120301961899, -0.038124971091747284, 0.016994278877973557, 0.005682779476046562, -0.06838470697402954, 0.020323194563388824, -0.02571452222764492, -0.025226179510354996, -0.06102941185235977, -0.04852139204740524, -0.005333911627531052, 0.03597095236182213, 0.03734864294528961, 0.015451518818736076, 0.0018430855125188828, 0.017120379954576492, 0.03180928900837898, 0.02647174894809723, -0.005671385210007429, 0.031035851687192917, 0.039387840777635574, -0.026578659191727638, 0.029621032997965813, 0.0005879049422219396, -0.033057499676942825, 0.00672950642183423, 0.01100175641477108, -0.0004063269298058003, 0.018564239144325256, 0.051310595124959946, -0.00023432688612956554, 0.010474888607859612, 0.04261385276913643, -0.015005700290203094, -0.003233502386137843, 0.01996789686381817, -0.009669311344623566, 0.03129837289452553, -0.0050075361505150795, 0.018341556191444397, 0.01430817972868681, -0.047077763825654984, -0.05274210125207901, 0.0289438646286726, 0.01947725936770439, 0.05928469076752663, -0.02329280599951744, 0.05327002704143524, -0.014625326730310917, -0.034205589443445206, 0.03835589811205864, -0.04393177852034569, 0.010252241976559162, 0.062142468988895416, 0.012294284999370575, 0.06104090437293053, -0.08670485019683838, 0.020496195182204247, -0.0295896977186203, -0.0004013415891677141, 0.030180634930729866, -0.026361247524619102, 0.017019666731357574, -0.03156926482915878, -0.006607066839933395, -0.005445810034871101, 0.0016414058627560735, -0.022920357063412666, 0.023868918418884277, 0.011477015912532806, -0.005313660018146038, -0.03390409052371979, -0.052652597427368164, 0.012436287477612495, 0.043635670095682144, 0.04756498336791992, -0.003091712249442935, 0.053922563791275024, -0.012243966571986675, -0.016087817028164864, 0.040251076221466064, 0.013362358324229717, 0.0029406812973320484, -0.0566704198718071, 0.014513648115098476, 0.026464363560080528, -0.059761893004179, -0.028607672080397606, -0.016708649694919586, -0.02090161107480526, 0.026008203625679016, -0.0023145368322730064, -0.034271400421857834, -0.04130639135837555, 0.015261633321642876, -0.02280331775546074, 0.006999513134360313, -0.03571030870079994, -0.008913775905966759, -0.03430457413196564, 0.022060154005885124, 0.019283654168248177, -0.03525466099381447, 0.002675930503755808, -0.035155754536390305, 0.051733143627643585, 0.017845705151557922, 0.0001323907490586862, -0.05993425101041794, -0.03726789727807045, -0.015010885894298553, -0.04876575991511345, 0.01716684363782406, -0.0024566359352320433, -0.011654901318252087, 0.01680963672697544, -0.045593664050102234, 0.029546111822128296, 0.012001174502074718, 0.011579738929867744, -0.002495221560820937, -0.01850908249616623, 0.033054713159799576, 0.026869088411331177, 0.058940038084983826, -0.007958895526826382, -0.03220426291227341, 0.04419117420911789, -0.04625856503844261, 0.010616171173751354, -0.04737536609172821, -0.04466485604643822, -0.03394249081611633, 0.004102514125406742, 0.04255533963441849, 0.003511343849822879, -0.01868315599858761, -0.008231125771999359, -0.02353604882955551, 0.028511367738246918, -0.05318034812808037, -0.039518170058727264, 0.055121324956417084, -0.062257930636405945, -0.03693279251456261, 0.05505731701850891, 0.011923137120902538, -0.024573666974902153, -0.009070991538465023, 0.025731967762112617, -0.04819336161017418, 0.06363490968942642, -0.050131604075431824, -0.005608010105788708, -0.03749094158411026, -0.02525744028389454, -0.016050195321440697, -0.03289065882563591, -0.0019013371784240007, -0.011885439977049828, -0.008320474065840244, -0.038072943687438965, -0.038119375705718994, -0.029208974912762642, 0.010581474751234055, 0.001849804655648768, 0.02233710326254368, 0.029891913756728172, 0.015445634722709656, -0.041508790105581284, -0.030285263434052467, 0.019056489691138268, 0.005729100201278925, -0.012060750275850296, -0.02075069211423397, 0.006913968827575445, 0.013028174638748169, 0.022673966363072395, -0.012389324605464935, -0.04980336129665375, -0.01274519506841898, 0.021640721708536148, -0.035125765949487686, -0.046740103513002396, 0.007617286406457424, 0.015467816963791847, 0.002383703598752618, -0.03304426372051239, -0.00015460657596122473, -0.01018561702221632, 0.012295970693230629, 0.025068460032343864, 0.02598508447408676, 0.006494442466646433, -0.015836941078305244, -0.03772205859422684, 0.02318735606968403, 0.021453367546200752, -0.0428190641105175, -0.03811931610107422, 0.016425443813204765, 0.0011525941081345081, 0.03850347548723221, 0.00030182147747837007, -0.016809606924653053, -0.04340602084994316, -0.05060188099741936, -0.01630605198442936, -0.04549732431769371, -0.006496824789792299, -0.04815365746617317, -0.04971188306808472, -0.024964505806565285, 0.03600884601473808, 0.0033302379306405783, -0.006695822812616825, -0.036025866866111755, -0.03811870515346527, 0.024214167147874832, -0.038321603089571, -0.0035506216809153557, -0.02497301995754242, -0.004720210563391447, -0.022302493453025818, 0.04867551848292351, 0.025660861283540726, 0.007077016402035952, -0.01787693426012993, 0.026609264314174652, -0.0029415420722216368, 0.02242620661854744, -0.0460096038877964, -0.05129311978816986, 0.005807140376418829, -0.01121368259191513, 0.029016798362135887, 0.03949747979640961, -0.032850414514541626, 0.05737990885972977, -0.007715611718595028, 0.011421803385019302, -0.007304157596081495, 0.0006312374607659876, 0.004771755076944828, -0.022918447852134705, 0.060278378427028656, -0.04319823160767555, 0.02582775428891182, -0.009493242017924786, 0.04391726106405258, 0.04101927578449249, 0.013298967853188515, -0.05028337612748146, 0.01423855870962143, -0.05436431244015694, -0.06489406526088715, -0.003150275209918618, -0.01135310623794794, -0.012848001904785633, -0.014149161987006664, -0.016981160268187523, 0.035465922206640244, -0.02725560963153839, 0.05062543600797653, 0.04298402741551399, -0.03600949048995972, -0.029092276468873024, -0.030652446672320366, 0.0055017611011862755, 0.020481789484620094, 0.017528869211673737, 0.0261684563010931, -0.048954710364341736, -0.009977373294532299, -0.012787217274308205, -0.05469625070691109, -0.03791866451501846, -0.05735761299729347, -0.01566428877413273, 0.0256732776761055, -0.00618016067892313, 0.0278252474963665, -0.0014691324904561043, -0.017390800639986992, -0.042580872774124146, 0.02581673674285412, -0.010585112497210503, 0.009542930871248245, 0.04217378795146942, 0.01737387664616108, -0.022579587996006012, 0.010750820860266685, 0.013582851737737656, -0.003692230209708214, -0.03825147822499275, 0.059249237179756165, -0.013758408837020397, -0.04393642023205757, 0.022358665242791176, 0.06680817157030106, -0.049120236188173294, -0.018811680376529694, 0.004786162171512842, -0.02043057046830654, -0.01777268387377262, -0.034398842602968216, -0.0059605734422802925, -0.020555749535560608, 0.0043837446719408035, 0.029242651537060738, 0.03242764621973038, -0.0043516685254871845, 0.062274012714624405, -0.01957295648753643, 0.03942391648888588, -0.03924291953444481, -0.005395838525146246, -0.015528627671301365, -0.02069556526839733, -0.03637346997857094, -0.03729351609945297, 0.030767690390348434, 0.02533767931163311, 0.000308157061226666, 0.04575221985578537, 0.00017033172480296344, -0.0019583464600145817, 0.032516419887542725, -0.0093535166233778, 0.02620546892285347, 0.014097784645855427, -0.006123082246631384, 0.024113120511174202, -0.03605149686336517, -0.026666656136512756, -0.035415735095739365, 0.008282612077891827, 0.005319742485880852, 0.04640526324510574, -0.03361529856920242, 0.007726938929408789, 0.027876438573002815, -0.013770337216556072, -0.003264395520091057, -0.04683713987469673, -0.06118331849575043, -0.04794436693191528, -0.03547877445816994, -0.012629348784685135, -0.009073513559997082, -0.005092706996947527, 0.05132244527339935, 0.02449636161327362, -0.01845453307032585, -0.01919233240187168, 0.0033214103896170855, -0.030204538255929947, -0.02285231091082096, -0.035082023590803146, 0.02648014947772026, -0.028756534680724144, -0.04392974451184273, -0.050915565341711044, -0.01335463859140873, -0.025121068581938744, 0.013920754194259644, -0.013574356213212013, 0.018200211226940155, 0.004063752479851246, 0.04557330533862114, -0.02024507336318493, 0.04222065210342407, -0.015028522349894047, -0.04678618907928467, 0.005378621630370617, 0.08295218646526337, 0.019532309845089912, 0.044000037014484406, 0.032098423689603806, -0.022595776244997978, -0.0022576870396733284, -0.009791905991733074, -0.03479129821062088, -0.05677390843629837, 0.04601588100194931, -0.004318556748330593, -0.007579536642879248, -0.053845543414354324, 0.011347796767950058, -0.028115909546613693, -0.034474581480026245, 0.04017048329114914, -0.04146857187151909, -0.006347340531647205, 0.014810611493885517, 0.012192067690193653, -0.013773327693343163, 0.07128997892141342, -0.0037069350946694613, 0.034776996821165085, 0.01599954254925251, 0.04865846037864685, -0.0028118251357227564, 0.0030040829442441463, 0.030238501727581024, 0.022008411586284637, 0.005517447367310524, -0.024114077910780907, -0.009114650078117847, 0.018615255132317543, -0.03720349073410034, 0.030174000188708305, -0.036901917308568954, -0.04333273693919182, -0.00541421165689826, 0.013295995071530342, 0.018924901261925697, 0.0405169241130352, 0.019156238064169884, -0.008162206970155239, 0.02729134075343609, -0.003528823144733906, -0.05978268384933472, -0.019093457609415054, -0.06079880893230438, -0.0214658472687006, 0.023030076175928116, -0.00984081532806158, -0.040302716195583344, -0.009124360978603363, -0.0315898098051548, 0.0032338881865143776, -0.020110532641410828, -0.010921078734099865, -0.042394526302814484, 0.03218334913253784, -0.008585470728576183, 0.010604276321828365, -0.025997987017035484, -0.021590828895568848, 0.051369596272706985, 0.016287531703710556, -0.05396243557333946, -0.03629327565431595, 0.00954468548297882, 0.03187574818730354, 0.0283068735152483, 0.001285757520236075, 0.004707944113761187, 0.020359473302960396, 0.006679019890725613, 0.006463773548603058, 0.0034755689557641745, 0.030164208263158798, -0.025157732889056206, 0.03461700305342674, 0.002686341293156147, 0.005922362674027681, -0.03622271865606308, 0.03077368438243866, -0.004685989115387201, -0.0681098997592926, -0.03293473646044731, 0.01543476153165102, 0.014926531352102757, -0.014194333925843239, 0.005828307010233402, -0.029148804023861885, 0.04257192462682724, -0.016149286180734634, 0.018350480124354362, -0.006389529909938574, 0.0691414475440979, 0.03488368168473244, 0.030215473845601082, -0.0005143493763171136, -0.005001412238925695, 0.0752623900771141, 0.010625595226883888, -0.008202158845961094, 0.03479230776429176, 0.019259018823504448, -0.003898651571944356, 0.001869425643235445, -0.0263309795409441, 0.0100746750831604, 0.006498932372778654, -0.03345534950494766, -0.020495472475886345, -0.006036969367414713, 0.042174965143203735, 0.0016941716894507408, -0.05143788456916809, 0.03890327736735344, -0.05156496912240982, -0.019745485857129097, 0.009904719889163971, -0.0013318833662196994, 0.025309594348073006, 0.06578051298856735, -0.007386643439531326, 0.014222103171050549, 0.03610033914446831, 0.0162460058927536, 0.00376083399169147, 0.05817015469074249, -0.003690477693453431, -0.023554448038339615, -0.013280042447149754, 0.030656863003969193, -0.0038574840873479843, -0.020145567134022713, -0.0077010756358504295, -0.018762927502393723, -0.02381628006696701, 0.04981004819273949, -0.026197200641036034, -0.02392135187983513, 0.04130205512046814, -0.01041281595826149, -0.013949615880846977, -0.044294070452451706, 0.016586726531386375, -0.04568189010024071, -0.01601341739296913, 0.024556821212172508, -0.008257594890892506, 0.0005423806142061949, 0.038973577320575714, -0.005444743204861879, 0.03497300297021866, 0.021966226398944855, 0.026039252057671547, -0.002544851740822196, 0.007207192946225405, 0.03360159322619438, -0.046893708407878876, -0.005061945877969265, 0.024489184841513634, -0.015468766912817955, -0.01991838589310646, -0.020422914996743202, -0.028089294210076332, -0.03077031672000885, -0.026619069278240204, -0.04872068017721176, -0.005202146712690592, 0.04891842231154442, 0.0179451797157526, -0.04186929017305374, -0.003087778575718403, 0.03311445564031601, -0.025213204324245453, -0.004256898537278175, -0.00941435806453228, 0.04876506328582764, -0.02466433309018612, -0.004237934481352568, -0.016647638753056526, -0.03704700246453285, 0.010807032696902752, -0.03761106729507446, 0.06967439502477646, -0.028526240959763527, -0.017835350707173347, -0.029895028099417686, -0.07654336094856262, -0.010406595654785633, 0.04773229360580444, -0.03528274968266487, -0.029178090393543243, 0.019752683117985725, 0.047210145741701126, 0.002800867659971118, 0.023595811799168587, -0.014503931626677513, -0.0028286343440413475, 0.0462137870490551, 0.043090883642435074, -0.025624748319387436, 0.014909842051565647, 0.00904617179185152, -0.004128679167479277, -0.00021302729146555066, -0.025920921936631203, 0.01949726790189743, -0.015510890632867813, -0.0289471335709095, -0.02592768333852291, 0.003893606597557664, -0.017157983034849167, -0.04921973869204521, 0.037660785019397736, 0.00395430950447917, -0.027047976851463318, -0.03831392526626587, -0.07106700539588928, 0.030512074008584023, -0.06615553051233292, -0.0013407316291704774, -0.019550034776329994, 0.03208005055785179, 0.0218872781842947, -0.011952878907322884, 0.0049865636974573135, -0.04806017130613327, 0.16791248321533203, 0.04537271335721016, 0.03833797946572304, -0.006856062915176153, 0.05043608322739601, 0.03037555143237114, 0.011383498087525368, 0.0036673410795629025, -0.009194373153150082, -0.020925916731357574, -0.006079092156141996, -0.00025839332374744117, 0.03505135700106621, -0.008549741469323635, 0.02936476282775402, 0.042366236448287964, -0.020151400938630104, 0.0079633304849267, 0.011630523018538952, -0.017430894076824188, -0.08189918845891953, 0.027907636016607285, 0.020586123690009117, 0.019132697954773903, -0.01481433305889368, -0.0018002437427639961, 0.024787668138742447, -0.051397062838077545, -0.01632409542798996, -0.02464752085506916, 0.03610232099890709, -0.042013462632894516, 0.007987054996192455, -0.03204149007797241, -0.056956689804792404, 0.055649638175964355, 0.011354543268680573, -0.04520866274833679, -0.010707484558224678, -0.012063936330378056, -0.0058323475532233715, 0.02476617880165577, 0.04257265850901604, -0.03892035409808159, 0.0066094426438212395, 0.04022322967648506, -0.015036082826554775, 0.02092205546796322, -0.010647362098097801, -0.04005464166402817, 0.03555060550570488, -0.04264936223626137, 0.023091653361916542, -0.029410753399133682, -0.03149672597646713, 0.00628687534481287, 0.024646960198879242, -0.02443298138678074, -0.029859060421586037, 0.004407225176692009, 0.03029998391866684, -0.0011376995826140046, 0.01541170570999384, 0.02964399755001068, -0.03019562177360058, -0.010991469956934452, 0.011312206275761127, 0.00734665198251605, 0.009853965602815151, -0.0312936045229435, -0.011440414004027843, 0.0076246196404099464, 0.010656009428203106, 0.007096364628523588, 0.05953006446361542, 0.008005560375750065, 0.0013535288162529469, 0.02330978773534298, 0.015546765178442001, -0.015711355954408646, -0.01455644890666008, -0.016182856634259224, 0.0340266078710556, -0.014446014538407326, 0.02133334055542946, 0.02832716330885887, -0.013740136288106441, -0.0386446975171566, -0.05426149070262909, 0.05250447243452072, 0.04143960773944855, 0.0183725506067276, -0.0066826315596699715, -0.010561621747910976, -0.009343573823571205 ]
This article describes iLearner, which is the interface for trained models that is used in Azure Machine Learning Studio. The ILearner interface provides methods and properties that are used to configure and interact with machine learning models. A learner is defined as a set of instructions that perform standardized machine learning tasks. Learners include classification algorithms, clustering algorithms, and regression algorithms. You can interact with iLearner only in Studio, or in one of the supported APIs. Determines whether a model has the correct format. Gets the capabilities of the learner. These are any general properties of the learner that are not captured by the type signature of the specific learner. Gets or sets the settings of the learner.The settings are unique to each learner and must be configured once before any query methods can be called on the learner. For a list of learners provided by Azure Machine Learning Studio, see Initialize Model. The ICluster interface is also available, for clustering models only.
[ -0.01352475956082344, 0.024593960493803024, -0.032879579812288284, -0.04868551343679428, -0.015567035414278507, -0.0009778167586773634, 0.0059627871960401535, 0.017030958086252213, 0.003690826240926981, 0.032724980264902115, 0.010444472543895245, 0.003195136785507202, -0.0023484292905777693, -0.030225086957216263, -0.011949103325605392, 0.006740123964846134, -0.029264213517308235, -0.033578675240278244, -0.02138185314834118, -0.019532719627022743, 0.017584871500730515, 0.01587255485355854, -0.07847622036933899, -0.0524243526160717, -0.026281313970685005, 0.020327772945165634, 0.024292895570397377, -0.011355677619576454, 0.06532985717058182, 0.07132203876972198, -0.02968701906502247, -0.038077060133218765, 0.018418263643980026, -0.03843726962804794, -0.035673584789037704, -0.004603790119290352, 0.035373225808143616, -0.02283882163465023, -0.05054759234189987, -0.058107174932956696, 0.015777800232172012, -0.013418016023933887, 0.01916404440999031, -0.05419062077999115, -0.052718181163072586, -0.01603609509766102, -0.005090939346700907, -0.02582366205751896, 0.0016089912969619036, -0.03129735216498375, 0.004745048470795155, -0.0041655576787889, 0.022794650867581367, -0.004433178808540106, 0.012991032563149929, 0.007834701798856258, 0.0005067315069027245, -0.004328308627009392, -0.046911656856536865, 0.03475918993353844, -0.008199047297239304, -0.001915228320285678, 0.026789575815200806, -0.0620453879237175, 0.03245827183127403, 0.03293643146753311, -0.006304957903921604, -0.024721460416913033, -0.013702066615223885, -0.02122059464454651, -0.04905053228139877, 0.020018957555294037, -0.005564048886299133, -0.031054381281137466, -0.014497969299554825, 0.0014110186602920294, 0.014018229208886623, 0.009943114593625069, -0.010882497765123844, 0.026781274005770683, 0.03422894701361656, 0.06145884096622467, 0.0018525015329942107, 0.025965549051761627, -0.020107246935367584, -0.036822982132434845, 0.04692590609192848, 0.004004870541393757, -0.0168900266289711, -0.026030344888567924, -0.0074745356105268, 0.04717866703867912, 0.0027531387750059366, -0.006786476820707321, 0.04499519243836403, 0.034195125102996826, -0.022209281101822853, 0.036823805421590805, 0.01750175468623638, 0.0006068199290893972, 0.09538192301988602, 0.03516438230872154, 0.002895191079005599, 0.03186482563614845, -0.06667114049196243, 0.011478976346552372, 0.004171152599155903, -0.009354807436466217, -0.008675050921738148, -0.027369681745767593, 0.010262084193527699, -0.019718680530786514, 0.03481108695268631, 0.000482534320326522, -0.024537015706300735, 0.041221313178539276, -0.0027546200435608625, 0.024549109861254692, -0.02787841483950615, 0.016961559653282166, 0.02614826336503029, 0.006341550964862108, 0.050277628004550934, -0.050344739109277725, 0.03634968027472496, -0.030904633924365044, -0.02376827783882618, 0.06151098385453224, -0.030511239543557167, 0.0031743969302624464, 0.00777828274294734, -0.022556724026799202, -0.014527032151818275, 0.03446740284562111, -0.01680632308125496, 0.016647223383188248, -0.0015001603169366717, 0.035843539983034134, 0.0220019593834877, -0.03716017305850983, 0.0604533925652504, 0.02810089662671089, 0.007021691184490919, 0.08929842710494995, -0.002550157718360424, 0.020504163578152657, -0.01329578272998333, -0.039383210241794586, -0.05981383100152016, 0.0011035819770768285, -0.02905559353530407, 0.038027528673410416, -0.008401259779930115, 0.00313692563213408, -0.008551218546926975, 0.0008006896241568029, 0.0012998273596167564, 0.021561548113822937, 0.030375564470887184, -0.009472404606640339, -0.013466496020555496, 0.02013341151177883, -0.007327894680202007, 0.03546369448304176, 0.008486081846058369, 0.02258443459868431, -0.05293496698141098, -0.02793271653354168, 0.009385681711137295, -0.023603903129696846, 0.012583989650011063, -0.03213171288371086, 0.014388037845492363, 0.030523249879479408, 0.03154074773192406, 0.044202543795108795, 0.0232465248554945, 0.011656585149466991, 0.03519584611058235, 0.0285742599517107, -0.03028758428990841, -0.012074419297277927, -0.016069043427705765, 0.037915803492069244, 0.001319884555414319, 0.011871501803398132, 0.03967876732349396, -0.009988757781684399, -0.0477345809340477, -0.018266672268509865, -0.011433330364525318, 0.027050357311964035, -0.04037947580218315, 0.019379280507564545, 0.021884966641664505, 0.003503988031297922, -0.02531769871711731, -0.014110647141933441, -0.010916084982454777, -0.03337543457746506, -0.02909192629158497, 0.05108403041958809, -0.03155751898884773, 0.009270003996789455, 0.011690343730151653, -0.024162117391824722, 0.01931123062968254, 0.053134750574827194, -0.05623357743024826, 0.02509140968322754, 0.02877473272383213, 0.01090342178940773, -0.057167816907167435, -0.014692920260131359, 0.015004467219114304, -0.023087644949555397, -0.02478015050292015, 0.05311864987015724, -0.01370570994913578, 0.01822824589908123, 0.01412736065685749, -0.01254249643534422, 0.04421352595090866, 0.036254189908504486, -0.013158257119357586, -0.03576606884598732, 0.001781371422111988, 0.048121046274900436, -0.01744307018816471, 0.009470995515584946, 0.007563979364931583, 0.04274393618106842, -0.002017792547121644, 0.09600043296813965, 0.034741394221782684, 0.01962803676724434, 0.04460417479276657, 0.036247797310352325, 0.0038076944183558226, 0.017038771882653236, 0.0011965477606281638, 0.03163214027881622, 0.010199882090091705, 0.04817565158009529, -0.0008416295167990029, 0.008908112533390522, -0.025560587644577026, 0.000030293989766505547, -0.03296417370438576, -0.0015698334900662303, -0.0046861316077411175, 0.030790744349360466, 0.023054316639900208, 0.017163947224617004, -0.03131593018770218, 0.008725930005311966, 0.03710343688726425, 0.0361371785402298, -0.02962326630949974, -0.02151222713291645, -0.02793870121240616, 0.022135557606816292, -0.0017977782990783453, 0.011214078404009342, 0.018844259902834892, 0.04669034853577614, 0.01951044797897339, 0.025307215750217438, -0.0007003025966696441, -0.051385607570409775, -0.05603429302573204, -0.06336672604084015, -0.05129905417561531, -0.04536992311477661, -0.01644301787018776, 0.005989104975014925, 0.018873976543545723, -0.03711555898189545, 0.020928839221596718, -0.018653176724910736, -0.006818891502916813, -0.009226088412106037, -0.030661551281809807, 0.0556059293448925, 0.041363101452589035, 0.056257087737321854, -0.04020481929183006, 0.060261089354753494, -0.01634405553340912, 0.01931757666170597, -0.009005843661725521, -0.02259731851518154, 0.0015164237702265382, -0.0348476804792881, 0.03082362189888954, -0.0286672692745924, -0.008372142910957336, -0.007033826317638159, -0.041450127959251404, -0.027317270636558533, 0.00611068494617939, 0.015551402233541012, 0.01674153469502926, 0.029150061309337616, -0.058115750551223755, 0.034988921135663986, 0.03140602633357048, -0.04055675119161606, 0.045597948133945465, 0.02242281846702099, -0.06440926343202591, 0.05314036086201668, -0.016484972089529037, 0.009555536322295666, -0.05708734691143036, 0.05265101417899132, 0.04038345068693161, -0.022182853892445564, -0.011425498872995377, -0.024527039378881454, -0.0293195191770792, 0.00027502162265591323, 0.00659351097419858, -0.01849864423274994, -0.024385791271924973, 0.05926387757062912, -0.009071798995137215, -0.0809827521443367, 0.009207540191709995, -0.06004383787512779, -0.032513510435819626, -0.0348486565053463, -0.02768830582499504, 0.034558672457933426, 0.0055856239050626755, 0.0362444669008255, -0.00175680429674685, -0.003362456802278757, -0.0040947915986180305, 0.02667429856956005, 0.0299544557929039, -0.041460614651441574, 0.03640364855527878, 0.03555590286850929, 0.016458071768283844, 0.01002520602196455, 0.022743383422493935, -0.020329797640442848, 0.008969116024672985, -0.001271902467124164, 0.006460993085056543, 0.005751170217990875, 0.02631848305463791, 0.002805690746754408, 0.023817341774702072, 0.038945842534303665, -0.056866034865379333, -0.0031792940571904182, 0.03186464309692383, -0.016473904252052307, 0.005144117400050163, 0.01658393070101738, 0.007043404504656792, -0.002694316441193223, -0.03252986818552017, -0.06193336099386215, 0.016815030947327614, 0.03210381418466568, 0.05003386735916138, -0.06137259304523468, 0.05165550112724304, -0.0003403771261218935, -0.02352418377995491, 0.042811114341020584, -0.03743365406990051, -0.019019773229956627, 0.030869880691170692, -0.008079629391431808, 0.03645048663020134, -0.05634291097521782, 0.00739537738263607, -0.0033552581444382668, 0.008108430542051792, 0.01929796114563942, 0.01732466369867325, 0.0112954992800951, -0.04159645363688469, -0.021997081115841866, -0.014559544622898102, -0.0010865373769775033, -0.015500558540225029, -0.00024393531202804297, -0.01657521352171898, -0.00487497728317976, -0.04124951362609863, -0.055579621344804764, 0.04422960802912712, 0.046744342893362045, 0.0461270734667778, -0.007611021399497986, 0.0741465836763382, -0.02410047873854637, 0.012398130260407925, 0.04578904062509537, -0.010769467800855637, 0.0024895144160836935, -0.045613233000040054, 0.030029617249965668, 0.005649660248309374, -0.03674028813838959, -0.028634756803512573, -0.01221194677054882, -0.030753593891859055, 0.04744540527462959, 0.0031322743743658066, -0.03066319413483143, -0.03655030578374863, 0.005039671901613474, -0.024843454360961914, 0.034406471997499466, -0.0335177518427372, -0.05376390740275383, -0.0478692427277565, 0.026903904974460602, 0.045886632055044174, -0.026753738522529602, 0.005569624714553356, -0.03827105090022087, 0.04021225869655609, 0.036394935101270676, -0.023657331243157387, -0.05222484841942787, -0.03599948808550835, -0.030787894502282143, -0.030493255704641342, -0.0035932492464780807, 0.04612027481198311, -0.01927858777344227, 0.005589548964053392, -0.03940199315547943, -0.011557651683688164, 0.013359635137021542, -0.005473767872899771, -0.009744309820234776, 0.009672950953245163, 0.011749034747481346, -0.022779105231165886, 0.03470233827829361, 0.002100504469126463, -0.029620489105582237, 0.02734430320560932, -0.04028857871890068, 0.018562709912657738, -0.022976990789175034, 0.008215620182454586, -0.01337504107505083, 0.010637970641255379, -0.001625831937417388, 0.028739942237734795, 0.002698466880246997, 0.013459834270179272, 0.0026950729079544544, 0.07219146192073822, 0.0007793508120812476, -0.05091698467731476, 0.024080676957964897, -0.0014903683913871646, -0.019239094108343124, 0.04048200696706772, 0.05230911448597908, -0.022281581535935402, -0.0011199201690033078, 0.01709679514169693, -0.054468683898448944, 0.05255388095974922, -0.0294178556650877, -0.008250701241195202, -0.018410641700029373, -0.03766705468297005, 0.033943723887205124, -0.06492162495851517, 0.011490024626255035, 0.005665124393999577, -0.012207935564219952, -0.05502799525856972, -0.06472703814506531, -0.006818156223744154, 0.003799283178523183, -0.04326173663139343, 0.02771793119609356, -0.02463909052312374, -0.0077441358007490635, -0.0017980968113988638, 0.0007699521374888718, -0.005435153376311064, -0.015983907505869865, -0.01657583750784397, 0.0013359214644879103, 0.02486470714211464, 0.0050921388901770115, 0.013068227097392082, -0.023768482729792595, -0.04162374138832092, 0.01068746205419302, -0.01442619040608406, -0.017503123730421066, -0.0630081444978714, 0.005270709749311209, -0.016968175768852234, -0.048135075718164444, -0.026796547695994377, 0.008786302991211414, -0.007209196221083403, 0.005355789326131344, 0.007931679487228394, 0.004716562572866678, -0.003339800052344799, 0.005845482926815748, -0.014818573370575905, 0.033120445907115936, 0.01714652217924595, -0.04306943342089653, -0.033148664981126785, 0.06843091547489166, -0.00294730206951499, 0.04887248948216438, -0.0008532350766472518, -0.011029275134205818, -0.019159819930791855, -0.0042208414524793625, 0.02227984368801117, 0.003425275906920433, 0.013900874182581902, -0.05632973089814186, -0.04367612674832344, -0.016911674290895462, 0.04384773597121239, -0.0020068008452653885, -0.031049292534589767, 0.005022019613534212, -0.0282723568379879, 0.012114730663597584, -0.019582316279411316, -0.028657091781497, -0.02541751228272915, 0.010789813473820686, -0.02730538137257099, 0.04641419276595116, -0.014036830514669418, 0.005721122957766056, 0.014396474696695805, 0.02449684962630272, 0.04434209316968918, -0.012659363448619843, -0.06562195718288422, -0.022997770458459854, 0.01176529936492443, 0.01814989559352398, -0.010166407562792301, 0.0023678471334278584, -0.03656718507409096, 0.036101602017879486, -0.038971513509750366, 0.0011742557398974895, -0.011827824637293816, -0.0165909044444561, -0.024256732314825058, 0.008275477215647697, 0.07003547251224518, -0.031138595193624496, 0.05355313420295715, -0.0157614853233099, 0.0530768521130085, 0.025395900011062622, 0.026987403631210327, -0.07834219932556152, -0.023139916360378265, -0.053755488246679306, -0.04856577143073082, 0.0184243805706501, -0.025814613327383995, 0.00848948024213314, -0.017848430201411247, -0.013830612413585186, 0.021845798939466476, -0.01833384856581688, 0.046091895550489426, 0.05499517545104027, 0.0019278193358331919, 0.011518510989844799, -0.015772968530654907, 0.032492734491825104, 0.04430720582604408, -0.003068336518481374, -0.007231798022985458, -0.039232999086380005, -0.02754535712301731, 0.000428203638875857, -0.039954375475645065, -0.03711206093430519, -0.04640915244817734, 0.004596602637320757, 0.06833852082490921, -0.03137616440653801, 0.03684840351343155, 0.02015244960784912, -0.03455819562077522, -0.01944620907306671, 0.03613842651247978, -0.00927678868174553, 0.015593526884913445, 0.04458196088671684, -0.008157727308571339, 0.01758292317390442, 0.041921909898519516, -0.018987257033586502, 0.015813587233424187, -0.046049319207668304, 0.07359224557876587, 0.007336611859500408, -0.044733259826898575, 0.023250503465533257, 0.06321193277835846, -0.06516341865062714, -0.05407845228910446, 0.010756360366940498, 0.0064433179795742035, -0.014536979608237743, -0.048979584127664566, -0.0011174206156283617, -0.008916252292692661, -0.025282293558120728, -0.0009860056452453136, 0.010607064701616764, -0.02249186486005783, 0.030228570103645325, 0.02571124956011772, 0.03107520006597042, -0.06521264463663101, 0.03311141952872276, 0.02662680856883526, -0.007748963311314583, -0.008493620902299881, -0.018769294023513794, 0.01121342834085226, 0.013609938323497772, 0.015094093047082424, 0.0585758239030838, -0.022205576300621033, -0.007956094108521938, 0.015302449464797974, -0.005166665650904179, 0.05186287313699722, -0.012637610547244549, -0.00007025469676591456, -0.01029313076287508, -0.012693404220044613, -0.06364063918590546, -0.024726515635848045, 0.03363511711359024, 0.013313202187418938, 0.04297542944550514, -0.048258572816848755, 0.028091520071029663, 0.0554068386554718, 0.03894531726837158, 0.007632913533598185, -0.05986052751541138, -0.029797112569212914, -0.045209527015686035, -0.04029558226466179, -0.010296261869370937, -0.014069462195038795, -0.012034062296152115, 0.016021449118852615, 0.03554658219218254, -0.04274020344018936, 0.009353646077215672, 0.01873653195798397, -0.020842667669057846, -0.010831138119101524, -0.03765521198511124, 0.04256024584174156, -0.0237493347376585, -0.041283395141363144, -0.046978384256362915, 0.008462952449917793, 0.00043322049896232784, 0.034898076206445694, -0.014352168887853622, 0.037804003804922104, -0.014423426240682602, 0.044207409024238586, -0.01132210623472929, -0.0040797218680381775, -0.006294858176261187, -0.01600535400211811, -0.02215311862528324, 0.03870534524321556, -0.027859140187501907, 0.03763585165143013, 0.03587640821933746, -0.021410316228866577, 0.009337494149804115, 0.0014467996079474688, -0.02119279094040394, -0.04482292756438255, 0.009798514656722546, 0.03754500672221184, 0.01706068217754364, -0.02156514674425125, -0.03283628076314926, 0.017884355038404465, -0.0498206801712513, 0.038907065987586975, 0.021668842062354088, -0.0017264585476368666, 0.012867813929915428, 0.0018958060536533594, 0.022685570642352104, 0.04918890818953514, 0.02911802940070629, 0.050082411617040634, -0.006140721496194601, 0.023376546800136566, 0.011501187458634377, -0.013189845718443394, 0.026998158544301987, 0.019494326785206795, -0.0019154928158968687, -0.030272094532847404, 0.020357852801680565, 0.02571641467511654, -0.02124326303601265, 0.032865315675735474, -0.026464642956852913, -0.013632581569254398, -0.04442013055086136, -0.03134654089808464, 0.021302111446857452, 0.05170193687081337, 0.01682824268937111, 0.014782210811972618, 0.024051429703831673, -0.028752852231264114, -0.05089353024959564, 0.030310949310660362, -0.0569956935942173, -0.03181741014122963, 0.029944216832518578, -0.032469242811203, -0.010407709516584873, -0.03721305727958679, -0.046085190027952194, -0.012772586196660995, 0.033194273710250854, -0.011034312658011913, -0.0010769118089228868, 0.029867878183722496, 0.00899469293653965, 0.0096910884603858, 0.0009612985304556787, -0.019200876355171204, 0.0019418912706896663, 0.04450995475053787, -0.05054115504026413, -0.06910152733325958, 0.02227019891142845, 0.0441230870783329, 0.014441288076341152, 0.00009056318231159821, -0.024339433759450912, 0.00653713708743453, 0.026677461341023445, 0.011599201709032059, -0.0033428375609219074, 0.005026263650506735, -0.004737324081361294, 0.012965313158929348, -0.017286384478211403, 0.02297191321849823, -0.043860286474227905, 0.03016042895615101, 0.008665907196700573, -0.028581049293279648, -0.015307565219700336, 0.020066607743501663, 0.04298202320933342, -0.02523394301533699, 0.03879467025399208, 0.011508043855428696, 0.05151556432247162, -0.024497343227267265, 0.015002830885350704, -0.006274933461099863, 0.06077447533607483, 0.03361107036471367, 0.03603607416152954, -0.00477355532348156, 0.06050528585910797, 0.06426839530467987, -0.031894903630018234, -0.024283861741423607, 0.07725676894187927, 0.04078345373272896, -0.0067284791730344296, 0.0009426709148101509, -0.05004699155688286, -0.004765805322676897, 0.0062730456702411175, 0.021364225074648857, -0.013475821353495121, -0.024731995537877083, -0.010193873196840286, -0.025872867554426193, -0.02519470639526844, 0.04662289097905159, 0.012649781070649624, -0.02285400591790676, 0.020055493339896202, -0.0011050279717892408, 0.02699187397956848, 0.03556928411126137, 0.028587600216269493, -0.025709673762321472, 0.02677716314792633, 0.02967768721282482, 0.023910220712423325, 0.028197811916470528, 0.02486621029675007, 0.016650453209877014, -0.04313962534070015, 0.0032182899303734303, -0.017225008457899094, 0.015059501864016056, -0.021261077374219894, -0.0017634767573326826, -0.028811395168304443, 0.03292646259069443, -0.02009394019842148, -0.030412564054131508, 0.03173842653632164, -0.042605575174093246, -0.033975519239902496, -0.0677766501903534, 0.04159770533442497, -0.015086113475263119, -0.026294084265828133, 0.04776080325245857, -0.027677346020936966, -0.008053525350987911, 0.054175589233636856, 0.0015709574799984694, 0.016249096021056175, 0.011763183400034904, 0.023874502629041672, 0.04089609161019325, 0.047751009464263916, 0.06993402540683746, 0.00537116127088666, -0.0011567072942852974, 0.03154279291629791, -0.001137584331445396, -0.03335992619395256, -0.01875956915318966, -0.028309499844908714, 0.019014958292245865, -0.02243879996240139, -0.024103766307234764, 0.014732150360941887, 0.0353933647274971, 0.007975217886269093, -0.03488527983427048, -0.01600593701004982, 0.014047822915017605, -0.03076137974858284, -0.00654760142788291, 0.020191418007016182, 0.024122053757309914, 0.00736163929104805, -0.021252484992146492, -0.016115717589855194, -0.06293876469135284, -0.01523058395832777, -0.04468385502696037, 0.06238719820976257, -0.02613200806081295, -0.02995062991976738, -0.048709891736507416, -0.04190478101372719, -0.013846642337739468, 0.00861622579395771, -0.018454864621162415, -0.00419614277780056, 0.02873576432466507, 0.04932912811636925, 0.025218557566404343, -0.004877087194472551, -0.012968482449650764, -0.035081055015325546, 0.060604121536016464, 0.058580052107572556, -0.020083462819457054, 0.07207881659269333, 0.05328866094350815, -0.021366365253925323, 0.009065513499081135, -0.01652294024825096, 0.0015492226229980588, -0.04533873498439789, -0.014232905581593513, -0.005913850851356983, 0.012552778236567974, -0.024743935093283653, -0.05937347561120987, 0.014953595586121082, -0.0014621387235820293, -0.006332928780466318, -0.02094322256743908, -0.04225659370422363, 0.00091020786203444, -0.07267219573259354, 0.003157688770443201, -0.04236368462443352, 0.021955210715532303, 0.01952385902404785, -0.01379393506795168, -0.0106800002977252, -0.05896880477666855, 0.14436769485473633, 0.06116233766078949, 0.037936121225357056, 0.02342158928513527, 0.04377266764640808, 0.06244846060872078, 0.025882408022880554, -0.00042225627112202346, 0.025766078382730484, -0.05698684602975845, 0.02785021997988224, -0.010273370891809464, 0.034400586038827896, 0.009570226073265076, 0.01609891839325428, 0.05957517400383949, -0.037169259041547775, 0.0034103854559361935, 0.019229210913181305, -0.031964562833309174, -0.07320775091648102, 0.009166093543171883, 0.006740611512213945, 0.028662269935011864, -0.002254858845844865, 0.00751618854701519, 0.015009406954050064, -0.05490204319357872, 0.014272836968302727, -0.03738986700773239, -0.009862014092504978, -0.02587551809847355, 0.016632772982120514, 0.009722801856696606, -0.025053033605217934, 0.05534796044230461, 0.01774747669696808, -0.0199507437646389, -0.020254148170351982, 0.029032496735453606, -0.04791884496808052, -0.029988225549459457, 0.024791095405817032, -0.00510148610919714, -0.008998673409223557, 0.01869068294763565, -0.022854706272482872, 0.007959181442856789, 0.023765256628394127, -0.019514266401529312, 0.05158129334449768, -0.06500515341758728, 0.00496462918817997, -0.016870995983481407, -0.03406636044383049, 0.02320590801537037, -0.023833654820919037, -0.03557214513421059, -0.027985716238617897, 0.005628840997815132, 0.007664870470762253, -0.008574443869292736, -0.033934853971004486, 0.007869589142501354, -0.012506290338933468, 0.011211737059056759, 0.04514208436012268, 0.015640288591384888, -0.02319508045911789, -0.016001220792531967, -0.00828047189861536, 0.003080411348491907, -0.03454738110303879, -0.018005574122071266, 0.036182235926389694, 0.029165344312787056, -0.03229830414056778, 0.05877591297030449, -0.03583894670009613, -0.0438440777361393, 0.0032834678422659636, -0.03439462184906006, -0.008803135715425014, 0.0021550937090069056, 0.027354665100574493, 0.01229647547006607, -0.04073115810751915, -0.03010188788175583, -0.04338887333869934, 0.041126497089862823, 0.026612484827637672, 0.006183313205838203, 0.00527441268786788, 0.00456628343090415, 0.006852034013718367 ]
The 8 closed transactions in Wallingford during February fell 1 home short of last year's activity for the second month of the year. The average selling price was substantially higher at $350,444 – an increase of 18.8% over last year. Eight single family homes sold for an average price of $382,375 during the month and averaged 70 Days On Market. Last February also saw 8 homes selling for an average price of $292,363 and spending an average of 129 Days On Market. One condo also sold during the month which when combined with the 8 single homes sold account for $3,059,000 of real estate changing hands during the month. 700 Pine Ridge Road had the highest selling price at $575,000. Fourteen listings went under contract during the month – 10 single family homes , 2 condos, 1 twin, and 1 townhouse – with an average asking price of $415,143 and an average of 77 Days On Market. There are 19 future settlements – 12 in March, 6 in April, and 1 in May. Comparing year to date with last year the average selling price at $370,282 represents a 11.2% increase over the first two months of 2017. Closed transactions are running short of last year's pace – 23 in 2018 vs 25 in 2017. August 2017 finished with 22 closed translations vs 19 last year. The average sales price increased 4.2% over last year coming in at $356,207. August's 22 sales consisted of 19 single family homes, 2 condos, and 1 twin. The 19 single family homes sold for an average price of $397,329 and averaged 55 days on the market. Last August single family homes sold for an average price of $432,407 and were on the market an average of 48 days. 220 Turner Road had the highest selling price for the month at $830,000. Fourteen listings went under contract during the month – 5 single family homes, 3 twins, 2 townhouses, and 1 condo with an average asking price of $282,255 and were on the market an average of 76 days. There are are 24 future settlements scheduled with 16 in September, 3 in October, 2 in November, 1 in December, and 1 in January 2018. There were no distressed sales reported for the month. The month of April 2017 finished with 13 closed sales in Wallingford falling 1 homes short of last April. The average sales price soared 28% to $377,228. Buyers grabbed homes quickly during the month with the average days on market coming in at only 32, with 6 homes selling in less than 2 weeks. The 13 sales consisted of 8 single family homes, 3 townhouses, 1 condo, and 1 twin. Single family homes sold for an average price of $478,269 and averaged 21 days on the market. Last April 10 single family homes sold for an average price of $345,550. The highest selling price for the month was $727,000 for 404 Dewey Lane. There were 28 listings that went under contract during the month – 24 single family homes and 2 townhouses, and 2 condos. The average asking price was $367,339 and they were on the market an average of 60 days.. There are 47 future settlements scheduled with 26 on the books for May, 19 in June, and 2 in July. 832B Putnam Blvd was a Bank Owned Forclosure. December home sales in Wallingford PA were very active with 22 closed transactions versus 17 last year. The 22 transactions represent the 3rd busiest month of the year ranking behind only June and May. The average selling price decreased by 17.0% compared to December 2015 coming in at $246,332. Sales consisted of 17 single family homes, 2 twin homes, and 2 townhomes, and 1 condo. A total of $5,419,300 in real estate changed hands during the month. December's 17 single family homes sold for an average price of $279,612 and averaged 83 days on the market. December 2015 recorded 12 single family home sales that sold for an average price of $375,190 and spent an average of 83 days on the market. 915 Winding Lane had the highest selling price for the month at $500,000. The year 2016 ends with the number of closed transactions standing at 213 vs 214 for 2015. The average selling price for Wallingford homes in 2016 fell by 2.0% to $302,019, decreasing $6,314 from last year. Eleven listings went under contract during the month – 9 single family homes, 1 townhouse, and 1 condo – with an average asking price of $366,064 and an average of 179 Days On Market. There are 16 settlements scheduled in January, 3 in February, and 1 in March. 622 Georgetown Road was a Short Sale.
[ -0.03314394876360893, 0.032014310359954834, -0.023541323840618134, 0.001860297517850995, -0.019907046109437943, -0.012962785549461842, 0.0029189239721745253, 0.03673400357365608, 0.035959403961896896, 0.045972321182489395, 0.017991578206419945, 0.03114025853574276, 0.006832597777247429, -0.03652976453304291, -0.02508622035384178, -0.004105185158550739, -0.023613102734088898, -0.01533693727105856, 0.01571730710566044, -0.010015157051384449, -0.02181316167116165, 0.018756715580821037, -0.047718167304992676, -0.04913715273141861, -0.02892538532614708, 0.055127158761024475, 0.03219478949904442, -0.01323150284588337, 0.026470847427845, 0.06725716590881348, 0.001139652682468295, -0.034088313579559326, 0.02951960638165474, -0.03158511221408844, -0.029027318581938744, 0.022812379524111748, 0.03525448963046074, 0.0015704784309491515, -0.0072493781335651875, -0.04441886395215988, 0.021974865347146988, -0.01997331902384758, 0.028080593794584274, -0.032898202538490295, -0.025088468566536903, -0.023123694583773613, -0.013331243768334389, -0.03028600849211216, 0.012196274474263191, -0.031145302578806877, -0.0022495067678391933, -0.012909241952002048, 0.028589710593223572, -0.026196369901299477, -0.008383404463529587, 0.009931335225701332, -0.010474315844476223, 0.017629077658057213, 0.01684713549911976, 0.020720865577459335, 0.018058467656373978, -0.013984935358166695, 0.03480101004242897, -0.05348548665642738, 0.006160807330161333, 0.03823114559054375, 0.015029887668788433, -0.026966247707605362, 0.04154060408473015, -0.026525069028139114, 0.00620069308206439, 0.006057961843907833, -0.03921947255730629, -0.01672232337296009, 0.014957788400352001, -0.004371287301182747, -0.003951929975301027, 0.022016778588294983, -0.021567735821008682, -0.01304721925407648, -0.004931603092700243, 0.023818504065275192, 0.01837693154811859, -0.003200903767719865, -0.049027908593416214, -0.0380137674510479, -0.012363080866634846, 0.0173016544431448, 0.005024021491408348, 0.006471633445471525, -0.0065048979595303535, 0.0491260327398777, 0.04024127125740051, 0.007482665125280619, 0.021054422482848167, 0.06744915246963501, -0.05297587811946869, 0.02877114526927471, 0.012353410013020039, -0.014446140266954899, 0.03040955774486065, 0.016722161322832108, -0.0022954093292355537, 0.05520392209291458, -0.039940670132637024, -0.017546355724334717, -0.015337659046053886, -0.03769470751285553, -0.013967198319733143, -0.057376448065042496, -0.016856949776411057, -0.030216727405786514, 0.03124348446726799, -0.011857650242745876, -0.006309321615844965, 0.05027817562222481, -0.011043597012758255, 0.015806812793016434, -0.05297192931175232, 0.025859355926513672, 0.04147220030426979, 0.0009646372054703534, 0.07738763093948364, -0.021561887115240097, 0.03409947082400322, -0.020519085228443146, -0.033185213804244995, 0.04332568123936653, -0.027793489396572113, -0.04827166721224785, -0.010878626257181168, -0.030231252312660217, -0.034346647560596466, 0.056895431131124496, -0.006600160151720047, 0.030381908640265465, 0.012213882058858871, 0.03451519459486008, 0.0069359540939331055, -0.05232033133506775, 0.04527189955115318, 0.004329783376306295, -0.00473841093480587, 0.07675987482070923, -0.012136674486100674, 0.05542532354593277, -0.009419930167496204, -0.027852116152644157, -0.02150704339146614, 0.0031397449783980846, -0.037095632404088974, 0.03620363026857376, 0.019742952659726143, 0.004618342965841293, -0.0032465625554323196, -0.002129992237314582, -0.02337133139371872, -0.004153615795075893, -0.00246199918910861, 0.018233126029372215, -0.06050267070531845, -0.0033415607176721096, -0.03744100034236908, 0.020576251670718193, -0.02763126790523529, 0.01282181590795517, -0.024927698075771332, -0.01325666718184948, -0.02101415954530239, -0.0467979833483696, 0.038418740034103394, -0.0015335469506680965, -0.005320064723491669, -0.006175036076456308, 0.009181978181004524, 0.06929878145456314, 0.0423513762652874, 0.016826292499899864, 0.041747163981199265, 0.035571809858083725, -0.031956542283296585, -0.04915691167116165, -0.010125498287379742, 0.031032705679535866, 0.015924453735351562, -0.025369977578520775, 0.0027014752849936485, -0.02133321948349476, -0.028215963393449783, -0.02350499853491783, 0.012485315091907978, 0.003328071441501379, -0.015155966393649578, 0.044681280851364136, 0.004477554000914097, 0.0029555046930909157, -0.013746704906225204, 0.010073648765683174, 0.0013210105244070292, -0.05210581794381142, -0.00960905198007822, 0.044257115572690964, -0.0352960079908371, 0.04598885029554367, -0.0341019369661808, -0.04696318507194519, 0.058768659830093384, 0.05138854309916496, -0.020598549395799637, -0.005130081437528133, 0.04156726598739624, -0.001269510481506586, -0.014473429881036282, -0.026654746383428574, 0.03735733777284622, 0.015598349273204803, -0.031515058130025864, 0.0737905278801918, 0.005724277347326279, 0.0016273936489596963, 0.040573135018348694, 0.00489845359697938, 0.010172794573009014, 0.04500172287225723, -0.011597853153944016, -0.017903542146086693, 0.06496111303567886, 0.012909701094031334, -0.018852440640330315, 0.029537083581089973, 0.014983088709414005, 0.039994075894355774, 0.01304289698600769, 0.06993333995342255, 0.05957029014825821, 0.010087301023304462, 0.02139032818377018, 0.039923977106809616, -0.02317694015800953, 0.012224704027175903, -0.03548252582550049, 0.023865923285484314, 0.03246477246284485, 0.010221467353403568, -0.021988285705447197, 0.04984809085726738, -0.02298261784017086, -0.014284156262874603, -0.022116227075457573, 0.019044524058699608, -0.04430033266544342, 0.018953848630189896, 0.005555257201194763, 0.04133366793394089, -0.004992196336388588, 0.013577400706708431, 0.06661247462034225, 0.06014152988791466, -0.06932287663221359, 0.007046423852443695, 0.010537524707615376, 0.015178065747022629, 0.02174707129597664, -0.013928824104368687, 0.03754696995019913, -0.007272361312061548, 0.022996485233306885, -0.014201459474861622, -0.025266826152801514, -0.02321355603635311, -0.0506744347512722, -0.03435341268777847, -0.045041635632514954, -0.015490290708839893, -0.060835178941488266, 0.035983696579933167, 0.03400806710124016, -0.04037969931960106, 0.01574673503637314, -0.021021872758865356, 0.010406496934592724, -0.05227339267730713, 0.02534475550055504, 0.042598627507686615, 0.018943924456834793, 0.07448536902666092, -0.009204946458339691, 0.055783651769161224, 0.0299773458391428, 0.019513512030243874, -0.03143436834216118, -0.015743492171168327, -0.017174649983644485, -0.019923873245716095, 0.01520516723394394, -0.02474849857389927, -0.024837704375386238, -0.025033343583345413, -0.02687614969909191, -0.07568253576755524, -0.003030585590749979, -0.04058164730668068, 0.005545480642467737, -0.024386093020439148, -0.031751807779073715, 0.06326949596405029, 0.03249320015311241, -0.0310463085770607, 0.061959050595760345, 0.027692150324583054, -0.05468929186463356, 0.011250956915318966, 0.031110726296901703, 0.02026028372347355, -0.0517498217523098, 0.06488395482301712, 0.027171317487955093, -0.01787107065320015, -0.02014263905584812, -0.022828493267297745, -0.00033387745497748256, 0.003291429951786995, 0.036349400877952576, 0.013717048801481724, -0.007577728945761919, 0.026440700516104698, 0.027462845668196678, -0.07430771738290787, 0.027719397097826004, -0.023003485053777695, -0.02050897851586342, -0.04448277875781059, -0.04651596024632454, 0.014091678895056248, 0.027573376893997192, 0.023669838905334473, -0.008516492322087288, -0.05052149295806885, 0.005552046000957489, 0.0036352311726659536, 0.07746793329715729, -0.03666853904724121, 0.022860316559672356, 0.050462935119867325, -0.023925449699163437, -0.0016342897433787584, 0.02830190397799015, 0.0022635648492723703, -0.025535833090543747, 0.027599185705184937, -0.037602122873067856, 0.018612932413816452, 0.002309352857992053, 0.022125253453850746, 0.0060317860916256905, 0.02435530535876751, -0.024887477979063988, 0.03876407817006111, 0.013197693042457104, 0.02232700027525425, 0.06309068948030472, 0.01990453712642193, 0.007657843176275492, -0.02827814221382141, -0.05809810012578964, -0.04763229563832283, 0.021815316751599312, 0.005406406242400408, 0.06722953170537949, -0.03238774463534355, 0.056045711040496826, 0.03800080344080925, -0.022282863035798073, 0.022590450942516327, -0.05839734897017479, -0.020230593159794807, 0.01951412297785282, -0.01349765807390213, 0.005264213774353266, -0.015532690100371838, 0.03301103785634041, 0.018813606351614, 0.004129497334361076, 0.033843398094177246, -0.018362445756793022, 0.026235239580273628, -0.00978842657059431, -0.019227290526032448, -0.0027717812918126583, 0.003506208537146449, -0.0022758820559829473, -0.03202139958739281, 0.040606386959552765, -0.01849921979010105, -0.016902342438697815, -0.026175031438469887, 0.024246705695986748, 0.008413287810981274, -0.0023885483387857676, -0.039470773190259933, 0.04691879451274872, 0.010210813954472542, -0.0036277121398597956, 0.007028782740235329, -0.022935623303055763, 0.008150305598974228, -0.03792927786707878, 0.06781957298517227, -0.011605807580053806, -0.024866899475455284, -0.006885671056807041, -0.005115955136716366, -0.011614490300416946, 0.0031920920591801405, -0.0014724551001563668, -0.027082230895757675, -0.015561102889478207, 0.010256155394017696, 0.014075631275773048, 0.05898774042725563, -0.03060733526945114, -0.004992987494915724, 0.0019982876256108284, 0.04500953480601311, 0.04763488471508026, -0.05355703458189964, 0.013109363615512848, -0.05925210937857628, 0.03497292473912239, 0.04829863831400871, -0.031706374138593674, -0.04301353543996811, -0.0159839428961277, -0.026891451328992844, -0.02224525809288025, 0.01993403770029545, 0.0444161631166935, 0.0005250965477898717, -0.003893204964697361, -0.0561174713075161, 0.03784704953432083, 0.053199879825115204, -0.01731799729168415, -0.007913628593087196, -0.003970239777117968, 0.0057561700232326984, -0.015178087167441845, 0.04595501720905304, 0.014229971915483475, -0.012859026901423931, 0.009391768835484982, -0.059712767601013184, 0.008700150065124035, -0.011017092503607273, -0.03733934462070465, 0.012197966687381268, 0.023391075432300568, -0.01777276024222374, 0.02439942955970764, -0.025729624554514885, 0.05520956590771675, -0.025674836710095406, 0.04577242583036423, -0.03268694132566452, -0.03590500354766846, 0.04390907287597656, 0.009735697880387306, -0.005676375236362219, -0.021387679502367973, 0.027898011729121208, -0.010611210018396378, 0.0021155821159482002, 0.04868108406662941, -0.025520334020256996, 0.026626311242580414, 0.009638100862503052, 0.01412284653633833, -0.020901931449770927, -0.028079455718398094, 0.010677384212613106, -0.038543105125427246, 0.008967774920165539, -0.008974071592092514, -0.0017989248735830188, -0.057486433535814285, -0.05590924993157387, -0.03588282689452171, 0.009882377460598946, -0.018195101991295815, 0.04502279683947563, 0.014996901154518127, -0.02046532742679119, 0.02241881564259529, -0.007492448668926954, -0.0003627257829066366, -0.01635114848613739, -0.01349133811891079, -0.016906598582863808, 0.018060822039842606, 0.015771418809890747, 0.003549654735252261, -0.02356898784637451, -0.06625358760356903, 0.002886273665353656, -0.016935978084802628, -0.045656222850084305, -0.03341588377952576, -0.0029688652139157057, -0.0004514048923738301, -0.03138558939099312, -0.025900553911924362, 0.02205384150147438, -0.01615537703037262, -0.00794910080730915, 0.02457892708480358, 0.006991901900619268, 0.025827579200267792, 0.018061015754938126, 0.0029948370065540075, 0.05722606182098389, 0.04715517908334732, -0.0575994998216629, -0.027281980961561203, 0.05029967054724693, 0.00018203238141722977, 0.07553986459970474, -0.005986002739518881, -0.014096375554800034, -0.05259715020656586, -0.0570957213640213, -0.0010194160277023911, -0.045668087899684906, -0.022153014317154884, -0.0640343725681305, -0.0286423172801733, -0.016522852703928947, 0.03255844488739967, -0.004056445322930813, 0.024703022092580795, 0.027261225506663322, -0.04394183307886124, 0.03283341974020004, -0.027117181569337845, -0.0028301607817411423, -0.01593160443007946, -0.0003560773911885917, -0.0038233452942222357, 0.028311485424637794, 0.009985293261706829, 0.035504281520843506, 0.0012296396307647228, -0.002699038712307811, 0.023279251530766487, 0.005223344545811415, -0.04248455539345741, -0.017519865185022354, 0.004268593620508909, -0.011162512004375458, 0.026238340884447098, -0.013610923662781715, -0.03064006008207798, 0.03882312774658203, -0.035511475056409836, 0.010847575962543488, -0.01859109476208687, -0.029445575550198555, -0.01189110241830349, -0.04996436834335327, 0.022735225036740303, 0.003737633116543293, 0.01669776625931263, -0.01639079861342907, 0.03181977942585945, 0.0038881259970366955, 0.023551344871520996, -0.04110068082809448, -0.07997862249612808, -0.07379832863807678, -0.041980523616075516, 0.026118675246834755, -0.04525609314441681, -0.02247544378042221, -0.02426876500248909, -0.024687383323907852, 0.030776994302868843, 0.004459985066205263, 0.0776621550321579, 0.06773515790700912, -0.025036538019776344, 0.007758197374641895, -0.0187495369464159, 0.02558838576078415, 0.025822000578045845, 0.009349332191050053, -0.0055589028634130955, -0.040774762630462646, -0.026887647807598114, -0.005186716094613075, -0.04546334967017174, -0.03674091026186943, -0.05934993550181389, -0.004294971004128456, 0.036971498280763626, -0.03147866204380989, 0.03776421770453453, -0.022513672709465027, -0.03780123591423035, -0.03131579980254173, 0.02546674758195877, 0.020767562091350555, 0.039713311940431595, 0.035597555339336395, 0.0014947501476854086, -0.008505577221512794, 0.009584528394043446, 0.021031005308032036, -0.004932524170726538, -0.03671921044588089, 0.05476637929677963, -0.04245751351118088, -0.019462577998638153, 0.047619253396987915, 0.03206583112478256, -0.01956421695649624, -0.016456609591841698, 0.031098581850528717, -0.0009359680698253214, 0.015483359806239605, -0.043999671936035156, 0.013622235506772995, -0.008253248408436775, -0.01770998165011406, 0.019674057140946388, 0.033347152173519135, 0.021838733926415443, 0.034453827887773514, 0.026485802605748177, 0.003196899313479662, -0.03332429751753807, -0.0020551078487187624, -0.011864539235830307, 0.0050318436697125435, -0.036814719438552856, -0.018392683938145638, -0.022724339738488197, 0.008147132582962513, -0.01584184542298317, 0.05216960981488228, -0.030642304569482803, 0.013355566188693047, 0.0324656143784523, -0.031526241451501846, 0.048000749200582504, -0.013162712566554546, 0.002658339450135827, 0.0016062133945524693, -0.005896432790905237, -0.061696186661720276, -0.007739804685115814, -0.0038492127787321806, 0.0437421016395092, 0.03725210577249527, -0.05550197511911392, 0.0007003549253568053, 0.037778399884700775, -0.018861420452594757, 0.00647863931953907, -0.07413075119256973, -0.02802841179072857, -0.03444993123412132, -0.049691539257764816, -0.015407244674861431, -0.025911491364240646, -0.012969307601451874, 0.013788169249892235, 0.008049050346016884, -0.03747408092021942, 0.021433226764202118, 0.040543533861637115, -0.025181613862514496, 0.03235047310590744, -0.013104993849992752, 0.025490567088127136, -0.025681467726826668, -0.06848011910915375, -0.03940797224640846, 0.007015145383775234, -0.016272613778710365, 0.0024727655109018087, -0.004169430583715439, 0.021394900977611542, 0.004538434091955423, 0.009188602678477764, -0.01382478978484869, -0.024261049926280975, 0.006716546136885881, -0.040281519293785095, -0.00964497309178114, 0.027110522612929344, 0.005858201067894697, 0.030246879905462265, 0.03374424949288368, -0.015610531903803349, 0.05369100347161293, -0.018765784800052643, 0.015642374753952026, 0.039506830275058746, -0.00017088407184928656, -0.043289914727211, 0.012443282641470432, -0.04876869544386864, -0.04475172609090805, 0.005688803736120462, -0.02173062227666378, 0.027711302042007446, -0.006239884998649359, 0.0033122438471764326, 0.03424380347132683, -0.0029355075675994158, -0.028653834015130997, 0.050909411162137985, -0.012350962497293949, 0.0450797900557518, -0.016719264909625053, 0.027450980618596077, 0.033309657126665115, 0.0264511089771986, 0.0027628010138869286, -0.014152185060083866, 0.02618154138326645, -0.028141124173998833, 0.028757302090525627, 0.01673797145485878, -0.024996865540742874, 0.028292203322052956, -0.013446271419525146, -0.006977836601436138, -0.044619206339120865, -0.024951878935098648, -0.022639360278844833, 0.031580615788698196, 0.007955946959555149, 0.0023659884463995695, 0.025300927460193634, -0.010442370548844337, -0.022076794877648354, 0.010802382603287697, -0.05623841658234596, -0.058145567774772644, 0.03088321164250374, -0.008544080890715122, -0.02506847307085991, -0.032550834119319916, -0.03888930007815361, 0.03540082648396492, -0.00812545232474804, -0.03174227476119995, -0.03202681243419647, 0.021220913156867027, 0.018716419115662575, 0.028027912601828575, -0.016468755900859833, 0.02123909816145897, 0.03477421775460243, 0.025356102734804153, -0.0653953030705452, -0.045633140951395035, -0.002429079031571746, 0.029980633407831192, 0.013463749550282955, 0.0021774861961603165, 0.0006498545408248901, 0.020509520545601845, -0.00551875215023756, 0.00760516757145524, -0.035371605306863785, 0.03731093928217888, -0.03668816387653351, 0.023611633107066154, -0.010716245509684086, -0.00658202450722456, -0.041860636323690414, 0.015103751793503761, -0.01017639972269535, -0.03626618906855583, -0.04311741143465042, 0.02637137658894062, 0.04456639289855957, 0.014394340105354786, 0.036886345595121384, 0.04634170979261398, 0.01608436182141304, -0.022051900625228882, 0.013952399604022503, -0.02663489244878292, 0.059736836701631546, 0.04523705691099167, 0.021533075720071793, 0.004887525923550129, 0.019757036119699478, 0.0521080419421196, 0.018676063045859337, 0.0033635736908763647, 0.04993491619825363, 0.01953461393713951, -0.018883833661675453, -0.024997498840093613, -0.026284653693437576, 0.03908868879079819, -0.005235132295638323, -0.004525237251073122, -0.022931206971406937, -0.010191881097853184, -0.022116769105196, -0.002244955627247691, -0.05501580238342285, 0.08426344394683838, -0.024545202031731606, 0.01764810085296631, 0.006574581377208233, -0.03206581994891167, -0.01926361955702305, 0.018632367253303528, -0.00858284067362547, -0.009587991051375866, 0.030842861160635948, 0.032400086522102356, 0.041282977908849716, 0.05894583836197853, 0.014270411804318428, 0.005741414148360491, -0.021123604848980904, 0.006499257870018482, 0.00046739273238927126, 0.0007770250667817891, -0.030918767675757408, 0.022232841700315475, -0.032069239765405655, 0.028059694916009903, -0.029119238257408142, -0.0379975289106369, 0.016221066936850548, -0.03223249688744545, -0.031570881605148315, -0.0321740098297596, 0.05555935204029083, -0.023302236571907997, -0.02225850522518158, 0.04666583240032196, -0.02674434334039688, -0.019099503755569458, 0.0355113223195076, 0.029338691383600235, 0.030345521867275238, -0.011786159127950668, 0.04388635978102684, -0.014871206134557724, 0.012639733031392097, 0.06703459471464157, -0.04224605858325958, 0.009477868676185608, 0.004747446160763502, -0.006686382927000523, -0.034802742302417755, -0.02938508428633213, -0.012754544615745544, -0.01642140932381153, -0.03204195573925972, -0.026531709358096123, -0.01200906652957201, 0.01994575373828411, -0.013317670673131943, -0.06230366230010986, -0.001980334986001253, 0.04634057357907295, -0.06464606523513794, 0.014898162335157394, 0.004555271007120609, 0.05948033556342125, -0.0014948771568015218, -0.023078057914972305, -0.031545206904411316, -0.038900863379240036, 0.017878413200378418, -0.029879333451390266, 0.05551539734005928, -0.0012268682476133108, -0.03551343455910683, -0.029365764930844307, -0.035873591899871826, -0.030752001330256462, 0.022756246849894524, -0.06015409156680107, -0.04979601129889488, 0.025385219603776932, 0.033196330070495605, 0.013184895738959312, -0.0025518559850752354, -0.03530563786625862, 0.01960376650094986, 0.03447570279240608, 0.060150761157274246, 0.001829576794989407, 0.018947791308164597, 0.015609046444296837, 0.0002589506621006876, 0.030004601925611496, -0.010874297469854355, 0.03872315585613251, -0.01807449571788311, -0.008994647301733494, -0.011898767203092575, 0.01122982520610094, -0.049057092517614365, -0.07159065455198288, 0.015843192115426064, 0.027057403698563576, -0.019756987690925598, -0.03655869513750076, -0.07112052291631699, 0.005881207995116711, -0.0501134879887104, -0.012459595687687397, -0.013418416492640972, 0.02785828895866871, 0.024184521287679672, 0.0012978551676496863, 0.006308598909527063, -0.07224097847938538, 0.1591782569885254, 0.045139312744140625, 0.02460964396595955, -0.001993588637560606, 0.04071922227740288, 0.05360504984855652, 0.007955614477396011, 0.007661948446184397, -0.014363446272909641, -0.04234689846634865, 0.025141946971416473, -0.017891399562358856, 0.05039972811937332, 0.005385107360780239, 0.035046499222517014, 0.048479754477739334, -0.03979988768696785, 0.01208494696766138, 0.025004854425787926, -0.04607914760708809, -0.049830976873636246, 0.020233551040291786, 0.02448609657585621, 0.02501119300723076, -0.00895104929804802, 0.017272472381591797, -0.009152321144938469, -0.033914316445589066, -0.024844277650117874, -0.026296013966202736, 0.022522419691085815, -0.030953260138630867, 0.02979179285466671, 0.0015006932662799954, -0.062124982476234436, 0.054376762360334396, 0.004609288182109594, 0.013605620712041855, 0.016674978658556938, 0.00041628495091572404, -0.026844574138522148, 0.0047055985778570175, 0.016330594196915627, -0.045055970549583435, 0.0128473537042737, 0.04624294489622116, -0.03529578819870949, 0.029544759541749954, 0.051556192338466644, -0.047047801315784454, 0.07206925749778748, -0.025504345074295998, 0.03569136932492256, 0.005369266495108604, -0.015700867399573326, 0.0008813709137029946, -0.004413658753037453, -0.015910526737570763, 0.005977680906653404, -0.00580351147800684, 0.03732991963624954, -0.005417887587100267, -0.021247681230306625, 0.006965355947613716, -0.005447807721793652, 0.006214522290974855, 0.019056927412748337, -0.03246357664465904, -0.02420683205127716, -0.03852127492427826, -0.028507433831691742, -0.0017358646728098392, 0.0036320912186056376, 0.01088731735944748, 0.010593973100185394, 0.020733747631311417, -0.0349310003221035, 0.03210432827472687, 0.015461347997188568, -0.006654346361756325, -0.026062386110424995, -0.06613234430551529, 0.0009431906510144472, 0.01084926538169384, 0.005633905529975891, 0.017832236364483833, -0.032985277473926544, -0.03744501620531082, -0.024005640298128128, 0.05725567787885666, 0.022967394441366196, 0.04477677121758461, 0.0009473220561631024, -0.03316720947623253, -0.008176335133612156 ]
using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CSharpCanvas { public partial class CanvasRenderingContext2d { protected Cairo.Color ParseColor(string value) { var idxRgb = value.IndexOf("rgb("); var idxRgba = value.IndexOf("rgba("); if (idxRgb < 0 && idxRgba < 0) throw new NotSupportedException("Fillstyle syntax is not supported"); var idxStart = Math.Max(idxRgba, idxRgb); idxStart += idxRgb < 0 ? 5 : 4; var fctEnd = value.IndexOf(")", idxStart); var fctArgs = value.Substring(idxStart, fctEnd - idxStart); var args = fctArgs.Split(',').Select(c => c.Trim()).ToList(); Func<string, double> dInvParse = (s) => double.Parse(s, CultureInfo.InvariantCulture.NumberFormat); var color = new Cairo.Color(dInvParse(args[0]) / 255.0, dInvParse(args[1]) / 255.0, dInvParse(args[2]) / 255.0); if (args.Count == 4) color.A = dInvParse(args[3]); return color; } public string patternQuality { get { switch (state.patternQuality) { case Cairo.Filter.Best: return "best"; case Cairo.Filter.Fast: return "fast"; case Cairo.Filter.Good: return "good"; } return null; } set { switch (value) { case "best": state.patternQuality = Cairo.Filter.Best; break; case "fast": state.patternQuality = Cairo.Filter.Fast; break; case "good": state.patternQuality = Cairo.Filter.Good; break; } } } public string globalCompositeOperation { get { switch (this.canvas.Context.Operator) { case Cairo.Operator.Atop: return "source-atop"; case Cairo.Operator.In: return "source-in"; case Cairo.Operator.Out: return "source-out"; case Cairo.Operator.Xor: return "xor"; case Cairo.Operator.DestAtop: return "destination-atop"; case Cairo.Operator.DestIn: return "destination-in"; case Cairo.Operator.DestOut: return "destination-out"; case Cairo.Operator.DestOver: return "destination-over"; case Cairo.Operator.Add: return "lighter"; case Cairo.Operator.Clear: return "clear"; case Cairo.Operator.Source: return "source"; case Cairo.Operator.Dest: return "dest"; case Cairo.Operator.Over: return "over"; case Cairo.Operator.Saturate: return "saturate"; } return null; } set { switch (value) { case "source-atop": canvas.Context.Operator = Cairo.Operator.Atop; break; case "source-in": canvas.Context.Operator = Cairo.Operator.In; break; case "source-out": canvas.Context.Operator = Cairo.Operator.Out; break; case "xor": canvas.Context.Operator = Cairo.Operator.Xor; break; case "destination-atop": canvas.Context.Operator = Cairo.Operator.DestAtop; break; case "destination-in": canvas.Context.Operator = Cairo.Operator.DestIn; break; case "destination-out": canvas.Context.Operator = Cairo.Operator.DestOut; break; case "destination-over": canvas.Context.Operator = Cairo.Operator.DestOver; break; case "lighter": canvas.Context.Operator = Cairo.Operator.Add; break; case "clear": canvas.Context.Operator = Cairo.Operator.Clear; break; case "source": canvas.Context.Operator = Cairo.Operator.Source; break; case "dest": canvas.Context.Operator = Cairo.Operator.Dest; break; case "over": canvas.Context.Operator = Cairo.Operator.Over; break; case "saturate": canvas.Context.Operator = Cairo.Operator.Saturate; break; } } } public double globalAlpha { get { return state.globalAlpha; } set { state.globalAlpha = value; } } public string shadowColor { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public string fillStyle { get { return "rgba(" + state.fillColor.R + "," + state.fillColor.G + "," + state.fillColor.B + "," + state.fillColor.A + ")"; } set { this.state.fillColor = ParseColor(value); } } public string strokeStyle { get { return "rgba(" + state.strokeColor.R + "," + state.strokeColor.G + "," + state.strokeColor.B + "," + state.strokeColor.A + ")"; } set { this.state.strokeColor = ParseColor(value); } } public double miterLimit { get { return this.canvas.Context.MiterLimit; } set { this.canvas.Context.MiterLimit = value; } } public double lineWidth { get { return this.canvas.Context.LineWidth; } set { this.canvas.Context.LineWidth = value; } } public string lineCap { get { switch (this.canvas.Context.LineCap) { case Cairo.LineCap.Butt: return "butt"; case Cairo.LineCap.Round: return "round"; case Cairo.LineCap.Square: return "square"; } return "butt"; } set { switch (value) { case "round": this.canvas.Context.LineCap = Cairo.LineCap.Round; break; case "square": this.canvas.Context.LineCap = Cairo.LineCap.Square; break; default: this.canvas.Context.LineCap = Cairo.LineCap.Butt; break; } } } public string lineJoin { get { switch (this.canvas.Context.LineJoin) { case Cairo.LineJoin.Bevel: return "bevel"; case Cairo.LineJoin.Miter: return "miter"; case Cairo.LineJoin.Round: return "round"; } return "miter"; } set { switch (value) { case "bevel": this.canvas.Context.LineJoin = Cairo.LineJoin.Bevel; break; case "round": this.canvas.Context.LineJoin = Cairo.LineJoin.Round; break; default: this.canvas.Context.LineJoin = Cairo.LineJoin.Miter; break; } } } public int shadowOffsetX { get { return state.shadowOffsetX; } set { state.shadowOffsetX = value; } } public int shadowOffsetY { get { return state.shadowOffsetY; } set { state.shadowOffsetY = value; } } public int shadowBlur { get { return state.shadowBlur; } set { state.shadowBlur = value; } } public string antialias { get { switch (this.canvas.Context.Antialias) { case Cairo.Antialias.None: return "none"; case Cairo.Antialias.Gray: return "gray"; case Cairo.Antialias.Subpixel: return "subpixel"; default: return "default"; } } set { switch (value) { case "none": this.canvas.Context.Antialias = Cairo.Antialias.None; break; case "gray": this.canvas.Context.Antialias = Cairo.Antialias.Gray; break; case "subpixel": this.canvas.Context.Antialias = Cairo.Antialias.Subpixel; break; default: this.canvas.Context.Antialias = Cairo.Antialias.Default; break; } } } public string textDrawingMode { get { return state.textDrawingMode; } set { state.textDrawingMode = value; } } } }
[ -0.03022826835513115, -0.014341387897729874, 0.005453133024275303, 0.012818626128137112, -0.020191743969917297, -0.003912190441042185, 0.003595072543248534, 0.004552298225462437, 0.028730880469083786, 0.0568159781396389, 0.028224920853972435, 0.007377814967185259, 0.007615051232278347, -0.03323298320174217, -0.0110951978713274, 0.008830566890537739, -0.023784635588526726, -0.027242159470915794, -0.034492675215005875, 0.031697873026132584, -0.006257086992263794, 0.024302713572978973, -0.08956634253263474, -0.044852934777736664, -0.008642162196338177, 0.03028765320777893, 0.03571438044309616, -0.018834039568901062, 0.03865763172507286, 0.060513123869895935, -0.019415326416492462, -0.013157418929040432, 0.033793773502111435, -0.03620469942688942, -0.030068304389715195, 0.0031517536845058203, 0.03576463833451271, -0.015056011267006397, -0.029795240610837936, -0.033706098794937134, 0.024072999134659767, -0.059879302978515625, 0.02617644891142845, -0.05915071815252304, -0.04223859682679176, -0.004569861572235823, 0.0032205390743911266, -0.014315668493509293, 0.0031216596253216267, -0.016776755452156067, -0.01629284769296646, -0.014917759224772453, 0.019919591024518013, -0.005932097788900137, -0.007042906247079372, 0.018045689910650253, 0.0335882343351841, -0.008020061999559402, -0.03851509094238281, 0.027068069204688072, 0.011158505454659462, 0.014635792002081871, 0.020740069448947906, -0.07665758579969406, 0.017790066078305244, 0.027145864441990852, -0.023469362407922745, 0.011976697482168674, 0.017108580097556114, -0.018568040803074837, -0.041335564106702805, 0.012536603026092052, -0.004821800626814365, -0.02046074904501438, -0.004083004780113697, 0.002489096950739622, -0.004482966382056475, -0.019291069358587265, 0.0029590872582048178, 0.004542915616184473, -0.013639718294143677, 0.022081760689616203, -0.005856280215084553, 0.02492382377386093, -0.05449765548110008, -0.02185206674039364, -0.00929955579340458, 0.012074239552021027, 0.012845982797443867, 0.005002850200980902, -0.03971803933382034, 0.059711892157793045, -0.03355864807963371, -0.006495252251625061, 0.009334092028439045, 0.07745193690061569, -0.042384885251522064, 0.0447961688041687, 0.009265754371881485, 0.0159649346023798, 0.054616235196590424, 0.038558006286621094, -0.016825005412101746, 0.035939186811447144, -0.04778951033949852, -0.003156601684167981, -0.03170005604624748, 0.01744677498936653, -0.02894514426589012, -0.055178288370370865, 0.017119091004133224, -0.0025544422678649426, 0.03206300735473633, -0.0034667474683374166, -0.009779195301234722, 0.05478781461715698, 0.015283343382179737, 0.025908177718520164, -0.03153593838214874, 0.016062842682003975, 0.024910617619752884, -0.004033328033983707, 0.03613214194774628, -0.019829530268907547, 0.022216668352484703, -0.019648011773824692, -0.02114287205040455, 0.059942491352558136, -0.044734299182891846, -0.01936236582696438, 0.01592077501118183, -0.024229923263192177, 0.005492808297276497, 0.013289401307702065, -0.030070319771766663, 0.040027111768722534, -0.019614245742559433, 0.025577835738658905, -0.004993913229554892, -0.04536006972193718, 0.05081136152148247, 0.03789881616830826, -0.02077854610979557, 0.09206898510456085, 0.019800471141934395, 0.034113772213459015, 0.04940447211265564, 0.030009346082806587, -0.049151066690683365, 0.013415258377790451, -0.032467857003211975, 0.043339185416698456, 0.0013658750103786588, 0.002809996949508786, -0.005257210694253445, -0.00847535114735365, 0.020556265488266945, -0.012714735232293606, 0.03096158616244793, 0.03796621412038803, -0.027604827657341957, 0.010808092541992664, -0.019834304228425026, 0.034215737134218216, -0.01774020493030548, 0.030124377459287643, -0.04773923009634018, -0.015785906463861465, 0.02175438031554222, -0.014335667714476585, 0.02210795134305954, -0.013555833138525486, 0.007762289140373468, 0.007977462373673916, 0.03237108513712883, 0.03329404816031456, 0.00895760953426361, -0.025316787883639336, 0.016956700012087822, 0.04710162803530693, -0.0074644689448177814, -0.010235518217086792, -0.029954660683870316, 0.04978819936513901, 0.0171893909573555, 0.010155080817639828, 0.02772555500268936, -0.017758579924702644, -0.03345899656414986, -0.026605574414134026, 0.015615180134773254, 0.03156159818172455, -0.019183598458766937, 0.025014754384756088, 0.00832444615662098, 0.024287158623337746, -0.03714480623602867, -0.006241580005735159, -0.03060249052941799, -0.06969958543777466, -0.022211555391550064, 0.027366409078240395, -0.027961956337094307, 0.03577283397316933, 0.010021734051406384, -0.03083486668765545, 0.02022203803062439, 0.031098105013370514, -0.03300290182232857, 0.024090290069580078, 0.01792716234922409, -0.0010808310471475124, -0.01341437827795744, 0.005521588493138552, 0.02113226428627968, -0.010607215575873852, -0.03154406324028969, 0.044163305312395096, 0.009425832889974117, 0.0009272242314182222, 0.004367633257061243, 0.009876880794763565, 0.03441998362541199, 0.032902225852012634, 0.007295571733266115, -0.01322705578058958, 0.005062112584710121, 0.028294047340750694, 0.024207547307014465, 0.017222417518496513, -0.023279981687664986, 0.04887000098824501, 0.012221360579133034, 0.038690268993377686, 0.02097342535853386, 0.010757935233414173, 0.030791593715548515, 0.037106312811374664, -0.024789538234472275, 0.03397655114531517, -0.024418417364358902, 0.0440320260822773, 0.04186200723052025, 0.041429243981838226, -0.0051453071646392345, 0.005250042304396629, -0.013206077739596367, -0.013714347966015339, -0.008475694805383682, 0.030511025339365005, -0.016351833939552307, 0.06309567391872406, 0.028109528124332428, 0.021794427186250687, -0.019203661009669304, -0.005798842757940292, 0.03466701880097389, 0.048006244003772736, -0.0077890558168292046, -0.02203630469739437, 0.013796510174870491, 0.01377888023853302, -0.005118969362229109, -0.0012002091389149427, 0.014428667724132538, 0.014468619599938393, 0.02345135249197483, 0.000178654765477404, 0.005317011382430792, -0.05670538917183876, -0.0577784925699234, -0.02889428287744522, -0.06526044011116028, -0.031943872570991516, -0.04138324037194252, 0.01669112779200077, 0.040491219609975815, -0.051330652087926865, 0.04154442623257637, 0.02021421678364277, -0.013237695209681988, -0.043706994503736496, -0.03383748605847359, 0.027643848210573196, 0.03162001073360443, 0.03364948928356171, -0.020740369334816933, 0.015299643389880657, 0.02425166219472885, 0.03708929568529129, -0.06029989942908287, -0.04306410625576973, -0.0007061573560349643, 0.0042331162840127945, 0.0017768865218386054, -0.022854376584291458, 0.02140904776751995, -0.0068983170203864574, -0.02734617330133915, -0.06492046266794205, -0.006134573835879564, -0.01340893842279911, -0.013375925831496716, 0.007999375462532043, -0.037526875734329224, 0.03243914619088173, 0.02092764526605606, -0.0098305968567729, 0.047128770500421524, 0.04520730674266815, -0.03549075126647949, 0.030890323221683502, -0.0029014977626502514, -0.005101734306663275, -0.05342527851462364, 0.033788051456213, 0.055651236325502396, -0.01686328649520874, -0.0545840710401535, -0.022270627319812775, -0.02214956283569336, -0.008513509295880795, 0.01130740623921156, -0.005059286952018738, -0.04303102567791939, 0.05309909209609032, 0.00031902806949801743, -0.058451492339372635, 0.04075874388217926, -0.04417312145233154, -0.010637088678777218, -0.02800232544541359, -0.047100283205509186, 0.028456343337893486, 0.026243697851896286, 0.02563292160630226, 0.007124166935682297, 0.015446741133928299, 0.010241546668112278, 0.0005501055857166648, 0.04213438928127289, -0.035995446145534515, 0.013415185734629631, 0.03204573690891266, 0.019939959049224854, 0.0069890315644443035, -0.0060141910798847675, -0.006187750957906246, -0.017118752002716064, 0.0064443545415997505, -0.019466418772935867, 0.03643340244889259, 0.028354132547974586, 0.011290428228676319, 0.013566503301262856, 0.07636943459510803, -0.04516252875328064, 0.003989220596849918, 0.021495988592505455, 0.03769255429506302, 0.0355633981525898, 0.003873093519359827, -0.0026282155886292458, -0.029807141050696373, -0.04429706558585167, -0.08453913778066635, 0.027884943410754204, 0.05457495525479317, 0.05162903293967247, -0.039147667586803436, 0.066615030169487, -0.0007060978678055108, -0.01919623650610447, 0.038051631301641464, -0.037969425320625305, 0.005863572936505079, 0.04771105572581291, -0.004567274823784828, 0.05191260948777199, -0.059064172208309174, 0.005001876503229141, -0.018718138337135315, 0.014876032248139381, 0.04052014276385307, 0.017700619995594025, 0.025929810479283333, -0.012645596638321877, 0.0022201347164809704, -0.01795371063053608, -0.044713351875543594, 0.005059369839727879, -0.013446583412587643, 0.017067164182662964, -0.025999732315540314, -0.02533682808279991, -0.038727931678295135, 0.022734884172677994, 0.03452897071838379, 0.060945212841033936, 0.01907953992486, 0.006118349265307188, -0.014417272992432117, 0.014967870898544788, 0.016342828050255775, -0.04343285784125328, 0.009368845261633396, -0.031396493315696716, 0.043579716235399246, 0.003410358214750886, -0.020558249205350876, -0.03487483784556389, -0.033132828772068024, -0.04547078162431717, 0.03656928241252899, -0.0032698570284992456, -0.011320759542286396, -0.07301217317581177, 0.014928948134183884, 0.015348119661211967, 0.03489471226930618, -0.024367865175008774, -0.03560420870780945, -0.004409064073115587, 0.05645496025681496, 0.0288226455450058, -0.05857856199145317, -0.004930790048092604, -0.018449148163199425, 0.03758848458528519, 0.02831987477838993, -0.02933858148753643, -0.020658357068896294, -0.0269243773072958, -0.025910820811986923, -0.03840052708983421, 0.02737266570329666, 0.050191134214401245, -0.014531263150274754, 0.01644301414489746, -0.05006114020943642, 0.01598338969051838, 0.03986091539263725, -0.0010642301058396697, -0.01683613657951355, 0.0007289812201634049, 0.003456160193309188, -0.012782747857272625, 0.05256524309515953, -0.0313480980694294, -0.02236558310687542, 0.01465823594480753, -0.055747926235198975, 0.01619604043662548, -0.00009421978757018223, -0.01338530145585537, -0.02038111351430416, 0.010509551502764225, 0.03307100385427475, 0.03255600109696388, -0.01543079037219286, -0.01676693744957447, -0.026696929708123207, 0.0357230119407177, -0.02641148678958416, -0.0525849387049675, 0.06055529788136482, -0.02471567876636982, -0.01300774235278368, 0.03708333894610405, 0.03625437617301941, -0.04031957685947418, -0.00039907469181343913, 0.02008245512843132, -0.07736502587795258, 0.02500000223517418, -0.041366368532180786, -0.011632228270173073, -0.04556822031736374, -0.01247868500649929, -0.006029021926224232, -0.04797134920954704, 0.05322796478867531, 0.01609588973224163, -0.0638158842921257, -0.034662604331970215, -0.042938366532325745, -0.015050411224365234, -0.007568097207695246, -0.04292646422982216, 0.0068335323594510555, -0.010462719015777111, -0.02164718694984913, 0.01436556875705719, -0.00969772506505251, 0.020973876118659973, -0.0075720082968473434, -0.007004959508776665, -0.00522855669260025, 0.020829349756240845, -0.014312095008790493, 0.02188158966600895, 0.0139409014955163, -0.0561426505446434, 0.012857355177402496, -0.015965092927217484, -0.009703132323920727, -0.0331304594874382, -0.0010325287003070116, -0.04817649722099304, -0.02117127738893032, 0.0004319051222410053, 0.0037272085901349783, -0.034923430532217026, 0.00537286838516593, 0.05633288249373436, 0.027664313092827797, 0.017006075009703636, 0.011641891673207283, -0.021011129021644592, 0.03754834458231926, 0.013049167580902576, -0.03457041084766388, -0.020781010389328003, 0.06502117216587067, -0.002064832951873541, 0.04941591992974281, -0.01994813047349453, -0.012502656318247318, -0.057006362825632095, -0.016475312411785126, 0.008263356052339077, -0.03047470562160015, -0.014149156399071217, -0.054862894117832184, -0.04111954942345619, -0.018651176244020462, 0.040008097887039185, 0.011371997185051441, -0.044167548418045044, -0.01526196114718914, -0.03555188700556755, 0.036912064999341965, -0.049268338829278946, -0.010661891661584377, -0.03707381710410118, -0.01857628859579563, -0.01282584760338068, 0.042612988501787186, 0.0009652457665652037, 0.03324098512530327, 0.03722182661294937, 0.00772554986178875, 0.011432661674916744, -0.00887009035795927, -0.04374997317790985, -0.048328548669815063, -0.008067443035542965, 0.00443445798009634, 0.0004289826611056924, 0.004222162067890167, -0.022649217396974564, 0.028009096160531044, -0.05530666559934616, 0.017421556636691093, -0.0169085506349802, -0.003128384705632925, 0.0035689002834260464, 0.002846010262146592, 0.05349162966012955, -0.03828649967908859, 0.0020513532217592, -0.033214665949344635, 0.05468519404530525, 0.027972161769866943, 0.017408328130841255, -0.027987811714410782, -0.04885116219520569, -0.05994836986064911, -0.05521088466048241, 0.034984149038791656, -0.05059104040265083, -0.01362289022654295, -0.041149385273456573, -0.01796114258468151, 0.05543525144457817, 0.000683928607031703, 0.036302339285612106, 0.0800403356552124, 0.02567107230424881, 0.0035687191411852837, -0.023722708225250244, -0.00011436529166530818, 0.038886941969394684, -0.04452202096581459, 0.0052019283175468445, -0.0005131700891070068, -0.04109013080596924, -0.010018350556492805, -0.042663417756557465, -0.055368635803461075, -0.04108249023556709, -0.0022532742004841566, 0.07142630964517593, -0.04490785673260689, 0.037863362580537796, 0.008612900972366333, -0.05379420518875122, -0.07077095657587051, 0.027452830225229263, -0.006293622311204672, -0.0024155140854418278, 0.053326163440942764, 0.021813368424773216, 0.014680932275950909, 0.010807322338223457, 0.010766860097646713, -0.03262392058968544, -0.03595893457531929, 0.07262657582759857, -0.01247210893779993, -0.03724372014403343, 0.041639138013124466, 0.02670445293188095, -0.05310449376702309, -0.043863747268915176, 0.0009626668761484325, -0.01516661699861288, -0.007975751534104347, -0.03219761326909065, -0.019438188523054123, 0.016579175367951393, -0.008654609322547913, -0.011728399433195591, 0.02974112145602703, 0.019846104085445404, 0.030635260045528412, 0.006976117845624685, 0.05292312800884247, -0.034816574305295944, 0.02189970389008522, 0.03778069093823433, -0.002311465796083212, -0.0024891775101423264, -0.03944971412420273, -0.025516899302601814, 0.0024871472269296646, 0.008515088818967342, 0.05897734314203262, 0.014615756459534168, 0.0019895052537322044, -0.002909683622419834, -0.007699755020439625, 0.05068095773458481, -0.0014304115902632475, -0.020000768825411797, 0.023821435868740082, -0.03649241477251053, -0.06934921443462372, -0.027975469827651978, 0.026513725519180298, 0.04002571105957031, 0.03410319611430168, -0.049351099878549576, 0.042122673243284225, 0.05060121417045593, 0.004659219179302454, 0.028552815318107605, -0.08685508370399475, -0.02048652619123459, -0.06043538078665733, -0.03794575482606888, -0.023791396990418434, -0.0028978537302464247, 0.004753087181597948, 0.010588233359158039, 0.0004567502473946661, -0.043203141540288925, 0.005292379762977362, 0.019433684647083282, -0.0015890535432845354, -0.002390629146248102, -0.025373239070177078, 0.007245809771120548, -0.05824071913957596, -0.019150013104081154, -0.05571546033024788, 0.01935127191245556, 0.0036364691331982613, 0.003350519109517336, -0.049768462777137756, 0.00540260411798954, -0.020784590393304825, 0.031133221462368965, -0.022054461762309074, 0.02802261896431446, -0.01667695678770542, -0.012962632812559605, -0.01922847144305706, -0.0036070034839212894, -0.012381832115352154, 0.031665951013565063, 0.05062609538435936, -0.030258415266871452, -0.015325360931456089, 0.010553675703704357, -0.007379569578915834, -0.02975180372595787, 0.03505087271332741, -0.016921183094382286, -0.01197474729269743, -0.016536880284547806, -0.040310442447662354, -0.010677952319383621, -0.02561729960143566, 0.01533422153443098, -0.010839791037142277, 0.0015197498723864555, 0.002155546797439456, -0.029120901599526405, 0.020692676305770874, 0.08207563310861588, -0.012914692051708698, 0.04905245080590248, 0.005141873843967915, -0.010679217986762524, 0.014249639585614204, -0.00902593694627285, 0.016595114022493362, 0.01928531564772129, 0.03328497335314751, -0.036774057894945145, 0.02247605472803116, -0.002969869412481785, -0.007355131208896637, 0.03480968624353409, -0.03534117341041565, -0.019092876464128494, -0.03192467242479324, -0.022293787449598312, -0.007979369722306728, 0.038951121270656586, 0.02876455895602703, -0.024206481873989105, 0.027544399723410606, -0.029050255194306374, -0.021583665162324905, 0.051413509994745255, -0.04937878996133804, -0.047220584005117416, 0.021207161247730255, -0.026030508801341057, 0.008577166125178337, -0.029002156108617783, -0.038544509559869766, -0.010478608310222626, -0.001838057185523212, -0.03467278555035591, -0.005525277461856604, 0.04658517614006996, 0.016043007373809814, 0.03551870584487915, -0.015225292183458805, 0.01841050386428833, 0.03408826142549515, 0.03087150678038597, -0.03068464621901512, -0.06830650568008423, 0.011231908574700356, 0.005224576219916344, 0.04895487800240517, 0.006282157264649868, -0.008478743024170399, 0.012084740214049816, -0.04003637284040451, 0.032968197017908096, 0.005442515481263399, 0.005515890661627054, -0.017784172669053078, 0.0048200455494225025, -0.019023485481739044, 0.019550852477550507, -0.02634420059621334, 0.033828005194664, 0.005537439603358507, -0.046551983803510666, -0.02649163268506527, 0.042170505970716476, 0.07063694298267365, -0.01661057583987713, 0.050739362835884094, 0.016825377941131592, 0.043022386729717255, -0.006416094955056906, 0.00028936713351868093, -0.027711840346455574, 0.02940531261265278, 0.05707063898444176, 0.061273567378520966, -0.003426085924729705, 0.0004930333816446364, 0.06825215369462967, 0.017072768881917, 0.0035009244456887245, 0.024115625768899918, 0.026591960340738297, -0.016144413501024246, -0.01640063151717186, -0.023956654593348503, 0.0020962574053555727, 0.000367756059858948, 0.0028194093611091375, 0.01051902212202549, -0.05695477873086929, 0.00519873620942235, -0.01203077007085085, -0.024147316813468933, 0.02222791686654091, 0.001068035257048905, 0.017405148595571518, -0.013727746903896332, -0.013253779150545597, -0.0005031903274357319, 0.03955668956041336, 0.011873306706547737, 0.02824276126921177, 0.0391179658472538, 0.022335324436426163, 0.0027834242209792137, 0.00928148627281189, 0.021016335114836693, 0.030510300770401955, -0.02256457507610321, 0.00041500027873553336, 0.031174471601843834, 0.018382694572210312, -0.01759961247444153, 0.0064834728837013245, -0.05109555646777153, 0.04109905660152435, -0.027548078447580338, -0.01779887266457081, 0.017941374331712723, -0.04640786349773407, -0.010462639853358269, -0.043484028428792953, 0.019877297803759575, -0.027093157172203064, -0.015750398859381676, 0.05352165922522545, -0.004535567946732044, -0.03267166391015053, 0.05712433159351349, -0.013066552579402924, 0.015525895170867443, -0.011364715173840523, 0.0605408139526844, 0.011225742287933826, 0.06967493891716003, 0.04711241275072098, -0.02774832770228386, 0.0036449928302317858, 0.04782329872250557, -0.022720681503415108, -0.034537363797426224, -0.024122821167111397, -0.03722023591399193, -0.00039034837391227484, -0.03652235493063927, -0.0316137820482254, -0.0029399781487882137, 0.055590640753507614, -0.01829703152179718, -0.049326758831739426, -0.0052240705117583275, 0.027177821844816208, -0.04564547538757324, -0.003419722430408001, 0.030279500409960747, 0.0020917924121022224, 0.004897166043519974, -0.02804695814847946, -0.05377490445971489, -0.029551532119512558, 0.02372218482196331, -0.03086923435330391, 0.035968732088804245, -0.017112890258431435, -0.023116357624530792, -0.015312404371798038, -0.04241076484322548, -0.02855599671602249, 0.006588274613022804, -0.014364175498485565, -0.041539084166288376, 0.04032427445054054, 0.052745528519153595, -0.006429100409150124, 0.0011702491901814938, -0.0209475327283144, -0.009265944361686707, 0.019431443884968758, 0.06961970776319504, 0.0025127914268523455, 0.0512363500893116, 0.044825468212366104, -0.03338194638490677, 0.04625004157423973, -0.027398336678743362, 0.0021406617015600204, -0.00854673981666565, -0.02113424614071846, -0.003036396810784936, 0.03229767084121704, -0.04094512760639191, -0.04836282506585121, 0.006849910598248243, 0.04137536883354187, 0.01585514470934868, -0.034672703593969345, -0.0727725401520729, -0.02103833109140396, -0.04001292958855629, 0.0056212241761386395, -0.023501157760620117, 0.020547574386000633, -0.016230350360274315, -0.007497510872781277, 0.005252381786704063, -0.047175996005535126, 0.15005238354206085, 0.036436423659324646, 0.03408150002360344, 0.04801740497350693, 0.03137426823377609, 0.05466031655669212, 0.005265177693217993, -0.02168821170926094, 0.01447837334126234, -0.01958099566400051, 0.04523638263344765, 0.007319847121834755, 0.018866870552301407, 0.02664324641227722, 0.017249543219804764, 0.039291441440582275, -0.06297620385885239, -0.010909494012594223, 0.028906062245368958, -0.037860870361328125, -0.06116864085197449, 0.036539651453495026, 0.002390313195064664, 0.027108076959848404, -0.020115945488214493, 0.02206028252840042, 0.011152044869959354, -0.052908651530742645, -0.026968682184815407, -0.004904692992568016, 0.02170734852552414, -0.01425583753734827, 0.043962012976408005, -0.0026953064370900393, -0.0028643279802054167, 0.050033777952194214, 0.051376789808273315, -0.0185503289103508, 0.0003395075327716768, 0.006309442222118378, -0.007850094698369503, -0.03283683955669403, -0.0006590583943761885, -0.04668361321091652, -0.0001494196621933952, -0.012069997377693653, -0.0338871069252491, 0.014418747276067734, 0.009362711571156979, -0.02593804895877838, 0.04673565924167633, -0.021596524864435196, 0.03213582560420036, -0.010874725878238678, -0.02538464032113552, 0.005410053767263889, -0.00599879352375865, -0.0031537662725895643, 0.007716714404523373, 0.013927208259701729, 0.004986183252185583, 0.009347236715257168, 0.00929147470742464, 0.0018322295509278774, -0.047233354300260544, 0.008896376006305218, 0.02944466844201088, 0.012509457767009735, -0.01583145745098591, -0.003821725258603692, -0.0050225029699504375, -0.01622714288532734, 0.023073868826031685, 0.016637543216347694, 0.039405789226293564, 0.06091759726405144, -0.04013014957308769, 0.05516183376312256, -0.00558718666434288, -0.010805520229041576, 0.0013511242577806115, -0.0426170788705349, -0.005686853546649218, -0.004771648906171322, 0.022426577284932137, 0.019736608490347862, -0.07706264406442642, -0.039467133581638336, -0.04460986331105232, 0.04617566987872124, 0.03276767581701279, 0.04257011413574219, -0.012598552741110325, -0.012088567018508911, -0.03137227147817612 ]
Q: Allowing Wildcards in Access Query I was wondering if someone could help me with this. I have a form in Access that has a combo box to look up an item number. Right now the Row Source is something like Select ItemCode, ItemDescription From MyTable Where ItemType = 'G' I would like to change it to allow a wild card. So right now if you type in C* it will not work. How do I make that work? Do I just update it to say Select ItemCode From MyTable Where ItemType = 'G' or is there more to it? It's calling a query which is calling a SQL database. It's passing parameters like the date and itemcode. It's calling a pass-through query to the database That looks like this... pt_JobAnalysis '12/26/2017' , '01/26/2018' , '' , '10516' , '' sSQL = sProcedureName & " '" & Me.txtFrom & "' , '" & Me.txtTo & "'" Thank you so much. A: Something like this should do it: "Like '*'" OR . . . If IsNull(Me.txtFirstName.Value) Then strFirstName = "Like '*'" Else SelectCase Me.fraFirstName.Value Case 1 strFirstName = "Like '" & Me.txtFirstName.Value & "*'" Case 2 strFirstName = "Like '*" & Me.txtFirstName.Value & "*'" Case 3 strFirstName = "Like '*" & Me.txtFirstName.Value & "'" Case 4 strFirstName = "= '" & Me.txtFirstName.Value & "'" End Select End If FINALLY . . . The link below should help you a lot! https://www.fontstuff.com/access/acctut19.htm
[ -0.018665330484509468, 0.006196595728397369, 0.030556723475456238, 0.0034926305525004864, -0.009587373584508896, -0.007534173782914877, 0.0046492223627865314, 0.020626250654459, 0.00781792588531971, 0.046113766729831696, 0.029645713046193123, 0.03875140845775604, 0.0032018970232456923, -0.022389864549040794, -0.030584780499339104, -0.0020904999691993, 0.0005584424361586571, -0.019846029579639435, 0.0061019416898489, 0.019504019990563393, 0.0036995774134993553, 0.016747554764151573, -0.07846783846616745, -0.008042260073125362, -0.017126966267824173, 0.015876105055212975, 0.023167384788393974, -0.0345756821334362, 0.04108134284615517, 0.06642672419548035, -0.019718023017048836, -0.04660128057003021, 0.018588393926620483, -0.024121643975377083, -0.04675721377134323, -0.02035907469689846, 0.06549153476953506, -0.028031032532453537, -0.028924301266670227, -0.037233684211969376, 0.012606002390384674, -0.019139349460601807, 0.0323292501270771, -0.03710867464542389, -0.049814291298389435, 0.006949242670089006, -0.022436730563640594, -0.000672955357003957, 0.014445830136537552, -0.030398346483707428, -0.015665357932448387, -0.007945987395942211, 0.02721562422811985, 0.010394987650215626, -0.012510712258517742, 0.014637074433267117, 0.0435362234711647, -0.01723548024892807, -0.04173550754785538, 0.03335895016789436, 0.0024044231977313757, -0.011445597745478153, 0.026470810174942017, -0.03368513286113739, 0.038863006979227066, 0.0005690617254003882, 0.00527271069586277, -0.01687420904636383, 0.02513645403087139, -0.032388798892498016, -0.01859685219824314, 0.013524387963116169, -0.00815686397254467, -0.007248484063893557, 0.0017772469436749816, -0.02118741348385811, -0.011435654014348984, -0.0021814361680299044, -0.020348571240901947, 0.023235619068145752, -0.018441766500473022, 0.06463391333818436, 0.021093299612402916, 0.03153254836797714, -0.054335158318281174, -0.008881425485014915, 0.006800524424761534, 0.029556453227996826, 0.019294772297143936, 0.012387142516672611, -0.03968849778175354, 0.05980644375085831, 0.017357608303427696, -0.03329838067293167, 0.03628156706690788, 0.055788323283195496, -0.019503816962242126, 0.01988285221159458, 0.018072398379445076, -0.010288332588970661, 0.03288352116942406, 0.015206092968583107, -0.011285047046840191, 0.03912164270877838, 0.004125220701098442, 0.028510229662060738, 0.01026662066578865, 0.013038510456681252, -0.01446558814495802, -0.03689992427825928, -0.010157807730138302, -0.012389510869979858, 0.018237825483083725, -0.00014501824625767767, -0.023766417056322098, 0.015103478915989399, 0.0168917179107666, 0.047645993530750275, -0.03574210777878761, 0.0008770519052632153, 0.031162597239017487, 0.0004766301717609167, 0.01471004169434309, -0.011360380798578262, -0.0037565608508884907, -0.03514839708805084, -0.042587760835886, 0.03855972737073898, -0.060761693865060806, -0.013842526823282242, -0.00003051848761970177, -0.0022789863869547844, 0.001615234650671482, 0.04071231931447983, -0.013738906942307949, 0.0443851612508297, 0.011857681907713413, 0.04999350383877754, -0.0023912154138088226, -0.059799809008836746, 0.05997205898165703, 0.04422881826758385, -0.013890305534005165, 0.08430468291044235, 0.011954409070312977, 0.025838669389486313, 0.03262580931186676, 0.03283218666911125, -0.054462701082229614, 0.036230988800525665, -0.04890377074480057, 0.027147473767399788, 0.014280132949352264, 0.013606847263872623, 0.0115486616268754, -0.004043157212436199, 0.038181573152542114, -0.016066452488303185, 0.028126055374741554, 0.026119142770767212, -0.04077078774571419, 0.01979789324104786, 0.0027163310442119837, 0.01832270622253418, -0.010240977630019188, 0.05053746700286865, -0.036909982562065125, 0.004010569769889116, -0.0009201992070302367, -0.05343594774603844, -0.0059866406954824924, 0.012823830358684063, -0.003403067821636796, 0.038900550454854965, 0.020849687978625298, 0.045063912868499756, 0.035404060035943985, 0.010330960154533386, 0.028903214260935783, 0.06100361421704292, -0.04311242327094078, 0.03310561552643776, -0.001436766004189849, 0.06930986791849136, 0.030056806281208992, 0.009504949674010277, 0.010637404397130013, 0.0028748514596372843, -0.07643696665763855, -0.02285541407763958, 0.036617983132600784, 0.01766345649957657, -0.016448916867375374, 0.024601975455880165, 0.001410352298989892, -0.004474034998565912, -0.03592197597026825, 0.006713558454066515, 0.015935426577925682, -0.06528658419847488, -0.045694224536418915, 0.04832332581281662, -0.0203968808054924, 0.03493058308959007, 0.01494370587170124, -0.04289380460977554, -0.0071730343624949455, 0.042929958552122116, -0.02335638739168644, 0.0016496405005455017, 0.020104123279452324, 0.01976640708744526, -0.0008339133928529918, -0.02437470108270645, -0.008844366297125816, -0.020336244255304337, -0.05900539085268974, 0.04174768552184105, -0.017067695036530495, 0.004500220064073801, -0.015613784082233906, 0.01082042045891285, 0.04675140976905823, 0.0615118108689785, -0.011318210512399673, -0.03545982763171196, 0.025322124361991882, 0.054082535207271576, -0.027944181114435196, -0.0014116058591753244, -0.020396452397108078, 0.05802128463983536, 0.017223739996552467, 0.06223973259329796, 0.019548024982213974, -0.0063402182422578335, 0.05059665068984032, 0.05103721842169762, 0.0041690547950565815, 0.021384000778198242, -0.007295848801732063, 0.013335272669792175, 0.01991676352918148, 0.041174743324518204, -0.023983683437108994, 0.0077326009050011635, 0.024160640314221382, -0.028104392811655998, 0.012190483510494232, 0.009391347877681255, -0.006435152143239975, 0.059917986392974854, -0.00702429236844182, 0.020684896036982536, -0.03723115473985672, -0.021944453939795494, 0.037849508225917816, 0.03339162841439247, -0.04671986773610115, 0.0033069835044443607, -0.004455767571926117, -0.01010181475430727, -0.01801495999097824, -0.0014787355903536081, 0.025012249127030373, 0.0068516721948981285, 0.04226834699511528, 0.012552343308925629, 0.007896320894360542, -0.03463301807641983, -0.037767596542835236, -0.025784265249967575, -0.035309191793203354, -0.01897246018052101, -0.055218689143657684, -0.0063773286528885365, 0.03896156698465347, -0.045057155191898346, 0.013119692914187908, -0.05092662200331688, 0.00120250741019845, -0.015788467600941658, -0.04773622006177902, 0.026631835848093033, 0.02423207275569439, 0.020848268643021584, -0.02850506827235222, 0.0015062602469697595, 0.02251877449452877, 0.05876787006855011, -0.03278394043445587, -0.0017982767894864082, -0.028456922620534897, -0.01985396444797516, 0.0072759781032800674, 0.00036109663778916, -0.012650846503674984, -0.0060766940005123615, -0.043274909257888794, -0.05449965223670006, -0.03411807864904404, -0.021419450640678406, -0.027693677693605423, -0.0293619092553854, -0.035648901015520096, 0.032823607325553894, 0.026291368529200554, -0.04552892968058586, 0.03814459219574928, 0.04154089838266373, -0.01694428361952305, 0.035024434328079224, 0.017683664336800575, -0.012562400661408901, -0.05222771316766739, 0.02426309697329998, 0.054932937026023865, 0.0026036228518933058, -0.018354663625359535, -0.03432081267237663, -0.03296607360243797, -0.00018680194625630975, 0.009237406775355339, -0.0055334740318357944, -0.00830573495477438, 0.04464821144938469, 0.006902638822793961, -0.08380750566720963, 0.025718193501234055, -0.030878888443112373, -0.011078186333179474, -0.013978058472275734, -0.006288815755397081, 0.03192872926592827, 0.00299981702119112, 0.029630688950419426, 0.015598487108945847, -0.011887576431035995, 0.032467637211084366, 0.03795278072357178, 0.03245142102241516, -0.040833279490470886, -0.012513741850852966, 0.0352732390165329, 0.03884848207235336, 0.042097777128219604, -0.021683843806385994, -0.03538278490304947, -0.0010496743489056826, -0.023566989228129387, 0.008681102655827999, 0.003582143923267722, 0.031225038692355156, 0.016828127205371857, 0.030181443318724632, 0.043575555086135864, -0.03531115502119064, 0.02036062255501747, 0.01116575300693512, 0.005003770347684622, 0.03774115443229675, 0.02998638153076172, 0.008223382756114006, -0.01670076884329319, -0.0016879746690392494, -0.0643596425652504, 0.030677946284413338, 0.02248915284872055, 0.044957466423511505, -0.06059126555919647, 0.05388835445046425, 0.008711358532309532, -0.0030450669582933187, 0.05440083146095276, -0.0558050200343132, 0.0005394152249209583, 0.06015721708536148, -0.026809271425008774, 0.09023464471101761, -0.056193333119153976, 0.02789357118308544, 0.010064370930194855, 0.020071156322956085, 0.02219022624194622, 0.01995236799120903, 0.040300849825143814, -0.006206076592206955, -0.010095943696796894, -0.006076888181269169, -0.006940213963389397, -0.010772660374641418, -0.03213043510913849, 0.03037513606250286, -0.011576138436794281, -0.06561153382062912, -0.04435305669903755, 0.00831407867372036, 0.023601746186614037, 0.047435563057661057, 0.03435389697551727, 0.02971913106739521, -0.03004426881670952, 0.0325380302965641, 0.05299451947212219, -0.007535943761467934, 0.01092385221272707, -0.034676093608140945, 0.04559340327978134, 0.0077582052908837795, -0.006611540913581848, -0.027353981509804726, -0.005592243280261755, -0.023423323407769203, 0.027283022180199623, 0.0039339568465948105, 0.016155704855918884, -0.05660714581608772, 0.016018640249967575, 0.011949492618441582, 0.032284926623106, -0.04460104927420616, -0.0509331189095974, -0.014488180167973042, 0.004265563562512398, 0.04166045039892197, -0.04433058574795723, 0.008764632046222687, -0.021847883239388466, 0.027892427518963814, 0.02427254058420658, -0.039224497973918915, -0.045811135321855545, -0.022495780140161514, -0.010434181429445744, -0.024900944903492928, 0.03792858123779297, 0.03029008023440838, -0.019731754437088966, 0.018419837579131126, -0.03401853144168854, 0.017509618774056435, -0.0049014282412827015, 0.023560792207717896, -0.00011851046292576939, 0.0050326683558523655, 0.015992840752005577, -0.006114838644862175, 0.027005717158317566, -0.023739071562886238, -0.001449765870347619, 0.012561129406094551, -0.05176403000950813, 0.00552636943757534, -0.02827187068760395, -0.021220006048679352, -0.0005674593849107623, 0.021491417661309242, -0.009158293716609478, 0.025159571319818497, -0.027780631557106972, 0.02863333374261856, -0.037028633058071136, 0.01084868237376213, -0.05595339462161064, -0.02808687649667263, 0.057916585355997086, -0.010229014791548252, -0.01721879281103611, 0.05350048467516899, 0.024848684668540955, -0.023590004071593285, 0.03134625777602196, 0.021724510937929153, -0.05291470140218735, 0.02070312201976776, -0.04961241036653519, 0.0190715454518795, -0.03518090769648552, -0.04007444530725479, -0.009242771193385124, -0.06965338438749313, 0.046337127685546875, -0.009560349397361279, -0.04213884100317955, -0.04331258684396744, -0.06554082036018372, -0.019690321758389473, 0.004749735817313194, -0.022316191345453262, 0.02384326606988907, -0.015848316252231598, -0.021358905360102654, 0.008799463510513306, -0.018820764496922493, -0.0206326711922884, 0.027142751961946487, 0.0016319795977324247, 0.004652003291994333, -0.020176859572529793, -0.00558881089091301, 0.021270887926220894, -0.02063610590994358, -0.0441482774913311, 0.0015612852293998003, 0.02827582322061062, -0.0052208625711500645, -0.03915639966726303, -0.002015303587540984, -0.025437550619244576, 0.005857252981513739, -0.054346129298210144, -0.00583770964294672, -0.03838314861059189, 0.019354792311787605, 0.027174782007932663, 0.024755867198109627, 0.02335384488105774, 0.036859143525362015, -0.03643956780433655, 0.029858019202947617, 0.04624457284808159, -0.03175836056470871, -0.02775791846215725, 0.03199012205004692, -0.02848990261554718, 0.04460335522890091, -0.007268139626830816, -0.018514037132263184, -0.0442073717713356, -0.03739681467413902, 0.05145331844687462, -0.017511464655399323, -0.02539846859872341, -0.0609731562435627, -0.029971672222018242, -0.02488473430275917, 0.03556543216109276, 0.011876224540174007, -0.025450551882386208, 0.008339682593941689, -0.03958034887909889, 0.025072749704122543, -0.03777873143553734, -0.025339409708976746, -0.02820323221385479, -0.036238543689250946, 0.013664402067661285, 0.044682104140520096, -0.01295321062207222, 0.03713303431868553, 0.021774761378765106, -0.005594737362116575, 0.0342390201985836, -0.0255228690803051, -0.045698706060647964, -0.013708091340959072, -0.0012170291738584638, 0.0035480079241096973, -0.02942582219839096, -0.0007078363560140133, -0.043199118226766586, 0.021984582766890526, -0.047252774238586426, 0.010892065241932869, 0.002441244898363948, 0.015014268457889557, -0.023556917905807495, -0.012950488366186619, 0.038953036069869995, -0.010922047309577465, -0.006546368356794119, -0.034437146037817, 0.059642668813467026, 0.012674330733716488, 0.004590618424117565, -0.021676234900951385, -0.018761105835437775, -0.03169798105955124, -0.03923867270350456, 0.042910680174827576, -0.03659738600254059, 0.011424397118389606, -0.03732287511229515, 0.0036166624631732702, 0.051056988537311554, -0.0376712940633297, 0.03528755158185959, 0.05570700764656067, 0.005151824560016394, 0.0086161307990551, 0.0038186118472367525, 0.01320033147931099, 0.04286788031458855, -0.04739849269390106, 0.012127451598644257, 0.01663830503821373, -0.05454031750559807, -0.025258535519242287, -0.0015232264995574951, -0.045248910784721375, -0.033180754631757736, 0.003596191992983222, 0.09317998588085175, -0.04161953926086426, 0.04290702939033508, 0.0013678669929504395, -0.08309993892908096, -0.03976619243621826, 0.02943972684442997, -0.04311627149581909, 0.005173857323825359, 0.07999882847070694, 0.009597687982022762, -0.04618816450238228, 0.030502572655677795, -0.021739067509770393, 0.00010677042155293748, -0.0378422774374485, 0.03446289896965027, 0.034410279244184494, -0.022661840543150902, 0.05623793229460716, 0.05239648371934891, -0.07422976940870285, -0.04441167786717415, -0.008669636212289333, -0.0007397845620289445, 0.03193943575024605, -0.0016930898418650031, -0.005316739436239004, 0.015247787348926067, -0.027073213830590248, -0.005636841058731079, 0.005747513379901648, 0.012407751753926277, 0.05017510801553726, -0.0061159441247582436, 0.034736599773168564, -0.050217170268297195, 0.006814717780798674, 0.02162434160709381, 0.009284469299018383, 0.00829742755740881, -0.007729414850473404, 0.004466869868338108, -0.000543914909940213, 0.01184612326323986, 0.042527031153440475, 0.023314865306019783, 0.009037496522068977, 0.03753900155425072, 0.018930736929178238, 0.042284850031137466, -0.013998692855238914, -0.03065940923988819, 0.004585859831422567, -0.049120575189590454, -0.029420383274555206, -0.029701892286539078, 0.004622126929461956, 0.0034068722743541002, 0.021443774923682213, -0.04387049004435539, 0.009597605094313622, 0.06560200452804565, 0.03526700660586357, -0.01683170348405838, -0.058278888463974, -0.01956179179251194, -0.042218368500471115, -0.06278551369905472, -0.008155569434165955, -0.029877256602048874, -0.01293035689741373, 0.045489657670259476, -0.014154212549328804, -0.057826973497867584, -0.020224135369062424, 0.022462163120508194, -0.015354794450104237, -0.020888376981019974, -0.04678403213620186, -0.003268610453233123, -0.041319165378808975, -0.03880754113197327, -0.06361083686351776, 0.027357032522559166, -0.002593371318653226, -0.0014319360489025712, -0.018742205575108528, 0.03043886087834835, -0.01792963407933712, 0.01325639896094799, -0.012941207736730576, 0.0010448724497109652, -0.03303344547748566, -0.030346227809786797, 0.00650027533993125, -0.00702635059133172, -0.03004051372408867, 0.06248285248875618, 0.020685836672782898, 0.018901854753494263, 0.0467924103140831, -0.010310069657862186, 0.003975406754761934, -0.024154121056199074, 0.013544066809117794, -0.011532512493431568, 0.00668188976123929, -0.03532811999320984, -0.034826476126909256, -0.0007334785768762231, -0.031438954174518585, 0.0184915903955698, 0.026040170341730118, 0.007450866047292948, -0.022974446415901184, -0.03915713354945183, -0.0093882717192173, 0.07262576371431351, 0.001512753777205944, 0.022198602557182312, -0.012668910436332226, -0.022063417360186577, 0.04457646980881691, 0.003109687240794301, 0.0126644941046834, 0.030779365450143814, -0.011965719051659107, -0.014922166243195534, 0.013486579991877079, 0.021369803696870804, -0.001147595583461225, 0.03473421931266785, -0.00739816902205348, -0.0347776897251606, -0.056063055992126465, 0.01957649178802967, 0.0047021969221532345, 0.024003757163882256, 0.03253806754946709, 0.015114019624888897, 0.006722886580973864, -0.026915257796645164, -0.03802860528230667, 0.036297667771577835, -0.05479300767183304, -0.055507250130176544, 0.045901842415332794, -0.01921219937503338, -0.04295836761593819, -0.02925284020602703, -0.04593626409769058, -0.029923448339104652, -0.01360911875963211, -0.014912913553416729, -0.03149968758225441, 0.013920774683356285, -0.003001529024913907, 0.005741208791732788, -0.010389074683189392, -0.0040921401232481, -0.002591285388916731, 0.028668716549873352, -0.0460192933678627, -0.06672210991382599, 0.008120541460812092, 0.0035283640027046204, 0.030811334028840065, 0.0019243793794885278, -0.008995468728244305, 0.02286541648209095, -0.014833090826869011, -0.0028126442339271307, 0.020338168367743492, -0.0039041140116751194, -0.012587285600602627, 0.022142987698316574, -0.058388177305459976, 0.008273864164948463, -0.06704991310834885, 0.03617829084396362, 0.0007633605855517089, -0.03854355588555336, -0.020280489698052406, 0.047368280589580536, 0.05486641824245453, -0.024059636518359184, 0.03471903130412102, 0.025266077369451523, 0.031515609472990036, -0.006525309756398201, -0.001637884066440165, 0.009807589463889599, 0.02923305332660675, 0.07490402460098267, 0.060356222093105316, -0.0013085257960483432, 0.02675265073776245, 0.032677724957466125, 0.049786847084760666, 0.006169904954731464, 0.029606571421027184, 0.020778564736247063, -0.00867191981524229, -0.007435484789311886, 0.0032790033146739006, 0.006211171392351389, -0.008924749679863453, -0.019073689356446266, 0.01087973266839981, -0.03256275877356529, -0.0035958068910986185, -0.018166786059737206, -0.020652219653129578, 0.050915949046611786, -0.010342496447265148, -0.015132888220250607, -0.02015732228755951, -0.00004178223753115162, -0.006037701852619648, 0.03717745468020439, -0.011561867780983448, -0.01639728993177414, 0.03342883288860321, 0.022199220955371857, 0.009078698232769966, 0.03861953318119049, 0.0061980606988072395, 0.03149021789431572, -0.011877994053065777, -0.018364567309617996, 0.016980931162834167, 0.03091573342680931, -0.04992714524269104, 0.003667623270303011, -0.05403779819607735, 0.030268093571066856, -0.0328793041408062, -0.017780205234885216, 0.04005707427859306, -0.045443058013916016, -0.02044505812227726, -0.01676027476787567, 0.035058606415987015, -0.01853826828300953, -0.0005044554127380252, 0.052830372005701065, -0.012881928123533726, -0.044558942317962646, 0.06395003944635391, -0.01448497548699379, 0.03169310465455055, -0.011843753047287464, 0.047423239797353745, 0.003817268181592226, 0.02685258910059929, 0.047903429716825485, -0.029021218419075012, -0.0416167788207531, 0.0508064404129982, 0.006541945971548557, -0.054621729999780655, -0.03053177148103714, -0.022822562605142593, -0.03567662090063095, -0.01082872599363327, 0.0016015992732718587, -0.015692463144659996, 0.019319776445627213, 0.010593813844025135, -0.017949849367141724, -0.01637878641486168, 0.03816423565149307, -0.04204756021499634, 0.026823347434401512, 0.02302020788192749, -0.002382449572905898, -0.0005245199427008629, -0.023121356964111328, -0.05015009269118309, -0.04432827979326248, 0.04856089502573013, 0.0004975391202606261, -0.008070319890975952, -0.023769436404109, -0.03545647859573364, -0.02401433140039444, -0.03205239400267601, -0.010149339213967323, 0.01569545827805996, -0.025899820029735565, -0.05961081013083458, 0.03730906918644905, 0.062413375824689865, -0.006564628332853317, 0.03867695853114128, -0.034783151000738144, 0.010577653534710407, 0.032617419958114624, 0.04909292235970497, -0.004965716507285833, 0.07015074789524078, 0.017954617738723755, -0.00993525143712759, 0.0346551351249218, -0.031222349032759666, 0.016172202304005623, -0.0030619478784501553, -0.03135090693831444, -0.02612690068781376, 0.010862384922802448, -0.015560252591967583, -0.039490003138780594, -0.00450908811762929, 0.04401583597064018, 0.022379957139492035, -0.018299933522939682, -0.051738038659095764, 0.023073336109519005, -0.041791222989559174, 0.0011029494926333427, -0.045903000980615616, 0.003885129699483514, -0.034057144075632095, -0.005550095345824957, 0.010801510885357857, -0.03898073360323906, 0.14326955378055573, 0.04120505601167679, 0.04829331114888191, 0.0001723262685118243, 0.009474113583564758, 0.04270375147461891, -0.008790088817477226, -0.004281003959476948, -0.009530788287520409, -0.0433502160012722, 0.05331968888640404, -0.01005441416054964, 0.01779291033744812, 0.03334804251790047, 0.023468017578125, 0.04280707240104675, -0.0471702441573143, -0.009985032491385937, 0.037005092948675156, -0.06405983865261078, -0.06821352243423462, 0.023422999307513237, -0.0011558489641174674, 0.048618853092193604, -0.019650740548968315, 0.037414297461509705, 0.04542340338230133, -0.06971115618944168, 0.002421970246359706, -0.010428794659674168, 0.0505189523100853, -0.04253251478075981, 0.055796630680561066, -0.004062023479491472, -0.015476836822926998, 0.017678191885352135, 0.014890153892338276, 0.00558021105825901, -0.010201777331531048, -0.005566674284636974, 0.011432494036853313, -0.018860043957829475, -0.015658585354685783, -0.05728026106953621, -0.0072846729308366776, 0.016340626403689384, -0.008844642899930477, 0.011584087274968624, 0.035885125398635864, -0.019345011562108994, 0.04383796453475952, -0.007401783484965563, 0.03171437606215477, -0.02472657896578312, -0.031461458653211594, 0.005428226199001074, 0.009071498177945614, -0.05620534345507622, -0.013646192848682404, 0.03955429792404175, 0.01588827185332775, 0.02883838675916195, -0.0341145396232605, 0.012819085270166397, -0.005645758006721735, 0.0014192379312589765, 0.014043721370398998, 0.006765466183423996, -0.018521776422858238, -0.010136472061276436, -0.04491151124238968, -0.013102087192237377, 0.015079179778695107, -0.03797104209661484, 0.013822584412992, 0.009874928742647171, 0.0002752486034296453, 0.03644954040646553, 0.00224902736954391, -0.04184451699256897, -0.01705501228570938, -0.025289639830589294, -0.033520933240652084, -0.011319205164909363, 0.03449438512325287, 0.024981196969747543, -0.0556773915886879, -0.045076530426740646, -0.02610626444220543, 0.01357186958193779, 0.042607471346855164, 0.04098675027489662, -0.022726761177182198, -0.00669679744169116, -0.04575692117214203 ]
U.S. hospitals have made little progress in eliminating health care-associated infections, according to the Agency for Healthcare Research and Quality's annual National Healthcare Quality Report, Modern Healthcare reports. The report concludes that infection prevention and patient safety efforts deserve attention (McKinney, Modern Healthcare , 4/13). The congressionally mandated analysis tracked trends in the U.S. health care system's performance in 2007 on more than 200 measures across four areas of quality: effectiveness, safety, timeliness and patient focus of care. The study found that overall health care quality improved by 2.3%. Selected infections due to medical care increased by 1.6%. However, the report found that rates of postoperative pneumonia improved by 12% and found no change in the number of bloodstream infections associated with central venous catheter placements (Preidt, Health Day , 4/13). Carolyn Clancy, AHRQ's director, said the findings show that the health care system is not achieving the "more substantial strides" needed to address quality shortfalls. However, Clancy highlighted proven strategies that have shown success in reducing infection rates, including using basic standards for hand hygiene, disinfecting patients, handling equipment and proper use of antibiotics (Sack, New York Times , 3/13). Meanwhile, a separate AHRQ report examining national health care access gaps found major disparities between minorities and whites, as well as between uninsured and insured populations ( New York Times , 4/13). Black, Hispanic, Asian and American Indian patients were less likely than white patients to receive preventive antibiotics prior to surgery in a "timely manner." Further, uninsured patients were less likely to receive routine health screenings and vaccinations compared with insured patients. Overall, the report concluded that lack of insurance is the "single strongest predictor of poor quality care," exceeding race, ethnicity, income or education (AHRQ release, 4/13).
[ -0.014263912104070187, -0.009664718993008137, -0.04156899079680443, 0.02386816404759884, 0.0002231282414868474, 0.015630435198545456, 0.009099205955862999, 0.01126775797456503, 0.01870448887348175, 0.04101427644491196, 0.035822197794914246, -0.012633493170142174, 0.007484265137463808, -0.021106209605932236, -0.011315756477415562, -0.009462287649512291, -0.01349491998553276, -0.023023495450615883, -0.0032027140259742737, 0.007242904044687748, -0.01727488823235035, 0.03582746163010597, -0.08677882701158524, -0.004656746052205563, -0.05282706767320633, 0.07138010114431381, 0.0369761660695076, 0.014582286588847637, 0.04988052323460579, 0.07310085743665695, 0.012192814610898495, -0.024477846920490265, 0.025856606662273407, -0.023686770349740982, -0.02408664859831333, -0.04220389947295189, 0.03400437906384468, -0.005119700916111469, -0.03540794178843498, -0.015345999039709568, 0.014867744408547878, 0.013004068285226822, 0.055587396025657654, -0.03103640489280224, -0.05465679615736008, 0.0006819607224315405, 0.00547838257625699, -0.004298301413655281, 0.004067652393132448, -0.02689233608543873, 0.0007639075047336519, -0.008275619708001614, -0.02083173394203186, -0.02413099817931652, 0.0027094073593616486, 0.005484053399413824, 0.011487351730465889, -0.019561855122447014, -0.033874399960041046, 0.01493112463504076, 0.035353995859622955, -0.009251214563846588, 0.03414823114871979, -0.05704660341143608, 0.04127318412065506, 0.023122217506170273, -0.013605114072561264, -0.002750511048361659, -0.004753110930323601, -0.027964308857917786, 0.002567690797150135, -0.006836754735559225, -0.0601380318403244, -0.027839690446853638, -0.006335651036351919, -0.025896310806274414, -0.004160330165177584, -0.026156514883041382, -0.031665608286857605, 0.017061790451407433, 0.023879216983914375, 0.03064470924437046, 0.0016217678785324097, 0.00826210342347622, -0.01275874674320221, -0.021207492798566818, -0.023095402866601944, 0.022616418078541756, -0.004822652321308851, 0.02792269177734852, -0.008439448662102222, 0.03528207540512085, -0.004480765666812658, -0.023239579051733017, 0.03207838907837868, 0.07119584083557129, -0.04772181063890457, 0.017724696546792984, 0.02152063511312008, -0.000063324325310532, 0.052836932241916656, 0.028484418988227844, -0.024266624823212624, 0.04528189077973366, -0.031417254358530045, -0.016331715509295464, 0.026392653584480286, -0.05415423959493637, -0.01005918625742197, -0.04276400804519653, 0.0020798472687602043, -0.024587228894233704, -0.04023775830864906, -0.015622401610016823, 0.013629967346787453, 0.03778582811355591, -0.0007438961765728891, 0.03986107185482979, -0.0636528953909874, 0.054361678659915924, 0.01561027392745018, -0.004762299824506044, 0.04924410581588745, -0.029208911582827568, 0.017062440514564514, -0.014165326952934265, -0.0002917643287219107, 0.044748298823833466, -0.03955737128853798, 0.00385966501198709, 0.005758389364928007, -0.006516093388199806, -0.03317026421427727, 0.00965197291225195, -0.031149400398135185, 0.02662089094519615, 0.0015481960726901889, 0.028001511469483376, 0.03362438827753067, -0.025395633652806282, 0.024487944319844246, 0.039307884871959686, 0.01846158318221569, 0.09871109575033188, 0.029165778309106827, 0.050702355802059174, -0.03418527916073799, -0.0074527086690068245, -0.006619379390031099, -0.004144982434809208, -0.006861783564090729, 0.02883434295654297, -0.005862130317837, 0.01186479814350605, -0.027113448828458786, 0.004649684764444828, -0.039490144699811935, 0.00010172593465540558, -0.03352277725934982, 0.0357598178088665, -0.018012411892414093, 0.023893006145954132, -0.010392447002232075, 0.02582545205950737, -0.03471658378839493, 0.06343179196119308, -0.025320028886198997, -0.007170156110078096, 0.005099006462842226, -0.023037264123558998, 0.06498540937900543, 0.006246935110539198, -0.018090346828103065, 0.005256159231066704, 0.013628331944346428, 0.06988785415887833, 0.03161071240901947, 0.009264688938856125, 0.024909457191824913, 0.06703285127878189, -0.03813501074910164, -0.021880360320210457, -0.018131982535123825, 0.06124522536993027, 0.026581864804029465, 0.014543621800839901, 0.03512498736381531, -0.03234116733074188, -0.018492210656404495, -0.04128852114081383, 0.016499849036335945, 0.034955743700265884, -0.03249591216444969, 0.047352250665426254, 0.011149839498102665, 0.013782522641122341, -0.003415738232433796, -0.01613479293882847, 0.04356951639056206, -0.039164163172245026, -0.016817964613437653, 0.01160640362650156, -0.022179653868079185, 0.02097531594336033, -0.000028623568141483702, 0.0027024419978260994, 0.02305414527654648, 0.031378984451293945, -0.05622977018356323, 0.021210504695773125, 0.04917735978960991, 0.023163506761193275, -0.025203721597790718, -0.016706621274352074, 0.005452475510537624, -0.005291075445711613, 0.007353946566581726, 0.035886913537979126, -0.008647340349853039, -0.02937956713140011, -0.011963480152189732, 0.014981758780777454, 0.03135458752512932, 0.030213458463549614, 0.012841995805501938, 0.01370290108025074, 0.03145020455121994, 0.053467947989702225, -0.04193500056862831, -0.023373238742351532, 0.021131645888090134, 0.03565434366464615, 0.02003062702715397, 0.04780608043074608, 0.0603577084839344, 0.00888573843985796, 0.024532129988074303, 0.026619359850883484, -0.0024873255752027035, 0.03384570777416229, -0.0014959328109398484, 0.029817495495080948, 0.022040700539946556, -0.0005850425222888589, -0.03543204441666603, 0.02513590082526207, -0.015889830887317657, -0.008086368441581726, -0.02199585735797882, 0.031582560390233994, 0.0016916553722694516, 0.04294176399707794, 0.043114956468343735, 0.04322521761059761, -0.028779126703739166, 0.0033215649891644716, 0.021671375259757042, 0.08490251004695892, -0.06221907213330269, -0.00529477559030056, -0.010824723169207573, 0.04062696173787117, -0.022132525220513344, 0.002745920792222023, 0.04408116638660431, 0.0217448640614748, -0.024041293188929558, 0.019505750387907028, -0.0062261903658509254, -0.012190338224172592, -0.0709192082285881, -0.03145177662372589, -0.04721091315150261, -0.03585481643676758, -0.04034774750471115, 0.011438783258199692, 0.03256670758128166, -0.026223400607705116, 0.015429901890456676, 0.023203130811452866, -0.026756957173347473, -0.03627762943506241, 0.01994698867201805, 0.08595842123031616, 0.03170429542660713, 0.028411557897925377, -0.013693987391889095, 0.02934093587100506, 0.02302956022322178, 0.02839674986898899, -0.008727125823497772, -0.027243003249168396, -0.0306467916816473, -0.02508886530995369, 0.023119192570447922, -0.02679135650396347, 0.013849698938429356, 0.008223935961723328, -0.020008957013487816, -0.05383114144206047, 0.0036184415221214294, -0.00020400588982738554, -0.008161580190062523, -0.022189443930983543, -0.04165351018309593, 0.054005347192287445, 0.005831586662679911, 0.008094331249594688, 0.045954976230859756, 0.025060176849365234, -0.038329850882291794, 0.040253475308418274, 0.014398385770618916, 0.0363105833530426, -0.03873499855399132, 0.042359352111816406, 0.018915994092822075, -0.007812062278389931, -0.03548862040042877, -0.003956303931772709, -0.029368197545409203, 0.013885377906262875, 0.018254566937685013, -0.03501993417739868, -0.03260460123419762, 0.01935206912457943, 0.03469337150454521, -0.0947207510471344, 0.05135143920779228, -0.06793643534183502, -0.0231576357036829, -0.013559957966208458, -0.035773538053035736, 0.03354112058877945, 0.00950238760560751, -0.011991143226623535, 0.002776384586468339, -0.03369779884815216, -0.001848765299655497, 0.02853672206401825, 0.061957139521837234, -0.03776907920837402, 0.027469975873827934, 0.002056790515780449, -0.01106565073132515, 0.03282761201262474, -0.020156823098659515, -0.01751090958714485, 0.011151054874062538, -0.010720052756369114, -0.005587926600128412, 0.030101872980594635, 0.026093702763319016, 0.0024457143153995275, -0.011674540117383003, 0.042518310248851776, -0.03991981968283653, 0.017726995050907135, -0.0012010529171675444, 0.03134973719716072, 0.022735709324479103, -0.0018414820078760386, -0.012832215055823326, -0.013498451560735703, -0.05440425127744675, -0.04881560057401657, 0.024817049503326416, 0.0030769910663366318, 0.08609704673290253, -0.007429566700011492, 0.03981796279549599, -0.018349647521972656, -0.013220034539699554, 0.053505633026361465, -0.05707208812236786, 0.024056414142251015, 0.03920220583677292, -0.008747844025492668, 0.020027311518788338, -0.03532053530216217, 0.004515982698649168, 0.008041571825742722, 0.04267575591802597, 0.05804770812392235, -0.04050794988870621, 0.05462934821844101, -0.02770989201962948, 0.019841836765408516, -0.0028941871132701635, 0.0013637623051181436, 0.005499145481735468, -0.04381948336958885, 0.029168695211410522, -0.02471102401614189, -0.03512851893901825, -0.040581200271844864, 0.01673542708158493, 0.03892914578318596, 0.037399861961603165, 0.009286435320973396, 0.043116431683301926, -0.03441024571657181, 0.010423646308481693, 0.04312974587082863, 0.006144014187157154, 0.03576561436057091, -0.04817740619182587, 0.03680647164583206, 0.01983598805963993, -0.0354677215218544, -0.01941666565835476, -0.0342462994158268, -0.013224701397120953, 0.018683601170778275, -0.02620721608400345, -0.010309630073606968, -0.008937032893300056, 0.0022291119676083326, -0.003225594526156783, -0.03733610734343529, -0.04117374122142792, -0.01592431217432022, -0.023136472329497337, 0.03096139430999756, 0.015732644125819206, -0.05762600898742676, 0.013465827330946922, -0.016864698380231857, 0.03306509554386139, 0.050396643579006195, -0.05115029588341713, -0.05396973341703415, -0.042112015187740326, -0.02203165739774704, -0.03398364782333374, 0.013892145827412605, 0.02610553242266178, -0.019532684236764908, 0.005941856186836958, -0.08352512121200562, 0.01496839988976717, 0.03901362046599388, 0.021912842988967896, 0.008869053795933723, -0.0024424802977591753, 0.008227757178246975, 0.015870243310928345, 0.04553483426570892, 0.0038572566118091345, 0.003955842461436987, 0.0334174819290638, -0.061415866017341614, 0.010157039389014244, 0.015685727819800377, -0.029387332499027252, -0.007048933766782284, 0.03157299384474754, -0.0033384968992322683, 0.019742116332054138, -0.02332521416246891, 0.008364037610590458, -0.013485336676239967, 0.01729837991297245, -0.03546042740345001, -0.03191975876688957, 0.06205376610159874, -0.0050938124768435955, -0.02712610922753811, 0.01548993494361639, 0.007772475481033325, 0.015001161023974419, -0.013723084703087807, 0.005356732755899429, -0.03324684500694275, 0.054507553577423096, -0.026137180626392365, 0.009612970054149628, 0.002482258016243577, -0.033990807831287384, -0.00491830101236701, -0.0332217663526535, 0.012867162004113197, 0.032904550433158875, -0.009027121588587761, -0.05654953420162201, -0.04395130276679993, -0.012917829677462578, 0.0062471297569572926, -0.04615123197436333, 0.011778410524129868, 0.00968150794506073, 0.0032104093115776777, -0.014987525530159473, -0.01643223501741886, -0.00422964571043849, 0.027214661240577698, 0.00916344951838255, -0.02199847437441349, 0.018526842817664146, 0.008087030611932278, -0.0170742217451334, -0.02327772229909897, -0.051389697939157486, -0.01010197401046753, -0.004462362267076969, -0.025915253907442093, -0.05090682953596115, 0.008338004350662231, -0.020042836666107178, -0.04543650895357132, -0.04320208355784416, 0.03297102823853493, -0.003694301936775446, 0.005028925370424986, 0.01080355141311884, -0.008491246961057186, 0.015044305473566055, -0.0031811173539608717, -0.02755916863679886, 0.03819297254085541, 0.02197957970201969, -0.0449335090816021, -0.01266465988010168, 0.02979283034801483, -0.023082833737134933, 0.08216512203216553, -0.012574358843266964, -0.03451245278120041, -0.027928806841373444, -0.06424295902252197, 0.018484489992260933, -0.03166748955845833, -0.03286813199520111, 0.002221927512437105, -0.0525774285197258, -0.00411177147179842, 0.04511477053165436, 0.008188323117792606, -0.000497235800139606, -0.005313256289809942, -0.02308962307870388, -0.026929017156362534, -0.024889416992664337, -0.009187227115035057, 0.025682488456368446, -0.028314897790551186, 0.0010719688143581152, 0.0318017415702343, -0.002542891539633274, 0.016026735305786133, 0.014263210818171501, -0.004710900131613016, 0.02608378231525421, -0.02024933323264122, -0.032006870955228806, -0.04079368710517883, 0.005529068410396576, 0.01781919039785862, -0.023861926048994064, -0.024989986792206764, -0.03670404851436615, 0.049083080142736435, -0.052641354501247406, 0.02844335325062275, -0.04301909729838371, 0.034472282975912094, -0.003815427888184786, -0.029517028480768204, 0.028035514056682587, -0.032642100006341934, -0.01594586670398712, 0.005944166332483292, 0.019624128937721252, 0.020899374037981033, 0.01082927267998457, -0.04683373495936394, -0.02526109479367733, -0.04167981073260307, -0.025987252593040466, 0.02154713124036789, -0.03697312995791435, -0.0044237771071493626, -0.02920987643301487, -0.02992534451186657, 0.03231310471892357, -0.036180682480335236, 0.05541396141052246, 0.039068154990673065, -0.05452775955200195, -0.006796472240239382, -0.04309578984975815, -0.0020598277915269136, 0.025927670300006866, -0.01831052266061306, 0.008110249415040016, 0.011024607345461845, -0.017100928351283073, -0.010906312614679337, -0.03611762449145317, -0.033019039779901505, -0.005142089910805225, -0.021668409928679466, 0.0625949501991272, -0.012640629895031452, 0.04556785896420479, 0.0261844489723444, -0.04982704669237137, -0.019844502210617065, 0.06195513531565666, 0.00648768013343215, 0.01207110844552517, 0.01860145851969719, -0.01609162800014019, -0.04597707837820053, -0.016937142238020897, 0.000746540492400527, -0.009643212892115116, -0.0351281464099884, 0.07421331107616425, -0.04397987946867943, -0.045732494443655014, 0.05388578400015831, 0.059946052730083466, -0.04418342188000679, -0.011177611537277699, -0.007139225024729967, -0.017840994521975517, 0.01963907480239868, -0.03126208856701851, 0.004234831314533949, 0.015918178483843803, -0.0000972124544205144, 0.0004986153217032552, -0.000698912306688726, -0.021290279924869537, 0.03258204460144043, -0.03386969119310379, 0.06575328856706619, -0.031028855592012405, 0.003232440445572138, 0.012532299384474754, -0.013536432757973671, -0.010000606067478657, 0.0021464242599904537, -0.013332972303032875, 0.03942369297146797, 0.007639552932232618, 0.054845720529556274, -0.030068324878811836, -0.017872780561447144, 0.02431599237024784, -0.009349165484309196, 0.03480927273631096, 0.013506365939974785, -0.021134356036782265, 0.01423657312989235, -0.01000665407627821, -0.03724394366145134, -0.046086881309747696, 0.04001878947019577, 0.0013068484840914607, 0.054366473108530045, -0.02967716008424759, 0.025306083261966705, 0.04725129157304764, -0.002301611937582493, 0.026211319491267204, -0.08205564320087433, -0.048158708959817886, -0.05509499832987785, -0.057982925325632095, -0.018682990223169327, -0.021223656833171844, 0.004294282291084528, 0.019687717780470848, -0.007079061586409807, -0.005770708899945021, -0.02546774409711361, 0.019360393285751343, -0.04382416978478432, -0.04467763006687164, -0.0375945083796978, 0.04586506262421608, -0.020962947979569435, -0.052866991609334946, -0.03714567795395851, 0.01073552668094635, -0.0058825453743338585, 0.02065334841609001, -0.02909804880619049, 0.009625750593841076, 0.012017774395644665, 0.024106604978442192, 0.0036688395775854588, 0.01034555397927761, -0.024873975664377213, -0.03121686540544033, 0.01625688374042511, 0.04381289705634117, 0.010608803480863571, 0.022553902119398117, 0.008215073496103287, -0.02240743115544319, 0.05034288763999939, 0.02406984008848667, -0.031689852476119995, -0.027732903137803078, -0.029183102771639824, -0.002843444934114814, -0.04404769837856293, -0.04731256887316704, -0.0674099326133728, -0.030527276918292046, -0.05213485285639763, 0.027378791943192482, 0.00642757210880518, -0.0172025877982378, 0.0219996590167284, -0.007492419797927141, 0.00017017220670823008, 0.04351752623915672, -0.015324542298913002, 0.029382577165961266, 0.02275344356894493, 0.04601970687508583, 0.0209601279348135, 0.004634356126189232, 0.029818667098879814, 0.020313050597906113, 0.025857409462332726, -0.050122398883104324, 0.01965189538896084, 0.021612903103232384, 0.012828478589653969, 0.01681537739932537, -0.0447387620806694, -0.034561991691589355, -0.026670580729842186, -0.02778732217848301, -0.025601889938116074, 0.05093983933329582, 0.03423726558685303, 0.0008095590164884925, 0.04119398444890976, -0.021448127925395966, -0.04002049192786217, 0.02106166072189808, -0.044257164001464844, -0.03626489266753197, 0.0330493189394474, -0.012613222934305668, -0.024690989404916763, -0.027585094794631004, -0.04025712236762047, -0.02414856292307377, -0.004477421287447214, -0.026093924418091774, -0.012188679538667202, 0.06466015428304672, 0.011034682393074036, 0.0708782747387886, 0.009492809884250164, 0.0319964699447155, 0.03147643059492111, 0.02415228635072708, -0.055884815752506256, -0.058759137988090515, 0.00896359235048294, 0.013354429043829441, 0.030342087149620056, -0.006862287875264883, -0.028812311589717865, 0.025639301165938377, -0.01800891011953354, 0.009602880105376244, 0.003960235044360161, 0.019470730796456337, -0.03559267148375511, 0.013906674459576607, 0.0019405107013881207, -0.012520480901002884, -0.028699694201350212, 0.03842800483107567, 0.017106035724282265, -0.0590982586145401, -0.02988523803651333, 0.05606318265199661, 0.052357953041791916, -0.01703973114490509, 0.019813667982816696, 0.013337328098714352, 0.04043625295162201, -0.0003603530931286514, -0.010255531407892704, 0.03658461943268776, 0.03852413222193718, 0.021057460457086563, 0.034790653735399246, -0.025707462802529335, 0.007609484251588583, 0.058253951370716095, -0.018292324617505074, 0.00324749737046659, 0.036288753151893616, 0.018199758604168892, -0.048185743391513824, 0.004764739889651537, -0.02890605293214321, 0.031554918736219406, -0.013352476991713047, -0.016671642661094666, -0.01542154885828495, -0.00540898134931922, -0.003232198767364025, 0.022584769874811172, -0.025804756209254265, 0.04923030734062195, -0.024950772523880005, -0.016816789284348488, -0.020901871845126152, -0.03109189309179783, -0.00570247508585453, 0.054741472005844116, 0.0039742072112858295, 0.0038584894500672817, 0.045390766113996506, 0.016341667622327805, -0.02618473209440708, 0.04377971217036247, 0.003781415754929185, 0.006148574873805046, -0.01425557304173708, -0.006594427861273289, -0.000702911289408803, 0.0024442351423203945, -0.02837565541267395, 0.0020974078215658665, -0.028005290776491165, 0.04187631979584694, -0.0213288813829422, -0.008485171012580395, 0.08380136638879776, -0.03422720357775688, -0.03386732563376427, -0.03484060987830162, 0.02761809527873993, -0.04624497890472412, -0.029354628175497055, 0.03354794159531593, 0.009317559190094471, -0.00988052599132061, 0.013286150060594082, 0.02216535247862339, 0.02883121371269226, 0.007498946972191334, 0.05848657712340355, 0.019870230928063393, 0.021063411608338356, 0.05429449304938316, -0.05037902295589447, -0.025409068912267685, 0.025102747604250908, -0.00996769592165947, -0.04856845736503601, -0.029674336314201355, -0.015558156184852123, -0.0014781155623495579, -0.027593746781349182, -0.03193211182951927, 0.004858129657804966, 0.0260460302233696, -0.007782333064824343, -0.022442180663347244, -0.05575527995824814, 0.007677257526665926, -0.019138477742671967, 0.03834379091858864, 0.02613941580057144, 0.07552777230739594, -0.0016280668787658215, -0.022936757653951645, -0.015380616299808025, -0.03240136802196503, -0.005370892118662596, -0.022722823545336723, 0.05012548714876175, -0.031174084171652794, -0.010805587284266949, -0.0008019391680136323, -0.06336071342229843, -0.0249660462141037, 0.00013297262194100767, -0.03557945042848587, -0.04833905026316643, 0.01086901593953371, 0.025543084368109703, 0.02133048139512539, 0.02614723891019821, -0.011778035201132298, 0.020905081182718277, 0.015199655666947365, 0.04451175779104233, -0.002899028128013015, 0.03584243357181549, 0.03477904945611954, -0.0124049698933959, 0.027711741626262665, -0.04449989274144173, 0.019457807764410973, -0.009728388860821724, -0.03320779651403427, -0.014534223824739456, 0.0471540242433548, -0.006367903668433428, -0.06232677027583122, 0.004678891971707344, 0.025600165128707886, -0.004836337640881538, -0.04303034394979477, -0.07080575078725815, -0.007475149352103472, -0.04298875108361244, 0.04109515622258186, -0.05213160812854767, 0.017243605107069016, 0.014782939106225967, 0.014052453450858593, 0.015532374382019043, -0.04215098172426224, 0.1350659281015396, 0.046492841094732285, 0.04361797869205475, 0.0046254959888756275, 0.07075221091508865, 0.038225967437028885, 0.015528406947851181, 0.016572488471865654, 0.02818559855222702, -0.03665147349238396, 0.027490615844726562, 0.01770257204771042, 0.024537844583392143, 0.022040897980332375, 0.009953033179044724, 0.02448245882987976, -0.04313575103878975, -0.01532452367246151, 0.01811160333454609, -0.05015382543206215, -0.022786259651184082, 0.00003847036714432761, -0.024821830913424492, -0.0020839900244027376, -0.03130883723497391, 0.001872411696240306, 0.06243274733424187, -0.018833938986063004, -0.005103562958538532, -0.032085832208395004, 0.03740515187382698, -0.0559467189013958, 0.04012713208794594, -0.07147715985774994, -0.05058835446834564, 0.025824522599577904, 0.02086959034204483, -0.026365818455815315, 0.011881872080266476, -0.005636647809296846, 0.0016787764616310596, 0.02548803947865963, 0.03112941049039364, -0.051197320222854614, -0.017316311597824097, 0.03573102876543999, -0.039983995258808136, -0.00880806241184473, 0.041408978402614594, -0.05161372199654579, 0.0404600165784359, -0.03521117940545082, 0.027685603126883507, 0.022484848275780678, -0.000988984014838934, -0.009194939397275448, -0.007876829244196415, -0.001435966813005507, 0.008181728422641754, 0.01461732853204012, 0.042214274406433105, 0.0009339004172943532, 0.003096994711086154, -0.003789223963394761, -0.02002912014722824, -0.021572135388851166, 0.011725661344826221, -0.01119009405374527, -0.002841605804860592, -0.025796711444854736, 0.023200560361146927, 0.005861529149115086, -0.0006850872305221856, -0.005454699508845806, 0.04640459269285202, 0.01863722875714302, -0.03428322449326515, 0.0542745366692543, -0.03670184686779976, -0.04152882471680641, -0.004746559541672468, -0.018440010026097298, 0.02208005078136921, -0.0012065470218658447, 0.015197699889540672, 0.05128840357065201, -0.043303482234478, -0.06013087183237076, -0.05236031860113144, 0.04919860512018204, 0.025087635964155197, 0.012020961381494999, -0.005256832577288151, 0.004650076385587454, -0.02386520616710186 ]
Brian was the lead psychologist to the England golf team for 16 years (1997-2013) delivering high performance strategies with European and World Championship winning teams and individuals at men's, youth and junior level. During this time he helped develop the mental skills of the best young emerging English golfers including the likes of Danny Willett, Chris Wood, Ross Fisher, Tom Lewis, Paul Waring, Eddie Pepperell, Tommy Fleetwood, David Horsey and Andrew Johnston, along with many Walker Cup players such as R&A World No. 1 Jamie Moul and Seniors Tour winner and amateur legend Gary Wolstenhome, MBE. Brian has continued to work with many of these players into their professional careers on the various European tours. He was also the performance psychologist to the English Women's Golf Association (1998-2001 & 2006-2010) and still works with several current LET players. Brian is the author of the CD 'In the Zone: Simple Mental Skills to Improve Your Golf' and three books, including the best-seller 'Mental Toughness for Golf: The Minds of Winners'. He has presented extensively within the UK to golfers, coaches and students, and at PGA National Conferences in Great Britain, Holland, Germany and Denmark. Brian's profile has also seen him present in Australia, USA, South Korea, Hong Kong, India and widely in mainland European countries. He has also worked for the PGAs of Europe as a development consultant on the R&A 'Working For Golf' worldwide programme. As well as hosting four successful UK golf psychology conferences since 2002, Brian regularly runs UK Masterclasses in Golf Psychology for psychologists and golf coaches. Brian has a wealth of experience in other sports, having worked with championship winning individuals and teams in professional cricket, 12 medallists in Olympic and Commonwealth Games boxing, and podium winners in single seat motor racing including Formula 3, GP2 & Formula 1. Whilst golf consultancy takes up most of his time, Brian is still actively working in professional cricket. Brian gained his PhD in sport psychology from the University of Southampton in 1998; and has trained and mentored many golf psychology practitioners over the last decade. He is also trained in hypnosis and bereavement conselling. In 2010 he was awarded a Fellowship by the British Association of Sport and Exercise Sciences in recognition of 'esteemed personal achievement, skills, knowledge and service to BASES and the sport and exercise science community'. Brian has an active Christian faith, enjoys Quentin Tarantino films, and is a lifelong Chelsea supporter.
[ -0.006352620664983988, -0.01622406579554081, -0.02195153385400772, -0.014340146444737911, -0.01929430663585663, -0.014465376734733582, 0.0035925793927162886, 0.016131669282913208, -0.006855336483567953, 0.0132873160764575, 0.039039187133312225, 0.009103070013225079, 0.0057619172148406506, -0.04268547147512436, 0.0011134251253679395, -0.0035171916242688894, -0.023254480212926865, -0.026743432506918907, -0.02932310476899147, -0.005850452464073896, 0.015259724110364914, -0.0018942335154861212, -0.039162471890449524, -0.018580619245767593, 0.004709208849817514, 0.029303984716534615, 0.0017307661473751068, -0.006679249461740255, 0.0889095813035965, 0.04423002898693085, -0.006927440874278545, -0.04230397567152977, 0.014413057826459408, -0.034130461513996124, -0.045238833874464035, -0.03375779464840889, 0.025385374203324318, -0.035294126719236374, -0.030362799763679504, -0.004212843719869852, 0.03434104099869728, -0.00561558036133647, 0.007143623661249876, -0.03256117179989815, -0.0561089813709259, -0.020924732089042664, -0.007006478030234575, -0.05307138338685036, 0.000524772796779871, -0.038994308561086655, 0.015015814453363419, -0.02112722210586071, 0.030185943469405174, -0.01628492958843708, 0.017849918454885483, 0.023184362798929214, 0.04072287678718567, -0.012171002104878426, -0.01824260875582695, 0.017474278807640076, 0.03958653286099434, -0.014026015065610409, 0.016354486346244812, -0.04114660248160362, 0.004364076070487499, 0.010142539627850056, -0.0010002267081290483, 0.0060512307099998, 0.021531015634536743, -0.032626524567604065, -0.04250493273139, -0.03190217167139053, -0.0323551744222641, 0.0036249973345547915, 0.02835351601243019, 0.0010003813076764345, 0.010761003941297531, -0.006913513410836458, -0.03019607439637184, -0.016547413542866707, 0.03839537501335144, 0.06464827060699463, 0.009874130599200726, 0.020407456904649734, -0.055879589170217514, -0.02142258547246456, 0.0003753052733372897, 0.043218620121479034, 0.025898052379488945, 0.01632753573358059, 0.013496225699782372, 0.04152446240186691, -0.00774662010371685, -0.02755860611796379, 0.027953246608376503, 0.017573656514286995, -0.016817841678857803, 0.009238902479410172, -0.014671904034912586, -0.011840141378343105, 0.04264785721898079, 0.052219223231077194, 0.028429951518774033, 0.03944868594408035, -0.07612038403749466, 0.004275397397577763, 0.019399059936404228, -0.026022909209132195, -0.018957005813717842, -0.06075315922498703, 0.009203506633639336, 0.008501293137669563, 0.02377658151090145, -0.00864661205559969, -0.028247352689504623, 0.031092636287212372, 0.008742880076169968, 0.011222240515053272, -0.0285174623131752, 0.04644102603197098, 0.03078160062432289, 0.02664998546242714, 0.025267353281378746, -0.009669377468526363, 0.015055949799716473, -0.013225900009274483, -0.030488306656479836, 0.03354869410395622, -0.014232411049306393, -0.01607903651893139, 0.010524137876927853, -0.043774500489234924, -0.014588912017643452, 0.00353489862754941, -0.021255983039736748, 0.019231194630265236, -0.015318095684051514, 0.03899155184626579, 0.005121458787471056, -0.06430042535066605, 0.036795973777770996, 0.039067190140485764, -0.008913276717066765, 0.09876268357038498, -0.007411421276628971, 0.03144245967268944, -0.005348668433725834, -0.0030523366294801235, -0.04312773421406746, 0.04495258629322052, -0.018413716927170753, 0.008867496624588966, -0.008732852526009083, 0.018673067912459373, -0.0174235999584198, -0.020319510251283646, -0.010083436034619808, 0.033741630613803864, 0.027019912376999855, 0.024389101192355156, -0.04104232415556908, 0.025913607329130173, 0.0004643209103960544, 0.04734937101602554, -0.004626522772014141, 0.03794311732053757, -0.027355855330824852, -0.02269822731614113, -0.013262986205518246, -0.04139316827058792, 0.019811252132058144, 0.02060389332473278, 0.006254768930375576, 0.00878833420574665, -0.012453382834792137, 0.05510539188981056, 0.06253650784492493, -0.0039451164193451405, 0.06776037067174911, 0.02794693224132061, -0.054779596626758575, -0.03223876282572746, 0.014895351603627205, 0.08653132617473602, 0.01981542445719242, -0.0024864256847649813, -0.005983533803373575, -0.03158273920416832, -0.026886606588959694, 0.000517712440341711, 0.008282194845378399, 0.00663942052051425, -0.029734015464782715, 0.018123997375369072, 0.013683975674211979, -0.015175309963524342, -0.015643998980522156, -0.006156549789011478, -0.0052554793655872345, -0.05692498758435249, -0.004485423676669598, 0.052316293120384216, -0.010690062306821346, 0.030793728306889534, 0.018722034990787506, -0.0047637345269322395, 0.01738070882856846, 0.0709797814488411, -0.076692596077919, -0.00039265499799512327, 0.02931332215666771, 0.028075918555259705, -0.009677965193986893, -0.03801364451646805, 0.00002570713149907533, -0.013085823506116867, -0.032763686031103134, 0.04263770952820778, 0.014109399169683456, -0.022858934476971626, 0.04463846981525421, 0.02317144349217415, 0.026577508077025414, 0.043605986982584, -0.011364620178937912, 0.0032247102353721857, -0.023389525711536407, 0.05089036747813225, -0.034803543239831924, 0.000598769576754421, -0.012541745789349079, 0.045911457389593124, 0.034717876464128494, 0.07742973417043686, 0.03475596383213997, 0.038971561938524246, 0.045220788568258286, 0.04508503898978233, 0.007955485954880714, 0.012369398027658463, -0.008604646660387516, -0.005830494221299887, 0.04654926061630249, 0.029773952439427376, 0.0017340073827654123, 0.03293630853295326, -0.036475542932748795, 0.021526630967855453, -0.007046147249639034, 0.028220633044838905, -0.041603926569223404, 0.061323873698711395, 0.015978796407580376, 0.031197240576148033, -0.03810259699821472, 0.01089194044470787, 0.044588711112737656, 0.05124152824282646, -0.04411203786730766, -0.005986229982227087, -0.021999171003699303, 0.019528595730662346, -0.021011818200349808, 0.00900962483137846, 0.030643533915281296, 0.032482173293828964, -0.00744550209492445, 0.04266996681690216, 0.018768731504678726, -0.03968820348381996, -0.00890891533344984, -0.0712025985121727, -0.041014041751623154, -0.044244490563869476, -0.053528495132923126, 0.008118681609630585, 0.026412714272737503, -0.021639477461576462, 0.008682592771947384, -0.012652458623051643, -0.00436082249507308, -0.05074061453342438, 0.016432348638772964, 0.07049432396888733, 0.029206212610006332, 0.030028512701392174, -0.037558238953351974, 0.03164465352892876, -0.04818983003497124, -0.00987397599965334, -0.036903854459524155, 0.0075537520460784435, -0.001080160727724433, -0.03394639119505882, 0.051412131637334824, -0.0077504729852080345, 0.009387915953993797, -0.007582404185086489, -0.05910714715719223, -0.03052501752972603, 0.014296247623860836, -0.013548114337027073, 0.017330827191472054, 0.005433305632323027, -0.06128961592912674, 0.048796311020851135, 0.03234650567173958, -0.03894227743148804, 0.06830303370952606, 0.03485925868153572, -0.0521714873611927, 0.049546390771865845, 0.024971939623355865, -0.008406667970120907, -0.06984391808509827, 0.054920464754104614, 0.035236019641160965, -0.004441508091986179, -0.010756675153970718, -0.02015642635524273, -0.038909703493118286, 0.01496659405529499, 0.03564471751451492, 0.006754044909030199, -0.04074209928512573, 0.05224921926856041, 0.012010321952402592, -0.0671602413058281, 0.022757234051823616, -0.0319332554936409, -0.02707064338028431, -0.04824496805667877, -0.040836408734321594, 0.020316895097494125, 0.030711272731423378, 0.0014685875503346324, 0.009708191268146038, -0.047182586044073105, 0.017226923257112503, 0.010737712495028973, 0.037863194942474365, -0.046973761171102524, 0.05337926745414734, 0.039347656071186066, 0.011823955923318863, -0.0035623309668153524, 0.008665693923830986, -0.00795443169772625, -0.028921233490109444, 0.012899480760097504, -0.015941055491566658, 0.005597610026597977, 0.029406113550066948, -0.02457355335354805, 0.027036072686314583, 0.038419146090745926, -0.04189758002758026, -0.025224510580301285, -0.007006002590060234, 0.01078475546091795, 0.030827445909380913, 0.0064835743978619576, 0.00342009449377656, -0.020896483212709427, -0.06899599730968475, -0.02994523011147976, 0.02082137018442154, 0.01780768483877182, 0.053460121154785156, -0.06360240280628204, 0.06617506593465805, 0.0009399729897268116, -0.0355457104742527, 0.04191767796874046, -0.03225865960121155, 0.029884478077292442, 0.042585842311382294, -0.007622641511261463, 0.02179834060370922, -0.06433439254760742, 0.0007029172265902162, 0.010267786681652069, 0.010573641397058964, 0.04295452684164047, -0.006475154776126146, 0.01608874462544918, -0.01154661737382412, -0.017424948513507843, 0.018083572387695312, -0.0024984083138406277, -0.020438095554709435, -0.018251342698931694, -0.0021922432351857424, 0.022533699870109558, -0.048621080815792084, -0.02714700996875763, 0.04866064339876175, 0.03985356539487839, 0.03914923220872879, -0.011811449192464352, 0.0406368151307106, -0.014510500244796276, -0.018177425488829613, 0.020951956510543823, -0.003859936259686947, 0.02062016725540161, -0.034068603068590164, 0.018206635490059853, 0.010337525978684425, -0.03935407102108002, -0.03377675265073776, 0.0067233676090836525, -0.014926007017493248, 0.05036132037639618, 0.02555829845368862, -0.016837114468216896, -0.03533744066953659, 0.0034972343128174543, -0.039947062730789185, 0.020160546526312828, -0.016225574538111687, -0.05462127923965454, 0.02101234532892704, 0.045794691890478134, 0.015159733593463898, -0.07403677701950073, -0.02638489194214344, -0.03968200460076332, 0.05716795474290848, 0.003602069104090333, 0.005304009187966585, -0.04945673793554306, -0.007731850259006023, -0.0526314415037632, -0.03428935259580612, 0.0004477673792280257, 0.026486052200198174, -0.002058797050267458, 0.009367714636027813, -0.03537923842668533, 0.008530695922672749, 0.008806400932371616, -0.018815431743860245, 0.018313443288207054, -0.0026711083482950926, 0.02204672433435917, -0.03109496459364891, 0.03129638731479645, 0.016732484102249146, -0.031515397131443024, 0.026154732331633568, -0.06993434578180313, 0.03573630750179291, -0.011223476380109787, -0.03251560404896736, -0.000954071176238358, 0.03449610248208046, 0.023877445608377457, 0.041991282254457474, -0.002501567592844367, -0.00838586688041687, -0.005466689821332693, 0.03899756073951721, -0.06139248609542847, -0.00622346019372344, 0.0647619441151619, -0.009697978384792805, -0.00539217097684741, 0.002675943775102496, 0.03531277924776077, -0.012385768815875053, 0.00863131694495678, 0.005946626886725426, -0.04639557749032974, 0.01178762223571539, -0.04465579614043236, 0.025380641222000122, -0.03201041743159294, -0.024951988831162453, 0.00754936970770359, -0.023566748946905136, 0.03734702616930008, -0.024907758459448814, -0.01236698031425476, -0.055550556629896164, -0.0588831789791584, -0.02974017523229122, -0.03956656903028488, -0.010933693498373032, -0.017362819984555244, -0.0025315526872873306, -0.007367059122771025, -0.006716147996485233, -0.012749290093779564, -0.0021264429669827223, 0.004620646592229605, -0.02391204982995987, 0.024476034566760063, -0.03686949238181114, 0.006044774316251278, 0.028689535334706306, 0.003326808102428913, -0.025633422657847404, -0.0009914959082379937, -0.020105965435504913, -0.026980949565768242, -0.029112977907061577, -0.00862982589751482, -0.005500525701791048, 0.010964286513626575, -0.004470481537282467, 0.017136307433247566, -0.025476912036538124, 0.03612090274691582, 0.019712194800376892, -0.007395948749035597, 0.0032851817086338997, 0.006692560389637947, -0.05348438769578934, 0.05107497423887253, 0.013589004054665565, -0.049977853894233704, -0.03971290588378906, 0.06415696442127228, -0.009731374680995941, 0.033606819808483124, -0.02866886928677559, -0.026978006586432457, -0.029275992885231972, -0.0618402436375618, 0.016739338636398315, -0.02951352670788765, -0.02149658091366291, -0.0652899369597435, -0.01642557978630066, -0.02329486422240734, 0.022236360237002373, 0.020603125914931297, -0.00915529578924179, -0.005703975446522236, -0.0439571812748909, 0.005331279709935188, -0.04220859706401825, 0.02104288339614868, -0.029975172132253647, -0.008112807758152485, 0.04330465570092201, 0.040431633591651917, 0.012979229912161827, 0.04160746559500694, 0.02415144257247448, -0.010949904099106789, 0.029060333967208862, -0.001669103279709816, -0.05868961662054062, -0.05442116782069206, 0.015943437814712524, -0.0017695737769827247, 0.0004120637022424489, -0.01508780475705862, 0.00667709531262517, 0.057428814470767975, -0.03128935396671295, 0.003695716382935643, -0.019135603681206703, -0.02451273612678051, -0.001990683376789093, -0.003949727397412062, 0.04104302451014519, -0.003754952922463417, 0.024506205692887306, -0.028737228363752365, 0.01803141087293625, 0.04865018278360367, -0.002890350529924035, -0.029495172202587128, 0.003572257002815604, -0.03352140635251999, -0.0514959841966629, 0.010962087661027908, -0.015196981839835644, -0.0202023945748806, -0.0601656474173069, -0.003455094061791897, 0.043029531836509705, 0.014862360432744026, 0.08036019653081894, 0.042290687561035156, -0.017053676769137383, -0.022241657599806786, -0.02520412765443325, 0.021453719586133957, 0.007312930189073086, 0.0031692623160779476, 0.014154480770230293, -0.030628744512796402, -0.004107048735022545, 0.003261899808421731, -0.044481538236141205, -0.028613222762942314, -0.07091061770915985, -0.0272320955991745, 0.0534115731716156, 0.0008019069209694862, 0.03643365204334259, 0.0011468797456473112, -0.03677110746502876, -0.05823126807808876, 0.03890373930335045, -0.002477088011801243, 0.006783344317227602, 0.04370703548192978, -0.004150833003222942, -0.02527736686170101, -0.013900678604841232, -0.0015221595531329513, 0.005705827381461859, -0.04704240709543228, 0.06423524022102356, 0.01202731765806675, -0.017793746665120125, 0.045093320310115814, 0.06217696890234947, -0.05097606033086777, -0.035657431930303574, -0.003932769875973463, 0.014816095121204853, 0.031263839453458786, -0.021433616057038307, -0.0017989844782277942, 0.00012760718527715653, -0.014249376021325588, 0.00015855983656365424, 0.061199530959129333, -0.02270498499274254, 0.03344590216875076, -0.004735772963613272, 0.020289961248636246, -0.07607830315828323, -0.009224693290889263, 0.03448532894253731, -0.005560864228755236, -0.0012919299770146608, -0.03345438092947006, -0.016634536907076836, 0.01706678234040737, -0.024143123999238014, 0.029300957918167114, -0.027474382892251015, -0.0036783870309591293, 0.010526614263653755, 0.0005238687735982239, 0.009100225754082203, 0.016772767528891563, -0.021797722205519676, -0.010824443772435188, -0.03545356169342995, -0.015025945380330086, -0.042826149612665176, 0.022558031603693962, 0.015928048640489578, 0.04069402813911438, -0.04194667562842369, 0.0011718492023646832, 0.020708324387669563, 0.025147980079054832, 0.0035449389833956957, -0.03702039644122124, -0.045043520629405975, -0.03403180092573166, -0.060251008719205856, -0.005792106501758099, -0.03648032993078232, -0.022469690069556236, -0.0002592121600173414, 0.003151925513520837, -0.03461296856403351, -0.00972678605467081, 0.006085437722504139, -0.02928391844034195, 0.003974727354943752, -0.06638487428426743, 0.05425725132226944, -0.03519841283559799, -0.017024440690875053, -0.012238063849508762, -0.014228183776140213, -0.044275060296058655, 0.01235282514244318, 0.031151287257671356, 0.044700175523757935, 0.012545054778456688, 0.02023486979305744, 0.00291387434117496, -0.010962632484734058, -0.024128874763846397, -0.03986348584294319, -0.01851092465221882, 0.03394400700926781, -0.0307395588606596, 0.046502672135829926, 0.026109818369150162, -0.021697774529457092, 0.03945359215140343, 0.03839009627699852, -0.012625329196453094, -0.018674209713935852, -0.008521953597664833, 0.006660012528300285, 0.0009241978987120092, -0.019974475726485252, 0.0016300578135997057, -0.013078387826681137, -0.012726746499538422, 0.030989715829491615, 0.006107688881456852, 0.030001327395439148, 0.006828687619417906, -0.036738332360982895, 0.03590169548988342, 0.0379677340388298, -0.00044590566540136933, 0.023813366889953613, 0.03910720720887184, 0.055813148617744446, 0.019123248755931854, -0.011935042217373848, -0.004992574453353882, 0.045690566301345825, 0.020191675052046776, -0.031432606279850006, 0.03341543301939964, 0.011024268344044685, -0.02289004996418953, 0.029583817347884178, -0.0329982228577137, -0.01670260541141033, -0.04125603288412094, 0.01202839519828558, -0.003375391475856304, 0.034861575812101364, -0.02068204991519451, -0.01624840870499611, 0.01766127534210682, -0.006119775585830212, -0.0457688607275486, 0.026042839512228966, -0.061031047254800797, 0.004161841701716185, 0.017767922952771187, -0.026700394228100777, -0.01567237265408039, -0.013101979158818722, -0.060799289494752884, 0.009627978317439556, 0.004723912570625544, 0.0044432408176362514, -0.02355697564780712, 0.01548593770712614, 0.003923271782696247, 0.026256555691361427, 0.003986329305917025, 0.017885642126202583, -0.000281600485322997, 0.04555322602391243, -0.043451033532619476, -0.024707017466425896, 0.038140177726745605, 0.04859279468655586, 0.01566430740058422, 0.00772943627089262, -0.019764214754104614, -0.007343776524066925, 0.019706644117832184, -0.017040280625224113, 0.02319237031042576, 0.034562576562166214, 0.017848782241344452, 0.0017267242074012756, -0.02392849139869213, 0.004768571816384792, -0.04114370793104172, 0.03795751556754112, 0.024361254647374153, -0.05085071921348572, -0.01337297260761261, 0.025475000962615013, 0.04116242006421089, -0.04071515053510666, 0.0321672223508358, -0.01644451543688774, 0.07100386172533035, -0.03204336017370224, 0.04075688123703003, -0.014484383165836334, 0.054552726447582245, 0.043154507875442505, 0.042752061039209366, 0.02191135846078396, 0.02472604438662529, 0.06812459975481033, -0.00467418460175395, 0.009496347047388554, 0.05173711106181145, 0.01218668557703495, -0.048669397830963135, 0.02538111060857773, -0.05350986868143082, 0.011930412612855434, 0.012896789237856865, -0.009432729333639145, 0.014831659384071827, -0.04010206460952759, 0.02353782020509243, -0.012206832878291607, -0.01673588901758194, 0.0678924098610878, 0.005617346614599228, 0.010788640938699245, 0.012313156388700008, -0.034464314579963684, 0.0008203777251765132, 0.016853079199790955, 0.007987210527062416, 0.0016137657221406698, 0.012986166402697563, 0.026887768879532814, -0.009164928458631039, 0.042398322373628616, 0.029443806037306786, -0.027667155489325523, -0.03651423007249832, 0.012562679126858711, 0.013906867243349552, -0.006102040875703096, -0.03438545763492584, -0.007182031869888306, -0.04318704083561897, 0.012556991539895535, -0.029561910778284073, -0.018880676478147507, 0.03155539557337761, -0.018671952188014984, 0.0054530068300664425, -0.03089262917637825, 0.036354321986436844, -0.023164575919508934, -0.012331786565482616, 0.038143277168273926, -0.026967471465468407, -0.04624157026410103, 0.06120389327406883, -0.004054211545735598, 0.05116822570562363, -0.02592162787914276, 0.03708750754594803, 0.004325098358094692, 0.04506496340036392, 0.06763780862092972, -0.04555400088429451, -0.020397987216711044, 0.0017934935167431831, 0.00563482940196991, -0.033093422651290894, -0.015131854452192783, -0.011201201006770134, 0.0030093591194599867, -0.03317275270819664, -0.006205151788890362, -0.014002233743667603, 0.042671650648117065, -0.019320033490657806, -0.024821367114782333, -0.01090281642973423, 0.040158383548259735, -0.02005879208445549, 0.011154168285429478, -0.0011280850740149617, 0.02140144445002079, 0.003490852192044258, -0.0027575651183724403, -0.05427474156022072, -0.02475213259458542, -0.012043760158121586, -0.06371427327394485, 0.01409731712192297, -0.008232854306697845, -0.02970500849187374, -0.0384519062936306, -0.028725242242217064, -0.0522892139852047, 0.016643604263663292, -0.05494726821780205, -0.057063210755586624, 0.04690132662653923, 0.04571032524108887, 0.0013207790907472372, 0.0328596793115139, -0.02458527311682701, -0.007140903268009424, 0.031254857778549194, 0.030218403786420822, -0.002118119038641453, 0.03784085065126419, 0.03916492685675621, -0.04342549294233322, 0.019722038879990578, -0.01249818317592144, 0.051869530230760574, -0.0243807565420866, -0.01760527677834034, -0.0468786358833313, 0.018160440027713776, 0.010078368708491325, -0.07246445119380951, 0.03059297427535057, 0.013198912143707275, -0.02256343513727188, -0.012290106154978275, -0.06502901762723923, 0.005647467449307442, -0.036786094307899475, 0.007879992015659809, -0.04938150569796562, 0.042136792093515396, 0.010559335350990295, -0.01497562788426876, -0.03258892521262169, -0.059917062520980835, 0.16154776513576508, 0.027584845200181007, 0.00840382743626833, -0.024754414334893227, 0.05345061048865318, 0.032390229403972626, 0.01523839682340622, 0.0027024170849472284, 0.020744625478982925, -0.0510128028690815, 0.016715513542294502, 0.026909828186035156, 0.03801128268241882, -0.021415339782834053, 0.020689450204372406, 0.07787024229764938, -0.03285199776291847, -0.01663419045507908, 0.022500881925225258, -0.027646049857139587, -0.029699072241783142, 0.0365891307592392, 0.0031660674139857292, 0.012249632738530636, -0.0025492124259471893, 0.018984954804182053, 0.008458581753075123, -0.05047225207090378, -0.0011148654157295823, 0.002023594221100211, 0.03694652393460274, -0.03081347979605198, 0.017263509333133698, -0.03963692486286163, -0.050725169479846954, 0.04850080981850624, 0.011126584373414516, 0.007192830089479685, -0.0007656042580492795, 0.017258331179618835, 0.008423658087849617, -0.010152844712138176, 0.01470821350812912, -0.0458625890314579, 0.012475430965423584, 0.029813868924975395, -0.04190738871693611, 0.002901259111240506, 0.03739664703607559, -0.029626382514834404, 0.029617195948958397, -0.04818718135356903, 0.028750231489539146, -0.022239940240979195, -0.022272951900959015, 0.014418023638427258, 0.024607917293906212, -0.02998361550271511, -0.017906924709677696, 0.019487418234348297, 0.03792118281126022, -0.017405875027179718, -0.009854160249233246, -0.01249324344098568, -0.018298404291272163, -0.002854407299309969, 0.04346528276801109, 0.01804303005337715, -0.021718677133321762, -0.002863930072635412, -0.01900993473827839, -0.025624433532357216, 0.003148210234940052, -0.03155345097184181, 0.03265795111656189, 0.03243957832455635, 0.002885543741285801, 0.03959733620285988, 0.04715245962142944, -0.0175617802888155, -0.04154062643647194, -0.02346540242433548, 0.016860418021678925, -0.018416300415992737, 0.019002996385097504, 0.03104589879512787, -0.04817768558859825, -0.03331678733229637, -0.040347710251808167, 0.05305425822734833, 0.041960153728723526, -0.0011893250048160553, -0.036762677133083344, -0.02820765972137451, -0.019298918545246124 ]
10 awesome pies for Pi Day by Colin Joliat 6 years ago Use your ← → keys to navigate We're not big on math here at Guyism, but we do love pie. That's why when people say it's Pi Day, we immediately want to add the letter "e." Here are 10 great options, and we're not talking about apple, pumpkin, etc. TheKitchn Whoopie Pies are to Oreos what Ruth's Chris is to Steak n Shake. I'd gladly take either, but the quality of one is far superior. Had he not been a Chicago Cub, I wouldn't know that Felix Pie was a baseball player. When you're sitting at a game though it's impossible not to notice a mediocre player with an awesome name. Oatmeal Cream Pies were a staple of my formative fat years. We didn't have much junk food in the house, but these could always be found in the pantry. How long has it been since you listened to "30 Days in the Hole?" No matter what you said, it's been too long. Pi Day is second only to Friday as an excuse to throw on a little Humble Pie. eckrich KFC's is the least healthy item on their menu, but that's because pot pies are delicious. They are big baked bread buckets of goodness, and whether it's fast food or homemade, it's always a good time for pot pie. Mmiki- DeviantArt I had a meat pie for the first time last year in London. It was life changing. OK, not really, but it was damn good. I can only hope it wasn't made with humans. Times are tough, after all. Mad Betty There are plenty of more delicious looking pizzas than this, but I associate the term pie with NY. No one in Chicago calls it a pie. They taste great regardless of semantics though, so go home and order one to celebrate. VeronicasCornucopia Cow pies have been making kids snicker since their invention in some year in the past. Everyone has that friend whose mom made them though, and they were always a hit. It only takes one bite to get past the dung connotation, and then it's nothing but chocolate coated goodness. CandyCarrollton I don't know which came first, the Moon Pie or the S'More, but they're essentially the same thing. It's the same ingredients in a different order and temperature, which makes the Moon Pie perfect for an urban camper. Visual.ly There has never been a more accurate pie chart than this one, which is probably why it's circulated the internet for years. It's literal, it's honest, and it's still downright delicious. Continue › View Single Page TAGSPi Daypiewhoopie pie
[ 0.02877059206366539, -0.011764111928641796, -0.0404142327606678, -0.016067884862422943, -0.061446622014045715, 0.004240361042320728, 0.008837457746267319, 0.03017769753932953, 0.046033408492803574, 0.024537652730941772, 0.0314960815012455, -0.010389929637312889, 0.025782238692045212, -0.04719879850745201, -0.026996245607733727, 0.0013620344689115882, -0.031282078474760056, -0.03244289010763168, -0.015183070674538612, 0.00035531350295059383, 0.023217972368001938, 0.03244449943304062, -0.046884920448064804, -0.014392153359949589, -0.012280996888875961, 0.04890060052275658, 0.02155311591923237, 0.008781619369983673, 0.06457958370447159, 0.04227662831544876, -0.001464583445340395, -0.024550989270210266, 0.04770997166633606, -0.07533831149339676, -0.016747867688536644, -0.018235692754387856, 0.061373766511678696, -0.01116085983812809, -0.015308554284274578, -0.03878838196396828, 0.015986496582627296, -0.045064762234687805, 0.005199435167014599, -0.036583125591278076, -0.02504439651966095, -0.011370813474059105, -0.0307316891849041, -0.028796201571822166, 0.03638643026351929, -0.01995670795440674, -0.0006918854196555912, -0.010611028410494328, 0.05130503326654434, 0.019256528466939926, -0.006506140809506178, -0.005881885997951031, 0.03607891872525215, -0.017253819853067398, 0.0073116738349199295, 0.027004830539226532, 0.013470707461237907, 0.016779819503426552, 0.0152406832203269, -0.050298336893320084, 0.015363234095275402, -0.024339843541383743, -0.011997721157968044, -0.005172370467334986, 0.0148224588483572, -0.029460404068231583, 0.006296022795140743, 0.003361042821779847, -0.008662291802465916, -0.024061407893896103, -0.008123212493956089, -0.013466596603393555, -0.016086680814623833, 0.017827507108449936, -0.018605325371026993, -0.005576124880462885, -0.005191597621887922, 0.06006165221333504, -0.0030520439613610506, 0.022308632731437683, -0.07372985780239105, -0.0182747021317482, -0.0011758161708712578, 0.030011208727955818, 0.004499845672398806, 0.0010009087854996324, 0.023782258853316307, 0.04006991535425186, -0.0057751513086259365, -0.0242922306060791, 0.060628924518823624, 0.05685306340456009, -0.007154743652790785, 0.01884244568645954, -0.003933376632630825, -0.013394069857895374, 0.04892389848828316, 0.03389440476894379, 0.004166208673268557, 0.04030636325478554, -0.032574839890003204, 0.022936850786209106, 0.007132142316550016, 0.005650377832353115, -0.036252301186323166, 0.00613012257963419, -0.006663840729743242, -0.00849642138928175, 0.03766408935189247, 0.0206232201308012, -0.014544210396707058, 0.044212281703948975, -0.010426722466945648, 0.040729135274887085, -0.022764474153518677, 0.006198040675371885, 0.007836817763745785, -0.006290707737207413, 0.021531041711568832, -0.025946248322725296, 0.0054983114823699, -0.017690613865852356, -0.0328061580657959, 0.0402456670999527, -0.022323964163661003, -0.0039142114110291, 0.006473721005022526, -0.03565475344657898, 0.011715543456375599, 0.0071388911455869675, -0.01981208845973015, 0.0229142215102911, -0.031231865286827087, 0.01718764752149582, 0.021908728405833244, -0.03653530776500702, 0.028040679171681404, 0.015292580239474773, -0.004688784014433622, 0.09383099526166916, 0.026414083316922188, 0.0339125357568264, -0.023250309750437737, 0.011064889840781689, 0.0021005801390856504, 0.04047878831624985, -0.023334141820669174, 0.022165315225720406, -0.006423142738640308, 0.004649774171411991, -0.02790210023522377, 0.007778300438076258, -0.006055167410522699, -0.002547582844272256, 0.010683597065508366, 0.017153777182102203, -0.010485098697245121, 0.00676605524495244, -0.014176769182085991, 0.06589891761541367, -0.02371693216264248, 0.051894500851631165, -0.03498508036136627, -0.01610446535050869, -0.02380441688001156, -0.02229640819132328, 0.012435509823262691, 0.019854165613651276, -0.026899198070168495, 0.008402318693697453, 0.025309886783361435, 0.06899012625217438, 0.037762098014354706, -0.04855020344257355, 0.03334501385688782, 0.01924709975719452, -0.06834907084703445, 0.005601969081908464, 0.0026054324116557837, 0.04144123196601868, -0.0022546995896846056, 0.010778887197375298, -0.0026458825450390577, -0.03704778477549553, -0.006396987475454807, -0.03140493482351303, -0.0033417956437915564, 0.024386228993535042, -0.033712852746248245, 0.020402342081069946, 0.012987622991204262, -0.02016185037791729, 0.01069220993667841, -0.002973981434479356, -0.007498348131775856, -0.06569387018680573, -0.01969614066183567, 0.07381759583950043, -0.0036486084572970867, 0.019400104880332947, -0.002682371297851205, -0.037406157702207565, 0.03342178463935852, 0.06968966126441956, -0.07742436230182648, -0.0026370747946202755, 0.03196343034505844, 0.01045544445514679, 0.005473475903272629, -0.0009970339015126228, -0.024096723645925522, -0.014949019066989422, -0.0038030697032809258, 0.06179302558302879, -0.004005627240985632, 0.00811918918043375, 0.017433272674679756, 0.03519585728645325, 0.05589944124221802, 0.0041437107138335705, -0.01660475693643093, 0.03133262321352959, -0.016799747943878174, 0.04317643865942955, -0.031179869547486305, -0.0025687802117317915, -0.014624711126089096, 0.05340680107474327, 0.026075661182403564, 0.025958988815546036, 0.03844967857003212, 0.014500338584184647, 0.0582667700946331, 0.008702528662979603, -0.010893852449953556, 0.04606321081519127, 0.016078177839517593, 0.002490162616595626, 0.023836061358451843, -0.022604990750551224, -0.012821951881051064, 0.04324628412723541, 0.016614168882369995, 0.01897147297859192, -0.025389300659298897, 0.058735787868499756, -0.013119300827383995, 0.018993331119418144, 0.017512422055006027, 0.024485314264893532, -0.02491156756877899, -0.01458942424505949, 0.014791587367653847, 0.06396455317735672, -0.015097054652869701, -0.00468212366104126, -0.008190339431166649, 0.01781114563345909, 0.010178955271840096, 0.0047122640535235405, 0.037908826023340225, 0.040400564670562744, -0.010847202502191067, 0.039043113589286804, -0.003909917548298836, -0.012942603789269924, -0.013483374379575253, -0.03325581178069115, -0.020265033468604088, -0.039445795118808746, -0.052447061985731125, 0.0016925442032516003, 0.027282757684588432, -0.05108276382088661, 0.023225493729114532, -0.013138823211193085, -0.005181913264095783, -0.030456651002168655, -0.025347383692860603, 0.05628348886966705, 0.0053321924060583115, 0.0339079312980175, -0.031447991728782654, 0.0581548772752285, -0.013810647651553154, 0.020459238439798355, -0.028132135048508644, -0.023171251639723778, 0.01470793318003416, -0.017367392778396606, 0.0037275981158018112, 0.01510001253336668, -0.006328608375042677, -0.002339625032618642, -0.0007549535948783159, -0.07565905153751373, 0.05059022083878517, 0.010555973276495934, 0.015879640355706215, -0.013901888392865658, -0.0748385637998581, -0.002202078700065613, 0.051502540707588196, -0.030708245933055878, 0.042160481214523315, 0.029002364724874496, -0.02629515901207924, 0.03637750446796417, 0.029073255136609077, 0.020174289122223854, -0.024328971281647682, 0.032330140471458435, 0.036310166120529175, 0.019277773797512054, -0.04413991793990135, 0.016995636746287346, -0.037598639726638794, 0.014551174826920033, 0.01940729096531868, -0.036261558532714844, -0.015543204732239246, 0.028941335156559944, 0.010440362617373466, -0.05857938900589943, 0.02165169082581997, -0.03213396668434143, -0.012900580652058125, -0.018607448786497116, -0.028743935748934746, 0.04792109876871109, 0.034875668585300446, 0.011865915730595589, 0.015861378982663155, -0.04144270345568657, -0.01175379753112793, 0.021661311388015747, 0.004512680694460869, -0.03315221518278122, 0.025671042501926422, 0.0402771532535553, -0.041270662099123, -0.009676809422671795, 0.04601740837097168, 0.006862209178507328, -0.003937047906219959, 0.0035163220018148422, -0.006284110248088837, 0.014654699712991714, 0.03045651689171791, 0.026283374056220055, -0.004722973797470331, 0.07317191362380981, -0.04571967199444771, -0.000574867008253932, 0.0058208731934428215, 0.018824400380253792, 0.025695905089378357, -0.0004979638033546507, -0.0013405262725427747, 0.017342301085591316, -0.05553612858057022, -0.03455093875527382, -0.016470246016979218, -0.011975805275142193, 0.04404187574982643, -0.06575323641300201, 0.0714322179555893, 0.010570578277111053, 0.008199367672204971, 0.05249421298503876, -0.061095383018255234, -0.0009708620491437614, 0.023317975923419, 0.004857107065618038, 0.03523234277963638, -0.028511766344308853, 0.0004937432240694761, -0.033119507133960724, -0.003635629080235958, 0.007318123709410429, -0.03379309922456741, 0.022058287635445595, -0.0434916689991951, -0.03065435029566288, -0.03532073646783829, -0.03687658905982971, -0.007271445821970701, -0.006244146265089512, 0.018794845789670944, 0.004550621844828129, -0.04372010752558708, -0.023615825921297073, 0.029036954045295715, 0.022667981684207916, 0.02719690650701523, -0.015195555053651333, 0.02382933348417282, -0.008510308340191841, 0.029330071061849594, 0.029774757102131844, 0.0053536598570644855, -0.001325772376731038, -0.033475760370492935, 0.04321923106908798, 0.038967229425907135, -0.02205965481698513, -0.0229430440813303, -0.02039005048573017, -0.06646528840065002, 0.01242087408900261, 0.009044975973665714, -0.019300805404782295, -0.02559698559343815, 0.05864417552947998, 0.00450258981436491, 0.046870794147253036, -0.03314121440052986, -0.014491280540823936, 0.005526099354028702, 0.010032313875854015, 0.02434806525707245, -0.052000317722558975, -0.014073053374886513, -0.047110069543123245, 0.05155503749847412, 0.036208439618349075, -0.02294299006462097, -0.08166778087615967, -0.012060756795108318, -0.043867528438568115, -0.042188726365566254, -0.006044803652912378, 0.052665840834379196, -0.029713260009884834, 0.031726058572530746, -0.07241752743721008, 0.018213115632534027, 0.03852446749806404, 0.005113089457154274, -0.019893310964107513, 0.010404451750218868, 0.028029264882206917, -0.020693426951766014, 0.053998298943042755, -0.04822313040494919, -0.037468746304512024, 0.03286479413509369, -0.05110180005431175, -0.0007739245775155723, -0.0065267509780824184, -0.030614981427788734, 0.028941862285137177, -0.012828345410525799, -0.013938977383077145, 0.015853513032197952, -0.025027623400092125, 0.03532194718718529, 0.007893096655607224, 0.03123326227068901, -0.05659470707178116, -0.006979968398809433, 0.06351669877767563, -0.011956832371652126, -0.026648594066500664, 0.03500846028327942, 0.03433716669678688, 0.005449935328215361, -0.007871797308325768, 0.042610298842191696, -0.039437033236026764, 0.01066261064261198, -0.02615334279835224, 0.018088921904563904, -0.018276862800121307, -0.002628251211717725, 0.006084671709686518, -0.042705755680799484, 0.023150179535150528, 0.024151185527443886, -0.016889935359358788, -0.02872910164296627, -0.06870611011981964, -0.028956884518265724, 0.008421426638960838, -0.005747577641159296, 0.013228034600615501, -0.002848403761163354, -0.025698577985167503, -0.021105065941810608, -0.033482857048511505, 0.030124206095933914, 0.0056913611479103565, -0.006769311614334583, -0.003210551105439663, 0.0270253736525774, 0.044423285871744156, 0.009094888344407082, 0.03292723372578621, -0.06084990128874779, 0.006113692652434111, 0.001995920902118087, -0.005872196052223444, -0.039658255875110626, 0.027505770325660706, -0.025403233245015144, -0.020940158516168594, -0.014851783402264118, -0.011762344278395176, -0.004617487080395222, 0.030713412910699844, 0.01859060674905777, 0.024503879249095917, 0.01777445524930954, 0.043637752532958984, -0.05430631339550018, 0.04127020761370659, 0.013527690432965755, -0.04529411345720291, -0.018695032224059105, 0.024691615253686905, -0.020722849294543266, 0.05690765008330345, -0.015450742095708847, -0.035588573664426804, -0.05820178613066673, -0.08329398930072784, 0.01415598951280117, -0.0681598111987114, -0.025899065658450127, -0.05525585263967514, -0.025334909558296204, -0.01771644316613674, 0.04151291400194168, -0.034329552203416824, -0.018943144008517265, -0.0129367895424366, -0.0419195294380188, -0.013886921107769012, -0.011372807435691357, -0.017895027995109558, -0.010123453103005886, 0.007295562885701656, -0.0013480714987963438, 0.04990682750940323, -0.02167254313826561, 0.040100134909152985, 0.019248289987444878, 0.01402391865849495, 0.02311607450246811, -0.009257272817194462, -0.038436684757471085, -0.00775862205773592, -0.012571178376674652, -0.02257480099797249, -0.008284012787044048, 0.024884557351469994, -0.04264798387885094, 0.04269272834062576, -0.05054927244782448, -0.012565593235194683, -0.053312625735998154, -0.014971724711358547, -0.018593912944197655, 0.0017988501349464059, 0.04908045008778572, -0.02365620993077755, -0.04003284126520157, -0.03932465985417366, 0.05677919462323189, 0.058874666690826416, 0.006672032177448273, -0.04128441959619522, -0.014112415723502636, -0.04326758161187172, -0.05027461051940918, 0.029743673279881477, -0.008947573602199554, 0.006273296196013689, -0.06155106797814369, -0.01973823271691799, 0.0353778712451458, -0.00033974714460782707, 0.01229493785649538, 0.049933966249227524, 0.010395416058599949, -0.011662518605589867, -0.03575323522090912, 0.02738044410943985, 0.03589706867933273, -0.013855308294296265, 0.007541498634964228, -0.009204710833728313, -0.03743666782975197, 0.03234574943780899, -0.07246008515357971, -0.04124526306986809, -0.04451567679643631, -0.01113118976354599, 0.05696631222963333, -0.03448765352368355, 0.02357463166117668, -0.03351813927292824, -0.06371985375881195, -0.026051318272948265, 0.060911182314157486, 0.0029192364308983088, 0.007706953212618828, 0.059736959636211395, 0.006751729175448418, -0.02254912443459034, 0.012028265744447708, 0.00968131422996521, -0.010912497527897358, -0.006310411263257265, 0.046680279076099396, 0.003235042793676257, -0.053770359605550766, 0.04656163230538368, 0.04073784127831459, -0.0776815265417099, -0.03631043806672096, 0.01714874431490898, 0.011313929222524166, -0.012564628385007381, -0.04311387613415718, -0.00324997422285378, 0.02387971244752407, 0.012279239483177662, 0.0024511278606951237, 0.05941236764192581, -0.00717294542118907, 0.03196069598197937, 0.011274872347712517, 0.026481200009584427, -0.013599324971437454, 0.016197368502616882, 0.019210586324334145, -0.025887712836265564, -0.03378644958138466, -0.004121177829802036, -0.005678154062479734, 0.027762550860643387, -0.025562239810824394, 0.05188731849193573, -0.029796214774250984, -0.011465123854577541, 0.017395924776792526, -0.016232218593358994, 0.0308346226811409, 0.014122354798018932, -0.016161374747753143, 0.01870112307369709, -0.005960837937891483, -0.08193036168813705, -0.06806494295597076, 0.007848767563700676, -0.019815417006611824, 0.044158246368169785, -0.03901871666312218, -0.013220909051597118, 0.01690387725830078, -0.011903629638254642, -0.022029496729373932, -0.04984571412205696, -0.031354740262031555, -0.0670887678861618, -0.06850626319646835, -0.023118751123547554, -0.02428542636334896, -0.013270086608827114, 0.016336863860487938, 0.026373399421572685, -0.02391107939183712, 0.015455841086804867, -0.005390091333538294, -0.03240552172064781, -0.003534308634698391, -0.07721907645463943, 0.01787458173930645, -0.037764038890600204, -0.035550717264413834, -0.052191831171512604, 0.008542453870177269, -0.017908919602632523, -0.011297428049147129, -0.029184235259890556, 0.007076890207827091, 0.0034985197708010674, 0.03478575125336647, 0.0034622647799551487, 0.025540724396705627, -0.030725127086043358, -0.042968522757291794, -0.011936724185943604, 0.05792958661913872, 0.019010625779628754, 0.008064123801887035, -0.008487528190016747, -0.010570287704467773, 0.03317638859152794, 0.001446822308935225, -0.009976156055927277, -0.010707023553550243, 0.014854444190859795, 0.017630640417337418, 0.014342404901981354, -0.022504763677716255, -0.023649903014302254, -0.00978246983140707, -0.024165093898773193, 0.049600277096033096, -0.017774827778339386, 0.03483846038579941, 0.018241524696350098, 0.01808156818151474, -0.024921154603362083, 0.07591213285923004, 0.023837648332118988, 0.04280179738998413, -0.007339488249272108, 0.05109510198235512, 0.0002782488299999386, -0.028796404600143433, 0.021891439333558083, 0.02156534232199192, 0.01530724111944437, -0.02689470164477825, 0.0066893440671265125, -0.011444652453064919, 0.007600002456456423, 0.03706841915845871, 0.00034539602347649634, -0.04237496107816696, -0.025743544101715088, -0.022532522678375244, 0.008685079403221607, 0.044621922075748444, -0.00902545265853405, -0.0383046418428421, 0.05706145614385605, -0.018320802599191666, -0.04672809690237045, -0.0011440269881859422, -0.07175078988075256, -0.021279094740748405, 0.04225500300526619, -0.020820114761590958, -0.010414022020995617, 0.005827141460031271, -0.043036408722400665, 0.005702867638319731, -0.018843557685613632, 0.0003954323474317789, -0.022286543622612953, 0.004993948619812727, -0.030512342229485512, 0.039335768669843674, 0.008547070436179638, -0.025622176006436348, 0.008153215050697327, 0.045784417539834976, -0.027078699320554733, -0.016311651095747948, 0.02632671408355236, 0.018274690955877304, 0.0045270672999322414, -0.012600710615515709, 0.008952251635491848, 0.01914217136800289, 0.025272808969020844, 0.026707150042057037, 0.007426085416227579, 0.005036985967308283, -0.003988274373114109, 0.037504080682992935, -0.03654550015926361, -0.013953378424048424, -0.011260292492806911, 0.056487906724214554, -0.0010160849196836352, -0.03530546650290489, -0.034238170832395554, 0.059643346816301346, 0.021558456122875214, 0.024427365511655807, 0.06469430774450302, 0.0032404116354882717, 0.04747306555509567, -0.004122220911085606, 0.010913070291280746, -0.036375097930431366, 0.029670722782611847, 0.035313017666339874, 0.012926936149597168, 0.018043145537376404, 0.034610647708177567, 0.0736055076122284, -0.024205047637224197, 0.03411684185266495, -0.0076874978840351105, 0.025846809148788452, -0.04362344741821289, 0.0369524285197258, -0.009838797152042389, 0.00046252840547822416, 0.006383896339684725, -0.010023411363363266, 0.02100517600774765, -0.021610762923955917, 0.0005655097193084657, -0.01830713450908661, 0.01770329847931862, 0.028079431504011154, -0.02696034125983715, 0.04044117406010628, 0.010595591738820076, 0.0010096488986164331, -0.00930784922093153, 0.023759037256240845, -0.0023807815741747618, 0.015970783308148384, 0.055623479187488556, 0.0065529742278158665, -0.01963922753930092, 0.045822978019714355, 0.003359191119670868, 0.0007009069668129086, -0.004395457915961742, 0.01116149127483368, -0.014812005683779716, 0.0011475468054413795, -0.016723450273275375, -0.008243595249950886, -0.04172494634985924, 0.032148897647857666, -0.004055400379002094, 0.00022172466560732573, 0.07020749151706696, -0.03947428986430168, -0.029653489589691162, -0.04479010030627251, 0.04488646984100342, -0.004650104325264692, 0.0016894449945539236, 0.03340970352292061, 0.003981543239206076, -0.0018914039246737957, 0.0377437062561512, 0.010920935310423374, 0.04102298617362976, 0.010409960523247719, 0.06997255235910416, -0.004752198234200478, 0.022731050848960876, 0.07242603600025177, -0.04579280689358711, -0.02839488536119461, 0.018966052681207657, -0.017794884741306305, -0.04358720779418945, -0.015432664193212986, -0.02693948894739151, -0.002792160492390394, -0.01682029291987419, -0.023627394810318947, 0.0011888130102306604, 0.028320150449872017, 0.02433689869940281, -0.022904247045516968, -0.044318925589323044, 0.03381890431046486, -0.043326281011104584, 0.008887730538845062, -0.000597379868850112, 0.025929749011993408, -0.04011930525302887, -0.024215396493673325, -0.022295167669653893, -0.022584974765777588, -0.012892174534499645, -0.015912776812911034, 0.024175914004445076, -0.019499698653817177, -0.03171013668179512, -0.030896630138158798, -0.0595136322081089, -0.04798567667603493, -0.008364098146557808, -0.04054247960448265, -0.03366376832127571, 0.053237441927194595, 0.021439172327518463, -0.03633520379662514, -0.0034128897823393345, -0.0175400972366333, -0.007917976938188076, -0.007691935636103153, 0.06085535138845444, 0.00659747002646327, 0.019344506785273552, 0.023548303171992302, -0.01556063536554575, 0.03366324305534363, -0.02953474596142769, 0.03944778069853783, -0.02087305299937725, 0.00011198817082913592, -0.04924950748682022, 0.014344952069222927, -0.01442688424140215, -0.07883060723543167, 0.01738370768725872, 0.01625053398311138, 0.03060881793498993, -0.03404518961906433, -0.08062922209501266, 0.006769717670977116, -0.01596803590655327, 0.003788344794884324, -0.04822700098156929, 0.006585213355720043, 0.03158234432339668, -0.03131205588579178, -0.01515719573944807, -0.05738404020667076, 0.14350588619709015, 0.040073733776807785, 0.02511831931769848, -0.0029132806230336428, 0.020335694774985313, 0.007347308099269867, 0.03705323114991188, -0.01837041601538658, -0.02949695661664009, -0.03656730055809021, 0.052127186208963394, 0.001553650014102459, 0.031393084675073624, 0.026897696778178215, 0.03574242442846298, 0.03787988796830177, -0.02377314120531082, 0.0016484502702951431, 0.004456728231161833, -0.038592640310525894, -0.05581161379814148, 0.021012360230088234, 0.026780741289258003, 0.01482961792498827, -0.010159745812416077, 0.022734709084033966, 0.02307971939444542, -0.07825053483247757, -0.020099198445677757, -0.01464940421283245, 0.03801831975579262, -0.04206031188368797, 0.029369691386818886, -0.03206031769514084, -0.03948310762643814, 0.0497678704559803, 0.02226794697344303, -0.0502198226749897, 0.0044641741551458836, 0.02433030866086483, -0.007710582576692104, 0.018934622406959534, 0.04235072806477547, -0.04837663471698761, 0.01040679682046175, 0.017453448846936226, -0.008434058167040348, 0.020818309858441353, -0.0039270613342523575, -0.04170321673154831, 0.05344495177268982, -0.02715567871928215, 0.02621176838874817, -0.016535913571715355, -0.042225878685712814, 0.04665248841047287, 0.036836180835962296, -0.011197229847311974, -0.009600014425814152, -0.02745346911251545, 0.012655720114707947, -0.016012396663427353, 0.005811025388538837, -0.010375129990279675, -0.006116981152445078, 0.009080528281629086, 0.005697597283869982, 0.01946035400032997, 0.0026867606211453676, -0.044075027108192444, -0.0019667944870889187, -0.005350957158952951, 0.019067900255322456, 0.004309529904276133, 0.036766417324543, 0.008837754838168621, 0.000054583077144343406, 0.04598795250058174, 0.02864333614706993, -0.03771877661347389, -0.018376804888248444, -0.048873916268348694, -0.04769349843263626, 0.02065618708729744, 0.02255341410636902, 0.061192989349365234, -0.038550060242414474, -0.027410846203565598, -0.018163874745368958, 0.06810436397790909, 0.02996174991130829, -0.005858329124748707, -0.045573219656944275, -0.0003808242327068001, -0.015497161075472832 ]
Mazda RX 7 FD3S genuine new and used JDM parts supplied direct from Japan and shipped worldwide. *** If you DO NOT receive a response within 48 hours via email please check your spam junk folder to ensure a response was not unintentionally classified as spam. looking to buy a stock ECU for 2018 Yamaha Sidewinder. Anyone sell these? Find great deals on eBay for 7.3 Injectors in Fuel Injectors. Shop with confidence. Emaps is the UK's leading car engine tuner. With over 20 years of experience in Chip Tuning and Remapping ensuring your car is in safe hands.
[ -0.02837766520678997, 0.015470381826162338, -0.034072473645210266, 0.0029937108047306538, -0.01987866498529911, 0.018781712278723717, 0.0050439308397471905, 0.012980754487216473, 0.023242486640810966, 0.035232897847890854, 0.018137836828827858, 0.02205129712820053, -0.01806088164448738, -0.027172066271305084, -0.02329135872423649, 0.008197175338864326, -0.0008310067933052778, -0.023993168026208878, -0.00823906995356083, -0.029030725359916687, -0.008177640847861767, -0.020726755261421204, -0.059602007269859314, -0.03602380305528641, -0.024383317679166794, -0.0003261637466493994, 0.020941700786352158, 0.008829405531287193, 0.031200075522065163, 0.06114114075899124, -0.04782755672931671, -0.02931695431470871, 0.03471354395151138, -0.026918400079011917, -0.012066678144037724, -0.0038553448393940926, 0.008724277839064598, -0.03839689865708351, -0.012125304900109768, -0.04699922353029251, 0.03987976908683777, -0.028746632859110832, 0.01204316783696413, -0.018931955099105835, -0.03967434540390968, -0.005467792972922325, -0.0364995114505291, -0.028261637315154076, 0.0056050061248242855, -0.0229408647865057, 0.012589397840201855, -0.009784321300685406, 0.019886326044797897, -0.01506787445396185, 0.02017771638929844, 0.02098570205271244, 0.02451985329389572, -0.016796670854091644, -0.05804862827062607, 0.03859990835189819, 0.03166413679718971, -0.028565539047122, 0.027047956362366676, -0.059766609221696854, -0.0025989976711571217, 0.009259713813662529, -0.01945703849196434, -0.010042774491012096, 0.008845104835927486, -0.010169537737965584, 0.010876057669520378, -0.03131936118006706, 0.003274745075032115, 0.004629178903996944, -0.006199760362505913, 0.02502310462296009, -0.01386777963489294, 0.022158052772283554, -0.014000545255839825, -0.008616172708570957, 0.0443849042057991, 0.0630640909075737, 0.01811516098678112, 0.009269315749406815, -0.06073170527815819, 0.014147602021694183, -0.010959314182400703, -0.0021046351175755262, 0.020301874727010727, 0.008743677288293839, -0.01939740963280201, 0.05938166379928589, -0.005592112895101309, 0.008065643720328808, 0.04521629959344864, 0.008779771625995636, -0.030140334740281105, 0.045554108917713165, 0.0105277793481946, -0.00652384664863348, 0.04234602302312851, 0.012069381773471832, -0.02451896481215954, 0.04360667243599892, -0.03360740840435028, -0.00235748291015625, -0.0008734211442060769, 0.013236348517239094, -0.0005653302650898695, -0.03722332790493965, 0.026238709688186646, -0.03185371309518814, 0.019591035321354866, 0.005374529864639044, 0.016571486368775368, 0.017924349755048752, -0.023549184203147888, 0.02592420019209385, -0.034074101597070694, 0.01941985823214054, 0.00453536119312048, 0.0027977116405963898, 0.02020273730158806, -0.006941844243556261, 0.018662938848137856, -0.023562785238027573, -0.04352618008852005, 0.059156231582164764, -0.040071647614240646, -0.008794402703642845, 0.016840877011418343, -0.05834128335118294, 0.006992633454501629, 0.04265788570046425, 0.011712375096976757, 0.00014881303650327027, 0.00446768943220377, 0.03982332721352577, 0.03174657002091408, -0.03126079961657524, 0.03496501222252846, 0.02471979334950447, 0.03467712551355362, 0.1022200882434845, -0.019357021898031235, 0.03418349474668503, 0.019513363018631935, -0.018569814041256905, -0.033692989498376846, 0.038582172244787216, -0.03941572085022926, 0.006820137612521648, -0.004590555094182491, 0.020367583259940147, -0.014859295450150967, -0.0327296145260334, -0.007066701073199511, 0.031550709158182144, 0.04241789132356644, 0.028265099972486496, -0.003306878497824073, 0.01150759868323803, -0.005894102156162262, 0.023088550195097923, -0.015278400853276253, 0.027750739827752113, -0.027236582711338997, -0.005582834593951702, -0.022233005613088608, -0.050735145807266235, 0.020503368228673935, 0.006389075890183449, -0.007065510842949152, 0.014658002182841301, 0.01637852005660534, 0.04753568395972252, 0.004189261235296726, -0.008374939672648907, 0.029505297541618347, 0.05466870591044426, -0.0431998148560524, -0.0006291105528362095, 0.01730409264564514, 0.06080873683094978, 0.01129297073930502, -0.009210116229951382, 0.017085595056414604, -0.013723760843276978, -0.03983048349618912, -0.010592123493552208, 0.00789028313010931, 0.00831041019409895, -0.014120982028543949, 0.04638485237956047, -0.006745780352503061, -0.010376695543527603, -0.011055712588131428, -0.034612156450748444, 0.019043900072574615, -0.016693878918886185, 0.0010283319279551506, 0.025801412761211395, -0.04478936642408371, 0.011918206699192524, 0.0013197805965319276, -0.05047993361949921, 0.005226791370660067, 0.07438847422599792, -0.0388948991894722, 0.03517184406518936, 0.038414184004068375, 0.016225289553403854, -0.011977135203778744, -0.04503526911139488, 0.007549211382865906, 0.0017018928192555904, -0.016504118219017982, 0.05726119130849838, -0.012324405834078789, -0.006892741192132235, 0.02477090246975422, 0.02417491376399994, 0.0489979013800621, 0.030361250042915344, -0.022744597867131233, -0.015382419340312481, 0.007347927428781986, 0.0758863091468811, -0.006866449024528265, 0.01939551532268524, -0.012073207646608353, 0.04285115748643875, 0.008609739132225513, 0.05324728041887283, 0.04308337718248367, -0.017883004620671272, 0.026717640459537506, 0.04091488569974899, 0.017221178859472275, 0.027953170239925385, 0.010080274194478989, 0.019313381984829903, 0.045049380511045456, 0.018544435501098633, 0.00988310482352972, 0.019572747871279716, -0.02667473442852497, 0.024428032338619232, -0.013849337585270405, 0.0325833261013031, 0.0006615165621042252, 0.03612207621335983, 0.007160347420722246, 0.026907173916697502, -0.017994360998272896, -0.026018697768449783, 0.03546147793531418, 0.06624079495668411, -0.029495427384972572, 0.011014378629624844, 0.023361744359135628, 0.017342863604426384, -0.017442867159843445, -0.024263784289360046, 0.028268499299883842, 0.026112619787454605, 0.04276903346180916, 0.006490249652415514, -0.0019407743820920587, -0.017508897930383682, -0.03932331129908562, -0.05122161656618118, -0.04561019688844681, -0.03519393503665924, -0.0328562892973423, -0.014431782998144627, 0.020638050511479378, -0.02699120342731476, 0.026437345892190933, -0.000663556857034564, -0.0006134737050160766, -0.014126984402537346, -0.03566921129822731, 0.03253283351659775, 0.03483334556221962, 0.05531932786107063, -0.013887306675314903, 0.028217218816280365, -0.013540670275688171, -0.018360644578933716, -0.0418488010764122, 0.023788316175341606, 0.00786820612847805, 0.0009231979493051767, 0.0039801932871341705, 0.014748948626220226, -0.022951902821660042, 0.0021092069800943136, -0.03129073232412338, -0.052454691380262375, -0.006470578256994486, -0.027615202590823174, -0.0015706050908192992, -0.015002994798123837, -0.045887913554906845, 0.01324478629976511, 0.026264775544404984, -0.026740416884422302, 0.011161827482283115, 0.04385499283671379, -0.047823451459407806, 0.02037384919822216, 0.05237019434571266, 0.0007463091751560569, -0.07144021987915039, 0.012915574014186859, 0.03428846597671509, -0.012202408164739609, -0.016671564429998398, -0.01852138713002205, -0.046350911259651184, 0.042114488780498505, 0.017662134021520615, -0.01722763106226921, -0.01665233075618744, 0.06187848746776581, 0.018449023365974426, -0.05701487883925438, 0.028201844543218613, -0.05470344051718712, -0.04355262592434883, -0.031397536396980286, -0.04317566007375717, 0.019580312073230743, 0.05146480351686478, 0.023110806941986084, 0.011420266702771187, -0.03107457235455513, 0.025396212935447693, 0.014152550138533115, 0.05702704191207886, -0.01515780296176672, 0.026348888874053955, 0.03968480974435806, -0.011230459436774254, 0.020108766853809357, 0.03392377123236656, -0.03162650018930435, -0.014547795057296753, 0.00016862316988408566, 0.0025481104385107756, 0.027111466974020004, 0.019848020747303963, 0.02510126493871212, -0.029374759644269943, 0.052823755890131, -0.02363959699869156, 0.016134953126311302, 0.02459380030632019, 0.02833140268921852, 0.03112795390188694, -0.014068315736949444, 0.021292192861437798, -0.02166655845940113, -0.010873069055378437, -0.057837069034576416, 0.05659213289618492, 0.0012170319678261876, 0.02665349468588829, -0.05787236616015434, 0.06893731653690338, -0.003733730409294367, -0.044476065784692764, 0.05464370548725128, -0.027412233874201775, -0.0022068312391638756, 0.016122087836265564, -0.016925299540162086, 0.050139419734478, -0.045157771557569504, 0.03680383414030075, -0.030059002339839935, 0.01199598889797926, 0.014044172130525112, -0.0012082260800525546, 0.03788954019546509, -0.02605726756155491, -0.03080778755247593, -0.056233204901218414, -0.012012723833322525, -0.038347601890563965, 0.0008996813558042049, 0.017932124435901642, -0.03025868907570839, -0.03451697900891304, -0.06626611202955246, 0.04726575314998627, 0.039694152772426605, 0.0349225290119648, 0.011235283687710762, 0.030330976471304893, 0.011512203142046928, -0.008259291760623455, 0.007075272034853697, -0.018192609772086143, 0.018547970801591873, -0.03685673326253891, 0.05846676975488663, 0.013127835467457771, -0.021029211580753326, -0.02652175910770893, -0.023428360000252724, -0.04727121442556381, 0.02117086760699749, -0.023433037102222443, -0.00584022980183363, -0.04190945252776146, -0.0018051511142402887, -0.04811836779117584, 0.013854838907718658, -0.033156245946884155, -0.014364766888320446, -0.04795687273144722, 0.03862721472978592, 0.03887966275215149, -0.03539750352501869, -0.006442545913159847, -0.04194951429963112, 0.04356854036450386, 0.06945555657148361, -0.015176883898675442, -0.04252057522535324, -0.020722808316349983, -0.034319113940000534, -0.026137787848711014, 0.0020604252349585295, 0.043331071734428406, 0.0015870841452851892, 0.006519395392388105, -0.0335831418633461, 0.027032312005758286, 0.04071274772286415, 0.0003239102370571345, -0.014806639403104782, -0.008680377155542374, 0.036145154386758804, 0.0075059873051941395, 0.008976683020591736, 0.009394948370754719, -0.0393340028822422, 0.020032716915011406, -0.07168462872505188, 0.016497930511832237, -0.000718910014256835, -0.0014205656480044127, -0.003710928838700056, 0.022871220484375954, 0.011612122878432274, 0.04388796165585518, -0.0025647112634032965, -0.01593145541846752, -0.056954316794872284, 0.03781646490097046, -0.04218057170510292, -0.03531588613986969, 0.041753750294446945, 0.029639018699526787, -0.01578119769692421, 0.000826579169370234, 0.024302629753947258, -0.008623993024230003, 0.02603106014430523, 0.031733009964227676, -0.020176123827695847, 0.002888049464672804, -0.03612823411822319, 0.014641933143138885, -0.01879231072962284, -0.04050261154770851, 0.005513226147741079, -0.0441458597779274, 0.07085760682821274, -0.019091282039880753, -0.03447442501783371, -0.011475971899926662, -0.051620278507471085, -0.049406688660383224, 0.01487102173268795, -0.03078555129468441, 0.018831098452210426, 0.0015921236481517553, -0.018729742616415024, -0.007010162342339754, -0.005879020784050226, 0.003394045867025852, -0.011446268297731876, 0.004890840034931898, 0.03130354732275009, 0.01592099480330944, 0.043921180069446564, 0.045520130544900894, -0.022522881627082825, -0.03856247663497925, 0.0009896428091451526, -0.018349258229136467, -0.02078893408179283, -0.06635642796754837, 0.017182108014822006, -0.0070319510996341705, 0.005850428715348244, -0.018352121114730835, 0.01212070882320404, -0.02403431572020054, 0.0027979156002402306, -0.00466245086863637, -0.006758266594260931, 0.022247876971960068, 0.022048495709896088, -0.023625139147043228, 0.042814288288354874, 0.03721918910741806, -0.04759243130683899, -0.039116617292165756, 0.02906542643904686, 0.004560451023280621, 0.024356475099921227, -0.01414764765650034, 0.0057424092665314674, -0.06978560239076614, -0.058728255331516266, -0.0016769192880019546, -0.009257612749934196, -0.0022205899003893137, -0.0442868210375309, -0.012874223291873932, -0.03470560908317566, 0.04247605800628662, 0.027562757954001427, -0.003155818907544017, 0.008848199620842934, -0.014303420670330524, 0.014713726006448269, -0.05337328463792801, -0.013333492912352085, -0.036072470247745514, -0.003988377749919891, 0.016487402841448784, 0.01987040415406227, -0.006742434576153755, 0.023262280970811844, -0.005223121028393507, 0.00871853157877922, 0.03414253517985344, -0.006813360378146172, -0.053185731172561646, -0.03657110035419464, 0.006812275853008032, -0.02622607722878456, -0.04131123423576355, 0.018875401467084885, -0.03484482318162918, 0.077389657497406, -0.039153873920440674, -0.0001693396334303543, -0.011334816925227642, 0.00788289587944746, 0.008576037362217903, -0.0019265454029664397, 0.0380583219230175, -0.004813935607671738, 0.0013411593390628695, 0.0018650779966264963, 0.06354151666164398, 0.030097436159849167, -0.005273000802844763, -0.031492579728364944, -0.04208561033010483, -0.028209878131747246, -0.06717405468225479, 0.03095320425927639, -0.05679817870259285, -0.05823497474193573, -0.005294308997690678, -0.016518546268343925, 0.05339709296822548, -0.026206081733107567, 0.045391496270895004, 0.07328078895807266, 0.0066279079765081406, -0.006325946189463139, -0.03710838779807091, 0.029588202014565468, 0.0463557243347168, 0.014565981924533844, -0.002573778387159109, 0.003792946692556143, -0.002480618190020323, -0.013250315561890602, -0.053563546389341354, -0.042781174182891846, -0.05305323004722595, 0.00015499518485739827, 0.08281815052032471, -0.009276187978684902, 0.06524299085140228, -0.014028847217559814, -0.04637575149536133, -0.005721328780055046, 0.053174298256635666, 0.0029426557011902332, 0.01454889215528965, 0.04403408616781235, -0.002325222594663501, -0.03079088404774666, 0.021984601393342018, 0.015110352076590061, -0.000005448534011520678, -0.05029718577861786, 0.04701761528849602, -0.00836792029440403, -0.03980855643749237, -0.0036444016732275486, 0.0498979277908802, -0.0628473311662674, -0.060870930552482605, 0.006670301780104637, 0.028174100443720818, 0.015897314995527267, -0.028849812224507332, -0.013155236840248108, -0.03473157808184624, 0.0009520073654130101, -0.04250747710466385, 0.03453291207551956, -0.018930917605757713, 0.03276149556040764, -0.03332705423235893, 0.025326943024992943, -0.04356596618890762, 0.0038238626439124346, 0.036495063453912735, 0.0075860354118049145, -0.01979835145175457, -0.029676970094442368, -0.022144638001918793, 0.030406691133975983, -0.003957103006541729, 0.02839566580951214, -0.02714417316019535, 0.021761685609817505, 0.020736990496516228, -0.013908855617046356, 0.058177508413791656, 0.004892723169177771, -0.013520639389753342, 0.035548239946365356, -0.019759520888328552, -0.0693836361169815, -0.04641002044081688, 0.027375908568501472, 0.015869416296482086, -0.004259382840245962, -0.06362181156873703, 0.01923220604658127, 0.04946373775601387, 0.022838234901428223, -0.00396636500954628, -0.05905711278319359, -0.05241597443819046, -0.01632625050842762, -0.03390251472592354, -0.04599391669034958, -0.02371559664607048, -0.022162754088640213, 0.060112498700618744, 0.028414634987711906, -0.044350720942020416, 0.019634323194622993, 0.0019661346450448036, 0.018620241433382034, -0.028986375778913498, -0.02870270609855652, 0.004966124892234802, -0.03694288805127144, -0.08395140618085861, -0.04675658419728279, 0.016471635550260544, -0.030800435692071915, 0.017508413642644882, 0.0007726364419795573, 0.0038932855241000652, -0.0009217055048793554, 0.016437355428934097, 0.01933632418513298, 0.004142175894230604, 0.006896423641592264, -0.036678630858659744, -0.007046425715088844, 0.008220253512263298, -0.006194082088768482, 0.05026348680257797, 0.014748213812708855, -0.019523732364177704, 0.037969816476106644, -0.004257284104824066, -0.012700779363512993, -0.0421580970287323, 0.011054170317947865, 0.03307868540287018, 0.01539042592048645, -0.05308949202299118, -0.011169364675879478, 0.0023628314957022667, -0.03498288244009018, 0.02232077531516552, -0.010999125428497791, 0.019157009199261665, 0.014478413388133049, -0.0034017632715404034, -0.03449321538209915, 0.04846005514264107, -0.00006696121272398159, 0.023158546537160873, 0.009151351638138294, 0.02265240252017975, 0.004781492054462433, -0.01811186410486698, 0.029281621798872948, 0.012141563929617405, 0.022925017401576042, -0.04098309203982353, 0.012421263381838799, 0.015841584652662277, -0.055860571563243866, 0.054581403732299805, -0.017148727551102638, -0.00534858088940382, -0.04937504231929779, -0.019567124545574188, 0.009480072185397148, 0.05036737769842148, 0.00951236393302679, 0.012989450246095657, 0.018035387620329857, -0.0196384210139513, -0.03524193540215492, 0.021038250997662544, -0.05973683297634125, -0.005510741379112005, 0.03075341135263443, -0.04446493089199066, -0.017175912857055664, -0.008478324860334396, -0.019365275278687477, -0.012270694598555565, -0.022014519199728966, 0.0014086832525208592, -0.02323293872177601, 0.03429264947772026, 0.011853841133415699, 0.06541342288255692, -0.03445824980735779, 0.004895553924143314, 0.03244909644126892, 0.07301092147827148, -0.05000109225511551, -0.051918040961027145, 0.020449597388505936, 0.032761845737695694, -0.010012662038207054, 0.007414946332573891, 0.006098981946706772, 0.011896341107785702, -0.0016893825959414244, 0.005556654650717974, -0.017831921577453613, 0.006629691459238529, -0.022983616217970848, 0.03579473868012428, -0.011460164561867714, 0.007837172597646713, -0.027411526069045067, 0.022957246750593185, -0.007603724021464586, -0.03903393819928169, -0.04415827617049217, 0.0068142591044306755, 0.02889997884631157, -0.006180963944643736, 0.016733337193727493, 0.040053725242614746, 0.05136749520897865, 0.004649558570235968, 0.03017258085310459, -0.029982171952724457, 0.03297384828329086, 0.04377511888742447, 0.03596114367246628, -0.008777644485235214, 0.03869323059916496, 0.03931119665503502, -0.011775806546211243, -0.012496860697865486, 0.044668011367321014, 0.023638369515538216, -0.04825478047132492, 0.018340278416872025, -0.014019067399203777, 0.02246532030403614, -0.0010152225149795413, 0.00034040864557027817, 0.009366449899971485, -0.029085645452141762, -0.024325786158442497, -0.0034767817705869675, -0.007424052804708481, 0.06067527458071709, -0.013419157825410366, -0.006568944547325373, -0.007884064689278603, -0.012797296047210693, 0.013324052095413208, 0.029247330501675606, 0.01179527584463358, 0.022334106266498566, 0.03890564665198326, -0.0033656649757176638, -0.0184753630310297, 0.049958452582359314, 0.016847403720021248, 0.014921043999493122, -0.06854100525379181, 0.020866742357611656, 0.020753299817442894, -0.05049607902765274, -0.028899474069476128, 0.015167538076639175, -0.07144178450107574, 0.03522349148988724, -0.03226689621806145, -0.0065810889936983585, 0.01901628077030182, -0.024537257850170135, -0.009926543571054935, -0.047940075397491455, 0.026611443608999252, -0.03682686388492584, -0.005948751233518124, 0.0231187641620636, -0.022582894191145897, -0.03489602729678154, 0.052113261073827744, -0.008086140267550945, 0.046426888555288315, 0.015428106300532818, 0.052306268364191055, -0.020410960540175438, 0.03464776650071144, 0.020611030980944633, -0.028687018901109695, -0.018229443579912186, 0.019128259271383286, -0.0032981508411467075, -0.018494300544261932, 0.015509145334362984, -0.03373410925269127, -0.0019316502148285508, 0.009923684410750866, -0.033887140452861786, -0.022173788398504257, 0.06216786056756973, -0.01424455363303423, -0.048923708498477936, 0.03072652593255043, 0.020623866468667984, -0.04034455493092537, 0.028403639793395996, 0.00855107419192791, 0.04692687466740608, 0.017179543152451515, 0.021344896405935287, -0.05266687273979187, -0.04582855850458145, -0.01293618232011795, -0.053849536925554276, 0.02206413447856903, -0.007646601647138596, -0.03239414095878601, -0.04076900705695152, -0.012321129441261292, -0.06349015235900879, -0.011486761271953583, -0.03884311392903328, -0.056241460144519806, 0.03511037304997444, 0.06420854479074478, 0.011497681960463524, 0.03248305991292, -0.02234746888279915, -0.006856439635157585, 0.040585827082395554, 0.06409662961959839, 0.005687184166163206, 0.04318350926041603, 0.07017833739519119, -0.007198625709861517, 0.029854532331228256, -0.010318512097001076, 0.002418448915705085, -0.003720716340467334, 0.007131096441298723, -0.03343697264790535, 0.007237808778882027, -0.04037724807858467, -0.07296644896268845, 0.01231123972684145, 0.05445117503404617, -0.0020929088350385427, -0.023707067593932152, -0.0492972657084465, 0.0010184317361563444, -0.0732014998793602, -0.015367341227829456, -0.054156020283699036, 0.02653530053794384, 0.0007261171704158187, 0.005829782225191593, -0.00796019472181797, -0.053623735904693604, 0.12733185291290283, 0.05154430493712425, 0.02353416383266449, 0.006415252573788166, 0.032128751277923584, 0.06180857494473457, -0.007822993211448193, -0.025114357471466064, 0.02208603173494339, -0.0608728863298893, 0.01801956258714199, -0.0061935302801430225, 0.0379045195877552, 0.01717003621160984, -0.00747951865196228, 0.0744735524058342, -0.05560494586825371, 0.01820266619324684, 0.02253292314708233, -0.07518386095762253, -0.04866279289126396, 0.02496984414756298, -0.011281389743089676, 0.016485122963786125, 0.0001316869747824967, 0.006879634689539671, 0.02175091952085495, -0.042882248759269714, -0.0018216493772342801, -0.036740001291036606, 0.04253321886062622, -0.018002398312091827, 0.05272404104471207, 0.001593679771758616, -0.030710410326719284, 0.030140627175569534, 0.009187920950353146, -0.02332334592938423, 0.01722250133752823, -0.005203241016715765, -0.017119884490966797, -0.0037104247603565454, 0.049145545810461044, -0.03239617496728897, 0.02364550530910492, 0.0128395464271307, -0.04908794164657593, 0.031040282920002937, 0.025721203535795212, -0.060865409672260284, 0.06624006479978561, -0.0347878560423851, 0.04296929016709328, 0.009052349254488945, -0.04361782968044281, 0.030677098780870438, -0.016800493001937866, -0.019559141248464584, 0.017596453428268433, -0.02088910900056362, 0.009901383891701698, -0.003069130936637521, -0.048824459314346313, 0.008953161537647247, -0.035871051251888275, 0.0012610304402187467, 0.015445001423358917, 0.02090694196522236, 0.014501514844596386, 0.01369248703122139, -0.02414986491203308, -0.01905626431107521, -0.04504295438528061, -0.0184505395591259, 0.0007059593917801976, 0.026266148313879967, -0.021649237722158432, 0.010809194296598434, 0.020658444613218307, -0.017305195331573486, -0.003234908217564225, -0.03263944387435913, -0.005421767011284828, -0.03296557441353798, 0.03151388093829155, 0.04259900748729706, -0.029648244380950928, -0.01793225295841694, -0.041934024542570114, 0.060667943209409714, 0.03894510492682457, 0.03416234999895096, -0.04341641813516617, 0.007439800072461367, -0.020214660093188286 ]
Alexander Friedmann (Redirected from Alexander Friedman) This article is about the Russian cosmologist. For the Russian astrophysicist, see Alexei Fridman. This name uses Eastern Slavic naming customs; the patronymic is Alexandrovich and the family name is Friedmann. Alexander Alexandrovich Friedmann (also spelled Friedman or Fridman /ˈfriːdmən/; Russian: Алекса́ндр Алекса́ндрович Фри́дман) (June 16 [O.S. 4], 1888 – September 16, 1925) was a Russian and Soviet physicist and mathematician. He is best known for his pioneering theory that the universe was expanding, governed by a set of equations he developed now known as the Friedmann equations. Alexander Alexandrovich Friedmann (1888-06-16)June 16, 1888 Saint Petersburg, Russian Empire Leningrad, USSR St. Petersburg State University Friedmann equations Friedmann–Lemaître–Robertson–Walker metric Natalia Malinina Petrograd Polytechnical Institute Main Geophysical Observatory Vladimir Steklov George Gamow Nikolai Kochin Pelageya Polubarinova-Kochina Alexander Friedmann was born to the composer and ballet dancer Alexander Friedmann (who was a son of a baptized Jewish cantonist) and the pianist Ludmila Ignatievna Voyachek.[1] Friedmann was baptized into the Russian Orthodox Church as an infant, and lived much of his life in Saint Petersburg. Friedmann obtained his degree from St. Petersburg State University in 1910, and became a lecturer at Saint Petersburg Mining Institute. From his school days, Friedmann found an inseparable companion in Jacob Tamarkin, who at the end of his career was one of Brown University's most distinguished mathematicians.[2] World War IEdit Friedmann fought in World War I on behalf of Imperial Russia, as an army aviator, an instructor and eventually, under the revolutionary regime, as the head of an airplane factory.[3] ProfessorshipEdit Friedmann in 1922 introduced the idea of an expanding universe that contained moving matter; Belgian astronomer Georges Lemaître would later independently reach the same conclusion in 1927.[4] In June 1925 he was given the job of the director of Main Geophysical Observatory in Leningrad. In July 1925 he participated in a record-setting balloon flight, reaching the elevation of 7,400 m (24,300 ft).[5] WorkEdit RelativityEdit Friedmann's 1924 papers, including "Über die Möglichkeit einer Welt mit konstanter negativer Krümmung des Raumes" ("On the possibility of a world with constant negative curvature of space") published by the German physics journal Zeitschrift für Physik (Vol. 21, pp. 326–332), demonstrated that he had command of all three Friedmann models describing positive, zero and negative curvature respectively, a decade before Robertson and Walker published their analysis. This dynamic cosmological model of general relativity would come to form the standard for both the Big Bang and Steady State theories. Friedmann's work supports both theories equally, so it was not until the detection of the cosmic microwave background radiation that the Steady State theory was abandoned in favor of the current favorite Big Bang paradigm. The classic solution of the Einstein field equations that describes a homogeneous and isotropic universe is called the Friedmann–Lemaître–Robertson–Walker metric, or FLRW, after Friedmann, Georges Lemaître, Howard P. Robertson and Arthur Geoffrey Walker, who worked on the problem in 1920s and 30s independently of Friedmann. Hydrodynamics and meteorologyEdit In addition to general relativity, Friedmann's interests included hydrodynamics and meteorology. StudentsEdit Physicists George Gamow, Vladimir Fock and Lev Vasilievich Keller[5] were among his students. In 1911, he married Ekaterina Dorofeeva, though he later divorced her. He married Natalia Malinina in 1923. They had a religious wedding ceremony, though both were far from religious.[6] Friedmann died on September 16, 1925 from misdiagnosed typhoid fever. He had allegedly contracted the bacteria on his way back from his honeymoon in Crimea when he ate an unwashed pear he bought from a railway station.[7] Named after FriedmannEdit The moon crater Fridman is named after him. Alexander Friedmann International SeminarEdit Alexander Friedmann International Seminar is a periodical scientific event. The objective of the meeting is to promote contacts between scientists working in the field of Relativity, Gravitation and Cosmology and related fields. The First Alexander Friedmann International Seminar on Gravitation and Cosmology devoted to the centenary of his birth took place in 1988. Selected publicationsEdit Friedman, A. (1922). "Über die Krümmung des Raumes". Zeitschrift für Physik. 10 (1): 377–386. Bibcode:1922ZPhy...10..377F. doi:10.1007/BF01332580. . English translation in: Friedman, A. (1999). "On the curvature of space". General Relativity and Gravitation. 31 (12): 1991–2000. Bibcode:1999GReGr..31.1991F. doi:10.1023/A:1026751225741. The original Russian manuscript of this paper is preserved in the Ehrenfest archive, together with some letters and unpublished work. Friedman, A. (1924). "Über die Möglichkeit einer Welt mit konstanter negativer Krümmung des Raumes". Zeitschrift für Physik. 21 (1): 326–332. Bibcode:1924ZPhy...21..326F. doi:10.1007/BF01328280. . English translation in: Friedmann, A. (1999). "On the Possibility of a World with Constant Negative Curvature of Space". General Relativity and Gravitation. 31 (12): 2001–2008. Bibcode:1999GReGr..31.2001F. doi:10.1023/A:1026755309811. ^ Hockey, Thomas (2009). The Biographical Encyclopedia of Astronomers. Springer Publishing. ISBN 978-0-387-31022-0. Retrieved August 22, 2012. ^ Pyenson L. Book review. Physics Today [serial online]. September 1994; 47(9):93. Available from: MasterFILE Premier, Ipswich, MA. Accessed October 18, 2012. ^ Pyenson L. Book review. Physics Today [serial online]. September 1994;47(9):93. Available from: MasterFILE Premier, Ipswich, MA. Accessed October 18, 2012. ^ Daintith J. Dictionary Of Scientists [e-book]. Oxford University Press; 1999. Available from: eBook Collection (EBSCOhost), Ipswich, MA. Accessed October 18, 2012. ^ a b Davidson et al., A Voyage Through Turbulence, Cambridge University Press, ISBN 9780521149310, September 2011 (for a partial and legal excerpt of the book, see: [1]) ^ Eduard A. Tropp; Viktor Ya. Frenkel; Artur D. Chernin (2006). "The final year". Alexander A Friedmann: The Man who Made the Universe Expand. Cambridge University Press. p. 209. ISBN 9780521025881. [Alexander Friedmann and Natalia Malinina] even had a religious wedding ceremony in the Crimea, though both were far from religious. "Just to make it stronger," Friedmann said to his wife (she told this to her sister Sofia). ^ http://ufn.ru/ru/articles/1988/7/d/ Poluboyarinova-Kochina, P. Ya. (January–February 1964). "Aleksandr Fridman" (PDF). Soviet Physics Uspekhi (English edition): 467–472. Ferguson, Kitty (1991). Stephen Hawking: Quest For A Theory of Everything. New York: Bantam Books. ISBN 0-553-29895-X. Frenkel', V.Ya. (1988). "Aleksandr Aleksandrovich Fridman (Friedmann): a biographical essay". Soviet Physics Uspekhi. 31 (7): 645–665. Bibcode:1988SvPhU..31..645F. doi:10.1070/PU1988v031n07ABEH003574. Alexander A Friedmann: The Man who Made the Universe Expand – Biography written by Eduard A. Tropp, Viktor Ya. Frenkel and Artur D. Chernin O'Connor, John J.; Robertson, Edmund F., "Alexander Friedmann", MacTutor History of Mathematics archive, University of St Andrews . How Do We Know the Age of the Universe – Mary Lynn Germadnik Retrieved from "https://en.wikipedia.org/w/index.php?title=Alexander_Friedmann&oldid=893358775"
[ -0.003908079583197832, 0.0012161306804046035, 0.01810583285987377, -0.0028268038295209408, -0.015216904692351818, 0.00884908065199852, -0.015864858403801918, 0.0032348637469112873, 0.0063567073084414005, 0.02733064629137516, 0.06860801577568054, -0.04105260223150253, 0.016354825347661972, -0.05103031173348427, -0.01853928342461586, 0.007301822770386934, -0.03219308331608772, -0.05104983597993851, -0.009088622406125069, 0.0068723782896995544, 0.008886465802788734, 0.017336828634142876, -0.0809992253780365, -0.03188055008649826, -0.02301030233502388, 0.044808950275182724, 0.03408405929803848, -0.0049895946867764, 0.06088174507021904, 0.04641035199165344, 0.007600274868309498, -0.037967462092638016, 0.021895762532949448, -0.06335926055908203, -0.014381131157279015, -0.0016911544371396303, 0.0087196109816432, -0.06347519904375076, -0.0029702014289796352, -0.05526692047715187, 0.04856874421238899, -0.021432289853692055, 0.023630348965525627, -0.038736846297979355, -0.04280536249279976, 0.002450566040351987, -0.011963442899286747, -0.027545325458049774, -0.007349175401031971, -0.042024098336696625, -0.002605545101687312, -0.013766050338745117, 0.02065177634358406, -0.000041989045712398365, 0.007761952001601458, -0.0018174364231526852, 0.017629263922572136, 0.01623525843024254, -0.016781413927674294, 0.025955811142921448, 0.02431027963757515, 0.0073941657319664955, 0.035719770938158035, -0.05640766769647598, 0.013302059844136238, 0.029578598216176033, 0.003816968761384487, -0.0033994324039667845, -0.0034026680514216423, -0.018882660195231438, 0.0014723514905199409, -0.02573377452790737, -0.00287603004835546, -0.02557041123509407, -0.008866162039339542, 0.04043881967663765, -0.001724084373563528, -0.01996355876326561, 0.011667182669043541, -0.0278986394405365, 0.04173062741756439, 0.03936132416129112, -0.01175058912485838, 0.03657553344964981, -0.03689417988061905, -0.03142976015806198, 0.0064093247056007385, 0.015393604524433613, 0.01373584195971489, 0.010424264706671238, 0.007660555653274059, 0.056973956525325775, 0.01966559700667858, -0.011033432558178902, 0.03560145944356918, 0.025791659951210022, -0.03278046101331711, 0.07096344977617264, 0.03481036052107811, -0.0062512741424143314, 0.04817008599638939, 0.05099918693304062, -0.008431492373347282, 0.03432022035121918, -0.04882383719086647, 0.04318239167332649, -0.01887323521077633, 0.021046217530965805, 0.01023782603442669, -0.04971407353878021, -0.006560429930686951, 0.011352615430951118, 0.049617789685726166, 0.011287997476756573, 0.010682973079383373, 0.03463461622595787, -0.0026080722454935312, 0.041038911789655685, -0.034110188484191895, 0.0012853008229285479, -0.007137445267289877, 0.037054821848869324, 0.02365652099251747, 0.0024075887631624937, 0.007548293564468622, -0.028729800134897232, -0.040241047739982605, 0.05472156032919884, -0.0253423023968935, -0.014716931618750095, 0.0005014996859245002, -0.05399927496910095, -0.03346840664744377, 0.02706483006477356, 0.004827262368053198, 0.01710011065006256, 0.00850734580308199, 0.0529964417219162, 0.00725684966892004, -0.05319993942975998, 0.04258366674184799, 0.003205266548320651, 0.006282451096922159, 0.08765150606632233, -0.02369239181280136, 0.03284663334488869, 0.020788809284567833, 0.014450008980929852, -0.024539873003959656, -0.003358215093612671, -0.04217693954706192, 0.021560359746217728, -0.0223137978464365, 0.01663064770400524, 0.01696852222084999, 0.010392717085778713, -0.024380704388022423, 0.02203086018562317, 0.0016356060514226556, 0.003954320214688778, -0.027874821797013283, -0.007325992453843355, 0.016936540603637695, 0.0456770621240139, -0.015294224955141544, 0.0423525869846344, -0.030131908133625984, -0.03555130213499069, -0.004051735159009695, -0.01857171393930912, 0.0196427870541811, 0.01469348929822445, -0.008547013625502586, 0.012446988373994827, 0.04499399662017822, 0.05793599784374237, 0.031803399324417114, -0.010104158893227577, 0.0021718719508498907, 0.014303188771009445, -0.011100114323198795, -0.00702461926266551, 0.02423873543739319, 0.014393090270459652, 0.008882749825716019, -0.0232989639043808, -0.01905534230172634, -0.011319424957036972, -0.020292265340685844, -0.03250337764620781, -0.01819833181798458, 0.0016838357551023364, -0.043153438717126846, 0.03232928737998009, -0.031318046152591705, 0.02629183605313301, -0.017282478511333466, -0.01842113956809044, 0.009758343920111656, -0.028139229863882065, -0.008443288505077362, 0.041497793048620224, -0.04725451022386551, -0.01178522128611803, -0.021504420787096024, 0.008006792515516281, 0.026075201109051704, 0.06432124227285385, -0.05417495220899582, 0.027743849903345108, 0.04681383818387985, -0.005965417250990868, -0.013568886555731297, -0.025524364784359932, -0.007522559259086847, -0.003626217832788825, -0.04201384261250496, 0.049564726650714874, -0.008815515786409378, -0.0019775107502937317, 0.032593488693237305, 0.020194677636027336, 0.026682734489440918, 0.07072385400533676, 0.018591314554214478, -0.01196406502276659, 0.032136328518390656, 0.09071588516235352, -0.023431340232491493, 0.008507748134434223, -0.012807597406208515, 0.03828305006027222, 0.02312704361975193, 0.08643408864736557, 0.0555078350007534, -0.003739643841981888, 0.06429657340049744, 0.055946316570043564, -0.03993871062994003, 0.020082026720046997, -0.003740121843293309, 0.011301717720925808, 0.020581232383847237, 0.015966871753335, -0.03980204463005066, 0.05671712011098862, -0.02652881294488907, 0.00994269922375679, -0.02080455794930458, 0.0295766219496727, -0.027180712670087814, 0.03083464689552784, 0.020716968923807144, 0.015556749887764454, -0.07673581689596176, 0.041941527277231216, 0.03201942518353462, 0.025746271014213562, -0.010929569602012634, -0.031030574813485146, -0.013390890322625637, 0.016836758702993393, -0.014769820496439934, -0.004257315769791603, 0.012918880209326744, 0.029337437823414803, -0.000424505298724398, 0.026607951149344444, 0.002424039179459214, -0.025349119678139687, -0.029558666050434113, -0.06455046683549881, -0.03767332807183266, -0.04765904322266579, -0.045590344816446304, 0.01563851535320282, 0.03897027671337128, -0.01769605651497841, 0.03239154443144798, 0.039423104375600815, -0.010041805915534496, -0.013745029456913471, -0.01746702380478382, 0.03767254203557968, 0.012491760775446892, 0.03007328324019909, -0.024511124938726425, 0.036538489162921906, -0.010152295231819153, 0.04866878688335419, -0.015224137343466282, -0.03866047039628029, -0.008527572266757488, -0.01827932521700859, 0.04397952929139137, 0.014776007272303104, -0.021676482632756233, 0.0008844702388159931, -0.00893202144652605, -0.030209101736545563, 0.000023910815798444673, 0.04782877489924431, -0.013089098036289215, 0.016461696475744247, -0.033516522496938705, 0.05270744860172272, 0.00273202289827168, -0.06693486869335175, 0.04289904981851578, -0.003511001355946064, -0.04253220185637474, 0.04957090690732002, -0.004022181034088135, 0.01673712208867073, -0.03273782506585121, 0.028731515631079674, 0.04688376560807228, 0.009014028124511242, -0.015774063766002655, -0.05823487788438797, -0.017801284790039062, 0.003858839860185981, 0.007125341333448887, -0.04529246687889099, -0.038389310240745544, 0.020626317709684372, 0.00263281911611557, -0.061650600284338, 0.035127192735672, -0.06470509618520737, -0.04677506536245346, -0.025336820632219315, -0.03919108584523201, 0.03011946938931942, -0.006458119954913855, 0.0006323989946395159, -0.020066073164343834, 0.00009643581142881885, 0.028625840321183205, 0.016260171309113503, 0.05539416894316673, -0.02619929239153862, 0.030279621481895447, 0.05199098587036133, 0.02016698755323887, 0.020431678742170334, 0.04127495735883713, -0.0072040800005197525, 0.0009994644206017256, 0.003029586747288704, 0.026108305901288986, -0.00021734743495471776, 0.023251306265592575, 0.0036526478361338377, -0.03666848689317703, 0.04390784353017807, -0.01905103400349617, -0.002283136360347271, 0.008378970436751842, -0.007536552380770445, 0.007967544719576836, 0.011431540362536907, 0.01930815912783146, -0.03542673960328102, -0.05075031518936157, -0.0488896369934082, -0.015019894577562809, 0.011023096740245819, 0.040486715734004974, -0.06497359275817871, 0.04042910039424896, 0.0008771921275183558, -0.056451331824064255, 0.00856284610927105, -0.040274880826473236, 0.025801246985793114, 0.06390712410211563, -0.0010099757928401232, 0.023282570764422417, -0.030954506248235703, -0.01741182617843151, -0.01876387931406498, 0.02507590688765049, 0.030739525333046913, -0.013194438070058823, 0.0565333291888237, -0.0484270416200161, -0.03781448304653168, -0.022115610539913177, -0.04408414661884308, -0.004430883564054966, -0.043337348848581314, -0.009345770813524723, -0.0100577836856246, -0.03997117280960083, -0.031064435839653015, 0.03618361055850983, 0.03293236717581749, 0.021598732098937035, -0.02718193084001541, 0.04444482922554016, 0.002614840166643262, 0.0221273060888052, 0.042528849095106125, -0.008719565346837044, 0.006022845394909382, -0.04672308638691902, 0.06164916977286339, 0.028067927807569504, 0.004880033899098635, 0.00868181698024273, -0.012867596931755543, -0.018447672948241234, 0.010303313843905926, 0.024369074031710625, -0.020398132503032684, -0.03949088975787163, 0.02447831816971302, 0.0054586040787398815, 0.013225537724792957, -0.028775734826922417, -0.017401916906237602, -0.0087614506483078, 0.06712616980075836, 0.049284085631370544, -0.06801063567399979, 0.0012954236008226871, -0.04967484250664711, 0.04254128411412239, 0.04202766343951225, 0.021448370069265366, -0.044428564608097076, -0.050069473683834076, -0.013156046159565449, -0.03540252521634102, -0.02960188314318657, 0.04941533878445625, 0.003537526587024331, 0.03783663362264633, -0.07676101475954056, 0.011029734276235104, 0.043783556669950485, -0.0069015249609947205, 0.006273639388382435, -0.004371073096990585, 0.032903216779232025, -0.003349443431943655, 0.04022117704153061, -0.023780854418873787, -0.04096129536628723, 0.025368522852659225, -0.037476442754268646, 0.041560105979442596, 0.008658524602651596, -0.023142747581005096, -0.00649469206109643, -0.013168005272746086, 0.00041579370736144483, 0.0445551760494709, 0.0008865669369697571, -0.01686432771384716, 0.0019545124378055334, 0.05235649272799492, -0.06415687501430511, -0.03161421790719032, 0.05155100300908089, -0.012608634307980537, 0.003273212118074298, 0.02259337715804577, 0.06927332282066345, -0.009021849371492863, -0.010282527655363083, 0.006884028669446707, -0.04773701727390289, 0.04023481532931328, -0.042747437953948975, 0.007988356985151768, -0.01818722113966942, -0.0394136980175972, 0.009553427807986736, -0.04703376442193985, 0.02282537706196308, -0.004562913440167904, -0.01498111616820097, -0.026309914886951447, -0.08042445033788681, -0.05571291968226433, -0.013805207796394825, -0.036937545984983444, 0.035208847373723984, -0.0038922629319131374, -0.021830512210726738, -0.02497844211757183, -0.02477664314210415, -0.006038077175617218, 0.025316348299384117, -0.01997237466275692, -0.004824617877602577, 0.011451427824795246, -0.006559099070727825, -0.01132335513830185, -0.00022567433188669384, -0.02962663397192955, 0.023025378584861755, -0.019004229456186295, -0.04554690420627594, -0.03533697500824928, -0.04023479297757149, 0.006898699328303337, -0.009148095734417439, -0.021276390179991722, -0.039170101284980774, 0.0008707802626304328, 0.024476680904626846, 0.018760258331894875, -0.010679321363568306, 0.013659467920660973, -0.004436483606696129, -0.017363205552101135, 0.03782558813691139, 0.03689435496926308, -0.020022427663207054, -0.0038469897117465734, 0.047709736973047256, -0.020714549347758293, 0.015486699528992176, -0.021937105804681778, -0.018969692289829254, -0.040738314390182495, -0.05830393359065056, 0.01224091649055481, -0.04996907338500023, -0.0037263871636241674, -0.03131060674786568, -0.03399916738271713, -0.024150876328349113, 0.04793117567896843, -0.022388603538274765, -0.028925685212016106, -0.0027697919867932796, -0.03736376762390137, -0.015039710327982903, -0.040992237627506256, -0.004380761180073023, -0.00912302266806364, -0.020415902137756348, -0.017962420359253883, 0.08238497376441956, -0.03228725865483284, 0.017735537141561508, 0.030470604076981544, 0.027821704745292664, 0.00911904126405716, -0.007483358029276133, -0.05174114555120468, -0.03911055997014046, 0.0027159240562468767, -0.006683358922600746, 0.007812784053385258, 0.01110350713133812, -0.023885175585746765, 0.03503984212875366, -0.04491625726222992, -0.008341798558831215, -0.028624683618545532, -0.033570777624845505, -0.018446071073412895, -0.00813210941851139, 0.06586137413978577, -0.031958576291799545, 0.02057531848549843, -0.009267556481063366, 0.05229838937520981, 0.05997931957244873, -0.023260628804564476, -0.028781037777662277, -0.01902225986123085, -0.05570608749985695, -0.055026229470968246, 0.030648179352283478, -0.03096737712621689, -0.005033147055655718, -0.0359620600938797, -0.025909751653671265, 0.037041909992694855, 0.0026032477617263794, 0.01915849931538105, 0.019801240414381027, -0.018773088231682777, 0.015490204095840454, -0.02757214941084385, 0.008302046917378902, 0.0039919582195580006, 0.004146415740251541, 0.02657708153128624, -0.008005605079233646, -0.02503940463066101, 0.019415775313973427, -0.030851516872644424, -0.07024674117565155, -0.050837527960538864, -0.0020898228976875544, 0.05643964558839798, -0.02039054036140442, 0.03974680230021477, -0.016008427366614342, -0.04071572795510292, -0.02557261474430561, 0.06615223735570908, 0.005509656388312578, -0.0011937437811866403, 0.06301400065422058, -0.0021740966476500034, 0.009675723500549793, 0.014708512462675571, 0.016160711646080017, -0.012343712151050568, -0.036566223949193954, 0.06633193790912628, -0.026671625673770905, -0.009989777579903603, 0.03366279602050781, 0.06643204391002655, -0.040453385561704636, -0.06056122109293938, -0.01242031529545784, -0.004974359180778265, 0.02570226415991783, -0.05928242579102516, 0.010989529080688953, 0.003879162482917309, -0.024459749460220337, -0.003383098868653178, 0.027318201959133148, 0.016804968938231468, 0.04087410867214203, 0.006921236403286457, 0.019982045516371727, -0.03598354384303093, 0.016102224588394165, 0.04098750278353691, -0.022266020998358727, -0.06875642389059067, -0.025603841990232468, -0.02922794036567211, -0.004170313011854887, -0.003062322735786438, 0.0637279599905014, -0.025385651737451553, 0.04303872212767601, 0.05210882052779198, -0.005185750778764486, 0.039997488260269165, -0.007437750231474638, -0.031795088201761246, 0.01053896639496088, -0.045537181198596954, -0.06933972239494324, -0.02433437667787075, 0.0355612151324749, 0.015386875718832016, 0.005470587871968746, -0.0284577589482069, -0.01682206802070141, 0.031080449000000954, 0.01636749878525734, -0.027708163484930992, -0.056074079126119614, -0.05573846399784088, -0.0630803257226944, -0.04476485028862953, -0.021467313170433044, -0.0030362862162292004, -0.006176857743412256, -0.018657464534044266, -0.00897869374603033, -0.025072766467928886, -0.01617475412786007, 0.022539665922522545, -0.008951814845204353, 0.047634873539209366, -0.05345232039690018, 0.021613288670778275, -0.028701812028884888, -0.0030216502491384745, -0.048300549387931824, -0.03264394402503967, -0.00022942916257306933, -0.010681241750717163, -0.009455854073166847, 0.037767354398965836, -0.01695799082517624, 0.03208028897643089, -0.004656692035496235, -0.012411746196448803, 0.012458441779017448, -0.020814016461372375, -0.033829666674137115, 0.05632467567920685, -0.004464400000870228, 0.028654983267188072, 0.02376936562359333, -0.0370602160692215, 0.00972682610154152, 0.011869941838085651, -0.06067005917429924, -0.010762223042547703, 0.014513695612549782, 0.019843511283397675, 0.0018801483092829585, -0.031079530715942383, -0.013186763972043991, 0.007151402533054352, -0.035291869193315506, 0.012686103582382202, 0.011579550802707672, 0.080658458173275, 0.0022511128336191177, -0.018900616094470024, 0.014605090022087097, 0.04314052686095238, -0.015754379332065582, 0.019753433763980865, -0.0038722942117601633, 0.006326471455395222, 0.007533333729952574, 0.01025551836937666, 0.00991264171898365, 0.013999959453940392, 0.0044167423620820045, -0.03973636031150818, 0.002712300280109048, 0.023793991655111313, 0.006335421930998564, 0.02290298044681549, -0.010231319814920425, -0.05239551514387131, -0.07472356408834457, 0.0016781834419816732, -0.019253339618444443, 0.04498165845870972, 0.014014597982168198, 0.010956293903291225, 0.03011595830321312, -0.04037870466709137, -0.04981238767504692, 0.029798457399010658, -0.037267547100782394, -0.03976888209581375, 0.024328067898750305, -0.014619959518313408, -0.007126802112907171, 0.013094685040414333, -0.0420871302485466, -0.010583838447928429, -0.00544671481475234, 0.013929737731814384, 0.0038079125806689262, 0.0012779656099155545, 0.017949210479855537, 0.015664000064134598, -0.0229491014033556, -0.024843527004122734, -0.0022822271566838026, 0.0013959311181679368, -0.021385690197348595, -0.027849214151501656, -0.008862419053912163, 0.02982073277235031, 0.01952933706343174, -0.03723328933119774, -0.013739068992435932, 0.017823247238993645, -0.003484443062916398, -0.009525176137685776, 0.013971841894090176, 0.018501849845051765, 0.011210543103516102, 0.0313030406832695, -0.03294610232114792, -0.004705228842794895, -0.005900376942008734, 0.026305411010980606, 0.004261130467057228, -0.026580125093460083, -0.037851929664611816, 0.03940005972981453, 0.041710782796144485, -0.006070668809115887, 0.029348379001021385, -0.006024103611707687, 0.05123022198677063, 0.013240063562989235, 0.008306942880153656, -0.03994118049740791, 0.04870681092143059, 0.022410254925489426, 0.01993134431540966, 0.015769343823194504, 0.02862245962023735, 0.04410649091005325, -0.028980473056435585, -0.019913071766495705, 0.022911900654435158, 0.04740534722805023, -0.03566290810704231, 0.01430502813309431, 0.0018014020752161741, 0.0006783760036341846, 0.03505309298634529, -0.013155885972082615, 0.01593739725649357, -0.03578100726008415, 0.008339914493262768, -0.028067657724022865, -0.007055716123431921, 0.04891258478164673, -0.042009226977825165, -0.012421917170286179, -0.01553273480385542, -0.015742385759949684, 0.016925420612096786, 0.043366145342588425, 0.022768335416913033, 0.04936465993523598, 0.0018867477774620056, 0.06471430510282516, -0.0051288423128426075, 0.04276874661445618, 0.030707746744155884, 0.03531119227409363, -0.03132183104753494, -0.004616524092853069, 0.011196018196642399, 0.03328897804021835, -0.013319774530827999, -0.018642324954271317, -0.04072786495089531, 0.009497604332864285, -0.053036030381917953, -0.021828543394804, 0.06443573534488678, -0.0473383292555809, 0.0032152943313121796, -0.04394442215561867, 0.03867776691913605, -0.0481656976044178, 0.023184282705187798, 0.012054789811372757, -0.028258727863430977, -0.005642113275825977, 0.04567136988043785, -0.0023990843910723925, 0.04639621824026108, 0.019184982404112816, 0.03668130561709404, -0.002494288608431816, 0.05571536719799042, 0.040682751685380936, -0.0047751534730196, -0.011194980703294277, 0.006976067088544369, 0.006204713601619005, -0.0238957442343235, -0.007261318154633045, -0.028780397027730942, 0.012197710573673248, -0.010639271698892117, 0.00811687484383583, -0.011035297065973282, 0.03825010359287262, 0.007365712430328131, -0.017873093485832214, -0.041656456887722015, 0.04392531141638756, -0.018239004537463188, 0.002861294662579894, -0.003047100966796279, 0.04312187060713768, -0.00784335844218731, -0.011897281743586063, 0.00009356551163364202, -0.04636780545115471, 0.01293141022324562, -0.046578168869018555, 0.04721608757972717, 0.009119447320699692, 0.007722725160419941, -0.03564119711518288, -0.021844014525413513, -0.025706365704536438, 0.004523185547441244, -0.04295552149415016, -0.02402489259839058, 0.018704285845160484, 0.06328310072422028, 0.01057590451091528, 0.026443559676408768, -0.014639387838542461, -0.006821588147431612, 0.023402567952871323, 0.06218552589416504, 0.010701511055231094, 0.021287985146045685, 0.006689783651381731, -0.016235854476690292, 0.011079071089625359, 0.0011004654224961996, 0.03766416758298874, -0.010812866501510143, -0.004591198638081551, -0.03276802599430084, 0.012259898707270622, -0.025299616158008575, -0.08836137503385544, -0.00844896212220192, 0.0007329767686314881, 0.03554597124457359, -0.05033565312623978, -0.04757925495505333, -0.018500899896025658, -0.04918968677520752, -0.023034675046801567, -0.04485216364264488, 0.007049499545246363, 0.013770115561783314, 0.01589341089129448, 0.011914624832570553, -0.05336792767047882, 0.17200060188770294, 0.06065239757299423, 0.021803034469485283, -0.009942270815372467, 0.0563514418900013, 0.08271219581365585, 0.016002878546714783, -0.03372013568878174, 0.0033351657912135124, -0.06229032576084137, -0.008288844488561153, -0.007387877441942692, -0.004291551653295755, 0.008822447620332241, 0.03459634259343147, 0.03826544061303139, -0.021001899614930153, 0.02126578986644745, 0.0015511264791712165, -0.04043903574347496, -0.052931834012269974, 0.0312360767275095, -0.010206609964370728, -0.00893191434442997, 0.01261111255735159, 0.028200000524520874, 0.03372709080576897, -0.06487729400396347, -0.02812868356704712, -0.0002739090414252132, 0.015409255400300026, -0.01372678205370903, 0.02319880947470665, 0.012265395373106003, -0.03496183454990387, 0.05185908451676369, -0.002866391558200121, 0.006388619542121887, -0.003689915407449007, 0.028149189427495003, -0.014594558626413345, 0.002837460022419691, 0.07146163284778595, -0.03908908739686012, 0.030346790328621864, 0.02191987819969654, -0.020749587565660477, 0.015313947573304176, -0.0029458396602422, -0.02366175875067711, 0.054084599018096924, -0.037684306502342224, 0.01291243452578783, -0.016768818721175194, -0.016155581921339035, 0.013802570290863514, 0.02193550392985344, -0.0213776882737875, -0.025830520316958427, -0.001569471787661314, 0.03212980180978775, -0.025860203430056572, -0.029116190969944, 0.021983865648508072, -0.003413610626012087, 0.010985253378748894, 0.006473680958151817, 0.03198602795600891, -0.015645241364836693, -0.01193180587142706, -0.025949126109480858, -0.019610362127423286, -0.04131345450878143, 0.0016007089288905263, 0.011064996011555195, 0.02530629187822342, -0.011019683443009853, 0.03371518850326538, -0.031632792204618454, -0.02694121189415455, -0.01746089570224285, -0.010281862691044807, 0.016241593286395073, -0.005615165922790766, 0.01264187227934599, 0.03043336607515812, -0.02831377647817135, -0.008292303420603275, -0.032081492245197296, 0.02723505161702633, 0.03423094004392624, 0.023011326789855957, -0.02059600129723549, -0.03043120726943016, -0.0016434420831501484 ]
Tilly Losch was an established dancer and actress, she was titled the 'Countess of Carnarvon.' Danced in many children's parts in all repertory ballets and Operas. She studied her dancing at the Vienna Imperial Opera ballet school at the age of six. Tilly became a full member of the ballet corps at the unusually young age of fifteen. She also studied modern dance with Grete Wiesenthal and Mary Wigman. Tilly made her professional debut in Vienna Waltzes and her first dramatic role was in 'Leonce and Lena' at Vienna's Burg theater. Her first solo appearance was at the Opern Theatre in Vienna in the 5/9/1924 ballet 'Schlagobers,' and by the time she was twenty was one of Vienna's most popular dancers. Made her London debut with 'This Year of Grace' in 1928. Plays and movies. Also danced with Fred Astaire but she was never the exhibitionist, she was always shy, on-stage and off. Tilly's first marriage ended in divorce due to numerous infidelities on her part. Following a bout of depression, Tilly discontinued her dancing career, but soon felt the need for expression in another artistic medium. Having first tried her hand at watercolors, she began to paint seriously. The first one-person exhibition of her paintings, held at New York's Bignou Gallery in the spring of 1944. Tilly's second marriage was to the son of the world famous discoverer of King Tutankhamen's tomb, Earl of Carnarvon and almost overnight became Lady Carnarvon, an English Countess. While in New York in 1975 She died from cancer.
[ -0.010635098442435265, 0.0003217632183805108, -0.017760882154107094, -0.016565511003136635, -0.04193533584475517, -0.017152821645140648, -0.00007286952313734218, 0.02783476933836937, 0.010762283578515053, -0.009046080522239208, 0.021044621244072914, -0.008193673565983772, 0.007253844290971756, -0.02989053539931774, -0.005439496133476496, 0.034376129508018494, -0.02480214089155197, -0.054785434156656265, -0.02623727172613144, 0.018018746748566628, -0.00826013833284378, 0.018527474254369736, -0.09390173852443695, -0.021277345716953278, 0.005049579311162233, 0.07002857327461243, 0.043349720537662506, 0.008414076641201973, 0.05044711381196976, 0.04288456216454506, -0.01296149380505085, -0.03777455911040306, 0.03608224540948868, -0.05100294202566147, 0.005945500917732716, -0.016959767788648605, 0.028271479532122612, -0.037850260734558105, -0.002947380067780614, -0.05659274384379387, 0.007742961868643761, -0.011294079013168812, 0.0328521728515625, -0.018447307869791985, -0.03174133598804474, 0.017791401594877243, 0.0006819441332481802, -0.041155856102705, 0.016754964366555214, -0.035727791488170624, -0.01453342940658331, -0.0038043183740228415, 0.018455790355801582, 0.0038868188858032227, 0.020139029249548912, 0.0015327008441090584, 0.016696138307452202, -0.00887977797538042, 0.003522111102938652, 0.03068687953054905, 0.021860411390662193, -0.016703186556696892, 0.028170282021164894, -0.09146735072135925, 0.0027536258567124605, 0.04273078963160515, 0.018080461770296097, -0.017478663474321365, 0.035301487892866135, -0.010273490101099014, 0.0051962933503091335, -0.0021985103376209736, -0.032563190907239914, -0.014156493358314037, -0.017336508259177208, -0.00463814428076148, -0.01971004344522953, 0.003965522162616253, 0.00937486719340086, 0.015899667516350746, 0.03701431676745415, 0.0317697748541832, -0.004165699705481529, 0.026546660810709, -0.0424809455871582, -0.026214469224214554, -0.022165175527334213, 0.04562339186668396, 0.0030197142623364925, 0.005476947873830795, 0.0046503846533596516, 0.0669451504945755, 0.012714317999780178, -0.0026901911478489637, 0.011391307227313519, 0.036946363747119904, -0.06938795000314713, 0.021066414192318916, 0.008624340407550335, -0.012163900770246983, 0.03063870407640934, -0.0009567904053255916, 0.0058467504568398, 0.0594278909265995, -0.027084168046712875, -0.01150491088628769, -0.023823421448469162, -0.009141798131167889, 0.0039197830483317375, -0.024617541581392288, -0.0013338736025616527, -0.009790945798158646, 0.033797506242990494, 0.00886967871338129, -0.010392245836555958, 0.0423220694065094, -0.0013069981941953301, 0.027119792997837067, -0.03910207003355026, 0.006993945688009262, 0.027363162487745285, 0.0328483022749424, 0.06508529186248779, -0.011054906994104385, 0.052925512194633484, -0.03816144913434982, -0.05778013914823532, 0.05114663019776344, -0.030121708288788795, -0.03022576868534088, 0.011841770261526108, -0.056245479732751846, -0.007550856098532677, -0.015394767746329308, -0.014529812149703503, 0.027233976870775223, -0.02067159116268158, 0.013326169922947884, 0.0015497232088819146, -0.07547831535339355, 0.04346560686826706, 0.036750342696905136, -0.023233352228999138, 0.07223359495401382, 0.0027879555709660053, 0.0363098680973053, -0.0037465174682438374, -0.010769499465823174, -0.06440690904855728, 0.003986010793596506, -0.05292096361517906, 0.0055962190963327885, -0.002348913811147213, 0.041411977261304855, 0.008051293902099133, -0.01186507660895586, -0.0046026865020394325, 0.015793362632393837, 0.025909611955285072, 0.040923722088336945, -0.040701206773519516, -0.03438613563776016, 0.026146404445171356, 0.05195881798863411, 0.008881506510078907, 0.016140829771757126, -0.011728295125067234, -0.019469905644655228, 0.03153464198112488, -0.018966669216752052, 0.01694558933377266, 0.010560221038758755, -0.014186927117407322, 0.006417292170226574, 0.01049555279314518, 0.02653026208281517, 0.02824058011174202, -0.012035438790917397, 0.03395625203847885, 0.047234103083610535, -0.018985236063599586, -0.0020292357075959444, -0.028305653482675552, 0.031965840607881546, 0.015216963365674019, -0.04020063579082489, -0.0030134900007396936, -0.005799763835966587, -0.03608196973800659, -0.0011726882075890899, -0.03475929796695709, 0.0439424104988575, -0.036994125694036484, 0.03813599422574043, 0.026977326720952988, 0.005076550412923098, -0.03698090463876724, -0.017966438084840775, 0.0006009004428051412, -0.04197385534644127, -0.02418038621544838, 0.06829074025154114, -0.024868758395314217, 0.036458659917116165, -0.003086660522967577, 0.003775232005864382, 0.040491651743650436, 0.049089740961790085, -0.03577928990125656, -0.006120037753134966, 0.03748752921819687, 0.0031859716400504112, -0.020141344517469406, -0.010825136676430702, -0.013766903430223465, -0.010088082402944565, -0.04355645179748535, 0.040877439081668854, -0.05350637435913086, 0.019981637597084045, 0.04820463806390762, 0.020321151241660118, 0.03858361020684242, 0.04740636423230171, -0.011935676448047161, 0.008248520083725452, -0.010500923730432987, 0.04872659593820572, -0.02091744728386402, -0.01705901511013508, -0.00513307424262166, 0.029433177784085274, -0.00324460887350142, 0.052345070987939835, 0.028988156467676163, 0.042213570326566696, 0.020263731479644775, 0.05320390313863754, -0.012322471477091312, 0.020687421783804893, -0.010267671197652817, 0.005942638032138348, 0.021041078492999077, 0.04930520057678223, 0.012638648971915245, 0.04257134348154068, -0.04796953499317169, -0.014178087934851646, -0.0007984678377397358, 0.02058190479874611, 0.011004217900335789, 0.0640929564833641, 0.03550223633646965, 0.0513751357793808, -0.011103247292339802, 0.04057425633072853, 0.041238486766815186, 0.05036785826086998, 0.01308963168412447, -0.027161579579114914, -0.0007203518762253225, 0.0220346599817276, -0.007823249325156212, 0.0005972051876597106, 0.04386374354362488, 0.016589980572462082, 0.020019588991999626, 0.041172806173563004, -0.015593437477946281, -0.08510655164718628, -0.0360526479780674, -0.043970707803964615, -0.0318235345184803, -0.03616960719227791, -0.03225760534405708, -0.015200807712972164, 0.06810376048088074, -0.03709797561168671, 0.0369393564760685, 0.007469275966286659, -0.02532072737812996, -0.041879989206790924, -0.018764114007353783, 0.019462186843156815, 0.03374200686812401, 0.00915004126727581, -0.020959148183465004, 0.02812475524842739, -0.03365875035524368, 0.030999965965747833, -0.04191587120294571, -0.04619298502802849, -0.020377038046717644, 0.030276156961917877, 0.047612693160772324, -0.024258606135845184, -0.033464204519987106, -0.008411681279540062, -0.0425846241414547, -0.03327670693397522, 0.014187145978212357, 0.0026320049073547125, 0.02187131904065609, 0.0016995524056255817, -0.020705632865428925, 0.032741665840148926, 0.0035026846453547478, -0.04949146881699562, 0.044699423015117645, 0.027506567537784576, -0.026747681200504303, 0.03619971126317978, 0.027749165892601013, -0.003989021759480238, -0.025155745446681976, 0.08148643374443054, 0.04788059741258621, 0.008261755108833313, -0.01869896613061428, -0.031447235494852066, -0.007462732028216124, 0.004597254563122988, -0.007062127813696861, 0.0021034004166722298, -0.04280837997794151, 0.03937263414263725, -0.007819490507245064, -0.06238315626978874, 0.000414414273109287, -0.03186171129345894, -0.009760516695678234, -0.033788226544857025, -0.04665929451584816, 0.01679782010614872, 0.04158039018511772, 0.0033697327598929405, -0.0012237585615366697, -0.0025207342114299536, -0.04007656127214432, 0.013352837413549423, 0.013632312417030334, -0.04507777839899063, 0.018690206110477448, 0.014706234447658062, -0.024364899843931198, 0.026751164346933365, 0.018231650814414024, -0.04360879957675934, 0.0001032126892823726, 0.031968843191862106, -0.003670701989904046, 0.004654280375689268, 0.019584883004426956, 0.007613571360707283, 0.017078828066587448, 0.03083033673465252, -0.011669646948575974, 0.0003053628606721759, 0.007507503964006901, 0.008919366635382175, 0.014286496676504612, -0.026140989735722542, 0.027210799977183342, -0.02977524884045124, -0.06157263368368149, -0.06746459752321243, 0.051648642867803574, 0.009110278449952602, 0.08724607527256012, -0.04038108512759209, 0.07430585473775864, 0.032350294291973114, -0.045908622443675995, 0.008947118185460567, -0.03758024796843529, 0.018841374665498734, 0.041963204741477966, -0.013628354296088219, 0.03819925710558891, -0.013762379065155983, 0.009138451889157295, -0.005755050573498011, 0.0004260716959834099, 0.05765441432595253, -0.014043346047401428, 0.024558385834097862, -0.02808327041566372, -0.01362958736717701, 0.020843392238020897, -0.0074167014099657536, 0.0007335920818150043, -0.013380531221628189, 0.014083736576139927, -0.013327918946743011, -0.0327920988202095, -0.047185253351926804, 0.03779974952340126, 0.031219862401485443, 0.03432721272110939, -0.008610866963863373, 0.018193701282143593, 0.028086289763450623, 0.005941425450146198, 0.04925600439310074, -0.034812990576028824, -0.011958424933254719, -0.05515096336603165, 0.04126648232340813, 0.04604304954409599, -0.034960225224494934, -0.0002482951385900378, -0.027867555618286133, -0.003402623115107417, 0.04158898442983627, 0.030471405014395714, -0.021424973383545876, -0.030173899605870247, 0.02365831471979618, -0.005609115120023489, -0.002839261433109641, -0.0344148725271225, -0.018295707181096077, 0.0038211203645914793, 0.04969717562198639, 0.020440541207790375, -0.04621657729148865, 0.013631698675453663, -0.04699573665857315, 0.038919419050216675, 0.028580019250512123, 0.026030151173472404, -0.015558609738945961, 0.0031914382707327604, -0.03181145712733269, -0.04923183098435402, -0.003944783471524715, 0.03485304117202759, 0.04145330190658569, -0.0020865739788860083, -0.008949550800025463, 0.04239752143621445, 0.01182167325168848, 0.01100778579711914, -0.000027403588319430128, 0.02090551145374775, 0.017588933929800987, -0.015879707410931587, 0.028861595317721367, 0.011447417549788952, -0.020570460706949234, 0.02942226454615593, -0.0400250181555748, 0.05109008774161339, -0.008277595974504948, -0.004384369123727083, -0.018795283511281013, 0.0015940881567075849, 0.019542889669537544, 0.024998223409056664, 0.019058339297771454, -0.0013737818226218224, -0.0211168322712183, 0.057431526482105255, -0.0716746598482132, -0.027388932183384895, 0.0625813752412796, 0.013168900273740292, -0.01474480889737606, 0.03675158694386482, 0.05967852845788002, -0.025265822187066078, 0.0009618704789318144, 0.011317702010273933, -0.0541243851184845, 0.02456800267100334, -0.00891477894037962, 0.006576868239790201, -0.03049430251121521, -0.01832585595548153, 0.022227419540286064, -0.04112391546368599, 0.04396512731909752, 0.018095558509230614, -0.004017967730760574, -0.029844392091035843, -0.062074653804302216, -0.019242100417613983, -0.028269119560718536, 0.012658073566854, -0.008694106712937355, 0.013867212459445, -0.007559124380350113, -0.05359238013625145, -0.04069985821843147, -0.014727051369845867, 0.004026371985673904, -0.030607130378484726, 0.009508092887699604, 0.008475050330162048, 0.006475497968494892, -0.02820279821753502, -0.01678340509533882, -0.0034693055786192417, -0.005757855251431465, -0.02343655191361904, -0.03219490498304367, -0.052584171295166016, -0.03271792083978653, -0.056118495762348175, -0.022349141538143158, -0.026438409462571144, -0.01768322102725506, -0.004509245976805687, 0.01986459083855152, -0.0012405356392264366, 0.0060431635938584805, 0.04913320019841194, 0.015538487583398819, -0.034437038004398346, 0.052777595818042755, 0.0215024221688509, -0.04949261248111725, -0.0255490243434906, 0.06383594125509262, 0.0015911431983113289, 0.05105052515864372, 0.015427636913955212, -0.021457090973854065, -0.04263047128915787, -0.04023021087050438, -0.015816085040569305, -0.030441587790846825, -0.02861139550805092, -0.039320215582847595, -0.007589863147586584, -0.020484108477830887, 0.02456834726035595, -0.008829747326672077, -0.011840344406664371, 0.014471320435404778, -0.04277000203728676, -0.005440069362521172, -0.018437720835208893, -0.02921123430132866, -0.02930433861911297, -0.022145748138427734, 0.003326841164380312, 0.05880645290017128, -0.0010738323908299208, 0.04517746716737747, 0.013556821271777153, -0.0032401359640061855, 0.006014340557157993, -0.04123964160680771, -0.051917221397161484, -0.05619650334119797, -0.005172750446945429, 0.02086476981639862, 0.009085854515433311, 0.012264344841241837, -0.05624743551015854, 0.05105385556817055, -0.047702956944704056, -0.00992153212428093, 0.007359753828495741, -0.018873270601034164, -0.008037821389734745, -0.02263970673084259, 0.07095550745725632, -0.02613932080566883, 0.013359855860471725, -0.005866285879164934, 0.037723470479249954, 0.0007465237868018448, 0.005617428570985794, -0.014753730036318302, -0.016065077856183052, -0.01615057699382305, -0.07092861086130142, 0.030836766585707664, -0.0011062786215916276, -0.019595302641391754, -0.026432111859321594, 0.005673237144947052, 0.03849545493721962, -0.0002722795179579407, 0.03181089460849762, 0.035690028220415115, -0.04616542533040047, -0.011129382997751236, -0.023228252306580544, 0.007857285439968109, 0.03218870237469673, -0.012276247143745422, -0.030328691005706787, -0.012540796771645546, -0.03595547005534172, -0.0007191963377408683, -0.04977888613939285, -0.04337592422962189, -0.05099095404148102, -0.005332347005605698, 0.0728607177734375, -0.009809965267777443, 0.0384199284017086, 0.028309373185038567, -0.044408418238162994, -0.041453227400779724, 0.02539556473493576, -0.0300559364259243, 0.00306760729290545, 0.040264517068862915, 0.005333392880856991, -0.001336015877313912, -0.009732414968311787, 0.01726594939827919, -0.04929346591234207, -0.02460228092968464, 0.0763261467218399, -0.014990247786045074, -0.03772778809070587, 0.02482057362794876, 0.051919907331466675, -0.057302046567201614, -0.04750644415616989, 0.00348429917357862, -0.025427469983696938, 0.0068644750863313675, -0.030206160619854927, 0.015073848888278008, -0.014845685102045536, 0.0036551589146256447, 0.03012627363204956, 0.030065247789025307, -0.031256262212991714, 0.027989044785499573, 0.01334539894014597, 0.014682414010167122, -0.04370138421654701, -0.016932573169469833, 0.024521805346012115, -0.022037720307707787, -0.056762613356113434, -0.012745553627610207, -0.015133397653698921, 0.009033426642417908, -0.01357118971645832, 0.011178610846400261, -0.00862077996134758, 0.026355920359492302, 0.007259948179125786, -0.012038805522024632, 0.03571143373847008, -0.009102928452193737, -0.02598460577428341, 0.016838401556015015, 0.003280473640188575, -0.04758536070585251, -0.04207004979252815, 0.02216329053044319, 0.007100130897015333, 0.020133227109909058, -0.059962861239910126, 0.005829657893627882, 0.05260845646262169, 0.011603656224906445, -0.0003829742199741304, -0.02832542546093464, -0.024400362744927406, -0.04498444125056267, -0.04094240069389343, -0.039715059101581573, -0.031434692442417145, 0.0429103709757328, 0.02390425279736519, 0.000020433024474186823, -0.035271551460027695, -0.013753572478890419, -0.008703128434717655, -0.02793101780116558, 0.030259136110544205, -0.022975249215960503, 0.023317761719226837, -0.047463178634643555, -0.020269863307476044, -0.023392708972096443, 0.0005284748040139675, 0.0015566652873530984, -0.003547505009919405, -0.025752222165465355, 0.005188352894037962, -0.01805862970650196, 0.02339646779000759, 0.022642649710178375, 0.014309660531580448, -0.006353984586894512, -0.014745497144758701, -0.020484162494540215, 0.03783988580107689, -0.02476048283278942, 0.044927049428224564, 0.03380319103598595, -0.03715060278773308, 0.048090241849422455, -0.008303279988467693, -0.05976567044854164, -0.04114696383476257, -0.006696818396449089, -0.013624388724565506, -0.004836571868509054, -0.025741910561919212, -0.02474607340991497, -0.004828909412026405, -0.056256815791130066, 0.004012437537312508, -0.010262856259942055, 0.007885332219302654, -0.009491548873484135, -0.006578328087925911, -0.0033256635069847107, 0.041777949780225754, -0.009938281960785389, 0.020190661773085594, 0.020616108551621437, 0.01914878748357296, 0.0023852947633713484, -0.0007636260706931353, 0.05120744928717613, 0.020771579816937447, 0.014184251427650452, 0.004733570385724306, 0.01601272076368332, -0.016600197181105614, -0.024629047140479088, 0.026178738102316856, -0.008225646801292896, -0.03136281296610832, -0.023983685299754143, -0.0294167622923851, 0.00022435360006056726, 0.022631196305155754, 0.022027645260095596, -0.0009980672039091587, 0.04405849054455757, -0.05538299307227135, -0.05813455954194069, -0.004308721516281366, -0.06335510313510895, -0.052787426859140396, 0.03528609871864319, -0.02003852091729641, 0.02666260302066803, 0.026561086997389793, -0.03182508796453476, 0.004677439574152231, -0.019148746505379677, 0.015738947317004204, -0.007352905347943306, 0.025114847347140312, -0.016673916950821877, 0.01941046305000782, 0.005413938779383898, 0.003841191530227661, 0.017986876890063286, 0.056589823216199875, -0.02110329642891884, -0.047641169279813766, -0.011351853609085083, 0.009001760743558407, 0.014973909594118595, 0.004859613254666328, -0.0013215853832662106, -0.007529391907155514, -0.015238440595567226, 0.004418051801621914, -0.003134204773232341, 0.034875594079494476, 0.03365115448832512, 0.039751142263412476, 0.00029015482868999243, -0.006228890735656023, -0.020377978682518005, 0.0326140858232975, 0.012283118441700935, -0.019243959337472916, -0.012493237853050232, 0.07347290962934494, 0.026486771181225777, -0.011114783585071564, 0.03746378794312477, 0.030386151745915413, 0.03313272073864937, -0.0016430148389190435, -0.0018943629693239927, -0.034659694880247116, 0.04878635331988335, 0.009472538717091084, 0.02401796728372574, -0.0028896648436784744, 0.010109628550708294, 0.037911027669906616, 0.006359183229506016, -0.027425074949860573, 0.04624549299478531, 0.03851441666483879, -0.017223011702299118, -0.019628796726465225, -0.008291475474834442, -0.001548980362713337, 0.03785833343863487, -0.0080633033066988, 0.009166504256427288, 0.006540381349623203, -0.009741824120283127, -0.03571299463510513, -0.029659340158104897, 0.06479103118181229, -0.013549555093050003, -0.0192023403942585, -0.01899530366063118, -0.013519476167857647, -0.024234864860773087, 0.05515297129750252, 0.02039983496069908, 0.014782354235649109, 0.017504476010799408, 0.030939463526010513, 0.01995220221579075, 0.03536327928304672, 0.001334594446234405, -0.0157370176166296, -0.040251754224300385, 0.0025400046724826097, 0.030620703473687172, 0.02378718927502632, -0.0019290014170110226, 0.010344214737415314, -0.017336716875433922, 0.044072285294532776, -0.050258420407772064, -0.03604833781719208, 0.04644319415092468, -0.0468117818236351, -0.01938905008137226, -0.025439132004976273, 0.03300533443689346, -0.020259788259863853, 0.018935516476631165, 0.04183810204267502, 0.015802841633558273, -0.040529850870370865, 0.05759773030877113, -0.016913793981075287, 0.03803311288356781, -0.0005863226833753288, 0.033634964376688004, -0.032982178032398224, 0.005240208003669977, 0.01413330715149641, -0.020935581997036934, -0.015633009374141693, 0.0008460187818855047, -0.018301596865057945, -0.062155403196811676, 0.001172544900327921, -0.03951827064156532, 0.0048973155207931995, -0.027832120656967163, -0.003962937276810408, -0.0007764245383441448, 0.041864749044179916, 0.021888114511966705, -0.05710768699645996, -0.0006173062138259411, 0.014969080686569214, -0.05261605232954025, 0.03143846243619919, -0.0063081891275942326, 0.03883619233965874, -0.004040256608277559, -0.0071870107203722, -0.02720186859369278, -0.03570646047592163, 0.022013550624251366, -0.03805319219827652, 0.05669470876455307, -0.0012686377158388495, -0.015185764990746975, -0.04679229110479355, -0.09761163592338562, -0.01986653544008732, 0.03969898074865341, -0.05483721196651459, -0.04788487032055855, 0.030704086646437645, 0.06699679046869278, 0.024539871141314507, 0.016202088445425034, -0.036043714731931686, -0.005967122968286276, 0.02891101874411106, 0.0554630309343338, -0.013473378494381905, 0.011680381372570992, 0.02496960014104843, -0.020256634801626205, 0.003978174179792404, -0.01112175639718771, 0.026474637910723686, -0.03300870582461357, -0.017375225201249123, -0.012935134582221508, 0.013360672630369663, -0.015699081122875214, -0.05581827461719513, 0.05345572158694267, -0.017655111849308014, 0.014545977115631104, -0.050006113946437836, -0.09090941399335861, -0.005800362676382065, -0.07041745632886887, -0.008715614676475525, -0.04145142808556557, 0.016869833692908287, 0.020462503656744957, 0.005379269365221262, -0.012184946797788143, -0.07356003671884537, 0.1687091439962387, 0.06702937930822372, 0.030105475336313248, -0.017364593222737312, 0.023216499015688896, 0.04807956889271736, 0.02175314724445343, -0.023690419271588326, 0.00506553752347827, -0.0528520904481411, 0.015737181529402733, 0.01363337505608797, 0.02363777346909046, -0.00956359226256609, 0.038503535091876984, 0.060060106217861176, 0.0003431942022871226, 0.026364458724856377, 0.01808965392410755, -0.037724532186985016, -0.047944776713848114, 0.039426762610673904, -0.014186297543346882, 0.027283981442451477, -0.01601843349635601, 0.022803254425525665, 0.033927496522665024, -0.0794404000043869, 0.008935775607824326, -0.028495825827121735, 0.009310808964073658, 0.00325574167072773, 0.04803110659122467, -0.004321322310715914, -0.02135702222585678, 0.06363292038440704, -0.0013603026745840907, -0.0030284319072961807, 0.0474902018904686, 0.029774775728583336, -0.010662155225872993, 0.005302651319652796, 0.03620504215359688, -0.050450753420591354, 0.0007575257332064211, 0.01665014959871769, -0.058864567428827286, 0.012286396697163582, 0.0036520613357424736, -0.0471058264374733, 0.01476793922483921, -0.019922776147723198, 0.04132978618144989, -0.03432323783636093, 0.012137815356254578, -0.007718726992607117, -0.012769605033099651, -0.03556367754936218, 0.0027633015997707844, 0.014334569685161114, 0.02681170403957367, 0.015475034713745117, -0.04210618510842323, 0.027298280969262123, -0.0222804993391037, 0.0002578777202870697, 0.02694399282336235, 0.013996084220707417, -0.023258931934833527, 0.003098307177424431, 0.0036798599176108837, -0.03230255842208862, -0.03838566690683365, -0.014317501336336136, 0.044778142124414444, 0.04741738736629486, -0.032702524214982986, 0.08017121255397797, -0.0037417272105813026, 0.006662141997367144, -0.009635179303586483, -0.04580099135637283, 0.010072429664433002, -0.00986547488719225, 0.025156967341899872, 0.019760284572839737, -0.019359664991497993, -0.036185894161462784, -0.028569413349032402, 0.03299018740653992, 0.05830683559179306, 0.004707298241555691, -0.00913400761783123, -0.012847616337239742, -0.02792772836983204 ]
1 minute ago, Human10 said: Good it doesn't scan their asses... Would be funny to watch Don't give them ideas otherwise they will be installing the smart toilets in schools. 12 minutes ago, EnigmaticWorld said: We might not be seeing Soviet style purges yet Duncan Garner: Farmers have had a gutsful of Jacinda Ardern playing to her favourites, here comes the revolt Another fiery 'interview' around beginning of August, then.... Garner has been off-air since August 10, with no explanation. Magic Talk host Ryan Bridge has been filling in for Garner, alongside Amanda Gillies and Mark Richardson. The trio had, notably, not discussed Garner's absence during the weeks of Bridge filling in for the host, leading to numerous unanswered queries from viewers. Three today confirmed Bridge would continue hosting The AM Show this week, with an announcement regarding Garner's replacement to be made "in due course". They're dropping like flies at Magic Talk. Leah Panapa opened what had been Peter William's show this morning with the news that he'd retired – just like that. There Friday – gone Monday. The media are describing it as something about to happen. It's happened. Without a whisper of warning. I've listened to Williams fairly regularly since he started out in early 2019. He was getting slicker and more energetic in my view. He didn't sound jaded, tired or unenthusiastic. So I am naturally sceptical about the reason given for his sudden disappearance from the airwaves. And one could hardly be forgiven for being slightly suspicious when his departure has quickly followed Duncan Garner (August), Tony Amos (July), Sean Plunket (February) and part-timer John Banks (January). Williams steadfastedly rejected man-made climate change and interviewed qualified experts like Willie Soon. He gave airtime to lock down questioners like epidemiologist Simon Thornley. He talked with doctors who have questions about the covid vaccine. He gave airtime to The Taxpayer's Union and Bob McCoskrie from Family First. He didn't leave listeners in any doubt about his political preference and it wasn't National. He appeared to me to be socially conservative and economically liberal. He was no friend of the government. I repeat, if anything, he was getting more focussed and outspoken. He certainly didn't sound like a man who'd grown bored or disinterested in his work (or maybe he'd simply given himself licence to be more candid knowing he was going to shortly pull the plug?) Phil Gifford also recently departed NewstalkZB as afternoon co-host. I'm clueless as to whether so many departures are mere coincidence or otherwise. Update: I was reminded by a comment on Kiwiblog that Chris Lynch, NewstalkZB Christchurch host was another recent 'casualty' in May this year. So there is a workforce of at least half a dozen highly experienced broadcasters on the loose… I think Duncan broke his silence in September, but yeah, people getting cancelled is definitely becoming the norm. Check this Bowden talk at the 15 minute mark for what I mean: https://www.bitchute.com/video/gPzMofwsJLwY/ 1 hour ago, skitzorat said: it just f's me off they're contributing to our enslavement and imprisonment with them, either in the 'camps' or society at large. Next up Chinese-style Social Credit Scores linked to the cloud as endless mRNA codes transform us molecularly into Human2.0; eventually merging with 'the internet of things' with an A.I Overlord facilitating all our thoughts, feelings & behaviours. I hope all the gene-jab enthusiasts want this for their children and grandchildren? By accepting the juice, besides the potential destruction of their own biology, they're shamefully contributing to the downfall of all that our ancestors fought & died for; tell me, who are the selfish ones? Saw this trailer recently - Digital ID/Social credit system/Internet of bodies predictive programming? You need a digital device to make friends. And they even have the 666 in there (end of trailer 1, 6 is projected on the road). And 6ft rule. Edited October 17, 2021 by BossCrow "I've got some real issues with this vote," said Patrick Moore, a virologist at the University of Pittsburgh School of Medicine, after voting in favor of Moderna's boosters. "Nonetheless, I want to explain why I voted yes on this. It's more based on gut-feeling than real serious data." https://www.popsci.com/science/covid-vaccine-booster-data-unanswered-questions/ 8 minutes ago, BossCrow said: Saw this trailer recently - Digital ID/Social credit system/Internet of bodies predictive programming? You need a digital device to make friends. And they even have the 666 in there (end of trailer 1). And 6ft rule. Ron's Gone Wrong (2021 film) "Twentieth Century Studios and Locksmith Animation's "Ron's Gone Wrong" is the story of Barney, a socially awkward middle-schooler and Ron, his new walking, talking, digitally-connected device, which is supposed to be his 'Best Friend out of the Box.' Ron's hilarious malfunctions set against the backdrop of the social media age, launch them into an action-packed journey in which boy and robot come to terms with the wonderful messiness of true friendship. " (source) According to the film's trailer, there will only be two kinds of people, those that have the new walking, talking, digitally-connected device, and those that don't. We're being presented with serious choices all the time now. How critical they are to ultimate soul survival is still debatable. One choice already on offer is obviously whether to have the jab, or not to have the jab. All part of the AI transhumanism agenda, in little creeping steps. Nemuri Kyoshiro 6 hours ago, SimonTV said: He needs to be in a padded cell and not allowed near any sharp objects. If this is kosher, this poor bastard hasn't just taken the kool aid, he's giving himself enemas with it. I am always amazed a people's capacity for self-delusion. 2 minutes ago, campanar said: "Nonetheless, I want to explain why I voted yes on this. It's more based on gut-feeling than real serious data." Well, that and the fact that voting no would have cost you your job. You need a digital device to make friends. The Japanese invented a virtual friend some years back. Tamagotchi, or something. The fucking thing turned up its toes if you didn't feed it. zarkov 1 hour ago, Anti Facts Sir said: Motive right there. Inside job. The sentiment of rebellion will fester and grow because logically most people favour life :) despite appearances. 5 minutes ago, Nemuri Kyoshiro said: He's not just any random climate change nutter. Most of his tweets are extinction rebellion BS, and other CC content. It amazes me how 20 months later (and after 20+ years, pretty much since 9/11) people cant see the blatant corruption coming through their TV We kind of do.. so many "oh we seem to have lost the line" or obvious mic cuts when someone drops a covid truth on the tele now; BBC etc HA.. case in point "Let's go Brandan!" Just another fraud making a living out of lies. There's a lot of it about. You just have to look at his face to see he's not playing with a full deck. Just now, Nemuri Kyoshiro said: Yeah, either a genuine loon, or someone with a dog in this fight. It's hard to tell these days. - TZC - I'm trying something out as much as responding can you see these files, it would be great imo if people could sing that on their marches. This is a doctored version if it works two files mp3 one vocals, one song up above. https://easyupload.io/m/7u4mao 31 minutes ago, Golden Retriever said: It's hard to tell whether that's a satire pic or not /s 1 hour ago, RobSS said: to ultimate soul survival Our soul is 100% God and eternal, I don't believe it won't 'survive' - however I am fearful people will no longer be able to speak to God and their higher-self leading to perhaps enormous amounts of spirits trapped between dimensions when their physical vehicle expires (like battlefields/traumatic accidents).. either way people cut their beliefs around this, the future sounds spiritually problematic for humanity as a whole. Ziggy Sawdust 39 minutes ago, Nemuri Kyoshiro said: You just have to look at his face to see he's not playing with a full deck. Athenry04 Huge twat. Just now, skitzorat said: Our soul is our interface, the working area between our spirit and God, and from there, it can go either way, but we have to choose, either we go with the AI, human augmentation, transhumanist agenda, or we reject it. It's going to be more and more difficult to sit in the middle and not make an ultimate choice and this is going to be increasingly problematic for a lot of people going forwards. Rudolf Steiner, for example, said it's possible for vaccines to be used to disconnect humanity from God: "I have told you that the spirits of darkness are going to inspire their human hosts, in whom they will be dwelling, to find a vaccine that will drive all inclination towards spirituality out of people's souls when they are still very young, and this will happen in a roundabout way through the living body. Today, bodies are vaccinated against one thing and another; in future, children will be vaccinated with a substance which it will certainly be possible to produce, and this will make them immune, so that they do not develop foolish inclinations connected with spiritual life — 'foolish' here, of course, in the eyes of materialists." (Rudolf Steiner, Lecture 13: The Fallen Spirit's Influence in the World, 27th October, 1917)
[ 0.01986956037580967, -0.0034550137352198362, -0.035673122853040695, 0.018212303519248962, 0.019299855455756187, -0.009207435883581638, -0.02019057236611843, 0.05433083325624466, -0.002257700078189373, 0.02380763366818428, 0.06459750980138779, -0.01546090841293335, 0.015482334420084953, -0.03497090935707092, -0.03193642199039459, -0.023146022111177444, -0.007571840193122625, -0.018949931487441063, 0.004522786941379309, 0.0013150179293006659, 0.025449788197875023, 0.034712597727775574, -0.036524444818496704, -0.024129733443260193, -0.04417494311928749, 0.034701962023973465, -0.0061693196184933186, 0.0076148114167153835, 0.046438463032245636, 0.06563446670770645, -0.0006133649148978293, -0.06134527921676636, 0.011826303787529469, -0.032802458852529526, -0.013670721091330051, -0.028148654848337173, 0.036005496978759766, -0.00807586032897234, -0.03591744974255562, -0.04589471593499184, -0.010430116206407547, -0.01297631487250328, 0.04323739558458328, -0.027544759213924408, -0.02766120433807373, -0.021839357912540436, -0.015627680346369743, 0.00316259590908885, -0.009178468026220798, 0.011344448663294315, 0.005921467207372189, -0.010225835256278515, 0.01999095268547535, -0.007936541922390461, 0.019991708919405937, -0.006023160181939602, -0.019315145909786224, 0.00013625963765662163, -0.03879856690764427, 0.006911698263138533, 0.022932162508368492, 0.02189824730157852, 0.0018533339025452733, -0.06379997730255127, 0.002579369815066457, 0.0018409222830086946, -0.0179937481880188, -0.016235779970884323, 0.006410351954400539, -0.027312777936458588, -0.006689864676445723, 0.03940805047750473, -0.038636866956949234, -0.014123803935945034, 0.008959462866187096, 0.0103306258097291, -0.02235385775566101, -0.005663332995027304, 0.011995014734566212, 0.014815490692853928, 0.0073134382255375385, 0.057240042835474014, 0.02369701862335205, 0.016759401187300682, -0.02453671582043171, -0.03366027772426605, 0.019135238602757454, 0.019227180629968643, -0.011488624848425388, 0.00880536250770092, 0.016288701444864273, 0.06035406515002251, -0.006906292401254177, -0.03233161196112633, 0.05811787024140358, 0.02137356996536255, -0.0216070469468832, 0.02129887044429779, 0.0029960989486426115, -0.025617720559239388, 0.05426812171936035, 0.021688980981707573, -0.010012217797338963, 0.045150455087423325, -0.04575972631573677, -0.018554331734776497, -0.0031168025452643633, 0.015515655279159546, -0.027220938354730606, -0.022586703300476074, -0.0006607272662222385, -0.022792188450694084, 0.03557634353637695, -0.0014518172247335315, 0.024951288476586342, 0.0567445307970047, 0.007215437944978476, 0.03762212023139, -0.021103978157043457, 0.030757756903767586, 0.0021950898226350546, -0.005192164797335863, 0.015254143625497818, -0.031047942116856575, 0.014641962014138699, -0.058782584965229034, 0.0010628999443724751, 0.026073399931192398, -0.024622812867164612, -0.006197880022227764, -0.011280222795903683, -0.033953938633203506, -0.004818127024918795, 0.008565878495573997, 0.00586044741794467, 0.014231132343411446, 0.005792421754449606, 0.03761224076151848, -0.007377978414297104, -0.05806548520922661, 0.04611431062221527, 0.021413836628198624, 0.013533241115510464, 0.08506926894187927, 0.0023539012763649225, 0.017020858824253082, -0.02865428477525711, -0.0035984436981379986, -0.016202248632907867, 0.021457206457853317, -0.014079734683036804, 0.013333620503544807, -0.009926777333021164, 0.026791663840413094, -0.03499550372362137, -0.0002356235054321587, -0.03237340226769447, 0.015912285074591637, 0.010057341307401657, 0.05412793532013893, -0.04205987602472305, 0.016400370746850967, -0.007589236833155155, 0.03431978449225426, -0.007225867826491594, 0.03739515319466591, -0.00949164479970932, -0.0363209992647171, 0.025959676131606102, -0.005745983216911554, 0.042738549411296844, -0.001652132486924529, -0.014484649524092674, 0.048624537885189056, -0.009597555734217167, 0.050009116530418396, 0.032784510403871536, -0.0068038348108530045, 0.062242764979600906, 0.02771877869963646, -0.03743472322821617, -0.03305350989103317, -0.010425078682601452, 0.0589950866997242, 0.016032617539167404, -0.004647230729460716, 0.010030152276158333, -0.030450835824012756, -0.019945545122027397, -0.039899732917547226, -0.015212402679026127, 0.049382951110601425, -0.05138884857296944, 0.019892532378435135, 0.019436266273260117, -0.013953549787402153, -0.017368854954838753, 0.005830477457493544, 0.015431989915668964, -0.06515442579984665, -0.03360103815793991, 0.08062334358692169, -0.049828410148620605, 0.06074921041727066, 0.009944656863808632, -0.0045122867450118065, 0.01760881580412388, 0.06079702079296112, -0.025912078097462654, 0.020722076296806335, 0.02025112323462963, 0.024020329117774963, -0.01946006901562214, -0.0516735315322876, 0.00485006021335721, -0.017316021025180817, -0.011830361559987068, 0.042556487023830414, 0.013387368991971016, -0.018138816580176353, 0.010560264810919762, 0.02803664281964302, 0.05397730693221092, 0.011786527000367641, -0.0135056022554636, 0.0015079608419910073, 0.0431046299636364, 0.06405380368232727, -0.027162207290530205, 0.009540976956486702, -0.004067847039550543, 0.05457356572151184, 0.025260090827941895, 0.07454155385494232, 0.02894648164510727, 0.012934167869389057, 0.05072922259569168, 0.020149538293480873, 0.0005037884693592787, -0.014188196510076523, -0.02493254654109478, 0.015795109793543816, 0.051137443631887436, 0.04029393568634987, -0.002959837205708027, 0.03730093687772751, 0.005598398391157389, -0.021623723208904266, -0.013753688894212246, 0.03623222932219505, 0.0061704982072114944, 0.046190567314624786, 0.03193620964884758, 0.039580997079610825, -0.034655820578336716, 0.007298785727471113, 0.04576006531715393, 0.07295557856559753, -0.05539039149880409, -0.021853787824511528, 0.01587097905576229, 0.030862342566251755, -0.017358552664518356, -0.003590530715882778, 0.05196566879749298, -0.0009651262662373483, 0.0037168562412261963, 0.04453522339463234, 0.005687575321644545, -0.010609007440507412, -0.023748254403471947, -0.06984589248895645, -0.03804120793938637, -0.05354791507124901, -0.056685127317905426, -0.0021390963811427355, 0.03916485980153084, -0.047283753752708435, 0.02838887646794319, -0.048491887748241425, -0.019516129046678543, -0.04195616394281387, 0.008170263841748238, 0.05483590066432953, 0.02977168932557106, 0.03361271321773529, -0.05039350315928459, 0.011806720867753029, 0.004783053416758776, 0.030719440430402756, -0.025043092668056488, 0.011731985956430435, -0.010969485156238079, -0.00767835509032011, -0.00028674170607700944, 0.025407876819372177, -0.002942748134955764, 0.001872396096587181, -0.05810953304171562, -0.018577003851532936, 0.0004392924311105162, 0.030058404430747032, 0.012530405074357986, -0.015922697260975838, -0.004107496701180935, 0.041595183312892914, 0.028948236256837845, -0.034127239137887955, 0.0729760155081749, 0.05011776462197304, -0.03992270678281784, 0.03624485433101654, 0.035537123680114746, 0.02871139720082283, -0.049509886652231216, 0.03271828964352608, 0.03779162839055061, 0.016302824020385742, -0.03086746484041214, -0.03543711081147194, -0.022611252963542938, 0.004108063410967588, 0.01943214051425457, -0.018536753952503204, -0.06024704501032829, 0.015859318897128105, 0.0035878736525774, -0.07324104011058807, 0.047777097672224045, -0.05912470817565918, -0.023152215406298637, -0.025154143571853638, -0.04804049804806709, 0.026485048234462738, 0.03206503018736839, 0.008606703020632267, -0.009244718588888645, -0.02303609997034073, -0.016982605680823326, -0.0076886327005922794, 0.02874450758099556, -0.033107127994298935, 0.01587718352675438, 0.028102321550250053, 0.0024083536118268967, 0.02030925452709198, 0.027345040813088417, 0.0164911150932312, -0.026519274339079857, 0.014382991008460522, -0.0029703478794544935, 0.02639893814921379, 0.017556065693497658, 0.019057685509324074, 0.021314747631549835, 0.040424007922410965, -0.02825150638818741, -0.0009353311615996063, 0.031905416399240494, -0.004294585436582565, 0.03105541318655014, -0.006989691406488419, -0.004302680026739836, -0.040875405073165894, -0.028080057352781296, -0.06526050716638565, 0.01177848782390356, 0.009784628637135029, 0.07969805598258972, -0.057408928871154785, 0.0652838796377182, -0.04577138274908066, -0.010576710104942322, 0.061786167323589325, -0.04045235738158226, 0.012317909859120846, 0.044664692133665085, -0.023003384470939636, 0.022824935615062714, -0.043454427272081375, 0.02212964929640293, -0.007999111898243427, 0.02291153371334076, 0.044022269546985626, -0.005290418863296509, 0.0031659589149057865, -0.018964122980833054, -0.029027093201875687, 0.011541220359504223, -0.027968019247055054, -0.0035733527038246393, -0.06020990014076233, -0.009696610271930695, -0.018279457464814186, -0.041393399238586426, -0.06808476895093918, 0.034643735736608505, 0.028177879750728607, 0.05405130609869957, 0.02018873207271099, 0.03572828695178032, -0.023758849129080772, 0.010695058852434158, 0.05909894034266472, -0.02606106549501419, 0.029529303312301636, -0.07617254555225372, 0.042863629758358, 0.014893518760800362, -0.06543514132499695, -0.02231528051197529, -0.006116823293268681, -0.015413149259984493, 0.02085508592426777, 0.02827640436589718, -0.036256805062294006, -0.02807857096195221, -0.003902423894032836, -0.010917183011770248, 0.025005459785461426, -0.05225616320967674, -0.03774292394518852, -0.006512791384011507, 0.04648539423942566, 0.032317835837602615, -0.035268500447273254, 0.00768816564232111, -0.08174698054790497, 0.05459653213620186, 0.04882147163152695, 0.004084902815520763, -0.05398942157626152, -0.020849332213401794, -0.055371250957250595, -0.02781212516129017, 0.03958422690629959, 0.025801891461014748, 0.0038452595472335815, -0.019598042592406273, -0.055483490228652954, 0.020415926352143288, 0.04279633238911629, 0.020222624763846397, 0.0005077232490293682, 0.0028260936960577965, 0.02404608577489853, -0.007412891834974289, 0.019573217257857323, -0.022871868684887886, -0.050591446459293365, 0.005190709140151739, -0.03972361981868744, 0.007484239060431719, -0.025021305307745934, -0.021377144381403923, -0.021125078201293945, 0.0264314953237772, 0.014832312241196632, 0.058242831379175186, 0.010293797589838505, 0.015764374285936356, -0.01628054492175579, 0.0599665604531765, -0.0552271269261837, -0.013450387865304947, 0.045329391956329346, 0.015690742060542107, -0.006313358899205923, 0.015437925234436989, 0.0555637963116169, 0.02505696937441826, 0.012622997164726257, 0.010797751136124134, -0.05232880637049675, 0.026363952085375786, -0.0006321107503026724, 0.0010388889349997044, -0.007880786433815956, -0.009437496773898602, 0.0027344124391674995, -0.004689916968345642, 0.03886692225933075, -0.007257208228111267, -0.010042782872915268, -0.038949061185121536, -0.050515804439783096, -0.0035774733405560255, -0.004825619515031576, -0.002495446940883994, 0.021591583266854286, 0.006425327155739069, -0.003293086541816592, -0.01824161410331726, -0.0001299992436543107, -0.0185654666274786, -0.014089805074036121, -0.006149344611912966, -0.00841722171753645, -0.010115677490830421, 0.013945894315838814, 0.02428237907588482, -0.005823507439345121, -0.04381744563579559, 0.017857633531093597, -0.015558125451207161, -0.06336941570043564, -0.04698280245065689, -0.03253984451293945, -0.020684227347373962, 0.006379665341228247, -0.012414206750690937, 0.010742826387286186, -0.014983932487666607, 0.018494177609682083, 0.008488649502396584, -0.005393543746322393, 0.029863890260457993, 0.015317361801862717, -0.039110131561756134, 0.054465893656015396, 0.03899962082505226, -0.053999852389097214, -0.02042578160762787, 0.028499849140644073, -0.003957732114940882, 0.03577462211251259, -0.005400701891630888, -0.031177392229437828, -0.03742131218314171, -0.058445774018764496, 0.013434067368507385, -0.03003731183707714, 0.00540901068598032, -0.056885238736867905, -0.013272633776068687, -0.0032963429111987352, 0.06702480465173721, -0.03678234666585922, 0.01197386346757412, 0.013678918592631817, -0.04232880845665932, 0.012845708057284355, -0.04565047845244408, -0.013480408117175102, -0.021664505824446678, -0.026697585359215736, -0.02278311178088188, 0.04857528209686279, -0.01644834503531456, 0.02403528243303299, 0.00800612848252058, -0.01188737154006958, -0.0004570576420519501, -0.014166300185024738, -0.05876271799206734, -0.04507087171077728, -0.0065062884241342545, -0.004265761934220791, 0.004885758273303509, 0.0033720561768859625, -0.02880537323653698, 0.05727048218250275, -0.011259707622230053, 0.011606642976403236, -0.019166460260748863, 0.0034663027618080378, -0.03728684037923813, -0.018583958968520164, 0.03241638094186783, -0.03700266405940056, 0.03418080881237984, -0.010786578059196472, 0.039680395275354385, 0.07167288661003113, 0.03239233419299126, -0.025044972077012062, -0.014753349125385284, -0.04134627431631088, -0.06497717648744583, 0.04603466019034386, -0.048358507454395294, -0.024221736937761307, -0.034792978316545486, 0.023349788039922714, 0.04050138220191002, -0.017602495849132538, 0.03441229462623596, 0.023098183795809746, -0.02951560541987419, -0.030693454667925835, -0.0570392869412899, 0.02347959578037262, 0.0047193425707519054, 0.014798103831708431, -0.012168161571025848, -0.0350734107196331, -0.005322139710187912, -0.003557282267138362, -0.05783230438828468, -0.021001892164349556, -0.046521108597517014, -0.035863619297742844, 0.06928732246160507, -0.015096998773515224, 0.029934635385870934, -0.008934758603572845, -0.05532420054078102, -0.05895353481173515, 0.03258852660655975, 0.03907495364546776, 0.008408049121499062, 0.04563604295253754, 0.022525839507579803, -0.02131490968167782, 0.00783389713615179, 0.024038424715399742, -0.008725483901798725, -0.024977143853902817, 0.06812188029289246, 0.013576528057456017, -0.044157858937978745, 0.04894217103719711, 0.05043855309486389, -0.05549197643995285, -0.04471154138445854, -0.01920335367321968, -0.021448614075779915, -0.012475603260099888, -0.011516382917761803, 0.007239970378577709, -0.024155888706445694, -0.018932020291686058, -0.0002902441192418337, 0.04700038209557533, 0.014723867177963257, 0.027821524068713188, -0.014035307802259922, 0.04414299502968788, -0.03675539046525955, -0.002288488205522299, 0.032104335725307465, -0.027071766555309296, -0.029140466824173927, -0.027655718848109245, -0.011130798608064651, 0.003193067153915763, 0.004948185756802559, 0.0408751480281353, -0.051654767245054245, 0.018787436187267303, 0.01874949038028717, -0.018592026084661484, 0.03186050057411194, -0.009314311668276787, -0.022764459252357483, 0.03923526778817177, -0.022047478705644608, -0.023765653371810913, -0.026379695162177086, 0.003702992806211114, 0.002068509813398123, 0.006948376540094614, -0.041172608733177185, -0.03247827664017677, 0.024909384548664093, -0.0024317000061273575, 0.0007254781667143106, -0.038922689855098724, -0.04687407985329628, -0.035985495895147324, -0.03960840031504631, -0.023163365200161934, -0.0054786112159490585, -0.005932744592428207, 0.026625001803040504, -0.005719558335840702, -0.030762899667024612, -0.04835746809840202, -0.004745457787066698, -0.009005163796246052, 0.032920535653829575, -0.04093360900878906, 0.020507751032710075, -0.029677368700504303, -0.04938453435897827, -0.03807105869054794, -0.03067389875650406, -0.05165014788508415, -0.031506359577178955, 0.0010454445146024227, 0.026181604713201523, -0.0006079464219510555, 0.04593009874224663, 0.016235753893852234, -0.002012140117585659, -0.03669543191790581, -0.04861944168806076, -0.02294965833425522, 0.05881267413496971, -0.010553136467933655, 0.023676199838519096, 0.022092461585998535, 0.0025270467158406973, 0.02626633271574974, -0.0030172106344252825, -0.03259935602545738, -0.01637280359864235, 0.012431010603904724, -0.0052781482227146626, 0.025264259427785873, -0.02893071249127388, -0.012657376937568188, -0.010580172762274742, -0.01891232095658779, 0.019217852503061295, -0.027971787378191948, 0.016153406351804733, 0.016040349379181862, -0.012427452951669693, 0.016702065244317055, 0.04037953168153763, 0.021311625838279724, 0.03543410077691078, 0.002745184814557433, 0.03694609925150871, -0.0014934067148715258, 0.012978987768292427, 0.0122871994972229, -0.003383731935173273, 0.014501426368951797, -0.01394736859947443, 0.0178690142929554, 0.03126680478453636, -0.017646227031946182, 0.012027896009385586, -0.024637816473841667, -0.04665432870388031, -0.024424100294709206, -0.000755460758227855, 0.02969411015510559, 0.015888072550296783, -0.009125077165663242, -0.0012553801061585546, 0.036189526319503784, -0.015682553872466087, -0.03252435848116875, 0.017149563878774643, -0.06518520414829254, -0.02170969359576702, 0.036669228225946426, -0.010986946523189545, -0.0025567100383341312, -0.024075854569673538, -0.029841486364603043, -0.022247903048992157, -0.014527300372719765, -0.004121511708945036, 0.0031529124826192856, 0.014905886724591255, -0.006827669218182564, 0.05290072783827782, -0.014322315342724323, 0.004962336737662554, -0.013619947247207165, 0.05095844343304634, -0.06507305055856705, -0.03586304187774658, 0.003540648613125086, 0.029654178768396378, -0.01444990374147892, 0.015609102323651314, -0.025528548285365105, 0.021917764097452164, 0.027063604444265366, 0.008144106715917587, 0.02435755729675293, 0.02320810966193676, -0.026886427775025368, 0.04122374579310417, -0.008317489176988602, 0.008523699827492237, -0.029331931844353676, 0.019083388149738312, 0.010961560532450676, -0.040943797677755356, -0.01577666401863098, 0.02962723933160305, 0.030888887122273445, -0.029650384560227394, 0.028254419565200806, 0.020328553393483162, 0.07215544581413269, -0.024565795436501503, 0.02627400867640972, -0.014038187451660633, 0.044963572174310684, 0.042614806443452835, 0.010418526828289032, -0.013150395825505257, 0.030311355367302895, 0.06372757256031036, -0.027787188068032265, 0.00584584241732955, 0.03365694358944893, 0.013509176671504974, -0.02840844914317131, 0.007860704325139523, 0.004257982596755028, 0.010748064145445824, 0.009624828584492207, -0.02296297252178192, 0.014137445017695427, -0.015216954052448273, 0.005699055269360542, -0.01531253382563591, -0.020839303731918335, 0.027403803542256355, -0.02988113835453987, 0.005501401610672474, -0.021355705335736275, -0.0026125202421098948, 0.001274431124329567, 0.059453338384628296, -0.011753677390515804, 0.004074453841894865, 0.05011210963129997, 0.017376890406012535, -0.015118512324988842, 0.07009438425302505, 0.049557268619537354, 0.01951427385210991, -0.03461030498147011, 0.004759525414556265, 0.02443317510187626, -0.010594886727631092, -0.020268894731998444, 0.01159762591123581, -0.023652978241443634, 0.030059102922677994, -0.024838296696543694, -0.0173032209277153, 0.019179824739694595, -0.03797273710370064, -0.015017097815871239, -0.054904986172914505, 0.042042963206768036, -0.03024270385503769, -0.01320561207830906, 0.0007731412770226598, -0.03026634082198143, 0.018125787377357483, 0.044930990785360336, -0.0109614422544837, 0.0361480787396431, -0.011597910895943642, 0.03140028566122055, -0.017602572217583656, 0.027620967477560043, 0.08643115311861038, -0.03553332760930061, -0.02033970132470131, 0.029233066365122795, -0.010528250597417355, -0.027215488255023956, -0.022431286051869392, -0.05266158655285835, 0.005104014649987221, 0.005169873125851154, -0.02022702246904373, -0.0077171530574560165, 0.035721711814403534, -0.02317788079380989, -0.03223935142159462, 0.018073778599500656, 0.02511601895093918, -0.03482520207762718, 0.0054595391266047955, 0.02119436487555504, 0.014419829472899437, -0.014815762639045715, -0.0009783274726942182, -0.007586409337818623, -0.05902193859219551, -0.01575598120689392, -0.03190585598349571, 0.03792165592312813, -0.026067713275551796, -0.05810391902923584, -0.03920063003897667, -0.034624870866537094, -0.03142738714814186, 0.004118293058127165, -0.0356665775179863, -0.06891802698373795, 0.038151830434799194, 0.04763827845454216, 0.00414846558123827, 0.019381292164325714, -0.037961553782224655, 0.02435220219194889, 0.027481378987431526, 0.05647565796971321, -0.014450746588408947, 0.02588512748479843, 0.02652822993695736, -0.01717304438352585, 0.027879323810338974, -0.027981864288449287, 0.04673963040113449, -0.0030014996882528067, -0.03095574490725994, -0.045905277132987976, 0.0002796913031488657, -0.06521338224411011, -0.052748486399650574, 0.011415503919124603, 0.01251585129648447, 0.02459637261927128, -0.048259586095809937, -0.05743265897035599, -0.016715530306100845, -0.04526737704873085, -0.013347323052585125, -0.014479869045317173, 0.05381155386567116, 0.016673007979989052, 0.004743746016174555, -0.01920332945883274, -0.07356667518615723, 0.1697443723678589, 0.03721381351351738, 0.03466092795133591, -0.02036319673061371, 0.006897455081343651, 0.03818383067846298, 0.03789529204368591, -0.01767413318157196, 0.004740705247968435, -0.030744630843400955, 0.02305610664188862, 0.01673608087003231, 0.0360417403280735, 0.018285363912582397, 0.03126795217394829, 0.07713454961776733, -0.04102690890431404, 0.009102946147322655, 0.029396476224064827, -0.049572501331567764, -0.0660354271531105, 0.027007171884179115, 0.012189962901175022, 0.034008778631687164, -0.023579921573400497, 0.0239143967628479, 0.025951139628887177, -0.05035867169499397, -0.030712204053997993, -0.003559395205229521, 0.028681036084890366, -0.032345131039619446, 0.01787291280925274, -0.012144457548856735, -0.05565884709358215, 0.0359310656785965, -0.027156013995409012, -0.06552144885063171, 0.027089199051260948, -0.011885571293532848, -0.021782364696264267, 0.030858023092150688, -0.0000293569373752689, -0.02270561084151268, 0.01671314798295498, 0.02076885849237442, -0.003894841531291604, 0.021105842664837837, 0.021938832476735115, -0.04183778911828995, 0.026889627799391747, -0.027418291196227074, 0.05492305010557175, -0.02345796674489975, -0.031249307096004486, 0.020834820345044136, 0.014229203574359417, -0.024678749963641167, -0.010329848155379295, -0.009846307337284088, 0.010883294977247715, -0.009147299453616142, 0.0015460695140063763, 0.019473319873213768, -0.014218349009752274, 0.014526416547596455, 0.03398706018924713, -0.030964871868491173, -0.008196238428354263, 0.008764573372900486, -0.025435796007514, 0.009177148342132568, 0.0007379644084721804, -0.00997175183147192, 0.0030905501917004585, 0.033570416271686554, -0.02238617278635502, 0.011274643242359161, 0.028807172551751137, -0.008339178748428822, -0.01411653496325016, -0.02601051516830921, -0.008711297065019608, -0.02651256136596203, 0.04813951253890991, 0.02264879085123539, -0.03100532293319702, -0.016390332952141762, -0.010720447637140751, 0.03318148851394653, 0.05760297551751137, 0.02497677691280842, -0.02297673001885414, -0.017863212153315544, -0.014213843271136284 ]
Q: How to insert code html to textarea using javascript Tell me How To do? Here My Script $('code').on('click', function(){ var cursorPos = $('#spot-template-code').prop('selectionStart'); var v = $('#spot-template-code').val(); var textBefore = v.substring(0, cursorPos ); var textAfter = v.substring( cursorPos, v.length ); $('#spot-template-code').val( textBefore+ $(this).xml() +textAfter ); }); Please How i'd must change? after click on the function, nothing happend on my textarea <trans data-id='AFTER'>AFTER</trans> I'd want to insert this code to my textarea ? A: ok, you can do this by enter your code in to any tag and just access html of the control $('[data-id="AFTER"]').click(function(){ $('#txtCode').val($('#copy').html()) }); <script src="https://code.jquery.com/jquery-3.4.1.js" integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous"></script> <script id="copy"> $('code').on('click', function(){ var cursorPos = $('#spot-template-code').prop('selectionStart'); var v = $('#spot-template-code').val(); var textBefore = v.substring(0, cursorPos ); var textAfter = v.substring( cursorPos, v.length ); $('#spot-template-code').val( textBefore+ $(this).xml() +textAfter ); }); </script> <trans data-id='AFTER'>AFTER</trans> <textarea id="txtCode"></textarea>
[ -0.012002906762063503, -0.012186446227133274, 0.0026993039064109325, -0.0020309416577219963, -0.01351780816912651, 0.0021422647405415773, -0.0037333504296839237, 0.020045354962348938, 0.03751714527606964, 0.04449643939733505, -0.0030374317429959774, 0.017137229442596436, -0.011686628684401512, -0.010021972469985485, 0.005097492597997189, 0.01734372228384018, -0.001641386654227972, -0.016075309365987778, -0.013057935051620007, 0.014274117536842823, -0.017688702791929245, 0.008738880045711994, -0.0692918673157692, -0.040879081934690475, -0.0211512241512537, 0.03791477158665657, 0.01090246345847845, 0.000639550038613379, 0.0299050435423851, 0.07499552518129349, -0.014655598439276218, -0.022130819037556648, 0.020838577300310135, -0.03456468507647514, -0.024157151579856873, -0.017859406769275665, 0.04387184977531433, -0.030815016478300095, -0.03924354910850525, -0.049293018877506256, 0.01209049578756094, -0.0064991191029548645, 0.019957225769758224, -0.04885237663984299, -0.052238911390304565, 0.01638968475162983, 0.006808390840888023, -0.01443926990032196, -0.0021892995573580265, -0.012542517855763435, 0.033723000437021255, 0.017547497525811195, 0.03507807478308678, 0.016999682411551476, -0.027084283530712128, 0.00307073094882071, 0.004846510011702776, -0.04625380039215088, -0.03661908581852913, 0.03803457319736481, 0.0045774467289447784, 0.00579418521374464, 0.01826552487909794, -0.0395018570125103, 0.03348163515329361, 0.021044181659817696, -0.0013030790723860264, -0.006289326120167971, -0.0004132961039431393, 0.009086547419428825, -0.007568264380097389, -0.004144669510424137, 0.002967397915199399, -0.028051910921931267, -0.016421092674136162, 0.008997911587357521, -0.038515374064445496, 0.010291597805917263, -0.000582410313654691, 0.024829603731632233, -0.04329238831996918, 0.06289130449295044, 0.002000803127884865, 0.03734293207526207, -0.07753173261880875, -0.025942308828234673, -0.0011713550193235278, 0.020758874714374542, 0.02224980667233467, 0.013834560289978981, -0.006979662925004959, 0.04403819143772125, -0.006392715033143759, 0.008754140697419643, 0.043418172746896744, 0.06688600033521652, -0.012783365324139595, 0.04479806870222092, -0.004049834795296192, 0.005445350892841816, 0.04903772100806236, 0.021363934502005577, -0.07265520840883255, 0.04370925575494766, -0.006346859969198704, 0.002115911804139614, 0.01851280778646469, 0.001271711545996368, -0.009514777921140194, -0.03409726917743683, -0.00813201628625393, 0.0017574131488800049, 0.031508900225162506, 0.008529969491064548, -0.00761693948879838, 0.05323396623134613, 0.005723687820136547, 0.01789557933807373, -0.008872825652360916, 0.002749963430687785, 0.03947139158844948, -0.020501594990491867, -0.01156027801334858, -0.004280116409063339, 0.026132941246032715, 0.0059199258685112, -0.03225256875157356, 0.04267582669854164, -0.007936639711260796, -0.0013208864256739616, -0.01712985150516033, -0.018605224788188934, 0.0009693778119981289, 0.05167403817176819, -0.0077422005124390125, 0.019662130624055862, -0.014157896861433983, 0.03831132873892784, 0.04422188177704811, -0.05557546764612198, 0.021379437297582626, 0.024939458817243576, -0.005935556720942259, 0.08421817421913147, 0.026922985911369324, 0.015390168875455856, -0.01840467005968094, -0.007010412402451038, -0.023332810029387474, 0.021384792402386665, -0.04297632351517677, 0.0057601481676101685, 0.012517811730504036, 0.02219824120402336, -0.00648990273475647, -0.010233691893517971, 0.011888343840837479, -0.0038577860686928034, 0.01675955206155777, 0.045092999935150146, -0.0167936272919178, 0.0162678025662899, -0.02298339456319809, 0.025730038061738014, -0.017508871853351593, 0.034710198640823364, -0.0439714640378952, -0.04838601127266884, -0.02686394937336445, -0.03089229017496109, 0.020684856921434402, -0.004341455176472664, -0.013724682852625847, -0.02958674542605877, 0.02663768269121647, 0.024829883128404617, 0.02286393940448761, -0.018224528059363365, 0.01973242498934269, 0.01848878711462021, -0.027430782094597816, 0.03986497223377228, -0.009912044741213322, 0.07371445000171661, 0.03658241406083107, -0.01043742150068283, 0.014652171172201633, -0.00996402744203806, -0.03364616632461548, -0.039205022156238556, 0.03672850877046585, 0.038024917244911194, -0.026074256747961044, 0.01732126623392105, -0.007879341021180153, 0.03394582122564316, -0.016574323177337646, 0.017276305705308914, -0.021155331283807755, -0.05152290686964989, -0.017349781468510628, 0.023245029151439667, -0.003945746924728155, 0.024259665980935097, -0.009212600067257881, -0.011640479788184166, 0.00017450962332077324, 0.06514575332403183, -0.04944692179560661, 0.025357814505696297, 0.035952210426330566, -0.0020405787508934736, -0.03243003785610199, 0.014605222269892693, -0.0005006049177609384, -0.01677560806274414, -0.047128643840551376, 0.043968409299850464, -0.0007919120835140347, 0.015316849574446678, -0.007306165061891079, 0.016426173970103264, 0.03345533832907677, 0.04409998655319214, -0.003666103119030595, 0.007783300708979368, 0.0035033226013183594, 0.04114513471722603, -0.02979450114071369, -0.018070107325911522, 0.009500071406364441, 0.016301337629556656, 0.01692832075059414, 0.06399007141590118, 0.016679562628269196, 0.023566173389554024, 0.028817078098654747, 0.03586695343255997, 0.010489636100828648, 0.035614319145679474, -0.011499689891934395, 0.016193294897675514, 0.03959319740533829, 0.03182879835367203, -0.027774620801210403, 0.0029436531476676464, 0.007892313413321972, 0.0025935498997569084, -0.012639129534363747, 0.035614222288131714, -0.004869643598794937, 0.07347054034471512, 0.03631957992911339, 0.03216995671391487, -0.022685972973704338, -0.0010292765218764544, 0.041210200637578964, 0.045967552810907364, -0.041896358132362366, -0.020431924611330032, -0.0010653341887518764, 0.03064153529703617, -0.01097493153065443, 0.009758871980011463, 0.020162098109722137, 0.00010082126391353086, 0.012442335486412048, 0.01425298023968935, -0.044580668210983276, -0.06447494775056839, -0.04256843402981758, -0.06612301617860794, -0.027988163754343987, -0.006158727686852217, -0.031151922419667244, -0.025944741442799568, 0.05207420513033867, -0.053756412118673325, 0.028284553438425064, 0.0015553853008896112, 0.005729928612709045, -0.030926616862416267, -0.04219502955675125, 0.050380900502204895, 0.022994473576545715, 0.02211947552859783, -0.020452475175261497, 0.03716477379202843, 0.008062910288572311, 0.0420035682618618, -0.06085628271102905, -0.01637980528175831, -0.005026382394134998, -0.017947977408766747, 0.025557326152920723, -0.000838027277495712, 0.001335670007392764, -0.02568507194519043, -0.040940120816230774, -0.05187356844544411, -0.03388786315917969, -0.004920194391161203, -0.020654916763305664, 0.0225642379373312, -0.03281477093696594, 0.055036962032318115, -0.0011970973573625088, -0.035155363380908966, 0.05270995572209358, 0.023206057026982307, -0.04462256282567978, 0.059142984449863434, 0.039846863597631454, -0.012234576046466827, -0.047158751636743546, 0.04755254462361336, 0.038190342485904694, 0.012692532502114773, -0.03182627260684967, -0.019466109573841095, -0.02685306966304779, 0.013094143941998482, -0.006561621557921171, 0.0014299990143626928, -0.026732422411441803, 0.02841893769800663, 0.021426023915410042, -0.07302750647068024, 0.030724402517080307, -0.025510329753160477, -0.0028058395255357027, -0.03883151710033417, 0.01677064225077629, 0.022983688861131668, 0.02626737579703331, 0.011237235739827156, 0.019737794995307922, 0.03152129054069519, 0.014942970126867294, 0.01603260636329651, 0.060196928679943085, -0.029617110267281532, 0.02058516815304756, 0.035401105880737305, 0.008696692995727062, -0.0031504526268690825, 0.011433759704232216, -0.03723711892962456, -0.003673223312944174, -0.00013392113032750785, -0.021017050370573997, -0.011121038347482681, 0.030354877933859825, 0.013680174946784973, 0.008993227034807205, 0.06320053339004517, -0.020871402695775032, -0.010803714394569397, 0.030963454395532608, 0.018968490883708, 0.035748209804296494, 0.03201876953244209, -0.0005665306816808879, -0.041074566543102264, -0.011165205389261246, -0.066783107817173, 0.0356217622756958, 0.01945672184228897, 0.06875623762607574, -0.06614837050437927, 0.06507789343595505, 0.01884249970316887, -0.03195151686668396, 0.043289653956890106, -0.04588913545012474, -0.0018962842877954245, 0.06960117071866989, -0.010063962079584599, 0.058099839836359024, -0.03795177862048149, -0.02569911628961563, -0.011965587735176086, -0.01917414367198944, 0.053600095212459564, 0.024312328547239304, 0.027310796082019806, -0.006058563943952322, 0.0038833359722048044, 0.021314848214387894, -0.0014941947301849723, -0.013104972429573536, -0.024222861975431442, 0.008448967710137367, -0.0022877287119627, -0.03570958599448204, -0.030343610793352127, 0.023992860689759254, 0.01585013046860695, 0.048346251249313354, -0.0008191792876459658, 0.007008799817413092, -0.011445746757090092, 0.047103401273489, 0.033236514776945114, -0.026607373729348183, 0.018237857148051262, -0.039917729794979095, 0.03311968222260475, 0.026172693818807602, -0.002856683684512973, -0.0117885060608387, -0.018541449680924416, -0.01876312494277954, 0.007536195684224367, 0.034562017768621445, -0.017433233559131622, -0.0556696392595768, 0.015025926753878593, 0.016544315963983536, 0.03198210895061493, -0.032089438289403915, -0.010428308509290218, -0.020599840208888054, 0.013435416854918003, 0.04027480259537697, -0.05106990039348602, 0.0013385056518018246, -0.008826062083244324, 0.013404462486505508, 0.014185131527483463, -0.015668492764234543, -0.0365632101893425, -0.03423503041267395, -0.029529230669140816, -0.0242990143597126, 0.04125937074422836, 0.03420347720384598, -0.028983015567064285, 0.029552733525633812, -0.03696374222636223, -0.007832031697034836, 0.021831627935171127, 0.013056299649178982, 0.012293740175664425, 0.003194078803062439, 0.0075088609009981155, -0.005122311878949404, 0.039151500910520554, -0.04340367391705513, -0.0017699821619316936, 0.033807072788476944, -0.024772269651293755, 0.04835928976535797, 0.0005595762631855905, 0.009176712483167648, -0.023143256083130836, -0.002897346392273903, 0.004837019369006157, 0.05779597535729408, -0.018570832908153534, -0.021426377817988396, 0.0034253045450896025, 0.010109111666679382, -0.06824446469545364, -0.019665855914354324, 0.05256276950240135, -0.014399359002709389, -0.02109852060675621, 0.01633043959736824, 0.031338710337877274, -0.02994205430150032, 0.00985248014330864, 0.007986272685229778, -0.035954125225543976, 0.01557198353111744, -0.053141508251428604, -0.0011291858972981572, -0.004090841859579086, -0.030026765540242195, -0.003623862052336335, -0.030864164233207703, 0.04189419001340866, -0.007829079404473305, -0.05277831479907036, -0.04040457308292389, -0.04654065892100334, -0.014990381896495819, 0.018981250002980232, -0.018315471708774567, 0.005127253942191601, 0.008571402169764042, -0.01881752535700798, 0.012340881861746311, -0.02566155418753624, -0.004252511076629162, 0.021239489316940308, -0.005032618064433336, 0.01409928034991026, 0.024563802406191826, 0.013164456002414227, 0.017267897725105286, -0.010883142240345478, -0.07767535746097565, -0.0005008603911846876, -0.006325382739305496, -0.010549048893153667, -0.03183440491557121, 0.008228322491049767, -0.011538580991327763, -0.022012662142515182, -0.01869283802807331, 0.05342159792780876, -0.02739984542131424, 0.024521037936210632, 0.05579039454460144, -0.002272132085636258, 0.016824549064040184, 0.019022084772586823, -0.027819467708468437, 0.0219538863748312, 0.028481323271989822, -0.034212127327919006, -0.019468670710921288, 0.05253221467137337, -0.016534673050045967, 0.05866168811917305, 0.01822797581553459, -0.028531471267342567, -0.0581001453101635, -0.05587128549814224, 0.014510191977024078, -0.01885359361767769, -0.03967723995447159, -0.06652331352233887, -0.03079143539071083, -0.03611668944358826, 0.023223191499710083, 0.005050568375736475, -0.0408649742603302, -0.027828821912407875, -0.021944139152765274, 0.01980336755514145, -0.061666589230298996, 0.008297588676214218, 0.009551872499287128, -0.02394433692097664, 0.005398989655077457, 0.031074998900294304, -0.005877173971384764, 0.03363301232457161, 0.019726010039448738, -0.006790922489017248, 0.06077641621232033, -0.01284253690391779, -0.039176199585199356, -0.024119142442941666, 0.017384203150868416, -0.028427351266145706, -0.02640104480087757, 0.02842949703335762, -0.0231940895318985, 0.04568931460380554, -0.04368944093585014, -0.005577936768531799, -0.011203749105334282, 0.00189402443356812, -0.01591993123292923, -0.022338462993502617, 0.029665205627679825, -0.03901151567697525, -0.022711114957928658, -0.04133113473653793, 0.0753747895359993, -0.008763252757489681, -0.006677747238427401, -0.03272039070725441, -0.009027380496263504, -0.061753932386636734, -0.04321672394871712, 0.0012212889268994331, -0.044749610126018524, -0.00803291890770197, -0.0437651090323925, 0.004710817709565163, 0.05535837635397911, -0.02218916453421116, 0.00918481033295393, 0.07585634291172028, 0.011438152752816677, 0.022922957316040993, -0.028456779196858406, 0.022016264498233795, 0.0024959403090178967, -0.03156661242246628, 0.018360137939453125, 0.025929991155862808, -0.05124124139547348, -0.02316766045987606, -0.02436761185526848, -0.05383627861738205, -0.04453025013208389, -0.001598168513737619, 0.0773208811879158, -0.03201422095298767, 0.030068829655647278, -0.009552240371704102, -0.07676954567432404, -0.05960020795464516, 0.07077053934335709, 0.012232919223606586, 0.0061263432726264, 0.03131718933582306, 0.0181239303201437, 0.012817909941077232, 0.0030247406102716923, -0.004360048100352287, -0.01738457940518856, -0.021778177469968796, 0.06352457404136658, 0.0193468164652586, -0.03184301033616066, 0.016042020171880722, 0.05866129696369171, -0.05646804720163345, -0.023048190400004387, 0.014744825661182404, -0.006133839022368193, -0.015272241085767746, -0.003956230357289314, -0.007209249772131443, -0.0038870135322213173, -0.008036226965487003, 0.02264915592968464, 0.03398226946592331, 0.008939392864704132, 0.02374481037259102, -0.0007295354153029621, -0.006978321820497513, -0.0009637182229198515, 0.018271679058670998, 0.052394669502973557, -0.0017458020010963082, 0.010330770164728165, -0.02737932838499546, 0.003032146953046322, 0.009389587678015232, 0.005449656397104263, 0.04640626162290573, 0.008031006902456284, 0.017553536221385002, 0.018866004422307014, -0.016690045595169067, 0.039803002029657364, 0.0024961698800325394, 0.004677881486713886, 0.036244940012693405, -0.03672311455011368, -0.04779814928770065, -0.035704076290130615, 0.03553326055407524, -0.012616639025509357, 0.0252810250967741, -0.013878349214792252, 0.04228494316339493, 0.04819502681493759, 0.02380632795393467, -0.029956389218568802, -0.06450819224119186, -0.022684069350361824, -0.04603622481226921, -0.04315752536058426, -0.011752370744943619, -0.029387950897216797, -0.011043955571949482, 0.007199960295110941, -0.017104024067521095, -0.04195438697934151, -0.026262275874614716, 0.03630451112985611, 0.005227965768426657, 0.03776606172323227, -0.02201908640563488, -0.0010041517671197653, -0.04523630812764168, -0.059139370918273926, -0.0644862949848175, 0.015399009920656681, -0.025212550535798073, -0.019024556502699852, -0.017832035198807716, 0.006744625512510538, -0.03217553347349167, 0.008798955008387566, 0.0009486530325375497, 0.022164763882756233, -0.018270377069711685, -0.04181808605790138, 0.010202296078205109, -0.006193638313561678, -0.006375516299158335, 0.05363587662577629, 0.044665198773145676, -0.029517684131860733, 0.00661319587379694, -0.017441347241401672, -0.014885569922626019, -0.0051930006593465805, 0.024361001327633858, -0.007738357875496149, 0.0026914728805422783, -0.020559541881084442, -0.007946631871163845, -0.001100352848879993, -0.014600161463022232, 0.00953282043337822, 0.0356236957013607, 0.005549198016524315, 0.010267196223139763, -0.022084437310695648, 0.03139015659689903, 0.03509777411818504, -0.012804098427295685, 0.0010261867428198457, 0.01075009349733591, 0.006418203469365835, 0.02895762026309967, -0.030429184436798096, 0.02635176107287407, -0.010430061258375645, 0.05410989373922348, -0.017515702173113823, -0.0364266000688076, -0.0187788438051939, -0.0176080409437418, 0.05000675469636917, -0.01245073415338993, -0.016693182289600372, -0.042804788798093796, 0.015871774405241013, -0.010793858207762241, 0.033488865941762924, -0.0025068060494959354, -0.02097441256046295, 0.02126813493669033, -0.030137933790683746, -0.0228559747338295, 0.04402463138103485, -0.07679387181997299, -0.029486970975995064, 0.05677664279937744, -0.036311887204647064, 0.0013955449685454369, -0.03169165924191475, -0.04475465416908264, -0.034162942320108414, -0.023844007402658463, -0.02332238294184208, -0.04995129629969597, 0.026380084455013275, 0.03977560997009277, 0.007169726304709911, -0.007671486586332321, -0.0006183250225149095, 0.012252301909029484, 0.06067579239606857, -0.0718347504734993, -0.03384022042155266, 0.016872955486178398, 0.010288091376423836, 0.031437117606401443, -0.017519468441605568, 0.0000731926629669033, -0.004825722426176071, -0.0076904562301933765, 0.022588901221752167, -0.011865764856338501, 0.025149308145046234, -0.010518718510866165, -0.019770430400967598, -0.0455901063978672, 0.02185850590467453, -0.015956085175275803, 0.052376676350831985, -0.015185389667749405, -0.010866312310099602, 0.023592939600348473, 0.049720775336027145, 0.03303605690598488, 0.00415622815489769, 0.03651832044124603, 0.017641311511397362, 0.0329216867685318, 0.001722006592899561, -0.021214794367551804, -0.006701076403260231, 0.05172779783606529, 0.07059680670499802, 0.043979011476039886, 0.015830550342798233, 0.012656974606215954, 0.04116168990731239, 0.003464651061221957, -0.0072199455462396145, 0.010866641066968441, 0.025481630116701126, -0.0197488721460104, -0.020483601838350296, -0.001401900895871222, -0.009187310002744198, -0.004865772556513548, -0.032230354845523834, -0.010844242759048939, -0.05796528607606888, -0.013824843801558018, -0.049810245633125305, -0.0377110056579113, 0.061997782438993454, -0.00931507907807827, 0.005695379339158535, -0.018940024077892303, -0.025637634098529816, 0.009942958131432533, 0.06129556894302368, -0.04136024788022041, -0.0003530952089931816, 0.017385073006153107, 0.032999277114868164, 0.000690421846229583, 0.028708769008517265, 0.017801107838749886, 0.03637753427028656, -0.00913767796009779, -0.028120504692196846, 0.006338205188512802, 0.02401140332221985, -0.032720327377319336, -0.01487763226032257, -0.05769061669707298, 0.036115534603595734, 0.02296680584549904, 0.003890305757522583, 0.06496074795722961, -0.02592904306948185, -0.013012145645916462, -0.047488484531641006, 0.017540059983730316, -0.014355487190186977, 0.01586301065981388, 0.040439434349536896, 0.011731857433915138, -0.034903477877378464, 0.030397599563002586, 0.008660323917865753, 0.03598034009337425, -0.03378710150718689, 0.06859911978244781, -0.004006263334304094, 0.04100695624947548, 0.017905481159687042, -0.06647362560033798, -0.04688969627022743, 0.031718701124191284, 0.008725184947252274, -0.0572223886847496, -0.03817151486873627, -0.050250355154275894, -0.024700568988919258, -0.036195483058691025, -0.02575037069618702, 0.007828705944120884, 0.018955418840050697, -0.018293490633368492, -0.05818447470664978, -0.007025770843029022, 0.031227098777890205, -0.06249171867966652, -0.01026292983442545, 0.020725199952721596, 0.000029139151592971757, -0.009860729798674583, -0.027182387188076973, -0.012605614960193634, -0.004334388766437769, 0.0032481371890753508, -0.03022605925798416, 0.018176037818193436, -0.04912044480443001, -0.021274294704198837, -0.049951355904340744, -0.04974634200334549, -0.041330914944410324, 0.03915634751319885, -0.02809220552444458, -0.05106014385819435, 0.02747345343232155, 0.04563887044787407, 0.029156731441617012, 0.04059014841914177, -0.02596138045191765, -0.00008026379509828985, 0.036462925374507904, 0.07885952293872833, 0.01852886937558651, 0.052562471479177475, 0.029883036389946938, 0.0037315567024052143, 0.03123144619166851, -0.055095374584198, 0.04399236664175987, -0.023212267085909843, -0.03640417009592056, -0.00528264045715332, 0.035706885159015656, -0.03460046648979187, -0.051583241671323776, 0.011196884326636791, 0.04027016460895538, -0.020763080567121506, -0.017070412635803223, -0.07056427747011185, -0.0029323548078536987, -0.05527036637067795, -0.004079726990312338, -0.048379700630903244, 0.03438127785921097, 0.0069959391839802265, -0.018304117023944855, 0.007815769873559475, -0.06239444389939308, 0.15057723224163055, 0.014185409061610699, 0.019086578860878944, 0.023311672732234, 0.002116553718224168, 0.04085003584623337, 0.04963892698287964, -0.003963526338338852, -0.023904651403427124, -0.05350247770547867, 0.047594256699085236, -0.025698265060782433, 0.025440165773034096, 0.014254565350711346, 0.022579925134778023, 0.044945377856492996, -0.045119885355234146, -0.0034359763376414776, -0.007989331148564816, -0.06773407757282257, -0.07021849602460861, 0.012316963635385036, -0.0005439041997306049, 0.03407970815896988, -0.008155359886586666, 0.015475641936063766, 0.014324748888611794, -0.014842532575130463, -0.01593952812254429, -0.06357389688491821, 0.04841895028948784, -0.012016511522233486, 0.0633288323879242, 0.013131414540112019, -0.016265885904431343, 0.02919202484190464, -0.023844869807362556, -0.016653914004564285, -0.023640772327780724, 0.015460987575352192, -0.021569080650806427, -0.03239189460873604, 0.030348654836416245, -0.03371001034975052, 0.03196784108877182, 0.019485071301460266, -0.0306521188467741, 0.028875110670924187, 0.023023447021842003, -0.026929279789328575, 0.049291908740997314, -0.0326651968061924, 0.030262600630521774, -0.030943699181079865, -0.02092931419610977, 0.018182840198278427, 0.041615817695856094, -0.018255263566970825, -0.014727083034813404, 0.037955015897750854, 0.012344425544142723, 0.0020241234451532364, -0.032981060445308685, 0.0009235378238372505, -0.05492674559354782, -0.014091062359511852, 0.006828217301517725, 0.04116901010274887, -0.0032438808120787144, -0.006719447672367096, -0.04509930685162544, -0.008096195757389069, 0.019079728052020073, -0.053768470883369446, 0.030194181948900223, 0.04950995370745659, -0.008345277048647404, 0.0265114214271307, 0.021936696022748947, -0.057988908141851425, 0.001390943769365549, -0.025487780570983887, -0.02239277772605419, 0.012258104048669338, 0.017644943669438362, 0.04102719947695732, -0.06278202682733536, -0.044597625732421875, -0.03288410231471062, 0.04784208908677101, 0.030535949394106865, 0.04148371145129204, -0.027929820120334625, -0.021222539246082306, -0.028711291030049324 ]
"...Like No Other Picture Since "Scarface" and "Little Caesar"!" The Killing is a crime thriller that was released in 1956. The film centers on a thief who is planning his next heist after getting out of prison. The current mark is a race track where the thieves will be able to make off with a huge sum of money. The thief enlists an interesting collection of people to help him with the robbery. This includes his wife, and also the boyfriend of his wife. He even decides to take a small dog with him. This of course complicates the robbery, but they decide to go forward with it anyway. The Killing is currently available to watch and stream, download, buy on demand at Amazon Prime, Amazon, Google Play, iTunes, YouTube VOD online.
[ 0.009692944586277008, 0.012085853144526482, -0.030322333797812462, 0.01887083612382412, -0.04988563805818558, -0.038446322083473206, -0.04594495892524719, 0.03755732253193855, 0.015303178690373898, 0.005150622688233852, 0.04016745463013649, 0.01509704440832138, 0.014416737481951714, -0.014098751358687878, -0.006994943134486675, -0.00412348797544837, 0.0005919868708588183, -0.03057209774851799, -0.007395419757813215, 0.0038628396578133106, -0.01041541900485754, 0.008968365378677845, -0.060516588389873505, -0.03018002398312092, 0.007061002776026726, 0.015938283875584602, 0.01863918825984001, -0.019931267946958542, 0.03267129510641098, 0.06018197536468506, -0.025382092222571373, -0.027901221066713333, 0.044193003326654434, -0.025862455368041992, -0.005253300070762634, -0.025192711502313614, 0.04200500622391701, -0.011945640668272972, -0.022775672376155853, -0.05229794606566429, 0.0003182972432114184, -0.0263147484511137, 0.0553566999733448, -0.019229615107178688, -0.024631930515170097, 0.002739239251241088, -0.002351254690438509, -0.03406824916601181, -0.00779375247657299, -0.030782775953412056, 0.020687716081738472, -0.021158896386623383, 0.06220526993274689, -0.024311408400535583, 0.013884308747947216, 0.03563261404633522, -0.01370084285736084, -0.00023064568813424557, -0.00877920538187027, 0.04468851536512375, 0.03041146509349346, -0.04570081830024719, 0.017761141061782837, -0.04482969269156456, 0.047391802072525024, 0.0011641171295195818, 0.011229580268263817, -0.025717489421367645, 0.02288382686674595, -0.004776302259415388, -0.002893118653446436, 0.008886785246431828, -0.0328085757791996, -0.010223687626421452, 0.01307056937366724, -0.007705367170274258, 0.011319569312036037, 0.012138213962316513, -0.024959515780210495, -0.0013923672959208488, 0.026489142328500748, 0.058443617075681686, 0.027483968064188957, 0.023381642997264862, -0.03932199627161026, -0.03990340605378151, -0.011557533405721188, 0.028076592832803726, 0.004408622160553932, 0.01583688333630562, 0.015153367072343826, 0.05111023783683777, -0.009809625335037708, -0.009268123656511307, 0.02753543294966221, 0.024349519982933998, -0.04541836678981781, 0.05301942676305771, 0.0073012132197618484, 0.01807709038257599, 0.003830122062936425, 0.03600999340415001, -0.01719239167869091, 0.03811269253492355, -0.04618991166353226, 0.005975121632218361, 0.01950894109904766, -0.026627281680703163, -0.028073308989405632, -0.023273129016160965, 0.0017232513055205345, -0.00844105239957571, 0.0407196469604969, -0.002159637399017811, -0.004815918859094381, 0.03329318389296532, -0.008231177926063538, 0.0547582171857357, -0.040183283388614655, 0.04598189890384674, 0.012724759988486767, 0.006648205686360598, 0.05195197835564613, -0.03962089866399765, 0.03127695247530937, -0.046357255429029465, -0.054012659937143326, 0.059368956834077835, 0.0001605976140126586, -0.027093345299363136, -0.006685902364552021, -0.05013461783528328, -0.00447124894708395, 0.00206947885453701, -0.03708108887076378, 0.0294486153870821, -0.010387918911874294, 0.023806625977158546, 0.028248781338334084, -0.045573730021715164, 0.031746312975883484, 0.008259417489171028, -0.017326567322015762, 0.06090017780661583, 0.017960747703909874, 0.05974613502621651, -0.0070137567818164825, 0.040759067982435226, -0.02917024865746498, 0.05638992041349411, -0.062385980039834976, 0.018784984946250916, -0.009314404800534248, 0.02978212758898735, -0.017715463414788246, -0.005756780505180359, -0.027543745934963226, -0.00044748926302418113, 0.0025498284958302975, 0.030827680602669716, -0.013070769608020782, -0.022275205701589584, -0.0005870063905604184, 0.04852253198623657, -0.015255829319357872, 0.052206285297870636, -0.03802511468529701, -0.030673189088702202, -0.021713607013225555, -0.019543873146176338, 0.022971443831920624, 0.014357201755046844, -0.009265076369047165, 0.01712033525109291, 0.035874783992767334, 0.03565150871872902, 0.04366975277662277, -0.012163129635155201, 0.059000611305236816, 0.041092678904533386, -0.00655644666403532, -0.02345644123852253, -0.004269788507372141, 0.07935648411512375, 0.01175825484097004, -0.029298532754182816, 0.008873846381902695, -0.034796588122844696, -0.06056106090545654, -0.021013448014855385, -0.048654377460479736, 0.0014035048661753535, -0.019453871995210648, 0.0040046581998467445, 0.03156880661845207, 0.01804189570248127, -0.008037825115025043, -0.04850136488676071, 0.014211258850991726, -0.025313645601272583, -0.010379081591963768, 0.03944655880331993, -0.01998909004032612, 0.014553474262356758, -0.011857886798679829, -0.013220652006566525, 0.032201286405324936, 0.04971082881093025, 0.009622158482670784, -0.013392924331128597, 0.01528627797961235, 0.016503339633345604, 0.020902998745441437, -0.004673850256949663, 0.0015625241212546825, 0.00215125922113657, -0.017493272200226784, 0.06196935102343559, -0.009194066748023033, -0.0010127178393304348, 0.006805417127907276, -0.006648531649261713, 0.02435433305799961, 0.050964754074811935, 0.02177426964044571, -0.02876102551817894, 0.010541433468461037, 0.05093948543071747, -0.008778092451393604, -0.014702403917908669, 0.0011306905653327703, 0.044133469462394714, 0.025357495993375778, 0.04806080088019371, 0.029414895921945572, 0.016512393951416016, 0.060865893959999084, 0.047800421714782715, -0.04432389512658119, 0.04115936532616615, -0.017183689400553703, -0.006858561187982559, 0.06036251410841942, 0.041812241077423096, -0.0012252583401277661, 0.01834063231945038, 0.02811533398926258, -0.007424302864819765, -0.007107445504516363, 0.017379269003868103, -0.007242065388709307, 0.03410142660140991, 0.026504486799240112, 0.054256755858659744, -0.018015669658780098, 0.029952332377433777, 0.05882764607667923, 0.03943157568573952, -0.003105967305600643, 0.0016045820666477084, -0.04130116477608681, 0.021968143060803413, 0.030089756473898888, 0.008670646697282791, 0.03362357243895531, 0.02135329321026802, -0.0033276965841650963, 0.006783006247133017, -0.04921405017375946, -0.0645892471075058, -0.03409391641616821, -0.056104876101017, -0.04902809485793114, -0.04725130647420883, -0.03855697065591812, 0.003048928687348962, 0.034590281546115875, -0.030949542298913002, 0.012819003313779831, -0.011215815320611, -0.0068894317373633385, -0.01346117164939642, -0.03667384013533592, 0.016146929934620857, 0.024391114711761475, 0.016101734712719917, -0.05168620124459267, 0.017026973888278008, 0.008309534750878811, 0.03243505209684372, -0.018819237127900124, -0.022592971101403236, -0.01729159988462925, 0.016610924154520035, 0.035978738218545914, -0.017954878509044647, 0.008008086122572422, -0.013531005010008812, -0.02419612556695938, -0.0589522123336792, -0.005855195689946413, -0.014337682165205479, -0.007323924917727709, 0.024244220927357674, -0.02774965390563011, 0.04628094658255577, 0.021166449412703514, -0.05185447633266449, 0.00909206923097372, 0.03658546134829521, -0.027130471542477608, 0.036605823785066605, 0.020092003047466278, 0.002523570554330945, -0.041133616119623184, 0.03976691514253616, 0.027188250795006752, 0.002266607014462352, -0.014226485043764114, -0.00253467308357358, -0.006868299096822739, -0.01751650869846344, 0.00720090651884675, 0.004050724674016237, -0.023854974657297134, 0.04230549931526184, 0.004312731791287661, -0.05601560324430466, 0.01946401409804821, -0.016848070546984673, -0.00010203336569247767, -0.04479612037539482, -0.06588421761989594, 0.0267491415143013, 0.029770253226161003, 0.012853419408202171, -0.02607773244380951, -0.02319917269051075, 0.0270319152623415, 0.0223801601678133, 0.04502790421247482, -0.037961214780807495, 0.03296517953276634, 0.014907727017998695, 0.00639964547008276, 0.02841957099735737, 0.012718508951365948, -0.0007142634131014347, -0.012890991754829884, 0.031654227524995804, 0.003553612157702446, 0.019194558262825012, 0.04372824355959892, 0.024469787254929543, 0.03162214532494545, 0.04728621989488602, -0.021030785515904427, 0.01624993421137333, 0.020664559677243233, -0.01588442362844944, 0.03409095108509064, 0.003047334495931864, 0.01662905141711235, -0.0028477744199335575, -0.025118792429566383, -0.05115307494997978, 0.0219164676964283, -0.028665482997894287, 0.04471755027770996, -0.05958450213074684, 0.08725327253341675, -0.00014087541785556823, -0.04003029689192772, 0.030345920473337173, -0.0501239150762558, 0.03917180746793747, 0.019263697788119316, -0.015245429240167141, 0.007389856036752462, -0.05837896838784218, 0.025124525651335716, -0.011311237700283527, 0.043787840753793716, 0.032436542212963104, -0.007888531312346458, 0.04948321357369423, -0.03448183089494705, -0.024978499859571457, 0.002640067832544446, 0.0004978599026799202, -0.01450776681303978, -0.039218928664922714, 0.0028461101464927197, -0.04602906107902527, -0.08195309340953827, -0.061692848801612854, 0.018771424889564514, 0.04741392284631729, 0.057590436190366745, -0.01897619105875492, 0.0022403502371162176, 0.004541321657598019, -0.00017249405209440738, 0.036374446004629135, -0.016071338206529617, -0.0032426256220787764, -0.04280472919344902, 0.053122248500585556, -0.006737405434250832, -0.020657245069742203, -0.009271946735680103, -0.02467888966202736, -0.004880660213530064, 0.04328547418117523, -0.010004268027842045, -0.022520335391163826, -0.042098518460989, 0.02399482950568199, -0.02267436310648918, -0.033130403608083725, -0.02040606178343296, -0.025668183341622353, 0.004961916711181402, 0.028484903275966644, 0.007969840429723263, -0.05568131059408188, -0.005118730943650007, -0.032995324581861496, 0.049608804285526276, 0.028186962008476257, 0.03405998274683952, -0.026626717299222946, -0.03852011263370514, -0.03356269374489784, -0.02587362565100193, 0.02979695424437523, 0.024423543363809586, 0.010301230475306511, 0.034295838326215744, -0.06428159028291702, 0.026380516588687897, 0.009790477342903614, 0.02048039436340332, 0.01831921935081482, -0.026584506034851074, 0.036627523601055145, -0.004997168201953173, 0.04317473620176315, -0.006356373429298401, -0.02059972658753395, 0.00868072360754013, -0.05097924545407295, -0.004590943455696106, 0.0076869698241353035, -0.03506222367286682, 0.023619547486305237, 0.01932734251022339, 0.00589085603132844, 0.03042835183441639, -0.005447399336844683, 0.018877945840358734, -0.034231752157211304, 0.02809574082493782, -0.04180551692843437, -0.0489279143512249, 0.05966460332274437, -0.01459147036075592, -0.013260884210467339, 0.0330810509622097, 0.028882639482617378, 0.007372968830168247, -0.021557562053203583, 0.03103005886077881, -0.07078148424625397, 0.026059474796056747, -0.05417875573039055, 0.01253112405538559, -0.025088254362344742, -0.010424463078379631, 0.002223372459411621, -0.04051882028579712, 0.028572577983140945, 0.021965691819787025, 0.0066365208476781845, -0.054969679564237595, -0.06885726004838943, -0.010362864471971989, -0.013094848021864891, -0.003613480133935809, -0.005317052826285362, 0.02757173590362072, 0.00888848677277565, -0.01271241158246994, -0.018731005489826202, -0.018944745883345604, 0.014441813342273235, 0.015696899965405464, 0.001906134537421167, 0.005791240371763706, 0.0035431350115686655, 0.019992031157016754, -0.02364053949713707, -0.011991335079073906, 0.01835487224161625, -0.02224465273320675, -0.014529555104672909, -0.05230170860886574, -0.009396737441420555, -0.012997995130717754, 0.040378257632255554, -0.01708969846367836, 0.014310721307992935, -0.04209665209054947, 0.026675963774323463, 0.03932776674628258, 0.006697593256831169, -0.02278870902955532, 0.00009399119153385982, 0.003372275037690997, 0.06652789562940598, 0.026216283440589905, -0.024447808042168617, -0.007666930556297302, 0.054926797747612, -0.019761133939027786, 0.014777173288166523, 0.01235032919794321, -0.021097609773278236, -0.08090861886739731, -0.06542131304740906, -0.003449600888416171, -0.04999091103672981, -0.014350375160574913, -0.00998260360211134, -0.016184885054826736, -0.007744027301669121, 0.014294412918388844, 0.003533007111400366, -0.014513193629682064, -0.0048569077625870705, -0.02029331773519516, -0.009621553122997284, 0.0012764845741912723, 0.0001824481296353042, -0.061735671013593674, -0.024320552125573158, 0.015636276453733444, 0.02527083270251751, 0.005079722963273525, 0.033797651529312134, -0.01232240628451109, 0.023881500586867332, 0.014380253851413727, -0.033531978726387024, -0.02811443619430065, -0.043345820158720016, 0.006012068595737219, -0.005962842609733343, -0.0009618087206035852, 0.0031021262984722853, -0.07016686350107193, 0.042111836373806, -0.02996811643242836, -0.0005400102818384767, -0.0053473603911697865, -0.03461265191435814, -0.019644347950816154, -0.00795341469347477, 0.043596625328063965, -0.018315816298127174, 0.025808129459619522, -0.04279923066496849, 0.040376193821430206, 0.057256605476140976, 0.004289875738322735, -0.03237377107143402, -0.0367051400244236, -0.027518564835190773, -0.06334575265645981, 0.058369819074869156, -0.021292641758918762, -0.03439725190401077, -0.06445314735174179, 0.007378114387392998, 0.035400569438934326, -0.010128410533070564, 0.05234497785568237, 0.06695418804883957, -0.015849925577640533, -0.008994480594992638, -0.014737547375261784, 0.01785883493721485, 0.04934031888842583, -0.012583735398948193, -0.011738407425582409, -0.017801988869905472, -0.04013146087527275, -0.004932348150759935, -0.008742207661271095, -0.06072991341352463, -0.056735627353191376, 0.003782516811043024, 0.0571969598531723, -0.008699651807546616, 0.051167964935302734, -0.042759839445352554, -0.06381318718194962, -0.05073888972401619, 0.07019814103841782, 0.0013004133943468332, 0.011126415804028511, 0.031990017741918564, 0.018725113943219185, -0.009771770797669888, 0.02147695980966091, 0.04382959008216858, -0.025520605966448784, -0.064120814204216, 0.07459665834903717, -0.03690045699477196, -0.04391767084598541, 0.04350507631897926, 0.045113299041986465, -0.05928105115890503, -0.03582533448934555, -0.006514998152852058, -0.025055037811398506, -0.001810703193768859, -0.008833592757582664, -0.004510924220085144, -0.038177672773599625, 0.014076264575123787, 0.009380144067108631, 0.030347377061843872, -0.00485197314992547, 0.029571479186415672, 0.02688894420862198, 0.015063786879181862, -0.030939070507884026, 0.0027259960770606995, -0.013077565468847752, 0.003278101794421673, -0.025808388367295265, -0.05357801541686058, -0.006741636898368597, 0.016797004267573357, -0.01899411343038082, 0.012078074738383293, -0.004253028891980648, 0.0008058652747422457, 0.009329798631370068, -0.03161013498902321, 0.0202901903539896, -0.014582520350813866, -0.011428585276007652, 0.004779750946909189, -0.0444607138633728, -0.05723922327160835, -0.0607106052339077, 0.03512614965438843, 0.006428297609090805, 0.02707594446837902, -0.08399803191423416, -0.01540154404938221, 0.046412717550992966, 0.009359274990856647, 0.014340430498123169, -0.0792815163731575, -0.04830141365528107, -0.046126026660203934, -0.027187205851078033, -0.0545959435403347, 0.021229496225714684, -0.020303988829255104, 0.010727464221417904, 0.025988329201936722, -0.04870527237653732, 0.0032972043845802546, 0.029295962303876877, 0.0015576510922983289, 0.002702937927097082, -0.06139250844717026, 0.04239211231470108, -0.02007284201681614, -0.05963509529829025, -0.028081679716706276, 0.009531810879707336, -0.015224914066493511, -0.010043786838650703, -0.0009685929981060326, 0.016035476699471474, -0.02350386045873165, 0.036367207765579224, 0.01965540647506714, 0.027738362550735474, -0.027678431943058968, -0.02048097550868988, -0.03856391832232475, 0.029148859903216362, -0.030014710500836372, 0.07903021574020386, 0.018069423735141754, -0.03718014061450958, 0.04481232538819313, 0.004449932370334864, -0.023210514336824417, 0.003983451519161463, 0.021112898364663124, -0.01993989758193493, -0.016146739944815636, -0.04972037300467491, -0.034848567098379135, -0.04364917427301407, -0.023873914033174515, 0.013291909359395504, -0.008262469433248043, 0.021860219538211823, 0.0012813356006518006, -0.0030904035083949566, -0.019231773912906647, 0.0531792975962162, -0.015287226997315884, 0.05765696242451668, 0.0057085719890892506, 0.007215783465653658, 0.03210547938942909, -0.0020497418008744717, 0.0147100193426013, 0.02614353410899639, 0.03712163493037224, -0.01464901678264141, -0.01457440759986639, 0.022477565333247185, 0.01083590742200613, 0.0451994314789772, -0.008882303722202778, -0.039359256625175476, -0.031222978606820107, -0.04530889540910721, -0.028043141588568687, 0.027177952229976654, 0.012316830456256866, -0.017438894137740135, 0.012878539972007275, -0.03459121659398079, -0.082633376121521, -0.020257730036973953, -0.06849661469459534, 0.010214600712060928, 0.03518715128302574, -0.0033827978186309338, 0.031154558062553406, 0.006451301276683807, -0.05088154599070549, 0.008605924434959888, 0.004485988058149815, -0.016286686062812805, 0.013929384760558605, 0.03932701051235199, -0.01336594671010971, 0.04960339143872261, -0.009615465067327023, -0.0017559106927365065, 0.001759167993441224, 0.03303641453385353, -0.045086201280355453, -0.04221772029995918, -0.0027567455545067787, 0.059643350541591644, 0.018902812153100967, -0.00465718237683177, -0.03223432973027229, 0.01598711870610714, 0.003280834760516882, 0.007914586924016476, 0.014810703694820404, 0.01223770622164011, -0.0025907522067427635, 0.019662151113152504, 0.03812915459275246, -0.011849549598991871, -0.02444230020046234, 0.029165558516979218, -0.0077842106111347675, -0.015145491808652878, -0.01264769583940506, 0.017543917521834373, 0.0570940263569355, 0.0046937474980950356, 0.05194888636469841, 0.014957346022129059, 0.028083449229598045, -0.03761374205350876, 0.038626778870821, -0.04716901481151581, 0.05071749538183212, 0.06532582640647888, 0.053460024297237396, 0.004682193510234356, 0.01935090310871601, 0.05473453924059868, 0.015277117490768433, 0.020335089415311813, 0.009063743986189365, 0.03699710965156555, -0.025899140164256096, 0.012143023312091827, -0.026402054354548454, -0.01932373456656933, -0.02124294638633728, -0.018912529572844505, -0.013459318317472935, -0.026381831616163254, -0.019066989421844482, 0.0073551759123802185, -0.004869682248681784, 0.057407401502132416, -0.023518970236182213, 0.00954453181475401, -0.027038756757974625, -0.006421668455004692, -0.013370228931307793, 0.06498806923627853, -0.010596517473459244, 0.021731697022914886, 0.017801618203520775, 0.007980159483850002, -0.0068885209038853645, 0.022160904482007027, 0.04671432450413704, 0.00147999229375273, -0.02633000910282135, 0.00970854889601469, 0.02272481843829155, -0.012273823842406273, -0.007426760159432888, 0.004071469884365797, -0.03934568539261818, 0.015467384830117226, -0.005086272489279509, -0.015581230632960796, 0.0423944927752018, -0.038346368819475174, -0.026327606290578842, -0.040551986545324326, 0.04864472523331642, -0.007249860092997551, -0.00989367626607418, 0.04056021571159363, -0.010500076226890087, -0.02732200175523758, 0.033146921545267105, -0.00016259844414889812, 0.029887448996305466, -0.021673036739230156, 0.05274221673607826, -0.01119641400873661, 0.030462676659226418, 0.042288899421691895, -0.03360583633184433, -0.009318671189248562, 0.004382333718240261, -0.004339877981692553, -0.05704111233353615, 0.009101827628910542, -0.04680239409208298, -0.007935071364045143, -0.009886126033961773, -0.05365157127380371, -0.013748222962021828, 0.03472888842225075, -0.020877597853541374, -0.012726440094411373, 0.007179771084338427, 0.0200493186712265, -0.016434000805020332, 0.005832823924720287, 0.03709248825907707, 0.0676581934094429, -0.006283424329012632, -0.01026240736246109, -0.04228242114186287, -0.0436159111559391, 0.018065093085169792, -0.05078614875674248, 0.028167592361569405, -0.0033838204108178616, -0.016057521104812622, -0.023915646597743034, -0.046533528715372086, -0.021200060844421387, -0.005448449403047562, -0.02875312604010105, -0.041263170540332794, 0.04643126204609871, 0.02471211366355419, 0.0048113027587533, 0.01819133572280407, -0.01739979162812233, -0.012891358695924282, 0.042228877544403076, 0.051808297634124756, 0.0068340240977704525, 0.0424174964427948, 0.0498192273080349, -0.01739371009171009, 0.02081502228975296, -0.009316065348684788, 0.041822973638772964, -0.011733337305486202, -0.002232366008684039, -0.02881578356027603, 0.02994449995458126, -0.012468453496694565, -0.04110599681735039, -0.0010235117515549064, 0.027132727205753326, 0.020178524777293205, 0.0023019707296043634, -0.10724665969610214, -0.010585485026240349, -0.0469881072640419, -0.01448221504688263, -0.03750864788889885, 0.0315108560025692, -0.03033950924873352, -0.004209299571812153, -0.015482538379728794, -0.04341043904423714, 0.13745565712451935, 0.030069872736930847, 0.047969356179237366, 0.03171820938587189, -0.00946147833019495, 0.026283778250217438, -0.001101635629311204, -0.008449356071650982, 0.020656557753682137, -0.03021933138370514, 0.03455764427781105, -0.004162230063229799, 0.02043086662888527, 0.01239787321537733, 0.022990165278315544, 0.0754673182964325, -0.027935253456234932, 0.01450064592063427, 0.008240889757871628, -0.0517694428563118, -0.06068423017859459, 0.035962097346782684, 0.022138962522149086, 0.0037782546132802963, -0.03271886333823204, 0.03168381750583649, 0.03660795837640762, -0.03747586905956268, -0.020390208810567856, 0.013096457347273827, 0.0002682107442524284, -0.023065870627760887, 0.016874123364686966, -0.05003325268626213, -0.05749153345823288, 0.06159568578004837, 0.010672352276742458, -0.003813444171100855, 0.023195110261440277, 0.0371936596930027, -0.03279536962509155, 0.012512345798313618, 0.016538824886083603, -0.02413552813231945, -0.0002589297655504197, 0.02818848192691803, -0.03808925673365593, 0.01992945745587349, 0.04363524913787842, -0.03765193000435829, 0.0404718779027462, -0.03167249262332916, 0.03366831690073013, -0.022110937163233757, -0.009777340106666088, 0.024903880432248116, 0.00011389985593268648, 0.01758645847439766, -0.0027649221010506153, 0.0035042711533606052, 0.06794705986976624, -0.0027559404261410236, -0.00919155403971672, -0.019375264644622803, 0.0030938435811549425, -0.014757154509425163, 0.024798935279250145, 0.02573377639055252, -0.04921509325504303, -0.03535531088709831, -0.0297646913677454, -0.0017241465393453836, 0.003546168329194188, -0.010320397093892097, 0.008941750042140484, 0.03968639671802521, -0.02588469535112381, 0.030650103464722633, 0.010516218841075897, -0.0066411965526640415, -0.027990231290459633, -0.06965257227420807, -0.0230025015771389, -0.003477734513580799, 0.02030395343899727, 0.014513897709548473, -0.011293372139334679, -0.051694273948669434, -0.020709922537207603, 0.041695572435855865, 0.015721777454018593, -0.017495982348918915, -0.0058318329975008965, -0.008387207984924316, 0.0020635537803173065 ]
Meet the Candidates: Series of Mayoral Forums Held at CALS Who: Central Arkansas Library System (CALS), KUAR public radio, the League of Women Voters of Pulaski County, and the American Association of University Women, Little Rock What: A group of community, civic, and nonprofit organizations will sponsor a series of Little Rock mayoral candidate forums designed to encourage civic engagement and educate voters on pertinent city issues, including economics, crime, infrastructure, and education. The forums will be moderated by a neutral party and questions will be submitted by the sponsoring organizations and from audience members. The forums are free and open the public. Where and When: The forums will be hosted at Little Rock area CALS locations from 6:30 p.m. to 7:30 p.m. View Forum Schedule » For more information, please contact Carol Young or Tameka Lee. Devoted to the Curious CALS and Arkansas Symphony Call for Spoken Word Submissions
[ 0.03110511414706707, 0.004901345819234848, -0.00416880939155817, 0.001703930669464171, -0.011184634640812874, 0.0179600790143013, -0.012818359769880772, 0.028075814247131348, -0.001261413679458201, 0.026103094220161438, 0.03393588587641716, -0.0005176347331143916, 0.006454886868596077, -0.03708187863230705, -0.03246437758207321, 0.0014861595118418336, -0.027455488219857216, -0.01677982322871685, 0.0058739567175507545, -0.01182007696479559, -0.01182040199637413, 0.024571916088461876, -0.049230609089136124, -0.0018940189620479941, 0.00442316010594368, 0.013260920532047749, 0.00466941250488162, -0.009106862358748913, 0.03934197500348091, 0.054961152374744415, -0.016688939183950424, -0.0632796660065651, 0.021438216790556908, -0.05018902197480202, -0.03796733170747757, -0.021689366549253464, 0.045452140271663666, -0.039272207766771317, -0.029645612463355064, -0.04072464630007744, 0.0028296064119786024, 0.008535703644156456, -0.007915535010397434, -0.043362900614738464, -0.013606080785393715, 0.02311347797513008, -0.015201468020677567, -0.031660035252571106, 0.03761241212487221, -0.06224402040243149, 0.0008177930139936507, -0.000930667098145932, 0.010412533767521381, 0.0009962585754692554, 0.023961933329701424, -0.009624353609979153, -0.0007856728625483811, -0.04026418551802635, -0.008846473880112171, 0.0055780839174985886, 0.020147625356912613, 0.019093932583928108, -0.004117950331419706, -0.04971577972173691, 0.030094601213932037, 0.008321475237607956, -0.024103518575429916, -0.013712438754737377, 0.01690480299293995, -0.026015030220150948, -0.006236033048480749, 0.01353508047759533, -0.019409695640206337, -0.05664351209998131, 0.00723491283133626, -0.016705475747585297, 0.0051748803816735744, -0.004476080648601055, -0.008403890766203403, 0.05190709978342056, 0.012724099680781364, 0.06823902577161789, 0.02108255960047245, 0.015642326325178146, -0.03108059987425804, -0.029741650447249413, -0.0013369207736104727, 0.0016899273032322526, 0.01168578676879406, 0.0026114247739315033, 0.01570577546954155, 0.05708044394850731, -0.0012417370453476906, -0.008477004244923592, 0.06376685202121735, 0.02424471452832222, -0.03681947663426399, 0.02151990495622158, 0.027128709480166435, 0.006817146670073271, -0.000937185250222683, 0.01384261716157198, -0.005288616754114628, 0.054389629513025284, -0.0450366735458374, -0.01708332635462284, -0.00439862348139286, -0.004395848140120506, 0.019495084881782532, -0.04166976362466812, -0.041473060846328735, -0.02153448760509491, 0.047847095876932144, -0.002452228683978319, -0.030241014435887337, 0.056456610560417175, 0.010915844701230526, 0.04749516770243645, -0.06256032735109329, 0.003915383480489254, -0.007335073780268431, 0.009907852858304977, 0.028877124190330505, -0.033819422125816345, 0.03613949567079544, -0.02306676283478737, -0.046231407672166824, 0.07518516480922699, -0.04462265595793724, -0.02274831011891365, -0.0028509339317679405, -0.0417829304933548, 0.0285673588514328, -0.015764115378260612, 0.0024700139183551073, 0.045748066157102585, -0.006537178996950388, 0.052827388048172, 0.0388205461204052, -0.026330947875976562, 0.050666652619838715, 0.018111776560544968, 0.021773885935544968, 0.06894084066152573, 0.023326048627495766, 0.053503844887018204, 0.004242390394210815, -0.010150570422410965, -0.020699532702565193, 0.04465672746300697, -0.034510307013988495, 0.023836027830839157, 0.004851627629250288, 0.03709074482321739, -0.005271853879094124, 0.004765757825225592, 0.007467510644346476, -0.012607225216925144, 0.02734486013650894, 0.06730955839157104, -0.02760191448032856, 0.016585737466812134, -0.02820563316345215, 0.016366083174943924, -0.006183754187077284, 0.007373718079179525, -0.03227178379893303, 0.012938860803842545, 0.022516608238220215, -0.06491439789533615, -0.0027081083972007036, 0.00007514443132095039, -0.008874482475221157, 0.04582221433520317, -0.0032913859467953444, 0.009358948096632957, 0.02144622430205345, -0.008236553519964218, 0.02892264351248741, 0.04203891381621361, -0.022574685513973236, -0.005709910299628973, -0.029673943296074867, 0.08622591942548752, 0.03365153446793556, -0.0041409642435610294, 0.011638120748102665, -0.015682395547628403, -0.03902759402990341, -0.026553047820925713, 0.00832375604659319, 0.032748181372880936, -0.009445928037166595, 0.019868122413754463, 0.0265043918043375, 0.0089985067024827, -0.008128373883664608, 0.0016020217444747686, -0.0069953203201293945, -0.056938283145427704, -0.019769741222262383, 0.04739997535943985, -0.02145485393702984, 0.031836528331041336, 0.015757400542497635, -0.009905656799674034, 0.02073320560157299, 0.04841359704732895, -0.03869350627064705, -0.016003025695681572, 0.04249906539916992, 0.011196891777217388, -0.026163047179579735, -0.009815678931772709, 0.018547849729657173, -0.026705190539360046, -0.027487173676490784, 0.034216828644275665, -0.006599463056772947, -0.019620776176452637, 0.0016378175932914019, 0.011151241138577461, 0.032220061868429184, 0.04853549972176552, -0.008210687898099422, 0.010658816434442997, 0.022935763001441956, 0.042569052428007126, -0.026912616565823555, -0.03058086708188057, 0.016809577122330666, 0.026053300127387047, 0.017812484875321388, 0.04277442768216133, 0.03385092318058014, 0.024751795455813408, 0.08385064452886581, 0.05123027041554451, 0.001573489629663527, 0.032524723559617996, -0.007534408941864967, 0.003759169951081276, 0.07012521475553513, 0.04288747161626816, -0.005816981196403503, 0.01160656288266182, -0.021723000332713127, -0.01562640629708767, -0.03996484354138374, 0.00950042437762022, 0.003259461373090744, 0.03826235234737396, 0.010141562670469284, 0.050017114728689194, -0.04504609853029251, -0.003784673986956477, 0.029948296025395393, 0.04598122835159302, -0.0362439900636673, -0.014937162399291992, 0.008073000237345695, 0.01025900337845087, 0.01096294540911913, 0.0069312541745603085, 0.01688997633755207, 0.03969232738018036, -0.007003124337643385, 0.04919850826263428, -0.023710275068879128, -0.042937178164720535, -0.04642093554139137, -0.03635617345571518, -0.04772331193089485, -0.018584875389933586, -0.03496719151735306, -0.01824176125228405, 0.07182255387306213, -0.0631011351943016, 0.021041300147771835, -0.020231347531080246, -0.024786466732621193, -0.026401063427329063, -0.02128220535814762, 0.023357555270195007, 0.015131739899516106, 0.03002791665494442, -0.05118795856833458, 0.04097822681069374, 0.018562067300081253, -0.0067460136488080025, -0.03015129826962948, 0.015393571928143501, -0.0005980017594993114, -0.020259736105799675, 0.04480563849210739, -0.01967558264732361, 0.0016877278685569763, 0.02686639502644539, -0.02967717871069908, -0.07212807983160019, 0.00345110846683383, 0.02915039099752903, 0.010620301589369774, 0.004422295838594437, -0.043470609933137894, 0.019801994785666466, 0.01705712452530861, -0.032480500638484955, 0.02382320910692215, 0.039693683385849, -0.02051149494946003, 0.04460178688168526, 0.022317320108413696, 0.004635845776647329, -0.052601080387830734, 0.06372871994972229, 0.04497145488858223, 0.000668679247610271, -0.018438898026943207, -0.014666955918073654, -0.028032198548316956, -0.010915292426943779, 0.024692494422197342, -0.013163111172616482, -0.023573337122797966, 0.033022720366716385, 0.028916724026203156, -0.0647222027182579, 0.015940457582473755, -0.07096496224403381, -0.04159833490848541, -0.0363825224339962, -0.027922702953219414, 0.012107235379517078, 0.05265389382839203, 0.03984661027789116, 0.030972536653280258, -0.013091589324176311, -0.014757756143808365, 0.006819827016443014, 0.05434495583176613, -0.012650016695261002, 0.026095649227499962, 0.050196629017591476, 0.011835746467113495, -0.0014550273772329092, -0.013053803704679012, -0.026732206344604492, -0.016162484884262085, -0.0034426352940499783, -0.0016755609540268779, 0.012509974651038647, 0.022406145930290222, 0.01966952346265316, 0.014410343021154404, 0.059847332537174225, -0.038404274731874466, -0.0005010479362681508, 0.01669960282742977, 0.004831532947719097, -0.0022060892079025507, 0.02576438896358013, 0.0358734130859375, -0.01344984583556652, -0.02506759949028492, -0.04329515993595123, 0.02300146222114563, 0.0010973653988912702, 0.08770566433668137, -0.06978588551282883, 0.04737643152475357, -0.009579380042850971, -0.024009540677070618, 0.03415997326374054, -0.05968266353011131, -0.009004147723317146, 0.03222145885229111, -0.00045499776024371386, 0.07704715430736542, -0.04155678674578667, 0.006716213654726744, -0.003651486709713936, 0.03432700037956238, 0.02303846925497055, 0.020171910524368286, 0.013109560124576092, -0.00674119358882308, -0.028919221833348274, -0.011287112720310688, -0.03076975978910923, -0.004557691048830748, -0.04652978852391243, -0.03079979494214058, -0.018102208152413368, -0.03392256796360016, -0.047902025282382965, 0.021978365257382393, 0.016130875796079636, 0.041916366666555405, -0.01269453577697277, 0.031063593924045563, 0.008823610842227936, 0.048346344381570816, 0.019252436235547066, -0.03691640868782997, 0.023243684321641922, -0.04672727361321449, 0.01940883696079254, 0.006096925586462021, -0.03936855122447014, -0.0014777431497350335, 0.002173748565837741, -0.016862839460372925, 0.03820127248764038, 0.023566992953419685, -0.0448937863111496, -0.06228281185030937, 0.03252490609884262, -0.00842119287699461, 0.026250304654240608, -0.04355527460575104, -0.015377706848084927, -0.019571993499994278, 0.025280654430389404, 0.013506711460649967, -0.01966920681297779, 0.04571398347616196, -0.021395092830061913, 0.06490854173898697, 0.045201342552900314, -0.03874358907341957, -0.04043061286211014, -0.030345935374498367, -0.05116971954703331, -0.02000311389565468, 0.021572893485426903, 0.04101833701133728, 0.0036801027599722147, 0.007734436541795731, -0.05788315460085869, 0.04425898939371109, 0.02405417338013649, 0.003912251442670822, -0.013004796579480171, -0.0007588160806335509, -0.01397247239947319, -0.006812174338847399, 0.028255240991711617, 0.00003255401679780334, -0.025134846568107605, 0.000777475128415972, -0.046370044350624084, 0.01487935334444046, 0.0050613731145858765, -0.030076198279857635, 0.004731796216219664, 0.003991567064076662, 0.01784629188477993, 0.04411989077925682, -0.012804069556295872, -0.0033040388952940702, -0.006724951323121786, 0.013949481770396233, -0.05455832928419113, -0.017518261447548866, 0.041544221341609955, -0.033524952828884125, -0.008842051029205322, 0.013603807426989079, 0.05433376878499985, -0.02096899226307869, 0.0314297117292881, 0.020644009113311768, -0.062421899288892746, 0.020960424095392227, -0.0000074668728302640375, -0.005978010594844818, -0.013105588033795357, -0.007626337464898825, -0.000613897165749222, 0.02025623619556427, 0.04760349169373512, -0.026847820729017258, -0.008516674861311913, -0.04794875904917717, -0.07555917650461197, 0.004192401189357042, -0.008112569339573383, -0.002566396724432707, 0.0021310176234692335, 0.0068849800154566765, -0.008031835779547691, -0.017540844157338142, -0.036852072924375534, 0.0471317395567894, 0.01690421812236309, -0.006063729990273714, 0.01595626212656498, 0.027417892590165138, 0.008811934851109982, 0.017449481412768364, -0.0010288230841979384, -0.04282341152429581, 0.00924020353704691, -0.02764689363539219, -0.0474056713283062, -0.03872280567884445, 0.0029345175717025995, -0.038208190351724625, -0.01893412135541439, -0.012513617984950542, 0.0017821249784901738, 0.0049440632574260235, 0.035450469702482224, 0.020013706758618355, 0.01120032463222742, 0.023248249664902687, 0.037358686327934265, -0.03664116561412811, 0.033063195645809174, 0.028852203860878944, -0.04032297804951668, -0.05473984777927399, 0.02114015258848667, -0.02720978483557701, 0.046041879802942276, 0.027269914746284485, -0.004986349027603865, -0.0023030047304928303, -0.0437140129506588, -0.0035765166394412518, -0.04567395895719528, -0.034143801778554916, -0.06644238531589508, -0.011043090373277664, 0.010391230694949627, 0.028070133179426193, 0.015487833879888058, -0.00021532538812607527, 0.007113830652087927, -0.03136803209781647, 0.010209388099610806, -0.02906784415245056, -0.03322101756930351, -0.03957638517022133, -0.028523452579975128, -0.010920649394392967, 0.05981416255235672, 0.02725783921778202, 0.017080971971154213, -0.011849667876958847, 0.023366376757621765, 0.007380044553428888, -0.03737077862024307, -0.0395890437066555, -0.03367128223180771, -0.010351348668336868, 0.015421333722770214, 0.01310459990054369, 0.006227847188711166, -0.03605808690190315, 0.05296581983566284, -0.021230721846222878, 0.00009557120210956782, -0.035242605954408646, -0.023094436153769493, -0.015182558447122574, -0.024048419669270515, 0.05400095134973526, -0.03297938406467438, 0.020846378058195114, -0.011712837032973766, 0.061884284019470215, 0.016379136592149734, -0.016486909240484238, -0.050063345581293106, -0.03629039227962494, -0.03109380230307579, -0.029177017509937286, 0.027223000302910805, -0.0299812164157629, -0.020404448732733727, -0.07267898321151733, -0.024642078205943108, 0.03933039307594299, -0.019860653206706047, 0.04732193797826767, 0.04658474028110504, -0.02676856517791748, -0.023220516741275787, -0.06674545258283615, 0.03696679696440697, 0.028844282031059265, 0.010086490772664547, -0.012538247741758823, -0.016727056354284286, -0.017666243016719818, -0.006248297169804573, -0.04362000524997711, -0.04287060350179672, -0.030933868139982224, 0.018998606130480766, 0.0939883217215538, -0.022746492177248, 0.025890473276376724, 0.017540697008371353, -0.06109487637877464, -0.06111077219247818, 0.051128238439559937, 0.0047174789942801, 0.024595974013209343, 0.03694547712802887, -0.007611381821334362, -0.032427553087472916, 0.030628342181444168, -0.0038125445134937763, -0.010332216508686543, -0.036988433450460434, 0.07130411267280579, -0.03533567115664482, -0.05246637761592865, 0.02978399582207203, 0.08759425580501556, -0.04652534797787666, -0.039171088486909866, -0.005572406575083733, -0.0033738280180841684, -0.014313737861812115, -0.01825845055282116, 0.031081683933734894, 0.011966010555624962, -0.0468144565820694, -0.005671315360814333, 0.012432045303285122, -0.025861792266368866, 0.01915125735104084, 0.012393211014568806, 0.03097098134458065, -0.041946426033973694, 0.025236835703253746, 0.044957153499126434, 0.014039905741810799, -0.020327281206846237, -0.026744190603494644, 0.00004669054033001885, 0.0030557606369256973, -0.007847980596125126, 0.04637616500258446, -0.05423620343208313, -0.008788444101810455, 0.00847803894430399, -0.010198097676038742, 0.061132773756980896, -0.02675042673945427, -0.013002654537558556, 0.027737166732549667, -0.04228901490569115, -0.039833176881074905, -0.026201771572232246, 0.013363908976316452, 0.012307249009609222, 0.06298183649778366, -0.04760844260454178, 0.02835230901837349, 0.03544257581233978, 0.011097356677055359, 0.039153803139925, -0.03605181351304054, -0.024457182735204697, -0.06329284608364105, -0.050141122192144394, -0.029899321496486664, -0.0029541573021560907, 0.006020521745085716, 0.045877568423748016, 0.02381431870162487, -0.022199522703886032, -0.004883090499788523, 0.0005994965322315693, -0.02550257183611393, 0.01079501397907734, -0.023726917803287506, 0.005326306447386742, -0.05503886565566063, -0.030595863237977028, -0.04426894709467888, -0.013947337865829468, -0.016167744994163513, -0.007103202398866415, -0.028521962463855743, 0.013137631118297577, -0.0011187979253008962, 0.04504896327853203, 0.023070601746439934, 0.0049921064637601376, -0.030652809888124466, -0.027047686278820038, 0.006397307850420475, 0.021107813343405724, -0.012893088161945343, 0.010357889346778393, 0.017286604270339012, 0.007655799854546785, 0.057296931743621826, -0.020715365186333656, -0.03135840594768524, -0.010989345610141754, 0.008129142224788666, 0.008470351807773113, -0.0038903099484741688, -0.032531533390283585, -0.05612728372216225, -0.020253555849194527, -0.06260979920625687, 0.01658674143254757, -0.04500558599829674, -0.012246955186128616, -0.0014064532006159425, 0.01692628301680088, 0.01864231936633587, 0.03157130256295204, 0.02514675445854664, 0.022143229842185974, 0.0038401407655328512, 0.0231791902333498, 0.012896589003503323, -0.0066275279968976974, 0.02824518270790577, 0.013319849967956543, 0.023911848664283752, -0.0019444433273747563, 0.012708497233688831, 0.005346932448446751, -0.040422700345516205, 0.038115937262773514, -0.006429160013794899, -0.03247470408678055, -0.05768539011478424, -0.007960837334394455, -0.009682108648121357, 0.031377606093883514, 0.016047807410359383, -0.007456290069967508, 0.03413121774792671, -0.04810056835412979, -0.04376925528049469, 0.01703881472349167, -0.05350172892212868, -0.04204443097114563, 0.0309612937271595, -0.015778757631778717, -0.03218793496489525, -0.008715307340025902, -0.04077364504337311, -0.0012701856903731823, -0.02934783697128296, -0.01476729940623045, -0.031166790053248405, 0.019818751141428947, -0.02029714547097683, 0.0184505395591259, -0.02795994095504284, 0.003058143425732851, -0.012943021953105927, 0.03746176138520241, -0.055532172322273254, -0.04154018312692642, 0.04731001332402229, 0.040437810122966766, 0.02978341467678547, -0.0076363529078662395, -0.004661849234253168, 0.002338038058951497, -0.020602215081453323, 0.026974746957421303, 0.0012002327712252736, 0.011487608775496483, -0.018721263855695724, -0.007767324801534414, 0.014426888898015022, 0.020209573209285736, -0.038307398557662964, 0.05253005772829056, -0.01848193071782589, -0.024622909724712372, -0.013700076378881931, 0.039893679320812225, 0.02694823034107685, -0.04871320724487305, 0.03594616428017616, 0.02117258682847023, 0.029377134516835213, 0.013995304703712463, 0.027248630300164223, -0.00838395580649376, 0.06264976412057877, 0.03601153567433357, 0.04490957781672478, 0.0038320738822221756, 0.021762559190392494, 0.044823057949543, -0.01338423416018486, -0.0073161800391972065, 0.0164959654211998, 0.032383304089307785, -0.011688504368066788, -0.013226485811173916, -0.0524744987487793, 0.011645517311990261, 0.03744912147521973, -0.02167370356619358, 0.0018903579330071807, -0.03553842008113861, -0.01628517545759678, -0.026428738608956337, -0.025539914146065712, 0.05543697997927666, -0.012064111419022083, -0.01772090047597885, -0.024214059114456177, -0.0255424864590168, -0.02512134052813053, 0.05689183622598648, 0.011647912673652172, -0.023965489119291306, 0.04259052127599716, 0.019923046231269836, 0.007365509867668152, 0.04759784787893295, -0.0022054496221244335, 0.021916138008236885, -0.029167180880904198, 0.03607984632253647, 0.01177822146564722, 0.004547102842479944, -0.04095431789755821, 0.003524593310430646, -0.010832514613866806, 0.04250320419669151, -0.010299279354512691, -0.017135437577962875, 0.02647292986512184, -0.02886534482240677, -0.0395832434296608, -0.06019625812768936, 0.04676032066345215, -0.04934769496321678, -0.0273228008300066, 0.029029730707406998, -0.007159540429711342, -0.005086009856313467, 0.057320017367601395, 0.0045361812226474285, 0.031681083142757416, 0.010068893432617188, 0.04560112580657005, 0.028186410665512085, 0.030254803597927094, 0.05315008759498596, -0.032306019216775894, 0.0022582882083952427, 0.04593929275870323, 0.004790975712239742, -0.04266413301229477, -0.04209370166063309, -0.03695015609264374, -0.0021548133809119463, -0.027533747255802155, -0.012337927706539631, 0.009965682402253151, 0.03520334139466286, -0.0021676821634173393, -0.023459166288375854, 0.012689855881035328, 0.012168636545538902, -0.057103291153907776, -0.00679947342723608, 0.02264019288122654, 0.018998948857188225, -0.027408646419644356, -0.017385154962539673, 0.007482677232474089, -0.026820268481969833, 0.013930979184806347, -0.015716996043920517, 0.025237353518605232, -0.021761558949947357, -0.040053512901067734, -0.037565093487501144, -0.04531404748558998, -0.014391542412340641, -0.0021150202956050634, -0.026148103177547455, -0.03833134472370148, 0.011398576200008392, 0.04818204417824745, 0.019503621384501457, 0.001024725497700274, -0.016839712858200073, -0.008594677783548832, 0.03302965313196182, 0.05567226558923721, -0.006340952590107918, 0.01294642873108387, 0.04597215726971626, -0.010321958921849728, 0.022013681009411812, -0.009710620157420635, 0.023026878014206886, -0.02119835652410984, -0.03613264858722687, -0.042485129088163376, 0.04826311394572258, -0.033476658165454865, -0.0553882010281086, -0.00423869164660573, 0.011798296123743057, 0.029553314670920372, -0.025938307866454124, -0.05494315177202225, -0.008812499232590199, -0.041011638939380646, -0.009789159521460533, -0.0521523617208004, 0.02097657322883606, 0.00810990110039711, -0.0028130775317549706, -0.006855054758489132, -0.07055814564228058, 0.15618957579135895, 0.03995879739522934, 0.043371859937906265, 0.0018365519354119897, 0.0064640166237950325, 0.038338977843523026, 0.048931095749139786, 0.015197270549833775, 0.02894778549671173, -0.060612477362155914, 0.02682359144091606, 0.0041914209723472595, 0.03559720516204834, 0.014494423754513264, 0.0067525296472013, 0.06656205654144287, -0.03075854294002056, -0.0028076216112822294, 0.02938081882894039, -0.02171272411942482, -0.034693311899900436, 0.009461706504225731, -0.024469565600156784, 0.036061786115169525, 0.009705199860036373, 0.03205136954784393, 0.005497470963746309, -0.032556530088186264, 0.018101273104548454, -0.007985514588654041, 0.016033627092838287, -0.023753032088279724, 0.0254336167126894, -0.01004294864833355, -0.05118346959352493, 0.049465008080005646, -0.00892170611768961, -0.04306352138519287, 0.0019648561719805002, 0.053975190967321396, -0.002951439470052719, 0.006981262471526861, 0.0344293937087059, -0.019039014354348183, 0.019888166338205338, 0.04901339113712311, -0.017665335908532143, -0.01584431901574135, 0.032120730727910995, -0.005851798225194216, 0.06421507149934769, -0.031478144228458405, 0.03044561669230461, 0.009111335501074791, -0.02845921367406845, 0.00791238434612751, 0.024666711688041687, -0.06917621195316315, -0.0331636443734169, 0.01437586173415184, 0.028569776564836502, 0.004323383327573538, -0.030859727412462234, 0.014843154698610306, -0.06355680525302887, -0.02386103942990303, 0.030355866998434067, -0.03792367875576019, -0.02426331304013729, -0.0054711815901100636, -0.01706087589263916, -0.0011819357750937343, 0.0035350897815078497, -0.04814630001783371, 0.03321394696831703, 0.03615584969520569, -0.04184111952781677, 0.03894073888659477, -0.014744131825864315, -0.004292003344744444, 0.010375353507697582, -0.041259996592998505, -0.02343744784593582, -0.010856802575290203, 0.029054509475827217, 0.03205736353993416, -0.05474459379911423, -0.018625035881996155, -0.004288385156542063, 0.06126963347196579, 0.03722090274095535, -0.017395872622728348, -0.004625820089131594, -0.019739316776394844, -0.03778233379125595 ]
Hash And Manga On Love In Sri Lanka Posted by Pooja Nair Posted on May 2 2018 Leave a comment By being there for each other & loving each other the way we do, I don't think we have to prove it to anyone. We are stronger together and people see that. [Editor's Note: This piece is a part of the ongoing series on the Lesbian Day of Visibility for the month of April 2018. The series is an attempt to create discourse on topics that often do not appear in mainstream conversation. To visit all pieces under this theme, visit : http://gaysifamily.com/tag/lesbian/.] Hash and Manga are a lesbian couple based in Sri Lanka. Both designers and mural artists, they are also the founders of Kings_Co that focuses on mural art, photography, videography, content creation, fashion design and branding. Most recently, they have started Sri Lanka's first Skateboarding brand, 'Push Skateboards', in an attempt to promote the skateboarding culture in Sri Lanka. Pooja Nair talks to them about their journey being two artists in love, and painting the town rainbow through their work. Q. How was your individual experience coming out? H: I came out to my dad first. Few days later, to my mom. That's when whole hell broke loose. I ran away to my friend's place. The same evening, I found my mom at my friend's door and she said "Come back home.We don't care about who you get married to" And that was it. It was quite an experience.I'm blessed to have parents who understand and love me for who I am. And as for society, I have always been quite open about my sexuality. M: Who comes out? Why do we have to come out? If heterosexual people don't come out, why do we have to? So I never came out. But I took my family to pride events and through my work I conveyed the message to them & everyone else. Since I started dating my girlfriend & she was always open about her sexuality, I automatically came out to everyone else. Q. How does Sri Lankan society view women who love women? H: I would say that there's a small percentage of people who supports Lesbian relationships. Our friends and family do belong to this small number of people. But the mass seems to be uneducated about any form of sexuality. And believes that LGBT relationships are uncultured. Some may believe that it's sin or it's abnormal. Mostly, these people don't understand the fact that there are emotions involved in our relationship. In their minds, we are together just to have sex and not because we love each other. M: For me, I think Lesbian relationships are more accepted than other queer relationships by the masses not because they understand the relationship.But only because they feel that it's fun & hot. Q. How do you negotiate who you are in open society? Do you care? H: I DON'T care. Some people think I'm a guy. Some think I'm a girl. That doesn't matter either. I don't have to explain myself to anyone. M: No. It doesn't matter. I don't go out as a queer person. I go out Umanga the designer/artist. My sexuality doesn't and shouldn't define me. Q. How long have you both been together? H: 11 years for this November. (We did have rough patches in the beginning. Took a break once.) M: Almost 11 years. Q. Society's idea of commitment remains to be 'marriage' . In a country where you do not have the choice to marry, how do you two choose to express your commitment to each other? H & M: By being there for each other & loving each other the way we do, I don't think we have to prove it to anyone. We are stronger together and people see that. Q. Relationships are considered to be 'fragile' when it comes to queer people. What are your thoughts on that? H: Well… We have been together for almost 11 years and our relationship is getting stronger each day. I think it's a shallow to consider it to be fragile. In today's world every relationship seems fragile. Not many people believe in love. M: I think every relationship is fragile. It depends from person to person. Q. What are some of your experiences with those who do not know anything about women who love women? H: Most of them see me as a guy & think that we are a straight couple. But if they figure out that I'm a girl we get the stares, occasional chit chats. But with people who genuinely want to know about lesbian relationships, those conversations usually go like this- The person: What? Girls can date girls? Why don't you want to get married to a guy? Me: Because I'm not interested in guys. The person: Why? Women are supposed to be married to men? Don't you wanna grow your hair, wear make up and dress like a girl. Me: How do you dress like a girl? Which law says that girls have to dress a certain way? The person: Awkwardly changes the topic to "Can you guys make babies?" M: Some think that there's always a butch and a femme girl in a lesbian relationship. And they want to know who's top and who's bottom. Or think it's a phase, or it's a choice. Mostly, they don't even know that it's a criminal offence to be in a same sex relationship in Sri Lanka. Q. You have been out and part of Sri Lankan society for a while now. How have views on homosexuality changed, or have they? H: From 10 years ago to now, it has definitely changed among the youth. But it's again a small percentage compared to the masses. And we see a lot of Sinhala clickbait music videos being created lately using same sex couples/stories. Some of these singers speak about equality simply to be apart of the conversation and not because they genuinely support this cause. M: The youth is more open towards homosexuality. The government and the masses of the country speak about this topic more than before. But none of them seem to have a clear understanding about homosexuality (the Minister of Health openly mentioned at a press conference that Homosexuality is a mental illness). Sexuality isn't a subject which is openly taught in the government schools in Sri Lanka and this seems to be the problem. The Sri Lankan government has rejected decriminializing homosexuality last year but they did ban workplace discrimination based on sexual orientation. Q. Do the changes taking place on LGBT rights in India have an effect on policy in Sri Lanka? H: I don't think so. M: I don't think so. Also in India it's civil societies speak more on this matter more than the government, and in that case, I think the Sri Lankan LGBTIQ community is less active compared to India. Q. How do you see the future of LGBT rights in Sri Lanka? H & M: It would take us a long time to change the perception of people towards homosexuality. In order to achieve this goal, we do have to thoroughly educate the young generation on homosexuality. And include it in the school syllabi. That's all for now, folks! Follow Hash and Manga on their instagram. Coming OutFeaturedGenderInterviewsLesbianRelationships Pooja Nair Restless planeteer and crazy about all doggos. Filter coffee and dosa for frenships. Follow me on @karmic_dev for a lot of useless (and fun) information. Jab We Met : For Me, It Was Totally Love At First Sight How Is Casual Sex Different From Making Love? After All Both The Boys "Love Beads" To Be In India, And To Be In Love: The Lesbian Story Love Is Love Is Love: Delhi Celebrates Its 10th Pride Parade! Interview Aam Gaysi : I Am Blessed To Have Open-Minded People Around Me Jab We Met: You Gain Some, You Lose Some! Osho, I Love You No More. Jab We Met : Believe In Love! Author SJ Sindu On Her Lesbian Novel "Marriage Of A Thousand Lies". Previous post Graphic Story: I Wanted To Be The Man Of The House Next post Dysphoria
[ -0.00704954843968153, -0.0015305716078728437, -0.038861434906721115, -0.01674853265285492, 0.00919309165328741, -0.029069874435663223, 0.023079056292772293, 0.031182384118437767, 0.033272989094257355, 0.006338431965559721, -0.0023280438035726547, 0.013402434065937996, 0.010212861932814121, -0.021828949451446533, -0.032551925629377365, 0.00131235143635422, -0.014832398854196072, -0.03787257522344589, 0.006018461659550667, 0.012328846380114555, 0.013622638769447803, 0.020038992166519165, -0.053869687020778656, -0.012532629072666168, -0.0021628080867230892, 0.055070582777261734, 0.0069043682888150215, -0.0017793505685403943, 0.06721761077642441, 0.0477224700152874, -0.02545662596821785, -0.011505895294249058, 0.042536523193120956, -0.07601489126682281, -0.0023641109000891447, -0.022319328039884567, -0.0021145043428987265, -0.031687021255493164, -0.013807700015604496, -0.0477525033056736, 0.03263065591454506, -0.021001268178224564, 0.030581708997488022, -0.02300192043185234, -0.03493238240480423, 0.006911419797688723, -0.022082077339291573, -0.037444788962602615, 0.030407797545194626, -0.011764504946768284, 0.013919354416429996, -0.029522808268666267, -0.010862017050385475, 0.02519403211772442, 0.004223086405545473, 0.013547527603805065, -0.012791590765118599, -0.013777807354927063, -0.0013761179288849235, 0.023910807445645332, 0.001816403353586793, 0.002927478402853012, 0.019582316279411316, -0.09105109423398972, 0.02980429120361805, 0.01613505370914936, 0.013075616210699081, -0.007990937680006027, 0.003776078810915351, -0.01968284510076046, 0.011268215253949165, -0.009670911356806755, -0.02520827390253544, -0.02942199446260929, -0.028566578403115273, -0.023878535255789757, -0.025377148762345314, 0.008134569972753525, -0.01744602620601654, 0.024930693209171295, 0.04900063946843147, 0.05893152207136154, -0.0024547164794057608, 0.01554926112294197, -0.06752891093492508, -0.026842748746275902, -0.010704850777983665, 0.007844632491469383, 0.003094401443377137, -0.013620015233755112, 0.018044723197817802, 0.04851092770695686, 0.013038743287324905, 0.03349055349826813, 0.03998539596796036, 0.05752120539546013, -0.04854322969913483, 0.04779709875583649, 0.02000393345952034, -0.00287317275069654, 0.04141054302453995, 0.01026520412415266, 0.004157945513725281, 0.046768900007009506, -0.03697776421904564, -0.0027167873922735453, 0.02599668689072132, -0.00848075095564127, 0.03533031791448593, -0.03812147304415703, 0.024530433118343353, -0.0428953543305397, 0.0012060574954375625, 0.015028072521090508, 0.008325126022100449, 0.0461103580892086, -0.007762091234326363, 0.050253402441740036, -0.03625638410449028, -0.0015322355320677161, 0.004095951560884714, 0.03887370601296425, 0.04254378750920296, -0.004251047968864441, 0.022522982209920883, -0.039828281849622726, -0.006408529356122017, 0.037450093775987625, -0.025367680937051773, -0.004381854552775621, 0.024322064593434334, -0.01068850513547659, 0.008556406944990158, 0.0025878569576889277, -0.011696389876306057, 0.014379657804965973, 0.012971541844308376, 0.043713003396987915, 0.022312968969345093, -0.04923893138766289, 0.02001189813017845, 0.013660822063684464, 0.012698836624622345, 0.08170600980520248, -0.006521585397422314, 0.019209489226341248, 0.0119995241984725, -0.03901949152350426, -0.03634561970829964, 0.02261120080947876, -0.03355782851576805, 0.011408718302845955, -0.02074713632464409, 0.0232692901045084, -0.024402517825365067, -0.010954287834465504, -0.006190942134708166, 0.01390048023313284, 0.041401732712984085, 0.034316498786211014, -0.02667432650923729, 0.02165001817047596, 0.00452808104455471, 0.05256938934326172, -0.02895781211555004, 0.03648900240659714, -0.06757814437150955, -0.00661173090338707, -0.022171765565872192, -0.02961237169802189, 0.026622267439961433, -0.03277229145169258, -0.03643139451742172, 0.018955500796437263, 0.005134954582899809, 0.06263191252946854, 0.024444252252578735, -0.02113957703113556, 0.05081641301512718, 0.038079969584941864, -0.01702839694917202, 0.011486798524856567, -0.006960358005017042, 0.06593441218137741, -0.00731845386326313, -0.008997444063425064, 0.0010513289598748088, -0.05504928156733513, -0.042688604444265366, -0.017618464305996895, -0.003705414477735758, 0.023938147351145744, -0.04991830512881279, 0.01222932431846857, 0.05881095305085182, 0.005424146074801683, -0.013487693853676319, -0.024596596136689186, -0.019466673955321312, -0.08208135515451431, -0.014401520602405071, 0.04486849159002304, -0.01634780317544937, 0.03644520416855812, -0.010269006714224815, -0.018917012959718704, 0.011153541505336761, 0.07113117724657059, -0.037151046097278595, 0.027907682582736015, 0.026605909690260887, 0.0012815457303076982, -0.007645013276487589, -0.044221650809049606, 0.00929662212729454, 0.006591751240193844, -0.02854306995868683, 0.059279948472976685, -0.04163745045661926, 0.018897969275712967, 0.02129039168357849, 0.031228430569171906, 0.018939238041639328, 0.020253527909517288, -0.013322435319423676, -0.013598165474832058, 0.015071991831064224, 0.046120669692754745, -0.030056025832891464, -0.01566229574382305, -0.030803505331277847, 0.041826628148555756, 0.014887350611388683, 0.041196469217538834, 0.04678253456950188, 0.044357866048812866, 0.022788766771554947, 0.0575374960899353, 0.022360913455486298, 0.03486785665154457, 0.012738751247525215, -0.0009763944544829428, 0.015453547239303589, 0.01259656436741352, -0.004116177558898926, 0.01723811961710453, 0.01106000505387783, -0.01611572876572609, -0.012395805679261684, 0.03282354772090912, 0.005994562059640884, 0.024758368730545044, 0.03706894814968109, 0.06835567206144333, -0.023451052606105804, 0.001846933038905263, 0.04405835643410683, 0.06043656915426254, -0.006640440318733454, -0.03515033423900604, -0.013415425084531307, 0.01745518296957016, -0.013823991641402245, -0.02748846635222435, 0.03355139493942261, 0.03419368714094162, -0.016556190326809883, -0.0006916900747455657, -0.036614034324884415, -0.03214631229639053, -0.05644982308149338, -0.05569695681333542, -0.04116568714380264, -0.02895277924835682, -0.025941768661141396, 0.026699073612689972, 0.05882861837744713, -0.05583997070789337, -0.004263253416866064, 0.020859111100435257, -0.022815465927124023, 0.005243954248726368, -0.00017992958601098508, 0.020515751093626022, 0.03520451858639717, 0.035781748592853546, -0.040539517998695374, 0.046528227627277374, 0.01378672569990158, 0.07948713004589081, -0.04343962296843529, -0.026297330856323242, -0.014893867075443268, 0.0017913476331159472, 0.03573828563094139, 0.020634988322854042, -0.006960115395486355, -0.008116438053548336, -0.05771144479513168, -0.028237739577889442, 0.024342980235815048, 0.007327946834266186, -0.02528599090874195, 0.00917199719697237, -0.057269077748060226, 0.03460753336548805, 0.02734977938234806, -0.020490512251853943, 0.04983861744403839, 0.04420620575547218, -0.05102366581559181, 0.03599752113223076, 0.033008355647325516, 0.003787179011851549, -0.03895372897386551, 0.053776856511831284, 0.03958631679415703, 0.020085245370864868, -0.025630053132772446, 0.004269806668162346, -0.040447358042001724, 0.02779056504368782, 0.025391122326254845, -0.0069520543329417706, -0.02702702395617962, 0.04697057977318764, 0.04429302737116814, -0.03699931874871254, 0.04725845158100128, -0.0442860871553421, -0.046551674604415894, -0.01522469986230135, -0.021930525079369545, 0.017027409747242928, 0.028017982840538025, 0.017032399773597717, 0.008419082500040531, 0.016612952575087547, 0.001239184639416635, -0.005075401160866022, 0.04461411014199257, -0.03498166799545288, 0.0338076688349247, 0.03329352289438248, -0.0009117159643210471, 0.018439974635839462, -0.004501968156546354, -0.015059319324791431, -0.017919601872563362, 0.025045210495591164, 0.0038602761924266815, -0.0053261443972587585, 0.021649235859513283, 0.0007992309401743114, -0.026079636067152023, 0.07543105632066727, -0.03664622828364372, -0.0028058511670678854, -0.0007770017837174237, 0.015002865344285965, 0.009938742965459824, 0.017372621223330498, 0.009320266544818878, -0.007968860678374767, -0.04397115111351013, -0.0494733564555645, 0.014152074232697487, 0.0015815312508493662, 0.0520593598484993, -0.05215229094028473, 0.05330492928624153, -0.023159287869930267, -0.0270746648311615, 0.03647837042808533, -0.052638258785009384, -0.004575584549456835, 0.05288790166378021, -0.03357876092195511, 0.05262359231710434, -0.05092184245586395, 0.016781115904450417, -0.02738027088344097, 0.03800645098090172, 0.02557072974741459, 0.006566444877535105, 0.036280352622270584, -0.003652202896773815, -0.035882364958524704, 0.006876414176076651, -0.04540416970849037, -0.010876764543354511, -0.019207552075386047, 0.004176795948296785, -0.0427384190261364, -0.04090077430009842, -0.018010100349783897, 0.03726423904299736, 0.01596277765929699, 0.0692208781838417, -0.019358834251761436, 0.027770113199949265, 0.016822151839733124, 0.019817324355244637, 0.02878699079155922, 0.0031950739212334156, -0.004776584915816784, -0.06762681156396866, 0.007693446706980467, 0.005616561975330114, -0.041318707168102264, -0.05262657627463341, -0.04258172959089279, -0.06298771500587463, 0.02867075614631176, 0.01691730134189129, -0.026164399459958076, -0.043938253074884415, 0.03732183203101158, -0.007403499446809292, 0.07749604433774948, -0.04552925005555153, -0.025768546387553215, 0.0031926624942570925, 0.015110471285879612, -0.014059328474104404, -0.046391528099775314, 0.006797686219215393, -0.03323471173644066, 0.05845661833882332, 0.016221504658460617, -0.014863010495901108, -0.04340200498700142, -0.03385420888662338, -0.0233205184340477, -0.03935394436120987, -0.017848296090960503, 0.028177080675959587, 0.04166790470480919, -0.005323761608451605, -0.05665867030620575, 0.040886178612709045, 0.033766403794288635, 0.0002187776699429378, -0.02699277549982071, -0.019331900402903557, 0.021747209131717682, 0.011355196125805378, 0.03881177306175232, -0.013695036061108112, -0.032830242067575455, 0.01491906214505434, -0.06469178944826126, 0.013223831541836262, 0.01747702993452549, -0.006703937891870737, -0.017346318811178207, 0.013623898848891258, 0.0338202603161335, 0.026467204093933105, 0.00213972432538867, -0.003744479501619935, 0.006831226870417595, 0.03973832353949547, -0.02071690745651722, -0.03325115889310837, 0.040985215455293655, 0.008548114448785782, -0.03592127561569214, 0.028885670006275177, 0.02089066617190838, -0.012298574671149254, 0.024012094363570213, 0.0023392855655401945, -0.036036159843206406, 0.040111176669597626, -0.0260205939412117, 0.00887837540358305, -0.009693712927401066, -0.03716021031141281, 0.009435227140784264, -0.03800271078944206, 0.05031222105026245, 0.017621265724301338, -0.013924216851592064, -0.04052921384572983, -0.027086341753602028, -0.003108679549768567, 0.017782852053642273, -0.008263708092272282, 0.031136415898799896, 0.006095315329730511, -0.021509017795324326, -0.01444124337285757, 0.0037748918402940035, 0.01671586185693741, -0.012177866883575916, -0.02721448242664337, 0.003208715468645096, 0.020826155319809914, 0.022214237600564957, 0.01859910972416401, 0.016338957473635674, -0.03846405819058418, -0.014270257204771042, -0.004101038910448551, -0.02444847673177719, -0.046951331198215485, 0.04590629041194916, -0.042363546788692474, -0.0013279389822855592, -0.015789899975061417, -0.013469655998051167, -0.008671005256474018, 0.014644983224570751, 0.03108343482017517, 0.025678586214780807, -0.013047887943685055, 0.0230537261813879, -0.03684594854712486, 0.03800893947482109, 0.03492865338921547, -0.025452563539147377, -0.019141530618071556, 0.00975716207176447, 0.021833624690771103, 0.05493311956524849, -0.03215129300951958, -0.03164723142981529, -0.05190153792500496, -0.04537149518728256, 0.002840086119249463, -0.029321519657969475, 0.00002927527566498611, -0.02107304334640503, -0.010271902196109295, -0.0034534530714154243, 0.03815557062625885, -0.017476797103881836, 0.01655084453523159, -0.009100357070565224, -0.052934810519218445, -0.008249524049460888, -0.02786029316484928, -0.0007511012954637408, -0.02899688109755516, -0.013473983854055405, -0.01887360028922558, 0.040273115038871765, -0.0074612172320485115, 0.043966829776763916, -0.012518261559307575, 0.02341587282717228, 0.011175816878676414, -0.04133766144514084, -0.0361500158905983, -0.058127377182245255, -0.008574054576456547, 0.00455081183463335, 0.014872215688228607, 0.014437240548431873, -0.06483913213014603, 0.05398489534854889, -0.02630438469350338, 0.005937180947512388, -0.02788209170103073, -0.01813657395541668, -0.031176717951893806, -0.013596881181001663, 0.06241169944405556, -0.013743325136601925, 0.026956336572766304, -0.04389936104416847, 0.017708009108901024, 0.047427982091903687, -0.001658152905292809, -0.008678370155394077, -0.025605114176869392, -0.03557002171874046, -0.07858288288116455, 0.0328904427587986, -0.03643393889069557, -0.03250463679432869, -0.02830611541867256, 0.008250134997069836, 0.03805709257721901, -0.04289781674742699, 0.02796504646539688, 0.06761601567268372, -0.007204519119113684, -0.001135538681410253, -0.007312608417123556, 0.030562950298190117, 0.04195822775363922, -0.02357427589595318, -0.021082639694213867, -0.03674604743719101, -0.05193202942609787, 0.007050019688904285, -0.045298367738723755, -0.04242023453116417, -0.030116654932498932, -0.014651542529463768, 0.06621434539556503, -0.037620097398757935, 0.014960870146751404, -0.015415901318192482, -0.03545503690838814, -0.06999646127223969, 0.037740033119916916, -0.010499350726604462, -0.014762446284294128, 0.059452228248119354, -0.016981041058897972, 0.0025242995470762253, 0.037258584052324295, 0.007705856114625931, 0.0028988432604819536, -0.022520726546645164, 0.07046973705291748, 0.005528675392270088, -0.05933206528425217, 0.0422428622841835, 0.017097067087888718, -0.04717080295085907, -0.053166862577199936, -0.002050352981314063, -0.00012896426778752357, 0.02979709580540657, 0.002664759987965226, 0.018641503527760506, -0.023781022056937218, 0.017804279923439026, 0.03095722384750843, 0.06401816755533218, 0.02008691430091858, 0.04723789170384407, 0.03459100425243378, 0.02621670998632908, -0.033105287700891495, 0.020394138991832733, 0.028596583753824234, -0.0276100542396307, -0.04474376514554024, -0.020164059475064278, 0.014182206243276596, -0.018571343272924423, 0.0011857450008392334, 0.036555174738168716, -0.04620734602212906, 0.02018733136355877, 0.027658402919769287, -0.0002791846636682749, 0.03914787992835045, 0.0000186971574294148, -0.006659473292529583, 0.0020898885559290648, -0.03925864025950432, -0.05701059103012085, -0.058558832854032516, 0.04322835057973862, -0.03450213000178337, 0.024294793605804443, -0.04557222127914429, 0.024350091814994812, 0.011151785030961037, -0.01821132004261017, -0.02051112800836563, -0.03892212361097336, -0.01579715684056282, -0.03673689812421799, -0.052035097032785416, -0.02664068713784218, 0.003917488269507885, -0.00843037385493517, 0.013044656254351139, 0.008047720417380333, -0.040756359696388245, 0.0073811933398246765, 0.014618244022130966, -0.012972548604011536, 0.022129667922854424, -0.03141866624355316, 0.014166564680635929, -0.041506048291921616, -0.06144406273961067, -0.03051973134279251, -0.00186091847717762, -0.020606620237231255, 0.0019871981348842382, -0.011152362450957298, 0.0032315615098923445, -0.008317764848470688, 0.01401570811867714, 0.01727295108139515, -0.004126156680285931, 0.001690194825641811, -0.05246615782380104, -0.011084402911365032, 0.030826177448034286, 0.00912140216678381, -0.008631693199276924, 0.056518059223890305, -0.01509163435548544, 0.04585953429341316, -0.004019053187221289, -0.03684466704726219, -0.039052389562129974, -0.02080216445028782, -0.014144627377390862, 0.024174807593226433, -0.023838575929403305, 0.0033041732385754585, -0.008355406112968922, -0.04633132740855217, 0.0035389710683375597, 0.00919764768332243, -0.02976761944591999, -0.005241213832050562, -0.003147232811897993, -0.008222928270697594, 0.054061099886894226, -0.01845546066761017, 0.04686807841062546, -0.0010565667180344462, 0.033658530563116074, 0.04781906679272652, -0.011340148746967316, 0.0202122014015913, 0.05166104808449745, 0.04029204696416855, -0.021863969042897224, 0.00747103663161397, 0.012671628966927528, -0.020914945751428604, 0.044135984033346176, -0.008843239396810532, -0.02342371456325054, -0.02310403250157833, -0.026725828647613525, -0.000032335054129362106, 0.03552507609128952, 0.0015836087986826897, -0.019549580290913582, 0.013292617164552212, -0.035461440682411194, -0.025658095255494118, -0.005896094720810652, -0.07493876665830612, -0.03000793419778347, 0.025327296927571297, -0.009949174709618092, 0.0007230548653751612, -0.010357853025197983, -0.017954081296920776, 0.020926229655742645, -0.03775888681411743, -0.03639013692736626, -0.028140351176261902, 0.039736080914735794, -0.004823670722544193, 0.0298124011605978, -0.015376336872577667, -0.015912488102912903, -0.010599453933537006, 0.05353712663054466, -0.04904148727655411, -0.01852475106716156, -0.0037803847808390856, 0.030251000076532364, -0.011635035276412964, -0.0007479350897483528, -0.000056964792747749016, 0.00530714076012373, -0.0047662886790931225, -0.02144772559404373, -0.0023556575179100037, 0.016193479299545288, 0.017354324460029602, 0.02065509930253029, 0.002342956606298685, 0.01845187321305275, -0.03816041722893715, 0.02889208123087883, 0.003828536020591855, -0.030845176428556442, -0.025039656087756157, 0.03934399038553238, 0.01846865750849247, 0.014727290719747543, 0.052165623754262924, -0.0031851858366280794, 0.03785427287220955, 0.005811328999698162, 0.028063582256436348, -0.01966620609164238, 0.0416632704436779, 0.02493366412818432, 0.04607190564274788, -0.02983430027961731, 0.03197558596730232, 0.03653677552938461, 0.023492416366934776, -0.004186742007732391, 0.015830019488930702, 0.01170333195477724, -0.008077292703092098, -0.041669175028800964, -0.03187168762087822, 0.028478659689426422, 0.02114042080938816, -0.026969734579324722, 0.010059956461191177, -0.06916478276252747, -0.00041489783325232565, -0.0063299196772277355, -0.004370091482996941, 0.041753318160772324, -0.03964563459157944, 0.02972986362874508, -0.017056206241250038, -0.022243233397603035, -0.03131134808063507, 0.02057468518614769, -0.0019337289268150926, 0.024656619876623154, 0.004075536970049143, 0.030110055580735207, -0.02003784477710724, 0.03975179046392441, -0.0008520415867678821, 0.030442746356129646, -0.036006566137075424, 0.01881556212902069, 0.03079967387020588, -0.020901765674352646, -0.03920959681272507, 0.007362259551882744, -0.009601915255188942, 0.04505434259772301, -0.02744336426258087, -0.016499772667884827, 0.03828171640634537, -0.06123696267604828, 0.018072029575705528, -0.0276357289403677, 0.06257518380880356, -0.03936770558357239, -0.01565547101199627, 0.028208455070853233, -0.01357488613575697, 0.001319246250204742, 0.02209639362990856, 0.008122936822474003, 0.06650290638208389, 0.005221028346568346, 0.05314565822482109, -0.037935640662908554, 0.02559375762939453, 0.048512574285268784, -0.03454650565981865, 0.010352496057748795, -0.0020766358356922865, -0.007007157895714045, -0.04492879658937454, -0.011911815032362938, -0.03844485431909561, -0.0033311620354652405, -0.016913967207074165, -0.002100833924487233, -0.009902811609208584, 0.046271052211523056, -0.012816714122891426, -0.06103834882378578, 0.00970553420484066, 0.02997153252363205, -0.0790531188249588, 0.0023406397085636854, -0.004100974183529615, 0.016392529010772705, -0.010861190967261791, -0.007188829127699137, -0.05225013941526413, 0.0008196736453101039, 0.0011249384842813015, -0.05478643998503685, 0.05202597752213478, -0.017823634669184685, -0.03145594149827957, -0.05469471961259842, -0.068132184445858, -0.020473817363381386, -0.0070731304585933685, -0.02036307565867901, -0.05624444782733917, 0.027341842651367188, 0.03761998564004898, 0.0054098437540233135, -0.008980116806924343, -0.03237973153591156, -0.01802355796098709, 0.046015843749046326, 0.08090183138847351, -0.008941388688981533, 0.03211017698049545, 0.04071812704205513, -0.026693912222981453, 0.04052077978849411, -0.022708743810653687, 0.022187156602740288, -0.0027009439654648304, 0.0023552156053483486, -0.014183391816914082, 0.04086419194936752, -0.01634131371974945, -0.05788619816303253, 0.040926311165094376, 0.026416417211294174, -0.007404971867799759, -0.03694463148713112, -0.07497531920671463, -0.00604852894321084, -0.04465619474649429, 0.009809614159166813, -0.045893359929323196, 0.011847148649394512, 0.010688685812056065, -0.020218515768647194, 0.005755284335464239, -0.05341745913028717, 0.1430647373199463, 0.036074746400117874, 0.029866740107536316, 0.03355572000145912, 0.006566440220922232, 0.05096742510795593, 0.03534930199384689, 0.00001578807678015437, 0.009350954554975033, -0.04463663697242737, 0.01486364845186472, -0.03415888175368309, 0.024775849655270576, -0.0003949698293581605, -0.008301669731736183, 0.05591800808906555, -0.0430561900138855, 0.003254895331338048, 0.016393830999732018, -0.02268877439200878, -0.05547433719038963, 0.015894150361418724, 0.027596618980169296, 0.010976853780448437, -0.012711239978671074, 0.016720181331038475, 0.02020692080259323, -0.04155583679676056, 0.0013409304665401578, -0.03427829220890999, 0.017552681267261505, -0.03526187688112259, 0.07001174241304398, -0.024038977921009064, -0.05885380133986473, 0.04142485558986664, -0.011673349887132645, -0.02278141863644123, 0.04041685163974762, 0.04227542132139206, -0.06155579537153244, -0.013896437361836433, 0.042212724685668945, -0.00223183399066329, 0.0026506888680160046, 0.009932342916727066, -0.0426378957927227, 0.006466797553002834, -0.009925026446580887, -0.02307775244116783, 0.06847003102302551, -0.034098222851753235, 0.025923002511262894, 0.0013821618631482124, -0.028995046392083168, -0.007746912073343992, 0.014365075156092644, -0.011307019740343094, -0.011700970120728016, 0.001953868428245187, 0.026948099955916405, 0.021083010360598564, -0.02678443118929863, -0.020963773131370544, -0.007163260597735643, 0.034145891666412354, 0.04510250315070152, 0.013394201174378395, -0.02677754871547222, -0.029889602214097977, -0.012350575067102909, -0.007791072595864534, 0.03876423090696335, -0.04281219094991684, 0.009206966497004032, 0.00437611248344183, -0.021599056199193, 0.034677159041166306, 0.00912766344845295, -0.016284793615341187, 0.010447382926940918, -0.0497889369726181, 0.010464333929121494, 0.015081713907420635, 0.023694634437561035, 0.0565737783908844, -0.025747446343302727, -0.04126787185668945, -0.01694876328110695, 0.03954938426613808, 0.05724715813994408, 0.016934147104620934, -0.01058040838688612, 0.00236742221750319, -0.011550995521247387 ]
How did a community-based not-for-profit become the premier weed control organisation across one-third of Queensland? Three years of research, development and innovation, that's how. This has enabled us to revolutionise weed control, particularly Prickly Acacia eradication, and recast how landholders and local governments engage in the process. Our multi-pronged initiative delivers cost-effective, state of the art weed control, genuine hope, and unambiguous results. Weed PACT program contracts groups of landholders, driven by peer support, commitments to action by specific dates, and assistance incentives. 5 year weed plans divide labour and cost (DCQ handles 'high public benefit' infestations; landholders deal with the balance). Pioneering satellite weed mapping that builds a landscape scale picture to guide focussed control efforts. Research and development of Drone application and other new control techniques. Matching control techniques to weed density and land type to dramatically reduce costs to landholders and funding agencies. Development of a State-approved Area Management Plan to enable weed control around native vegetation. Negotiation of an Australian Pesticides and Veterinary Medicines Authority permit to allow chemical application in sensitive areas – enables efficient treatment of critical, ultra-dense infestations associated with watercourses. Development of a smartphone app, social data collection system and automated, web-based, real-time mapping. Use of YouTube news stories and field days to share the vision and successes of the Weed PACT program. DCQ is fuelling the enthusiasm of graziers, researchers, and governments to tackle what was once assumed an insurmountable problem for grazing enterprises and the environment.
[ -0.01665550284087658, -0.014119360595941544, -0.04340304806828499, 0.01026524044573307, 0.008709591813385487, 0.027279242873191833, 0.01979673281311989, 0.05377112701535225, 0.039757002145051956, 0.014357279054820538, 0.01856524869799614, -0.0013296762481331825, 0.01096980832517147, -0.009969728998839855, 0.007031675428152084, 0.009966336190700531, -0.033224690705537796, -0.038680803030729294, -0.01576193980872631, 0.049395862966775894, -0.001933201216161251, 0.03020627051591873, -0.05485153943300247, -0.05727190896868706, -0.020774194970726967, 0.043386343866586685, 0.012682939879596233, -0.0444178506731987, 0.05771571025252342, 0.043883487582206726, -0.027861619368195534, -0.040798112750053406, 0.05720430612564087, -0.035869501531124115, -0.039558086544275284, -0.05273249372839928, 0.024170447140932083, -0.03155696764588356, -0.027732307091355324, -0.03413448855280876, -0.0014770051930099726, -0.0034546100068837404, 0.024180928245186806, -0.03196725994348526, -0.028803132474422455, -0.021451611071825027, -0.02933112159371376, -0.06566601246595383, -0.022638166323304176, -0.024066194891929626, 0.005546309053897858, 0.001804579165764153, 0.013979801908135414, -0.0033610379323363304, -0.020715374499559402, 0.013832070864737034, 0.005819358862936497, 0.0005760588101111352, -0.030477339401841164, 0.033749472349882126, 0.01486815046519041, 0.011662921868264675, 0.03751144930720329, -0.03641892969608307, 0.04091540724039078, 0.027322830632328987, -0.004028644412755966, -0.04123209789395332, 0.01977524161338806, -0.03418714180588722, 0.014022118411958218, 0.006766579579561949, -0.02857750840485096, -0.028015634045004845, 0.0044918423518538475, -0.018136581405997276, 0.02707066386938095, -0.016354870051145554, -0.010961160995066166, 0.021723534911870956, 0.03553855046629906, 0.05779007077217102, 0.008279933594167233, 0.016838932409882545, -0.06125907599925995, -0.0235703494399786, 0.002171868924051523, -0.0035521970130503178, 0.029304757714271545, 0.0298807080835104, 0.006906361784785986, 0.04578990489244461, 0.0007988636498339474, 0.007985551841557026, 0.0316082201898098, 0.04574751853942871, -0.053483035415410995, 0.04578452557325363, -0.0004375198914203793, 0.026604149490594864, 0.05154091864824295, 0.025285305455327034, 0.003262306796386838, 0.04554393142461777, -0.009200025349855423, -0.02382560633122921, -0.003798276651650667, -0.025865700095891953, 0.0034953870344907045, -0.0356542207300663, 0.0030588279478251934, -0.016013285145163536, 0.014639805071055889, 0.01794431544840336, 0.02654288336634636, 0.06257491558790207, -0.00850159302353859, 0.03597281873226166, -0.04653152823448181, 0.021187210455536842, -0.009306015446782112, -0.020149212330579758, 0.0395321324467659, -0.001129486015997827, 0.010153815150260925, -0.050125449895858765, -0.03081098198890686, 0.03296497091650963, -0.02442701905965805, -0.020090751349925995, 0.024554742500185966, -0.06990792602300644, -0.024051692336797714, 0.02561645768582821, 0.02433943562209606, -0.001882063690572977, 0.010185572318732738, 0.02619381621479988, 0.01719043031334877, -0.030190518125891685, 0.05156636983156204, 0.0339619405567646, -0.011156868189573288, 0.09715685993432999, 0.0027166337240487337, 0.028307614848017693, -0.02764139324426651, -0.003474657190963626, -0.0249679833650589, 0.020703263580799103, -0.02466493844985962, 0.004784218035638332, -0.003374244552105665, 0.01003724429756403, -0.0037709318567067385, -0.033695925027132034, 0.019561603665351868, 0.04607933759689331, 0.006858150940388441, 0.030499914661049843, -0.022208241745829582, 0.01934211701154709, -0.012224326841533184, 0.015342350117862225, -0.0284831915050745, 0.038452938199043274, -0.047505270689725876, 0.00859498605132103, 0.003728412091732025, 0.005115821026265621, 0.04531506448984146, -0.0063063232228159904, -0.01813153363764286, 0.014569422230124474, 0.018514670431613922, 0.015343433246016502, 0.04860929027199745, 0.02063870243728161, 0.058502454310655594, 0.055707529187202454, -0.03707721084356308, -0.03003947250545025, -0.038501251488924026, 0.0756751298904419, 0.00262975855730474, -0.006126639433205128, -0.009373906999826431, -0.022246835753321648, -0.03552645444869995, -0.023388143628835678, -0.0047967997379601, 0.02477801777422428, -0.02662043832242489, 0.0008239240851253271, 0.0195548627525568, -0.00028415638371370733, 0.007022652309387922, -0.019958622753620148, -0.002411933382973075, -0.0288215521723032, -0.025601621717214584, 0.03535870462656021, -0.04626993462443352, 0.027810411527752876, -0.0050267307087779045, -0.004787796642631292, 0.022498898208141327, 0.06677408516407013, -0.05720970034599304, 0.007444410119205713, 0.041716527193784714, -0.003304672660306096, -0.011692260392010212, -0.033179983496665955, 0.014036900363862514, -0.015238897874951363, -0.010670342482626438, 0.03829295188188553, 0.004760479088872671, -0.034070082008838654, -0.0006228665006347001, 0.02382444217801094, 0.02566467598080635, 0.04566577821969986, -0.00957427453249693, -0.011480700224637985, 0.005479676648974419, 0.044807158410549164, -0.019166892394423485, 0.018834857270121574, 0.016396690160036087, 0.054602742195129395, 0.028386086225509644, 0.08392520993947983, 0.02542288601398468, 0.010975992307066917, 0.02477630227804184, 0.037779923528432846, -0.002422324614599347, 0.02219638042151928, 0.004586716648191214, 0.008510474115610123, 0.03462521731853485, 0.02150586061179638, 0.02503497526049614, 0.036805979907512665, -0.002815715502947569, 0.005251977127045393, -0.011149468831717968, 0.027895011007785797, -0.06723899394273758, 0.05902652069926262, 0.00734932953491807, 0.03212524950504303, -0.0380915068089962, 0.024797409772872925, 0.03432071581482887, 0.06712505966424942, -0.035520076751708984, -0.02201099880039692, 0.009884893894195557, 0.023787010461091995, -0.026809729635715485, -0.010319093242287636, 0.01776641607284546, -0.012081017717719078, 0.00008433459152001888, 0.0533774234354496, -0.008617858402431011, -0.014095328748226166, -0.05934937298297882, -0.06479711830615997, -0.059247709810733795, -0.042684927582740784, -0.05659682676196098, 0.026232216507196426, 0.015420067124068737, -0.031817566603422165, 0.029443534091114998, -0.002361069433391094, 0.0072182416915893555, -0.04491761326789856, -0.01618744619190693, 0.05159667506814003, 0.03921341523528099, 0.026714356616139412, -0.028572380542755127, 0.02853604219853878, -0.017781775444746017, 0.026522742584347725, -0.017220988869667053, 0.0008590869838371873, -0.024066833779215813, -0.010482272133231163, 0.026596570387482643, 0.011508088558912277, -0.004705366678535938, 0.004878979176282883, -0.039929188787937164, -0.03551585599780083, -0.005892457440495491, 0.01003860030323267, -0.017261886969208717, 0.010335617698729038, -0.013100835494697094, 0.03603572025895119, 0.021392880007624626, -0.03203338757157326, 0.04414791241288185, 0.029179343953728676, -0.04162736237049103, 0.030851159244775772, 0.014514905400574207, 0.018653424456715584, -0.08664482831954956, 0.049428265541791916, 0.05120029300451279, -0.015375667251646519, -0.019670842215418816, -0.023955048993229866, -0.053027018904685974, 0.0156725887209177, 0.031075770035386086, -0.027470258995890617, -0.05441562086343765, 0.05250338837504387, 0.03424887731671333, -0.090638667345047, 0.03321615979075432, -0.03128785267472267, -0.029194610193371773, -0.0474737212061882, -0.05715008080005646, 0.01697099395096302, 0.019450200721621513, 0.023727035149931908, -0.007340067531913519, -0.02719792164862156, -0.005343880970031023, 0.007063738070428371, 0.06516840308904648, -0.031760323792696, 0.04977431148290634, 0.03482005372643471, 0.0321306474506855, 0.03836676478385925, 0.00938380416482687, -0.015678131952881813, 0.0006210868596099317, -0.0023579143453389406, 0.018670091405510902, 0.018315350636839867, 0.01534990593791008, -0.03229421377182007, 0.021591531112790108, 0.024789754301309586, -0.05029424652457237, 0.010137763805687428, 0.013539295643568039, 0.0051577589474618435, 0.029526686295866966, 0.016088226810097694, 0.01331825740635395, 0.005174300167709589, -0.0225698072463274, -0.03582146763801575, 0.02689397521317005, 0.007839061319828033, 0.05127466470003128, -0.047159094363451004, 0.041603073477745056, 0.006120656616985798, -0.01904764212667942, 0.04659442976117134, -0.05042111873626709, -0.0111103355884552, 0.03996508568525314, -0.021853454411029816, 0.04198349267244339, -0.058062270283699036, 0.026261497288942337, -0.007251998409628868, 0.02371770702302456, 0.04789823293685913, 0.01015274878591299, 0.011585675179958344, -0.025812814012169838, 0.005387443117797375, -0.008199423551559448, -0.008557974360883236, -0.0024456498213112354, -0.018444130197167397, -0.014148276299238205, -0.003845099126920104, -0.04758531600236893, -0.04728268086910248, 0.05247214809060097, 0.029607536271214485, 0.06591611355543137, 0.0009318990632891655, 0.06083056703209877, 0.012047478929162025, 0.022181883454322815, 0.03578014299273491, 0.0007143558468669653, 0.025094276294112206, -0.050828102976083755, 0.012157129123806953, 0.025013839825987816, -0.05043577030301094, -0.04297935590147972, 0.0009394565713591874, -0.017189547419548035, 0.02101503126323223, 0.01763610728085041, -0.0012553551932796836, -0.03954510763287544, 0.009150038473308086, -0.003959525842219591, 0.05624920502305031, -0.030692942440509796, -0.0018098645377904177, -0.02290811389684677, 0.030347997322678566, 0.006857589352875948, -0.05284842848777771, 0.015350251458585262, -0.028746962547302246, 0.019642876461148262, 0.03361055627465248, -0.0022121767979115248, -0.05356572940945625, -0.0008835400803945959, -0.009845368564128876, -0.0174432210624218, 0.03340636193752289, 0.022203654050827026, 0.001568326959386468, -0.009551938623189926, -0.020309094339609146, 0.027100758627057076, 0.032276421785354614, 0.015115054324269295, -0.009249390102922916, -0.03293988108634949, 0.03424936532974243, -0.005901743657886982, 0.034825872629880905, 0.017567267641425133, -0.02252388559281826, 0.013384850695729256, -0.04516955092549324, 0.0007240140694193542, 0.00033219862962141633, -0.026289232075214386, 0.012949636206030846, 0.043022263795137405, 0.030213002115488052, 0.03913135081529617, -0.014844221994280815, 0.011046270839869976, -0.02532513067126274, 0.04870343953371048, -0.0431002639234066, -0.019796865060925484, 0.05036625638604164, -0.007325778249651194, -0.05236060172319412, 0.05662747845053673, 0.015220188535749912, -0.009438375942409039, 0.017903294414281845, 0.027898432686924934, -0.05293264985084534, 0.027048109099268913, -0.05381731316447258, 0.025564368814229965, -0.0016619969392195344, -0.0708564966917038, 0.013542341068387032, -0.018852906301617622, 0.04158167541027069, -0.0024062625598162413, -0.01860121265053749, -0.029806002974510193, -0.0733688473701477, 0.004052771255373955, 0.016118193045258522, -0.03211061656475067, 0.05772829055786133, 0.00034065626095980406, -0.01816473715007305, -0.0020787063986063004, 0.010887880809605122, -0.007677935063838959, 0.01990118809044361, 0.015273918397724628, 0.0024462733417749405, 0.029965713620185852, 0.01174509059637785, 0.021928416565060616, -0.022560641169548035, -0.04327225685119629, -0.003125424962490797, -0.012369366362690926, 0.005369905382394791, -0.05267484113574028, 0.013153694570064545, -0.020232336595654488, 0.0011443785624578595, -0.05291939899325371, -0.009397265501320362, -0.006068160757422447, 0.027977189049124718, 0.004316164646297693, 0.025446301326155663, 0.019358983263373375, 0.021872257813811302, -0.03769643232226372, 0.04996844008564949, 0.026226436719298363, -0.05674102529883385, -0.03968986123800278, 0.044700078666210175, -0.0018780517857521772, 0.05460205674171448, 0.030393943190574646, -0.013342047110199928, -0.03225905820727348, -0.045399345457553864, -0.009968508966267109, -0.03939149156212807, -0.02348780259490013, -0.02825324982404709, -0.028522931039333344, -0.019854184240102768, -0.000791826460044831, 0.03385072946548462, -0.0236666239798069, -0.017859021201729774, -0.03999477997422218, -0.009425099939107895, -0.030623216181993484, -0.0005025896243751049, -0.04128633067011833, -0.04328437149524689, 0.022814402356743813, 0.02244439162313938, 0.014879649505019188, 0.0039362357929348946, -0.0206720232963562, 0.005266576539725065, 0.02231251262128353, -0.008653971366584301, -0.0629856064915657, -0.03490092605352402, -0.017687734216451645, -0.0261624027043581, 0.011996704153716564, 0.024848219007253647, -0.037658464163541794, 0.05548713356256485, -0.042223554104566574, -0.0059016309678554535, -0.009178201667964458, -0.016933515667915344, -0.008894397877156734, 0.0024963475298136473, 0.04016910865902901, -0.001745128887705505, 0.030819900333881378, -0.021110467612743378, 0.03449023887515068, 0.05421442911028862, 0.03383011743426323, -0.02733859233558178, -0.04846739396452904, -0.036644503474235535, -0.05245111510157585, 0.004574721213430166, -0.04140617325901985, -0.03275496885180473, -0.05348456650972366, 0.008176685310900211, 0.0614498034119606, -0.006591621320694685, 0.05523288995027542, 0.02372254803776741, 0.003646153723821044, -0.019490070641040802, -0.034800708293914795, 0.04154129698872566, 0.015217369422316551, -0.043377939611673355, -0.014913327991962433, -0.013809732161462307, 0.002091687871143222, 0.003105511888861656, -0.05670732259750366, -0.02622297964990139, -0.033717621117830276, -0.011155938729643822, 0.05297804996371269, -0.007945923134684563, 0.00833424087613821, -0.004169420339167118, -0.033841848373413086, -0.06620611995458603, 0.020918529480695724, 0.01815125159919262, 0.0010401277104392648, 0.05180562287569046, -0.0005045077996328473, -0.02494657039642334, 0.027986930683255196, 0.016619369387626648, 0.0027875779196619987, -0.041765592992305756, 0.06758343428373337, -0.0067511675879359245, -0.033664774149656296, -0.009427576325833797, 0.04552393779158592, -0.0601748526096344, -0.049408577382564545, -0.0016230825567618012, -0.01352593582123518, 0.005536210723221302, -0.032166533172130585, 0.030619312077760696, -0.04123309627175331, -0.011800633743405342, 0.01684544049203396, 0.04148763790726662, -0.03296145424246788, 0.03236488997936249, -0.01899459958076477, 0.06278792768716812, -0.045219842344522476, -0.0104410694912076, 0.035032305866479874, -0.02659328654408455, -0.04616137966513634, -0.03565581515431404, -0.026209844276309013, 0.04022744297981262, -0.004340747836977243, 0.015982169657945633, -0.04356040805578232, 0.0007524737156927586, 0.010446072556078434, 0.011047706939280033, 0.03386791795492172, 0.017156006768345833, -0.013287879526615143, 0.01769423671066761, -0.0377722829580307, -0.023320641368627548, -0.036266643553972244, 0.017811765894293785, 0.023281903937458992, 0.026580987498164177, -0.04852036014199257, -0.019553372636437416, 0.03910301998257637, 0.0030718655325472355, -0.011354668997228146, -0.06453178077936172, -0.04575694724917412, -0.011308571323752403, -0.03190690279006958, -0.059704504907131195, -0.021426843479275703, 0.004505125340074301, 0.03114800527691841, 0.013575857505202293, -0.030684564262628555, -0.019036170095205307, 0.021123453974723816, -0.03808492049574852, -0.018181536346673965, -0.02287125214934349, 0.024879392236471176, -0.028821628540754318, -0.033209167420864105, -0.03432745859026909, -0.00706285098567605, -0.012789302505552769, 0.006763063371181488, -0.004507807549089193, 0.02582148090004921, -0.012596678920090199, 0.02083597145974636, 0.016856618225574493, 0.016310105100274086, -0.045047711580991745, -0.02940855734050274, -0.02114863321185112, 0.022136768326163292, -0.015313060954213142, 0.024419182911515236, 0.06114305928349495, -0.0070220790803432465, 0.03474714234471321, 0.0009037606068886817, -0.02996654249727726, -0.016356613487005234, 0.012287426739931107, 0.012930789031088352, -0.018480906262993813, -0.00456554489210248, -0.03820744901895523, -0.0051738061010837555, -0.031223788857460022, -0.00401743408292532, -0.018448064103722572, 0.003140430198982358, 0.001704058377072215, -0.014535339549183846, -0.022758159786462784, 0.05782853439450264, 0.004866620991379023, 0.041646558791399, 0.011882461607456207, 0.020856577903032303, 0.0012227974366396666, -0.006737528368830681, -0.0024030462373048067, 0.02751389890909195, -0.002390945563092828, -0.02171771042048931, 0.00635544816032052, 0.03370162099599838, -0.017325349152088165, 0.035121407359838486, -0.001862668781541288, -0.004216390196233988, -0.011749439872801304, -0.001492086099460721, -0.005295697133988142, 0.05717691034078598, -0.024055240675807, 0.018548328429460526, 0.04134014993906021, -0.020892737433314323, -0.01987442933022976, 0.014590669423341751, -0.07239456474781036, -0.03498198837041855, 0.03078147955238819, -0.040779877454042435, -0.03583541885018349, -0.014738479629158974, -0.03990894556045532, 0.01184121798723936, -0.02231215126812458, -0.017725687474012375, -0.017143672332167625, 0.03599541261792183, 0.007963544689118862, 0.06545320153236389, 0.01549128070473671, -0.0009606499224901199, 0.00944329984486103, 0.06264319270849228, -0.055952731519937515, -0.038974594324827194, -0.02324579283595085, 0.0499659888446331, 0.025156399235129356, 0.00035864452365785837, -0.010059479624032974, 0.013975347392261028, -0.014973179437220097, 0.03073698654770851, -0.003965918440371752, 0.01968110166490078, -0.01559086237102747, -0.008256863802671432, 0.02814120054244995, 0.012418268248438835, -0.021559040993452072, 0.05470631644129753, 0.0020221408922225237, -0.0320422425866127, -0.033615246415138245, 0.023491062223911285, 0.028633765876293182, -0.02178765833377838, 0.027134818956255913, -0.003555797738954425, 0.020543519407510757, -0.0011253057746216655, -0.0014915978536009789, -0.00006572082929778844, 0.06756630539894104, 0.0312892384827137, 0.055049482733011246, -0.008006108924746513, 0.002806059317663312, 0.050476912409067154, -0.0008862946997396648, 0.0012492480454966426, 0.007057113107293844, 0.007224799133837223, -0.019698433578014374, -0.019993621855974197, -0.009935307316482067, 0.006226972211152315, -0.009968540631234646, -0.03499845042824745, -0.001187885063700378, -0.0399782769382, 0.010684707202017307, 0.008211957290768623, -0.02536504715681076, 0.030190372839570045, -0.03147087246179581, -0.0032456323970109224, -0.01596532203257084, -0.015570307150483131, 0.00351676344871521, 0.03773079067468643, 0.006193791050463915, 0.004827029071748257, 0.05309056118130684, 0.05716075748205185, -0.028950832784175873, 0.028200186789035797, 0.012469856068491936, -0.0021611996926367283, -0.053782425820827484, 0.04237119480967522, 0.014617850072681904, -0.019763158634305, -0.029611200094223022, 0.004775943700224161, -0.06638899445533752, 0.02964603155851364, -0.012705744244158268, -0.023423613980412483, 0.031566500663757324, -0.05211407318711281, -0.04889661818742752, -0.03013969212770462, 0.03722548484802246, -0.08420474082231522, 0.004853278864175081, 0.021659957244992256, -0.03456272557377815, -0.047335002571344376, 0.03624671697616577, -0.01945100724697113, 0.057428110390901566, -0.0032153534702956676, 0.02650441974401474, 0.005634810775518417, 0.052459970116615295, 0.049131568521261215, -0.03921506926417351, 0.023202436044812202, 0.013957667164504528, -0.014839748851954937, -0.009441039524972439, -0.03372472897171974, -0.037247005850076675, -0.007878629490733147, -0.027811627835035324, -0.03147820755839348, -0.014966731891036034, 0.031222524121403694, -0.004062070976942778, -0.053568094968795776, 0.028113463893532753, 0.026208847761154175, -0.02882530353963375, 0.0006407230976037681, 0.0022804082836955786, 0.04899109899997711, 0.012795747257769108, 0.0037508998066186905, -0.02170327678322792, -0.0471685566008091, 0.023997820913791656, -0.04316740855574608, 0.023714078590273857, -0.023285094648599625, -0.029520848765969276, -0.03993675112724304, -0.03028198331594467, -0.025749923661351204, -0.018535366281867027, -0.06169100105762482, -0.05963069945573807, 0.039750803261995316, 0.05683865025639534, 0.01647142507135868, 0.006053769029676914, -0.02524094469845295, -0.004969932604581118, 0.03366364911198616, 0.04151420667767525, -0.0067338524386286736, 0.03772313892841339, 0.05662085860967636, -0.023931095376610756, 0.01935802400112152, -0.007708937395364046, 0.03668992593884468, -0.022967282682657242, -0.025206705555319786, -0.04287217929959297, 0.004691537469625473, 0.00827767513692379, -0.08562223613262177, 0.013481639325618744, 0.01509292796254158, 0.008784014731645584, -0.02428014948964119, -0.06687066704034805, 0.015449211932718754, -0.04290143772959709, -0.021014558151364326, -0.05406264588236809, 0.009378938935697079, 0.009883059188723564, -0.01721552386879921, 0.04913157597184181, -0.054232049733400345, 0.14786498248577118, 0.032989148050546646, 0.031136153265833855, 0.02752714604139328, 0.021382367238402367, 0.03231591358780861, 0.046800628304481506, -0.01745058037340641, 0.005042006727308035, -0.009137971326708794, 0.020650412887334824, -0.017101461067795753, 0.02767077647149563, -0.013266582041978836, 0.005910511594265699, 0.04505205899477005, -0.04866914451122284, 0.026319697499275208, 0.020527323707938194, -0.03128466382622719, -0.05072265490889549, 0.016411595046520233, 0.016845688223838806, 0.0045080301351845264, -0.0052098301239311695, 0.01722126454114914, 0.009737769141793251, -0.052117764949798584, 0.025456223636865616, -0.01799946464598179, 0.016417162492871284, -0.04241179674863815, 0.04347178712487221, -0.03931904584169388, -0.05712274834513664, 0.057450179010629654, 0.00017114004003815353, -0.021435406059026718, 0.0034089661203324795, 0.012251995503902435, 0.013431243598461151, 0.026264049112796783, 0.022422904148697853, -0.02938055992126465, 0.014641787856817245, 0.028829650953412056, -0.043906357139348984, -0.008143114857375622, 0.054129358381032944, -0.033539481461048126, 0.040503986179828644, -0.046023186296224594, 0.03608778864145279, 0.011844265274703503, -0.037340421229600906, 0.023511307314038277, 0.02764693833887577, -0.0198893453925848, -0.0019622989930212498, -0.004653154406696558, 0.030412957072257996, -0.009694207459688187, -0.004211554769426584, -0.003211535047739744, 0.0019844553899019957, -0.011824505403637886, 0.06023845449090004, -0.018944144248962402, -0.009327937848865986, -0.0058200545608997345, -0.019397495314478874, -0.004589178133755922, -0.005817880854010582, -0.06535131484270096, 0.028712358325719833, 0.05104523152112961, -0.026339244097471237, 0.03999321907758713, 0.019827160984277725, -0.028304273262619972, 0.004813759122043848, -0.04534345865249634, -0.004149002488702536, -0.014655424281954765, 0.025928674265742302, 0.042279861867427826, -0.04510807245969772, -0.050746869295835495, -0.03323987126350403, 0.02328300103545189, 0.050242748111486435, 0.004242276772856712, -0.0046579730696976185, -0.0021064812317490578, 0.010774584487080574 ]
The Ventures é uma banda instrumental estadunidense formada inicialmente como The Versatones em 1958 por Bob Bogle e Don Wilson, em Tacoma, Washington. É conhecida por seus clássicos Walk Don't Run, Surf Rider, Journey To The Star, Driving Guitars, Yellow Jacket e Bumble Bee Twist. A banda começou de maneira independente, tocando em pequenos bares. Em 1959, Nokie Edwards (guitarra baixo) e Skip Moore (bateria) entraram para a banda. Na época, compuseram e gravaram "Walk Don't Run", um de seus maiores sucessos, mas nenhuma gravadora se interessou pelo som. A solução encontrada foi fundar uma pequena gravadora, a "Blue Horizon Records", patrocinados pela mãe de Don Wilson. Trabalhando como seus próprios produtores, gravaram a música em formato single em vinil de 45 rpm e começaram a se auto-promover. Ainda em 1959, um DJ de Seattle usou "Walk Don't Run" como vinheta de abertura de um programa de rádio. Foi então que o empresário Bob Reisdorf, dono da Dolton Records, escutou, quis conhecer e acabou contratando os Ventures. Em 1960, a música ocupou durante uma semana o segundo lugar na Billboard Top 100. Em 1968, outra música dos Ventures ficou famosa: "Hawaii 5-0". Ela foi usada como trilha de abertura de um seriado policial com o mesmo nome. Na virada dos anos 70 para os anos 80, a banda foi redescoberta pelo público punk e new wave interessado na surf music. A banda Go-Go's até gravou uma música - "Surfin and Spying" - em sua homenagem. Nos anos 90, The Ventures ganharam outra grande publicidade, quando Quentin Tarantino incluiu a música "Surf Rider" na trilha sonora do filme de violência "Pulp Fiction". Na segunda ida do o grupo ao Japão, em 1965, época em que houve também a ida da banda The Astronauts, e apresentação conjunta com as bandas locais Jannys e Terauchi Takeshi and Blue Jeans, houve o "boom" da música instrumental de guitarra, com aumento da venda de discos e de guitarras elétricas. Foram vendidas 50.000 guitarras elétricas em 2 anos, levando à abertura de 120 fábricas para atender a demanda, e até fábricantes de máquinas de costura começaram a produzir guitarras. Foram abertos vários concursos e torneios de guitarras em programas de TV (FujiTV, NTV, NET) e por fabricantes de guitarras. A partir daí, The Ventures sempre associou a venda de discos com a venda de guitarras elétricas. A banda sempre fez muito sucesso fora dos Estados Unidos, na Europa e principalmente no Japão. Dezenas de discos foram produzidos especialmente para o mercado japonês e, desde 1960 até hoje, The Ventures, anualmente, fica 3 meses e faz mais de 50 shows de auditório, em turnê pelo país oriental. Já fizeram mais de 2000 shows no Japão, onde têm um público fiel. Os Ventures nunca cancelaram seus shows programados, mesmo na indisponibilidade de algum integrante. Em 1996, tiveram as suas mãos eternizadas no "Rock Walk of Fame" de Hollywood. Em 10 de março de 2008, The Ventures entraram para "Rock and Roll Hall of Fame" com a música Walk Don't Run e Hawaii 5-0. Ano que comemorou os 50 Anos da Banda. A Banda produziu mais de 200 álbuns em CD, 250 álbuns em formato LP e 150 (45rpm) compactos. Mais de 110.000.000 de unidades vendidas. 40.000.000 somente no Japão. Ligações externas Site oficial Bandas de rock Bandas de surf rock Bandas de Washington Bandas formadas em 1958 Bandas e músicos de rock instrumental Artistas incluídos no Rock and Roll Hall of Fame
[ -0.0035864333622157574, 0.03600626438856125, 0.007204290945082903, -0.0050962199456989765, 0.007562332320958376, 0.0037864982150495052, -0.014001814648509026, -0.001512202201411128, 0.02782095968723297, 0.014689594507217407, 0.02566145732998848, 0.003788679838180542, 0.011589939706027508, -0.016330406069755554, 0.008649392984807491, 0.012597968801856041, -0.027717074379324913, -0.048709336668252945, -0.015327731147408485, 0.011412118561565876, -0.0135591309517622, -0.0016123304376378655, -0.056006256490945816, -0.03332315757870674, -0.0059019215404987335, 0.013592856004834175, 0.032473474740982056, -0.009300521574914455, 0.04446012154221535, 0.05712224915623665, 0.027598803862929344, -0.03536108136177063, 0.041910551488399506, -0.03584679961204529, -0.015016683377325535, 0.02029833011329174, 0.04794963821768761, -0.02526235580444336, -0.018087707459926605, -0.05697816237807274, -0.00031414820114150643, -0.019246594980359077, 0.039798785001039505, -0.008061770349740982, -0.03378530219197273, -0.02973495051264763, 0.01281016506254673, -0.022833602502942085, -0.002748350612819195, -0.027936847880482674, 0.005393258761614561, 0.007203948684036732, 0.03512868285179138, 0.031065765768289566, 0.0002653364499565214, 0.029098991304636, 0.0009525754139758646, -0.03152959421277046, -0.01345810666680336, 0.05193515494465828, 0.0032518613152205944, -0.023163404315710068, 0.03512635827064514, -0.0404793955385685, 0.00996287353336811, -0.01731763780117035, -0.0276328157633543, -0.027109380811452866, 0.02061556652188301, -0.030029306188225746, 0.007833106443285942, 0.024949125945568085, 0.0027661113999783993, 0.002772656735032797, 0.010083833709359169, 0.016476422548294067, 0.004317711107432842, -0.006468974985182285, -0.0208208616822958, -0.014996720477938652, 0.021022992208600044, 0.060533903539180756, 0.019804520532488823, 0.024692585691809654, -0.04458461329340935, -0.0145187983289361, -0.03425510972738266, -0.0030977027490735054, -0.0007862788625061512, -0.010902036912739277, 0.008175973780453205, 0.08437395095825195, -0.023864055052399635, 0.00006938495789654553, 0.037257470190525055, 0.05041546747088432, -0.0399639829993248, 0.029580244794487953, 0.003497116267681122, -0.0017933744238689542, 0.04972188174724579, 0.03531572222709656, -0.030423102900385857, 0.03577333316206932, -0.017448335886001587, -0.001775654498487711, 0.037037335336208344, 0.0016665974399074912, 0.00721603212878108, -0.05395696684718132, -0.0013455674052238464, 0.001601654221303761, 0.013102121651172638, 0.01697598397731781, -0.014793312177062035, 0.0333687923848629, -0.008503161370754242, 0.04955152049660683, -0.023376435041427612, -0.027156874537467957, -0.002457240130752325, 0.015783796086907387, 0.04987123981118202, 0.0008528305916115642, -0.00022827934299129993, -0.044575728476047516, -0.049536943435668945, 0.07343974709510803, -0.021824728697538376, 0.007512286305427551, -0.002310866257175803, -0.04007258266210556, 0.023825079202651978, 0.0365498811006546, -0.02736370451748371, 0.05155167356133461, -0.013351045548915863, 0.02486966736614704, 0.05516788735985756, -0.06311006098985672, 0.07089560478925705, 0.045560918748378754, 0.014224533922970295, 0.07385696470737457, -0.0016012303531169891, 0.04057733714580536, 0.004849627614021301, 0.022345248609781265, -0.01437313947826624, 0.04634040594100952, -0.03952536731958389, 0.018066540360450745, -0.025797542184591293, 0.04111044481396675, 0.010011851787567139, 0.013370445929467678, -0.0023811478167772293, 0.02833649143576622, 0.011928469873964787, 0.04637579992413521, -0.026697775349020958, -0.016925469040870667, -0.004547317046672106, 0.02010883204638958, -0.011074592359364033, 0.04444802552461624, -0.009336220100522041, 0.008598420768976212, 0.004109099507331848, -0.05573562905192375, 0.014416921883821487, 0.01941198855638504, -0.02725669927895069, 0.005462490953505039, -0.008166106417775154, 0.02706005424261093, 0.048052627593278885, -0.01339610293507576, 0.040181826800107956, 0.0312558189034462, -0.034357450902462006, -0.018532078713178635, 0.015364719554781914, 0.0662149116396904, -0.011620733886957169, -0.019355593249201775, 0.006697853561490774, -0.010118448175489902, -0.05545050650835037, -0.03542265295982361, 0.0013155193300917745, 0.030399132519960403, -0.03181588649749756, 0.0020581705030053854, -0.0019001521868631244, -0.0164504311978817, -0.006623757071793079, -0.02773553505539894, -0.002543484326452017, -0.06695318222045898, -0.038171038031578064, 0.041763681918382645, -0.031203152611851692, 0.02668345905840397, 0.012185314670205116, -0.031040938571095467, 0.029081890359520912, 0.07543057203292847, -0.030542287975549698, 0.04704529419541359, 0.03245805576443672, -0.009376581758260727, 0.02767918072640896, -0.031857192516326904, -0.005380966234952211, -0.011691166087985039, -0.019275574013590813, 0.05407284200191498, 0.028782112523913383, -0.009710650891065598, -0.002567598130553961, 0.013957654125988483, 0.03310730680823326, 0.046377718448638916, -0.0020765746012330055, 0.009448106400668621, -0.006125589832663536, 0.0441407635807991, -0.013962975703179836, 0.006505885627120733, -0.02248602919280529, 0.039255671203136444, 0.0016748212510719895, 0.0559532605111599, 0.031481076031923294, 0.0067259157076478004, 0.04449500888586044, 0.04148790240287781, -0.028865842148661613, 0.03296149894595146, 0.00866544246673584, 0.008122667670249939, 0.04762658849358559, 0.03235350549221039, -0.01151455007493496, 0.05171976983547211, 0.012362099252641201, -0.041890569031238556, 0.01447149459272623, 0.010646596550941467, -0.019010333344340324, 0.06462064385414124, -0.007839739322662354, 0.02609809674322605, -0.029873134568333626, -0.01251186616718769, 0.03320963680744171, 0.049278322607278824, -0.018910979852080345, 0.0029431076254695654, -0.008413917385041714, 0.007206200156360865, -0.04149765148758888, 0.015554426237940788, 0.031583353877067566, 0.020139850676059723, 0.0019272321369498968, 0.036596741527318954, -0.02777869440615177, -0.017352374270558357, -0.038439467549324036, -0.06500160694122314, -0.05023613199591637, -0.04109108820557594, -0.05714590474963188, 0.025166435167193413, 0.0385359488427639, -0.011238085106015205, 0.030802886933088303, 0.00370606267824769, -0.01700810343027115, -0.03981558606028557, 0.014070206321775913, 0.05116106942296028, -0.00800268817692995, 0.047858502715826035, -0.04383254423737526, 0.03794090449810028, -0.020330218598246574, 0.03867961838841438, -0.031035516411066055, -0.013070444576442242, -0.019014010205864906, -0.03127226606011391, 0.02835124358534813, -0.001037118025124073, -0.0022267058957368135, -0.0036047131288796663, -0.02814418077468872, -0.04764249548316002, 0.013797082006931305, 0.005606494378298521, -0.022826354950666428, -0.016061142086982727, -0.04284144937992096, 0.04546087235212326, 0.031067973002791405, -0.034003566950559616, 0.03304648399353027, 0.03467187657952309, -0.03137500584125519, 0.07705909013748169, 0.021577870473265648, 0.019129080697894096, -0.043371185660362244, 0.05114328861236572, 0.06245071813464165, -0.007972333580255508, -0.043949563056230545, 0.009525091387331486, -0.027393853291869164, 0.018720006570219994, 0.03327387943863869, -0.002950637601315975, -0.027207856997847557, 0.04009412229061127, 0.037634264677762985, -0.03966788202524185, 0.04611537978053093, -0.037540022283792496, -0.031235812231898308, -0.025662338361144066, -0.032457005232572556, 0.004855189006775618, 0.014809618704020977, 0.030324170365929604, -0.019039027392864227, -0.030847303569316864, -0.005131827667355537, 0.0433441624045372, 0.010363548994064331, -0.008689912036061287, 0.016482999548316002, 0.04284914210438728, -0.025442475453019142, 0.025808444246649742, 0.015827463939785957, -0.014432400465011597, -0.019241413101553917, 0.04153953492641449, -0.009036251343786716, -0.009394679218530655, 0.03791443258523941, -0.018610253930091858, 0.030740270391106606, 0.05338018015027046, -0.02731085754930973, -0.01511423010379076, -0.013891957700252533, 0.026981644332408905, 0.03298871964216232, 0.027086134999990463, 0.024371005594730377, 0.01502308901399374, -0.047400955110788345, -0.024281742051243782, 0.02254413813352585, 0.023722881451249123, 0.051313821226358414, -0.07422278821468353, 0.05540839210152626, 0.01755235157907009, -0.035563163459300995, 0.008364958688616753, -0.06815149635076523, 0.003882775781676173, 0.05212746933102608, 0.002888002432882786, 0.0016887394012883306, -0.04390290752053261, 0.01699303835630417, -0.042775675654411316, 0.03864416480064392, 0.03407864272594452, -0.027753302827477455, -0.000551476376131177, -0.017741328105330467, -0.007424773182719946, -0.023432904854416847, -0.05001002177596092, -0.03984849154949188, -0.04359595105051994, 0.0263601653277874, -0.031045326963067055, -0.06220854073762894, -0.03584565967321396, 0.02488662675023079, 0.042362991720438004, 0.023910781368613243, 0.011375151574611664, 0.016229873523116112, 0.03316456079483032, 0.020408743992447853, 0.01024723146110773, 0.0021036220714449883, -0.009182022884488106, -0.0020368569530546665, 0.02194601483643055, 0.004532899707555771, -0.027296634390950203, -0.021427420899271965, -0.03027581423521042, -0.051763832569122314, 0.043693337589502335, 0.0008196413982659578, -0.02188306860625744, -0.03364483267068863, 0.014570594765245914, 0.0014697250444442034, 0.009463044814765453, -0.01048135757446289, -0.0033118268474936485, -0.05161239951848984, 0.04504762962460518, 0.03659448400139809, -0.016516169533133507, -0.01964368112385273, -0.009784199297428131, 0.06000975891947746, 0.04053144156932831, -0.03866102546453476, -0.0197701808065176, -0.035077646374702454, -0.055609382688999176, -0.034048713743686676, -0.006374841555953026, 0.043982911854982376, 0.023539157584309578, 0.025981910526752472, -0.04222555458545685, 0.04127446562051773, 0.0318450853228569, -0.019621746614575386, -0.00011016799544449896, 0.010862018913030624, -0.008656617254018784, 0.00012846953177358955, 0.01275782659649849, -0.03514527902007103, -0.04308904707431793, 0.03098783642053604, -0.04774431139230728, -0.013467571698129177, 0.026308659464120865, -0.05817513167858124, 0.010995963588356972, 0.009305565617978573, -0.00408173818141222, 0.009561333805322647, -0.012239472009241581, -0.01000192854553461, -0.006993595045059919, 0.044520147144794464, -0.016694307327270508, -0.04790586605668068, 0.04388316720724106, -0.018872613087296486, -0.04325588420033455, 0.009491621516644955, 0.06400001049041748, -0.01753893867135048, -0.012202812358736992, 0.033887527883052826, -0.07928106188774109, 0.0007606957806274295, -0.06888967007398605, -0.007834430783987045, -0.018102554604411125, -0.035500604659318924, 0.013646547682583332, -0.049513500183820724, 0.03092990815639496, 0.021240971982479095, -0.01965339481830597, -0.04226537421345711, -0.06461034715175629, -0.026225196197628975, -0.010455873794853687, -0.023619595915079117, 0.011012894101440907, -0.0058186668902635574, 0.020480290055274963, 0.026136595755815506, 0.006938032805919647, 0.008137645199894905, -0.008302201516926289, -0.055892761796712875, -0.0037943976931273937, 0.021056726574897766, 0.027332235127687454, 0.007325142156332731, -0.02509213052690029, -0.0342884287238121, -0.013367397710680962, 0.02273058146238327, -0.00952532421797514, -0.020077243447303772, 0.023536434397101402, -0.03369554132223129, -0.0047716014087200165, -0.03193752095103264, -0.003014632500708103, -0.012135962024331093, 0.035223767161369324, 0.01644022949039936, 0.03274305537343025, -0.010954673402011395, 0.011763940565288067, -0.05333711579442024, 0.0396168977022171, 0.022077521309256554, -0.03362451121211052, -0.03299696370959282, 0.0830085277557373, 0.009710212238132954, 0.04731593653559685, 0.008458847180008888, -0.023708343505859375, -0.034148454666137695, -0.06391382962465286, -0.01649220660328865, -0.04645294323563576, -0.03865961357951164, -0.049856990575790405, -0.04384182393550873, -0.02551591582596302, 0.03895121067762375, 0.00814505573362112, -0.04249514266848564, 0.033470768481492996, -0.00431781355291605, -0.00308488798327744, -0.029584839940071106, -0.009584163315594196, -0.018891921266913414, -0.009221821092069149, -0.02055370807647705, 0.042589180171489716, 0.014673697762191296, 0.0049493806436657906, 0.0324297733604908, 0.04715913161635399, 0.025085732340812683, -0.034376099705696106, -0.036586467176675797, -0.029144831001758575, -0.007800330873578787, 0.009786897338926792, 0.00946533028036356, 0.024545585736632347, -0.040269117802381516, 0.03003755584359169, -0.04627484455704689, -0.001147152273915708, -0.01823006197810173, -0.0037314724177122116, -0.023949990049004555, 0.01389632374048233, 0.04445533826947212, -0.023422211408615112, 0.00474739633500576, 0.004644467495381832, 0.04765406250953674, 0.054622091352939606, -0.005842592101544142, -0.019854234531521797, -0.02762656658887863, -0.015910357236862183, -0.052765101194381714, 0.0183732807636261, -0.03295421600341797, -0.029487939551472664, -0.05621505156159401, -0.00894775241613388, 0.023716557770967484, 0.0023506367579102516, 0.06325400620698929, 0.0835702121257782, -0.009481225162744522, -0.01666177250444889, -0.03269161283969879, 0.01969783753156662, 0.055059850215911865, -0.02972426638007164, -0.004562255460768938, 0.002075742231681943, -0.02057786099612713, 0.003350823651999235, -0.05474776029586792, -0.05135677754878998, -0.06298818439245224, -0.029680587351322174, 0.05230672284960747, -0.03087163157761097, 0.033542923629283905, -0.012739194557070732, -0.03527819737792015, -0.0447314977645874, 0.043666113168001175, -0.022042950615286827, 0.0033656712621450424, 0.038206797093153, 0.01027913298457861, -0.008666494861245155, 0.04907550290226936, 0.004841651301831007, -0.006967723369598389, -0.01797996275126934, 0.0727202445268631, -0.021221768110990524, -0.04755149409174919, -0.0008811696898192167, 0.019410111010074615, -0.06499900668859482, -0.043374352157115936, -0.02327119931578636, -0.020906632766127586, 0.014814172871410847, -0.018673550337553024, 0.041120629757642746, 0.010449239052832127, -0.028515955433249474, 0.0024928569328039885, 0.02906768210232258, -0.0114331329241395, 0.059455569833517075, 0.008220435120165348, 0.05177425965666771, -0.04517785459756851, 0.00332704302854836, 0.014439222402870655, 0.004533287137746811, -0.0209310632199049, -0.02766254171729088, -0.01088582631200552, -0.010678904131054878, 0.001067858305759728, 0.023901300504803658, -0.013529272750020027, 0.05272078514099121, 0.012149724178016186, -0.015197906643152237, 0.019166085869073868, 0.015014388598501682, -0.010250965133309364, -0.004761661868542433, -0.04463030770421028, -0.06423522531986237, -0.03121398389339447, 0.016088005155324936, -0.012711388058960438, 0.03503449633717537, -0.054999254643917084, -0.009778217412531376, 0.04013529792428017, -0.014899798668920994, -0.006448506843298674, -0.07339175790548325, -0.04752499610185623, -0.03242958337068558, -0.0674898624420166, -0.05012563616037369, 0.02455163560807705, 0.002544073387980461, 0.04164746031165123, 0.017806116491556168, -0.020910998806357384, 0.0069092391058802605, -0.0028036574367433786, -0.0008776200120337307, 0.0010072272270917892, -0.02720542810857296, 0.029447680339217186, -0.046753499656915665, -0.03632291406393051, -0.03729112446308136, 0.011126713827252388, 0.006485837511718273, -0.024096893146634102, -0.0055693406611680984, 0.02690538391470909, 0.0020188610069453716, -0.01145495567470789, -0.003915432374924421, -0.0009478053543716669, 0.0006108654197305441, -0.01813790202140808, -0.017140164971351624, 0.06947049498558044, 0.0033344251569360495, 0.0550910085439682, 0.037906549870967865, -0.00828349869698286, 0.015206767246127129, 0.029493683949112892, -0.03321889787912369, -0.031681470572948456, 0.0220078956335783, 0.008940921165049076, 0.00494799017906189, -0.03717946261167526, -0.0365014523267746, 0.0004590070166159421, -0.05393897369503975, 0.023596912622451782, -0.002635310171172023, 0.01432136818766594, 0.004748275503516197, -0.01310434564948082, -0.050025030970573425, 0.04137836769223213, -0.02323661558330059, 0.03701726347208023, 0.008072203025221825, 0.008047359064221382, 0.009946119971573353, 0.01199989952147007, 0.0020266850478947163, -0.0008395992917940021, 0.016871705651283264, -0.044688630849123, 0.003774223616346717, 0.019997509196400642, -0.0064849830232560635, 0.025640161707997322, -0.014924375340342522, -0.01407376118004322, -0.033260658383369446, -0.029150471091270447, -0.005113160237669945, 0.04834946617484093, -0.020797671750187874, -0.0010277389083057642, 0.06689286231994629, -0.05088904872536659, -0.04165526106953621, 0.006861176807433367, -0.06787025183439255, -0.004682707600295544, 0.04329786077141762, -0.007801372557878494, -0.004164369311183691, -0.02547890692949295, -0.023924630135297775, 0.010965576395392418, -0.0030196590814739466, -0.01923154667019844, -0.011652886867523193, 0.03640136867761612, 0.0020237425342202187, 0.030895527452230453, -0.03609758988022804, -0.02450600452721119, 0.015559634193778038, 0.012933209538459778, -0.03177529573440552, -0.06442436575889587, 0.009509671479463577, 0.02684403397142887, 0.012225902639329433, -0.01776161603629589, 0.0025807423517107964, -0.006442548241466284, -0.0004547936550807208, -0.015347524546086788, -0.0012633895967155695, 0.042296502739191055, 0.035056065768003464, 0.023099150508642197, 0.029755849391222, -0.026546621695160866, -0.012974106706678867, 0.021538276225328445, 0.009500507265329361, -0.01128201000392437, -0.043144483119249344, 0.03982435166835785, 0.04235953837633133, 0.004557398147881031, 0.03611049801111221, 0.007688912097364664, 0.06703992933034897, -0.01994297094643116, 0.03373008966445923, -0.019380591809749603, 0.052733227610588074, 0.03545499965548515, 0.03838634118437767, 0.004229060374200344, 0.041297972202301025, 0.05219050869345665, -0.0007173138437792659, 0.005803675856441259, 0.04118554666638374, 0.044733237475156784, -0.033932775259017944, 0.031269852072000504, -0.015881789848208427, 0.03939371556043625, 0.00693504186347127, -0.031784072518348694, -0.02578558214008808, -0.023768674582242966, 0.016091780737042427, -0.012514469213783741, 0.024853570386767387, 0.04983372613787651, -0.02426235005259514, -0.001541317906230688, -0.004065919667482376, -0.022694120183587074, -0.041701480746269226, 0.029729574918746948, 0.003977744374424219, 0.01275221724063158, 0.027665387839078903, 0.05100744590163231, -0.0450807623565197, 0.02355984039604664, 0.01659320294857025, -0.01142030768096447, -0.032829076051712036, 0.03719251975417137, 0.013793973252177238, -0.026483846828341484, -0.06799513101577759, 0.007597767747938633, -0.07062311470508575, -0.007946038618683815, -0.017029989510774612, -0.02149307169020176, 0.03053952008485794, -0.02760442905128002, 0.0038516614586114883, -0.027779361233115196, 0.03941057249903679, -0.05576275661587715, -0.01693519577383995, 0.03665374591946602, 0.0008011967875063419, -0.03318379074335098, 0.03754226118326187, 0.023816822096705437, 0.030016953125596046, 0.013824434950947762, 0.08146843314170837, 0.012325593270361423, 0.03959234431385994, 0.0378805547952652, -0.04375080019235611, -0.034616462886333466, 0.015047512017190456, -0.03333945944905281, -0.0545729324221611, -0.016963720321655273, -0.037812672555446625, -0.001588532468304038, -0.004125515464693308, -0.003435589838773012, -0.005297101568430662, 0.024899804964661598, -0.0033153132535517216, -0.03278843313455582, 0.021892113611102104, 0.03753707557916641, -0.04809857904911041, 0.04475656524300575, 0.00601884676143527, 0.0462290495634079, -0.00725122494623065, -0.021275173872709274, -0.031036579981446266, -0.04061053693294525, 0.00988532230257988, -0.055220767855644226, 0.03486643731594086, -0.019817830994725227, -0.017123237252235413, -0.01569036766886711, -0.04338131099939346, -0.03337489441037178, -0.0014026323333382607, -0.043152451515197754, -0.02837163396179676, 0.04229681193828583, 0.032256919890642166, -0.003047249047085643, 0.0082315132021904, -0.013201845809817314, 0.016018839552998543, 0.023724384605884552, 0.07733821123838425, -0.03929860144853592, 0.03802620247006416, 0.01611308567225933, -0.022384170442819595, 0.021490806713700294, -0.02126369997859001, 0.02644849568605423, -0.04563935473561287, -0.016252590343356133, -0.01960241049528122, 0.029993651434779167, -0.03179790824651718, -0.05160054191946983, -0.004445114638656378, 0.02802952192723751, 0.03215484693646431, -0.015414552763104439, -0.07201194018125534, -0.0022011520341038704, -0.045640088617801666, -0.01787910982966423, -0.03347025811672211, 0.01629936881363392, -0.019398577511310577, -0.038179341703653336, -0.010403926484286785, -0.04775923117995262, 0.1532471925020218, 0.030912507325410843, 0.0318865105509758, -0.0050027878023684025, 0.013458735309541225, 0.009501131251454353, 0.00847749225795269, -0.012381006963551044, 0.0003853099187836051, -0.03151171654462814, 0.05062950402498245, -0.026081711053848267, 0.03166322037577629, 0.004167395178228617, 0.014390387572348118, 0.05682599917054176, -0.02927449159324169, 0.015482351183891296, 0.02381868287920952, -0.04548908397555351, -0.052372999489307404, 0.020914865657687187, 0.02137609012424946, 0.007283801678568125, -0.01958458684384823, 0.04962258040904999, 0.03652914986014366, -0.014134394004940987, -0.015556840226054192, -0.007457884028553963, 0.026289628818631172, -0.021992556750774384, 0.035473547875881195, -0.020919032394886017, -0.020199093967676163, 0.010494580492377281, -0.008967817761003971, 0.019398219883441925, -0.00317177246324718, 0.013259511440992355, -0.014344649389386177, 0.023209409788250923, 0.007186419330537319, -0.03881659731268883, -0.00615995517000556, 0.01701565459370613, -0.019592061638832092, 0.009913946501910686, 0.004792599473148584, -0.03814532980322838, 0.048714980483055115, -0.03579535335302353, 0.05313818156719208, -0.01413126289844513, -0.052262384444475174, 0.02750125154852867, 0.0250205360352993, -0.01245672907680273, 0.008989695459604263, 0.02042940817773342, 0.041750118136405945, -0.014211064204573631, -0.01826912723481655, -0.008182082325220108, -0.016702841967344284, 0.037594299763441086, 0.035198990255594254, -0.020343543961644173, -0.008243512362241745, -0.06437583267688751, -0.028491711243987083, -0.019268454983830452, -0.014343209564685822, -0.0344390831887722, 0.02423921413719654, 0.030340686440467834, -0.008358868770301342, 0.02875453233718872, -0.01388969924300909, -0.011323165148496628, -0.022683924064040184, -0.05330812931060791, 0.012365730479359627, -0.006032525561749935, 0.02703058160841465, -0.0024174549616873264, -0.01790809817612171, -0.04546504095196724, -0.03421549126505852, 0.046002097427845, 0.04489096254110336, -0.00943805556744337, -0.018619727343320847, -0.016515487805008888, -0.02232873998582363 ]
Shackleford's offerings at the May 23-24 Fasig-Tipton Midlantic 2-year-olds in Training Sale were led by a $250,000 colt, with Ben McElroy placing the winning bid for the Casse Sales consignment. Listed as hip No. 6, the chestnut is the second foal out of International Cry, an unraced daughter of Street Cry (IRE). International Cry is a daughter of $1.5 million earner and multiple graded winner Gold Mover. Shackleford, whose first crop are 2-year-olds of 2016, already has three winners to date, including the TDN Rising Star Shackin Up, leading all freshman sires.
[ -0.0037324849981814623, -0.014022677205502987, -0.0073124379850924015, -0.009885636158287525, -0.023430099710822105, 0.02708439715206623, -0.003115295898169279, 0.02231529727578163, 0.015341401100158691, 0.008432815782725811, 0.050273798406124115, 0.013527031987905502, -0.008757760748267174, -0.024355052039027214, 0.0012110808165743947, 0.015609608963131905, 0.014323499985039234, -0.030939755961298943, 0.0037090214900672436, -0.01703818328678608, 0.03951536864042282, -0.0008297648746520281, -0.07464710623025894, -0.019014446064829826, -0.015722962096333504, 0.034490421414375305, 0.005022676195949316, -0.025916215032339096, 0.05211871489882469, 0.036692261695861816, -0.02020089328289032, -0.027486668899655342, 0.018886590376496315, -0.015710260719060898, -0.049740441143512726, -0.014943452551960945, 0.03969629108905792, -0.0020963724236935377, -0.03241799771785736, -0.03454836457967758, 0.0181784275919199, -0.0007271715439856052, 0.04111418500542641, -0.013765973970293999, -0.012825977988541126, -0.017388181760907173, -0.03682917729020119, -0.038401007652282715, 0.0202347319573164, -0.03790850564837456, -0.01157454401254654, -0.029113469645380974, 0.03632016107439995, -0.02567625604569912, 0.008364164270460606, 0.026872988790273666, 0.02666846662759781, -0.03481690585613251, -0.02828717976808548, 0.037463340908288956, 0.04030469059944153, 0.0030613853596150875, 0.02229228988289833, -0.05437590181827545, 0.01796245574951172, -0.008169092237949371, 0.00045088722254149616, -0.039406705647706985, 0.008562864735722542, -0.03487937152385712, 0.009731442667543888, 0.012792838737368584, -0.03640717640519142, -0.0022595657501369715, -0.011079972609877586, -0.017978614196181297, -0.007011232897639275, 0.004321724642068148, -0.00552328722551465, -0.00030867353780195117, 0.021423183381557465, 0.049507658928632736, 0.026931604370474815, -0.007666002959012985, -0.04260138049721718, -0.011379234492778778, -0.019838960841298103, 0.004020639695227146, -0.020553164184093475, 0.006162452977150679, -0.0145667539909482, 0.0488155335187912, -0.0036434922367334366, -0.01201361883431673, 0.03451801836490631, 0.029321778565645218, -0.01782839000225067, 0.025385847315192223, -0.02388135902583599, -0.01894127018749714, 0.026031799614429474, 0.023526255041360855, 0.00878491997718811, 0.029121583327651024, -0.03959384933114052, -0.021667344495654106, -0.002098342403769493, -0.01458453293889761, -0.037036873400211334, -0.0172551441937685, 0.00753855099901557, -0.02205083705484867, 0.02309369668364525, -0.0030525389593094587, 0.002725865226238966, 0.03089582733809948, -0.04555534943938255, 0.03631812706589699, -0.04125671461224556, 0.022867351770401, 0.03601844981312752, 0.014602667652070522, 0.0191509947180748, -0.01686064712703228, 0.01168655976653099, -0.027028264477849007, -0.02469731494784355, 0.06031421944499016, -0.028492676094174385, -0.014540622942149639, 0.012102384120225906, -0.05033610388636589, -0.009749115444719791, 0.03305526077747345, 0.012545826844871044, 0.013052515685558319, -0.0015373562928289175, 0.042735081166028976, 0.009419945068657398, -0.06977175921201706, 0.04183858260512352, 0.02491287887096405, 0.004398176912218332, 0.0784129649400711, 0.026976780965924263, 0.01644097827374935, -0.006769431289285421, -0.03197057545185089, -0.026818960905075073, 0.022456351667642593, -0.023644138127565384, 0.04692231863737106, 0.00010247791942674667, -0.00003336113877594471, 0.0067087323404848576, 0.014038094319403172, -0.009735405445098877, 0.024323683232069016, -0.008212505839765072, 0.024224767461419106, -0.021722808480262756, 0.007625320926308632, -0.012531380169093609, 0.029027491807937622, -0.0020232521928846836, 0.030049173161387444, -0.0211202222853899, -0.006849074736237526, -0.013793650083243847, -0.004791242070496082, 0.010875017382204533, 0.024161621928215027, -0.02224825695157051, 0.013716579414904118, -0.015145668759942055, 0.066902756690979, 0.030184874311089516, 0.02155442163348198, 0.020223652943968773, 0.042752694338560104, -0.02224273420870304, -0.03597063571214676, 0.02242347225546837, 0.05262770131230354, -0.010810417123138905, 0.01288539171218872, 0.00739025603979826, -0.01543576829135418, -0.03127925843000412, -0.01573590561747551, -0.021242985501885414, 0.04758153855800629, -0.03425297513604164, 0.02478080615401268, 0.013288100250065327, -0.013824288733303547, -0.013155462220311165, -0.04648290574550629, -0.0026086627040058374, -0.053588707000017166, -0.03846478462219238, 0.08532139658927917, -0.01876172237098217, 0.03538455814123154, -0.009191294200718403, -0.031983524560928345, 0.025490926578640938, 0.0405203178524971, -0.05100945383310318, -0.0254023689776659, 0.032850753515958786, -0.007467195857316256, -0.007555487100034952, -0.0032117459923028946, 0.00984527263790369, 0.027719251811504364, -0.036989547312259674, 0.04698130860924721, 0.0037803654558956623, 0.003440575674176216, 0.016189033165574074, 0.012980216182768345, 0.029014362022280693, 0.03520702198147774, -0.00023856792540755123, -0.022494221106171608, 0.014142950996756554, 0.06809111684560776, -0.0035974166821688414, -0.008657878264784813, -0.005370871629565954, 0.0670580044388771, 0.021449584513902664, 0.06894919276237488, 0.04798739403486252, -0.006134332157671452, 0.05002756789326668, 0.026590464636683464, -0.025860600173473358, 0.025724569335579872, -0.030612489208579063, 0.00658563245087862, 0.04807518050074577, 0.01663089729845524, 0.0015270981239154935, 0.01116332970559597, -0.014089981094002724, 0.01823689043521881, 0.014961093664169312, 0.046584732830524445, -0.019938699901103973, 0.056113943457603455, 0.0050545986741781235, 0.027736244723200798, -0.031022105365991592, -0.013828425668179989, 0.05875224620103836, 0.03903913125395775, -0.015953902155160904, 0.0007582541438750923, -0.0021864543668925762, 0.000587894523050636, -0.0008179310243576765, -0.009727985598146915, 0.04071519523859024, 0.01734151504933834, -0.011665478348731995, 0.025537345558404922, -0.017632681876420975, -0.04374914988875389, -0.03293811157345772, -0.05023452639579773, -0.03994707390666008, -0.052654702216386795, -0.04120505601167679, 0.014720765873789787, 0.0384497232735157, -0.03253786265850067, 0.048593416810035706, 0.007794992532581091, -0.011609629727900028, -0.008685401640832424, -0.01402719970792532, 0.051181431859731674, 0.008337440900504589, 0.05253604054450989, -0.03546486422419548, 0.042790576815605164, 0.001149090239778161, 0.04680812731385231, -0.011583979241549969, -0.010262556374073029, 0.021986013278365135, -0.028579458594322205, 0.018408697098493576, -0.018934689462184906, -0.03858894109725952, -0.03739716857671738, -0.026014726608991623, -0.045761171728372574, -0.000770650221966207, 0.007403418887406588, 0.013209519907832146, -0.017246611416339874, -0.04246566817164421, 0.04743887484073639, 0.041541483253240585, -0.04691379517316818, 0.027051707729697227, 0.039878055453300476, -0.047613997012376785, 0.013751358725130558, 0.04828474670648575, 0.011884222738444805, -0.06719853729009628, 0.06230594590306282, 0.021246569231152534, -0.001535256626084447, -0.05435384437441826, -0.03339768201112747, -0.018454141914844513, 0.012291450053453445, 0.009638071060180664, -0.01045171357691288, -0.03116670995950699, 0.03458587825298309, 0.030091043561697006, -0.05469943583011627, 0.02768554724752903, -0.027866238728165627, -0.0170242078602314, -0.0379079170525074, -0.035883497446775436, 0.012147701345384121, 0.012540124356746674, 0.04234008491039276, -0.005836897064000368, -0.02691301517188549, 0.006058662664145231, 0.03862950950860977, 0.0495610386133194, -0.00528751453384757, 0.03153810277581215, 0.04153120517730713, -0.014802680350840092, 0.0012833926593884826, 0.0008317750180140138, -0.03427385166287422, -0.017612067982554436, 0.03179040551185608, -0.026047976687550545, 0.005252371542155743, 0.044132061302661896, 0.007570147980004549, 0.029245702549815178, 0.057075440883636475, -0.026622937992215157, 0.0053345076739788055, 0.028793565928936005, -0.00910128839313984, 0.012965260073542595, 0.005661302711814642, 0.02790500409901142, -0.034747522324323654, -0.05003487691283226, -0.04960965737700462, 0.015793396160006523, 0.021790985018014908, 0.04713372141122818, -0.0676291286945343, 0.06859517842531204, 0.012086237780749798, 0.004882181063294411, 0.03877367451786995, -0.026085013523697853, -0.030687110498547554, 0.021180346608161926, -0.014484687708318233, 0.040411658585071564, -0.047356605529785156, 0.05252804607152939, -0.00046535674482584, 0.02568287029862404, 0.0450446791946888, 0.025240479037165642, 0.017401432618498802, -0.024730678647756577, -0.02101794071495533, -0.01400819607079029, -0.011927474290132523, -0.006754294503480196, -0.012785104103386402, 0.012841930612921715, 0.015424344688653946, -0.04092419147491455, -0.03824785351753235, 0.041330087929964066, 0.01260452065616846, 0.03658642619848251, -0.017763296142220497, 0.06489435583353043, -0.018855275586247444, 0.012811204418540001, 0.030095744878053665, -0.01907171867787838, 0.016499992460012436, -0.02259244956076145, 0.02701578103005886, 0.012550696730613708, -0.0415026918053627, -0.01614997908473015, -0.007031799294054508, -0.05670534446835518, 0.03316551074385643, 0.018601905554533005, -0.03414119407534599, -0.03919829800724983, 0.01462335605174303, -0.009788786061108112, 0.04480547085404396, -0.018405526876449585, -0.016049008816480637, 0.012274142354726791, 0.03929481282830238, 0.04725157469511032, -0.06011530011892319, 0.03348573297262192, -0.06589610874652863, 0.04545937851071358, 0.03643511235713959, -0.00911022536456585, -0.031963903456926346, -0.0135829271748662, -0.029049769043922424, -0.016401037573814392, -0.011270864866673946, 0.03820211812853813, 0.006377203390002251, -0.01304173655807972, -0.04479743912816048, 0.040579620748758316, 0.03817148134112358, 0.01873124949634075, 0.012855290435254574, 0.031069034710526466, -0.0020148109178990126, -0.0280170738697052, 0.011505981907248497, 0.01794550009071827, -0.03170234337449074, 0.03670261427760124, -0.05749377980828285, 0.01653970219194889, -0.015173826366662979, -0.0194085706025362, -0.010485891252756119, 0.0010240481933578849, -0.004432084038853645, 0.01332936529070139, -0.006817433051764965, 0.016037769615650177, -0.027078798040747643, 0.054186705499887466, -0.037718579173088074, -0.061293549835681915, 0.03529928997159004, 0.017864147201180458, -0.009298555552959442, 0.042215559631586075, 0.039163738489151, -0.01420507300645113, -0.0026318577583879232, 0.05001535266637802, -0.06379947066307068, 0.031322747468948364, -0.04027029126882553, 0.028165852651000023, -0.02338309772312641, -0.05066422373056412, 0.03773030638694763, -0.050630245357751846, 0.04728347435593605, -0.025676853954792023, -0.005893028806895018, -0.04538536071777344, -0.04724229872226715, -0.036270979791879654, -0.0360586978495121, -0.017209473997354507, 0.02237556129693985, 0.013139315880835056, -0.038407810032367706, 0.012432143092155457, -0.015602175146341324, -0.00022623820404987782, -0.00987594947218895, -0.023013895377516747, 0.009381717070937157, 0.027644723653793335, 0.012867657467722893, 0.026460489258170128, -0.023422373458743095, -0.029368368908762932, 0.015483053401112556, -0.006719124969094992, -0.049588534981012344, -0.03255242481827736, -0.008305614814162254, -0.03280665725469589, -0.011779467575252056, -0.022585740312933922, 0.0008034440688788891, -0.017068248242139816, 0.0037772096693515778, 0.010312817059457302, 0.010662315413355827, 0.0023252021055668592, 0.02516169287264347, -0.022877737879753113, 0.04326503723859787, 0.05852054804563522, -0.04840114712715149, -0.028696270659565926, 0.048809755593538284, 0.01711641252040863, 0.04905521497130394, 0.004904573317617178, -0.015320592559874058, -0.04165341705083847, -0.03633497282862663, 0.01567206159234047, -0.02528907172381878, 0.004571429453790188, -0.056892279535532, -0.018581703305244446, -0.010389397852122784, 0.04098781198263168, 0.0005509430193342268, 0.008390759117901325, 0.010015932843089104, -0.06338957697153091, 0.0027143950574100018, -0.040672220289707184, -0.053852930665016174, -0.040991999208927155, -0.027233269065618515, 0.011096663773059845, 0.043545905500650406, -0.0058536529541015625, 0.0364375002682209, 0.002180129522457719, -0.0024378173984587193, 0.026610562577843666, -0.008240750059485435, -0.04868944734334946, -0.021923460066318512, 0.017757389694452286, 0.004009130876511335, 0.008770988322794437, -0.003917759750038385, -0.008425242267549038, 0.04481767117977142, -0.043175194412469864, -0.016365421935915947, -0.015595853328704834, -0.040104739367961884, -0.0038711740635335445, -0.03627365827560425, 0.07166020572185516, 0.015962081030011177, 0.035236068069934845, -0.040933918207883835, 0.05021986365318298, 0.053960904479026794, 0.011593565344810486, -0.0199839286506176, -0.035441942512989044, -0.032838210463523865, -0.051062557846307755, 0.03158477321267128, -0.031816449016332626, -0.01954396814107895, -0.03614329546689987, -0.004710872657597065, 0.02387755550444126, 0.009910708293318748, 0.042057305574417114, 0.050203025341033936, -0.023770084604620934, -0.017034025862812996, -0.06337650865316391, 0.013239935040473938, 0.035283301025629044, -0.0054786535911262035, -0.02011745795607567, -0.04440420866012573, -0.029483869671821594, 0.015632087364792824, -0.037928272038698196, -0.04076848179101944, -0.050153736025094986, 0.0005544890300370753, 0.042257677763700485, -0.00309274741448462, 0.020533114671707153, -0.0456683523952961, -0.03982524201273918, -0.015977492555975914, 0.03753962740302086, 0.019786734133958817, -0.00022549343702849, 0.06433990597724915, 0.011021527461707592, -0.036461591720581055, 0.011505689471960068, 0.01254601962864399, -0.012582576833665371, -0.03707815334200859, 0.08327372372150421, -0.021653642877936363, -0.05317714065313339, 0.04521612450480461, 0.03845508024096489, -0.05950896441936493, -0.04459217190742493, -0.005977747030556202, 0.014094652608036995, 0.016870463266968727, -0.023087676614522934, 0.027824383229017258, 0.015425731427967548, -0.020219171419739723, 0.019232509657740593, 0.02900066412985325, -0.006645240820944309, 0.04623064771294594, -0.01611323282122612, 0.025994008406996727, -0.041804779320955276, -0.01927792653441429, 0.018241645768284798, -0.01591501757502556, -0.029395410791039467, -0.05063088983297348, -0.005268089938908815, 0.013742281123995781, -0.008944693952798843, 0.005862192250788212, -0.02070685289800167, 0.009920689277350903, 0.00844266451895237, -0.006957129575312138, 0.04065701737999916, 0.01918257586658001, -0.017194243147969246, -0.0017307264497503638, -0.01834382489323616, -0.06320720911026001, -0.03732789680361748, 0.021185539662837982, 0.02741287276148796, 0.023629028350114822, -0.03590865060687065, 0.035169146955013275, 0.029576411470770836, 0.004553348291665316, -0.013386650942265987, -0.05018189921975136, -0.032288555055856705, -0.016444312408566475, -0.044539399445056915, -0.007701822556555271, -0.004766989499330521, 0.01859385333955288, 0.020286260172724724, -0.0026902775280177593, -0.019519371911883354, 0.021804912015795708, 0.00856234785169363, -0.0012637174222618341, 0.028457362204790115, -0.049292705953121185, -0.0012253986205905676, -0.02631126157939434, -0.06530172377824783, -0.04020184651017189, -0.014537857845425606, 0.026608582586050034, -0.02323862910270691, -0.011545287445187569, 0.02160218171775341, -0.0025463649071753025, 0.029922490939497948, 0.01176405604928732, -0.018316054716706276, -0.007081871386617422, -0.059504348784685135, -0.011779699474573135, 0.0320281907916069, 0.0026690680533647537, 0.04631233960390091, 0.022010458633303642, -0.020799489691853523, 0.04674632102251053, 0.019109217450022697, -0.000736007874365896, 0.01575702615082264, 0.006682642735540867, -0.0009291675523854792, 0.017151281237602234, -0.00832230132073164, -0.033661775290966034, -0.008538835681974888, -0.020794015377759933, 0.0333116352558136, -0.015139144845306873, 0.015103967860341072, 0.03331181779503822, -0.01968512125313282, -0.03858109563589096, 0.06988221406936646, 0.0027039770502597094, 0.035249076783657074, -0.012670482508838177, 0.04282371327280998, 0.037062548100948334, 0.014311126433312893, 0.015448867343366146, 0.03101092204451561, 0.011492205783724785, -0.03465908393263817, 0.03506501764059067, -0.009701107628643513, -0.017562968656420708, 0.03721410781145096, -0.018609151244163513, -0.0260227769613266, -0.056668419390916824, -0.04708949103951454, -0.0044857291504740715, 0.005162343382835388, 0.03175589069724083, 0.011738304980099201, 0.008385016582906246, -0.028261687606573105, -0.060786809772253036, 0.019523952156305313, -0.034615494310855865, -0.033067118376493454, 0.03189294785261154, 0.0011015704367309809, 0.005813117604702711, -0.017948796972632408, -0.03897098824381828, 0.02506587654352188, -0.02461203746497631, 0.0010859692702069879, -0.03493194282054901, 0.01408192329108715, -0.009494852274656296, 0.026040954515337944, 0.005975980777293444, 0.00213810708373785, 0.011706155724823475, 0.04520239308476448, -0.054447658360004425, -0.046217724680900574, -0.0068138232454657555, 0.04872680455446243, 0.016999024897813797, 0.007325290236622095, 0.00853467546403408, -0.019665079191327095, -0.016235744580626488, 0.03343251720070839, -0.007245409302413464, 0.022184379398822784, -0.004207655321806669, -0.0027949707582592964, -0.002521623857319355, -0.018568439409136772, -0.025186918675899506, 0.03168989717960358, 0.014652165584266186, -0.04074191302061081, -0.03063567541539669, 0.03582198545336723, 0.021828291937708855, 0.005220319144427776, 0.0450122132897377, 0.0315302275121212, 0.026935867965221405, -0.011413024738430977, 0.032094355672597885, -0.010101675987243652, 0.0521053746342659, 0.029237952083349228, 0.04847078397870064, 0.004134916700422764, 0.02869078889489174, 0.0641394853591919, -0.030781924724578857, 0.008978662081062794, 0.0551183745265007, 0.015378356911242008, -0.023081589490175247, 0.009552116505801678, -0.038727495819330215, 0.004925673361867666, -0.02540791779756546, -0.0424228236079216, -0.008725388906896114, -0.02999083511531353, -0.020533980801701546, 0.005271303933113813, -0.01622319221496582, 0.05190063267946243, -0.003225101390853524, 0.006110216956585646, 0.008766918443143368, -0.027442529797554016, 0.007935642264783382, 0.028843184933066368, -0.0019637939985841513, -0.0028619151562452316, 0.03460012003779411, 0.0365796722471714, 0.006769084371626377, 0.06870243698358536, 0.017985330894589424, -0.017223281785845757, -0.03514434024691582, 0.005221869330853224, -0.002397789154201746, 0.0018535027047619224, -0.021399803459644318, -0.026058409363031387, -0.07656416296958923, 0.03936361148953438, -0.008904160931706429, -0.005169338546693325, 0.016140611842274666, -0.013364442624151707, -0.011552495881915092, -0.014953113161027431, 0.05346021056175232, -0.05662791430950165, 0.007828340865671635, 0.02212345600128174, -0.0185746718198061, -0.022545576095581055, 0.03490370512008667, 0.003437260864302516, 0.027816595509648323, -0.01416065078228712, 0.047678008675575256, -0.005615381058305502, 0.018264809623360634, 0.04633769765496254, -0.028674134984612465, 0.006178800016641617, 0.019459377974271774, -0.015488673932850361, -0.06297678500413895, -0.035637564957141876, -0.03731316328048706, 0.001694381469860673, -0.019037064164876938, -0.030148068442940712, 0.004935704171657562, 0.028506360948085785, 0.0010276659158989787, -0.05484430491924286, -0.014638843014836311, 0.014870451763272285, -0.08099335432052612, 0.021852510049939156, 0.03448446840047836, 0.056735388934612274, -0.0020509485621005297, -0.017235590144991875, -0.05954723805189133, -0.05488590523600578, 0.016546644270420074, -0.048766762018203735, 0.027345195412635803, -0.012126635760068893, -0.05224742740392685, -0.009580218233168125, -0.04162444919347763, -0.03339220583438873, -0.0094677172601223, -0.055419065058231354, -0.04040785878896713, 0.03444307669997215, 0.04783768951892853, 0.008544028736650944, 0.0011722779599949718, -0.015393122099339962, -0.02535894885659218, 0.03833543881773949, 0.06377459317445755, 0.012179255485534668, 0.023688210174441338, 0.019414065405726433, -0.01560232788324356, 0.012843574397265911, -0.03009563870728016, 0.033583950251340866, -0.019210325554013252, -0.008545213378965855, -0.038139645010232925, 0.0005207540816627443, -0.021657735109329224, -0.06699639558792114, 0.028378387913107872, -0.008569755591452122, 0.0046789804473519325, -0.03373461216688156, -0.09329816699028015, 0.021462947130203247, -0.047630663961172104, -0.02401443012058735, -0.012985785491764545, 0.012020045891404152, 0.005412898492068052, 0.0033798133954405785, -0.02786943130195141, -0.05916202440857887, 0.17577435076236725, 0.031164944171905518, 0.02893299236893654, -0.005934267770498991, 0.045797426253557205, 0.03213467448949814, 0.029216239228844643, -0.01551063358783722, -0.00260002794675529, -0.05211019888520241, 0.05340784043073654, -0.008126720786094666, 0.048426903784275055, -0.03266952931880951, 0.028075607493519783, 0.05411414057016373, -0.04568387195467949, -0.0014538841787725687, 0.029515953734517097, -0.04866255447268486, -0.06753520667552948, 0.03481123596429825, 0.0034040275495499372, 0.03818041458725929, 0.00978410430252552, 0.009130692109465599, 0.008262529037892818, -0.07586974650621414, -0.03246105834841728, -0.008018515072762966, 0.028502022847533226, -0.024329571053385735, 0.03973877802491188, -0.01665564626455307, -0.029061000794172287, 0.045258328318595886, 0.03148825839161873, -0.021968454122543335, -0.012511576525866985, 0.029044682160019875, -0.0292067714035511, 0.029137322679162025, 0.04017352685332298, -0.035950884222984314, 0.000514680054038763, 0.03932793810963631, -0.016594892367720604, -0.004106764681637287, 0.005423296708613634, -0.030602458864450455, 0.06786935031414032, -0.0198882557451725, 0.04691845923662186, -0.013957206159830093, -0.016737371683120728, 0.014595063403248787, -0.025369057431817055, -0.03975384309887886, 0.020998021587729454, -0.00402821833267808, 0.03130185231566429, 0.0038984022103250027, -0.035149116069078445, -0.0008060159743763506, -0.026760611683130264, 0.03297686204314232, 0.04062555357813835, 0.004422331228852272, 0.003125265007838607, -0.05225502699613571, -0.029109224677085876, -0.027089089155197144, -0.0017851423472166061, -0.014013802632689476, 0.04620813578367233, 0.026890965178608894, -0.018392765894532204, 0.05566539615392685, 0.022599615156650543, -0.04038162901997566, -0.05140162259340286, -0.08567624539136887, -0.025789061561226845, -0.01224872749298811, 0.030529774725437164, 0.015619801357388496, -0.03034128248691559, -0.03915936499834061, -0.025962498039007187, 0.0574604757130146, 0.04561718925833702, 0.057565838098526, 0.005726486444473267, 0.002263025613501668, -0.003033499466255307 ]
how do I get my 100.00 credit to buy leads for filling out the survey? Does the discount offered per point differ between lenders? PLease help me with "Origination Fee" I am just not sure what the advantages are? can you please enlighten me? self-employed, limited credit history, been outside the us, do I have hope? Hello everyone :I already have one of my homes on loan and i would like to purchase a second home.Is it possible that I can also get loan for my second home ?
[ -0.0032556382939219475, 0.018615230917930603, -0.0400933176279068, -0.017585255205631256, -0.013682174496352673, -0.006059984210878611, 0.010829035192728043, 0.05696852132678032, 0.022712884470820427, 0.020521076396107674, 0.04093470424413681, -0.004890414886176586, 0.02577650360763073, -0.024920713156461716, -0.003802316030487418, 0.0263248011469841, -0.0036878720857203007, -0.016792817041277885, -0.005033458117395639, -0.010442051105201244, -0.009120143949985504, -0.011934326030313969, -0.07924145460128784, -0.004142564255744219, -0.026395568624138832, 0.023305941373109818, 0.016710087656974792, -0.018520323559641838, 0.07179098576307297, 0.05738454684615135, -0.011316302232444286, -0.05934114381670952, 0.013246092945337296, -0.029850725084543228, -0.047066736966371536, -0.007073530461639166, 0.04047094285488129, -0.048439063131809235, -0.028870781883597374, -0.03964008018374443, 0.018900711089372635, 0.021354343742132187, 0.02765827253460884, -0.040934838354587555, -0.04958861693739891, -0.004662915598601103, -0.05076171085238457, -0.03961075842380524, -0.009592954069375992, -0.05363588035106659, 0.011697236448526382, -0.005657334811985493, 0.019629882648587227, 0.01393982581794262, 0.0020862289238721132, -0.003498586593195796, 0.0013579977676272392, 0.0035563937854021788, -0.03477616608142853, 0.012648327276110649, 0.018014781177043915, -0.0029585903976112604, 0.005247366148978472, -0.04643210768699646, 0.009080431424081326, 0.03548363596200943, -0.00625807698816061, -0.014483391307294369, 0.038972314447164536, -0.010977835394442081, -0.0051490082405507565, -0.00836842693388462, 0.006272643804550171, -0.011700151488184929, 0.013126608915627003, 0.001314242254011333, 0.011064653284847736, 0.001298096845857799, -0.015764553099870682, -0.030340267345309258, 0.015335021540522575, 0.0411190390586853, 0.039151035249233246, -0.0018146754009649158, -0.08554905652999878, -0.02070426754653454, 0.01013466902077198, -0.02135278843343258, 0.027225596830248833, 0.022839605808258057, 0.01743864268064499, 0.05115754157304764, 0.01568550430238247, -0.010038076899945736, 0.05391211807727814, 0.023753896355628967, -0.00900984462350607, 0.04085519164800644, 0.04754822701215744, 0.0016810293309390545, 0.053910788148641586, 0.008942599408328533, 0.018254097551107407, 0.0180937759578228, -0.027408966794610023, -0.0022530057467520237, 0.003785061417147517, -0.029884139075875282, 0.025839272886514664, -0.017841625958681107, 0.002796196611598134, -0.026268137618899345, 0.016878822818398476, -0.025345398113131523, -0.039489079266786575, 0.04731016978621483, -0.0003346989396959543, 0.056109875440597534, -0.030683794990181923, 0.024767283350229263, 0.003264173399657011, 0.010875770822167397, 0.015175583772361279, -0.03917288780212402, 0.042534515261650085, -0.0541178435087204, -0.01647164672613144, 0.037639960646629333, -0.06039641052484512, -0.012719232589006424, 0.018548855558037758, -0.042903490364551544, -0.004767812322825193, 0.026724113151431084, 0.00016707120812498033, 0.004812872968614101, -0.019042694941163063, 0.027879837900400162, 0.028370069339871407, -0.03791077062487602, 0.04282795637845993, 0.007274465635418892, -0.01972796395421028, 0.06226322054862976, 0.012269650585949421, 0.010185056366026402, 0.020068667829036713, -0.040609266608953476, -0.0342140831053257, 0.04911923408508301, -0.015733014792203903, 0.03509073331952095, 0.0026848854031413794, 0.032878752797842026, 0.009890841320157051, -0.01364920288324356, -0.008021079935133457, 0.017614243552088737, 0.02581087499856949, 0.01175557542592287, -0.012214954942464828, 0.028320467099547386, 0.004588793963193893, 0.04338276758790016, -0.016691215336322784, 0.022338274866342545, -0.026691466569900513, 0.027255617082118988, 0.012460421770811081, -0.04387276992201805, 0.016914645209908485, -0.00956992618739605, -0.01842484250664711, -0.006034788675606251, 0.0387536957859993, -0.0019027461530640721, 0.04923637956380844, 0.005919509567320347, 0.03916272893548012, 0.05256859213113785, -0.041881538927555084, -0.009904910810291767, -0.016063334420323372, 0.0644455999135971, 0.00047207181341946125, 0.009743893519043922, -0.026868976652622223, -0.04924057424068451, -0.01086368691176176, -0.024598922580480576, 0.0029118708334863186, 0.02186489850282669, -0.024229304865002632, 0.033582109957933426, -0.024261800572276115, 0.02856316976249218, 0.0027570175006985664, -0.014297934249043465, -0.02317749708890915, -0.05769205465912819, -0.020522495731711388, 0.005079210735857487, -0.005956346169114113, 0.050559937953948975, -0.005065081175416708, -0.02632359229028225, 0.005550095811486244, 0.051389437168836594, -0.037617310881614685, -0.02311156503856182, 0.050338223576545715, 0.025942860171198845, -0.0454820916056633, -0.025035932660102844, 0.0024918443523347378, -0.022017840296030045, -0.02401171624660492, 0.04044618830084801, 0.007538903038948774, -0.018154781311750412, 0.018446339294314384, -0.002629971131682396, 0.016347019001841545, 0.048365965485572815, -0.022418780252337456, -0.01480384636670351, 0.030433449894189835, 0.055227283388376236, -0.015583238564431667, -0.010787607170641422, 0.0006136535666882992, 0.0334552526473999, 0.0336562879383564, 0.04826672747731209, 0.05894344672560692, 0.04881524667143822, 0.06528409570455551, 0.05951523408293724, -0.0054003773257136345, 0.03982951492071152, 0.0183123666793108, 0.031574055552482605, 0.07483143359422684, 0.02700984664261341, -0.0585295632481575, 0.037253737449645996, -0.037022318691015244, -0.0027313483878970146, -0.01343125943094492, 0.022038893774151802, -0.0182980727404356, 0.03285649046301842, -0.005522283259779215, 0.04615946486592293, -0.039625320583581924, -0.017046678811311722, 0.03940936550498009, 0.03243580088019371, -0.016806799918413162, -0.026968901976943016, -0.01685432530939579, 0.043256692588329315, -0.0023950859904289246, -0.0345136895775795, 0.0019457685993984342, 0.013513992540538311, 0.020733531564474106, 0.03642921522259712, -0.0015895410906523466, -0.04502398148179054, -0.0422796867787838, -0.05249742418527603, -0.05425795540213585, -0.011851297691464424, -0.043028607964515686, 0.007542550563812256, 0.026050938293337822, -0.04452349990606308, -0.017856867983937263, -0.0260835699737072, -0.015359068289399147, -0.023337433114647865, 0.0025487279053777456, 0.04612892121076584, 0.00906689278781414, 0.03566916286945343, -0.02632300555706024, 0.0463002510368824, -0.00569890346378088, 0.03104717843234539, -0.009339292533695698, -0.005476416554301977, 0.003722551977261901, -0.03238963708281517, 0.041881050914525986, -0.002003876958042383, 0.008356796577572823, -0.014334009028971195, -0.043846841901540756, -0.05867553502321243, -0.007377424277365208, -0.03303207457065582, -0.011963076889514923, 0.0331612266600132, -0.03471348434686661, 0.03449038416147232, 0.04259905219078064, -0.0371532142162323, 0.007262814790010452, 0.0568048469722271, -0.02436738647520542, 0.04169414937496185, 0.0386706180870533, -0.012251006439328194, -0.036089397966861725, 0.03163012117147446, 0.05265893042087555, -0.0111612593755126, 0.0013682949356734753, -0.008191979490220547, -0.015423162840306759, 0.007644492667168379, 0.03306218981742859, -0.016020862385630608, -0.010307064279913902, 0.027238167822360992, 0.035870715975761414, -0.08405114710330963, 0.014362952671945095, -0.024211259558796883, -0.02919515036046505, -0.06197225674986839, -0.04195389896631241, 0.016539279371500015, -0.001966973999515176, 0.01752915419638157, -0.015163172036409378, -0.045569829642772675, -0.030179444700479507, 0.02273857407271862, 0.055998146533966064, -0.045275766402482986, 0.01041475124657154, 0.03637100011110306, 0.03266899660229683, 0.00020181639411021024, -0.011411919258534908, -0.027375860139727592, -0.033192288130521774, 0.015278172679245472, -0.020788678899407387, 0.03616635501384735, -0.0013861823827028275, 0.008387443609535694, 0.032170671969652176, 0.059504907578229904, -0.017211763188242912, 0.01656375825405121, 0.021667802706360817, 0.01619587652385235, 0.000013029391084273811, 0.030546367168426514, 0.008264773525297642, -0.021154606714844704, -0.0060116141103208065, -0.03879333660006523, 0.050991278141736984, 0.005948892328888178, 0.07982775568962097, -0.06332474946975708, 0.0635499432682991, 0.007559917401522398, -0.028165403753519058, 0.02678832784295082, -0.057877954095602036, -0.002343766624107957, 0.03274456039071083, -0.015712402760982513, 0.017921334132552147, -0.038496505469083786, 0.015034987591207027, 0.0052522714249789715, 0.010021289810538292, 0.048579491674900055, 0.0314045175909996, 0.04084335267543793, -0.03901344910264015, -0.03715745732188225, -0.01839088462293148, -0.008007494732737541, -0.0046879686415195465, -0.026845892891287804, 0.01205709669739008, -0.01767030544579029, -0.04223144054412842, -0.06581079959869385, 0.02670818194746971, -0.00870986096560955, 0.01904587261378765, -0.026908887550234795, 0.04032021388411522, 0.016136998310685158, 0.009775777347385883, 0.036507267504930496, 0.0027858519461005926, 0.024270327761769295, -0.024250024929642677, 0.054829277098178864, 0.024068474769592285, -0.02287127636373043, -0.02927619218826294, -0.030730608850717545, -0.04421382024884224, 0.02427925169467926, 0.004225826822221279, -0.02924812212586403, -0.04321720078587532, -0.015565804205834866, -0.03371015191078186, 0.03352860361337662, -0.036923252046108246, -0.03990108519792557, -0.06214519590139389, 0.03466993570327759, 0.044056717306375504, -0.03162626922130585, -0.003476198995485902, -0.03733549267053604, 0.05341463163495064, 0.056233249604701996, -0.009909618645906448, -0.039992958307266235, -0.015621064230799675, -0.0482257679104805, -0.044000573456287384, 0.0020330222323536873, 0.03828762099146843, 0.0037513982970267534, -0.0044738538563251495, -0.010121993720531464, 0.04353272542357445, 0.027369283139705658, 0.005089148413389921, -0.006844209972769022, -0.002105190884321928, -0.002477262867614627, -0.029103301465511322, 0.015554284676909447, -0.008528170175850391, -0.01268812082707882, 0.018186328932642937, -0.0570547953248024, 0.018174681812524796, 0.028155596926808357, -0.022721441462635994, 0.003979585599154234, 0.017716772854328156, -0.009063522331416607, 0.027869701385498047, -0.02305491827428341, 0.04062094911932945, -0.00357568240724504, 0.05065362527966499, -0.04035962373018265, -0.05068839341402054, 0.044418707489967346, 0.018513787537813187, -0.018751468509435654, 0.01786152273416519, 0.034443922340869904, -0.0012380332918837667, -0.004102074075490236, 0.029131965711712837, -0.05138374865055084, 0.04275479167699814, -0.0477711521089077, 0.013095869682729244, -0.021284177899360657, -0.0314544253051281, 0.023996038362383842, -0.02767913229763508, 0.008538064546883106, -0.006783908233046532, -0.008632917888462543, -0.05682254955172539, -0.061014920473098755, -0.014659318141639233, -0.0245360117405653, -0.033617597073316574, 0.020434334874153137, 0.005772632546722889, 0.0019538728520274162, 0.007523604668676853, -0.01043790951371193, -0.052230656147003174, -0.012258096598088741, -0.00888940691947937, -0.0008827998535707593, 0.016585417091846466, 0.03403827175498009, 0.002481626346707344, -0.023933401331305504, -0.006107295863330364, 0.00455813342705369, -0.0068700979463756084, -0.0543050691485405, -0.037117090076208115, -0.018557272851467133, -0.004850784782320261, -0.008051075041294098, -0.014076662249863148, 0.015393050387501717, -0.0356755256652832, 0.040684111416339874, 0.004930957220494747, 0.003200486535206437, 0.03126757964491844, 0.007072786800563335, -0.054018717259168625, 0.05344127491116524, 0.002630354603752494, -0.037291914224624634, -0.05318456515669823, 0.008668099530041218, 0.013847686350345612, 0.039099786430597305, 0.02236485853791237, -0.026879973709583282, -0.036141932010650635, -0.06798270344734192, 0.002080493839457631, -0.0020917258225381374, -0.009367212653160095, -0.026151811704039574, -0.060736414045095444, -0.016601135954260826, 0.059616368263959885, 0.025779377669095993, 0.0028845376800745726, 0.03754178807139397, -0.06122136861085892, 0.013272940181195736, -0.036796022206544876, 0.012486296705901623, -0.009528975002467632, 0.0215764157474041, -0.008706364780664444, 0.040449462831020355, 0.004000243730843067, 0.025952039286494255, -0.027284184470772743, -0.0086660822853446, 0.035194337368011475, -0.017401330173015594, -0.037335701286792755, -0.013514623045921326, -0.0005436953506432474, 0.019388781860470772, -0.03625710681080818, -0.008191564120352268, -0.04384367913007736, 0.06902497261762619, -0.028832096606492996, 0.0021907631307840347, 0.001389936194755137, -0.04100799560546875, 0.005900675430893898, -0.01486662495881319, 0.033184248954057693, -0.019845571368932724, 0.015369180589914322, -0.012724950909614563, 0.04529270529747009, 0.027226202189922333, 0.009096501395106316, -0.03055039793252945, -0.03830009326338768, -0.03273528069257736, -0.04202072694897652, 0.018447738140821457, -0.026443351060152054, -0.031288567930459976, -0.03909289836883545, -0.028457151725888252, 0.01568109355866909, -0.01888316124677658, 0.021608667448163033, 0.07318218052387238, -0.008050485514104366, 0.019778987392783165, -0.041836775839328766, 0.02330038696527481, 0.039215635508298874, -0.025130996480584145, -0.007481387350708246, -0.01690453104674816, -0.029412701725959778, -0.021680118516087532, -0.041590746492147446, -0.03612331300973892, -0.0691438764333725, 0.022273125126957893, 0.03807254508137703, -0.02233494631946087, 0.033621255308389664, -0.03510835021734238, -0.05523816868662834, -0.01368082594126463, 0.06441855430603027, 0.0006464296020567417, 0.028662504628300667, 0.048599958419799805, 0.0073140645399689674, -0.02542143501341343, 0.003609374398365617, -0.05134192481637001, 0.025952203199267387, -0.04916413500905037, 0.04609840735793114, 0.0159319881349802, -0.04021507129073143, 0.026309194043278694, 0.060382992029190063, -0.0795673280954361, -0.06578554213047028, 0.006632345728576183, 0.005755210295319557, -0.0032139644026756287, -0.016397451981902122, 0.021609922870993614, 0.02935376577079296, 0.0030933062080293894, 0.019151248037815094, 0.02178209461271763, -0.034771665930747986, 0.022653797641396523, 0.04174019768834114, 0.0032506072893738747, -0.030592389404773712, 0.015670642256736755, 0.018157897517085075, -0.02419649437069893, -0.030185233801603317, -0.020789578557014465, -0.00591508112847805, -0.01634461246430874, 0.013318420387804508, 0.023052072152495384, -0.009063057601451874, -0.0107426093891263, 0.01908348686993122, -0.005278341006487608, 0.046127479523420334, 0.0005003326223231852, -0.0088804354891181, 0.028838003054261208, -0.024914897978305817, -0.04074856638908386, -0.019675519317388535, 0.004673555959016085, 0.010308007709681988, 0.036727070808410645, -0.02926941215991974, 0.02801770158112049, 0.027667883783578873, -0.0020134130027145147, -0.004361639264971018, -0.019897902384400368, -0.02714991755783558, -0.018260547891259193, -0.05334044620394707, -0.02620822563767433, -0.021320970728993416, -0.006129137240350246, 0.026016753166913986, -0.009019272401928902, -0.04884127154946327, 0.011391846463084221, 0.013943547382950783, 0.0018292595632374287, -0.0058831810019910336, -0.03553289175033569, 0.028010817244648933, -0.05040675401687622, -0.0654069259762764, -0.03428398072719574, 0.025282667949795723, -0.042606934905052185, 0.009191304445266724, -0.026553284376859665, 0.0236225426197052, -0.002475832588970661, 0.008275595493614674, 0.0021238750778138638, 0.016324708238244057, -0.02878434769809246, -0.05244014784693718, 0.03712259232997894, 0.026173466816544533, -0.019627191126346588, 0.04819713532924652, 0.03882095590233803, -0.039381008595228195, 0.03479669988155365, 0.00013429176760837436, -0.013224995695054531, -0.0012129885144531727, 0.031091537326574326, 0.024069013074040413, 0.020566385239362717, -0.028686486184597015, -0.006242528557777405, 0.0024695161264389753, -0.03626948222517967, 0.017114300280809402, 0.015874845907092094, 0.002097583841532469, 0.025328753516077995, -0.01343552302569151, -0.015372737310826778, 0.06235925108194351, 0.005622180178761482, 0.05096207186579704, -0.004442616365849972, 0.026105981320142746, -0.0008741907076910138, -0.008929429575800896, -0.013658768497407436, 0.027302971109747887, 0.03551149740815163, -0.022660793736577034, 0.014684068970382214, 0.009745730087161064, -0.008896869607269764, 0.024916546419262886, -0.005917210131883621, -0.028755920007824898, -0.06213412806391716, -0.004685061983764172, -0.019737185910344124, 0.04607782140374184, 0.015754396095871925, 0.016932353377342224, 0.011861708015203476, -0.024273347109556198, -0.04577844217419624, -0.013174591585993767, -0.058246590197086334, -0.049772944301366806, 0.023931683972477913, 0.004463557153940201, -0.014976903796195984, -0.006281112786382437, -0.03862439841032028, -0.002723475219681859, -0.0006305412971414626, -0.036908429116010666, -0.036076564341783524, 0.03963998332619667, 0.00795594323426485, 0.024599431082606316, -0.01370452344417572, 0.0020464223343878984, 0.012007373385131359, 0.05278324708342552, -0.019760113209486008, -0.0510328933596611, -0.006278554443269968, 0.04622169956564903, 0.0034412534441798925, -0.0341559499502182, 0.026074757799506187, -0.008221165277063847, 0.024767307564616203, 0.02092534862458706, 0.011909665539860725, 0.043048612773418427, -0.018911071121692657, 0.04902774095535278, -0.014290819875895977, 0.005712989252060652, -0.03046211041510105, 0.034258872270584106, 0.000593504635617137, 0.0012691180454567075, -0.0366348996758461, 0.03394125774502754, 0.02326551266014576, 0.00949106365442276, 0.019984636455774307, 0.020660672336816788, 0.03327600657939911, -0.031257789582014084, 0.01978587731719017, -0.003940739203244448, 0.04373950511217117, 0.052429553121328354, 0.02934613637626171, 0.013893038965761662, 0.01700100302696228, 0.039347436279058456, 0.021863993257284164, -0.015439579263329506, 0.020127277821302414, 0.036361973732709885, -0.02578439563512802, -0.008931592106819153, -0.00775508675724268, 0.012566209770739079, 0.005711146164685488, -0.009902354329824448, -0.017820559442043304, -0.03944046422839165, 0.022298453375697136, -0.0027009821496903896, -0.02812090702354908, 0.05020755156874657, -0.021079057827591896, 0.02694193460047245, -0.0030644803773611784, -0.028310971334576607, -0.008336501196026802, 0.047753315418958664, 0.00970716867595911, -0.0018747886642813683, 0.04091983661055565, 0.016675304621458054, 0.008917124941945076, 0.0419992096722126, 0.008584355004131794, -0.0037570770364254713, -0.036742255091667175, -0.0030919441487640142, -0.011967597529292107, -0.01571459136903286, -0.05341166630387306, 0.000613770738709718, -0.029052412137389183, 0.057894498109817505, -0.016844091936945915, 0.006025093141943216, 0.03530115261673927, -0.04979713633656502, -0.02318514883518219, -0.024331379681825638, 0.058200862258672714, -0.05176816135644913, -0.004914524499326944, 0.030153878033161163, -0.026835493743419647, -0.05970798805356026, 0.025552697479724884, 0.023187225684523582, 0.05447077751159668, 0.015152258798480034, 0.059050675481557846, -0.026215260848402977, 0.06273132562637329, 0.054228976368904114, -0.0482589527964592, 0.02098015882074833, 0.04363097995519638, -0.0091039864346385, -0.022880887612700462, 0.017110109329223633, -0.04744213819503784, 0.005225708708167076, -0.017279231920838356, 0.03451982140541077, 0.031687088310718536, 0.04934310540556908, 0.0014675143174827099, -0.0723632276058197, 0.0014990824274718761, 0.04473729431629181, -0.03712708503007889, 0.03207918256521225, 0.03291827812790871, 0.03210736811161041, -0.001340341754257679, -0.02325301617383957, -0.018021976575255394, -0.012163588777184486, 0.01590821146965027, -0.031186647713184357, 0.031880367547273636, -0.008860399015247822, -0.017935937270522118, -0.04598889872431755, -0.03670665994286537, -0.02640952728688717, 0.011616618372499943, -0.047678302973508835, -0.048745620995759964, 0.016141071915626526, 0.004648316651582718, 0.023194298148155212, -0.004374526906758547, -0.038976505398750305, 0.017961546778678894, 0.054490115493535995, 0.06216584891080856, 0.007012128364294767, 0.045870084315538406, 0.02067778818309307, -0.002649953356012702, 0.025200175121426582, -0.007685568183660507, 0.005587531719356775, 0.018283916637301445, -0.004396661650389433, -0.01549701951444149, 0.016458828002214432, -0.05345727130770683, -0.07468998432159424, -0.007457116153091192, 0.04689818248152733, -0.005905036348849535, -0.02080802246928215, -0.021691463887691498, -0.014176442287862301, -0.05431659519672394, -0.02726363018155098, -0.0531904362142086, -0.00823898334056139, -0.004468128085136414, 0.012362712062895298, 0.016440672799944878, -0.06132150813937187, 0.14575494825839996, 0.06768111139535904, 0.057746902108192444, -0.020557215437293053, 0.03940499201416969, 0.05198165401816368, 0.002152694622054696, 0.015968726947903633, 0.025536129251122475, -0.04680951312184334, 0.023411395028233528, -0.01967652142047882, 0.02809310518205166, 0.009939759038388729, 0.023689551278948784, 0.04723098501563072, -0.02677900344133377, -0.01562348660081625, 0.034263018518686295, -0.029866445809602737, -0.017991553992033005, 0.021517982706427574, -0.00493954261764884, 0.06013718992471695, -0.005326268263161182, 0.021619627252221107, 0.037600621581077576, -0.06239398941397667, -0.019161537289619446, -0.01796913333237171, 0.018020935356616974, -0.03640647977590561, 0.05317813903093338, 0.0033623797353357077, -0.07541827112436295, 0.04448657110333443, -0.0021721976809203625, -0.04260794445872307, -0.019656328484416008, 0.0044500259682536125, -0.014917266555130482, 0.00010968084097839892, 0.014873006381094456, -0.03817130625247955, -0.016455603763461113, 0.02328323759138584, -0.05818793177604675, 0.001824331353418529, 0.0056508928537368774, -0.040529295802116394, 0.028126930817961693, -0.028710879385471344, 0.04399944841861725, 0.015587389469146729, -0.04711569473147392, -0.0014094383222982287, 0.007993761450052261, -0.03281265124678612, -0.02378835901618004, -0.0026990920305252075, 0.026014093309640884, 0.0040513635613024235, -0.047207560390233994, 0.003031408879905939, -0.04366813600063324, -0.011441674083471298, 0.0251304991543293, 0.017388246953487396, 0.0055053080432116985, 0.015691420063376427, 0.011585786007344723, 0.01790693961083889, -0.007320156786590815, -0.03373095393180847, 0.019933592528104782, 0.05815592408180237, -0.04537520930171013, 0.022879593074321747, -0.010835527442395687, -0.025564061477780342, -0.02342981845140457, -0.05171049013733864, -0.02244753949344158, 0.02672675810754299, 0.01223994791507721, 0.05523666739463806, -0.07748967409133911, -0.030534246936440468, -0.03339363634586334, 0.04623044654726982, 0.03690527379512787, 0.03571077808737755, -0.025903450325131416, -0.02029871940612793, -0.018995651975274086 ]
Q: TSQL get the previous and any proceeding records based on recordset provided I have the following query: SELECT fs.FILOID currentfilo, ISNULL(LEAD(af.FILOID) OVER (ORDER BY StartTransactionTimeUTC), fs.Next_FILOID) Nextfilo, ISNULL(LAG(af.FILOID) OVER (ORDER BY StartTransactionTimeUTC), fs.Previous_FILOID) lf FROM [DataWarehouseCore].[DWC_FILOSummary] fs JOIN [AttendanceCore].[AC_FILO] af ON af.FILOID = fs.FILOID WHERE fs.Employee_ID = 15049 AND Client_ID = 306 Which returns the following results: currentfilo Nextfilo lf ---------------------------- 5 2 NULL 2 3 5 3 6 2 6 7 3 7 1 6 1 NULL 7 I only want to have to see currentfilo 3, 6, 7 , 1 if ID 6 was passed in. So instead of returning what I have in my result set just the previous and next records which are actually based on a date field. Here is some examples of data and what I expect to see this is the parent table: AC_FILO FILOID ClientID EmployeeID StartTransactionTimeUTC ----------------------------------------------------------- 5 306 15049 2021-08-29 02:53:00.0000000 2 306 15049 2021-09-01 06:46:00.0000000 3 306 15049 2021-09-02 07:50:00.0000000 6 306 15049 2021-09-06 08:56:00.0000000 7 306 15049 2021-09-10 07:58:00.0000000 1 306 15049 2021-09-15 07:45:00.0000000 What I want in my new table is an ordered list of the current FILOID, the next FILOID and previous FILOID is based on the StartTransactionTimeUTC For example when FILOID 6 was inserted I would want to see the previous FILOID to FILOID 6 followed by all proceeding FILOID's based on the date! For example I would want to see CurrentFilo NextFilo LastFilo ----------------------------- 3 6 2 6 7 3 7 1 6 1 NULL 7 A: It's not totally clear what you're after, but given the final desired results and input value of 6, I take it to mean you want the (CurrentFilo, NextFilo,LastFilo) sets ordered by StartTransactionTimeUTC starting with the point where a given NextFilo occurs, since the 6 input matches the 6 in that place in the expected result. As a first step, start with not caring about anything passed in and only create the next/last result for the entire table. We can use the LAG() and LEAD() window functions to do this. You've done most of this work already in the question's first code listing, but let's also include the StartTransactionTimeUTC field for now, so we will be able to reproduce the correct order in later steps. I'm also using a simplified schema right now so I can reproduce this on SQL Fiddle: SELECT FILOID as CurrentFILO, LEAD(FILOID) OVER (ORDER BY StartTransactionTimeUTC) as NextFILO, LAG(FILOID) OVER (ORDER BY StartTransactionTimeUTC) as LastFILO, StartTransactionTimeUTC FROM AC_FILO Now for a given NextFILO value like 6 we can find the desired StartTransactionTimeUTC time of that record by using a Common Table Expression (CTE), like this: WITH FILOTree AS ( SELECT FILOID as CurrentFILO, LEAD(FILOID) OVER (ORDER BY StartTransactionTimeUTC) as NextFILO, LAG(FILOID) OVER (ORDER BY StartTransactionTimeUTC) as LastFILO, StartTransactionTimeUTC FROM AC_FILO ) SELECT StartTransactionTimeUTC FROM FILOTree WHERE NextFILO = 6 We could also use a nested inner SELECT instead of the CTE. The important thing is we need a layer of indirection around the initial query in order to use a WHERE clause with a window function like LAG() or LEAD(). But I prefer the CTE in this case for reasons that will become clear later. Once we know the correct StartTransactionTimeUTC we can get the final results using the same technique: WITH FILOTree AS ( SELECT FILOID as CurrentFILO, LEAD(FILOID) OVER (ORDER BY StartTransactionTimeUTC) as NextFILO, LAG(FILOID) OVER (ORDER BY StartTransactionTimeUTC) as LastFILO, StartTransactionTimeUTC FROM AC_FILO ) SELECT CurrentFILO, NextFILO, LastFILO FROM FILOTree WHERE StartTransactionTimeUTC >= '2021-09-02 07:50:00' ORDER BY StartTransactionTimeUTC This produces the correct results, but from the wrong input. However, now we can use the same CTE (aha!) to put the two pieces together into the same query without repeating code for the initial current/next/last projection, like this: WITH FILOTree As ( SELECT FILOID as CurrentFILO, LEAD(FILOID) OVER (ORDER BY StartTransactionTimeUTC) as NextFILO, LAG(FILOID) OVER (ORDER BY StartTransactionTimeUTC) as LastFILO, StartTransactionTimeUTC FROM AC_FILO ) SELECT CurrentFILO, NextFILO, LastFILO FROM FILOTree WHERE StartTransactionTimeUTC >= ( SELECT StartTransactionTimeUTC FROM FILOTree WHERE NextFILO = 6 ) ORDER BY StartTransactionTimeUTC See it work here: http://sqlfiddle.com/#!18/24979/2 Finally, as I said before, these examples use a simplified schema from the actual production system. So let's plug the original query into the CTE: WITH FILOTree As ( SELECT fs.FILOID currentfilo , ISNULL(LEAD(af.FILOID) over (order by StartTransactionTimeUTC), fs.Next_FILOID) Nextfilo , ISNULL(LAG(af.FILOID) over (order by StartTransactionTimeUTC), fs.Previous_FILOID) LastFILO , StartTransactionTimeUTC FROM [DataWarehouseCore].[DWC_FILOSummary] fs JOIN [AttendanceCore].[AC_FILO] af ON af.FILOID = fs.FILOID WHERE fs.Employee_ID = 15049 AND Client_ID = 306 ) SELECT CurrentFILO, NextFILO, LastFILO FROM FILOTree WHERE StartTransactionTimeUTC >= ( SELECT StartTransactionTimeUTC FROM FILOTree WHERE NextFILO = 6 ) ORDER BY StartTransactionTimeUTC The only things I had to change from that initial SQL command were adding StartTransactionTimeUTC to the SELECT list and the alias name for the LastFILO column. Note this will run the CTE twice and it will not cache any results between the two runs, so be aware of that as a performance concern.
[ -0.007528949994593859, 0.010310185141861439, -0.011118767783045769, 0.023337731137871742, -0.024692228063941002, -0.012318562716245651, -0.033692359924316406, 0.023327907547354698, 0.016796980053186417, 0.06723708659410477, 0.028995661064982414, 0.024608051404356956, -0.011361449956893921, -0.024777935817837715, -0.033758342266082764, -0.0005005367565900087, -0.03158597648143768, -0.01202375628054142, -0.011192215606570244, -0.015244683250784874, 0.0007560441154055297, 0.02680208534002304, -0.08699510991573334, -0.010336128063499928, -0.03126022592186928, 0.02514071576297283, 0.01844426989555359, -0.024435050785541534, 0.07175510376691818, 0.09107116609811783, -0.002039527054876089, -0.036052156239748, 0.011760886758565903, -0.04544304683804512, -0.025002064183354378, -0.010566538199782372, 0.03940423205494881, 0.009755806066095829, -0.023294920101761818, -0.049238067120313644, -0.000578556617256254, 0.00293523957952857, 0.03485998883843422, -0.04932856559753418, -0.05519261211156845, -0.011988979764282703, -0.030476514250040054, -0.02077585458755493, 0.0031992741860449314, -0.023195892572402954, -0.01318504847586155, -0.01782824471592903, 0.027598997578024864, 0.0131224999204278, 0.04275335371494293, -0.0014929063618183136, 0.03522404283285141, -0.02229783497750759, -0.03164619579911232, 0.03919598087668419, 0.0214801337569952, -0.011262178421020508, 0.020862489938735962, -0.04029284417629242, 0.035382773727178574, 0.023082446306943893, -0.004207083489745855, -0.043829649686813354, 0.03236596658825874, -0.01789393648505211, -0.056030984967947006, -0.02261880226433277, -0.01117890514433384, 0.0003427214396651834, -0.001666600932367146, 0.015344598330557346, 0.004591987002640963, -0.010309523902833462, -0.013561083003878593, -0.002864000853151083, 0.01894894242286682, 0.06547397375106812, 0.02141481637954712, 0.020871542394161224, -0.03149380162358284, -0.0276249498128891, -0.026784084737300873, 0.033124394714832306, 0.004181568510830402, 0.015228154137730598, -0.015428793616592884, 0.06042997166514397, 0.008974011987447739, -0.04420410841703415, 0.0035630674101412296, 0.027761800214648247, -0.025080733001232147, 0.035861786454916, 0.047813814133405685, -0.0006618177285417914, 0.02649100311100483, 0.015311400406062603, -0.014674617908895016, 0.011146094650030136, -0.027073245495557785, 0.018730510026216507, 0.012322831898927689, -0.018498200923204422, 0.004366354085505009, -0.009556509554386139, -0.0009344428544864058, -0.03539494052529335, 0.048854175955057144, -0.018258528783917427, -0.015392648987472057, 0.04026136174798012, 0.023589281365275383, 0.028934581205248833, -0.052298273891210556, -0.010685152374207973, 0.03486291319131851, -0.006275735795497894, 0.05727309733629227, -0.006587485782802105, 0.025339454412460327, -0.0421796515583992, -0.03001122549176216, 0.034213390201330185, -0.060899361968040466, -0.015072953887283802, -0.022363947704434395, -0.058261092752218246, -0.010512961074709892, 0.02699342370033264, 0.011806976981461048, 0.02235252968966961, -0.000161839256179519, 0.02731010504066944, -0.025718867778778076, -0.053645629435777664, 0.05041699483990669, -0.02826628088951111, -0.012894881889224052, 0.08510494977235794, 0.0077748047187924385, 0.033388424664735794, 0.024729808792471886, 0.0101598696783185, -0.051168594509363174, 0.018153777346014977, -0.05431867390871048, 0.039467714726924896, 0.004892601165920496, 0.016678350046277046, 0.01250577624887228, -0.02258853241801262, 0.009052528068423271, 0.003551362082362175, -0.00981327798217535, 0.03698854148387909, -0.022993378341197968, -0.0000796891690697521, 0.0043510207906365395, 0.03952845185995102, -0.012902838177978992, 0.05717199295759201, -0.006306678522378206, -0.00124973279889673, 0.001008964260108769, -0.03586612269282341, -0.013479187153279781, 0.007068013772368431, -0.005125951953232288, 0.030540011823177338, 0.008128849789500237, 0.06329862773418427, 0.04767412319779396, -0.00917096808552742, 0.03743518143892288, 0.06407787650823593, -0.061402007937431335, -0.009054518304765224, -0.007596148177981377, 0.05194399133324623, 0.0297736544162035, 0.0018107503419741988, 0.013713261112570763, -0.011514396406710148, -0.028692560270428658, -0.027012361213564873, -0.024943970143795013, 0.03465959057211876, -0.008167844265699387, 0.03519751504063606, -0.00011204554175492376, -0.041874513030052185, -0.020065831020474434, 0.0032399138435721397, -0.008073738776147366, -0.02272370085120201, -0.032147862017154694, 0.03206603601574898, -0.0036981694865971804, 0.028473561629652977, -0.0038858766201883554, 0.0012522293254733086, 0.006060065235942602, 0.059566546231508255, -0.06852616369724274, 0.0140016358345747, 0.028195733204483986, 0.00024628330720588565, -0.007296752650290728, -0.012192999944090843, -0.004483584780246019, -0.0022243387065827847, -0.01106207724660635, 0.04397313669323921, -0.018258774653077126, -0.009056080132722855, -0.020831575617194176, 0.027487657964229584, 0.032870762050151825, 0.04591638594865799, -0.019832052290439606, -0.020474091172218323, 0.02766290307044983, 0.06406508386135101, -0.018234455958008766, 0.03676630184054375, -0.006854872219264507, 0.06460384279489517, 0.05319178104400635, 0.05508245900273323, 0.0342852957546711, -0.0070977783761918545, 0.05085959658026695, 0.011743753217160702, -0.0019737775437533855, 0.05809195712208748, 0.007439400069415569, 0.02021568827331066, 0.03575713932514191, 0.02003181353211403, -0.0369693860411644, 0.01970774121582508, -0.0007198716048151255, -0.014008702710270882, 0.0005411664606072009, 0.016961779445409775, -0.017475729808211327, 0.05216720327734947, -0.01736314967274666, 0.05785924941301346, -0.006775098852813244, -0.024578895419836044, 0.04158317670226097, 0.03274622559547424, -0.03652828931808472, -0.01858922466635704, 0.02095874957740307, 0.010595961473882198, -0.008841624483466148, -0.010917925275862217, 0.03616499900817871, 0.01971074566245079, 0.04392622783780098, 0.021720338612794876, -0.009254713542759418, -0.060963135212659836, -0.017863182350993156, -0.07546404004096985, -0.024594705551862717, -0.041177019476890564, -0.07643034309148788, -0.03399614989757538, 0.04907503351569176, -0.0616636648774147, -0.0023019283544272184, -0.04466124624013901, -0.023347919806838036, -0.021950598806142807, -0.03536248952150345, 0.060992661863565445, 0.006747154984623194, 0.02324877306818962, -0.027866659685969353, 0.013321193866431713, 0.018516739830374718, 0.047832101583480835, -0.027171287685632706, -0.0023695980198681355, -0.02775164693593979, -0.00963342934846878, 0.00017757246678229421, 0.0031940951012074947, -0.0009310116874985397, 0.003205765038728714, -0.018667493015527725, -0.0541546531021595, -0.027431534603238106, 0.024481279775500298, -0.011396658606827259, 0.003937708679586649, -0.041481874883174896, 0.03854841738939285, 0.028831254690885544, -0.033940233290195465, -0.004417340736836195, 0.060932278633117676, -0.013297301717102528, 0.03155503794550896, 0.02986137382686138, 0.011344323866069317, -0.0444418303668499, 0.04834139347076416, 0.03973415493965149, -0.016889190301299095, -0.03324616327881813, -0.009173278696835041, -0.031956594437360764, -0.0020544289145618677, 0.013170868158340454, -0.03155433014035225, -0.034902218729257584, 0.06824927777051926, -0.026884259656071663, -0.08008751273155212, 0.006740326061844826, -0.06458477675914764, -0.032244496047496796, -0.003685839707031846, -0.03772987425327301, 0.024100258946418762, 0.005539038218557835, 0.025414032861590385, -0.008753618225455284, -0.04052427038550377, 0.029849128797650337, 0.03390824422240257, 0.032751403748989105, -0.023022379726171494, -0.000027827147278003395, 0.022607680410146713, -0.0011214232072234154, 0.030473629012703896, 0.0388658232986927, -0.016572924330830574, 0.01031475979834795, 0.004111114423722029, -0.008888250216841698, 0.03790448606014252, 0.03779706358909607, 0.0065620108507573605, 0.022350575774908066, 0.06867104768753052, -0.01669709011912346, 0.010745310224592686, 0.0333385095000267, -0.0062568290159106255, 0.039195165038108826, -0.003126885276287794, -0.020247653126716614, -0.011725532822310925, -0.020412258803844452, -0.057026613503694534, 0.03158313408493996, 0.007513044402003288, 0.06003284826874733, -0.06531912088394165, 0.05881142616271973, -0.002573492703959346, 0.002304280875250697, 0.04408843070268631, -0.06009852513670921, -0.049036815762519836, 0.025801192969083786, -0.002078193472698331, 0.05505828931927681, -0.038331691175699234, 0.01279743667691946, -0.019356677308678627, 0.0033289387356489897, 0.017381681129336357, 0.009326585568487644, 0.05221283808350563, -0.02695244923233986, 0.009434803389012814, -0.012918682768940926, -0.009512697346508503, 0.03193452209234238, -0.027401212602853775, -0.005085768178105354, -0.03004489839076996, -0.057447101920843124, -0.044728562235832214, -0.012033779174089432, 0.05585663765668869, -0.007580713834613562, 0.01298074796795845, 0.04164634272456169, -0.028120923787355423, 0.029185043647885323, 0.06644628942012787, -0.011223788373172283, 0.017001856118440628, -0.0402662456035614, 0.016808204352855682, 0.020448369905352592, 0.01354307122528553, 0.009482160210609436, -0.014422398060560226, -0.03754933550953865, 0.018536899238824844, 0.004968828521668911, -0.02537025511264801, -0.04885856807231903, 0.02537340670824051, -0.013630527071654797, 0.034156035631895065, -0.014798663556575775, -0.03065093792974949, 0.005610043182969093, 0.010551130399107933, 0.014256368391215801, -0.04358486458659172, 0.005056162364780903, -0.0252536553889513, 0.06568323820829391, 0.05277615413069725, -0.0010167260188609362, -0.045885343104600906, -0.04116440191864967, -0.033280011266469955, -0.06033765524625778, 0.015982847660779953, 0.06248890981078148, -0.008192506618797779, -0.01618523709475994, -0.06691218167543411, 0.014141920953989029, 0.016304831951856613, 0.02168291248381138, -0.00747904647141695, 0.0016040472546592355, 0.023654401302337646, -0.020839927718043327, -0.017635997384786606, 0.005960224196314812, 0.012471558526158333, 0.009797373786568642, -0.044759929180145264, 0.008022066205739975, -0.03014860488474369, -0.02761145308613777, 0.010620338842272758, 0.024686995893716812, -0.0055777886882424355, 0.024651706218719482, -0.02610219083726406, 0.038591936230659485, -0.015048757195472717, 0.03308966010808945, -0.022193025797605515, -0.036813054233789444, 0.07593414187431335, -0.00650262413546443, -0.016322245821356773, 0.027483023703098297, 0.0495753176510334, 0.0043230303563177586, 0.025223717093467712, 0.027640605345368385, -0.03286245837807655, 0.019695274531841278, -0.005811311304569244, 0.03152352198958397, -0.043752990663051605, 0.008540033362805843, -0.025289293378591537, -0.03975915536284447, 0.020681170746684074, 0.011290154419839382, -0.0003652633458841592, -0.05712490156292915, -0.0650361105799675, -0.025166621431708336, -0.0031987850088626146, -0.008209859021008015, 0.016385236755013466, -0.018723972141742706, -0.0007408933015540242, -0.03311317414045334, -0.015404907986521721, -0.013297735713422298, 0.008766804821789265, -0.019735397771000862, -0.005266009829938412, -0.0007717758417129517, 0.00491798622533679, -0.0022538318298757076, -0.03067420795559883, -0.03721102699637413, -0.007959774695336819, 0.038850538432598114, -0.03193516656756401, -0.0327361561357975, -0.016714269295334816, -0.01472390629351139, -0.007014764938503504, -0.03701453283429146, -0.008015746250748634, 0.0021129027009010315, 0.0229441337287426, 0.03328598290681839, 0.015479187481105328, 0.009688126854598522, 0.02585671655833721, -0.06312339752912521, 0.016312969848513603, 0.03736008703708649, -0.036597125232219696, -0.012281659990549088, 0.016693077981472015, -0.03761474788188934, 0.039080966264009476, -0.003372136503458023, -0.0028565209358930588, -0.02670002542436123, -0.07194006443023682, 0.02538227289915085, 0.006257518660277128, -0.01119803637266159, -0.05567719042301178, -0.054637353867292404, 0.0074853296391665936, 0.007700023707002401, 0.02266586385667324, -0.020783163607120514, 0.004054445773363113, -0.03906777501106262, 0.024302998557686806, -0.03604063019156456, -0.007784911897033453, -0.03250712528824806, -0.01805531606078148, 0.0076484824530780315, 0.05003691092133522, -0.03380172327160835, 0.009573021903634071, 0.014919702894985676, -0.024826856330037117, 0.02302321419119835, -0.019645744934678078, -0.04983615130186081, -0.04758596420288086, 0.012864682823419571, 0.0028357445262372494, -0.025279102846980095, -0.00534398015588522, -0.042816828936338425, 0.05217259004712105, -0.04234253242611885, 0.0036870469339191914, -0.009500154294073582, 0.003557613119482994, -0.036396246403455734, -0.00841886643320322, 0.026359260082244873, -0.02631816826760769, -0.004099060781300068, -0.009150243364274502, 0.052302662283182144, 0.021022485569119453, 0.02315193973481655, 0.0019940792117267847, -0.04500441625714302, -0.015482906252145767, -0.019817689433693886, 0.015154293738305569, -0.034179214388132095, -0.007243584841489792, -0.022817842662334442, -0.014447338879108429, 0.04088655486702919, -0.021477332338690758, 0.07438194006681442, 0.06561341136693954, 0.017239883542060852, 0.004803793039172888, -0.008976075798273087, 0.006611921358853579, 0.0325666107237339, -0.0028281905688345432, 0.015766119584441185, -0.009649477899074554, -0.06060633435845375, -0.007055127527564764, -0.03617284819483757, -0.0533745214343071, -0.03832206502556801, -0.013139677233994007, 0.06690448522567749, -0.01397930271923542, 0.03323963284492493, 0.0035692895762622356, -0.027461515739560127, -0.03222935274243355, 0.05924657732248306, -0.016809312626719475, 0.04733388498425484, 0.061989206820726395, -0.03185143321752548, -0.05127658322453499, 0.004800118040293455, 0.006803916301578283, 0.011880435980856419, -0.04440648481249809, 0.05858542025089264, 0.002680144738405943, -0.04126300290226936, 0.06166508048772812, 0.04219455644488335, -0.06113435700535774, -0.0497877411544323, -0.013801314868032932, -0.026941411197185516, 0.005046110600233078, -0.04010283201932907, 0.03897787630558014, 0.013217829167842865, -0.024569442495703697, 0.021724073216319084, 0.02511325478553772, 0.005817311350256205, 0.04226871579885483, -0.0014546819729730487, 0.03254387155175209, -0.03996710479259491, -0.013643964193761349, 0.011249748058617115, 0.0011175628751516342, 0.007873941212892532, -0.04404403641819954, -0.0044606588780879974, 0.0026726273354142904, 0.0075623649172484875, 0.04564163461327553, 0.021226180717349052, 0.03833853080868721, 0.011436020955443382, 0.028896749019622803, 0.03849898651242256, -0.021054498851299286, -0.02136332541704178, 0.022056199610233307, -0.027601242065429688, -0.05876898020505905, -0.021672863513231277, -0.0300159752368927, 0.03402086719870567, 0.03747972100973129, -0.055010322481393814, 0.013435504399240017, 0.06687889993190765, 0.01875615492463112, -0.028861507773399353, -0.06445055454969406, -0.037913572043180466, -0.03775644674897194, -0.027520274743437767, -0.010162368416786194, -0.010694688186049461, -0.016671879217028618, 0.05880425125360489, 0.019705766811966896, -0.06853286176919937, -0.005698250140994787, 0.015275508165359497, 0.0015551992692053318, -0.019143979996442795, -0.040676772594451904, 0.02339826710522175, -0.013758182525634766, -0.040716372430324554, -0.05855831131339073, 0.03266170620918274, 0.0023141796700656414, 0.02001313492655754, -0.017231598496437073, 0.012482216581702232, -0.01438545435667038, 0.017381835728883743, 0.02501751109957695, -0.010350223630666733, -0.01687539555132389, -0.05172193795442581, -0.005448722746223211, 0.024487510323524475, -0.04987860471010208, 0.042658839374780655, 0.02496834099292755, 0.00954611599445343, 0.025521811097860336, 0.006234700791537762, -0.03716890886425972, -0.004745488986372948, -0.0019342213636264205, 0.029665479436516762, 0.01994810625910759, -0.041171714663505554, -0.024435412138700485, -0.011806615628302097, -0.028341438621282578, 0.039945993572473526, 0.007035051006823778, 0.02628769539296627, 0.01931503601372242, -0.001587403705343604, -0.03203531354665756, 0.05563315749168396, -0.005877237301319838, 0.023295965045690536, -0.0013610880123451352, 0.014886371791362762, 0.005520544480532408, 0.012818915769457817, 0.006270887795835733, 0.030015544965863228, -0.027939531952142715, 0.0008165377657860518, 0.045860301703214645, 0.01443722564727068, -0.00595445791259408, 0.020822767168283463, -0.021696845069527626, -0.03279423713684082, -0.025765428319573402, -0.014783489517867565, -0.00609550392255187, 0.04167450964450836, 0.024641407653689384, 0.012279110960662365, 0.02200777269899845, -0.04534111171960831, -0.02184973657131195, 0.0041795638389885426, -0.07081741094589233, -0.045249227434396744, 0.031143277883529663, 0.01840219646692276, -0.023391325026750565, -0.027443846687674522, -0.031603340059518814, -0.01285962201654911, 0.021041305735707283, -0.007831758819520473, -0.05107990652322769, 0.015759507194161415, -0.015235967934131622, 0.04004273563623428, 0.005160908680409193, -0.022845350205898285, 0.008624219335615635, 0.03899692744016647, -0.046606771647930145, -0.06183630973100662, 0.021158037707209587, 0.0016143035609275103, 0.011468418873846531, 0.014096677303314209, -0.01810770109295845, 0.0131522286683321, 0.026042703539133072, 0.00223280000500381, 0.013037923723459244, 0.01565084606409073, -0.002316205995157361, 0.01005761418491602, -0.014521166682243347, -0.01639440283179283, -0.039886970072984695, 0.026227490976452827, 0.007873847149312496, -0.0078008477576076984, -0.043975237756967545, 0.04480968415737152, 0.041558925062417984, -0.017871685326099396, 0.028462497517466545, 0.0026544725988060236, 0.0442165844142437, -0.014969105832278728, -0.01554789301007986, -0.01511451881378889, 0.030673235654830933, 0.07090345025062561, 0.033552657812833786, -0.012786868959665298, 0.021599698811769485, 0.03947567567229271, 0.018294135108590126, 0.015638569369912148, 0.04096991941332817, -0.0019103371305391192, -0.0019341292791068554, 0.007949999533593655, -0.02404862642288208, 0.018099775537848473, -0.02067527174949646, 0.00772930309176445, 0.009571593254804611, -0.04471808671951294, -0.009869830682873726, -0.013787475414574146, -0.021281415596604347, 0.038004133850336075, -0.004503624979406595, 0.021817002445459366, -0.025354908779263496, -0.007958569563925266, 0.011422795243561268, 0.051944006234407425, -0.007383521646261215, -0.008239462040364742, 0.023674894124269485, 0.036353711038827896, 0.0030361523386090994, 0.047229208052158356, 0.026331385597586632, 0.03469157963991165, -0.020190482959151268, 0.016633586958050728, 0.021556431427598, 0.015584206208586693, -0.062081824988126755, 0.012137183919548988, -0.03217826038599014, 0.029772108420729637, -0.03948761150240898, -0.0005515191005542874, 0.04360407218337059, -0.04641060158610344, -0.019269363954663277, -0.027357596904039383, 0.02397562377154827, -0.024759117513895035, -0.008278694935142994, 0.02872210182249546, 0.001771166455000639, -0.028206201270222664, 0.05809006094932556, 0.0032253479585051537, 0.01667238213121891, -0.004619442392140627, 0.03487448766827583, 0.007530460599809885, 0.025953158736228943, 0.0567309744656086, -0.007516654673963785, -0.034005727618932724, 0.06431350111961365, 0.00183810293674469, -0.04325985163450241, -0.037048038095235825, -0.03604361042380333, -0.025672810152173042, 0.019779225811362267, 0.004085413180291653, -0.020102085545659065, 0.02772783674299717, 0.033230025321245193, -0.04263458773493767, 0.0013215733924880624, 0.03322041779756546, -0.03159355744719505, 0.03419956564903259, 0.036394499242305756, 0.030557774007320404, -0.018429236486554146, -0.013204595074057579, -0.023512981832027435, -0.06352410465478897, 0.03691297397017479, -0.031989216804504395, 0.011845366097986698, 0.00728279585018754, -0.040056291967630386, -0.03743228688836098, -0.025454532355070114, -0.025948062539100647, 0.010417411103844643, -0.022773947566747665, -0.042364880442619324, 0.028565337881445885, 0.029165709391236305, 0.030686642974615097, -0.0191207155585289, -0.05345051363110542, 0.02552359364926815, 0.014338972978293896, 0.05682152137160301, -0.010360590182244778, 0.06296255439519882, 0.043826036155223846, 0.010578311048448086, -0.011027645319700241, -0.023666707798838615, 0.002603142987936735, -0.003813464194536209, -0.015153815969824791, -0.014682781882584095, 0.00279336073435843, -0.02900570072233677, -0.053008124232292175, -0.005990190431475639, 0.041165564209222794, 0.01449811551719904, -0.018667466938495636, -0.05518822371959686, -0.012416440062224865, -0.0707663893699646, -0.01868217997252941, -0.05604001134634018, 0.022348841652274132, -0.0009449979406781495, -0.001458501792512834, 0.0029256681445986032, -0.039036825299263, 0.14027704298496246, 0.041478849947452545, 0.03360430896282196, -0.03284340351819992, 0.0010808260412886739, 0.05941345915198326, -0.022067157551646233, -0.012873147614300251, 0.001676361309364438, -0.03930702060461044, 0.05993961915373802, -0.032015398144721985, -0.010862668044865131, -0.0007623974815942347, 0.006252408027648926, 0.050641123205423355, -0.030295176431536674, 0.005958950147032738, 0.03839660808444023, -0.030517728999257088, -0.04340004175901413, 0.04320342093706131, 0.004885231610387564, 0.03551672026515007, -0.014192977920174599, 0.03494361788034439, 0.054593611508607864, -0.0841655507683754, -0.00874842144548893, 0.0056300414726138115, 0.0390264093875885, -0.02841787040233612, 0.03454643487930298, 0.012502099387347698, -0.02805435098707676, 0.047507815062999725, 0.019778957590460777, -0.019682366400957108, 0.004631733521819115, -0.005135666113346815, 0.009950199164450169, 0.0001716800034046173, -0.015817709267139435, -0.05744163691997528, 0.00809863768517971, 0.005286592524498701, -0.023481037467718124, 0.015141889452934265, -0.0010743046877905726, -0.03775777667760849, 0.04546577110886574, -0.020939819514751434, 0.04490157589316368, -0.008807504549622536, -0.057183291763067245, -0.01293598860502243, 0.0009961083997040987, -0.01836245320737362, 0.005081219132989645, 0.038138002157211304, 0.04578937590122223, 0.026422714814543724, -0.047113485634326935, 0.027370940893888474, -0.00029985138098709285, 0.030279936268925667, 0.01303885318338871, -0.008665526285767555, -0.011692553758621216, 0.00736638717353344, 0.017100291326642036, -0.024990227073431015, -0.014715948142111301, -0.0228674728423357, -0.00520919868722558, 0.018387749791145325, -0.03264205902814865, 0.022752508521080017, -0.02619333378970623, -0.013322524726390839, -0.006521701347082853, -0.017945514991879463, -0.004686393309384584, -0.004978655371814966, 0.019687511026859283, 0.04595091938972473, -0.05958724021911621, -0.07739876955747604, -0.03243699297308922, 0.02626406028866768, 0.023654794320464134, 0.042354024946689606, -0.01804601401090622, -0.01459531206637621, -0.016870152205228806 ]
Input sought on vacant area in Fifth Avenue district Redevelopment NewsBy FRAstaff December 3, 2015 The property where the Seminary Lane Apartments once stood has been vacant since 2009. And the Gainesville Community Redevelopment Agency is seeking ideas from residents as to what they want to see on the 6.25-acre site in the historic Northwest Fifth Avenue area. Sarit Sela, CRA project manager, is asking residents to voice their opinions… 'Shop small' catching on in Volusia, Flagler downtown districts Downtowns were bustling from Flagler Avenue in New Smyrna Beach, northward to Flagler Beach and west to Woodland Boulevard in DeLand as shoppers packed the sidewalks for a yearly shopping tradition. And the weather — a sunny and breezy 76 degrees — was perfect to welcome the crowds. Small Business Saturday, a yearly event that… Detroit tries unconventional approach to restoring its housing market DETROIT — For Jazley Trouser, a 25-year-old Home Depot worker who has endured her share of hard times, the opportunity to become a homeowner was too good to pass up. With a $1,000 bid on the city's online auction site, Trouser bought a four-bedroom Tudor plundered by thieves. A $25,000 grant from a community bank… Developer wins right to restore historic former YMCA in downtown St. Petersburg ST. PETERSBURG — The battle over the sale of the historic former YMCA building is over and developer Nick Ekonomou, who bought it more than a year ago, is ready to begin restoration. "The project now moves forward full steam ahead," he said Wednesday. Ekonomou said he has hired local architect Jack Bodziak and is… Historic Lake Worth hotel gets first approval for makeover Recently at the city's Historic Resources Preservation Board meeting, Bonnie Miskel, a land-use and zoning attorney working with developer Hudson Holdings, was making her best pitch as to why the board should approve a key zoning change to allow the $60 million Gulfstream Hotel site restoration project to inch forward. Miskel spoke in a language… Guy Harvey and Boynton Beach in talks of bringing resort to city The city's Community Redevelopment Agency and Guy Harvey Outpost Resorts are in talks about the company bringing one of its beach-inspired hotels to the downtown area. "We'd love to make it happen," Mayor Jerry Taylor said Tuesday. Boynton Beach has long wanted a hotel to open downtown. This month, Vivian Brooks, the CRA executive director,… At one year, Harbourside continues to delight, divide Redevelopment NewsBy FRAstaff November 30, 2015 Harbourside Place, the $150 million waterfront entertainment center, is the best thing to happen to Jupiter since the lighthouse was first illuminated in 1860. Or, it's a concrete sore thumb. "There are so many choices. Restaurants, retail, shops. You're on the water. Outdoor music. There's even a public dock. We love this place," said Erin… Angry Harbourside owner: Nothing satisfies Jupiter council Saying he has gone "above and beyond" meeting town requirements, Harbourside developer Nick Mastroianni blasted Jupiter officials for suspending the up to $350,000 annual payments to his $150 million waterfront entertainment center. "It's sad to see that the public will lose the great benefit that Mayor (Karen) Golonka envisioned in this project," Mastroianni said in… New Port Richey moves forward on riverfront project NEW PORT RICHEY — As Main Street Landing developer Ken McGurn has acknowledged, "We've been beating our heads against the wall for a long time." The project moved forward recently when the Gainesville-based developer and New Port Richey city officials finalized a pact to resurrect the riverfront project, which has been stalled since 2004, when… Tavares officials look forward to newest development Tavares hit it out of the park with its "America's Seaplane City" branding and the development of Wooton Park. Now the city is looking to create another success with Tavares Square, a multi-million-dollar block that's part of the city's downtown redevelopment master plan. "We were pleasantly surprised that there was a lot of interest in… Dixie Highway redo could bring 15-story condos south of downtown WPB A stretch of sleepy South Dixie Highway in West Palm Beach could be transformed into a complex featuring shops, a park and a bold vision: five glass-and-steel condominium towers, each rising 15 stories. Owners of the Prospect Place office center at 3111 S. Dixie Highway plan a $200 million redevelopment of their 9.4-acre site, which… Garage construction in Bartow begins Monday BARTOW — If you're headed to any county office around the courthouse in Bartow on Monday or any other day between then and next August, expect parking to be harder to find. The parking crunch will be caused by the start of construction on a new $8 million, 679-space parking garage in what is now… 234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
[ -0.011430828832089901, -0.001519909594208002, -0.018327459692955017, 0.026490461081266403, -0.032100338488817215, -0.00012990350660402328, -0.010789257474243641, 0.034369096159935, 0.02175934985280037, 0.008678547106683254, 0.04903629794716835, -0.032236773520708084, -0.011214561760425568, -0.03319508954882622, 0.013940173201262951, -0.014164737425744534, -0.011541161686182022, -0.013137135654687881, -0.007664280943572521, 0.03135816752910614, 0.0017263120971620083, -0.0008731844718568027, -0.05702456459403038, -0.04124334454536438, -0.025548681616783142, 0.04922521486878395, 0.030987966805696487, -0.014040485955774784, 0.06058759242296219, 0.04971937835216522, -0.039096035063266754, -0.057986631989479065, 0.024543656036257744, -0.039493151009082794, -0.016178065910935402, -0.004558894317597151, 0.0341518335044384, -0.05423794686794281, -0.011624370701611042, -0.017463048920035362, -0.017040621489286423, -0.00955332163721323, 0.023518996313214302, -0.029292378574609756, -0.03217769414186478, 0.015551290474832058, -0.004350635688751936, -0.029582280665636063, 0.01770797371864319, -0.04305878281593323, -0.0015649970155209303, -0.015486562624573708, 0.0035760204773396254, 0.017330585047602654, 0.0042864433489739895, -0.01893281377851963, -0.008240094408392906, -0.016360998153686523, 0.00891247671097517, 0.01782500371336937, 0.019424421712756157, 0.01806669495999813, 0.03597395867109299, -0.0596996545791626, 0.020023806020617485, 0.0269764494150877, -0.014260356314480305, -0.01761716790497303, 0.025131018832325935, -0.028959980234503746, 0.02859010547399521, 0.003618856891989708, -0.03512989357113838, -0.011793673038482666, 0.026710569858551025, -0.02951458841562271, -0.004066913388669491, 0.0035426351241767406, -0.015643799677491188, -0.020807242020964622, 0.004016058053821325, 0.028631048277020454, 0.0031847150530666113, 0.03796172887086868, -0.0695432648062706, -0.016728810966014862, -0.010759672150015831, 0.015577346086502075, 0.011428426019847393, -0.0061951326206326485, -0.02212093584239483, 0.05144674330949783, 0.036714717745780945, -0.003153819590806961, 0.03411715105175972, 0.03618396446108818, -0.019015036523342133, 0.021226318553090096, 0.0255486648529768, -0.017780384048819542, 0.03490256518125534, 0.01657092571258545, -0.016008974984288216, 0.0625249594449997, -0.05278784781694412, 0.00451281713321805, 0.04165712371468544, -0.0018890488427132368, 0.015908166766166687, -0.036370765417814255, -0.0019068459514528513, -0.05181266739964485, 0.037808697670698166, -0.0014153539668768644, 0.005988300312310457, 0.04625428840517998, 0.03198111057281494, 0.010211494751274586, -0.009681434370577335, -0.0021630360279232264, 0.00018187462410423905, -0.017189467325806618, 0.012386651709675789, -0.042975135147571564, 0.013090814463794231, -0.03557482361793518, -0.03797709941864014, 0.04822738096117973, -0.04021523520350456, -0.019798625260591507, 0.0037733283825218678, -0.027066418901085854, 0.007598755415529013, 0.032335106283426285, 0.03162003681063652, 0.020798098295927048, 0.007224005647003651, 0.06312777101993561, 0.009026048704981804, -0.03549622744321823, 0.04872525855898857, 0.013125302270054817, 0.0075833918526768684, 0.10581214725971222, -0.010359502397477627, 0.03057117946445942, 0.0029610940255224705, -0.02682618424296379, -0.024256661534309387, 0.035425227135419846, -0.0515640452504158, 0.036015067249536514, -0.00533680897206068, 0.006108191329985857, -0.00437223631888628, 0.006476219277828932, 0.0018783597042784095, 0.03503954038023949, 0.023716863244771957, 0.06379810720682144, -0.06023377552628517, -0.0007340160082094371, -0.009679379872977734, 0.028618576005101204, -0.03085748851299286, 0.025486130267381668, -0.022280361503362656, 0.0013220745604485273, -0.004134051036089659, -0.012057848274707794, 0.016727300360798836, 0.003739808453246951, -0.03145752102136612, 0.0035068709403276443, 0.018238112330436707, 0.02388889528810978, 0.0515652596950531, 0.005373809020966291, 0.01753269135951996, 0.03949856013059616, -0.023257650434970856, -0.0045836316421628, -0.0003032328386325389, 0.05458412691950798, 0.01717403531074524, -0.021894047036767006, 0.05182962492108345, -0.04288278892636299, -0.04074561595916748, -0.021485047414898872, 0.026172956451773643, 0.014253891073167324, -0.03079918958246708, 0.02832411788403988, 0.002847913186997175, 0.007170113734900951, -0.00834877509623766, -0.019197484478354454, 0.006102551706135273, -0.016820313408970833, -0.05367197468876839, 0.03925329074263573, -0.0273334588855505, -0.004193507134914398, -0.018173934891819954, -0.06354566663503647, 0.03149645775556564, 0.07549907267093658, -0.04313831031322479, 0.010635724291205406, 0.03207484260201454, -0.0037920414470136166, -0.016703477129340172, -0.0021177756134420633, 0.03308476135134697, 0.0033534839749336243, -0.011803499422967434, 0.07109515368938446, 0.01915074698626995, -0.026184409856796265, -0.008252381347119808, -0.003715168684720993, 0.050067514181137085, 0.046197835355997086, 0.03898783400654793, 0.02451964095234871, 0.020235557109117508, 0.03696775436401367, -0.013022896833717823, -0.02003881335258484, -0.016119834035634995, 0.032883673906326294, 0.02966754510998726, 0.06248750910162926, 0.022116750478744507, 0.024159535765647888, 0.06258223205804825, 0.042056601494550705, -0.028505634516477585, 0.03133738413453102, -0.000797203800175339, 0.05167223513126373, 0.03245978057384491, 0.022011078894138336, -0.05055500939488411, 0.03900895267724991, -0.017567967996001244, -0.02689286135137081, -0.02281259000301361, 0.04061746597290039, -0.02523619495332241, 0.029834795743227005, -0.0019251095363870263, 0.024156339466571808, -0.022306373342871666, 0.02770799770951271, 0.028948873281478882, 0.052994124591350555, -0.026843322440981865, 0.004597172141075134, 0.0019836733117699623, -0.0006443675956688821, -0.03460920602083206, -0.023000940680503845, 0.04563329368829727, 0.027123676612973213, -0.0028929533436894417, 0.009659663774073124, -0.0214469563215971, -0.035161565989255905, -0.044478703290224075, -0.04046450927853584, -0.04757704585790634, -0.03161880373954773, -0.05366567522287369, -0.0038654664531350136, 0.0331546887755394, -0.03882418945431709, 0.009787308983504772, -0.007097952533513308, -0.015023505315184593, -0.033949535340070724, 0.0027820258401334286, 0.0533025860786438, 0.04528425261378288, 0.03813743591308594, -0.027666011825203896, 0.03257785737514496, 0.030251773074269295, 0.03250782936811447, -0.04966779798269272, 0.024384144693613052, -0.031483836472034454, 0.0074968477711081505, 0.016607679426670074, -0.019557150080800056, -0.0000544226095371414, -0.016569580882787704, -0.04678378999233246, -0.05005646497011185, 0.0012422640575096011, 0.016050800681114197, -0.004278180655092001, 0.0061266012489795685, -0.02427973411977291, 0.05085942894220352, 0.027042388916015625, -0.022352734580636024, 0.04680827260017395, 0.05647347494959831, -0.037057485431432724, 0.06855608522891998, 0.02334553748369217, 0.0029173337388783693, -0.05978991091251373, 0.0688655897974968, 0.05714072287082672, -0.003484268905594945, -0.013649309054017067, -0.02213384211063385, -0.02508693002164364, 0.016709748655557632, -0.004748968873172998, -0.04296911135315895, -0.04085917770862579, 0.024592841044068336, 0.015507668256759644, -0.05464843288064003, 0.020626476034522057, -0.06242528185248375, -0.04108221083879471, -0.021101340651512146, -0.023196861147880554, 0.05003156512975693, 0.013286617584526539, 0.06048441305756569, 0.046866364777088165, -0.004811084363609552, -0.006571121048182249, 0.026233479380607605, 0.05389614775776863, -0.04463493451476097, 0.02094491571187973, 0.04238762706518173, 0.00029867226839996874, 0.0305262990295887, 0.009256790392100811, -0.010601897723972797, -0.030988622456789017, 0.010686821304261684, -0.023168615996837616, 0.007243769243359566, 0.007614445872604847, -0.006672687362879515, 0.007360764779150486, 0.06377698481082916, -0.03391361981630325, 0.018554821610450745, -0.005831502843648195, 0.058341652154922485, 0.042387280613183975, 0.02649221010506153, -0.015164163894951344, -0.0167184229940176, -0.0317433662712574, -0.05024735629558563, 0.0010530882282182574, 0.0401943102478981, 0.0631822943687439, -0.0443454384803772, 0.06124928221106529, -0.014177086763083935, -0.03878318890929222, 0.04463174194097519, -0.042535390704870224, -0.012929665856063366, 0.049499496817588806, -0.006913406308740377, 0.044441528618335724, -0.04123035445809364, 0.02532920427620411, -0.02551887370646, 0.010990340262651443, 0.026482919231057167, 0.01439718808978796, -0.0030098201241344213, -0.022408464923501015, -0.03942034766077995, -0.03151291236281395, -0.012750493362545967, -0.020925607532262802, -0.0240415558218956, 0.021412000060081482, -0.01710735820233822, -0.04615719988942146, -0.06408152729272842, 0.04134739562869072, 0.03789196163415909, 0.0256657712161541, 0.005659712012857199, 0.03611784055829048, -0.012235132046043873, 0.02375754714012146, 0.05814894288778305, -0.009922059252858162, 0.04332247003912926, -0.04199330508708954, 0.05359545722603798, 0.01945849135518074, -0.013147443532943726, -0.01755053736269474, -0.05445818230509758, -0.011433878913521767, 0.04234727844595909, 0.010667447932064533, -0.01814987324178219, -0.05435561761260033, 0.015368225984275341, -0.002389088273048401, 0.02726759761571884, -0.05640875920653343, -0.008447067812085152, -0.013764566741883755, 0.004763463046401739, -0.0050537316128611565, -0.04451635479927063, -0.0005112820654176176, -0.0330873541533947, 0.042346179485321045, 0.054226335138082504, -0.004272819496691227, -0.02622923068702221, -0.007674047723412514, -0.028029128909111023, -0.002200100105255842, 0.024914409965276718, 0.039909202605485916, -0.021195484325289726, -0.016057971864938736, -0.050257619470357895, 0.016613204032182693, 0.05637174844741821, -0.0037116992752999067, -0.004191987682133913, -0.0032944688573479652, 0.0005860607489012182, -0.008861598558723927, 0.05010627210140228, -0.014836245216429234, 0.0012419604463502765, 0.0005118650151416659, -0.04242329299449921, 0.016935519874095917, -0.013889905996620655, -0.009573607705533504, -0.014101752080023289, 0.023191744461655617, 0.012826288118958473, 0.050078295171260834, -0.026380067691206932, 0.022054996341466904, -0.01567380502820015, 0.03523440286517143, -0.05552756413817406, -0.031226033344864845, 0.0512506328523159, -0.023314394056797028, -0.016427380964159966, 0.006864872295409441, 0.05751991271972656, -0.014167075976729393, 0.015215662308037281, 0.013022332452237606, -0.06072571873664856, 0.0267616156488657, -0.044634025543928146, 0.039862118661403656, -0.03371733799576759, -0.03585841879248619, 0.023290401324629784, -0.01766079291701317, 0.05398629978299141, 0.00006353460776153952, 0.004566743038594723, -0.03264479711651802, -0.044489502906799316, -0.014899180270731449, 0.016288630664348602, -0.012455970048904419, 0.010294829495251179, 0.01800074242055416, -0.006187744904309511, 0.002405630424618721, -0.017153218388557434, -0.0003001725999638438, -0.012620671652257442, -0.038090694695711136, 0.015405700542032719, 0.0040143318474292755, 0.002743432531133294, 0.02862490527331829, -0.013022946193814278, -0.034897252917289734, 0.014503338374197483, 0.0016702879220247269, -0.05168384313583374, -0.07344390451908112, -0.01378412265330553, -0.012394622899591923, 0.0045296610333025455, -0.03288845345377922, 0.0006608860567212105, -0.014243468642234802, 0.024539053440093994, 0.03934038430452347, -0.011732545681297779, -0.011324579827487469, 0.006763878278434277, -0.03247455134987831, 0.01274881511926651, 0.027230897918343544, -0.04130352661013603, -0.01693427376449108, 0.038843099027872086, -0.02813723310828209, 0.04748336225748062, 0.0016130091389641166, -0.000635164906270802, -0.03678718954324722, -0.03207188844680786, -0.001938659930601716, -0.047232870012521744, -0.03736712411046028, -0.055079929530620575, -0.04711352661252022, -0.030785376206040382, 0.039440304040908813, 0.02275647222995758, 0.017894882708787918, 0.0011806321563199162, -0.024860788136720657, -0.010273467749357224, -0.05782473087310791, -0.02420479618012905, -0.01670045591890812, -0.023903826251626015, -0.02564936876296997, 0.048892632126808167, 0.026431024074554443, 0.005680677015334368, -0.013271349482238293, 0.021669700741767883, 0.03163504600524902, -0.041975200176239014, -0.07278429716825485, -0.02436424233019352, -0.011962003074586391, -0.024758711457252502, 0.006419060751795769, -0.0053873262368142605, -0.03230826556682587, 0.05498895421624184, -0.02465374767780304, -0.00013422800111584365, -0.024199070408940315, -0.02602803148329258, -0.012832088395953178, -0.04978375509381294, 0.044086359441280365, -0.015440170653164387, -0.0023367353715002537, -0.013015859760344028, 0.04958399385213852, 0.001110236276872456, -0.011473258957266808, -0.023169852793216705, -0.053036488592624664, -0.030556710436940193, -0.045747388154268265, 0.0385487899184227, -0.04968419298529625, -0.010335824452340603, -0.04056718945503235, -0.0061174496077001095, 0.042338207364082336, 0.008393485099077225, 0.028208041563630104, 0.0703854039311409, -0.04906977713108063, 0.01878591626882553, -0.022791070863604546, 0.026726724579930305, 0.0409843847155571, -0.005844884552061558, -0.008488478139042854, 0.0032345103099942207, -0.03384842723608017, 0.005663900636136532, -0.057680852711200714, -0.05386020988225937, -0.051410939544439316, -0.03149370849132538, 0.0887281522154808, -0.02794390171766281, 0.03361308574676514, -0.01399809867143631, -0.05636783689260483, -0.024957284331321716, 0.04804665967822075, 0.03251398727297783, 0.02551897242665291, 0.008295495994389057, -0.01911727897822857, 0.0037818504497408867, 0.019340476021170616, 0.030148692429065704, 0.015868309885263443, -0.023657727986574173, 0.07320336997509003, 0.00221548811532557, -0.03683841973543167, 0.04166097193956375, 0.052879881113767624, -0.05053216218948364, -0.023001253604888916, 0.002301773289218545, -0.0003297131333965808, 0.0010920639615505934, -0.029302887618541718, 0.027427606284618378, 0.0037386331241577864, -0.009982552379369736, 0.025375641882419586, 0.04659118503332138, 0.011560589075088501, 0.031592026352882385, 0.004958489444106817, 0.04609478637576103, -0.014803791418671608, -0.014531245455145836, -0.004074391908943653, -0.02283872477710247, -0.026023443788290024, -0.01455418299883604, -0.02000061422586441, 0.010661788284778595, 0.022711720317602158, 0.047890517860651016, -0.044225502759218216, 0.013901257887482643, 0.009268545545637608, 0.006606969516724348, 0.05194738507270813, 0.011647292412817478, -0.011087121441960335, -0.0018565189093351364, -0.008323809131979942, -0.04945411905646324, -0.05859021842479706, 0.00831623189151287, 0.007042123936116695, 0.033661480993032455, -0.07528609782457352, 0.01189353596419096, 0.0443226657807827, -0.045100923627614975, 0.03166870027780533, -0.042199183255434036, -0.012634526938199997, -0.04884730651974678, -0.052807413041591644, -0.0276207085698843, -0.02220068871974945, -0.004325978457927704, 0.006076705642044544, 0.0029902763199061155, -0.04037315770983696, 0.0002690692781470716, 0.02290414273738861, -0.001658962108194828, 0.026950130239129066, -0.04091590642929077, -0.005987850949168205, -0.034603651612997055, -0.05327470973134041, -0.050432655960321426, -0.005483224056661129, -0.04393470659852028, 0.0027705212123692036, -0.023080725222826004, 0.011816897429525852, -0.0007380519527941942, 0.008058353327214718, 0.0092384098097682, -0.0037634156178683043, 0.020136497914791107, -0.02838151715695858, -0.01430725771933794, 0.03328418731689453, -0.002719975309446454, 0.01541266217827797, 0.04067835584282875, -0.0029603405855596066, 0.02780107967555523, -0.03248148411512375, -0.01448409166187048, -0.012707031331956387, -0.018360240384936333, 0.0008426987333223224, -0.0018830872140824795, -0.041484009474515915, -0.018859747797250748, -0.015274249948561192, -0.030456390231847763, 0.03654009848833084, 0.024125460535287857, 0.004060415085405111, 0.0025356293190270662, -0.029466914013028145, 0.037795115262269974, 0.0298411063849926, -0.013070463202893734, -0.006864356808364391, -0.0030165461357682943, 0.01618700847029686, 0.005899636074900627, 0.03544170409440994, 0.03643491864204407, 0.01781543344259262, 0.029099447652697563, -0.028675006702542305, 0.012417376972734928, 0.012774077244102955, -0.010857955552637577, 0.01531373243778944, -0.027446508407592773, -0.05131783336400986, -0.05656140670180321, -0.017434731125831604, 0.0021149131935089827, 0.024079836905002594, 0.021254654973745346, -0.0062256562523543835, 0.02765592560172081, -0.051029641181230545, -0.03507393226027489, 0.02316521294414997, -0.04568932205438614, -0.04347284510731697, 0.047779012471437454, -0.0019274643855169415, 0.0007480389322154224, -0.033279724419116974, -0.008750027045607567, 0.007374563254415989, -0.03989861533045769, -0.00001679576962487772, -0.01662369817495346, 0.03806561604142189, 0.0005491209449246526, 0.01706438511610031, 0.015448814257979393, 0.0038898559287190437, 0.007278915960341692, 0.05426932871341705, -0.04042019322514534, -0.029537539929151535, 0.03170442581176758, 0.02392454631626606, 0.020320959389209747, 0.000551001459825784, 0.003876779228448868, 0.02003406547009945, 0.0024012012872844934, 0.000059437425079522654, -0.0026002577506005764, 0.036681778728961945, 0.02613098919391632, 0.0040826681070029736, -0.03438559174537659, -0.02527761645615101, -0.035075098276138306, 0.03848069906234741, -0.02542288415133953, -0.055863454937934875, -0.01304839551448822, 0.02841036580502987, 0.03632337599992752, -0.0055334484204649925, 0.047096434980630875, -0.014350078999996185, 0.020228082314133644, -0.008210393600165844, 0.026053112000226974, -0.031070657074451447, 0.03716500103473663, 0.037270206958055496, 0.05821993947029114, -0.0017479521920904517, 0.025781642645597458, 0.02833537571132183, -0.00891947839409113, -0.0072143832221627235, 0.06715173274278641, 0.0465058758854866, -0.02125360630452633, -0.021787092089653015, -0.003003452904522419, 0.030163930729031563, 0.014520916156470776, -0.0422242246568203, 0.017324993386864662, -0.02908635511994362, 0.023879515007138252, -0.029353370890021324, -0.02363240160048008, 0.07910485565662384, -0.02165735512971878, -0.003975927364081144, -0.007017261814326048, -0.026413751766085625, -0.025850992649793625, 0.027240443974733353, 0.010780151933431625, 0.01844584383070469, 0.04027546942234039, 0.03576907888054848, -0.01283785980194807, 0.03010197915136814, 0.032352495938539505, -0.0053762332536280155, -0.046093180775642395, -0.00037766131572425365, 0.008796793408691883, -0.008112926967442036, -0.031127063557505608, 0.000032049811125034466, -0.025083154439926147, 0.03531494736671448, -0.01738811656832695, -0.041892848908901215, 0.03495324030518532, -0.04240092635154724, 0.009663362056016922, -0.054652340710163116, 0.037361521273851395, -0.06032481789588928, -0.012789505533874035, 0.013999436981976032, 0.0009222425287589431, -0.02174701914191246, 0.048020195215940475, 0.013654856011271477, 0.022262390702962875, 0.0030153244733810425, 0.06073613464832306, 0.005586916580796242, 0.02227751538157463, 0.053430408239364624, -0.04893770441412926, 0.01693754270672798, 0.054864875972270966, -0.006029999349266291, -0.04616653174161911, -0.022315744310617447, -0.005993968807160854, 0.00970924086868763, -0.04151619225740433, -0.015279646962881088, 0.014818934723734856, 0.02312753163278103, 0.010999815538525581, -0.06173359230160713, -0.020460184663534164, 0.04781836271286011, -0.04745114967226982, 0.015920376405119896, 0.009510465897619724, 0.03422926738858223, -0.015118037350475788, -0.007080613169819117, -0.032494138926267624, -0.016592469066381454, -0.007247034925967455, -0.02458525449037552, 0.04739014804363251, 0.0006875726976431906, -0.01584789715707302, -0.03563579544425011, -0.041743677109479904, -0.01205393671989441, 0.021229097619652748, -0.056463226675987244, -0.04246368631720543, 0.041280943900346756, 0.030352966859936714, 0.0027411312330514193, 0.007243957836180925, -0.00569669995456934, -0.016563592478632927, 0.013634514063596725, 0.060647476464509964, 0.008014194667339325, 0.028106626123189926, 0.004107198677957058, -0.03623305261135101, 0.022425485774874687, -0.025938289240002632, 0.02890929765999317, -0.013089044019579887, -0.043349768966436386, -0.01221117191016674, -0.00293301185593009, -0.02038770541548729, -0.07650267332792282, 0.010773996822535992, -0.021388601511716843, 0.006142277270555496, -0.0521748811006546, -0.050246309489011765, -0.00854494795203209, -0.026003330945968628, -0.0056893411092460155, -0.029951324686408043, -0.010178240947425365, -0.017215706408023834, 0.015220241621136665, 0.013729996047914028, -0.08177849650382996, 0.15693335235118866, 0.01166777964681387, 0.057786453515291214, -0.028881361708045006, 0.019949734210968018, 0.05149954929947853, 0.009121139533817768, 0.013816612772643566, -0.01120248343795538, -0.06325530260801315, 0.045796189457178116, -0.03178086504340172, -0.008633028715848923, -0.002609179588034749, 0.014773243106901646, 0.045002590864896774, -0.05158572643995285, 0.020306479185819626, 0.010371844284236431, -0.032718293368816376, -0.04188759624958038, 0.010819262824952602, -0.013081660494208336, 0.028520703315734863, -0.01702793501317501, 0.03350606933236122, 0.019534150138497353, -0.02822393923997879, 0.017956651747226715, -0.03187334164977074, 0.029628939926624298, -0.056408438831567764, 0.029796695336699486, -0.006262646522372961, -0.06578430533409119, 0.05414798855781555, 0.018853643909096718, -0.005797918885946274, 0.010518943890929222, -0.00045339384814724326, -0.018878063187003136, -0.014625883661210537, 0.06027565523982048, -0.030575450509786606, 0.02284695953130722, -0.010129648260772228, -0.03511951118707657, -0.0018573988927528262, 0.03991756960749626, -0.03333231434226036, 0.06834331899881363, -0.045274872332811356, 0.017976364120841026, 0.00800706073641777, -0.004269745200872421, 0.016532475128769875, 0.04701211303472519, -0.01389356330037117, 0.001664542593061924, 0.011295967735350132, 0.034667495638132095, 0.00582166900858283, -0.04775109142065048, 0.04520174860954285, -0.0332413949072361, -0.004110767971724272, 0.006024434696882963, -0.004931601695716381, 0.011688279919326305, -0.046462543308734894, -0.009328033775091171, -0.011429576203227043, 0.021960873156785965, -0.021034931764006615, 0.029857460409402847, 0.010588862001895905, 0.003688439028337598, 0.025346964597702026, -0.009565378539264202, -0.014298923313617706, 0.007220757659524679, -0.03418106213212013, 0.01713777333498001, 0.009580732323229313, 0.026696590706706047, 0.04606235399842262, -0.017909273505210876, -0.03716814145445824, -0.01753309741616249, 0.05206434801220894, 0.021757490932941437, 0.016281019896268845, -0.02395850419998169, -0.031842950731515884, -0.008854054845869541 ]
Q: AI Chess Valid Moves I am trying to write AI Chess and I have a problem. I am ready with pieces movement rules, and I'm trying to remove moves that are not valid (leave the king in check etc). I Wrote something like this: ValidateMove(board); { for(i=0;i<64;i++) if(board[i]==king.opposite) kingpos=board[i]; createmoves(board); if (moves.contains(kingpos)) return false; } However, I'm using minimax + alpha beta and that validation is making my search really slow. A: Instead of checking for 'check' every move, just set losing your king to give a score of -infinity and end the game then the algorithm will never choose a move that allows the king to be lost unless there is no option. Just watch out for stalemate which will need special treatment because according to the above algorithm it will result in a loss, but according to standard chess rules, it is called as a draw. A: My understanding is that finding valid moves usually takes the most time in most chess algorithms. You may be able to improve your overall performance by improving your move generation by using the clever Bitboard techniques found in computer chess theory. http://www.frayn.net/beowulf/theory.html http://en.wikipedia.org/wiki/Board_representation_%28chess%29 http://en.wikipedia.org/wiki/Bitboard
[ 0.02919940836727619, 0.021966639906167984, 0.005629173945635557, 0.031837839633226395, -0.012298899702727795, -0.018482374027371407, 0.007046680897474289, 0.023591192439198494, -0.005604968871921301, 0.03978083282709122, 0.020517336204648018, 0.0322415716946125, -0.014715188182890415, -0.037031352519989014, 0.0029792883433401585, 0.007332638371735811, -0.010736235417425632, -0.02029464766383171, -0.038322459906339645, -0.015624613501131535, 0.019237548112869263, 0.007876921445131302, -0.08689063042402267, -0.022621696814894676, -0.024597717449069023, 0.018044432625174522, 0.023439889773726463, -0.01281446497887373, 0.07449555397033691, 0.05683102086186409, -0.002881900407373905, -0.020715732127428055, 0.043343912810087204, -0.02861783280968666, -0.023011161014437675, -0.03986696898937225, 0.04282331466674805, -0.01929319277405739, -0.03521767258644104, -0.040379539132118225, 0.020411619916558266, -0.03579731285572052, 0.020554011687636375, -0.050872258841991425, -0.060542695224285126, 0.006394385360181332, -0.01515087578445673, -0.017240777611732483, -0.002276224084198475, -0.06106856092810631, 0.002240109955891967, 0.007076024077832699, 0.0003596192109398544, 0.006043162662535906, -0.024147426709532738, 0.03896794840693474, 0.023977138102054596, -0.004017107654362917, -0.04194217175245285, 0.006548125762492418, 0.04261818155646324, -0.011023166589438915, 0.013295656070113182, -0.04180501401424408, 0.02306509017944336, 0.024703187867999077, 0.007446033880114555, -0.008934926241636276, 0.00907863024622202, -0.008170746266841888, -0.030362579971551895, -0.015254233032464981, 0.010926401242613792, -0.011754397302865982, 0.0004066592955496162, 0.046946920454502106, 0.028491446748375893, 0.012172851711511612, -0.007165511138737202, 0.034821998327970505, 0.014647841453552246, 0.08165910840034485, 0.0016361555317416787, -0.001895610592328012, -0.041571423411369324, -0.034151941537857056, 0.03910411521792412, 0.027157194912433624, -0.012013839557766914, -0.03026202693581581, 0.005587876308709383, 0.0491713285446167, -0.005039152689278126, -0.006677949335426092, 0.03585709631443024, 0.05679157003760338, -0.03226805850863457, 0.03910524770617485, 0.013704984448850155, -0.02027568593621254, 0.03995751589536667, 0.03551243990659714, -0.019503450021147728, 0.0483478307723999, -0.02716546691954136, -0.028595857322216034, -0.0038500139489769936, -0.014192082919180393, -0.01713443361222744, -0.047336138784885406, -0.0008588989148847759, 0.009603247977793217, -0.02938198298215866, 0.02395777590572834, -0.009972154162824154, 0.05395353212952614, -0.001104480936191976, 0.024075979366898537, -0.037068240344524384, 0.012528696097433567, 0.04340597242116928, 0.024662762880325317, 0.030405502766370773, 0.011705494485795498, 0.021289195865392685, -0.015835102647542953, -0.02882223203778267, 0.05888577178120613, -0.05551925674080849, 0.008429746143519878, 0.008563605137169361, -0.0000553654354007449, -0.004896601662039757, 0.018634945154190063, 0.005110427737236023, -0.005005283281207085, -0.013740837574005127, 0.016592789441347122, 0.028034357354044914, -0.042278651148080826, 0.05926598608493805, 0.0065104481764137745, -0.0023594831582158804, 0.08330360054969788, -0.00042586526251398027, -0.008191940374672413, 0.03494790568947792, 0.020354019477963448, -0.0410894900560379, 0.0280748400837183, -0.07642471790313721, 0.024963034316897392, -0.003335638903081417, 0.016073154285550117, -0.008616168983280659, -0.02564474754035473, -0.025634828954935074, -0.005129785742610693, 0.027274811640381813, 0.0031732292845845222, -0.01654788851737976, 0.022650163620710373, 0.00019287933537270874, 0.03534878417849541, -0.0009193962323479354, 0.029094655066728592, -0.03599647432565689, 0.0030590889509767294, 0.005025423597544432, -0.02376885525882244, -0.0002304309164173901, -0.023735759779810905, -0.02933083474636078, 0.011303610168397427, 0.02188156545162201, 0.06876346468925476, 0.04950612410902977, -0.014144948683679104, 0.02244255319237709, 0.02738753892481327, -0.043807417154312134, 0.0038808113895356655, -0.012594436295330524, 0.059785425662994385, 0.02260681428015232, 0.017139771953225136, 0.022067438811063766, -0.01459500566124916, -0.01723402366042137, -0.001784852589480579, 0.02431011013686657, 0.01909966953098774, -0.018969237804412842, 0.0341850109398365, 0.016833821311593056, 0.007587025407701731, -0.03218482807278633, 0.024757886305451393, -0.006550297141075134, -0.059930186718702316, -0.03164200857281685, 0.0253355260938406, -0.008047093637287617, 0.004662628751248121, -0.03151026740670204, -0.02215401455760002, -0.014369508251547813, 0.04773442819714546, -0.06508906930685043, 0.026504427194595337, 0.03263811394572258, 0.002507140627130866, -0.008838440291583538, -0.023066837340593338, 0.003977795131504536, 0.01979660429060459, -0.030963439494371414, 0.03262290731072426, 0.012747249566018581, -0.00886383093893528, 0.05987613648176193, 0.0285282414406538, -0.0047620320692658424, 0.038691308349370956, -0.0025955301243811846, -0.02134556509554386, 0.019112709909677505, 0.05215355008840561, -0.011931329034268856, 0.02188713848590851, 0.0022608002182096243, 0.05889233574271202, 0.0027205070946365595, 0.0399983748793602, 0.042284391820430756, 0.0013758710119873285, 0.039310522377491, 0.032767415046691895, -0.03493630513548851, 0.003090605838224292, 0.0007506152032874525, 0.04150540381669998, 0.030580351129174232, 0.06751621514558792, -0.014706609770655632, 0.021485595032572746, -0.01006837747991085, 0.0048971897922456264, -0.012400181032717228, -0.0017802518559619784, -0.036995671689510345, 0.03368038311600685, 0.007080297917127609, 0.02119622752070427, -0.019379518926143646, 0.008411736227571964, 0.04439061880111694, 0.05292594060301781, -0.03757287189364433, -0.030815327540040016, -0.009273681789636612, 0.005486544221639633, -0.0001951209851540625, -0.02010001614689827, 0.027744470164179802, 0.053481575101614, 0.012831979431211948, -0.0035994320642203093, -0.0005706133088096976, -0.042722854763269424, -0.017107391729950905, -0.05411830544471741, -0.06281481683254242, -0.021699298173189163, -0.030880369246006012, -0.005054307170212269, 0.03330279886722565, -0.05595293641090393, -0.011211391538381577, -0.02254173532128334, -0.02174312062561512, -0.02428942732512951, -0.009360362775623798, 0.05740691348910332, -0.009335897862911224, 0.058820683509111404, -0.05146612599492073, 0.0006306880968622863, 0.006238638423383236, 0.051481567323207855, -0.014850574545562267, -0.008437083102762699, 0.003646754426881671, -0.01298554614186287, 0.05246676504611969, -0.021146927028894424, 0.024009879678487778, -0.0068999542854726315, -0.03321300074458122, -0.05626663938164711, -0.0038633684162050486, 0.018528489395976067, 0.011075085960328579, 0.0021880087442696095, -0.035748183727264404, 0.04388192296028137, 0.03304256126284599, -0.0378727987408638, 0.055119965225458145, 0.0358055904507637, -0.048567820340394974, 0.026047708466649055, -0.009472583420574665, 0.03485685959458351, -0.05578979104757309, 0.05476576089859009, 0.050536975264549255, -0.007282958831638098, -0.044690459966659546, -0.0592249259352684, -0.025148844346404076, 0.013585802167654037, -0.0023789657279849052, -0.01813255436718464, -0.03138584643602371, 0.05152974650263786, 0.016416361555457115, -0.07885638624429703, 0.0320192389190197, -0.039443932473659515, -0.01998913288116455, -0.0024035926908254623, -0.010998265817761421, 0.03952910751104355, 0.025488032028079033, 0.025396917015314102, 0.01422265637665987, -0.055079273879528046, -0.016115546226501465, 0.013754318468272686, 0.03788823261857033, -0.040709204971790314, 0.029453476890921593, 0.019481653347611427, -0.0067458804696798325, 0.011462489143013954, 0.04719838500022888, -0.0044462429359555244, 0.015737570822238922, 0.008450969122350216, -0.017774634063243866, 0.023733995854854584, 0.018101055175065994, 0.006779546849429607, 0.01374401431530714, 0.039754416793584824, -0.033526308834552765, -0.0008896843646652997, 0.031005749478936195, 0.038238685578107834, 0.027281247079372406, -0.0034018245059996843, 0.0005998717388138175, -0.005338679067790508, -0.04843780770897865, -0.06522708386182785, 0.0122836884111166, 0.037003856152296066, 0.046428196132183075, -0.04926740378141403, 0.05820658802986145, -0.001615910790860653, -0.02728479541838169, 0.04589425027370453, -0.03167732059955597, -0.0021666958928108215, 0.027847396209836006, -0.019802464172244072, 0.0549655519425869, -0.046819765120744705, -0.026723187416791916, 0.008748252876102924, 0.019527647644281387, 0.006157617550343275, 0.018342310562729836, 0.03235681727528572, -0.026650283485651016, -0.031339045614004135, -0.03929399326443672, -0.0028529297560453415, -0.027780046686530113, -0.024493085220456123, -0.002768560079857707, -0.03176436573266983, -0.03901652619242668, -0.03895244747400284, 0.015084813348948956, 0.04150312766432762, 0.0663200169801712, -0.0242299847304821, 0.055519819259643555, -0.027056453749537468, -0.00213198596611619, 0.043197184801101685, -0.01141825970262289, -0.00925977062433958, -0.03775136172771454, 0.03391679748892784, 0.018056105822324753, -0.009656460024416447, -0.011937947943806648, -0.015732435509562492, -0.008117969147861004, 0.010586024262011051, 0.01937847211956978, -0.04190227389335632, -0.06817557662725449, 0.023508816957473755, -0.013776992447674274, 0.008448341861367226, -0.03849203884601593, -0.02949364297091961, -0.0008446914725936949, 0.04670492559671402, 0.03897961229085922, -0.05702488124370575, -0.017222654074430466, -0.05550852790474892, 0.03375989571213722, 0.027539152652025223, -0.0025963280349969864, -0.027071049436926842, -0.01705966517329216, -0.048932887613773346, -0.05050446093082428, 0.024861261248588562, 0.05992714688181877, -0.008679413236677647, -0.003288551000878215, -0.020625906065106392, 0.02149202860891819, -0.010903285816311836, 0.02598281018435955, 0.014574903063476086, -0.030289487913250923, 0.016625048592686653, 0.0038239837158471346, 0.048334360122680664, -0.062082406133413315, -0.03857504203915596, 0.028975768014788628, -0.07057023048400879, -0.025637179613113403, -0.030268602073192596, -0.0020793445874005556, -0.03594017028808594, 0.023700697347521782, -0.019587768241763115, 0.035876765847206116, 0.003659295616671443, 0.01203521154820919, -0.008261295966804028, 0.028925182297825813, -0.05238260701298714, -0.024825166910886765, 0.04624972119927406, -0.014374601654708385, -0.00268401182256639, 0.04417559504508972, 0.023477723821997643, -0.030985301360487938, 0.015660278499126434, 0.0438513308763504, -0.0485362708568573, 0.03200484812259674, -0.031547997146844864, 0.01898660883307457, -0.007051939144730568, -0.018668105825781822, -0.008970478549599648, -0.061461981385946274, 0.042477086186409, 0.030897723510861397, -0.03613349050283432, -0.06042008474469185, -0.048243436962366104, -0.031051458790898323, -0.014652658253908157, 0.004884278401732445, 0.024494491517543793, -0.011046972125768661, 0.015414278022944927, 0.011769122444093227, 0.003619089489802718, -0.01608198508620262, 0.007185592316091061, -0.00692672748118639, 0.00608436344191432, 0.021280337125062943, 0.03073182702064514, 0.006615255493670702, 0.005626118741929531, -0.04179041460156441, -0.029497241601347923, -0.00436992896720767, -0.025899291038513184, -0.03688536956906319, -0.03457583859562874, -0.0004990854649804533, 0.006184132769703865, -0.0332271009683609, -0.004374649841338396, -0.014006749726831913, 0.008961268700659275, 0.04259302094578743, 0.005522075109183788, 0.02207312174141407, 0.02720099501311779, -0.038796648383140564, 0.06126311421394348, 0.013116264715790749, -0.08810434490442276, -0.0489518903195858, 0.01779824309051037, 0.00257700914517045, 0.035270705819129944, -0.0051847659051418304, -0.04456520080566406, -0.050631873309612274, -0.054729994386434555, 0.01531708613038063, -0.03267226368188858, -0.033169761300086975, -0.052977148443460464, -0.03544711321592331, 0.0034637146163731813, 0.039821818470954895, 0.00621433462947607, -0.04201212897896767, 0.0037792001385241747, -0.0471077561378479, 0.025319186970591545, -0.03516625240445137, 0.00977292750030756, -0.03937749192118645, -0.015761811286211014, 0.019751792773604393, 0.039633505046367645, 0.01064752321690321, 0.042106516659259796, 0.004735427442938089, 0.0033092335797846317, 0.00026873487513512373, 0.004663095809519291, -0.04115147143602371, -0.05745724216103554, -0.0002609307412058115, -0.016948148608207703, -0.018314506858587265, -0.004646610468626022, -0.01526289340108633, 0.0334041491150856, -0.023292891681194305, 0.03344874829053879, -0.018224896863102913, -0.008045832626521587, -0.03505517542362213, -0.013669261708855629, 0.04591728001832962, -0.0003092957194894552, 0.061958152800798416, -0.011465858668088913, 0.0347779206931591, 0.034631673246622086, 0.022417791187763214, -0.026417991146445274, -0.003845255123451352, -0.05015622824430466, -0.05282831937074661, 0.041629936546087265, -0.03468407317996025, -0.005677107255905867, -0.0420154370367527, -0.00799479614943266, 0.07304007560014725, -0.015524101443588734, 0.02505762130022049, 0.07741594314575195, 0.011033013463020325, -0.015443051233887672, -0.02813735045492649, 0.014814767986536026, 0.025119110941886902, -0.02901224046945572, -0.0023782136850059032, 0.013557360507547855, -0.021150751039385796, 0.01812087930738926, -0.02901616320014, -0.05081653594970703, -0.035789962857961655, 0.01552664116024971, 0.06149507686495781, -0.0307542122900486, 0.0474834218621254, -0.014722669497132301, -0.05242699384689331, -0.04568545147776604, 0.046136755496263504, -0.021551040932536125, 0.009956483729183674, 0.03853629529476166, 0.008832491002976894, -0.013136986643075943, -0.0014672165270894766, 0.012352297082543373, -0.019203200936317444, -0.04884692654013634, 0.06672263145446777, 0.0010039114858955145, -0.02849595621228218, 0.026124024763703346, 0.04459749907255173, -0.07538500428199768, -0.04503834992647171, -0.023971252143383026, 0.020110927522182465, 0.009242928586900234, -0.024936718866229057, 0.019482070580124855, 0.0009323103004135191, -0.01670014299452305, 0.027139317244291306, 0.03760017454624176, -0.016005080193281174, 0.04456706345081329, 0.004258912056684494, 0.03968270868062973, -0.03892446309328079, 0.015270918607711792, 0.026785843074321747, 0.009951706975698471, -0.013485591858625412, -0.07156491279602051, -0.0033094098325818777, 0.005989688448607922, -0.009211983531713486, 0.055488456040620804, -0.01765482686460018, 0.022330215200781822, 0.05411793291568756, 0.0006652586162090302, 0.05011995881795883, -0.04826623573899269, -0.011363623663783073, 0.01385048869997263, -0.027701394632458687, -0.028549298644065857, -0.04848447069525719, 0.006113807205110788, 0.01816173829138279, 0.026303725317120552, -0.02569722943007946, 0.004407903179526329, 0.03845767676830292, 0.028787588700652122, -0.03273555263876915, -0.05541177839040756, -0.015768732875585556, -0.047982145100831985, -0.07594224065542221, -0.003595188958570361, -0.010062306188046932, -0.027989622205495834, 0.003695196006447077, 0.022780809551477432, -0.02611897699534893, -0.007857336662709713, 0.019162723794579506, -0.019027145579457283, -0.017676960676908493, -0.060898490250110626, 0.03583613038063049, -0.03343624994158745, -0.03163566067814827, -0.03936852514743805, -0.0032073291949927807, -0.019253723323345184, 0.013187918812036514, -0.009946721605956554, 0.008900051936507225, 0.011026271618902683, 0.019925452768802643, -0.01829531416296959, 0.017670100554823875, -0.008473719470202923, -0.023638345301151276, -0.008800555020570755, 0.02694196254014969, -0.03528618440032005, 0.04593975841999054, 0.03896746411919594, 0.006505561992526054, 0.016494836658239365, -0.006006897427141666, -0.03238078951835632, -0.012660675682127476, 0.0076230852864682674, 0.004539015237241983, -0.009614258073270321, -0.0057632336392998695, -0.010991093702614307, -0.009157123975455761, -0.036628805100917816, 0.006265623960644007, 0.009663759730756283, 0.00404363963752985, -0.003735367674380541, -0.008377899415791035, 0.0006809260812588036, 0.05816825479269028, -0.012627271004021168, 0.02126578986644745, 0.01569230481982231, 0.029344255104660988, 0.009540054015815258, -0.004420643672347069, 0.0197804793715477, 0.04827796667814255, -0.016791630536317825, -0.023979326710104942, 0.003776970785111189, 0.026243187487125397, -0.0037154091987758875, 0.012548633851110935, -0.021834831684827805, -0.021473117172718048, -0.036389004439115524, -0.0226290225982666, 0.0177241750061512, 0.027958104386925697, 0.017076905816793442, -0.0020340944174677134, 0.01867196150124073, -0.030786938965320587, -0.04679808020591736, 0.010266431607306004, -0.09434215724468231, -0.03669840842485428, 0.03076716512441635, -0.007655072025954723, -0.012612291611731052, 0.014276964589953423, -0.009940110146999359, -0.010265075601637363, 0.006985578220337629, 0.008450939320027828, -0.00477398419752717, 0.039642658084630966, 0.002628396498039365, 0.008472182787954807, -0.03920998424291611, -0.018015235662460327, 0.014847926795482635, 0.01697959005832672, -0.03921853378415108, -0.06554894894361496, -0.01240663044154644, 0.03249466419219971, 0.015532406978309155, 0.0002501948911231011, -0.03406430780887604, 0.023350287228822708, -0.00306793674826622, 0.019780341535806656, 0.0021788696758449078, 0.0310828797519207, -0.009946076199412346, 0.020668063312768936, -0.017992664128541946, 0.006706760264933109, -0.011537212878465652, 0.07199238985776901, 0.01976439356803894, -0.01623670570552349, -0.027205731719732285, 0.026509935036301613, 0.0318741537630558, -0.025041135028004646, 0.048920080065727234, 0.011882754974067211, 0.04194062948226929, -0.027838490903377533, 0.022735074162483215, 0.02031666971743107, 0.04423479735851288, 0.02298811636865139, 0.029607927426695824, -0.005592770408838987, 0.03447723016142845, 0.03849925100803375, -0.022229745984077454, -0.013426334597170353, 0.042579587548971176, -0.014846556819975376, -0.032654110342264175, -0.015534291975200176, -0.024102026596665382, 0.016067124903202057, 0.0018874418456107378, -0.010888081043958664, 0.0036343189422041178, -0.0389225110411644, -0.02499253861606121, 0.01222966518253088, -0.07012978941202164, 0.06277584284543991, 0.012580246664583683, -0.008878217078745365, -0.010908066295087337, -0.023523980751633644, 0.021010516211390495, 0.023898692801594734, -0.014853445813059807, -0.002486281329765916, 0.035921186208724976, 0.040794603526592255, 0.028927484527230263, 0.05480319261550903, 0.020991284400224686, 0.023866796866059303, -0.03466210514307022, 0.0067526185885071754, 0.01268650684505701, 0.017927395179867744, -0.034281373023986816, -0.014373521320521832, -0.03405604884028435, 0.04058199003338814, -0.03443072363734245, -0.04230496287345886, 0.00888459850102663, -0.048176709562540054, -0.012271519750356674, -0.026519009843468666, 0.05231291428208351, -0.027740322053432465, 0.002889529336243868, 0.046519044786691666, -0.015203471295535564, -0.03423001244664192, 0.060929588973522186, 0.021379897370934486, 0.01767103001475334, 0.030876370146870613, 0.06566393375396729, 0.02781427465379238, 0.03945816680788994, 0.05534117668867111, -0.049480680376291275, 0.016378695145249367, 0.02834256924688816, -0.024632422253489494, -0.061959970742464066, -0.012232551351189613, -0.030832858756184578, -0.02624005638062954, -0.028771711513400078, -0.014418922364711761, -0.013362967409193516, 0.027848942205309868, -0.02103009819984436, -0.02735990285873413, -0.012874566949903965, 0.026436759158968925, -0.04830413684248924, 0.008972538635134697, 0.0011593694798648357, 0.026686161756515503, 0.016280630603432655, -0.01881341077387333, 0.00225911196321249, -0.02806173823773861, 0.01771925576031208, -0.05111787095665932, 0.025288844481110573, -0.04265030845999718, -0.03698195144534111, -0.04445718228816986, -0.03648113086819649, -0.0019091656431555748, -0.018773337826132774, -0.04017648100852966, -0.02377629652619362, 0.016501590609550476, 0.05511391907930374, 0.016208812594413757, 0.010954882018268108, -0.04101811721920967, 0.033943235874176025, 0.03979210928082466, 0.048356685787439346, -0.0028983207885175943, 0.049785397946834564, 0.054724592715501785, -0.024957245215773582, 0.03203969448804855, -0.03575194627046585, 0.015993166714906693, -0.013063052669167519, -0.01545354351401329, 0.012785489670932293, 0.0326855406165123, -0.04464184120297432, -0.05804239958524704, 0.008170741610229015, 0.02145950309932232, 0.009609722532331944, -0.035113438963890076, -0.07739496976137161, -0.01939317025244236, -0.05740182474255562, 0.0010364190675318241, -0.05209828540682793, 0.0261000394821167, -0.009604106657207012, -0.01837937720119953, 0.0030709775164723396, -0.05287155881524086, 0.15093253552913666, 0.060815803706645966, 0.03127988427877426, -0.000743741518817842, 0.031322915107011795, 0.06943904608488083, 0.00044658267870545387, -0.024987127631902695, -0.0012006580363959074, -0.022275300696492195, 0.05709701031446457, -0.01512373611330986, 0.035545092076063156, 0.025601701810956, 0.012294935062527657, 0.03237130492925644, -0.023646395653486252, -0.002171225380152464, 0.01590537279844284, -0.0696527287364006, -0.04689570888876915, 0.04481332004070282, 0.0011191655648872256, -0.004973958246409893, 0.012717493809759617, -0.0010261173592880368, 0.038977716118097305, -0.03636721149086952, -0.012686270289123058, -0.0524769090116024, 0.02631480060517788, -0.010316199623048306, 0.024464985355734825, -0.001505601336248219, -0.0024759534280747175, 0.06811097264289856, 0.017700044438242912, -0.00237759156152606, -0.018387436866760254, 0.020039012655615807, -0.027603251859545708, -0.020009798929095268, 0.003738161874935031, -0.011203620582818985, 0.009114953689277172, -0.0001444653607904911, -0.02310657687485218, 0.012768545188009739, 0.014067425392568111, -0.036630913615226746, 0.023873649537563324, 0.004796271678060293, 0.038173675537109375, -0.03485675901174545, -0.05127856507897377, -0.008425425738096237, -0.01188499853014946, -0.022151613608002663, 0.003673897124826908, 0.03016107715666294, 0.011867158114910126, 0.014303935691714287, -0.03238965570926666, 0.04070274531841278, -0.07431505620479584, -0.021014777943491936, 0.02158266119658947, 0.006166033446788788, -0.04827798530459404, 0.005473468918353319, -0.006610658019781113, 0.010335736908018589, 0.00804886408150196, 0.012790564447641373, 0.01749458536505699, 0.04516667500138283, -0.021572014316916466, 0.03480442240834236, 0.003059909213334322, -0.025394052267074585, -0.023365935310721397, -0.03970371559262276, 0.0007759672007523477, -0.01951678656041622, 0.03370292857289314, 0.043450977653265, -0.031352698802948, -0.010364612564444542, -0.02305086888372898, 0.05066021904349327, 0.018711581826210022, 0.012315994128584862, 0.001344120828434825, -0.00309637445025146, -0.026919133961200714 ]
Q: How to select a list of distinct values based on some values using linq or entity I want to get all the Pre_Number where all Reconcile_Status related to that Pre_Number=null. In this case there should not be any item in list.If there would be some other Pre_number for eg. 7/2018 and it has two records and Reconcile_Status for those records is NULL then i should get one item in list that is 7/2018. I tried var NoNReconciled = context.tbl_prerelease_invoice .Where(x => x.Reconcile_Status==null) .Select(y => new { y.Pre_number }).Distinct().ToList(); But i got 6/2018 A: Well, your current attempt only checks that there is at least one record where Reconcile_Status is null, but it doesn't check that there are no records with the same Pre_number where Reconcile_Status is not null. This should do the trick: var NoNReconciled = context.tbl_prerelease_invoice .Where(x => x.Reconcile_Status == null && !context.tbl_prerelease_invoice .Any(y => y.Pre_number == x.Pre_number && y.Reconcile_Status != null) ).Select(y => new { y.Pre_number }) .Distinct().ToList(); A: No need to create anonymous object for Pre_Number. Try below code var NoNReconciled = context.tbl_prerelease_invoice .Where(x => x.Reconcile_Status==null) .Select(y => y.Pre_number).Distinct().ToList(); A: Try this- context.tbl_prerelease_invoice.GroupBy(r => r.Pre_number).Where(kv => kv.All(r => r.Reconcile_Status==null)).Select(kv => kv.Key).ToList();
[ -0.02152234874665737, 0.011847825720906258, -0.018950074911117554, 0.043646786361932755, -0.013169961981475353, -0.007650558836758137, -0.02066151238977909, 0.04254787042737007, 0.04624927416443825, 0.047588471323251724, 0.0224422849714756, -0.006277125794440508, 0.030569229274988174, -0.023978551849722862, -0.05938192084431648, -0.023852823302149773, -0.03563477471470833, -0.007671442348510027, -0.01263557281345129, 0.0001882991928141564, 0.007592999842017889, 0.027027929201722145, -0.05152476951479912, -0.041336141526699066, -0.01591910980641842, 0.009332222864031792, 0.022061655297875404, -0.010606714524328709, 0.05307124927639961, 0.09376443177461624, 0.005876850802451372, -0.0266728475689888, -0.003166954265907407, -0.04203692451119423, -0.02181166596710682, -0.0024138062726706266, 0.05032413825392723, 0.0020315060392022133, -0.024472719058394432, -0.04477556049823761, 0.004093736410140991, -0.036897383630275726, 0.028915079310536385, -0.037779588252305984, -0.03596542775630951, -0.012104840017855167, -0.01976114884018898, -0.025312937796115875, -0.01638679951429367, -0.03962035849690437, -0.010247264057397842, -0.008453473448753357, 0.043386489152908325, 0.008282282389700413, 0.03268416225910187, -0.005605649668723345, 0.04024634510278702, 0.0033202399499714375, -0.005307766143232584, 0.014873730950057507, -0.015718569979071617, -0.02216758020222187, 0.03289668634533882, -0.027759216725826263, 0.03406231105327606, 0.02786213345825672, -0.029221685603260994, -0.013957923278212547, 0.012968344613909721, -0.014186850748956203, -0.024451881647109985, -0.01634841598570347, -0.017837736755609512, -0.026691067963838577, -0.0037082601338624954, 0.021584656089544296, -0.011017153970897198, -0.003768668510019779, -0.008322556503117085, 0.011723765172064304, -0.014263048768043518, 0.05246064066886902, 0.01869233325123787, 0.052051056176424026, -0.0365961492061615, -0.02264399826526642, 0.008808407932519913, 0.04085154086351395, 0.041051559150218964, 0.023030078038573265, -0.01149633340537548, 0.06955920159816742, 0.003744480898603797, -0.019757142290472984, 0.015912916511297226, 0.04148409888148308, -0.012006360106170177, 0.03348691761493683, 0.026704687625169754, 0.0037262721452862024, 0.04043259471654892, 0.02217196114361286, -0.010254393331706524, 0.04186483100056648, -0.006808063015341759, 0.002362788189202547, -0.017002006992697716, 0.008162373676896095, 0.010556861758232117, -0.05284079536795616, -0.026153014972805977, -0.025936847552657127, 0.03772234171628952, -0.002847149735316634, -0.0009059966541826725, 0.03647681325674057, -0.021576976403594017, 0.015212171711027622, -0.041727203875780106, 0.0014406796544790268, 0.060558125376701355, 0.0050732968375086784, 0.04431727156043053, -0.001860057469457388, 0.04562883451581001, -0.03407195210456848, -0.009852677583694458, 0.03547130525112152, -0.07995779812335968, 0.007271848618984222, 0.005854646675288677, -0.011133127845823765, 0.008912286721169949, 0.02503904141485691, -0.012608090415596962, -0.0013215417275205255, -0.016022631898522377, 0.04254303500056267, -0.021498167887330055, -0.06276905536651611, 0.044030915945768356, 0.015555962920188904, -0.01271272636950016, 0.08799383789300919, 0.016992181539535522, 0.03916432335972786, 0.01591595821082592, 0.030894819647073746, -0.0657421350479126, 0.020134733989834785, -0.03811898082494736, 0.02625882811844349, -0.016775358468294144, 0.022187162190675735, 0.0052156466990709305, -0.020253591239452362, -0.007339065428823233, -0.020657602697610855, 0.039284396916627884, 0.0320734828710556, -0.03920518606901169, 0.004408542532473803, -0.020772762596607208, 0.02607414685189724, 0.004583448637276888, 0.034518979489803314, -0.03622483089566231, 0.004780109040439129, 0.011794302612543106, -0.03636572137475014, 0.006889034993946552, 0.012374168261885643, -0.02626691199839115, 0.041586048901081085, -0.0016567314742133021, 0.05909024178981781, 0.020092474296689034, -0.007080079056322575, 0.04771623760461807, 0.04170660674571991, -0.02085193432867527, -0.0020153119694441557, -0.011598627083003521, 0.06835372745990753, 0.015905048698186874, 0.0014747007517144084, 0.012626053765416145, -0.024158900603652, -0.04629342257976532, -0.0257655568420887, 0.028932834044098854, 0.023066028952598572, -0.021972522139549255, 0.012420016340911388, -0.01887434348464012, 0.010797733440995216, -0.05651436001062393, 0.028075065463781357, -0.022369137033820152, -0.05380823463201523, -0.020215274766087532, 0.027044236660003662, -0.029427893459796906, 0.02679910510778427, 0.00877661444246769, -0.03185149282217026, 0.034714650362730026, 0.05093442276120186, -0.04317273199558258, 0.008905111812055111, 0.014519345946609974, 0.016305038705468178, -0.02332145906984806, -0.03711890056729317, 0.004876117687672377, 0.016187118366360664, -0.023538270965218544, 0.036931585520505905, 0.005384753458201885, -0.00012690106814261526, 0.020525803789496422, 0.02492103911936283, 0.014085683040320873, 0.037905097007751465, -0.009843423031270504, -0.020785192027688026, 0.03682432696223259, 0.06624708324670792, -0.03314051404595375, 0.017422253265976906, -0.015821006149053574, 0.06924973428249359, 0.03561047464609146, 0.032513897866010666, 0.04726347327232361, 0.01738058216869831, 0.029703229665756226, 0.04405006021261215, 0.025868073105812073, 0.04203115403652191, -0.0037380990106612444, 0.043204642832279205, 0.01783771812915802, 0.03630585968494415, -0.005379776004701853, 0.0105217806994915, 0.014864503405988216, -0.0030152646359056234, -0.028516501188278198, 0.03927186504006386, -0.01372620090842247, 0.02621731534600258, 0.012397962622344494, 0.03548746556043625, -0.029887450858950615, 0.0010013640858232975, 0.029016105458140373, 0.035265445709228516, -0.029579946771264076, -0.028359903022646904, 0.005778096616268158, 0.014636385254561901, -0.02858300507068634, -0.02607092820107937, 0.015457569621503353, 0.010132509283721447, 0.036362696439027786, -0.009174363687634468, -0.009311599656939507, -0.03454319387674332, -0.03184071555733681, -0.052736349403858185, -0.027545560151338577, -0.015045447275042534, -0.05264076590538025, 0.0018313080072402954, 0.05494721978902817, -0.042902376502752304, 0.025892596691846848, -0.04404584690928459, -0.0009504711488261819, -0.03358766809105873, -0.038076065480709076, 0.02184305712580681, 0.0002867064322344959, 0.01753203012049198, -0.029687557369470596, 0.011434865184128284, 0.024641575291752815, 0.07121746242046356, -0.02905065193772316, -0.01869683712720871, -0.03014197386801243, -0.03213829547166824, -0.026495179161429405, -0.0023704785853624344, 0.02018018253147602, -0.027763571590185165, -0.02652585506439209, -0.06432785093784332, 0.01277120877057314, -0.0015692164888605475, -0.014916875399649143, 0.02365669421851635, -0.037894356995821, 0.07144706696271896, 0.039063286036252975, -0.03023502230644226, 0.03507326543331146, 0.03895016759634018, -0.030893592163920403, 0.024979744106531143, 0.006319093052297831, -0.005246389657258987, -0.03540223464369774, 0.04451030120253563, 0.0437781922519207, 0.007443837821483612, -0.030565323308110237, -0.014425866305828094, -0.018459409475326538, -0.011986917816102505, 0.012026919983327389, -0.0052256216295063496, -0.02124381996691227, 0.040341150015592575, -0.02013847418129444, -0.0890517309308052, 0.017369801178574562, -0.028898539021611214, -0.01962308958172798, -0.012809951789677143, -0.01731421984732151, 0.03466808795928955, 0.01710561476647854, 0.025311505421996117, 0.007869838736951351, -0.017757266759872437, 0.029243696480989456, 0.01942475512623787, 0.03253684937953949, -0.056543003767728806, -0.00894582737237215, -0.004833695478737354, -0.006071907933801413, -0.008538277819752693, 0.005382290575653315, -0.009734632447361946, 0.0030169482342898846, -0.00709640933200717, -0.004679739009588957, 0.031301844865083694, 0.03226397931575775, 0.00766164343804121, 0.0038832698483020067, 0.06423047930002213, -0.025157203897833824, 0.013139933347702026, 0.03151998668909073, 0.02533196657896042, 0.05929332226514816, 0.04047161340713501, -0.023604217916727066, -0.0026989933103322983, -0.0008462638943456113, -0.08032345026731491, 0.06519690901041031, 0.006560822017490864, 0.022007860243320465, -0.08672962337732315, 0.06936333328485489, 0.009627476334571838, -0.01729372888803482, 0.04342355206608772, -0.0398002527654171, -0.028426386415958405, 0.029577620327472687, 0.0038842232897877693, 0.040855322033166885, -0.039137959480285645, 0.006384673528373241, -0.0007238463731482625, 0.044079750776290894, 0.0030878991819918156, 0.02716417983174324, 0.042222198098897934, -0.015685036778450012, 0.0015179123729467392, -0.02672441676259041, -0.019730759784579277, 0.013134182430803776, -0.028182780370116234, 0.005952245090156794, -0.020669640973210335, -0.04976589232683182, -0.005347259342670441, -0.016995076090097427, 0.03495258837938309, 0.05066262558102608, -0.0098109794780612, 0.014493022114038467, -0.002013682620599866, -0.014194558374583721, 0.06715132296085358, -0.03407349810004234, 0.034276384860277176, -0.02298986166715622, 0.04264359176158905, -0.0030892256181687117, -0.03812650963664055, -0.020390434190630913, -0.022552138194441795, -0.043981391936540604, -0.01893085055053234, 0.01818857528269291, -0.023708222433924675, -0.06471965461969376, 0.005279293283820152, 0.001185680041089654, 0.0406934879720211, -0.013210361823439598, -0.04950713366270065, -0.011428022757172585, 0.04846988245844841, 0.012291725724935532, -0.05383240431547165, -0.0030781407840549946, -0.019665149971842766, 0.038670625537633896, 0.06311590224504471, -0.032334450632333755, -0.06362620741128922, -0.05789698660373688, -0.036779507994651794, -0.03846793249249458, 0.005818261299282312, 0.06664961576461792, -0.04595668241381645, 0.02030646800994873, -0.06223510205745697, -0.0013481170171871781, 0.019435610622167587, 0.0035502167884260416, -0.014110864140093327, -0.006469622254371643, 0.02511676400899887, -0.03501172363758087, 0.0188742745667696, -0.023196496069431305, 0.011422843672335148, -0.005942769348621368, -0.039826057851314545, -0.023005591705441475, -0.04458071291446686, -0.015857277438044548, -0.002119581215083599, 0.019263695925474167, -0.040054984390735626, 0.036807846277952194, -0.01913583092391491, 0.00643228879198432, -0.030124153941869736, 0.02165132947266102, -0.040757063776254654, -0.03635925427079201, 0.07692898064851761, -0.006016622297465801, -0.00454350933432579, 0.05131278559565544, 0.03674282506108284, -0.01841544546186924, 0.02640623226761818, 0.008146016858518124, -0.05409010499715805, 0.014440136961638927, -0.018407395109534264, 0.000253658537985757, -0.04017430171370506, -0.01878519542515278, 0.021575186401605606, -0.06491737067699432, 0.061088934540748596, 0.0028404060285538435, -0.0324682742357254, -0.052439428865909576, -0.06766517460346222, -0.04987887293100357, -0.014418472535908222, -0.01718471758067608, 0.02858945168554783, -0.034749310463666916, -0.02257968671619892, 0.004325505346059799, -0.006904349196702242, 0.010038355365395546, -0.0046676271595060825, 0.016988568007946014, 0.003364872420206666, 0.008088059723377228, -0.012208838015794754, 0.03422042354941368, -0.00365894241258502, -0.0770915150642395, 0.004823802039027214, 0.05691874027252197, -0.015617883764207363, -0.05234343931078911, 0.013378163799643517, -0.021693600341677666, -0.00633157417178154, -0.02652338147163391, 0.004618318285793066, -0.023840179666876793, 0.005135252606123686, 0.0265051182359457, 0.011235376819968224, 0.01212273258715868, -0.011427748017013073, -0.048118747770786285, 0.03101791813969612, 0.04520678520202637, -0.04449586942791939, -0.01156701147556305, 0.04956129565834999, -0.03318989276885986, 0.053190428763628006, 0.0030566623900085688, -0.009441397152841091, -0.038011882454156876, -0.040145549923181534, 0.027794430032372475, 0.0021376439835876226, -0.016690528020262718, -0.0365137942135334, -0.0097281439229846, -0.011642959900200367, 0.04730115458369255, 0.01747208647429943, -0.013018419034779072, -0.025988757610321045, -0.02635953575372696, 0.01865306869149208, -0.059266556054353714, 0.0014434687327593565, -0.02467765472829342, 0.009745989926159382, 0.01447886973619461, 0.06155112013220787, -0.02814854495227337, 0.04021298512816429, -0.0031668993178755045, -0.010573310777544975, 0.04032169282436371, -0.026223430410027504, -0.011727610602974892, -0.032252926379442215, -0.018086284399032593, -0.012787769548594952, -0.036207620054483414, 0.0038903311360627413, -0.03873995691537857, 0.04667029157280922, -0.04168625921010971, 0.009393871761858463, -0.025594381615519524, 0.014200177043676376, -0.024127287790179253, -0.013590420596301556, 0.027378525584936142, -0.026912694796919823, -0.007446065079420805, -0.018774956464767456, 0.04856588691473007, 0.03955464065074921, 0.0031937905587255955, -0.026497526094317436, -0.03347504138946533, -0.046942226588726044, -0.057788949459791183, 0.02796873077750206, -0.029692407697439194, 0.004824288655072451, -0.026430495083332062, -0.01669955812394619, 0.07380373775959015, -0.03667992725968361, 0.03408580645918846, 0.059729818254709244, -0.018557723611593246, 0.0004037053731735796, -0.02161523699760437, -0.03145274147391319, 0.04722551628947258, -0.025938209146261215, 0.008567492477595806, -0.00303713814355433, -0.05234847962856293, -0.025117309764027596, -0.025507453829050064, -0.0518900565803051, -0.05159234628081322, 0.0027907409239560366, 0.06501750648021698, -0.03419589623808861, 0.030079510062932968, -0.007755223195999861, -0.07175130397081375, -0.04308954253792763, 0.042946863919496536, -0.014479503035545349, 0.017142660915851593, 0.05654076859354973, -0.007523164618760347, -0.024827292189002037, 0.011053886264562607, -0.00649719825014472, 0.011827447451651096, -0.034080538898706436, 0.041686974465847015, 0.005523200612515211, -0.041640836745500565, 0.05861863121390343, 0.05397950857877731, -0.0615086555480957, 0.001408092794008553, 0.018240613862872124, -0.0008129497291520238, 0.0038047784473747015, -0.02537388727068901, -0.005099327769130468, 0.005152031779289246, -0.013118990696966648, 0.014846275560557842, 0.013826141133904457, 0.0012019122950732708, 0.0524715781211853, -0.013092456385493279, 0.031834546476602554, -0.05083644762635231, -0.02113170735538006, 0.03744078427553177, -0.0019769882783293724, 0.016064733266830444, -0.025668667629361153, -0.016777509823441505, 0.020339954644441605, 0.007254801224917173, 0.0399620346724987, -0.017093708738684654, 0.02740447223186493, 0.019142750650644302, 0.02948763221502304, 0.05373906344175339, -0.004399703815579414, -0.04884330928325653, 0.022485384717583656, -0.03907918557524681, -0.05518682301044464, -0.017322132363915443, 0.00797987449914217, 0.04978599026799202, 0.0053913407027721405, -0.037443894892930984, 0.0219220370054245, 0.07336489856243134, 0.02776596136391163, -0.01190190389752388, -0.05332491919398308, -0.05786726623773575, -0.02755824662744999, -0.029228582978248596, -0.014497872442007065, -0.01946098729968071, -0.03703540191054344, 0.007453155238181353, -0.002186207100749016, -0.029954232275485992, 0.013011337257921696, -0.0012919192668050528, 0.01651548594236374, -0.0022776357363909483, -0.07501521706581116, 0.0015868843765929341, -0.04098290577530861, -0.03483089804649353, -0.03601702302694321, 0.0262721199542284, -0.006003583315759897, 0.025743689388036728, -0.03350519388914108, 0.010558863170444965, -0.03294011950492859, 0.01667325757443905, -0.00517916027456522, 0.01625617779791355, -0.02036835439503193, -0.021744033321738243, -0.005011041648685932, 0.006381146609783173, 0.009872415103018284, 0.03510627523064613, 0.03647841513156891, 0.008609272539615631, 0.024410966783761978, -0.006023926194757223, -0.015762975439429283, -0.004319286905229092, 0.009275157004594803, 0.010679643601179123, 0.03235698863863945, -0.031698569655418396, -0.02274956740438938, -0.007037139963358641, -0.030853962525725365, 0.03075047768652439, 0.015507875010371208, 0.039758555591106415, 0.00527595030143857, -0.016097715124487877, -0.006575339939445257, 0.06742729991674423, -0.019117368385195732, 0.044182803481817245, 0.015455684624612331, 0.005934853106737137, 0.012111836113035679, 0.003237954108044505, 0.009620660915970802, 0.027862505987286568, -0.018467549234628677, -0.0464034266769886, 0.012807268649339676, 0.008519547060132027, 0.007038998883217573, 0.020444950088858604, -0.02729787863790989, -0.021365322172641754, -0.03146480396389961, -0.024885497987270355, -0.03641948476433754, 0.03234856575727463, 0.03480622544884682, 0.04328664019703865, 0.013324477709829807, -0.02123967930674553, -0.011210300028324127, 0.016441958025097847, -0.07021684944629669, -0.07359135895967484, 0.05781449005007744, -0.0010332282399758697, 0.0008875835337676108, -0.03273002803325653, -0.05569887161254883, -0.028826510533690453, 0.020645592361688614, -0.0003389475750736892, -0.019248826429247856, 0.023371027782559395, -0.014508216641843319, 0.030996089801192284, -0.005615017376840115, 0.020895162597298622, 0.011509895324707031, 0.04166947677731514, -0.0538490004837513, -0.034285616129636765, 0.004236926790326834, -0.0027720769867300987, 0.04284818097949028, 0.02933857962489128, -0.0041769715026021, 0.013476446270942688, 0.0011538892285898328, -0.015250189229846, 0.030360765755176544, -0.013432735577225685, -0.0163140706717968, -0.013364391401410103, -0.019540920853614807, 0.01247808150947094, -0.026604654267430305, 0.042916540056467056, -0.0023533045314252377, -0.02960849553346634, -0.05031653121113777, 0.048373688012361526, 0.06607215851545334, 0.004299276042729616, 0.047750115394592285, -0.0012023050803691149, 0.056179072707891464, -0.01265330146998167, 0.009728400968015194, -0.004220881033688784, 0.05519391968846321, 0.051061809062957764, 0.036977145820856094, -0.003993646241724491, 0.011057460680603981, 0.05179980397224426, 0.022423094138503075, -0.011455941945314407, 0.05388603359460831, 0.02084433101117611, -0.012717417441308498, -0.005217243451625109, -0.003748839721083641, -0.00600420730188489, 0.015328735113143921, -0.0003240389341954142, 0.02024969831109047, -0.03196822106838226, -0.021209752187132835, -0.0030976657290011644, -0.031869590282440186, 0.051590219140052795, -0.023775631561875343, 0.041341301053762436, -0.048243723809719086, -0.004516446031630039, -0.025746215134859085, 0.017822585999965668, -0.009913248009979725, -0.04066445305943489, 0.035923223942518234, 0.039567191153764725, -0.010091999545693398, 0.060647159814834595, 0.02846416085958481, 0.01838536374270916, -0.040454983711242676, -0.009315834380686283, -0.0011947150342166424, 0.017482120543718338, -0.04412836208939552, -0.018799304962158203, -0.031202180311083794, 0.021065613254904747, -0.032862454652786255, -0.02009757049381733, 0.04011187329888344, -0.03629707545042038, -0.030234359204769135, -0.03522586449980736, 0.02278309501707554, -0.009853314608335495, -0.009523523971438408, 0.024639151990413666, -0.00016401000902988017, -0.02651793323457241, 0.048374243080616, 0.0042529175989329815, 0.03099634498357773, -0.0025749022606760263, 0.037528473883867264, 0.011725195683538914, 0.017578382045030594, 0.04632746800780296, -0.01450673770159483, -0.0317656546831131, 0.054523952305316925, 0.02304147556424141, -0.04006465896964073, -0.041001152247190475, -0.052698154002428055, -0.016754522919654846, 0.010278698056936264, -0.003631772007793188, -0.018085051327943802, 0.0441865399479866, 0.017815709114074707, -0.05330194532871246, -0.013251165859401226, 0.026333749294281006, -0.044561222195625305, 0.04255228117108345, 0.038878362625837326, 0.01733749359846115, -0.002873779973015189, -0.03662461042404175, -0.02308293990790844, -0.054433565586805344, 0.05523816496133804, -0.0465867780148983, 0.04519830644130707, -0.014333787374198437, -0.05080083757638931, -0.017567431554198265, -0.055434007197618484, -0.007774139288812876, 0.006959598511457443, -0.027698710560798645, -0.07333173602819443, -0.00742941303178668, 0.04893754795193672, 0.009421579539775848, -0.010302473790943623, -0.025351127609610558, 0.019711848348379135, 0.04106259346008301, 0.03199604153633118, 0.003582518780604005, 0.05363525077700615, 0.024517394602298737, 0.015087450854480267, 0.015588157810270786, -0.014743688516318798, 0.03750547394156456, -0.01196468435227871, -0.010469564236700535, -0.022633947432041168, -0.005451541393995285, -0.03052430786192417, -0.04667647182941437, 0.025217749178409576, 0.02532971277832985, 0.010287276469171047, -0.016107430681586266, -0.04308830574154854, -0.0006441479199565947, -0.038668178021907806, -0.006623586639761925, -0.024972213432192802, 0.0020690143574029207, -0.016804086044430733, -0.019616471603512764, 0.007763535715639591, -0.04211299121379852, 0.12443705648183823, 0.034753479063510895, 0.024389229714870453, -0.005322534590959549, 0.03497594967484474, 0.06434788554906845, -0.0007123484392650425, 0.013739954680204391, 0.024166470393538475, -0.045539774000644684, 0.04102326184511185, -0.013640702702105045, -0.0001185486325994134, 0.010863342322409153, 0.013503409922122955, 0.05218935385346413, -0.040528975427150726, 0.01951286382973194, 0.03349682688713074, -0.05319385603070259, -0.04500717669725418, 0.011469817720353603, 0.0063473316840827465, 0.05432649701833725, -0.022750193253159523, 0.00893893837928772, 0.03475610166788101, -0.0314151793718338, -0.0254058800637722, -0.0063382526859641075, 0.03199627622961998, -0.022891268134117126, 0.0377233661711216, 0.012325434945523739, -0.0029319177847355604, 0.022523635998368263, 0.03216924890875816, -0.01929479092359543, -0.009235451929271221, 0.015115217305719852, 0.007301462348550558, -0.014337221160531044, 0.013118580915033817, -0.058547209948301315, 0.0028376129921525717, 0.002437470480799675, -0.045963626354932785, 0.011698211543262005, 0.004632070194929838, -0.04697196185588837, 0.06497309356927872, -0.023170609027147293, 0.061724819242954254, -0.031424734741449356, -0.05250311642885208, 0.024492233991622925, 0.0006644123350270092, -0.013370652683079243, 0.009239774197340012, 0.01731049455702305, 0.02415841817855835, -0.016029151156544685, -0.044870760291814804, 0.027899114415049553, -0.030302459374070168, 0.016634035855531693, 0.027139415964484215, -0.006688585504889488, -0.02825571596622467, 0.013668064028024673, -0.01758834347128868, -0.0053664306178689, 0.005813353694975376, -0.03226155787706375, 0.01619468256831169, 0.026261456310749054, -0.023935237899422646, 0.03702176734805107, -0.011797947809100151, -0.02309565804898739, 0.003201199695467949, -0.02331734634935856, -0.004069515969604254, -0.009662163443863392, 0.040756113827228546, 0.019906261935830116, -0.043246790766716, -0.027544617652893066, -0.03868062421679497, 0.013154481537640095, 0.02760797180235386, 0.03809457644820213, -0.0023876100312918425, -0.012873249128460884, -0.012374833226203918 ]
The Katrina top is even more eyecatching in our new fave fabric, Wild West Paisley Sheen! She is kind of like the Baby Spice tee except a little longer and edgier. She ties up in the front and we can't get enough of her! Pair her with Mumu blues, Bam Bam Bells, or any Mumu bottom. She is loved by everyone and everything!
[ -0.0042109377682209015, 0.023365845903754234, -0.01803446374833584, 0.01833031326532364, -0.027162345126271248, 0.0053389305248856544, -0.02618963085114956, 0.03315303474664688, 0.002646297449246049, 0.01030429732054472, 0.007185591384768486, 0.041102100163698196, 0.016707226634025574, -0.021954383701086044, 0.0015542609617114067, 0.01045975647866726, -0.02809622697532177, -0.048715028911828995, -0.018628820776939392, 0.009008991532027721, -0.01034444011747837, 0.02021503634750843, -0.09891154617071152, -0.026163579896092415, 0.01276783924549818, 0.025505734607577324, 0.03220176696777344, -0.03918948397040367, 0.06541652232408524, 0.055448196828365326, -0.04974660277366638, -0.038117196410894394, 0.0434110201895237, -0.06693948060274124, -0.020253170281648636, -0.010970668867230415, 0.03110126592218876, 0.00612504780292511, -0.020947255194187164, -0.0704183429479599, -0.003621317446231842, -0.022648947313427925, 0.024063726887106895, -0.010013033635914326, -0.029462037608027458, -0.004367198329418898, -0.018973112106323242, -0.02791873924434185, 0.044814612716436386, -0.03377923369407654, 0.00536835053935647, -0.025568118318915367, 0.005746390204876661, 0.005496376659721136, -0.002068036235868931, 0.03566928207874298, -0.008730437606573105, -0.04151010885834694, -0.0023513741325587034, 0.0440916046500206, 0.01228337362408638, -0.0075074369087815285, 0.021255284547805786, -0.08144060522317886, 0.004595040809363127, 0.020960796624422073, -0.012574615888297558, -0.021382290869951248, 0.04262156784534454, -0.024407289922237396, 0.021160099655389786, 0.02764320559799671, -0.026776079088449478, -0.01533045805990696, -0.004577444866299629, -0.013553258031606674, -0.030383514240384102, 0.018585337325930595, -0.0007453277939930558, -0.014514148235321045, 0.0018162416527047753, 0.04444093257188797, 0.01570230722427368, 0.031253498047590256, -0.0333569310605526, -0.014224856160581112, -0.017625030130147934, 0.027272095903754234, -0.003822578815743327, 0.02306402660906315, -0.014991510659456253, 0.037642065435647964, 0.012345678173005581, -0.031565602868795395, 0.039926208555698395, 0.04071066528558731, -0.03661531209945679, -0.00531562976539135, 0.0037445419002324343, 0.0014486807631328702, 0.014480090700089931, 0.019557474181056023, 0.003886609338223934, 0.04655776917934418, -0.040013521909713745, 0.004902697633951902, 0.0017888975562527776, -0.027216168120503426, -0.004447761457413435, -0.029309405013918877, -0.02023085579276085, -0.04179288074374199, 0.03532308340072632, 0.03150523453950882, -0.010901648551225662, 0.02059587650001049, 0.009496886283159256, 0.06364596635103226, -0.049472734332084656, -0.0004271744401194155, 0.03087746538221836, 0.0250469371676445, 0.03415706381201744, 0.007148960139602423, 0.022258209064602852, -0.03153518587350845, -0.04555897042155266, 0.05999670922756195, -0.03069251775741577, -0.034611593931913376, -0.00484920758754015, -0.056683655828237534, 0.005827129818499088, 0.032098188996315, 0.00008916069782571867, 0.039781611412763596, -0.04235740005970001, 0.02241213619709015, 0.01477824430912733, -0.06373165547847748, 0.05985070765018463, 0.004295371938496828, -0.016803273931145668, 0.08669675886631012, 0.013629095628857613, 0.03495129942893982, 0.027489235624670982, -0.01818634383380413, -0.054060813039541245, -0.0025408307556062937, -0.012868954800069332, 0.04894642531871796, -0.03170175477862358, 0.02702249214053154, 0.02371734008193016, -0.007570500951260328, 0.023278631269931793, -0.005874105263501406, -0.0070106652565300465, 0.027500413358211517, -0.014513468369841576, 0.01283114030957222, 0.008671373128890991, 0.0479574054479599, -0.02258717454969883, 0.034075044095516205, -0.003298784838989377, -0.018765198066830635, -0.01757166162133217, -0.0374106802046299, 0.029651638120412827, -0.008686218410730362, -0.022617369890213013, 0.029689772054553032, 0.030703647062182426, 0.04578447714447975, 0.023011989891529083, -0.008888877928256989, 0.0496111623942852, 0.04203548654913902, -0.01579754427075386, -0.004052882548421621, -0.02810557186603546, 0.05450320243835449, -0.00021884433226659894, 0.00840290542691946, -0.0026138804387301207, -0.03603385016322136, -0.06101956218481064, -0.012835842557251453, -0.033647313714027405, -0.007923993282020092, 0.013986309058964252, 0.008936922997236252, 0.012258346192538738, 0.023616915568709373, 0.009500028565526009, -0.02777017280459404, -0.011215489357709885, -0.052843108773231506, -0.045394763350486755, 0.07183003425598145, -0.04248792305588722, 0.0263794157654047, 0.0031473771668970585, -0.04465370625257492, 0.0018163396744057536, 0.03941810876131058, -0.029882241040468216, -0.001138494466431439, 0.01363019272685051, 0.028439467772841454, -0.013513357378542423, 0.010568874888122082, -0.027030549943447113, -0.0427674800157547, -0.04722708836197853, 0.0312147606164217, -0.017536701634526253, 0.016276245936751366, 0.007953506894409657, 0.06069884076714516, 0.07962105423212051, 0.048842042684555054, -0.0007516904734075069, 0.010003737173974514, 0.0192498080432415, 0.027639413252472878, -0.0061950706876814365, 0.0030516856350004673, -0.038748856633901596, 0.04216631129384041, 0.019391581416130066, 0.04922664538025856, 0.039867572486400604, 0.043538302183151245, 0.01588578149676323, 0.039218027144670486, -0.003910980187356472, 0.0037552607245743275, 0.011846904642879963, -0.002944059669971466, 0.014693665318191051, 0.04961218684911728, -0.01811312511563301, 0.0396590456366539, 0.018002696335315704, -0.001595308887772262, -0.022953344509005547, 0.03636331111192703, 0.0005124664749018848, 0.050501685589551926, 0.042277585715055466, 0.03671844303607941, -0.02214912325143814, 0.015094704926013947, 0.030653471127152443, 0.039002496749162674, -0.009346134960651398, 0.02372966706752777, -0.02719113603234291, 0.012492265552282333, -0.034690748900175095, 0.008290940895676613, 0.0313226580619812, 0.0151428934186697, -0.03986696898937225, 0.04250391945242882, -0.046124424785375595, -0.0544004887342453, -0.04541178420186043, -0.038897886872291565, -0.028313329443335533, -0.035300303250551224, -0.03719905763864517, 0.020637035369873047, 0.05240204557776451, -0.02917676419019699, 0.017272431403398514, 0.0034715954679995775, -0.042547792196273804, -0.0306768249720335, -0.031249050050973892, 0.06456775963306427, 0.03859785199165344, 0.04602062702178955, -0.019848955795168877, 0.024646930396556854, 0.01688568666577339, 0.03012506105005741, -0.03440522775053978, -0.01975247636437416, -0.028332771733403206, -0.013431759551167488, 0.00299143698066473, -0.0014328593388199806, -0.02712935581803322, -0.01501400489360094, -0.014223619364202023, -0.034417200833559036, -0.00008496393274981529, -0.016330447047948837, -0.01154029369354248, 0.005489452742040157, -0.04796680063009262, 0.04579443112015724, 0.02237681858241558, -0.017258360981941223, 0.03960840776562691, 0.039537955075502396, -0.018431667238473892, 0.04774704948067665, 0.0300500076264143, 0.009019115939736366, -0.04137987270951271, 0.029691096395254135, 0.06219996139407158, 0.042564310133457184, -0.021073084324598312, 0.014415952377021313, -0.06461959332227707, 0.02219003438949585, 0.035159967839717865, -0.020706387236714363, -0.031743478029966354, 0.03657574951648712, 0.043040163815021515, -0.076093390583992, 0.016571084037423134, -0.04531616345047951, -0.020533433184027672, -0.06011911854147911, -0.04822412505745888, 0.016912611201405525, 0.0520828440785408, 0.027563072741031647, 0.0061428179033100605, -0.019998036324977875, 0.014584435150027275, 0.011131981387734413, 0.04185439646244049, 0.013462272472679615, 0.034294843673706055, 0.05234533175826073, -0.003289698390290141, 0.03227148950099945, 0.004512263461947441, -0.030428234487771988, -0.025485506281256676, 0.018628332763910294, 0.004738843534141779, 0.008101856335997581, 0.058064304292201996, 0.03307721018791199, 0.02232329361140728, 0.024957727640867233, -0.054396867752075195, 0.005333446431905031, -0.0025320143904536963, 0.000474911299534142, -0.006847434211522341, 0.01197142992168665, 0.022926561534404755, -0.02826016955077648, -0.04295514523983002, -0.05245043709874153, 0.036727480590343475, 0.034544337540864944, 0.054843176156282425, -0.0755668580532074, 0.03144781291484833, 0.013715366832911968, -0.006537633016705513, 0.04299024119973183, -0.05553204193711281, -0.024362657219171524, 0.04073936864733696, -0.021376419812440872, 0.014874997548758984, -0.019927814602851868, 0.01649376004934311, -0.04501161351799965, 0.01639079488813877, 0.04475828632712364, 0.018887106329202652, -0.008875233121216297, -0.02946251817047596, -0.04261307418346405, 0.001022994751110673, 0.0012421418214216828, -0.02334688976407051, -0.021867576986551285, -0.007207365706562996, -0.001648681820370257, -0.06479046493768692, -0.056261394172906876, 0.031113537028431892, 0.015666550025343895, 0.030668718740344048, 0.010603209026157856, 0.01866813376545906, 0.03614664822816849, 0.031220421195030212, 0.028799740597605705, -0.04142577573657036, 0.022124892100691795, -0.030416594818234444, 0.02480631321668625, 0.045370280742645264, -0.06234414502978325, -0.0022330153733491898, -0.028639351949095726, -0.03195737302303314, 0.039632007479667664, 0.005477426573634148, -0.013650895096361637, -0.033690132200717926, 0.008402636274695396, -0.007910325191915035, 0.011687006801366806, -0.050032101571559906, -0.005859432741999626, -0.007710921112447977, 0.0009086139616556466, 0.01351227518171072, -0.03830861672759056, 0.003299843519926071, -0.047101717442274094, 0.053892217576503754, 0.039166130125522614, -0.027653053402900696, -0.020793214440345764, 0.003608677303418517, -0.03484027460217476, -0.0514712892472744, 0.013456507585942745, 0.03502924367785454, 0.010530412197113037, 0.010425963439047337, -0.05112915858626366, 0.03357112407684326, 0.030514882877469063, -0.04264527186751366, -0.011427054181694984, 0.009762410074472427, 0.0039608050137758255, 0.010001000016927719, 0.03081533871591091, -0.004106496926397085, -0.028205694630742073, -0.007851953618228436, -0.056563880294561386, 0.041340459138154984, 0.007014433853328228, -0.012775629758834839, 0.011092589236795902, -0.01607884280383587, 0.050885558128356934, 0.012514629401266575, -0.021079670637845993, 0.021841226145625114, -0.019446920603513718, 0.06251996755599976, -0.02441254071891308, -0.04921456426382065, 0.030383368954062462, 0.02729439176619053, -0.01933719590306282, 0.03616229072213173, 0.05928289517760277, -0.050323087722063065, 0.023962466046214104, 0.05115965008735657, -0.06290975213050842, 0.03764780983328819, -0.04119013249874115, 0.04643159359693527, -0.011077379807829857, -0.03431941196322441, 0.006589969620108604, -0.020169563591480255, 0.039007823914289474, 0.007571992464363575, -0.005714081227779388, -0.0012286938726902008, -0.03256446495652199, -0.023918837308883667, -0.011837655678391457, -0.003900156356394291, 0.0034432613756507635, 0.009567690081894398, -0.02344007045030594, 0.007605438586324453, -0.013340077362954617, 0.03021232783794403, -0.006551691796630621, -0.023388132452964783, -0.0023022983223199844, -0.00752723403275013, 0.02992614172399044, 0.0058705927804112434, -0.008977038785815239, -0.028190379962325096, 0.03152778372168541, 0.00017365139501634985, 0.00557910418137908, -0.04786227270960808, 0.014498853124678135, -0.046299342066049576, -0.009332435205578804, -0.01775953359901905, -0.005342940334230661, -0.015020088292658329, 0.014326298609375954, 0.011352202855050564, 0.014828480780124664, 0.0043064602650702, 0.012786563485860825, -0.005914477631449699, 0.04030650854110718, -0.008206123486161232, -0.05704899877309799, 0.005035027861595154, 0.06027871370315552, 0.005033932626247406, 0.039307571947574615, -0.02243046835064888, -0.03750856593251228, -0.04893118888139725, -0.04002166539430618, -0.015283945947885513, -0.025245392695069313, -0.018514961004257202, -0.03084528259932995, -0.035216186195611954, 0.001064748503267765, 0.043936703354120255, -0.019737036898732185, -0.026292147114872932, 0.01922595500946045, -0.045112140476703644, -0.006007910706102848, -0.024408118799328804, -0.042154062539339066, -0.0374014712870121, -0.052355922758579254, 0.004055961035192013, 0.02819972112774849, -0.03646321967244148, 0.0496366061270237, 0.0026937739457935095, 0.038965944200754166, -0.005965237505733967, -0.032259501516819, -0.05276394262909889, -0.04014597088098526, -0.021917074918746948, 0.00446165818721056, 0.029635902494192123, 0.02859928458929062, -0.04113190248608589, 0.03867648169398308, -0.03999149799346924, -0.01441272348165512, -0.03535166010260582, -0.017185118049383163, 0.0033086221665143967, -0.018994098529219627, 0.05452326685190201, 0.0005690554971806705, 0.003570362227037549, -0.01728190667927265, 0.06433218717575073, 0.027330750599503517, 0.017957674339413643, -0.0221512783318758, -0.031370822340250015, -0.03864632546901703, -0.04578731954097748, 0.050074778497219086, -0.022578634321689606, -0.01861361786723137, -0.06157127395272255, -0.015587730333209038, 0.018237611278891563, -0.024253351613879204, 0.05166683718562126, 0.023833535611629486, -0.01583513617515564, 0.0031011614482849836, -0.0032786938827484846, -0.011138908565044403, 0.03426101431250572, -0.009491621516644955, -0.04088132455945015, -0.028994662687182426, -0.04894794896245003, 0.030815763399004936, -0.03722753748297691, -0.052657753229141235, -0.04281827434897423, -0.018406469374895096, 0.058234963566064835, -0.040737561881542206, 0.055023420602083206, -0.013834403827786446, -0.037360940128564835, -0.05273783579468727, 0.04481374844908714, 0.024488478899002075, 0.0011887914733961225, 0.02936413884162903, 0.020405132323503494, -0.02008483186364174, 0.013888038694858551, 0.010895663872361183, 0.0018389115575700998, -0.06763391196727753, 0.0797472596168518, 0.006239629816263914, -0.041819438338279724, 0.02175510860979557, 0.03997102007269859, -0.0646311491727829, -0.060420047491788864, -0.028070898726582527, -0.019742941483855247, -0.0031982141081243753, -0.0067411791533231735, 0.005328366532921791, -0.019709371030330658, 0.015121601521968842, 0.015542627312242985, 0.060043856501579285, 0.0146790761500597, 0.03925762325525284, 0.011973056942224503, 0.03929625824093819, -0.028506681323051453, 0.000592001888435334, 0.03788676857948303, 0.010804030112922192, -0.028198907151818275, -0.023699605837464333, -0.026237618178129196, -0.017268450930714607, -0.004155274946242571, 0.009166651405394077, -0.016471751034259796, 0.004173246677964926, -0.004601352848112583, -0.025161433964967728, 0.04737274721264839, 0.005778392776846886, -0.007983841933310032, -0.0007071440340951085, -0.030566394329071045, -0.049601100385189056, -0.030312607064843178, 0.02210104465484619, 0.0007498915074393153, 0.029069941490888596, -0.03316944092512131, -0.005908764433115721, 0.024754418060183525, -0.022808551788330078, 0.009608488529920578, -0.03493964672088623, -0.03810982033610344, -0.04445513337850571, -0.06960741430521011, -0.02388046309351921, -0.026379480957984924, 0.02097518928349018, 0.03396294265985489, 0.022832132875919342, -0.041317958384752274, 0.0184150543063879, 0.021147659048438072, 0.009999050758779049, 0.01656617410480976, -0.01713803969323635, 0.01170532125979662, -0.004182375967502594, -0.05828782171010971, -0.0289179515093565, 0.016745837405323982, 0.008884808979928493, -0.022228846326470375, -0.02268408238887787, 0.0007042038487270474, 0.011613087728619576, 0.028765082359313965, 0.03600946441292763, 0.05643703415989876, -0.028224973008036613, -0.02735339105129242, -0.03140060976147652, 0.013354123570024967, -0.003671878483146429, 0.03891748934984207, 0.04804309085011482, -0.033279191702604294, 0.052765585482120514, 0.03323671594262123, -0.04098004102706909, -0.019392376765608788, 0.003650516038760543, 0.008549715392291546, 0.01624966785311699, -0.022941673174500465, -0.03472849354147911, -0.00002704090002225712, -0.02667304128408432, 0.013133527711033821, -0.009022475220263004, -0.010814511217176914, -0.006309759337455034, -0.007415480446070433, -0.013489225879311562, 0.06209240108728409, -0.005963003262877464, 0.03451807424426079, -0.001848112209700048, 0.022243740037083626, 0.03130067139863968, 0.0016865517245605588, 0.01971541903913021, 0.02896731346845627, 0.0469558984041214, -0.016006819903850555, 0.007567751221358776, 0.0252805408090353, 0.007727691438049078, 0.027067823335528374, -0.020088935270905495, -0.0365489162504673, -0.032984476536512375, -0.003783979220315814, 0.005054092034697533, 0.026184093207120895, 0.009646247141063213, 0.001408514566719532, 0.02719866670668125, -0.016175752505660057, -0.04007113724946976, 0.022502830252051353, -0.030777515843510628, -0.006933032535016537, 0.028875816613435745, -0.014427732676267624, -0.010857870802283287, 0.010722490027546883, -0.031033068895339966, -0.007952198386192322, -0.0335099957883358, -0.01500676292926073, -0.040940046310424805, 0.0005766128888353705, -0.05195018649101257, 0.0429450087249279, 0.010935687460005283, -0.019298676401376724, 0.006936098914593458, 0.06613490730524063, -0.0304024089127779, -0.05786735936999321, -0.009728619828820229, 0.039263833314180374, 0.01615881733596325, 0.014169423840939999, 0.01108158752322197, 0.02379012480378151, -0.016977151855826378, -0.013297518715262413, -0.009352123364806175, 0.031280267983675, 0.004534552805125713, 0.024983515962958336, -0.006487101316452026, -0.015100243501365185, -0.046039994806051254, 0.04010559991002083, 0.003421453293412924, -0.017270952463150024, -0.028469383716583252, 0.04210406169295311, 0.028577197343111038, -0.01913159340620041, 0.03632654622197151, 0.0341794416308403, 0.04949251189827919, -0.009083930402994156, 0.014726370573043823, -0.023591745644807816, 0.011527475900948048, 0.021669594570994377, 0.03718465566635132, -0.01874597929418087, 0.018860813230276108, 0.04191704839468002, 0.020612141117453575, 0.034104809165000916, 0.024839838966727257, 0.010154942981898785, -0.030366716906428337, 0.010228652507066727, -0.021680893376469612, -0.0015750552993267775, -0.0012561852345243096, -0.0016098740743473172, -0.032979678362607956, -0.024767516180872917, 0.012584971264004707, 0.005554807372391224, -0.00789344497025013, 0.010214426554739475, -0.06061307713389397, -0.013502071611583233, -0.014535943977534771, 0.009458047337830067, -0.0020676234271377325, 0.040075451135635376, -0.002455882728099823, 0.04046463966369629, 0.03426304832100868, 0.023147348314523697, -0.01109540555626154, 0.0471140556037426, 0.012912701815366745, -0.004637008998543024, -0.008369235321879387, 0.008340559899806976, 0.03618112578988075, -0.008233027532696724, -0.022317461669445038, 0.02841426245868206, -0.05094534158706665, 0.04275444522500038, -0.04829932004213333, -0.02550550363957882, 0.026553692296147346, 0.0048192329704761505, -0.04847900569438934, -0.0383426733314991, 0.0350017175078392, -0.02240040898323059, -0.001181597588583827, 0.029769325628876686, 0.010426589287817478, -0.02213353104889393, 0.04045860469341278, -0.00035488835419528186, 0.06296131014823914, 0.023761967197060585, 0.031096626073122025, -0.0553545244038105, 0.03582446277141571, 0.036586858332157135, -0.01248983945697546, 0.0060469419695436954, -0.0014916249783709645, -0.0036294274032115936, -0.03653119504451752, -0.03545299917459488, -0.021304985508322716, -0.0008545555756427348, -0.01930256187915802, 0.0142840426415205, 0.0019196356879547238, 0.04201725870370865, 0.0036786680575460196, -0.046746425330638885, 0.004428727552294731, 0.033207643777132034, -0.05489906668663025, -0.0019167372956871986, 0.016570065170526505, 0.055460214614868164, -0.04829346016049385, -0.00491253612563014, -0.07539801299571991, -0.0304343793541193, -0.0005377497291192412, -0.04552820697426796, 0.032239895313978195, -0.003554023103788495, -0.031012823805212975, -0.041224464774131775, -0.05103123560547829, -0.005088645964860916, -0.0003754938079509884, -0.04823450744152069, -0.018648458644747734, 0.01788727380335331, 0.027919234707951546, 0.011916320770978928, -0.005942468531429768, -0.012931447476148605, 0.004758552648127079, 0.01804313063621521, 0.06425575166940689, -0.018642937764525414, 0.0656668096780777, 0.0332525260746479, -0.043074268847703934, 0.011656335555016994, -0.027485018596053123, 0.03413747251033783, -0.024747533723711967, -0.0006112575647421181, -0.03708873689174652, 0.0642024576663971, -0.0008954225340858102, -0.05331708863377571, 0.0476674847304821, -0.0033018740359693766, -0.0059150708839297295, -0.04630482569336891, -0.08143702149391174, 0.011026386171579361, -0.033687178045511246, -0.018769944086670876, -0.014843516983091831, 0.015313778072595596, 0.02003086730837822, 0.0019766176119446754, -0.015966296195983887, -0.04807861149311066, 0.15012343227863312, 0.027969591319561005, 0.03563403710722923, 0.03005007468163967, 0.03729923442006111, -0.0030946368351578712, -0.0009531097020953894, 0.005166363436728716, 0.008523218333721161, -0.0042055887170135975, 0.03239046409726143, -0.012042694725096226, 0.044989291578531265, 0.023994823917746544, 0.04100647568702698, 0.0551522932946682, -0.012900508008897305, 0.025199901312589645, 0.0027094492688775063, -0.03850546106696129, -0.05879920721054077, 0.031896959990262985, 0.0210135318338871, -0.00392090855166316, 0.020636484026908875, 0.006871639285236597, 0.0045165023766458035, -0.04136150702834129, -0.001260573510080576, -0.03397214040160179, 0.0354047566652298, -0.020052138715982437, 0.03187166526913643, -0.008214747533202171, -0.0437895730137825, 0.04331542178988457, 0.026001064106822014, -0.03208523616194725, 0.03477569669485092, -0.007298976182937622, -0.04788163676857948, 0.0028303463477641344, 0.03991108015179634, -0.0347650870680809, 0.015466980636119843, 0.00319042825140059, -0.04569089785218239, -0.008648502640426159, -0.01624598540365696, -0.023225268349051476, 0.046068135648965836, -0.025013141334056854, 0.022758258506655693, -0.0286868866533041, -0.03443460538983345, 0.0340408980846405, -0.025593696162104607, -0.023399895057082176, 0.012646987102925777, 0.0011459585512056947, 0.05275830999016762, 0.013530230149626732, -0.02352982386946678, -0.012254785746335983, -0.04855816438794136, 0.01714581437408924, 0.008588999509811401, -0.004337222781032324, 0.015302715823054314, -0.026929212734103203, 0.005624688696116209, -0.01828254573047161, -0.005760679952800274, -0.04829832538962364, 0.04221939668059349, 0.022004101425409317, -0.03671944886445999, 0.04287392273545265, -0.012600511312484741, -0.012410510331392288, -0.035368919372558594, -0.04982896149158478, -0.014788449741899967, -0.00875400472432375, 0.030781086534261703, 0.03041466884315014, -0.05478043481707573, -0.0346989780664444, -0.025562524795532227, 0.07239146530628204, 0.0581328459084034, 0.03729948401451111, -0.007681651972234249, -0.012628932483494282, -0.016428494825959206 ]
I love going through my images from past years. I always find new fun stuff! This is from the 2012 US Olympic Trials during the rain at Hayward Field. 400m , Natasha Hastings, 2x Olympic gold medalist. World Champion.
[ -0.029091481119394302, -0.011787328869104385, 0.009737281128764153, -0.006091632880270481, -0.009948237799108028, -0.006183597259223461, -0.0002420431555947289, 0.02418486587703228, 0.04153553768992424, 0.016302069649100304, 0.03489764779806137, 0.008844111114740372, 0.022461790591478348, -0.03463542088866234, 0.011414033360779285, -0.008320079185068607, -0.009870337322354317, -0.03199015557765961, -0.035515569150447845, -0.003546467050909996, -0.010112674906849861, 0.023298855870962143, -0.06904777139425278, -0.05101161077618599, 0.0016729985363781452, 0.04209286719560623, 0.04320318251848221, -0.025030184537172318, 0.027521301060914993, 0.037147652357816696, -0.028984859585762024, -0.04570336639881134, 0.00845734216272831, -0.06066513434052467, -0.01932738907635212, -0.014614290557801723, 0.052419137209653854, 0.006345356348901987, -0.023304488509893417, -0.04540104791522026, 0.0027918850537389517, -0.03821656480431557, 0.015933603048324585, -0.02937207743525505, -0.06157196685671806, -0.03167548403143883, -0.007543002255260944, 0.015238648280501366, 0.041051432490348816, -0.0333591066300869, 0.03871450945734978, -0.009165416471660137, 0.00932356994599104, 0.0010876534506678581, -0.0002808809222187847, 0.025210918858647346, 0.0039633894339203835, -0.018641721457242966, -0.0066649094223976135, 0.02098800614476204, 0.011095148511230946, -0.002044027904048562, 0.033352602273225784, -0.07555877417325974, 0.020794996991753578, 0.015586272813379765, 0.014747814275324345, -0.03216174244880676, 0.03268999233841896, -0.028514493256807327, -0.037106953561306, 0.000001188685587294458, -0.03135429322719574, -0.003061396535485983, -0.014653402380645275, 0.014965197071433067, -0.009801793843507767, 0.019745370373129845, 0.0005823132814839482, 0.007167500909417868, -0.006033970043063164, 0.06645213812589645, -0.01908216066658497, 0.008897881954908371, -0.038062628358602524, -0.01570211537182331, -0.014247111976146698, 0.0028186331037431955, 0.024709608405828476, -0.0017614965327084064, -0.0019951602444052696, 0.043384600430727005, -0.007433996070176363, -0.015479722991585732, 0.04413968324661255, 0.027002796530723572, -0.012141597457230091, 0.031239401549100876, 0.015005254186689854, 0.01602506823837757, 0.012686770409345627, 0.04289183020591736, -0.004492093808948994, 0.0367710143327713, -0.06013583764433861, 0.0009870753856375813, -0.024730274453759193, -0.030009275302290916, -0.013558396138250828, -0.040483832359313965, 0.04199356958270073, -0.03941265121102333, 0.00175338180270046, 0.008266876451671124, -0.03010079450905323, 0.057893574237823486, 0.03521852195262909, 0.041811078786849976, -0.02961748279631138, 0.007472973316907883, 0.014231197535991669, 0.020264890044927597, 0.025911834090948105, 0.001474575255997479, -0.016590535640716553, -0.03861121088266373, -0.034824978560209274, 0.0560724250972271, -0.034917090088129044, -0.012597115710377693, -0.03112310729920864, -0.07157344371080399, -0.027278447523713112, 0.007665450219064951, -0.037961672991514206, 0.03593722730875015, -0.01632983796298504, 0.029704654589295387, 0.00901858787983656, -0.08771597594022751, 0.06309111416339874, 0.022420821711421013, -0.0006132895941846073, 0.07445237785577774, -0.021052172407507896, 0.03797319158911705, 0.03825317323207855, 0.00032583618303760886, -0.053042225539684296, -0.004584125243127346, -0.03525666892528534, 0.007190781179815531, -0.007499657105654478, 0.024510517716407776, -0.02006586641073227, -0.003079372690990567, -0.003875741036608815, 0.0044626169838011265, 0.020308012142777443, 0.03495236858725548, -0.026647526770830154, 0.03469708934426308, -0.005092589650303125, 0.03067624568939209, -0.024868527427315712, 0.031640924513339996, 0.006827854085713625, -0.04320251941680908, -0.004040324129164219, -0.04345177114009857, 0.033046748489141464, -0.01585371047258377, 0.01274579856544733, 0.028507178649306297, 0.018204426392912865, 0.05888836085796356, 0.04834188520908356, -0.006609082687646151, 0.04896272346377373, 0.03425164520740509, -0.014719374477863312, -0.004164757672697306, 0.004596213810145855, 0.06314311921596527, 0.017094213515520096, -0.007612964138388634, -0.017317481338977814, -0.02288677543401718, -0.04263240471482277, -0.04304172471165657, -0.014055204577744007, 0.03309500217437744, -0.008295837789773941, 0.02764418162405491, 0.018915949389338493, 0.019323190674185753, -0.015955815091729164, -0.009557515382766724, -0.02169305458664894, -0.05693870410323143, -0.03945184499025345, 0.04556247964501381, -0.022300327196717262, 0.01820923574268818, -0.0067214579321444035, -0.013120587915182114, 0.040586210787296295, 0.06989089399576187, -0.006769988220185041, -0.018269117921590805, 0.009078179486095905, -0.009220006875693798, -0.005752645432949066, -0.038004398345947266, -0.00032785217626951635, -0.012274137698113918, -0.02393580973148346, 0.060257796198129654, -0.02038269303739071, -0.007495370227843523, 0.004291373770684004, 0.018825653940439224, 0.07662375271320343, 0.05286635458469391, 0.01662173680961132, 0.023586487397551537, 0.019248489290475845, 0.04583706334233284, -0.004033041186630726, -0.013928001746535301, -0.023329105228185654, 0.038649782538414, 0.022893186658620834, 0.05314513295888901, 0.0719468742609024, 0.05064607784152031, 0.026702670380473137, 0.04142623394727707, 0.0032991543412208557, 0.03226987272500992, -0.01599358767271042, 0.009694180451333523, 0.03866778686642647, 0.04901353642344475, -0.009240180253982544, 0.030755648389458656, -0.01707356423139572, 0.0016761301085352898, 0.002037418307736516, 0.04635889455676079, -0.01897589862346649, 0.008093571290373802, 0.019849378615617752, 0.040712419897317886, -0.040174782276153564, -0.003088281024247408, 0.04141557216644287, 0.04742177948355675, -0.03016180917620659, -0.002440323354676366, -0.005803006701171398, 0.01472387183457613, -0.015385200269520283, -0.0012006254401057959, 0.041985876858234406, 0.022537166252732277, -0.004986688494682312, 0.02359549142420292, 0.016822680830955505, -0.048202525824308395, -0.04297202453017235, -0.048241596668958664, -0.048988789319992065, -0.03598126769065857, -0.01583423838019371, 0.00855164136737585, 0.014391654171049595, -0.057979486882686615, 0.03324299305677414, 0.0006884970352984965, -0.014161977916955948, -0.03434852510690689, -0.01754145510494709, 0.029033977538347244, 0.007564301136881113, 0.03754209727048874, -0.036888912320137024, 0.04542693495750427, 0.0001377318549202755, 0.020158566534519196, -0.040406230837106705, -0.03302512317895889, -0.018721643835306168, 0.03277698904275894, 0.023784317076206207, -0.01733606867492199, 0.0061762165278196335, -0.0021201930940151215, -0.0572536401450634, -0.043480079621076584, 0.02437136135995388, 0.003161025233566761, 0.0024554196279495955, -0.0005659823655150831, -0.022144805639982224, 0.03661542758345604, 0.04306555911898613, -0.0391487292945385, 0.03182164579629898, 0.06692295521497726, -0.0312633253633976, 0.05412495136260986, 0.03948886692523956, -0.01376842986792326, -0.06361406296491623, 0.057138971984386444, 0.0530971996486187, -0.0057642231695353985, 0.0004337157297413796, -0.00018352633924223483, -0.030341053381562233, -0.011911826208233833, 0.004112351220101118, -0.02751806005835533, -0.04649846628308296, 0.04797660559415817, 0.04611605405807495, -0.058361202478408813, 0.007826867513358593, -0.03506957367062569, -0.037012744694948196, -0.022440070286393166, -0.043260153383016586, 0.024498702958226204, 0.03256109356880188, 0.016486788168549538, -0.006750887259840965, -0.027734218165278435, 0.005713259801268578, 0.03688308969140053, 0.05191603675484657, -0.013827390037477016, 0.020357798784971237, 0.05616879090666771, -0.00944477692246437, 0.015920935198664665, 0.0029423485975712538, -0.03376784920692444, -0.016519736498594284, 0.01620049588382244, -0.006024678237736225, 0.013945747166872025, 0.02887246012687683, 0.009302966296672821, 0.0018753206823021173, 0.01861531473696232, -0.03760770335793495, -0.014502301812171936, 0.022541910409927368, -0.015779543668031693, 0.033489640802145004, 0.01894594542682171, 0.01847335696220398, -0.03382331505417824, -0.04749983549118042, -0.06460099667310715, 0.019911104813218117, -0.0020464486442506313, 0.05230795964598656, -0.056208863854408264, 0.06490810215473175, -0.021160278469324112, -0.0287238247692585, 0.042614687234163284, -0.03310473635792732, -0.009958349168300629, 0.0535840280354023, 0.001671475823968649, 0.06030745804309845, -0.03364190086722374, 0.023960117250680923, -0.021146584302186966, 0.0210796557366848, 0.0476921945810318, -0.018399013206362724, 0.034133270382881165, 0.0025899976026266813, -0.01560644805431366, -0.004211421124637127, 0.0042419955134391785, 0.008933375589549541, -0.019276069477200508, 0.0041813598945736885, -0.030502349138259888, -0.06364364922046661, -0.04480242356657982, 0.03838733583688736, 0.04689926654100418, 0.01848789118230343, -0.014815030619502068, 0.037611693143844604, 0.020918063819408417, 0.015114618465304375, 0.03578122332692146, -0.014950068667531013, 0.006684118881821632, -0.028125440701842308, 0.028052648529410362, 0.019585974514484406, -0.04010118916630745, -0.03418966382741928, 0.006577569991350174, -0.014083399437367916, 0.03511110320687294, 0.014852838590741158, -0.023614659905433655, -0.04001522809267044, 0.00964830256998539, -0.0031377742998301983, 0.0501936711370945, -0.02993493527173996, -0.008029008284211159, -0.010370336472988129, 0.02005879580974579, -0.016121920198202133, -0.04646582901477814, 0.007452905643731356, -0.05420767515897751, 0.05799565464258194, 0.018017612397670746, -0.01525090355426073, -0.030059533193707466, -0.025225529447197914, -0.022400811314582825, -0.047488607466220856, 0.015562974847853184, 0.02354653924703598, 0.014885585755109787, -0.0072633144445717335, -0.03815938159823418, 0.024883611127734184, 0.02506738342344761, -0.011171563528478146, -0.02261671982705593, 0.004635268822312355, 0.04369467869400978, 0.019125504419207573, 0.03611685708165169, 0.012398736551404, -0.030336719006299973, 0.027132932096719742, -0.06643746048212051, -0.01038498617708683, 0.0004805625358130783, -0.0389954149723053, -0.006887261755764484, 0.01760445535182953, 0.00579069321975112, 0.021417226642370224, 0.02412544935941696, 0.012757295742630959, -0.0170541163533926, 0.04763573780655861, -0.02546110935509205, -0.03905573487281799, 0.06107479706406593, -0.022539595142006874, -0.030924195423722267, 0.04999152198433876, 0.044771138578653336, -0.005331613589078188, -0.0012341417605057359, 0.028843004256486893, -0.036021195352077484, 0.025160424411296844, -0.04525011405348778, 0.004303157329559326, -0.018300825729966164, -0.01730481907725334, 0.02749491110444069, -0.025793038308620453, 0.03787581995129585, -0.020559832453727722, -0.017477255314588547, -0.03973447158932686, -0.05764016881585121, -0.033984992653131485, 0.020031245425343513, 0.01506363321095705, -0.00005264161518425681, 0.02243560180068016, -0.02579904906451702, -0.032083503901958466, -0.003112358506768942, -0.003694358514621854, 0.01753143034875393, -0.03572750464081764, 0.000422740908106789, -0.0030090981163084507, -0.02267206273972988, -0.010215296410024166, -0.02176542580127716, -0.04020875319838524, 0.004653462674468756, -0.0025820669252425432, -0.008230630308389664, -0.026261521503329277, -0.019431963562965393, -0.03882333263754845, 0.0016546911792829633, -0.014836187474429607, 0.007859581150114536, -0.03184676542878151, 0.02054683119058609, 0.025413405150175095, 0.03560904040932655, 0.02000240609049797, 0.0043343896977603436, -0.03295091167092323, 0.06444138288497925, 0.027337696403265, -0.05939239636063576, -0.032600630074739456, 0.027352381497621536, -0.0003347561869304627, 0.03637245297431946, 0.001780503778718412, -0.010150186717510223, -0.03402095288038254, -0.0441359244287014, 0.000776414293795824, -0.014695169404149055, -0.03645022585988045, -0.06398987770080566, -0.039369579404592514, -0.016629712656140327, 0.01865239441394806, -0.004313299898058176, -0.021892549470067024, 0.03402344882488251, -0.05560503154993057, 0.03522884473204613, -0.025683768093585968, -0.025640010833740234, -0.010520579293370247, 0.00003850217763101682, 0.0073623936623334885, 0.03782579302787781, -0.033096957951784134, 0.03500533849000931, 0.056680478155612946, 0.025853190571069717, -0.0024654578883200884, -0.018579978495836258, -0.06475625187158585, -0.03861066326498985, 0.014223512262105942, -0.03482738509774208, 0.008993216790258884, -0.001612627413123846, -0.028718329966068268, 0.023485993966460228, -0.04268593713641167, -0.01014511939138174, -0.007933552376925945, -0.011089680716395378, 0.018344923853874207, -0.024944402277469635, 0.04396536946296692, -0.010186908766627312, 0.024072695523500443, -0.022116361185908318, 0.06289706379175186, 0.017774047330021858, 0.0001585498685017228, -0.02668450027704239, -0.03260783106088638, -0.006730666384100914, -0.07845312356948853, 0.04335743188858032, -0.028194867074489594, -0.019172703847289085, -0.053924381732940674, -0.0071993605233728886, 0.04588239639997482, -0.0019175058696419, 0.05189666152000427, 0.04440253600478172, 0.006197563372552395, 0.0073064351454377174, -0.021226372569799423, -0.009359760209918022, 0.021630318835377693, 0.007419410161674023, -0.018252890557050705, -0.009586816653609276, -0.03793107345700264, 0.014780905097723007, -0.05563022196292877, -0.02931799367070198, -0.04102996736764908, -0.029227562248706818, 0.062373340129852295, -0.023443423211574554, 0.04316499084234238, 0.0039915237575769424, -0.02826661244034767, -0.04196333885192871, 0.053893961012363434, 0.009330887347459793, 0.01982112042605877, 0.056506458669900894, 0.018798327073454857, 0.0043065547943115234, -0.015678200870752335, -0.005170032847672701, -0.014384869486093521, -0.0482851080596447, 0.05733567848801613, -0.014581539668142796, -0.05330831930041313, 0.007711098529398441, 0.06885930895805359, -0.07183884084224701, -0.05375594645738602, -0.003736291080713272, 0.0032563789281994104, 0.027138294652104378, -0.022786376997828484, -0.006757458206266165, -0.017438745126128197, -0.030644359067082405, -0.024226287379860878, 0.02221987396478653, -0.005001174286007881, 0.0399317666888237, 0.003994290716946125, 0.025411149486899376, -0.04563875496387482, 0.010622250847518444, 0.04717298224568367, -0.0151168592274189, -0.03286676108837128, -0.0356234572827816, -0.007699348498135805, -0.02421526052057743, 0.0018728248542174697, 0.024803876876831055, -0.009776707738637924, 0.005208397284150124, 0.024790609255433083, 0.005423848517239094, 0.04923543706536293, -0.03150154650211334, 0.025858135893940926, 0.016153093427419662, -0.03660482540726662, -0.059124164283275604, -0.029299747198820114, 0.044325944036245346, -0.007816432043910027, 0.009610133245587349, -0.05418402701616287, -0.013023504987359047, 0.040778886526823044, -0.022565755993127823, 0.0040780710987746716, -0.05393844097852707, -0.0765591636300087, -0.05590687319636345, -0.031057050451636314, -0.04152706637978554, 0.009678850881755352, -0.028209716081619263, 0.034960776567459106, -0.0007909537525847554, -0.003311258042231202, 0.011548289097845554, 0.000051434712077025324, -0.04315279796719551, 0.017484528943896294, -0.04047909751534462, 0.01483152061700821, -0.04392734169960022, -0.04264010488986969, -0.040050506591796875, 0.007364205550402403, 0.012543228454887867, 0.0022030984982848167, -0.020698489621281624, 0.016200557351112366, 0.01813279278576374, 0.010437429882586002, 0.015544520691037178, 0.015627730637788773, -0.013569763861596584, -0.04982220381498337, -0.013839714229106903, 0.02238200232386589, -0.01599748246371746, 0.02419339120388031, 0.03481435775756836, -0.023745963349938393, 0.04332717880606651, 0.01183789037168026, -0.02517852373421192, -0.038002364337444305, -0.0075002433732151985, 0.021492404863238335, 0.022019099444150925, -0.022825535386800766, -0.016765790060162544, -0.025557098910212517, -0.011224884539842606, 0.022715386003255844, 0.017857680097222328, 0.017209090292453766, 0.018614619970321655, -0.020217400044202805, -0.02075948566198349, 0.08355876803398132, -0.016499189659953117, 0.021151099354028702, -0.0024230796843767166, 0.00419055949896574, 0.015200767666101456, -0.0029488506261259317, 0.0021726558916270733, 0.046937473118305206, 0.0381438210606575, -0.01531410962343216, 0.043214064091444016, -0.013214336708188057, 0.011248302645981312, 0.01807299442589283, 0.012685059569776058, -0.022744201123714447, -0.0265676099807024, -0.03799445554614067, -0.0050985910929739475, 0.03809804469347, -0.0017527532763779163, 0.02762513980269432, -0.003390582976862788, -0.05616585165262222, -0.03119029477238655, 0.036703500896692276, -0.07449367642402649, -0.020911455154418945, 0.02390333078801632, -0.014796734787523746, -0.03128926455974579, -0.003849723841995001, -0.045233339071273804, -0.0120862340554595, 0.00044804904609918594, -0.033895671367645264, -0.024461762979626656, -0.005261866841465235, 0.000919236452318728, 0.0320054329931736, -0.00868217833340168, 0.001747251721099019, 0.000976496608927846, 0.03615909814834595, -0.04364142194390297, -0.038729649037122726, -0.006956056691706181, 0.04341793805360794, 0.03128970414400101, -0.014113525860011578, -0.003303960431367159, 0.0026840558275580406, -0.019569475203752518, -0.006315374746918678, 0.02100410684943199, 0.019566582515835762, 0.002425440587103367, 0.026708217337727547, 0.013002797029912472, -0.007157324813306332, -0.05234295129776001, 0.03524931147694588, -0.008168651722371578, -0.023936761543154716, -0.021354952827095985, 0.02252950891852379, 0.015360226854681969, -0.010163229890167713, 0.034031886607408524, 0.001198779558762908, 0.02904387377202511, -0.025910232216119766, 0.022290952503681183, 0.01093124970793724, 0.05128571018576622, 0.027958953753113747, 0.046537574380636215, 0.004365688189864159, 0.06142325699329376, 0.06133623793721199, -0.019416453316807747, 0.012099109590053558, 0.03673945367336273, 0.016518430784344673, -0.03283362835645676, -0.00244508171454072, -0.02912955917418003, 0.004430206026881933, -0.001985465409234166, -0.016415812075138092, 0.014004399068653584, -0.028165025636553764, -0.011947757564485073, -0.012851712293922901, -0.039109691977500916, 0.05960594490170479, -0.03756772354245186, 0.005072913598269224, -0.008267856203019619, -0.03089061565697193, -0.02131291665136814, 0.01961086504161358, -0.010762657970190048, 0.0138669079169631, 0.04649929702281952, 0.027422992512583733, -0.01716366969048977, 0.0746113583445549, 0.014651919715106487, 0.01293221116065979, -0.016955094411969185, 0.0017247404903173447, 0.01746746338903904, -0.00135394639801234, -0.03284621983766556, 0.03342525660991669, -0.02255873568356037, 0.012632928788661957, -0.009445824660360813, -0.03318389877676964, 0.08649776130914688, -0.018485909327864647, -0.00998164713382721, -0.05901889503002167, 0.038511209189891815, -0.03803185746073723, 0.011272076517343521, 0.04323289170861244, -0.005861003417521715, -0.0069076004438102245, 0.05699989199638367, 0.004787873476743698, 0.014461956918239594, -0.01314707100391388, 0.03880734741687775, -0.007337810005992651, 0.03970533236861229, 0.06278903782367706, -0.016255971044301987, -0.019876034930348396, 0.03706352785229683, -0.014961645938456059, -0.038132697343826294, 0.021690543740987778, -0.05882256105542183, 0.005348674487322569, -0.011237054131925106, -0.036476053297519684, 0.005886780098080635, 0.042064059525728226, -0.013987626880407333, -0.06206541880965233, 0.01473776064813137, 0.02553858794271946, -0.05637236684560776, 0.0033999618608504534, 0.006481234449893236, 0.03283745422959328, 0.00010589975863695145, 0.01072575245052576, -0.045645419508218765, -0.03154175728559494, -0.002118164673447609, -0.04679427295923233, 0.035216957330703735, 0.007061913143843412, -0.01170886680483818, -0.022227060049772263, -0.06385765224695206, -0.025264959782361984, 0.01843574084341526, -0.03558846935629845, -0.033021677285432816, 0.0323200523853302, 0.05968312546610832, 0.00517134228721261, 0.007292884401977062, -0.04560757428407669, 0.011959758587181568, 0.031196357682347298, 0.058730319142341614, 0.017693204805254936, 0.016271600499749184, 0.047781869769096375, -0.009705054573714733, 0.01918589323759079, -0.05445028096437454, 0.024476177990436554, -0.007177818566560745, -0.003691005287691951, -0.03910774737596512, 0.0265030600130558, -0.011900454759597778, -0.0515625923871994, 0.018946120515465736, -0.007663441356271505, 0.0017940286779776216, -0.03045494109392166, -0.06086881458759308, 0.0025853205006569624, -0.024089690297842026, 0.009598289616405964, -0.03821863979101181, 0.03536047041416168, 0.03304162994027138, 0.006682049483060837, -0.03235919401049614, -0.08441275358200073, 0.14205119013786316, 0.01999274641275406, 0.0397125668823719, 0.006634014658629894, 0.03225916996598244, 0.055289849638938904, 0.030706675723195076, 0.001919543370604515, -0.02216944843530655, -0.01703597791492939, 0.050948262214660645, -0.038302939385175705, 0.0230997484177351, -0.009027774445712566, 0.029098864644765854, 0.04141655191779137, -0.034004177898168564, 0.027003761380910873, 0.026047170162200928, -0.06198066100478172, -0.039134442806243896, 0.03931572660803795, -0.009799953550100327, 0.04210561513900757, 0.027302628383040428, 0.015681464225053787, 0.008696039207279682, -0.07185778766870499, -0.004544706549495459, -0.009619324468076229, 0.015426181256771088, 0.02434508502483368, 0.04038192331790924, -0.017956048250198364, -0.03928877413272858, 0.04749070480465889, -0.018839264288544655, -0.015842948108911514, 0.00037565280217677355, 0.035316016525030136, -0.009295339696109295, 0.008143451064825058, 0.0314674898982048, -0.06018857657909393, 0.013506983406841755, 0.01685207337141037, -0.038024988025426865, 0.01113064493983984, -0.00782882608473301, -0.04745742306113243, 0.045153092592954636, -0.020118694752454758, 0.01956225000321865, -0.0053271520882844925, -0.02634308859705925, -0.005781927146017551, -0.004050076473504305, 0.005496280733495951, -0.0008291642880067229, -0.006099862977862358, 0.03372357785701752, 0.02586347796022892, -0.0068405247293412685, 0.02481798455119133, -0.055982254445552826, 0.019990472123026848, 0.037866901606321335, -0.012391421012580395, -0.011004793457686901, -0.052020639181137085, -0.007161556277424097, 0.011669669300317764, -0.013730702921748161, -0.034195464104413986, 0.023846620693802834, 0.03307643160223961, -0.023346921429038048, 0.0588485449552536, 0.00727497972548008, -0.036918651312589645, -0.0036279666237533092, -0.039361316710710526, -0.013629497028887272, 0.009390810504555702, 0.03765156492590904, 0.027669895440340042, -0.03359074890613556, -0.027582207694649696, -0.04137245565652847, 0.06475421041250229, 0.022514495998620987, 0.046650782227516174, -0.030759254470467567, 0.05342088267207146, -0.0035475792828947306 ]
I did a little research into what Shepherds were like in the Time of Jesus. It was a very lonely, dirty, dangerous job – that could not be managed from a distance. Shepherds lived among the sheep in the filth and stench – the lives of the sheep were their primary concern. A sheep sometimes wandered far off from the others – when it got lost and could not find it's way back, it would simply lie down where it was and refuse to budge – the shepherd would search out for the lost sheep – carefully pick it up and carry it home. There was a personal relationship between the Shepherd and each individual sheep. They were not just numbers. I believe this image of the Shepherd points us to God. God is not squeamish; God will not run away when things get messy in our lives; – God's hands are dirty (not lily white); God's clothes are stained with waste, mud and blood – the waste, mud and blood of our roller coaster lives. This God gets in the middle of the mess with us. Does the mess magically disappear? Not most of the time; but there is a sense we are not alone and that helps us get through it. A key question for us; Are we afraid to share our messes with God? I believe most of the time thru people – we are called to be shepherds for each other. We are responsible to pick each other up when we are down. "Don't we need special skill and talents – training to do this? No! We need a caring heart, a little common sense and a few less excuses. "What about when you don't have the answers or solutions to people's problems? You don't know what to say or do. Just listen and just be there for them. A man dreamed he died and went to heaven and there was met by Jesus. The man had lived a long Christian life, but it had not been without some time of great trial and tribulation as well as those times of joy and victory. As he met with Christ, the man was given a panoramic review of his life – all the highlights and low periods. In the review of his life one of the things that continued throughout were his footsteps along the sands of time. This entry was posted on Sunday, April 22nd, 2018 at 4:50 pm and is filed under 4th Sunday, Cycle B, Easter. You can follow any responses to this entry through the RSS 2.0 feed. Both comments and pings are currently closed.
[ 0.02278323471546173, -0.017166707664728165, -0.01974058523774147, -0.0010747734922915697, 0.015140237286686897, 0.006656337529420853, 0.0012781599070876837, 0.03613690659403801, 0.02919073775410652, -0.0022451241966336966, 0.035122349858284, 0.002341495594009757, 0.003914737608283758, -0.01625414937734604, -0.03302270174026489, -0.030538244172930717, -0.01873399317264557, -0.03703305125236511, -0.047603312879800797, -0.015386261977255344, -0.024343231692910194, 0.030429445207118988, -0.06792610883712769, -0.0426158681511879, -0.010061369277536869, 0.03765822574496269, 0.018358418717980385, -0.026986492797732353, 0.04365266487002373, 0.06568671017885208, -0.03264399990439415, 0.009779589250683784, 0.01855439879000187, -0.050431620329618454, -0.017275849357247353, -0.026576489210128784, 0.04025941714644432, -0.06191528961062431, -0.009456033818423748, -0.06529822945594788, -0.0011780852219089866, -0.025320718064904213, 0.03825012594461441, -0.05653509870171547, -0.039120547473430634, -0.002205896656960249, -0.004477845039218664, 0.0010481668869033456, -0.0089297229424119, -0.057250771671533585, 0.03289936110377312, -0.004682671278715134, 0.02654329314827919, -0.011329889297485352, 0.025826917961239815, 0.01708110235631466, 0.0028036904986947775, -0.007226129528135061, -0.03886210545897484, 0.009370018728077412, 0.02566336654126644, 0.0034015837591141462, 0.016446806490421295, -0.08696171641349792, 0.007946654222905636, 0.021568993106484413, -0.027726169675588608, 0.0033736620098352432, 0.00802958570420742, 0.010348246432840824, -0.01353256031870842, 0.004516741260886192, -0.03209094703197479, -0.018717946484684944, 0.025824949145317078, -0.013821582309901714, 0.02344319224357605, 0.001375216175802052, -0.007305423263460398, -0.01353490725159645, 0.021757954731583595, 0.05307210981845856, -0.000931734626647085, 0.00102311372756958, -0.052884992212057114, 0.010030818171799183, -0.006010698154568672, 0.03353071212768555, 0.0024832889903336763, -0.0060030915774405, 0.007957191206514835, 0.056245364248752594, 0.030008867383003235, -0.018732594326138496, 0.056036874651908875, 0.04252457246184349, -0.016845740377902985, 0.029416410252451897, -0.012685898691415787, -0.013725980184972286, 0.0353379063308239, 0.03706243634223938, -0.014678250066936016, 0.030177362263202667, -0.05254875123500824, -0.002403165679425001, -0.004055448342114687, -0.0013402292970567942, -0.013904950581490993, -0.03993971645832062, 0.010349041782319546, -0.024224700406193733, 0.03314634785056114, 0.016427190974354744, 0.046717219054698944, 0.03073692135512829, -0.03601384535431862, 0.051238201558589935, -0.046734269708395004, 0.015159840695559978, 0.010615239851176739, 0.011064245365560055, 0.05627524480223656, -0.021311551332473755, 0.02028547413647175, -0.013126084581017494, -0.04949193075299263, 0.05842098966240883, -0.04007282480597496, 0.0316937081515789, 0.007083686999976635, -0.053586363792419434, -0.01807631179690361, 0.01464308612048626, -0.010514969937503338, -0.012206872925162315, 0.0211175624281168, 0.009189089760184288, 0.013567691668868065, -0.06342341750860214, 0.017519330605864525, 0.01994846761226654, -0.004613236989825964, 0.07817400246858597, -0.011845056898891926, -0.0023102795239537954, -0.0044977301731705666, 0.02493218146264553, -0.046194322407245636, 0.022842831909656525, -0.03975881636142731, 0.04666221886873245, -0.004729945212602615, 0.0008865608833730221, 0.01162720937281847, -0.0377931222319603, -0.008701134473085403, -0.013659533113241196, 0.01652035489678383, 0.04297151416540146, -0.027884656563401222, 0.027686595916748047, -0.005060864612460136, 0.04110235348343849, -0.016214746981859207, 0.032027099281549454, 0.004070507828146219, -0.014453655108809471, -0.0063613648526370525, -0.04667995497584343, 0.02773873321712017, 0.001740253996104002, -0.04008696600794792, 0.025878101587295532, 0.047234248369932175, 0.04580359160900116, 0.031832505017519, 0.009251415729522705, 0.022277621552348137, 0.04941976070404053, -0.050948891788721085, 0.011333276517689228, -0.016654571518301964, 0.03826965391635895, 0.0005104208830744028, -0.02586168423295021, -0.00974366907030344, 0.00820522103458643, -0.019540956243872643, -0.03697051852941513, -0.026771076023578644, 0.03379468992352486, -0.012604541145265102, 0.010685693472623825, 0.015249824151396751, -0.014278634451329708, 0.0029381762724369764, -0.03132672607898712, 0.006307203788310289, -0.05685506388545036, -0.01652832329273224, 0.04118771478533745, -0.013871093280613422, 0.055302925407886505, -0.00037478242302313447, 0.003691533114761114, 0.03632194921374321, 0.06754903495311737, -0.003032217500731349, -0.01501708384603262, 0.038530848920345306, -0.01287668477743864, -0.023106195032596588, -0.03477965667843819, -0.008799895644187927, -0.02107059210538864, -0.019280148670077324, 0.03611158952116966, -0.021189793944358826, -0.03225604072213173, 0.015396131202578545, 0.03889074921607971, 0.02254670299589634, 0.01043609157204628, 0.010848049074411392, -0.01542581431567669, 0.0007316739647649229, 0.056934904307127, -0.022025378420948982, -0.012343458831310272, -0.009469538927078247, 0.039233408868312836, 0.03102722205221653, 0.05346637964248657, 0.038949042558670044, 0.01770993135869503, 0.02614126354455948, 0.04275480657815933, -0.025063900277018547, 0.042124390602111816, 0.012464838102459908, -0.013265646062791348, 0.04285912588238716, 0.0208762064576149, -0.017555546015501022, 0.03865694999694824, -0.015042229555547237, -0.01977475732564926, -0.0017669134540483356, 0.05097737908363342, -0.005054773297160864, 0.01819056272506714, 0.03426394239068031, 0.043239787220954895, -0.03288531303405762, 0.013260101899504662, 0.030922148376703262, 0.0556754544377327, -0.02206709235906601, -0.03576230630278587, -0.012450966984033585, 0.022237541154026985, 0.026802130043506622, 0.011231317184865475, 0.056778766214847565, -0.019885405898094177, 0.0019761009607464075, 0.03306826204061508, 0.01601673848927021, -0.059533413499593735, -0.011868123896420002, -0.05186581239104271, -0.04258347675204277, -0.029373234137892723, -0.05588714778423309, 0.014693940989673138, 0.06126566603779793, -0.008507787249982357, 0.020150380209088326, 0.007307126186788082, 0.001720533473417163, -0.025045257061719894, -0.017001252621412277, 0.03671756014227867, 0.009215355850756168, 0.055690865963697433, -0.03337213769555092, 0.034432705491781235, 0.021468428894877434, 0.007262906525284052, -0.020228834822773933, -0.02890125848352909, -0.01720312610268593, -0.0235810037702322, 0.02043609507381916, 0.011127669364213943, 0.00692005455493927, -0.010863612405955791, -0.01489363145083189, -0.08126500993967056, -0.006468856241554022, -0.006190239917486906, -0.05705374479293823, 0.018874196335673332, -0.018501069396734238, 0.06148795410990715, -0.008036418817937374, -0.0482269786298275, 0.023633556440472603, 0.014248318038880825, -0.031815819442272186, 0.03819742426276207, 0.0309632308781147, 0.020020578056573868, -0.07855705171823502, 0.07967640459537506, 0.04076627641916275, 0.00672104861587286, 0.01055020373314619, 0.006311956327408552, -0.02529315836727619, -0.011562674306333065, 0.005926985759288073, -0.03243561089038849, -0.04153221473097801, 0.052326951175928116, 0.01564284786581993, -0.0457993745803833, 0.023755261674523354, -0.000012400235391396564, -0.047989822924137115, -0.04411284998059273, -0.056436941027641296, 0.030737005174160004, 0.02097824588418007, 0.029372569173574448, -0.005978591740131378, -0.029823916032910347, -0.008307534269988537, 0.021226635202765465, 0.03370431810617447, -0.009012792259454727, -0.013480374589562416, 0.028671441599726677, -0.012573512271046638, -0.020268380641937256, 0.05059366673231125, -0.018050871789455414, -0.0006639175699092448, 0.014525420032441616, 0.025356417521834373, 0.005535829346626997, 0.022787051275372505, 0.01610538363456726, 0.03487783297896385, 0.056207455694675446, -0.02091543935239315, -0.015611129812896252, -0.001889039995148778, 0.00910734198987484, 0.009543889202177525, 0.01322263851761818, -0.005318082869052887, -0.00696655223146081, -0.02991143800318241, -0.05610660836100578, 0.03490443155169487, -0.010250361636281013, 0.051259949803352356, -0.04977723956108093, 0.05609818920493126, -0.010355515405535698, -0.009133721701800823, 0.03761060908436775, -0.07511911541223526, 0.017662882804870605, 0.04722539708018303, -0.03390127792954445, 0.034959036856889725, -0.048584505915641785, 0.014776750467717648, -0.03988952934741974, 0.014976984821259975, 0.053690094500780106, -0.026054099202156067, 0.03173351660370827, -0.021862290799617767, -0.00043778627878054976, -0.02483525313436985, 0.010269660502672195, -0.0022308696061372757, -0.03128254413604736, 0.02024277113378048, -0.002990199951454997, -0.032933298498392105, -0.04926716163754463, 0.034362178295850754, 0.007497711572796106, 0.02472115494310856, 0.0026394824963063, 0.023041492328047752, 0.005300045944750309, -0.00944456085562706, 0.06538733094930649, 0.001786582637578249, 0.047163963317871094, -0.03116636909544468, 0.03580452501773834, 0.01634306088089943, -0.051327530294656754, -0.04816654324531555, 0.02559846080839634, -0.0307187270373106, 0.039132434874773026, 0.025131335482001305, -0.029406918212771416, -0.025904973968863487, 0.00697575556114316, 0.015032269060611725, 0.008628622628748417, -0.018702790141105652, -0.026322470977902412, 0.03421376645565033, 0.01689324714243412, 0.029127471148967743, -0.048541195690631866, -0.00954584963619709, -0.01790362223982811, 0.05479297414422035, 0.042270228266716, 0.004883592948317528, -0.03027997352182865, -0.024610215798020363, -0.022195009514689445, 0.01041981391608715, 0.005953601095825434, 0.020215924829244614, -0.00460258312523365, 0.013698488473892212, -0.04207716882228851, 0.04572487249970436, 0.03444652259349823, 0.004356933757662773, -0.0075663053430616856, -0.018582642078399658, 0.03641430661082268, 0.018241604790091515, 0.03322070464491844, 0.0067573729902505875, -0.041895363479852676, 0.025061441585421562, -0.05785566568374634, -0.0014166493201628327, 0.002941102022305131, 0.013620594516396523, 0.028349069878458977, 0.009095991961658001, 0.010966062545776367, 0.031232967972755432, -0.011177866719663143, 0.015317524783313274, 0.007927630096673965, 0.03973672166466713, -0.0612247996032238, 0.005365285556763411, 0.03380294144153595, -0.007231216412037611, -0.01616879366338253, 0.050763510167598724, 0.04344168305397034, 0.016572825610637665, -0.005237400531768799, 0.042241714894771576, -0.04600425437092781, 0.05247054249048233, -0.060113340616226196, 0.017644841223955154, -0.006880430970340967, -0.04714582860469818, 0.001851254841312766, -0.03206167742609978, 0.03265795111656189, -0.004351724870502949, 0.004858626518398523, -0.0264884065836668, -0.045409806072711945, -0.028626699000597, 0.003105021780356765, 0.009879921562969685, -0.00737511133775115, 0.012144478037953377, -0.0007277666009031236, -0.02379363588988781, -0.02513188309967518, 0.022177113220095634, 0.006152738351374865, -0.0014323669020086527, 0.011874238029122353, -0.015816019847989082, 0.0038735619746148586, 0.01970512978732586, 0.026564912870526314, -0.012068606913089752, 0.006561174523085356, -0.007983295246958733, -0.015345941297709942, -0.025374362245202065, -0.03345824405550957, -0.026656774803996086, -0.02998262085020542, 0.0046601430512964725, 0.008483541198074818, 0.0031231946777552366, 0.02473715879023075, 0.025502825155854225, 0.003907450940459967, 0.006181340664625168, 0.016928238794207573, -0.024442659690976143, 0.03544279932975769, 0.021366318687796593, -0.049647290259599686, -0.0052162823267281055, 0.01933925785124302, 0.010638410225510597, 0.0394451804459095, -0.012171474285423756, -0.008377734571695328, -0.046206701546907425, -0.08101858198642731, -0.03200025483965874, -0.05142210051417351, -0.032593950629234314, -0.05387743562459946, 0.010462688282132149, 0.0179518423974514, 0.04538803547620773, -0.009718422777950764, -0.030097484588623047, -0.015006589703261852, -0.03967849165201187, 0.01929066702723503, -0.03970581665635109, -0.02617361955344677, -0.012356133200228214, -0.010216194204986095, 0.00005379176582209766, 0.0554821640253067, -0.0058626518584787846, 0.019304318353533745, 0.004737561102956533, 0.011368157342076302, 0.02738805301487446, -0.0053137727081775665, -0.04474101588129997, -0.07008235901594162, -0.03977726027369499, -0.004546296317130327, 0.004778222180902958, 0.0019008461385965347, -0.034190960228443146, 0.05869120731949806, -0.01297688763588667, -0.009581657126545906, -0.0639360249042511, -0.03567330539226532, -0.010534972883760929, 0.013927015475928783, 0.04649210721254349, -0.006791192106902599, 0.027111392468214035, -0.015255402773618698, 0.061173830181360245, 0.06574127078056335, -0.0067981849424541, -0.031091928482055664, -0.042917028069496155, -0.04155140370130539, -0.0039042679127305746, 0.022572889924049377, -0.020510263741016388, -0.012175093404948711, -0.03702811524271965, 0.012876075692474842, 0.034517936408519745, 0.008676237426698208, 0.02569364570081234, 0.05545186996459961, -0.015029956586658955, -0.02166758105158806, -0.014355646446347237, 0.03538401797413826, 0.01783706620335579, -0.009649266488850117, 0.006039871368557215, -0.027030479162931442, -0.02980293706059456, -0.003235830459743738, -0.021730443462729454, -0.038105808198451996, -0.04673033580183983, -0.030092278495430946, 0.06021732836961746, 0.009699948132038116, 0.053866948932409286, -0.013196331448853016, -0.05916599929332733, -0.07048710435628891, 0.018066417425870895, 0.020328111946582794, 0.008413570001721382, 0.053209953010082245, -0.00020457447681110352, -0.027893250808119774, -0.019411137327551842, -0.007180818822234869, 0.01947716251015663, -0.048606276512145996, 0.05625630542635918, -0.004679503384977579, -0.04047570005059242, 0.005707988049834967, 0.06248483806848526, -0.07060544192790985, -0.05893394351005554, -0.04755999147891998, 0.011796800419688225, 0.02534014731645584, -0.02012617327272892, -0.006990382447838783, -0.02472415752708912, 0.039386000484228134, 0.02130679413676262, 0.031977660953998566, -0.0005521549610421062, 0.05054708942770958, 0.006138170138001442, 0.013720774091780186, -0.03424481302499771, 0.001076600980013609, 0.04716324061155319, -0.020736413076519966, -0.023975715041160583, -0.03978617116808891, -0.01048662606626749, -0.010314259678125381, 0.00738835334777832, 0.028863947838544846, -0.019060026854276657, -0.00005055528527009301, 0.04122302308678627, -0.004340220708400011, 0.03176240995526314, -0.007838686928153038, 0.0049519711174070835, 0.011805392801761627, -0.014777886681258678, -0.04380986467003822, -0.025853676721453667, 0.04964485391974449, 0.024543708190321922, 0.030108876526355743, -0.05230600759387016, 0.016442585736513138, 0.04836483299732208, 0.010915659368038177, 0.01271800696849823, -0.02849576063454151, -0.08257760107517242, -0.022341599687933922, -0.049667611718177795, -0.03751501068472862, -0.008886273019015789, 0.006675432901829481, 0.002810571575537324, -0.009115162305533886, -0.02587146684527397, -0.0035127317532896996, 0.023950202390551567, -0.028065446764230728, 0.0012205991661176085, -0.056339189410209656, 0.04235382378101349, -0.020427260547876358, -0.05096369981765747, -0.0417894646525383, -0.009167477488517761, -0.0068618678487837315, -0.017564890906214714, -0.037925973534584045, 0.007589082233607769, 0.0039574941620230675, 0.018629781901836395, 0.025738956406712532, 0.024325905367732048, -0.013908733613789082, -0.03258882835507393, -0.0017053727060556412, 0.06012439727783203, -0.044478774070739746, 0.03528402000665665, 0.02017080783843994, -0.02621542289853096, -0.0005064671859145164, 0.027091778814792633, -0.03752424195408821, -0.00934399850666523, 0.00430684071034193, -0.008639090694487095, 0.008080490864813328, -0.06909424066543579, -0.023285919800400734, 0.020046215504407883, -0.028335394337773323, -0.023387644439935684, 0.011426553130149841, -0.0022444329224526882, 0.002681926591321826, -0.021561983972787857, 0.01418679766356945, 0.05230856314301491, 0.003659426001831889, 0.05214272812008858, -0.009391107596457005, 0.04326975718140602, 0.0019814244005829096, -0.005165878217667341, 0.0321047380566597, 0.0037784473970532417, 0.02520325966179371, -0.011143608018755913, 0.00779119273647666, 0.005388096906244755, 0.0007740607834421098, 0.03483278676867485, -0.04189469292759895, -0.014463107101619244, -0.019686635583639145, -0.024600274860858917, 0.03721441701054573, 0.040005479007959366, 0.013895420357584953, -0.0030199631582945585, 0.010457067750394344, -0.04830659180879593, -0.03729069232940674, 0.03321295976638794, -0.07707489281892776, -0.019983753561973572, 0.03792358934879303, 0.0006373419892042875, -0.0013576311757788062, -0.012906632386147976, -0.051255371421575546, 0.017206495627760887, -0.0046123843640089035, 0.0035334452986717224, -0.01382979191839695, 0.020462235435843468, -0.0065002357587218285, 0.04703840985894203, -0.0338628776371479, 0.01304458174854517, -0.006405289750546217, 0.042440496385097504, -0.05090073123574257, -0.01705128513276577, -0.012385875917971134, -0.030413052067160606, 0.01383717730641365, -0.013312400318682194, 0.014163464307785034, 0.003288842272013426, 0.011763885617256165, -0.015325877815485, 0.0034182011149823666, 0.029546549543738365, 0.0056282696314156055, 0.026722334325313568, 0.005671542137861252, -0.021427109837532043, -0.039514366537332535, 0.0524585135281086, 0.00029733075643889606, -0.011825555004179478, -0.011522255837917328, 0.0662175789475441, 0.03432629629969597, -0.010104360058903694, 0.03733604773879051, 0.02942640893161297, 0.05872790515422821, 0.006615390535444021, -0.014953721314668655, 0.00601384649053216, 0.017015838995575905, 0.02771563082933426, 0.03573516383767128, 0.002909025177359581, 0.03260568901896477, 0.05134284123778343, 0.005703600589185953, -0.026281803846359253, 0.007673309184610844, 0.02509346976876259, -0.02919856272637844, 0.01969718188047409, -0.02570614032447338, 0.02024466171860695, 0.02097562700510025, -0.01112570520490408, 0.013723882846534252, -0.033665731549263, 0.014710516668856144, -0.029163852334022522, -0.0003162552020512521, 0.05269016698002815, -0.03306381776928902, 0.02598458155989647, -0.006830780766904354, -0.02879868447780609, -0.004251550883054733, 0.04440487548708916, -0.03318702057003975, -0.015794942155480385, 0.03428911790251732, 0.030985277146100998, -0.015381406992673874, 0.037366580218076706, 0.007127940654754639, -0.01293463259935379, -0.023935051634907722, -0.0005368823185563087, 0.06227725371718407, -0.03189125657081604, -0.03250185772776604, 0.01826648786664009, -0.03832586109638214, 0.03820929676294327, -0.02986675687134266, -0.0326673686504364, 0.030352849513292313, -0.032299626618623734, 0.012267544865608215, -0.026667671278119087, 0.0031245648860931396, -0.03922846540808678, -0.01376029197126627, 0.02052672766149044, 0.0016165069537237287, -0.022327229380607605, 0.023873716592788696, 0.014679843559861183, 0.043019283562898636, 0.010472286492586136, 0.04473407194018364, -0.016905447468161583, 0.03846454992890358, 0.0683290958404541, -0.04461370408535004, -0.03694189339876175, 0.017414087429642677, 0.0018692617304623127, -0.05455019697546959, 0.02375568263232708, -0.02672889456152916, -0.017691180109977722, -0.0008406764827668667, -0.029614094644784927, -0.006934046745300293, 0.04050591588020325, 0.008055073209106922, -0.0353250615298748, -0.013381756842136383, 0.0379432775080204, -0.07323183119297028, 0.041493818163871765, 0.013496133498847485, 0.0577409602701664, 0.0019526740070432425, -0.004164702724665403, -0.0319800078868866, -0.030684858560562134, -0.002129714237526059, -0.06336265802383423, 0.07481414079666138, -0.006136395037174225, -0.042561743408441544, -0.03752661496400833, -0.038168273866176605, -0.026954814791679382, 0.0004735591646749526, -0.019680602476000786, -0.03729111701250076, 0.029935184866189957, 0.023399733006954193, -0.0015829876065254211, 0.019200008362531662, -0.03471166640520096, -0.026627320796251297, 0.035540010780096054, 0.03427423536777496, -0.0029441637452691793, 0.04372866079211235, 0.03728177025914192, -0.054105665534734726, -0.006870876532047987, -0.03862754628062248, 0.050196342170238495, -0.009310275316238403, -0.032093245536088943, -0.0208390224725008, 0.024406999349594116, -0.01474577933549881, -0.05349211022257805, -0.013017235323786736, 0.03071349859237671, 0.0024746202398091555, -0.04488799348473549, -0.09958149492740631, -0.03615027666091919, -0.03678223863244057, -0.014448985457420349, -0.03925253450870514, 0.05091243237257004, 0.02476460672914982, -0.024916481226682663, 0.009551901370286942, -0.055821895599365234, 0.1573931872844696, 0.011277729645371437, 0.018946710973978043, -0.00872107595205307, 0.018489012494683266, 0.0561097115278244, 0.024403179064393044, 0.0004472846630960703, -0.016720589250326157, -0.034997113049030304, 0.03513520956039429, 0.002595930825918913, 0.012038524262607098, -0.000862022046931088, 0.04858715459704399, 0.05487499013543129, -0.021706419065594673, 0.01026848703622818, 0.0026615539100021124, -0.0695238709449768, -0.04117041826248169, 0.03396676480770111, 0.02649603970348835, -0.0149794090539217, 0.00016382869216613472, 0.0570903941988945, 0.01520568784326315, -0.050606850534677505, -0.020649578422307968, -0.006044731475412846, 0.018368106335401535, -0.01509083528071642, 0.04290635138750076, -0.02746771089732647, -0.046549759805202484, 0.05841151624917984, -0.013598602265119553, -0.031953852623701096, 0.009712745435535908, -0.014432049356400967, -0.014667876996099949, 0.01903351955115795, 0.00217564613558352, -0.04051785171031952, 0.02010769210755825, 0.04583187773823738, -0.0669960156083107, 0.017058691009879112, -0.0018410615157335997, -0.03185068070888519, 0.06284216791391373, -0.034035488963127136, 0.03184012323617935, -0.01487557590007782, -0.04875659570097923, 0.029433753341436386, 0.02983267977833748, -0.012603804469108582, -0.030023397877812386, -0.014679349027574062, 0.034065380692481995, 0.004990929272025824, 0.0014487352455034852, 0.018564200028777122, -0.01729266159236431, 0.01841123215854168, 0.03405225649476051, -0.02158341556787491, -0.032304808497428894, -0.033253997564315796, -0.06171555444598198, -0.011046536266803741, -0.010586291551589966, -0.04820626601576805, 0.043146755546331406, 0.03183014690876007, 0.0010265521705150604, 0.03035900741815567, 0.01127583533525467, -0.03888298198580742, -0.02999294176697731, -0.03444774076342583, 0.004523602779954672, -0.0034979544579982758, 0.026438670232892036, 0.03339148685336113, -0.04744483530521393, -0.029215293005108833, -0.019778912886977196, 0.039878446608781815, 0.03433499112725258, 0.017792806029319763, -0.011609734036028385, -0.029881106689572334, -0.0018886274192482233 ]
'I don't think the residents of Mississauga think I'm whining," Crombie tells Premier Mississauga | Community | Latest News | Politics | Published January 12, 2023 at 11:10 am Mayor Bonnie Crombie says she's confident Mississauga residents believe she's standing up for them and not "whining" when she voices opposition to the provincial government's controversial new housing legislation. In an Instagram interview with insauga.com publisher Khaled Iwamura this week, the mayor of Canada's seventh-largest city dismissed Premier Doug Ford's earlier publicly-offered suggestion that she and other municipal leaders "stop whining" and "get on board" with Bill 23. Crombie and other mayors across Ontario have said that the new housing law that eliminates and freezes some developer fees to municipalities will force them to raise property taxes in order to pay for infrastructure that supports new housing. "I don't think the residents of Mississauga think I'm whining. I think they believe I'm standing up for their interests. In fact, I'm doing my job by revealing issues that have a negative impact on our city and that's my job to do that," said Crombie, who's also incoming chair of the Ontario Big City Mayors. "Much of the legislation that is being proposed will have a significant detrimental effect to the finances of municipalities…so it's not just Mississauga, it's all of us at risk." In voicing her and Mississauga city council's opposition to the housing bill and its anticipated impact, Crombie said she's speaking on behalf of Mississauga taxpayers, "because it's their taxes that could increase. Massive 3,000 unit development proposed in Mississauga, community meeting this month Peel board approves first anti-Islamophobia education strategy in Canada for Mississauga and Brampton schools Mississauga spreads the word that bar patios are hot spots when warm weather arrives "I think Mississauga residents appreciate when I stand up and speak out when there is legislation being proposed that would detrimentally impact our city, our quality of life and particularly our property tax rates." A post shared by insauga – Mississauga (@insauga)
[ -0.017792658880352974, 0.01125516276806593, -0.03967859596014023, -0.006387307308614254, 0.00033751220325939357, -0.01979617215692997, 0.003912632819265127, 0.040300507098436356, 0.010815785266458988, 0.03641654551029205, 0.008630501106381416, 0.003956397529691458, 0.0037854642141610384, -0.04715608432888985, -0.017786318436264992, 0.0009535498102195561, -0.01619553565979004, -0.032002273947000504, -0.012166177853941917, 0.031267136335372925, -0.0050603486597537994, 0.007546018343418837, -0.051698822528123856, -0.03127870336174965, -0.03650617226958275, 0.04549001529812813, 0.03637728467583656, -0.03423653915524483, 0.05021002143621445, 0.019403697922825813, -0.032862212508916855, -0.04267793148756027, 0.0332314632833004, -0.030539199709892273, -0.01585470698773861, -0.03874003142118454, 0.037713631987571716, -0.027533289045095444, -0.002509098034352064, -0.028612280264496803, 0.010596109554171562, -0.016779178753495216, 0.05035232752561569, -0.046907924115657806, -0.036038197576999664, -0.0044089071452617645, -0.025486093014478683, -0.020265966653823853, 0.02523179166018963, -0.03915296867489815, -0.005380285903811455, 0.00018891488434746861, -0.00763662438839674, 0.007937919348478317, 0.006299685686826706, 0.01890650764107704, -0.00702741090208292, -0.008989561349153519, -0.014839018695056438, 0.0328056775033474, 0.005112809129059315, 0.005586366169154644, -0.005088888108730316, -0.049660734832286835, 0.020244356244802475, -0.022001175209879875, -0.01787802204489708, -0.038700491189956665, 0.02851034142076969, -0.02943311631679535, 0.03322214633226395, 0.007705075666308403, -0.026989255100488663, -0.02657356671988964, 0.009753305464982986, 0.022923052310943604, -0.010966521687805653, -0.023003961890935898, -0.021394455805420876, 0.031390827149152756, 0.00038225806201808155, 0.0567585751414299, 0.004669200628995895, 0.013077635318040848, -0.05555519834160805, -0.03107016533613205, -0.015033109113574028, 0.02217746339738369, -0.002478706417605281, 0.02337145060300827, 0.021550068631768227, 0.07391760498285294, 0.010942543856799603, 0.017528662458062172, 0.05031019076704979, 0.0446302630007267, -0.030642585828900337, 0.028489897027611732, 0.018244361504912376, -0.009821888990700245, 0.018774738535284996, 0.03105803020298481, 0.05631718784570694, 0.0541359968483448, -0.0626775473356247, -0.012272055260837078, -0.009146622382104397, -0.011973831802606583, 0.021112700924277306, -0.03987635299563408, -0.012976203113794327, -0.029806599020957947, 0.041446711868047714, -0.010008307173848152, 0.0031904999632388353, 0.028566977009177208, 0.001338551752269268, 0.06472992897033691, -0.045763686299324036, 0.02039158158004284, 0.04028867930173874, -0.0069419462233781815, 0.03826745226979256, -0.04525093361735344, -0.007109721191227436, -0.009466064162552357, -0.015958325937390327, 0.06886623799800873, -0.0364413820207119, -0.01068534143269062, 0.008228950202465057, -0.03329190984368324, 0.022151775658130646, 0.018981153145432472, 0.007542835082858801, 0.003337403293699026, 0.019828172400593758, 0.05765063315629959, 0.024912990629673004, -0.020903535187244415, 0.05342233180999756, 0.043309539556503296, 0.019857289269566536, 0.06380894780158997, -0.003933439962565899, 0.028060227632522583, -0.00208532577380538, -0.027034034952521324, -0.0416618250310421, 0.024055106565356255, -0.04034222289919853, 0.029132189229130745, 0.0004576118662953377, 0.018520405516028404, -0.00625497754663229, -0.0051497784443199635, -0.015717335045337677, 0.01693476364016533, 0.02015552669763565, 0.02444450929760933, -0.010879362933337688, 0.04540911316871643, -0.005321532487869263, 0.029760388657450676, -0.0436658076941967, 0.004320127889513969, -0.03056267462670803, -0.002228153171017766, 0.009723366238176823, -0.013764486648142338, 0.02373550459742546, -0.014766584150493145, -0.03783424571156502, 0.01898406818509102, 0.038827504962682724, 0.0677066445350647, 0.022985920310020447, 0.013759172521531582, 0.0416315533220768, 0.010370040312409401, -0.016355395317077637, 0.007509537506848574, 0.012422551400959492, 0.05823832005262375, 0.02584988623857498, -0.0032277326099574566, 0.011525697074830532, -0.04766254872083664, -0.021167747676372528, -0.0331965908408165, 0.03364713117480278, -0.003363058203831315, -0.03513569012284279, -0.0017970576882362366, 0.01417921856045723, 0.006425030529499054, -0.00883749220520258, -0.01925017684698105, -0.008380438201129436, -0.04918267950415611, -0.025080636143684387, 0.028814641758799553, -0.042566340416669846, 0.04255535453557968, -0.006388932932168245, -0.032823093235492706, 0.01949586719274521, 0.045433975756168365, -0.06503864377737045, -0.006378728896379471, 0.02864343300461769, -0.00025180261582136154, -0.05964575707912445, -0.002805961761623621, 0.041095755994319916, -0.005225179251283407, -0.010318879969418049, 0.028410429134964943, 0.01824060082435608, -0.013417513109743595, 0.023564565926790237, 0.001333545777015388, 0.04151305928826332, 0.0709344893693924, 0.0062586115673184395, 0.009849590249359608, 0.018388444557785988, 0.04896574094891548, -0.03996170684695244, -0.02099732868373394, 0.014118295162916183, 0.04658783972263336, 0.025485528632998466, 0.04913007840514183, 0.043660689145326614, -0.00542096933349967, 0.05546538159251213, 0.06193980202078819, 0.008729498833417892, 0.05280694365501404, -0.031932421028614044, 0.04470730945467949, 0.0481293611228466, 0.043905068188905716, -0.03588789701461792, 0.041127536445856094, -0.011597027070820332, -0.015426999889314175, -0.014029847458004951, 0.029187794774770737, -0.021537616848945618, 0.030893197283148766, 0.03960590809583664, 0.037459734827280045, -0.03956425562500954, 0.03038436360657215, 0.036640338599681854, 0.059819966554641724, -0.0435931570827961, -0.02226931042969227, 0.012945170514285564, 0.015318894758820534, -0.005402109585702419, -0.024942247197031975, 0.025871744379401207, 0.02211819216609001, -0.02490135096013546, 0.03639652207493782, -0.015390106476843357, -0.03820408135652542, -0.032117974013090134, -0.012108049355447292, -0.04147564619779587, -0.011218344792723656, -0.06572926044464111, -0.010808248072862625, 0.05612431839108467, -0.038488421589136124, 0.020237887278199196, -0.00030386538128368556, -0.030642693862318993, -0.03658737242221832, -0.0018143132328987122, 0.04474006965756416, 0.05109649524092674, 0.05281812697649002, -0.04234074056148529, 0.052492838352918625, -0.00043408991768956184, 0.008498840034008026, -0.019968515262007713, -0.01500030979514122, -0.020963212475180626, 0.015427771955728531, 0.04535399377346039, -0.022938741371035576, 0.011507032439112663, -0.00873104203492403, -0.026775792241096497, -0.03586389496922493, -0.019912121817469597, 0.020967558026313782, 0.0033251044806092978, 0.01011166162788868, -0.023751309141516685, 0.00900686252862215, 0.03409960865974426, -0.0004276874242350459, 0.03680168092250824, 0.06812180578708649, -0.024103371426463127, 0.01001064758747816, 0.004748617298901081, 0.03322723135352135, -0.06313826143741608, 0.02981770597398281, 0.06899351626634598, -0.0021113958209753036, -0.016763055697083473, -0.021747030317783356, -0.014021122828125954, 0.0012846968602389097, 0.021173875778913498, -0.019081998616456985, -0.043227098882198334, 0.03757521137595177, 0.04207189753651619, -0.05563030391931534, 0.006157049909234047, -0.0555892176926136, 0.001464547705836594, -0.06804025918245316, -0.06401397287845612, 0.019938085228204727, 0.04283963516354561, 0.030146034434437752, -0.00229225168004632, -0.04607759043574333, -0.028699835762381554, -0.029793566092848778, 0.03298868238925934, -0.020596347749233246, 0.020415211096405983, 0.004320379346609116, -0.01664355956017971, 0.024679547175765038, 0.008002692833542824, -0.027879880741238594, -0.033276814967393875, 0.013914769515395164, -0.004031186457723379, 0.019047971814870834, 0.02517729625105858, 0.01988745853304863, 0.026977689936757088, 0.048508420586586, -0.03053821064531803, 0.0037294558715075254, 0.022410361096262932, -0.01400922890752554, 0.047213636338710785, 0.013898961246013641, -0.01595795713365078, -0.00021048649796284735, -0.02354181930422783, -0.05817287042737007, 0.016489796340465546, -0.004329477436840534, 0.05324508994817734, -0.04297969490289688, 0.054857440292835236, -0.004672470036894083, -0.040671203285455704, 0.06309203803539276, -0.04821204021573067, -0.02371269464492798, 0.058406371623277664, -0.023935625329613686, 0.03752097859978676, -0.013100319541990757, 0.04962775111198425, -0.02596360631287098, 0.019886599853634834, 0.0407903678715229, 0.03803342580795288, 0.011198298074305058, -0.018921345472335815, -0.03736119717359543, 0.023195745423436165, -0.029109515249729156, -0.032427430152893066, -0.02296261116862297, -0.01301840040832758, -0.01971072517335415, -0.05482133477926254, -0.04778106138110161, 0.03094497323036194, 0.027171654626727104, 0.02096022665500641, -0.00990518182516098, 0.043680742383003235, -0.005727776791900396, 0.005973230581730604, 0.05548747628927231, -0.014014740474522114, 0.001934636035002768, -0.049354586750268936, 0.03256784752011299, 0.000894442549906671, -0.021513205021619797, -0.03461332991719246, -0.03998086228966713, -0.016378389671444893, 0.03835637867450714, 0.0003999608743470162, -0.032557543367147446, -0.042718563228845596, 0.0336095467209816, -0.008039495907723904, 0.022693317383527756, -0.06158173084259033, -0.02357565052807331, 0.016319191083312035, 0.01588784158229828, 0.023265810683369637, -0.054554857313632965, 0.03707069903612137, -0.05788721516728401, 0.08778425306081772, 0.05026891082525253, 0.005612660199403763, -0.05367586389183998, 0.0012715556658804417, -0.03458771854639053, -0.029879573732614517, 0.0033947029151022434, 0.0235990509390831, -0.025058303028345108, -0.015284857712686062, -0.06604436784982681, 0.03089391253888607, 0.03138970583677292, 0.008705212734639645, -0.02039235457777977, -0.01062414888292551, 0.004324481822550297, -0.00694470526650548, 0.0319482795894146, -0.034297022968530655, -0.043274953961372375, 0.04235769063234329, -0.05783720314502716, -0.013394745998084545, 0.006705305073410273, -0.03490116074681282, -0.018873179331421852, 0.013599258847534657, 0.01653124764561653, 0.040714412927627563, -0.03208867460489273, 0.025784708559513092, -0.01902763918042183, 0.02017410844564438, -0.04812607541680336, -0.04509219154715538, 0.06631658226251602, 0.018747415393590927, -0.024578427895903587, 0.029063306748867035, 0.054469600319862366, -0.006368737202137709, 0.012596765533089638, 0.014551660045981407, -0.04062299057841301, 0.019976111128926277, -0.030153540894389153, 0.014241846278309822, -0.00851992517709732, -0.043126825243234634, 0.02632797881960869, -0.03130863606929779, 0.05532009154558182, -0.0010297640692442656, 0.012931610457599163, -0.044629599899053574, -0.05554788559675217, -0.018581341952085495, -0.007317453622817993, -0.014052851125597954, 0.03555068373680115, 0.021068427711725235, -0.001532403752207756, -0.026587534695863724, -0.025416122749447823, 0.003683492075651884, 0.004815586842596531, -0.007542974781244993, -0.019664671272039413, 0.008217209950089455, -0.004068711306899786, 0.03333323076367378, -0.00650749308988452, -0.045870453119277954, 0.012873660773038864, 0.0009008091874420643, -0.043546732515096664, -0.06655025482177734, 0.0018625444499775767, -0.022049477323889732, 0.029165389016270638, -0.03160465508699417, -0.011036076582968235, 0.006296415813267231, 0.03420837223529816, 0.013800903223454952, 0.02247273549437523, 0.020626943558454514, -0.005285822320729494, 0.0017886328278109431, 0.03557121008634567, 0.036523666232824326, -0.056885551661252975, -0.03488092124462128, 0.017413485795259476, -0.007264508865773678, 0.050833556801080704, -0.008578983135521412, -0.02368614450097084, -0.02810424380004406, -0.016437985002994537, -0.011244123801589012, -0.037417348474264145, -0.004445538390427828, -0.032672218978405, -0.024291174486279488, -0.018595926463603973, 0.056384626775979996, 0.03239677846431732, 0.014923050999641418, 0.03181371092796326, -0.01567765139043331, 0.014622405171394348, -0.035792477428913116, -0.021220102906227112, -0.01027014572173357, -0.011815905570983887, -0.025984391570091248, 0.0492527075111866, 0.018250785768032074, 0.043890587985515594, -0.020155703648924828, 0.025614803656935692, -0.012446140870451927, -0.03340437635779381, -0.049776267260313034, -0.05158807709813118, -0.027061980217695236, -0.00647148210555315, 0.01892801560461521, 0.001154420431703329, -0.041855935007333755, 0.06333347409963608, 0.004628282971680164, -0.009490865282714367, -0.032449670135974884, -0.030722301453351974, -0.013347395695745945, -0.030234329402446747, 0.043679796159267426, -0.033633287996053696, 0.016628235578536987, -0.035975381731987, 0.020952776074409485, 0.030189918354153633, -0.026367096230387688, -0.024068953469395638, -0.026576902717351913, -0.06548337638378143, -0.04842715710401535, 0.052270881831645966, -0.050675515085458755, -0.031903889030218124, -0.01887093484401703, 0.010511192493140697, 0.06000818684697151, -0.01596471294760704, 0.04155077040195465, 0.04649251699447632, -0.015445712953805923, -0.020295849069952965, -0.019015587866306305, 0.04596758633852005, 0.03418793901801109, 0.010298979468643665, -0.014855843037366867, -0.01828361488878727, -0.049858830869197845, 0.0063173407688736916, -0.06123286858201027, -0.029406988993287086, -0.053971871733665466, -0.03725966066122055, 0.06893129646778107, -0.02982145920395851, 0.012669693678617477, -0.011259319260716438, -0.06638282537460327, -0.06638012081384659, 0.046904679387807846, -0.0066398996859788895, 0.023818926885724068, 0.05469883605837822, -0.000808419834356755, -0.004745404236018658, 0.008974156342446804, 0.037559159100055695, -0.009369347244501114, -0.06594603508710861, 0.05342337489128113, -0.0240962915122509, -0.027959471568465233, 0.04245014116168022, 0.060791775584220886, -0.03246908634901047, -0.05353739485144615, -0.012657767161726952, 0.029363632202148438, 0.0007205745787359774, -0.03485095500946045, 0.019339770078659058, -0.011746694333851337, -0.01333476323634386, -0.008052460849285126, 0.04592526704072952, 0.01540687121450901, 0.05208295211195946, -0.008998464792966843, 0.033139102160930634, -0.010259205475449562, -0.014753199182450771, -0.026174547150731087, -0.002203070791438222, -0.023009007796645164, -0.02943149395287037, 0.010097884573042393, -0.004457967355847359, -0.012431034818291664, 0.03413263335824013, -0.03528323769569397, 0.0036232450511306524, 0.009253223426640034, 0.003019527764990926, 0.033642325550317764, 0.0011618343414738774, 0.004025966860353947, 0.023081699386239052, -0.027837645262479782, -0.03689588978886604, -0.03568144887685776, 0.0013234223006293178, 0.05156095698475838, 0.02903478592634201, -0.022599710151553154, 0.0017935633659362793, 0.03552927449345589, -0.006642146036028862, 0.005296223796904087, -0.029944756999611855, -0.03603203967213631, -0.0320240817964077, -0.047229133546352386, -0.021958116441965103, -0.0053330459631979465, -0.004021497443318367, 0.011545904912054539, 0.022549927234649658, -0.0183233842253685, -0.0242894496768713, -0.002018021885305643, -0.03257858380675316, -0.011951001361012459, -0.009170366451144218, 0.0030475088860839605, -0.03073364496231079, -0.03175544738769531, -0.07992246001958847, -0.015425020828843117, -0.004761501215398312, -0.012998444028198719, -0.01734476163983345, 0.02893196791410446, -0.009225054644048214, 0.04881975054740906, 0.0064546046778559685, 0.00657719187438488, -0.018440084531903267, -0.04409235343337059, 0.0053621805272996426, 0.05834180861711502, 0.0011677138973027468, 0.015650587156414986, 0.03444873169064522, 0.011691455729305744, 0.030758440494537354, -0.03302173689007759, -0.017602112144231796, 0.0090292664244771, 0.008187005296349525, -0.0010723966406658292, 0.009187821298837662, -0.023963047191500664, -0.030810808762907982, -0.003955759573727846, -0.029707206413149834, 0.03641856089234352, -0.008056976832449436, 0.03242672607302666, 0.012656738981604576, 0.003319893032312393, 0.005204732529819012, 0.03514266014099121, -0.022473620250821114, 0.00816790759563446, 0.004218608606606722, 0.05426698178052902, -0.026567010208964348, -0.006074166391044855, 0.0020853052847087383, 0.021191980689764023, 0.06249033659696579, -0.02047792077064514, 0.009310583584010601, 0.06082744896411896, -0.03982444480061531, 0.037381649017333984, -0.03236602246761322, -0.03498325124382973, -0.030519850552082062, 0.0008397158235311508, 0.019236411899328232, 0.0263931006193161, 0.015842733904719353, -0.012314374558627605, 0.022831620648503304, -0.04434151202440262, -0.05152177810668945, 0.025106877088546753, -0.06344108283519745, -0.031202206388115883, 0.030589262023568153, -0.03725327178835869, -0.027512293308973312, -0.021366005763411522, -0.026327963918447495, 0.0023724024649709463, -0.025446418672800064, -0.01555537898093462, -0.01897239498794079, 0.0557871051132679, 0.01230463758111, 0.024208417162299156, -0.027500169351696968, 0.008350267075002193, 0.04477241262793541, 0.040553972125053406, -0.048546452075242996, -0.031551066786050797, 0.037197258323431015, 0.02616693079471588, 0.01768944412469864, 0.013617920689284801, 0.0026400114875286818, 0.006171416956931353, -0.015090190805494785, 0.018723519518971443, -0.00510340416803956, -0.00797332264482975, 0.00880993902683258, 0.027952827513217926, -0.007032407913357019, 0.008747822605073452, -0.032141294330358505, 0.022707391530275345, -0.011599238961935043, -0.06498919427394867, -0.040311720222234726, 0.022083044052124023, 0.03262796252965927, -0.034488946199417114, 0.04467622563242912, 0.01104951836168766, 0.05326365679502487, -0.018188761547207832, 0.01657346822321415, -0.015034008771181107, 0.04817764833569527, 0.03163773566484451, 0.017419002950191498, 0.011689323000609875, 0.039122242480516434, 0.06391864269971848, 0.019053082913160324, -0.01732083596289158, 0.024489691480994225, 0.011271246708929539, -0.022149937227368355, -0.01486154180020094, -0.029182860627770424, 0.0021140233147889376, 0.04326924309134483, -0.040696173906326294, -0.022322431206703186, -0.02688843384385109, -0.0025891796685755253, -0.002879635663703084, -0.0390460304915905, 0.04142722114920616, 0.0005686670774593949, -0.003399859881028533, -0.01049374882131815, -0.012541407719254494, 0.015592972747981548, 0.006963737308979034, 0.028614923357963562, 0.008542017079889774, 0.04162269085645676, 0.04398771747946739, 0.008195078000426292, 0.04114013537764549, 0.02730902098119259, 0.01666027307510376, -0.026415850967168808, 0.013081271201372147, 0.044882677495479584, -0.0231426190584898, -0.062303464859724045, -0.0033878700342029333, -0.015075372532010078, 0.038064029067754745, -0.04179634526371956, -0.0008408607682213187, 0.02741202525794506, -0.04328129440546036, -0.005975625477731228, -0.06349356472492218, 0.04507434740662575, -0.06059708818793297, -0.013733507134020329, 0.02439807914197445, 0.002119027078151703, -0.027590448036789894, 0.07370739430189133, 0.01795230619609356, 0.02121645398437977, 0.00396047905087471, 0.028568588197231293, 0.004191206302493811, 0.04921197518706322, 0.03978518769145012, -0.031645093113183975, -0.023753542453050613, 0.05995701253414154, -0.016465352848172188, -0.03884581848978996, -0.02148335613310337, -0.03467284515500069, -0.019556144252419472, -0.022925958037376404, -0.007041976321488619, -0.004927989561110735, 0.03859788924455643, -0.006842829752713442, -0.04513965919613838, 0.0010050057899206877, 0.04458935558795929, -0.03351591154932976, 0.010033495724201202, 0.016388416290283203, 0.02659837156534195, 0.003196975914761424, -0.006409482564777136, -0.023540208116173744, -0.028032230213284492, 0.00474252924323082, -0.030830077826976776, 0.0571257546544075, -0.0010170770110562444, -0.03657492995262146, -0.0069515579380095005, -0.05455714836716652, -0.009920144453644753, 0.008780376985669136, -0.04597396403551102, -0.07259418815374374, 0.026916589587926865, 0.02870185486972332, -0.005837536416947842, -0.01514239888638258, -0.04213733971118927, -0.0076959095895290375, 0.038311783224344254, 0.055791620165109634, -0.014535002410411835, 0.0189256202429533, 0.01173183973878622, -0.024054868146777153, 0.022186817601323128, -0.011828187853097916, 0.0484294667840004, 0.00912769977003336, -0.03313177824020386, -0.02274209074676037, 0.025385679677128792, -0.020745567977428436, -0.06335791200399399, 0.007114933803677559, -0.000999389449134469, 0.0006816230597905815, -0.04108314961194992, -0.05094262957572937, -0.009608172811567783, -0.022643784061074257, -0.02765604294836521, -0.02559347078204155, 0.014154983684420586, 0.004042346030473709, 0.0021327713038772345, -0.01502695307135582, -0.05970451235771179, 0.14680449664592743, 0.01906726509332657, 0.016929861158132553, -0.004250536672770977, 0.05121855065226555, 0.03144944831728935, 0.014051306992769241, 0.0018367416923865676, -0.012022553011775017, -0.04052133858203888, 0.02059577777981758, -0.03720081225037575, 0.023363396525382996, 0.01870337501168251, 0.007929077371954918, 0.052680157124996185, -0.033445924520492554, 0.0076111857779324055, 0.03232019022107124, -0.024808567017316818, -0.05381081998348236, 0.0015436062822118402, -0.022866196930408478, 0.03598804399371147, -0.0032188985496759415, 0.013830950483679771, 0.01226680725812912, -0.051627036184072495, -0.011994664557278156, -0.012240896001458168, 0.02194257825613022, -0.015584471635520458, 0.03959796577692032, -0.0209357887506485, -0.0599118210375309, 0.05474000424146652, 0.009151848964393139, -0.036013729870319366, 0.00758174154907465, 0.03595229238271713, -0.012692668475210667, -0.0024873644579201937, 0.04501364752650261, -0.013752398081123829, 0.023540060967206955, 0.03312942385673523, -0.0440417155623436, 0.0310403723269701, 0.004441993311047554, -0.02479151077568531, 0.04699959605932236, 0.0053894710727036, 0.05061511695384979, 0.016147606074810028, -0.025467010214924812, 0.008128253743052483, -0.006784709636121988, -0.026748083531856537, -0.023833809420466423, -0.033372167497873306, 0.041948504745960236, -0.011357343755662441, 0.005356497596949339, 0.008728604763746262, -0.05602634325623512, -0.009574034251272678, 0.021376488730311394, 0.008658507838845253, -0.013924222439527512, -0.009933970868587494, -0.0012587442761287093, 0.007816208526492119, -0.001647254335694015, -0.041998546570539474, 0.02212384156882763, 0.027213260531425476, -0.021421248093247414, 0.033989254385232925, 0.022211095318198204, -0.020115988329052925, -0.019626935943961143, -0.03750961273908615, 0.017373403534293175, -0.019907843321561813, 0.032937463372945786, 0.002595628146082163, -0.04693668708205223, -0.026571115478873253, -0.0008280755719169974, 0.019770817831158638, 0.04006137698888779, 0.04507457837462425, -0.032833367586135864, -0.04156086593866348, -0.010199477896094322 ]
Replacing Rasputin: A Subtext of the Election Contest for San Diego City Attorney by Doug Porter on April 19, 2016 · 1 comment in Election, History, Labor, Media, Politics, San Diego By Doug Porter Termed-out City Attorney Jan Goldsmith felt free to drop the pretense of serving all the public last week during his introduction of Texas Senator Ted Cruz at a campaign rally in Mission Valley. "We believe in jobs, freedom and security. You know something? The Democrats don't believe in these values," Goldsmith said. So much for my theory that he wasn't an ideologue. There are four Democrats and one Republican running for the City Attorney slot. I emailed them all late last week, asking their reaction to Goldsmith's comments. The responses are listed in the order I received them. Democrat Bryan Pease, activist attorney who Feels the Bern: Funny–if you switch the word "Democrats" with "Republicans" in his quote, it would be objectively accurate based on measurable criteria and outcomes of their policies. Democrat Gil Cabrera, attorney & former chairman of the San Diego Ethics Commission (Not reappointed by former Mayor Jerry Sanders): "I'm disappointed that Mr. Goldsmith would make such highly partisan statements — Democrats obviously believe in and fight for jobs, freedom and security. More importantly though, I strongly believe it is best for the City Attorney to avoid partisan statements given his or her critical role of advising both sides of the aisle at City Hall." Democrat Mara Elliot, deputy City Attorney: "I'm proud to be a Democrat and the choice of Democratic leaders like Council President Pro Tem Marti Emerald and former State Senators Christine Kehoe and Lucy Killea. I've spent my career improving city services, strengthening our schools, and holding polluters and contractors accountable. As City Attorney, I'll work every day to deliver results on the issues that matter to ordinary people in all San Diego neighborhoods." Republican Robert Hickey, a prosecutor with the county District Attorney's Office: "Personally, I'm focused on finding ways for the Office of City Attorney to better serve our community, like improving our response to domestic violence" Democrat Rafael Castellanos, attorney & Port Commissioner: San Diego's City Attorney Jan Goldsmith was wrong on two counts when he introduced Ted Cruz in San Diego last week by saying that Democrats don't believe in jobs, freedom and security. First, he harmed the Office of City Attorney and by extension our City by engaging in partisan politics of the worst kind – the kind peddled by national politicians and media pundits who care only about exploiting our differences for personal gain and power. Second, he was just flat wrong on the substance. It's utter nonsense to categorically state that Democrats don't believe in jobs, freedom and security. Jan's comments reflect the kind of politics that San Diego leaders do not easily tolerate and for that I have always been grateful. His enthusiastic embrace of such lame rhetoric is therefore especially disappointing. And I'm disappointed not just because I am a proud San Diegan who believes that our city is above the moronic national partisan debate that crowds the airwaves without mercy, but because I am also a candidate to become our next City Attorney. On the campaign trail I regularly assure skeptical and cynical San Diegans that if elected City Attorney I will represent the City without a political agenda, and that professional integrity and zealous advocacy of what is in the best interest of the taxpayer is my number one concern. This of course is the same thing that Jan Goldsmith has been telling all of us for years, yet the political fangs he just bared show us something different. No wonder people can't stand politics and politicians. As far as jobs, freedom, and security go, tens of millions of Democrats have throughout this country's history built businesses, created jobs, worked jobs, created profits for businesses by working those jobs, served in our armed forces, and otherwise ensured the freedom and security of all Americans by contributing to and defending our way of life – a way of life that is envied and dreamt about around the world and one that people risk their lives and families to have a shot at one day. The American Dream. Thanks Jan. Just when I thought that our local San Diego leadership was, for all its challenges, at least better than the national circus invading every TV and smartphone screen this election cycle, you somehow managed to prove me wrong. San Diego will, however, always prove you wrong. Having let the cat out of the bag, it seems like a good time to take a look back at how those Goldsmith values –apparently exclusive to Republicans– have manifested themselves over the past eight years. Think of this as a list of things you don't really want in a City Attorney, realizing there are more such incidents not reported here. The Man Behind the Screen Grigory Rasputin wielded a disproportionate amount of power in the waning years of Tsarist Russia. His influence extended to matters large and small as an advisor to the crown. He was the central figure in Petersburg's scandal news and at the same time ruled over the Tsar in some strange way. Rasputin's power derived from his devotion to sex and relationships with the women of the aristocracy. Goldsmith's power derives from his devotion to capital and his relationships with the local plutocracy. He was also fortunate enough to be the right man in the right place at the right time. The City Attorney's office became a bigger player in the last decade due to two factors: the transition by San Diego into a strong-mayor form of governance, and former CA Mike Aguirre's "wild-card" tenure from 2004-2008. Aguire's notion that his job was to represent what he perceived as the best interests of the electorate clashed with San Diego's vested interests. The local daily took up the cause of "Mike is out of control" and this assertion soon became 'truth.' Goldsmith, who at the time was a judge and whose background included terms as Mayor of Poway and as a State Assemblyman, stepped down from the bench to run against Aguirre. With the backing of local Republicans (Democrats supported Scott Peters in the primary), he ended up winning a run-off against Aguirre in the November 2008 general election. Thou Shall Not… My first awareness of Goldsmith came in 2010, when his office decided to threaten the Linkery restaurant (my employer at the time) with fines and jail for charging a fixed service charge instead of tipping. The idea of not tipping and paying a better wage was, at the time, pretty radical. Now, with movements for higher minimum wages winning in cities coast-to-coast, it does seem so out there. But you can perhaps see why a certain industry that contributes heavily to political contests in San Diego might not like the idea. The threat was a stupid idea, right up there with his prosecution of Jeff Olson for daring to exercise his First Amendment Rights in sidewalk chalk outside Bank of America branches. Chalking against abortion: Ok. Against BofA: Not so much Both efforts failed, though Olson had to go up against Superior Court Judge Howard Shore, who prohibited the defense attorney from mentioning the First Amendment, free speech, freedom of expression or political speech in his arguments. The jury saw the truth, anyway. Prior incidents of chalked Nazi graffiti around McKinley Elementary School were brought to the attention of the City Attorney's office, but not prosecuted because they considered it protected free speech under the First Amendment. Anti-abortion protesters chalking up the sidewalk in front of a Planned Parenthood office and publicizing it on Facebook also got a pass. A Tax/Not-A-Tax for Tourism It's a "certified truth" in some activist circles around San Diego that Goldsmith and others plotted to undermine the agenda of the Filner administration before the inauguration took place. What is known for sure is that Goldsmith decided that the city's hoteliers were more worthy of representation than its chief elected official. The falderal around the fate of the Tourism Occupancy Tax/Not-a-Tax/It's-a-Fee continues to haunt San Diego to this day. Bob Filner didn't want to distribute funding he believed wasn't legal. The impending implosion of that program at the hands of the courts should come later this year, leaving taxpayers on the hook (monies that could be used on potholes has been set aside for this possibility) and hoteliers with a dry well for advertising dollars. Two Truths (At the Same Time) He's almost, but not quite, gone…. Filner was a disaster for the local Democratic party that continues to haunt local politics to this day. Having said that two things are true: Bob Filner was screwed up & treated women like they weren't human beings There was an active effort to neuter him from Day One, and Goldsmith was part of that effort. Here's Reader columnist Don Bauder: Long before any sexual harassment allegations surfaced, Goldsmith and Filner sparred publicly over several issues. To curry favor, Goldsmith turned to the media. He communicated with reporters on his private email account. His office produced transcripts from closed-session meetings in order to show Filner's erratic behavior and mistreatment of Goldsmith's assistant city attorney at the time, Andrew Jones. and (different article)… San Diegans have a misconception that progressives Marco Gonzalez, Cory Briggs, and Donna Frye launched the movement to oust Mayor Filner for his treatment of women. Right after the negotiations that led to Filner's decision to resign, on August 29, city attorney Jan Goldsmith, bursting with pride and self-gratification that he had gotten rid of his enemy, told a local TV station (KUSI) that he had been working on this ouster foreight months. He said he went the forced-resignation route because recalls require the gathering of so many signatures in just a short period of time. Thus, the city attorney worked for eight months in an ouster did that not permit the mayor due process. He said he knew on January 2 that Filner had to go, and on February really began strategizing in earnest. His office hired a psychologist. It certainly appears that during those eight months, Goldsmith — who is closely allied with the downtown corporate welfare crowd — settled on sexual harassment as the vehicle for forcing the mayor out. Slut Shaming Writ Large The lawsuits against the City of San Diego following revelations of sexual misconduct by former police officer Anthony Arevalos and others provided insight into the importance of Goldsmith's role as protector of the status quo. Much of this information came to light thanks to the perseverance of victim Jane Doe, who refused to settle out of court with the City of San Diego. City Attorney Jan Goldsmith waged a media campaign seeking to deflect her demands for a court-empowered monitor of SDPD practices, trying to paint the victim as a gold digger. Here's an excerpt of what we learned thanks to Ms. Doe's perseverance, (not for the faint of heart), from a 10 News story: Lawyers for Arevalos' 13th victim, who is only known as Jane Doe, address a 1997 incident where Arevalos detained a mentally unstable woman and took pictures as she performed sex acts on herself with his police baton. Arevalos' former partner alerted police supervisors of the incident. However, court records show it was never reported to internal affairs. Arevalos would go on to assault 13 women while on duty until his conviction in 2011. "This all could have been stopped years ago," Arevalos' former partner Francisco Torres said under oath in 2012. "He has his Polaroid out and when I got there the female was in the backseat again naked with her handcuffs in front of her and she had the baton." As a reward for her intransigence, Goldsmith's office hired a private detective to follow Ms Doe around for a month. From a CBS8 story: They're also accusing the city attorney of misconduct by hiring a private investigator to follow and secretly film Doe for a month in an effort to attack her credibility. "Their person that they had that they knew was a sexual predator, they chose not to surveil. But go ahead and surveil the victim so they can find something maybe to smear her," attorney Browne Greene said. On Tuesday, City Attorney Jan Goldsmith defended the surveillance as standard practice in preparing for a trial. A Helping Hand to Industry People in Barrio Logan worked long and hard to craft a community plan. Companies with facilities in the area objected to its provisions, agreed with Councilman David Alvarez to a compromise and then backed out. They took their concerns to voters via a city-wide referendum to overturn the plan. Their tactics in selling this referendum amounted to a deliberate and well-documented subversion of the democratic process by corporate interests. It was about lying, fraud and deceit. The City Attorney's office invoked the ghost of George Orwell in refusing to intervene, with Goldsmith penning a UT op-ed: "Although our office will always defend council actions against legal attack, we won't undermine direct democracy" People in La Jolla and Rancho Bernardo, swayed by demonstrably untrue claims about job loss and the Navy's presence moving elsewhere, voted to overturn the community plan. I could go on, but what's the point? I should note that's it's probably unfair to say that most people working in the City Attorney's office are culpable for Goldsmith's actions. The point here is that the current occupant of that office has utilized the resources available to him to protect political allies, namely the ones who believe that a plurality of the electorate owes its allegiance to a political party in the city engaged in undermining "jobs, freedom and security." Now, go back and read those responses from the people who say they'd like you to vote them into the City Attorney's office. Disclosure: This article contains snippets of other articles about Goldsmith I have written at San Diego Free Press. Credit + h/t to Voice of San Diego's podcast for bringing Goldsmith's words to my attention. This is an excerpt from Doug Porter's column at our associated San Diego Free Press. La Playa Heritage April 19, 2016 at 10:32 pm The ongoing corruption of the City Attorney's office includes failure to require Comprehensive Annual Financial Reports (CAFR) for the Successor Agency (SA) to the former Redevelopment Agency (RDA) for FY-2011 to FY-2015. RDA CAFR end in FY-2010. https://www.sandiego.gov/comptroller/reports The City of San Diego's FY-2017 Budget only reference 4 of the 5 City Agencies. Shady. See Page 191. http://tinyurl.com/20160415b The worst legal advice is the 2010 Legal Opinion where City Attorney Goldsmith outlawed the use of RDA Tax Increment for Emergency Shelter and Wrap Around Social Services. Goldsmith declared Homelessness is NOT a form of blight. Death and despair are the result. http://sandiegofreepress.org/2016/04/is-affordable-housing-in-the-city-of-san-diego-an-oxymoron-part-1/ Older Article: Experience and Explosive Situations Newer Article: A Democratic Spring: Thousands March on Washington Demanding Fixes to a Broken Political System
[ 0.005023630801588297, -0.005011219065636396, -0.0011743481736630201, -0.015564876608550549, -0.03127322345972061, -0.0183209590613842, -0.036655351519584656, 0.007021181285381317, -0.0007608989835716784, 0.042821552604436874, 0.01282267551869154, -0.013426602818071842, 0.018666239455342293, -0.0023296514991670847, -0.006631919182837009, -0.005058110225945711, -0.0017034986522048712, -0.01691165752708912, 0.009301279671490192, 0.0002328785485588014, -0.005738166626542807, -0.0011078468523919582, -0.05242938548326492, -0.03405854105949402, 0.004261714871972799, 0.021227622404694557, 0.04723968356847763, -0.022504515945911407, 0.0686267837882042, 0.02546205185353756, -0.012522179633378983, -0.016360420733690262, 0.027278894558548927, -0.045581329613924026, 0.008147266693413258, -0.017476215958595276, 0.029861435294151306, -0.02825070731341839, 0.009957891888916492, -0.05023907497525215, 0.03178640827536583, -0.008081771433353424, 0.026837117969989777, -0.047619350254535675, -0.05213538557291031, 0.005136640276759863, -0.02693892829120159, -0.025329725816845894, -0.01734483800828457, -0.04058237001299858, 0.00009744790440890938, -0.017430026084184647, 0.002077848417684436, 0.014220381155610085, 0.010829910635948181, -0.003070769365876913, 0.01957729645073414, -0.01948189176619053, 0.007521289400756359, 0.01168019324541092, 0.025684455409646034, -0.01454527210444212, -0.00556823518127203, -0.05525174364447594, 0.023958805948495865, 0.0020755778532475233, -0.006994663272053003, 0.0011832679156213999, 0.01708707958459854, -0.031209753826260567, -0.019280027598142624, 0.022266527637839317, -0.027599528431892395, -0.03744398057460785, 0.006943617016077042, -0.007193547673523426, 0.009333295747637749, -0.01752895675599575, 0.007324689999222755, -0.00021996282157488167, 0.0006276235799305141, 0.07494441419839859, 0.003959647845476866, 0.02297019213438034, -0.03985661640763283, 0.001845328719355166, -0.011287705041468143, 0.012344849295914173, -0.005323422607034445, -0.009335189126431942, 0.015060714446008205, 0.05709117650985718, 0.010334538295865059, 0.002252720994874835, 0.06031575798988342, 0.047292303293943405, -0.05518953502178192, 0.04589695483446121, 0.011033373884856701, -0.0003933208354283124, 0.027606362476944923, 0.0004689239722210914, 0.0009580272017046809, 0.05346444249153137, -0.05033213272690773, -0.006834178697317839, 0.00595711637288332, 0.002186888363212347, 0.03180457651615143, -0.03588946536183357, -0.009763325564563274, 0.011339866556227207, 0.0324748232960701, 0.008198454976081848, -0.010131488554179668, 0.04521249607205391, 0.0015489407815039158, 0.03948579356074333, -0.029625818133354187, 0.022176207974553108, 0.028136704117059708, -0.01820981875061989, 0.04494927078485489, -0.03340553864836693, -0.025677701458334923, -0.034248702228069305, -0.05454396829009056, 0.061200808733701706, -0.03794531896710396, -0.01869853585958481, 0.01129692792892456, -0.009737537242472172, 0.0158037468791008, -0.016835307702422142, 0.00731609808281064, 0.05266791209578514, -0.018319865688681602, 0.03329966217279434, 0.029251443222165108, -0.03104986995458603, 0.034266840666532516, 0.01511449459940195, 0.007926219142973423, 0.06801226735115051, 0.016565032303333282, 0.022421540692448616, 0.003111728001385927, -0.013653838075697422, -0.026913924142718315, 0.059531811624765396, -0.04177689552307129, 0.020975220948457718, 0.006790598854422569, 0.025332672521471977, 0.0031608319841325283, -0.02216632291674614, -0.0027663905639201403, -0.0076899402774870396, 0.02898181416094303, 0.04927981272339821, -0.05904294177889824, 0.00870254822075367, -0.02567889541387558, 0.028961606323719025, -0.004390398506075144, 0.05643216148018837, -0.02071206271648407, -0.02427823282778263, -0.012354527600109577, -0.035488396883010864, 0.02046457678079605, 0.005799917504191399, -0.02633369341492653, 0.011031626723706722, 0.03347131237387657, -0.003630948718637228, 0.04168117418885231, 0.009173381142318249, 0.03880166634917259, 0.04307784140110016, -0.04081755131483078, 0.000916947319637984, 0.0044165863655507565, 0.0521477535367012, 0.002265186980366707, -0.023012390360236168, 0.017404407262802124, -0.029433252289891243, -0.04287322238087654, -0.027251889929175377, 0.0002621725434437394, -0.0013126590056344867, -0.02277168445289135, 0.002055973280221224, 0.06398443877696991, 0.004626740701496601, -0.024441275745630264, -0.026718653738498688, 0.01754070445895195, -0.04878780245780945, -0.032399147748947144, 0.049302052706480026, -0.008672255091369152, 0.01921536959707737, -0.05107680708169937, -0.025916721671819687, 0.025257309898734093, 0.08649158477783203, -0.028109122067689896, -0.003471765434369445, 0.06337853521108627, -0.0052582393400371075, 0.008479070849716663, -0.043390531092882156, -0.0066336593590676785, -0.010317405685782433, -0.03969384357333183, 0.056115422397851944, 0.0010739292483776808, -0.029255026951432228, 0.003457508748397231, -0.008416895754635334, 0.018406696617603302, 0.04511549696326256, -0.00889359787106514, 0.02102852053940296, 0.002955826697871089, 0.061319466680288315, -0.011489193886518478, -0.0074922856874763966, 0.017906323075294495, 0.03843582421541214, 0.02019435353577137, 0.04018508642911911, 0.031156621873378754, 0.002030271803960204, 0.053699295967817307, 0.04764886572957039, -0.02494633197784424, 0.01618625596165657, -0.013619785197079182, 0.021457985043525696, 0.03901173546910286, 0.029630146920681, -0.01158175989985466, 0.03152574598789215, 0.0005492786294780672, 0.005601102951914072, -0.004945166874676943, 0.04298502951860428, -0.0034588801208883524, 0.007330114021897316, 0.02519492618739605, 0.05051415413618088, -0.02553693950176239, 0.022842423990368843, 0.022451581433415413, 0.04967654123902321, -0.042764440178871155, -0.00016129660070873797, -0.015728533267974854, 0.02920106053352356, -0.005426808726042509, 0.016147306188941002, 0.02563578449189663, 0.023818401619791985, 0.008096648380160332, 0.030855754390358925, 0.0011849368456751108, -0.01818692311644554, -0.021280640736222267, -0.036205001175403595, -0.0026941844262182713, -0.014075827784836292, -0.0537436380982399, -0.0010361322201788425, 0.0378379300236702, -0.0525064691901207, 0.03152678906917572, -0.03442368283867836, -0.009066635742783546, -0.01501697488129139, 0.0023438024800270796, 0.014207343570888042, -0.003122608410194516, 0.03540786728262901, -0.06795063614845276, 0.07233455777168274, 0.026041263714432716, -0.01026766188442707, -0.029598144814372063, -0.03905363753437996, -0.006303176749497652, 0.024561021476984024, 0.07735668122768402, -0.04245227947831154, -0.019063398241996765, -0.03566141799092293, -0.03979672119021416, -0.06933008134365082, 0.012108986265957355, 0.0010980421211570501, -0.011203037574887276, -0.022546585649251938, -0.01868436299264431, 0.019288798794150352, 0.032508037984371185, -0.046108465641736984, 0.03204606845974922, 0.03748861327767372, -0.012010407634079456, 0.0345180369913578, 0.04852940887212753, 0.015530544333159924, -0.052061934024095535, 0.054260581731796265, 0.03483188524842262, -0.015516410581767559, -0.02162020280957222, -0.02210996299982071, -0.027659066021442413, 0.020599795505404472, 0.00433084974065423, -0.04176155850291252, -0.06715509295463562, 0.03249844163656235, 0.018622253090143204, -0.033443793654441833, 0.01671241782605648, -0.07626985013484955, -0.028539350256323814, -0.022056281566619873, -0.05016791447997093, -0.0057408870197832584, 0.045820679515600204, 0.04104029759764671, -0.0009718347573652864, -0.009345180355012417, 0.003417475149035454, -0.0004584535490721464, 0.04443245753645897, -0.05425136908888817, 0.052600257098674774, 0.023242756724357605, 0.016246197745203972, 0.014168464578688145, 0.035905271768569946, -0.010808276012539864, -0.007965910248458385, 0.011823628097772598, 0.0047204503789544106, 0.0016480333870276809, 0.017034241929650307, -0.007439990062266588, 0.0173751562833786, 0.03708845004439354, -0.035964325070381165, 0.0028368812054395676, 0.007789275608956814, -0.005497523117810488, -0.014732719399034977, 0.01295878179371357, 0.007226779591292143, -0.009696157649159431, -0.045166220515966415, -0.061072658747434616, 0.03388792648911476, 0.016498271375894547, 0.051569581031799316, -0.03721326217055321, 0.061164043843746185, -0.011032440699636936, -0.03544594347476959, 0.03609795868396759, -0.06127745658159256, -0.015225057490170002, 0.035227593034505844, -0.0010668125469237566, 0.039688412100076675, -0.020170161500573158, 0.017141517251729965, -0.02401798591017723, 0.05436467379331589, 0.023437615483999252, 0.01658216491341591, 0.017337875440716743, 0.0017975723603740335, -0.025135351344943047, -0.024400372058153152, -0.006532332859933376, 0.005273435730487108, -0.027550267055630684, -0.012985958717763424, -0.004923965781927109, -0.057758890092372894, -0.042293015867471695, 0.02229725383222103, 0.04650067538022995, 0.02523973025381565, -0.03265523537993431, 0.02312006987631321, 0.01429660338908434, 0.03006686456501484, 0.019611645489931107, -0.029184311628341675, 0.00606734910979867, -0.04943697899580002, 0.02220938354730606, 0.017625842243433, -0.0034737312234938145, -0.023814547806978226, -0.008887672796845436, -0.012966865673661232, 0.05569283291697502, 0.008623612113296986, -0.023505456745624542, -0.0002466282749082893, 0.01386091485619545, 0.019025428220629692, 0.04238998144865036, -0.04528486356139183, -0.02685621939599514, -0.017967598512768745, 0.027547607198357582, 0.055251043289899826, -0.036229077726602554, 0.008758666925132275, -0.029205290600657463, 0.043321169912815094, 0.04237789660692215, -0.021886393427848816, -0.05518233776092529, 0.002514139050617814, -0.042137306183576584, -0.024372095242142677, -0.004543082322925329, 0.037598636001348495, 0.009962066076695919, 0.007991102524101734, -0.054791562259197235, 0.03445654734969139, 0.056180741637945175, 0.02833699993789196, -0.01681271754205227, 0.002817290835082531, 0.01033046655356884, 0.0014627648051828146, 0.027191616594791412, -0.02150563895702362, -0.04063253477215767, -0.0054258909076452255, -0.01955580525100231, 0.0267413929104805, 0.010011464357376099, -0.040615178644657135, -0.004295017570257187, 0.03354090079665184, 0.00912132952362299, 0.04145779460668564, -0.022309385240077972, 0.006891984958201647, -0.0010081364307552576, 0.03368063271045685, -0.04714188724756241, -0.01770045980811119, 0.01582583226263523, -0.010484244674444199, -0.01767481304705143, 0.02592218853533268, 0.04345744103193283, 0.008848501369357109, 0.014477533288300037, 0.009604292921721935, -0.05086136981844902, 0.05142839252948761, -0.01599852181971073, 0.007486206945031881, -0.019833432510495186, -0.03429386764764786, 0.004055247642099857, -0.01934128999710083, 0.023412778973579407, -0.01838301680982113, -0.004097219090908766, -0.020278478041291237, -0.07412579655647278, -0.023663952946662903, 0.0020151124335825443, -0.0075409384444355965, -0.023222319781780243, 0.01874982938170433, 0.013831371441483498, -0.023611098527908325, -0.017190704122185707, 0.009213131852447987, 0.0478094220161438, -0.015342564322054386, 0.006880179047584534, -0.0020701754838228226, 0.022807611152529716, 0.004414675757288933, 0.0015138061717152596, -0.04915574565529823, 0.022496899589896202, -0.02224648743867874, -0.052638571709394455, -0.034361887723207474, -0.018128328025341034, 0.0032621894497424364, -0.011373362503945827, -0.03909587115049362, 0.0024205308873206377, 0.008104191161692142, 0.07726626843214035, 0.0037233736366033554, 0.014500495046377182, 0.02663539908826351, 0.013907046988606453, -0.06630512326955795, 0.04508746787905693, 0.038760583847761154, -0.06346725672483444, -0.04361310973763466, 0.022345704957842827, -0.013605964370071888, 0.020844221115112305, 0.002959418809041381, 0.0016980459913611412, -0.03026389516890049, -0.027275118976831436, 0.002835537539795041, -0.03427557274699211, -0.01762958988547325, -0.03465108945965767, -0.029814310371875763, 0.014154155738651752, 0.032985102385282516, 0.02158793807029724, -0.013041854836046696, 0.0005267927190288901, -0.028898654505610466, -0.006395992822945118, 0.0026334039866924286, -0.028845490887761116, -0.013177389279007912, -0.04094349965453148, -0.00949368067085743, 0.06786561012268066, 0.04887705296278, 0.015310975722968578, -0.00027169386157765985, 0.002435737755149603, -0.0024727049749344587, -0.034357380121946335, -0.04476257413625717, -0.04233197495341301, -0.03527303785085678, 0.011907009407877922, 0.026335781440138817, -0.007283996790647507, -0.03377879410982132, 0.05347134917974472, -0.020053992047905922, 0.015187712386250496, -0.012601525522768497, -0.011213943362236023, 0.012738295830786228, -0.01381857879459858, 0.05570061132311821, -0.03367270156741142, -0.003301928285509348, -0.029019735753536224, 0.065066859126091, 0.07018645107746124, 0.013774915598332882, -0.031685903668403625, -0.023486768826842308, -0.019317729398608208, -0.0394970178604126, 0.05024491995573044, -0.035347938537597656, -0.008391864597797394, -0.04473687335848808, 0.022787954658269882, 0.022629650309681892, -0.019061489030718803, 0.03993489220738411, 0.05963555723428726, -0.020128000527620316, -0.0060050711035728455, -0.03825349360704422, 0.035214100033044815, 0.05075608566403389, -0.01976698450744152, -0.0145503468811512, -0.01926678791642189, -0.050818342715501785, 0.005316305905580521, -0.060593198984861374, -0.05039512738585472, -0.035117436200380325, 0.002242824761196971, 0.059130653738975525, -0.01592271961271763, 0.018301837146282196, -0.01083998940885067, -0.046754371374845505, -0.06168147549033165, 0.05191073939204216, -0.011050637811422348, 0.04293377324938774, 0.04871750995516777, -0.00691945618018508, -0.02926681749522686, 0.020267348736524582, 0.016662290319800377, -0.008153732866048813, -0.045671746134757996, 0.07553897798061371, -0.010160409845411777, -0.04496942088007927, 0.037822362035512924, 0.06233551353216171, -0.031679023057222366, -0.04153767228126526, -0.018216276541352272, -0.00442462507635355, -0.007331259548664093, -0.015710216015577316, -0.01003809180110693, -0.0035559143871068954, -0.03693078085780144, -0.027563169598579407, 0.016256630420684814, 0.026251280680298805, 0.03709273040294647, -0.004967730958014727, 0.0491253025829792, -0.002712547779083252, 0.018469132483005524, 0.029327262192964554, -0.01190871000289917, -0.007887767627835274, -0.05244775488972664, -0.043035801500082016, 0.017197253182530403, 0.0002159961877623573, 0.037924207746982574, -0.02707785740494728, -0.0016867067897692323, 0.012375446036458015, -0.024467457085847855, 0.04898100346326828, -0.010333111509680748, -0.0040219929069280624, 0.004462572280317545, -0.04148068279027939, -0.03328919783234596, -0.041818294674158096, 0.027234356850385666, -0.013067502528429031, 0.03550949692726135, -0.09827404469251633, -0.03665444254875183, 0.01668265275657177, 0.012799385003745556, 0.010693049058318138, -0.05524594336748123, -0.05913703143596649, -0.0414619967341423, -0.02082725800573826, -0.035243842750787735, 0.014735270291566849, -0.010666890069842339, 0.05232600122690201, -0.03071414865553379, 0.007864424958825111, -0.00903293490409851, 0.006505759432911873, -0.04788224771618843, 0.0004231944913044572, -0.047324180603027344, 0.02185637131333351, -0.03360270336270332, -0.04314557835459709, -0.05387520417571068, 0.0016354314284399152, -0.023582570254802704, -0.02024167589843273, -0.0028763010632246733, 0.0357019267976284, -0.011654326692223549, 0.030596202239394188, 0.02763354405760765, 0.0009534848504699767, 0.02812112495303154, -0.03550415858626366, -0.015333865769207478, 0.052835989743471146, -0.01278652623295784, 0.027112016454339027, 0.026901887729763985, -0.03388755023479462, 0.04259178414940834, -0.002382392529398203, -0.00783938355743885, 0.00018135819118469954, -0.014556623063981533, -0.00975484773516655, -0.01242584828287363, -0.017722414806485176, -0.052309371531009674, -0.0408674031496048, -0.05528927966952324, -0.008315486833453178, -0.0325956717133522, 0.01957308128476143, 0.0076408968307077885, -0.0307792779058218, -0.004504526499658823, 0.0008703558123670518, 0.004465210717171431, 0.021022096276283264, 0.012550396844744682, 0.029386574402451515, 0.02313907817006111, -0.0015153968706727028, 0.04222422093153, 0.04830252751708031, 0.022595595568418503, -0.02041306532919407, 0.001850726897828281, 0.026627644896507263, 0.0019146420527249575, 0.030980806797742844, -0.02090710774064064, -0.033152032643556595, -0.05604036897420883, -0.015716129913926125, 0.0042050923220813274, 0.04905420169234276, 0.011397725902497768, 0.012219392694532871, 0.00830522645264864, -0.03648074343800545, -0.037704948335886, 0.016316650435328484, -0.06536617875099182, -0.01436603907495737, 0.01939810998737812, -0.010920679196715355, -0.008808637969195843, -0.005124377552419901, -0.0333990678191185, -0.03347029164433479, -0.024558573961257935, -0.015507438220083714, -0.0013171038590371609, 0.015979459509253502, 0.008755969814956188, 0.009305739775300026, -0.00884642731398344, 0.012399764731526375, 0.019238485023379326, 0.05007779225707054, -0.04010887071490288, -0.03679833188652992, -0.006894899997860193, 0.03200770914554596, -0.013511564582586288, 0.00105849199462682, -0.007141382433474064, 0.03935328125953674, -0.013561260886490345, 0.02516968920826912, -0.00848597101867199, 0.035801876336336136, 0.03045004792511463, 0.011992869898676872, -0.02459864318370819, 0.01017462182790041, -0.014084141701459885, 0.06107628718018532, -0.000074469338869676, -0.02714375965297222, -0.004799527581781149, 0.03781445324420929, 0.033433351665735245, -0.03557287156581879, 0.03482840955257416, 0.03238482028245926, 0.030171604827046394, -0.03465426713228226, 0.04507053270936012, -0.01173431146889925, 0.06943636387586594, 0.05852523073554039, 0.03935990855097771, -0.00047336635179817677, 0.04468593746423721, 0.05939214676618576, -0.01650773547589779, -0.0199664868414402, 0.03450306877493858, 0.03150574490427971, -0.021132107824087143, -0.015139492228627205, -0.025082053616642952, 0.026089193299412727, 0.0012497794814407825, -0.026149403303861618, -0.0006269153673201799, -0.013160016387701035, 0.0037551859859377146, -0.009457417763769627, -0.042621348053216934, 0.06032809987664223, -0.029436247423291206, -0.008937985636293888, -0.035096198320388794, -0.01728125475347042, -0.019786827266216278, 0.05087269842624664, -0.01102843601256609, -0.0017615131800994277, 0.04166131094098091, 0.038964904844760895, 0.011067741550505161, 0.052583981305360794, 0.008279936388134956, 0.005473211407661438, -0.028467994183301926, 0.0043658046051859856, 0.03227083384990692, -0.0036031208001077175, -0.013169749639928341, 0.006958915386348963, -0.013432390987873077, 0.02306271903216839, -0.004836290143430233, -0.0038508293218910694, 0.010649803094565868, -0.06587894260883331, 0.023926151916384697, -0.05617399513721466, 0.042645130306482315, -0.02299843542277813, 0.010125700384378433, 0.050854891538619995, -0.04278182610869408, -0.03144730255007744, 0.04646046459674835, -0.0022948887199163437, 0.04044746235013008, 0.014407788403332233, 0.04921610653400421, 0.020000195130705833, 0.0389581024646759, 0.022482046857476234, -0.07951720058917999, -0.014260408468544483, 0.05895329639315605, -0.0005899419775232673, -0.03620123118162155, -0.022401243448257446, -0.011089625768363476, -0.010705681517720222, -0.026745038107037544, 0.009174945764243603, -0.010305890813469887, 0.028424816206097603, -0.028002867475152016, -0.022303856909275055, 0.005504562519490719, 0.0297999270260334, -0.02965700626373291, -0.02092531882226467, 0.0018806023290380836, 0.02759595960378647, -0.018361177295446396, -0.03879807889461517, -0.020193083211779594, -0.07018519192934036, -0.0005984301678836346, -0.03749173507094383, 0.04384392127394676, 0.011426785960793495, -0.05606243386864662, -0.03693625330924988, -0.03962145000696182, 0.0011589843779802322, -0.019461195915937424, -0.0764874592423439, -0.05284569784998894, 0.025537868961691856, 0.05421306565403938, 0.005335413850843906, 0.028995463624596596, -0.011439938098192215, -0.0020938811358064413, 0.03209197521209717, 0.059425681829452515, -0.013672084547579288, 0.04074531048536301, 0.029933251440525055, -0.021556751802563667, 0.040713340044021606, -0.04012700915336609, -0.0022239219397306442, -0.019353272393345833, -0.006854967214167118, -0.021636908873915672, 0.0201109666377306, -0.021395452320575714, -0.05892513319849968, 0.01707606017589569, 0.014792959205806255, 0.02754155360162258, -0.021038245409727097, -0.03605151176452637, 0.0006147542153485119, -0.007134586572647095, -0.02094186097383499, -0.06466197967529297, -0.001023249700665474, -0.0302988700568676, 0.005262463819235563, -0.021215520799160004, -0.07657220959663391, 0.15953031182289124, 0.027425214648246765, 0.027581045404076576, -0.004418283235281706, 0.04485506936907768, 0.0660959854722023, 0.0223867055028677, -0.023103585466742516, 0.010317351669073105, -0.03452223911881447, 0.04441796988248825, -0.03491910547018051, 0.0299913939088583, -0.026201868429780006, -0.01149231567978859, 0.06010483205318451, -0.04603740572929382, -0.04301967844367027, 0.0031392634846270084, -0.04487748071551323, -0.028397124260663986, 0.02131873555481434, -0.008337785489857197, 0.040253546088933945, -0.001308912644162774, 0.05155719816684723, 0.03367333486676216, -0.039998941123485565, 0.01684061624109745, -0.03143183887004852, 0.024924786761403084, -0.022764721885323524, 0.030291350558400154, -0.05029534175992012, -0.04313785955309868, 0.03979553282260895, -0.016611851751804352, -0.03967683017253876, 0.007141591981053352, 0.0427079014480114, -0.024092474952340126, 0.030103445053100586, 0.03395264223217964, -0.03420498967170715, -0.020266300067305565, 0.019137801602482796, -0.07213439792394638, -0.01684640720486641, 0.006590970791876316, -0.014828265644609928, 0.07205629348754883, -0.002982682315632701, 0.03886115923523903, -0.008528684265911579, -0.026594994589686394, 0.020276738330721855, 0.05017559975385666, -0.006191267166286707, -0.016938945278525352, -0.020040543749928474, 0.03720845654606819, 0.01785365305840969, -0.006416236516088247, -0.015644391998648643, -0.047859590500593185, 0.006650545168668032, 0.024955226108431816, -0.022022239863872528, -0.03227480873465538, -0.017498914152383804, -0.022655077278614044, 0.0027479552663862705, 0.020611710846424103, -0.02214384637773037, 0.057381708174943924, 0.02666546404361725, 0.014276284724473953, 0.05569232627749443, 0.012602036818861961, 0.00039837317308411, -0.02595539018511772, -0.019035769626498222, -0.04143621399998665, 0.002657771110534668, 0.02814391255378723, 0.027472423389554024, -0.01662764512002468, -0.01743987947702408, 0.00040409821667708457, 0.044860295951366425, 0.039753835648298264, -0.008068512193858624, -0.02014949731528759, -0.024281194433569908, -0.03944908455014229 ]
13 Jul CS v42 FULL. Dje mogu da skinem KGB-ov CS v42 FULL? Freelancer web designer. Contact: [email protected] If you like. CS Protocol 48 Full manuelrangel.com - Clean CS v42 manuelrangel.com - KGB GUI CS Protocol 48 Patch manuelrangel.com Counter Strike v42 FULL Cheat Radi %. K likes. Sve sto vas zanima u pitanju Cs-a slobodno pitaj te. 16 Feb Counter-strike KGB full v42 p original KGB. Counter-Strike KGB is a very old Kosovo gaming community. The Cs KGB project has. Counter-Strike V42 koji vas prebacuje na protokol 48 u KGB izdanju. Counter strike v42 kgb free download. 6 full v42 kgb free Download Link Download cs 1. 5 May Counter-Strike v42 full KGB. Counter-Strike made by Serbian KGB-Hosting. 25 Aug Kako skinuti Counter Strike FULL v44 - Protocol 48 Clean Download link for CS v44 Full: manuelrangel.com Download CS V42 KGB. CS v42 FULL 5 torrent download locations manuelrangel.com CS 1 6 v42 FULL games: 2 months manuelrangel.com 0 MB; manuelrangel.com 0 MB. Results 1 - 25 7 min - Uploaded by SV99Link CS manuelrangel.com i5mqkat6dd25/CS++FULL+V42 +manuelrangel.com Download CS v42 full. Download Counter Strike V42 Full Version (Total Downloads: ) - Counter Strike V42 Full Version Free Download (Total Downloads: ). This Pin was discovered by Kerry. Discover (and save!) your own Pins on Pinterest. cs full v42 protocol 48 free download, cs v42 p48, cs free v42 p48, cs full version non steam.
[ 0.026509299874305725, -0.011821181513369083, 0.002956751035526395, 0.00594067107886076, -0.00611736997961998, -0.017493994906544685, -0.023648975417017937, 0.034136537462472916, -0.02514195814728737, 0.038921259343624115, 0.030169913545250893, 0.00886491034179926, 0.012720703147351742, -0.044056691229343414, 0.0039285700768232346, 0.005268404725939035, -0.00434989295899868, -0.053233642131090164, -0.02463155798614025, -0.011616901494562626, 0.03625980019569397, -0.00017604166350793093, -0.0937863141298294, -0.0538826622068882, -0.023530568927526474, 0.02677319571375847, 0.017031894996762276, 0.014343157410621643, 0.038989581167697906, 0.03988814726471901, -0.002439955249428749, -0.028498146682977676, 0.034725677222013474, -0.07039879262447357, 0.0006306390860117972, -0.022561822086572647, 0.02895152010023594, -0.029295623302459717, 0.00044942277600057423, -0.051190949976444244, 0.02524758130311966, -0.05216115340590477, 0.02799931727349758, -0.021567320451140404, -0.04334733635187149, -0.023104118183255196, -0.005630983039736748, 0.0018400093540549278, 0.013581087812781334, -0.0201830193400383, 0.03121020272374153, 0.0036053613293915987, 0.04244812950491905, -0.017160562798380852, -0.000647831941023469, 0.038215551525354385, -0.009291678667068481, -0.019636226817965508, -0.024944152683019638, 0.016741007566452026, 0.023785065859556198, -0.007414851803332567, 0.04599294066429138, -0.06216553598642349, 0.01819877326488495, 0.025162260979413986, -0.001953548053279519, 0.006138551980257034, 0.011104348115622997, -0.020531048998236656, -0.025705566629767418, -0.01357997301965952, -0.04733394831418991, -0.029151439666748047, 0.017775759100914, 0.022983385249972343, -0.012311273254454136, -0.011627516709268093, -0.02576683834195137, 0.021069295704364777, 0.014953033067286015, 0.044338878244161606, 0.02747117169201374, 0.024967946112155914, -0.058696236461400986, -0.0030333534814417362, 0.009040189906954765, 0.010424749925732613, -0.012363727204501629, 0.019700542092323303, 0.004824366420507431, 0.027351969853043556, 0.009311972185969353, -0.0027997789438813925, 0.026062969118356705, 0.057370513677597046, -0.014662520959973335, 0.033235661685466766, -0.012912926264107227, -0.014142673462629318, 0.01911725476384163, 0.027217717841267586, -0.01049551647156477, 0.05026102438569069, -0.012672988697886467, -0.017454156652092934, 0.020530477166175842, 0.007702101953327656, -0.02240242250263691, -0.013600358739495277, 0.016883613541722298, 0.00018179732433054596, 0.014705481007695198, 0.00959779042750597, -0.0019130961736664176, 0.03977927193045616, 0.018536439165472984, 0.013351820409297943, -0.026054102927446365, -0.005627926904708147, -0.011769476346671581, 0.015291769988834858, 0.03679443523287773, -0.014944217167794704, 0.003978768829256296, -0.03904912620782852, -0.027046676725149155, 0.040920909494161606, -0.031819891184568405, -0.05508590489625931, -0.01403233502060175, -0.04441387951374054, -0.007743988186120987, 0.02093088999390602, -0.02438700757920742, 0.0016578384675085545, -0.003734614932909608, 0.013742993585765362, 0.04396728053689003, -0.060333337634801865, 0.029125569388270378, 0.03590432554483414, -0.003081926377490163, 0.0814049243927002, -0.005393388215452433, 0.01965499483048916, 0.02168477699160576, 0.0056853340938687325, -0.016976650804281235, 0.029070010408759117, -0.04781046137213707, 0.0061745671555399895, -0.00030460950802080333, 0.035929348319768906, 0.0005413381732068956, 0.016337821260094643, -0.016316546127200127, 0.024575965479016304, 0.02112627401947975, 0.030159838497638702, -0.008685664273798466, 0.012316702865064144, 0.0006309025338850915, 0.03671270236372948, -0.010168643668293953, 0.04991680383682251, -0.04983050748705864, -0.016858700662851334, -0.007762533146888018, -0.021993571892380714, 0.025089815258979797, -0.018404195085167885, -0.012983282096683979, 0.0028744146693497896, 0.02970794215798378, 0.020586026832461357, 0.03800999000668526, -0.028261438012123108, 0.037809424102306366, 0.04072938114404678, -0.03299997001886368, 0.025098608806729317, 0.01744396612048149, 0.07163654267787933, 0.019013922661542892, -0.0019072451395913959, 0.009222167544066906, -0.049660250544548035, -0.027418997138738632, -0.02661653608083725, -0.0085257887840271, 0.025075236335396767, 0.0050000292249023914, 0.022765571251511574, 0.012898819521069527, 0.013090169057250023, -0.03803878277540207, 0.02325286529958248, 0.003757321508601308, -0.059664905071258545, -0.0021787434816360474, 0.05065653473138809, -0.02886251173913479, 0.007210704497992992, -0.004066727124154568, -0.030847929418087006, 0.005258616991341114, 0.06096992641687393, -0.05152362585067749, -0.013981670141220093, 0.07319694012403488, -0.017772695049643517, -0.008131514303386211, -0.018213622272014618, 0.003060148097574711, -0.01481721457093954, -0.04956773295998573, 0.05478237569332123, 0.004905604757368565, 0.00004169749081484042, 0.017518209293484688, 0.06158774346113205, 0.019566940143704414, 0.06250385195016861, -0.004635389894247055, 0.020615534856915474, -0.02183404751121998, 0.05701596662402153, -0.0015355844516307116, 0.014552037231624126, -0.01799757592380047, 0.04634808003902435, -0.011206135153770447, 0.04703811928629875, 0.05491472780704498, 0.004895674530416727, 0.04432038590312004, 0.03390100598335266, -0.005265020299702883, 0.04334667697548866, -0.009537073783576488, 0.015651054680347443, 0.0072886748239398, 0.02737562172114849, 0.006254004314541817, 0.0351521298289299, -0.007126471493393183, 0.01591474562883377, -0.025137122720479965, 0.024452023208141327, -0.03169935196638107, 0.07072371989488602, 0.01833997294306755, 0.038886021822690964, -0.041371095925569534, 0.002288911258801818, 0.05250536650419235, 0.0516950823366642, -0.042046092450618744, 0.02358151227235794, -0.009384716860949993, 0.030283402651548386, -0.004572057165205479, -0.0038822689093649387, 0.006689342670142651, 0.036182504147291183, 0.035101231187582016, 0.0010408854577690363, 0.0006910691154189408, -0.04192766174674034, -0.040090590715408325, -0.05945204198360443, -0.05082457885146141, -0.04880319908261299, -0.06879556179046631, 0.023889239877462387, 0.02097896859049797, -0.03043290786445141, 0.011887108907103539, -0.027090763673186302, -0.008664906956255436, 0.017177220433950424, -0.007623662240803242, 0.023380231112241745, 0.012564849108457565, 0.025685641914606094, -0.04619419947266579, 0.004560400731861591, 0.011994482949376106, 0.05068231374025345, -0.03591388091444969, 0.004899199586361647, -0.013747385703027248, -0.014559857547283173, 0.007065919227898121, -0.028693459928035736, -0.011216942220926285, 0.011806979775428772, -0.020905228331685066, -0.03530886769294739, -0.02744784764945507, -0.005402290727943182, 0.020622389391064644, -0.0025691541377454996, -0.038802020251750946, 0.03692037612199783, 0.026721104979515076, -0.03071020357310772, 0.06486257910728455, 0.049004971981048584, -0.020319465547800064, 0.04243318736553192, 0.00793745368719101, 0.02287120930850506, -0.05716364085674286, 0.057375501841306686, 0.047380369156599045, 0.010718016885221004, -0.045759111642837524, -0.017463041469454765, -0.037027016282081604, 0.006479553412646055, 0.008859028108417988, -0.007348508108407259, -0.0311835166066885, 0.04476622864603996, 0.012835770845413208, -0.07390162348747253, 0.021225491538643837, -0.058884840458631516, -0.06749705225229263, -0.03651020675897598, -0.041619282215833664, 0.0018672407604753971, 0.03577134758234024, 0.03382458910346031, -0.028927084058523178, 0.008663462474942207, 0.00982641614973545, 0.02250758558511734, 0.03149648383259773, -0.010327896103262901, 0.03542807325720787, 0.022288814187049866, 0.015590328723192215, 0.013042525388300419, 0.03467928618192673, -0.026645364239811897, -0.0021310760639607906, 0.020608777180314064, 0.00463011534884572, 0.019448939710855484, 0.05284709110856056, -0.0030213771387934685, -0.0005986641626805067, 0.06993427127599716, -0.06894366443157196, 0.011347861029207706, 0.03183664754033089, 0.002914654091000557, 0.04659070819616318, -0.0036050090566277504, 0.012696187943220139, -0.021174676716327667, -0.0302773118019104, -0.052905187010765076, 0.030060889199376106, 0.04184294492006302, 0.03642307221889496, -0.07223756611347198, 0.03210077062249184, -0.015760237351059914, -0.030598299577832222, 0.03442465886473656, -0.06593846529722214, 0.006099607329815626, 0.043297138065099716, -0.018195828422904015, 0.030824556946754456, -0.02757226675748825, 0.007409678306430578, -0.02659941092133522, 0.010236665606498718, 0.035059887915849686, 0.02598949894309044, 0.024146633222699165, 0.0005492859054356813, -0.00733559112995863, -0.005226525012403727, -0.037826213985681534, -0.01860218122601509, -0.046600501984357834, 0.0035662217997014523, -0.009770553559064865, -0.05446021631360054, -0.06140808016061783, 0.009013717994093895, 0.03494241461157799, 0.058856554329395294, 0.005716422107070684, 0.01435389369726181, 0.0009575944277457893, 0.033135995268821716, 0.06091603264212608, -0.031826820224523544, 0.0034044922795146704, -0.05022984370589256, 0.0539630651473999, 0.0066860574297606945, -0.004026250448077917, -0.019713157787919044, -0.010315481573343277, 0.00866676401346922, 0.05544767528772354, -0.01396927796304226, -0.018801625818014145, -0.04216175153851509, -0.002400488592684269, -0.019436325877904892, 0.005696113221347332, -0.02780810557305813, -0.044729769229888916, -0.0034018319565802813, 0.054339926689863205, 0.03733755648136139, -0.055939532816410065, -0.010012599639594555, -0.012009183876216412, 0.014090337790548801, 0.03892131522297859, -0.016951706260442734, -0.03010602667927742, -0.03795628249645233, -0.03875500708818436, -0.03826447203755379, -0.0027044599410146475, 0.03895536810159683, -0.007790090516209602, 0.011853951029479504, -0.059116434305906296, -0.003756934078410268, 0.012909169308841228, -0.004554691258817911, -0.012349742464721203, 0.008841212838888168, 0.0009885744657367468, 0.012866007164120674, 0.03352024033665657, -0.0014985243324190378, -0.02719058282673359, 0.023153705522418022, -0.06077416613698006, 0.031238660216331482, -0.01989470236003399, -0.023938080295920372, -0.007021093275398016, 0.023196592926979065, -0.012239455245435238, 0.05102192983031273, -0.02034343034029007, 0.016571277752518654, 0.021959714591503143, 0.019968640059232712, -0.050349246710538864, -0.02995770052075386, 0.04546283930540085, -0.020828431472182274, -0.0067046587355434895, 0.01732572726905346, 0.0298970565199852, -0.025475772097706795, 0.018638361245393753, 0.01506352610886097, -0.02658344805240631, 0.016704222187399864, -0.04094146192073822, 0.018205715343356133, -0.010286280885338783, -0.02741892822086811, -0.01425672136247158, -0.036095891147851944, 0.05319293215870857, 0.013849472627043724, -0.03165536746382713, -0.017619676887989044, -0.06588926166296005, -0.02362447790801525, 0.006618698593229055, -0.020420977845788002, 0.02257412299513817, -0.006532701198011637, -0.026209114119410515, 0.01136175636202097, 0.00267594400793314, -0.0022298754192888737, 0.016258612275123596, -0.026346437633037567, 0.02651393972337246, 0.02790765091776848, 0.009608381427824497, 0.013052662834525108, -0.02255108207464218, -0.03262129798531532, -0.02925684116780758, -0.023254258558154106, -0.012677719816565514, -0.03145020082592964, 0.012335514649748802, -0.005870009772479534, -0.02143307961523533, -0.04215380921959877, -0.005403879098594189, -0.06138232350349426, 0.030201854184269905, 0.008302380330860615, 0.0056338864378631115, -0.008124802261590958, 0.0031401512678712606, -0.0710860937833786, 0.05810577794909477, 0.029125193133950233, -0.07399582862854004, 0.014221064746379852, 0.025200720876455307, 0.01735776476562023, 0.05342600494623184, -0.005022916477173567, -0.011321065947413445, -0.044139135628938675, -0.04264651611447334, -0.020150912925601006, -0.05331217125058174, -0.02724686823785305, -0.03433360531926155, -0.025506144389510155, -0.024368546903133392, 0.03195327892899513, 0.015492226928472519, -0.046017423272132874, -0.017670150846242905, -0.053407419472932816, -0.018345549702644348, -0.03106633760035038, -0.0038213881198316813, -0.0180242657661438, -0.03971956670284271, -0.023811887949705124, 0.07912657409906387, 0.016028879210352898, 0.0334659107029438, 0.01376275159418583, 0.029245005920529366, 0.0016115966718643904, 0.009115067310631275, -0.0475616380572319, -0.03333677724003792, 0.015892133116722107, 0.010377456434071064, 0.005172909237444401, -0.0002712798013817519, -0.05874685198068619, 0.05491425096988678, -0.04557918384671211, 0.004371579736471176, -0.013050886802375317, -0.024188626557588577, -0.003316181944683194, 0.009726632386446, 0.05199568718671799, -0.03952431678771973, 0.0329643115401268, -0.02380209229886532, 0.05260377377271652, 0.03471195697784424, -0.00907061155885458, -0.03268032893538475, -0.02730559930205345, -0.04989860579371452, -0.05460241809487343, 0.0466243177652359, -0.03767333924770355, -0.01975279673933983, -0.05063905939459801, -0.0021983101032674313, 0.044814880937337875, 0.014564573764801025, 0.06349489837884903, 0.05569271743297577, -0.008837658911943436, 0.006393526215106249, -0.048914834856987, 0.0313393697142601, 0.04984118789434433, -0.0075260731391608715, 0.011731916107237339, 0.00587546918541193, -0.011868736706674099, 0.0321531668305397, -0.05176780745387077, -0.057184427976608276, -0.04255080223083496, -0.011180206201970577, 0.06769560277462006, -0.039543554186820984, 0.056183476001024246, -0.020500004291534424, -0.054629623889923096, -0.048935502767562866, 0.04665067419409752, 0.005414820276200771, 0.021113542839884758, 0.038260702043771744, 0.009071605280041695, 0.0055145034566521645, 0.009063957259058952, 0.029851585626602173, -0.002292400458827615, -0.04340267553925514, 0.05702544003725052, -0.015559994615614414, -0.031898364424705505, 0.021089807152748108, 0.06516571342945099, -0.06447798013687134, -0.04479832574725151, -0.029672803357243538, -0.0008306176750920713, 0.002004411304369569, -0.03837445750832558, 0.002639739541336894, -0.024266675114631653, -0.004652464762330055, 0.008628586307168007, 0.01664164662361145, 0.017954492941498756, 0.010273568332195282, -0.014423302374780178, 0.02349521778523922, -0.034318894147872925, 0.01529830601066351, 0.04897945374250412, -0.01883445307612419, -0.014569299295544624, -0.04111023619771004, -0.042255550622940063, -0.0036753250751644373, 0.02635428123176098, 0.07037059962749481, -0.011574377305805683, 0.04839588701725006, 0.049041420221328735, -0.024016007781028748, 0.04857417196035385, -0.005591492634266615, 0.01606108248233795, 0.015084751881659031, -0.04821286350488663, -0.05255543813109398, -0.03388752415776253, 0.004968415480107069, -0.04781682416796684, 0.03351735323667526, -0.05558665096759796, -0.005306745879352093, 0.02215532399713993, 0.0062064966186881065, -0.02685636840760708, -0.08455119282007217, -0.03069310635328293, -0.05585244297981262, -0.025898098945617676, -0.014367721974849701, 0.0017873365432024002, -0.02434392273426056, 0.015899835154414177, -0.0188913494348526, -0.04716148227453232, -0.02323777787387371, 0.021216345950961113, -0.016290519386529922, 0.012129156850278378, -0.043774813413619995, 0.03238881006836891, -0.07677605748176575, -0.059828020632267, -0.026865599676966667, 0.015627317130565643, -0.010063230991363525, -0.016931381076574326, 0.02053482085466385, 0.0196624007076025, 0.02144666761159897, 0.0068623279221355915, -0.0068446071818470955, -0.0006611680146306753, -0.02035496197640896, -0.06646648794412613, -0.021113498136401176, 0.0307166650891304, -0.011893481947481632, 0.05956072360277176, 0.03065156191587448, -0.030622346326708794, 0.015965528786182404, 0.00673983059823513, -0.03422249108552933, -0.045590389519929886, 0.013875644654035568, 0.02395610883831978, -0.004354454576969147, -0.046481333673000336, -0.02363334409892559, -0.040533579885959625, -0.05293340981006622, 0.02512909099459648, 0.010502004064619541, -0.0026557259261608124, 0.004950415343046188, -0.015757307410240173, -0.0008253121632151306, 0.041038043797016144, -0.0022596262861043215, 0.017186200246214867, 0.02027980424463749, 0.014609294012188911, 0.013871257193386555, -0.046840474009513855, 0.018813135102391243, 0.012156267650425434, 0.042717158794403076, -0.0059979259967803955, 0.007289747707545757, 0.01889612525701523, -0.009481898508965969, 0.030320165678858757, -0.014993610791862011, -0.0482499785721302, -0.044875502586364746, -0.027775468304753304, -0.0030646196100860834, 0.04576978087425232, 0.0208706296980381, 0.013964521698653698, 0.004126659594476223, -0.008861062116920948, -0.04216655716300011, 0.01722119189798832, -0.05936150252819061, -0.012837458401918411, 0.0486622117459774, -0.024855181574821472, -0.01297613326460123, -0.0030010922346264124, -0.03335249796509743, -0.014104769565165043, 0.0023872684687376022, 0.008733142167329788, 0.01639770343899727, 0.023157503455877304, 0.011722422204911709, 0.05008554458618164, -0.016512315720319748, -0.016160113736987114, 0.00014550132618751377, 0.04849608987569809, -0.022297319024801254, -0.06123454496264458, -0.01299260463565588, 0.039308514446020126, 0.019265444949269295, -0.0063789887353777885, -0.030448559671640396, 0.01477716863155365, 0.003973602317273617, -0.027234544977545738, 0.024944888427853584, 0.05029769614338875, 0.018981287255883217, 0.03339971974492073, -0.027298124507069588, 0.008277510292828083, -0.0441361740231514, 0.02626877650618553, 0.016081925481557846, 0.0008712903363630176, -0.02200738526880741, 0.03407103940844536, 0.015353893861174583, -0.031648848205804825, 0.029081225395202637, 0.01321372203528881, 0.017650606110692024, -0.022619009017944336, 0.026661213487386703, -0.009258522652089596, 0.028599074110388756, 0.03547754883766174, 0.04410088062286377, -0.016100410372018814, 0.0009078392176888883, 0.03892042487859726, 0.005628571845591068, 0.0015270474832504988, 0.013532635755836964, 0.021818019449710846, -0.0050935591571033, 0.026520369574427605, -0.03863565996289253, 0.008053330704569817, 0.009299419820308685, -0.007616184186190367, 0.0010603306582197547, -0.009046361781656742, 0.011224966496229172, -0.022450866177678108, -0.017315074801445007, 0.05240970477461815, -0.055331774055957794, 0.02149965986609459, 0.005864213686436415, -0.021536074578762054, 0.0005412555183283985, 0.04359070584177971, 0.000579499697778374, 0.008883817121386528, 0.024401210248470306, 0.042851660400629044, 0.0037501631304621696, 0.028929010033607483, 0.02924978733062744, 0.017575619742274284, -0.0294748917222023, 0.029844511300325394, 0.004842949565500021, -0.026713186874985695, -0.013433804735541344, -0.005287266802042723, -0.049426622688770294, 0.007788729388266802, -0.03191078454256058, -0.0007530804141424596, 0.04383755475282669, -0.013481630012392998, 0.019415896385908127, -0.014249006286263466, 0.01671161688864231, -0.02501571923494339, 0.02613908052444458, 0.05945803225040436, -0.04506854712963104, -0.011991037055850029, 0.04005894437432289, -0.011444163508713245, 0.03828342631459236, 0.025030838325619698, 0.07063882052898407, 0.0031233434565365314, 0.03206693008542061, 0.05370000749826431, -0.050387244671583176, 0.015042638406157494, -0.00040127712418325245, -0.024571705609560013, -0.02219824679195881, -0.014671438373625278, -0.011330555193126202, 0.002378189004957676, -0.0036284320522099733, -0.01684913970530033, 0.00670090364292264, 0.06957246363162994, -0.0007212357595562935, -0.047233257442712784, 0.014628356322646141, 0.007470546290278435, -0.029123520478606224, 0.020148463547229767, 0.05130789801478386, 0.03752809762954712, 0.00599614717066288, -0.028721574693918228, -0.0398198626935482, -0.03788314014673233, -0.009491262026131153, -0.06898987293243408, 0.04686082899570465, -0.010882845148444176, -0.032743241637945175, -0.027204075828194618, -0.05629178136587143, -0.031116709113121033, 0.006350943818688393, -0.03587525710463524, -0.05608392134308815, 0.026695145294070244, 0.04477059096097946, 0.03512691333889961, 0.05220697820186615, -0.01834067329764366, 0.011178135871887207, 0.03348390385508537, 0.055761128664016724, -0.0026677181012928486, 0.026265721768140793, 0.04333513230085373, -0.010117397643625736, 0.03431394696235657, -0.018752599135041237, 0.03636525943875313, 0.006317724008113146, -0.018283631652593613, -0.033555980771780014, 0.009048978798091412, -0.02116081304848194, -0.04383884370326996, 0.00838431715965271, 0.03768319636583328, 0.010510989464819431, -0.013896143063902855, -0.06977374851703644, -0.03553465008735657, -0.06451521068811417, 0.010608002543449402, -0.04237685352563858, 0.033268190920352936, 0.009654128924012184, -0.016044562682509422, -0.0063092149794101715, -0.04608393460512161, 0.13558311760425568, 0.05999026447534561, 0.05772527679800987, 0.010380497202277184, 0.039124369621276855, 0.07151935249567032, 0.008391494862735271, -0.01884719915688038, 0.023411894217133522, -0.025350935757160187, 0.03625866770744324, -0.0003047481586690992, 0.040477268397808075, -0.01576426438987255, 0.020177504047751427, 0.028960898518562317, -0.03386436402797699, 0.0067047253251075745, 0.01852363906800747, -0.04241808131337166, -0.0436134897172451, 0.017246747389435768, 0.002862079767510295, 0.03590303659439087, -0.0023823888041079044, 0.0336250476539135, 0.01682310737669468, -0.02775467187166214, -0.0029161605052649975, -0.01895548589527607, 0.0048111239448189735, -0.015908006578683853, 0.0254508089274168, 0.0016454380238428712, 0.004217266105115414, 0.04955943301320076, -0.026941511780023575, -0.0053038932383060455, 0.029182162135839462, 0.02976570464670658, -0.007132637780159712, 0.0018017056863754988, 0.023772716522216797, -0.03714560344815254, 0.012849954888224602, 0.022596273571252823, -0.04684960097074509, -0.012673464603722095, 0.021545574069023132, -0.04398815706372261, 0.03689414635300636, -0.017598886042833328, 0.041815683245658875, -0.03744879364967346, -0.03311397135257721, -0.0020777967292815447, -0.004803053569048643, -0.009275299496948719, 0.007963486947119236, 0.02563592605292797, 0.01590077020227909, -0.0016920492053031921, -0.01979079097509384, -0.005791868548840284, -0.07384119182825089, -0.020483899861574173, 0.006701176054775715, 0.045310862362384796, -0.0074574812315404415, -0.014287150464951992, -0.008549780584871769, -0.00982214417308569, -0.01982983574271202, -0.03629870340228081, -0.009674920700490475, 0.02524745464324951, -0.00587770901620388, 0.039035614579916, 0.01268539484590292, -0.01673978939652443, -0.021249188110232353, -0.020361213013529778, -0.01149238832294941, -0.011959804221987724, 0.01896457001566887, 0.028580771759152412, -0.07076962292194366, -0.022943684831261635, -0.011944032274186611, 0.05702397599816322, 0.00948406383395195, 0.015130016952753067, -0.005555427633225918, -0.01004448626190424, -0.014185518957674503 ]
When debugging Spark Streaming applications it is necessary to monitor certain metrics that are not shown in the Spark application UI. For example, what is average processing time of batches? What is the scheduling delay? Is the system able to process as fast as it is receiving data? How many records I am receiving through my receivers? While the StreamingListener interface introduced in the 0.9 provided some of this information, it could only be accessed programmatically. A UI that shows information specific to the streaming applications is necessary for easier debugging.
[ 0.002483188407495618, -0.0009097916190512478, -0.02926815301179886, -0.006066149566322565, -0.00007395973079837859, 0.0016322251176461577, -0.005725487135350704, 0.0002909420582000166, 0.016106825321912766, 0.025719907134771347, 0.0016753926174715161, -0.02012448012828827, 0.042132288217544556, -0.03428920730948448, -0.02552480250597, -0.009972412139177322, -0.016942661255598068, -0.03366891294717789, -0.055857934057712555, -0.008986560627818108, -0.0043018171563744545, 0.04114828631281853, -0.0521012544631958, -0.01611807942390442, -0.03987837955355644, 0.037643272429704666, -0.0021086710039526224, -0.027578480541706085, 0.06683070212602615, 0.05000029131770134, -0.0355534702539444, -0.04712957888841629, 0.000971462985035032, -0.05702506750822067, 0.002525118412449956, -0.008345567621290684, 0.04078422114253044, -0.015412172302603722, -0.02484372816979885, -0.04770641028881073, 0.03538809344172478, -0.01125380303710699, 0.045342110097408295, -0.06100880727171898, -0.07201109081506729, -0.029780596494674683, -0.013081302866339684, -0.027308987453579903, 0.0003253849281463772, -0.02073599398136139, -0.007419984322041273, -0.018012892454862595, 0.013760838657617569, -0.019236212596297264, 0.006179335061460733, 0.015704285353422165, -0.016215292736887932, -0.006764252204447985, -0.06519811600446701, 0.019487731158733368, 0.0259730014950037, 0.001977098174393177, 0.014636523090302944, -0.08819090574979782, 0.029844453558325768, 0.05018465593457222, -0.0033342859242111444, -0.04497268423438072, 0.002234166720882058, -0.028668487444519997, -0.05582595244050026, 0.030855800956487656, -0.03340991958975792, -0.04570118710398674, -0.008366666734218597, 0.014116991311311722, 0.016579391434788704, 0.007753800600767136, 0.011223090812563896, 0.02389472723007202, 0.011769545264542103, 0.04052450880408287, -0.01487539242953062, 0.01539568044245243, -0.03861640766263008, -0.046910759061574936, 0.01712809130549431, -0.02524910867214203, 0.005387894343584776, 0.0009668265702202916, -0.007333965506404638, 0.061491817235946655, 0.026773694902658463, 0.0019979674834758043, 0.05500206723809242, 0.039842329919338226, -0.04375755786895752, 0.05539434030652046, 0.013961522839963436, 0.019583746790885925, 0.05256464704871178, 0.02492002211511135, -0.023125408217310905, 0.020743051543831825, -0.025286944583058357, -0.008066688664257526, 0.026114052161574364, -0.0060775685124099255, -0.04063066467642784, -0.061468832194805145, 0.0065970770083367825, -0.017071647569537163, 0.00017808875418268144, 0.008541485294699669, -0.020177865400910378, 0.041951633989810944, -0.011319749057292938, 0.014847304672002792, -0.018320871517062187, 0.0013837011065334082, 0.01986897550523281, 0.0215604268014431, 0.039054445922374725, -0.04604090005159378, 0.01164432056248188, -0.024568263441324234, -0.02301277406513691, 0.0569378137588501, -0.028842683881521225, -0.03911922127008438, -0.003339103190228343, -0.01689484342932701, -0.005711774341762066, 0.025353966280817986, 0.006884641479700804, 0.0058862194418907166, 0.012144153006374836, 0.014606514945626259, 0.022733760997653008, -0.05331556126475334, 0.023357195779681206, -0.025639398023486137, -0.00161216058768332, 0.12071479856967926, -0.007176896557211876, 0.02732180245220661, 0.003476918675005436, 0.009059594012796879, -0.014327052049338818, 0.028936807066202164, -0.041648704558610916, 0.021883316338062286, 0.004352529067546129, 0.01726708374917507, -0.0005785785615444183, -0.005453550722450018, -0.011365946382284164, -0.00156669900752604, 0.006600711029022932, -0.001112705678679049, -0.003045516088604927, 0.006107669789344072, -0.025347167626023293, 0.0425199456512928, 0.0010154522024095058, 0.04587441310286522, -0.052577439695596695, -0.03655625134706497, 0.02080998383462429, -0.018683310598134995, 0.013001264072954655, 0.006076543126255274, 0.007759676314890385, 0.027491798624396324, 0.04879751056432724, 0.022160351276397705, 0.03447462618350983, -0.0010868844110518694, 0.03678381070494652, 0.06789172440767288, -0.04237627610564232, 0.001893423032015562, 0.0014377140905708075, 0.04353148490190506, 0.005504305008798838, 0.02979992888867855, 0.03562096506357193, -0.012660713866353035, -0.037272967398166656, -0.031556788831949234, -0.004115528427064419, 0.040464136749506, -0.04742041230201721, 0.03484949469566345, 0.000499516143463552, -0.02347324602305889, -0.03035961650311947, -0.01670028828084469, 0.006194456946104765, -0.05758590251207352, -0.01497554685920477, 0.03431353718042374, -0.0336230993270874, 0.024267155677080154, -0.005566350184381008, -0.01209947094321251, 0.02664325200021267, 0.04124853387475014, -0.04483523592352867, -0.011556304059922695, 0.0636272206902504, 0.02425854466855526, -0.029211582615971565, -0.01900949887931347, 0.0239176657050848, -0.04405125230550766, 0.006530554033815861, 0.05163849517703056, -0.009486112743616104, 0.011540819890797138, -0.009399089962244034, 0.01085352711379528, 0.05926291644573212, 0.02073473110795021, -0.001425604335963726, -0.0011060350807383657, 0.010822925716638565, 0.03701194375753403, -0.03549620509147644, 0.0015965545317158103, 0.005391917657107115, 0.06910540163516998, 0.02404499240219593, 0.06897908449172974, 0.053734540939331055, 0.024440793320536613, 0.03908705711364746, 0.009444361552596092, -0.0064466590993106365, -0.007885419763624668, -0.005316868424415588, 0.01285130251199007, 0.020845333114266396, 0.019375568255782127, 0.004522401373833418, 0.012102211825549603, -0.007313556969165802, -0.027194606140255928, -0.00876094214618206, 0.02158913016319275, -0.016710150986909866, 0.05274858698248863, 0.029837580397725105, 0.00948207825422287, -0.04331027343869209, -0.018048947677016258, 0.022918391972780228, 0.08133670687675476, -0.026575744152069092, 0.0034648366272449493, 0.015983551740646362, 0.03136692941188812, 0.005207833368331194, -0.012174975126981735, 0.023844094946980476, 0.027759265154600143, 0.004220044706016779, 0.021480664610862732, -0.012267415411770344, -0.03681589663028717, -0.00800806563347578, -0.07235534489154816, -0.02096693031489849, -0.030299169942736626, -0.06752181798219681, -0.02008674480021, 0.02379016764461994, -0.06407049298286438, 0.038046739995479584, -0.0024127508513629436, -0.015378552488982677, -0.035737767815589905, -0.005157430190593004, 0.05556843802332878, 0.023124054074287415, 0.01994607225060463, -0.021558400243520737, 0.019654739648103714, -0.0029974861536175013, 0.055545151233673096, 0.008601812645792961, -0.012952446937561035, 0.01750369556248188, -0.019045354798436165, 0.02713177539408207, -0.03101501800119877, -0.012863274663686752, -0.0035122637636959553, -0.016474870964884758, -0.0429430790245533, -0.04794047027826309, -0.0160386823117733, -0.01866314746439457, -0.00024420811678282917, -0.0459430068731308, 0.04881458356976509, 0.012131157331168652, -0.015374785289168358, 0.05068501457571983, 0.049728211015462875, -0.02204439602792263, 0.023961743339896202, 0.011940496042370796, 0.015066228806972504, -0.03922312334179878, 0.047026049345731735, 0.03617594391107559, -0.010774693451821804, -0.0389990471303463, 0.006116625852882862, -0.020110459998250008, -0.020335989072918892, -0.022424306720495224, -0.04942725598812103, -0.042842134833335876, 0.058185357600450516, -0.0059135607443749905, -0.050769198685884476, 0.008078210987150669, -0.0195417869836092, -0.02677573822438717, -0.004057999234646559, -0.03473591431975365, 0.03331121429800987, 0.03674140200018883, 0.03550337255001068, 0.01094701699912548, -0.003176305443048477, 0.02622218243777752, 0.01637297496199608, 0.03956068679690361, -0.023530079051852226, 0.002032012213021517, 0.05210832878947258, 0.00015744060510769486, -0.003683876246213913, 0.023297706618905067, -0.015600526705384254, 0.015071261674165726, 0.0010729936184361577, -0.0447826124727726, 0.0011067085433751345, 0.024283671751618385, 0.029028523713350296, 0.010278859175741673, 0.06185823306441307, -0.06989284604787827, -0.021252799779176712, -0.0025081599596887827, 0.027267681434750557, 0.016130100935697556, -0.023129181936383247, 0.019412372261285782, 0.010090857744216919, -0.038618482649326324, -0.07535483688116074, 0.01660909876227379, 0.02523842453956604, 0.06882402300834656, -0.06975826621055603, 0.04646075516939163, 0.005518509540706873, -0.013806607574224472, 0.05081567540764809, -0.04360199719667435, -0.012296205386519432, 0.03847658634185791, -0.030400579795241356, 0.045798249542713165, -0.043793290853500366, 0.009484689682722092, 0.015713367611169815, -0.005759198218584061, 0.04463111609220505, 0.03397057577967644, 0.027411047369241714, -0.00676680076867342, -0.021229585632681847, -0.00961142685264349, 0.01359510887414217, -0.007853635586798191, -0.0019932009745389223, -0.009864842519164085, -0.013591242022812366, -0.053689491003751755, -0.035380929708480835, 0.014884896576404572, 0.05583645775914192, 0.028651833534240723, -0.015832876786589622, 0.04294213280081749, -0.0012503473553806543, 0.005840222351253033, 0.04167705401778221, 0.006565446499735117, -0.019499918445944786, -0.02372921258211136, 0.0016373879043385386, 0.007113317493349314, -0.013292408548295498, -0.011624794453382492, -0.023461276665329933, -0.04720385745167732, 0.008757599629461765, 0.013421074487268925, -0.007326774764806032, -0.0404367670416832, 0.02676588110625744, -0.013426858931779861, 0.0018510492518544197, -0.0030556924175471067, -0.0017442810349166393, -0.023145265877246857, 0.031063063070178032, 0.024826688691973686, -0.02291320078074932, 0.005701509770005941, -0.02786381170153618, 0.007566345855593681, 0.05664709210395813, -0.06194474548101425, -0.045625779777765274, -0.047319475561380386, -0.02985323965549469, -0.03012646920979023, 0.04804174229502678, 0.06599507480859756, -0.018657125532627106, 0.0035865753889083862, -0.0512494221329689, 0.020286384969949722, 0.04561148211359978, -0.025423763319849968, -0.021044056862592697, 0.004980371333658695, 0.04052303731441498, -0.008656628429889679, 0.0050302911549806595, -0.0003191703581251204, -0.01773315668106079, 0.0039123957976698875, -0.056588996201753616, 0.011675151996314526, -0.008683214895427227, -0.0043500810861587524, 0.0036599677987396717, 0.028486568480730057, 0.0027092224918305874, 0.03231200575828552, -0.015074369497597218, 0.006093323230743408, -0.0017381526995450258, 0.034653279930353165, -0.0014605168253183365, -0.07080648094415665, 0.055367860943078995, 0.003423234447836876, -0.013524235226213932, 0.03318396583199501, 0.060431670397520065, -0.019212599843740463, 0.023559845983982086, 0.0031598981004208326, -0.06306443363428116, 0.04135924205183983, -0.012625118717551231, 0.017378095537424088, -0.005930958315730095, -0.01794918067753315, 0.01820334792137146, -0.04937495291233063, 0.05376332998275757, 0.03215135261416435, -0.022406769916415215, -0.04028601199388504, -0.04255678504705429, -0.02667749486863613, -0.01008001808077097, -0.028656570240855217, 0.02981850877404213, 0.004515811335295439, -0.024818096309900284, 0.0043337089009583, -0.034370943903923035, -0.014844167046248913, -0.018337998539209366, 0.005924849770963192, 0.01732173003256321, 0.02230239287018776, -0.007426541298627853, 0.013955017551779747, -0.028329337015748024, -0.05137044936418533, 0.004814594518393278, -0.019364645704627037, -0.029070492833852768, -0.044178470969200134, 0.01905934512615204, -0.022033853456377983, -0.01706739142537117, -0.024243121966719627, 0.03307192772626877, -0.006446637213230133, 0.011319906450808048, 0.01166117936372757, 0.029969854280352592, 0.012521972879767418, -0.008605669252574444, -0.02758784219622612, 0.03480290248990059, 0.03421863913536072, -0.05622868239879608, -0.021896975114941597, 0.037658147513866425, -0.03860431909561157, 0.0378495529294014, 0.011793168261647224, -0.02077673375606537, -0.02502119168639183, -0.0494045689702034, 0.031902115792036057, -0.007889531552791595, -0.0016808565706014633, -0.05107847973704338, -0.03505052253603935, -0.021518666297197342, 0.009764156304299831, 0.026775537058711052, -0.025105422362685204, -0.006139709614217281, -0.02084820531308651, 0.03850021958351135, -0.014807739295065403, -0.01629507541656494, -0.013095078989863396, 0.025866517797112465, 0.009151452220976353, 0.043735530227422714, -0.009761091321706772, 0.014742093160748482, -0.004710210487246513, -0.0055543407797813416, 0.034513138234615326, -0.0018447641050443053, -0.050665006041526794, -0.05702957138419151, 0.005195903591811657, 0.0204632505774498, 0.02068699337542057, 0.013509660959243774, -0.028269080445170403, 0.0377214141190052, -0.05135796219110489, -0.007152744103223085, -0.0058934809640049934, -0.0036429394967854023, -0.028789345175027847, -0.012242130935192108, 0.03729318082332611, -0.009509877301752567, 0.018941259011626244, 0.018737636506557465, 0.055925317108631134, 0.023448344320058823, 0.004424831364303827, -0.03452730178833008, -0.022974103689193726, -0.04152708500623703, -0.06290462613105774, 0.020624080672860146, -0.034401144832372665, -0.031415075063705444, -0.013525773771107197, -0.009769950062036514, 0.046216461807489395, -0.014014874584972858, 0.0685332790017128, 0.03440890088677406, 0.027429379522800446, -0.0014067470328882337, -0.0012737291399389505, 0.010960202664136887, 0.025191159918904305, -0.00624339422211051, 0.01065939199179411, -0.014775450341403484, -0.019002551212906837, -0.01775740645825863, -0.047221194952726364, -0.0342257060110569, -0.03353491425514221, -0.01492323074489832, 0.07217925786972046, -0.0332040935754776, 0.028700070455670357, 0.04269583523273468, -0.07813405245542526, -0.04916892945766449, 0.035719797015190125, -0.022337090224027634, 0.006676587741822004, 0.05747589096426964, 0.013795794919133186, -0.002348602283746004, 0.016111386939883232, -0.019823582842946053, 0.009619666263461113, -0.044772833585739136, 0.04935014992952347, -0.03521962836384773, -0.04689987376332283, 0.03243979066610336, 0.03468801826238632, -0.04687852784991264, -0.057932138442993164, -0.022008711472153664, -0.006901815999299288, 0.008955208584666252, -0.04076559469103813, -0.006964229978621006, -0.041143663227558136, -0.02205786667764187, -0.008340525440871716, -0.004080658778548241, 0.011680684983730316, 0.015709884464740753, 0.01842275820672512, 0.04464057460427284, -0.04325735196471214, 0.042714353650808334, 0.05113649368286133, 0.0019326064502820373, 0.020822547376155853, -0.0523802675306797, 0.002867745701223612, -0.021803118288517, -0.007235689088702202, 0.07159192115068436, -0.039551299065351486, 0.012676090933382511, -0.002658088691532612, 0.014517676085233688, 0.03806116804480553, -0.00176749296952039, -0.008971025235950947, 0.029799697920680046, 0.006093116942793131, -0.08485233038663864, -0.032030221074819565, 0.032132573425769806, 0.021001072600483894, 0.05441659688949585, -0.0520239993929863, 0.010269447229802608, 0.025171536952257156, 0.021987318992614746, 0.0020800179336220026, -0.05838863179087639, -0.039575811475515366, -0.046220336109399796, -0.0237386766821146, -0.0283696036785841, -0.0188706386834383, -0.01931806281208992, 0.013962479308247566, 0.011999529786407948, -0.0592682808637619, -0.005527535453438759, 0.01782272383570671, -0.002312928903847933, -0.008766531012952328, -0.06258776783943176, 0.005130344070494175, -0.012423482723534107, -0.025995681062340736, -0.05987407639622688, -0.0031710490584373474, 0.01157182827591896, -0.005768405273556709, -0.013861781917512417, 0.02265898697078228, 0.005568160675466061, 0.03699950873851776, 0.00598868215456605, 0.01745649054646492, -0.032639939337968826, -0.026252392679452896, -0.020113836973905563, 0.029831238090991974, -0.03345309942960739, 0.021907711401581764, 0.03708726167678833, -0.013531995005905628, 0.018506020307540894, 0.01664717122912407, -0.03622734546661377, -0.006704205647110939, 0.012863848358392715, 0.020757991820573807, 0.011283937841653824, -0.0275731161236763, -0.02550026774406433, 0.022582020610570908, -0.04487789794802666, 0.018709415569901466, -0.018281495198607445, -0.002687117550522089, -0.001860400545410812, 0.009030891582369804, 0.0070110815577209, 0.0404200479388237, 0.001968040131032467, 0.06183091178536415, -0.017367945984005928, 0.004768272861838341, 0.0040525696240365505, 0.010536064393818378, 0.05010613426566124, 0.004965605679899454, 0.006230990402400494, -0.02905723825097084, 0.053776778280735016, 0.0025169970467686653, -0.01392066664993763, 0.034734345972537994, -0.00843606237322092, -0.013976996764540672, -0.03193056583404541, -0.02184433862566948, 0.01634468138217926, 0.07616601139307022, 0.00018648666446097195, 0.028736120089888573, 0.006528122816234827, -0.03850347548723221, -0.019005849957466125, 0.03276729956269264, -0.07640614360570908, -0.04836709052324295, 0.04697813838720322, -0.025118425488471985, 0.017052844166755676, -0.03449688479304314, -0.03288659825921059, -0.014873008243739605, 0.020708879455924034, -0.019969739019870758, -0.013996129855513573, 0.030520029366016388, 0.01831732504069805, 0.0614885650575161, 0.0029783931095153093, 0.004746216349303722, -0.005269905086606741, 0.027614803984761238, -0.05402751266956329, -0.05129867047071457, 0.013849950395524502, 0.03729119896888733, 0.030009714886546135, -0.000291538453893736, -0.036517348140478134, 0.002630055183544755, -0.0022979341447353363, 0.035105377435684204, 0.012763715349137783, 0.013464638032019138, -0.011725637130439281, 0.023441148921847343, -0.016000892966985703, -0.0073561714962124825, -0.04649798572063446, 0.027279715985059738, 0.016022469848394394, -0.005891427863389254, -0.02849162183701992, 0.06969433277845383, 0.047300297766923904, -0.002448812359943986, 0.03386605158448219, 0.01840837672352791, 0.0238143652677536, -0.015915660187602043, -0.014346294105052948, 0.007937069050967693, 0.05147426947951317, 0.06572248041629791, 0.04458077251911163, -0.013526546768844128, 0.039737068116664886, 0.06338673830032349, -0.0400097481906414, 0.02120870165526867, 0.03844175115227699, 0.021839620545506477, -0.036033064126968384, 0.034135717898607254, -0.027579795569181442, 0.021578045561909676, 0.027205057442188263, 0.025264885276556015, 0.014091955497860909, -0.014230446889996529, -0.017582688480615616, 0.006425296422094107, -0.028300203382968903, 0.04491385817527771, -0.001956032356247306, -0.011378617025911808, -0.010934129357337952, -0.014287031255662441, 0.006621728651225567, 0.028753461316227913, -0.006275552790611982, -0.038481712341308594, 0.02616378292441368, 0.03594721481204033, -0.0033293303567916155, 0.053297340869903564, 0.036330822855234146, 0.027667710557579994, -0.03962141275405884, 0.025436758995056152, 0.031578026711940765, -0.0038735857233405113, -0.046844232827425, 0.02398540824651718, -0.046243902295827866, 0.02822442166507244, -0.005720712710171938, -0.004105846863240004, 0.03250695765018463, -0.047308795154094696, -0.02849907986819744, -0.06813056766986847, 0.026640741154551506, -0.04193505272269249, -0.025357810780405998, 0.024723799899220467, -0.0008602842572145164, 0.01129472628235817, 0.03826136514544487, -0.02089873142540455, 0.040770288556814194, 0.005882865283638239, 0.05197404697537422, -0.013412727043032646, 0.04390730336308479, 0.05899875611066818, -0.0018887969199568033, -0.040348317474126816, 0.031366411596536636, -0.011403221637010574, -0.03140568360686302, -0.03258705511689186, -0.0198321845382452, -0.01489605475217104, -0.003254685318097472, -0.02796674147248268, -0.017919884994626045, 0.024082651361823082, -0.01875966787338257, -0.05835059657692909, 0.002701583318412304, 0.009820443578064442, -0.042191267013549805, -0.012747325003147125, 0.028710337355732918, 0.04919788986444473, -0.015510503202676773, -0.035387132316827774, -0.0272350050508976, -0.02193579263985157, -0.026378612965345383, -0.01824045367538929, 0.03831716999411583, -0.024516379460692406, -0.02725510112941265, -0.004751026630401611, -0.025294912979006767, -0.029979020357131958, -0.006622858811169863, -0.00766023201867938, -0.018876535817980766, 0.03644563630223274, 0.036988843232393265, 0.028888892382383347, 0.02350815385580063, -0.02612285688519478, -0.017343368381261826, 0.0324978269636631, 0.07393673807382584, -0.005347164813429117, 0.0718022808432579, 0.03585737571120262, -0.011621574871242046, 0.005015048198401928, -0.032919447869062424, 0.00045662044431082904, -0.027471667155623436, -0.005047190934419632, -0.014189380221068859, -0.0008304079528898001, -0.025908848270773888, -0.06553821265697479, -0.013163108378648758, 0.024946192279458046, -0.0025817127898335457, -0.006528347730636597, -0.0525030754506588, -0.0275309756398201, -0.044218000024557114, -0.005685021635144949, -0.05124572664499283, 0.014471324160695076, 0.0198126882314682, -0.016453273594379425, 0.006877757143229246, -0.08082824945449829, 0.1641998589038849, 0.0453881211578846, 0.02519911527633667, 0.013433365151286125, 0.013058599084615707, 0.06099172681570053, 0.03583907335996628, -0.031396280974149704, -0.012830469757318497, -0.025406213477253914, 0.005399525165557861, 0.014201839454472065, 0.031442392617464066, 0.02510681375861168, 0.0010362484026700258, 0.06475875526666641, -0.03134934976696968, -0.011843997053802013, 0.036816466599702835, -0.04530860111117363, -0.06467331945896149, 0.02277165651321411, 0.01237080805003643, 0.022283904254436493, -0.02245604619383812, 0.0341046005487442, 0.012650451622903347, -0.02048632875084877, 0.0066983457654714584, -0.00816566962748766, 0.029642196372151375, -0.04822809621691704, 0.016905711963772774, -0.0066238404251635075, -0.03370844945311546, 0.059852905571460724, 0.00956551730632782, -0.042961061000823975, 0.02004336565732956, 0.024296607822179794, -0.014173205941915512, 0.0009015724644996226, -0.006659039296209812, -0.04439380019903183, 0.005613008048385382, 0.03228352591395378, -0.0041385069489479065, -0.004002963658422232, 0.03709086403250694, -0.05136122927069664, 0.02397470921278, -0.0409696064889431, 0.019664691761136055, -0.012233851477503777, -0.04063352197408676, 0.01466765720397234, -0.025613898411393166, -0.009156904183328152, -0.028930649161338806, 0.009959910064935684, 0.03687891736626625, -0.0018614341970533133, -0.0075017232447862625, -0.003253920003771782, -0.022279556840658188, -0.02438715286552906, 0.019776713103055954, -0.00010394974378868937, -0.015625204890966415, -0.015171107836067677, -0.004268595017492771, 0.012575951404869556, 0.006108155939728022, -0.024715472012758255, 0.0309562087059021, 0.0731855109333992, -0.033525072038173676, 0.026058172807097435, -0.006064083427190781, -0.05499142035841942, 0.009555889293551445, -0.012506634928286076, -0.01533418893814087, -0.02197703719139099, 0.036336299031972885, 0.020215725526213646, -0.06531219184398651, -0.02401852235198021, -0.01463719829916954, 0.01877862960100174, 0.039551179856061935, 0.02541271410882473, -0.0013808771036565304, -0.022753439843654633, 0.006447909865528345 ]
Designed by post-war architect Constantin Brodzki for cement company CBR in the late 1960s, the awkward allure of this building with a façade made from 756 prefab convex oval concrete modules is today home to "Belgium's finest office"—Fosbury & Sons founders Stijn Geeraets, Maarten Van Gool, and Serge Hannecart having acquired the brutalist beauty for their first foray into Brussels having (as is easily the case) fallen in love with the emotive structure at first sight. "The character of the building, its history, its exceptional architecture, the spirit of the age in which it was built … It just fit," explains Stijn Geeraets. Following the success of the trio's first outpost in the WATT Tower, Antwerp, Fosbury & Sons' second coworking venue is just 10 minutes away from Avenue Louise—close to the 10,920-acre Sonian Forest—and is split over seven of the icon's nine floors, occupying an impressive 7,000 square metres of a building that kicked off a whole new wave in Belgian architecture; earning Brodzki an inclusion in the Transformations in Modern Architecture 1960-1980 exhibition at New York's Museum of Modern Art. With capacity for 600 people, 250 companies, and a vision to revive the concept of 'work'—whilst encouraging and fostering collaborations between its coworkers—Fosbury & Sons Boitsfort seeks to meet the needs of today's employees, freelancers and entrepreneurs, providing them with inspired, innovative surroundings, and oodles of drop-dead design eye candy. Design agency Going East have created a mature and warm aesthetic that tempers the stark internal brutalism with some seriously luxury interiors; whilst care has been given to ensure that existing structures and the overall identity of the building remain dominant. Members can access a range of vibrant, homemade healthy plates prepared with love by Antwerp coffee aficionados Coffeelabs, who'll also be serving their own house blend coffee and fresh juices to keep the creative minds fed and the ideas flowing. The office is dead, long live the office.
[ -0.006526942364871502, -0.025036215782165527, -0.03174079954624176, -0.0005809197318740189, -0.008179554715752602, -0.02156161703169346, -0.014105115085840225, 0.013688504695892334, 0.03040456399321556, -0.020808078348636627, 0.017994292080402374, -0.001297382521443069, -0.00021831625781487674, -0.021356739103794098, 0.023190168663859367, 0.0053089275024831295, -0.018856404349207878, -0.00377173675224185, -0.025432027876377106, 0.006471303291618824, 0.004309411626309156, -0.006697087548673153, -0.04840265214443207, -0.04161941632628441, -0.01039139460772276, 0.03837011754512787, -0.00038807839155197144, -0.007506640162318945, 0.075307197868824, 0.08169419318437576, -0.024865705519914627, -0.04890576750040054, 0.02767614647746086, -0.05640789866447449, -0.03141969442367554, -0.0249777939170599, 0.03210079297423363, -0.03912832960486412, -0.03396831825375557, -0.036942847073078156, -0.00033647342934273183, -0.030525853857398033, 0.022958330810070038, -0.03369981795549393, -0.017218176275491714, -0.002440509619191289, 0.023922447115182877, -0.006256698165088892, 0.04730406403541565, -0.04110158979892731, 0.010575461201369762, 0.017803482711315155, 0.008887950330972672, -0.006638554856181145, 0.025590790435671806, -0.01710469461977482, -0.005082923453301191, 0.0012046286137774587, -0.011513462290167809, 0.04916878417134285, 0.03307647630572319, -0.002191997831687331, 0.03466758504509926, -0.04347005486488342, 0.027389846742153168, 0.011404133401811123, 0.022573120892047882, -0.013983719982206821, 0.01578259840607643, -0.00988936796784401, 0.0011565842432901263, -0.00395712535828352, -0.021240247413516045, -0.008880522102117538, 0.007338325027376413, -0.0064878747798502445, -0.011894709430634975, 0.012078705243766308, 0.0027182584162801504, -0.03494822978973389, 0.03136599436402321, 0.02121971920132637, 0.005832557566463947, 0.006994221359491348, -0.05351115018129349, 0.005745667032897472, -0.024304531514644623, 0.012277181260287762, 0.006439079996198416, 0.0321471244096756, 0.02528587356209755, 0.04370414838194847, 0.001468020724132657, -0.0035856731701642275, 0.018402017652988434, 0.03936994820833206, -0.04870995134115219, 0.032450806349515915, -0.008656535297632217, 0.0058870636858046055, 0.013968345709145069, 0.04098892584443092, -0.012326771393418312, 0.05254262685775757, -0.04008064419031143, -0.015497144311666489, -0.005042665172368288, -0.011484052985906601, 0.028400074690580368, -0.027128254994750023, -0.014676318503916264, -0.010186504572629929, 0.023850053548812866, 0.023811757564544678, 0.008267722092568874, 0.03714283928275108, -0.016066374257206917, 0.03184995427727699, -0.04122951999306679, 0.025901461020112038, -0.0007171143079176545, 0.004681919701397419, 0.04572491720318794, -0.004447930958122015, 0.0009973742999136448, -0.023666862398386, -0.034423649311065674, 0.04451991990208626, -0.015471125952899456, -0.03191971406340599, 0.0071730962954461575, -0.041512299329042435, -0.02307407557964325, 0.02655734308063984, -0.005145191680639982, 0.014995167031884193, 0.007535086013376713, 0.029314659535884857, -0.013242924585938454, -0.0504545196890831, 0.05817402899265289, 0.014190185815095901, -0.004149973392486572, 0.10094999521970749, -0.021692655980587006, 0.01184972282499075, -0.013186883181333542, -0.009561395272612572, -0.05475882068276405, 0.051035188138484955, -0.015472283586859703, 0.03719817101955414, -0.016696125268936157, 0.023224957287311554, -0.009233284741640091, 0.006751033943146467, -0.02380446530878544, 0.005069098435342312, 0.01588434725999832, 0.04089546948671341, -0.038001544773578644, 0.017744436860084534, -0.0006330953910946846, 0.023272795602679253, -0.025474634021520615, 0.04021887108683586, -0.04842112585902214, 0.01016048900783062, -0.022561147809028625, -0.032064881175756454, -0.01715180091559887, 0.03466067463159561, -0.007344461046159267, 0.015946798026561737, 0.02130211517214775, 0.06941147893667221, 0.056491248309612274, 0.018130961805582047, 0.023953644558787346, 0.05027199164032936, -0.02884037047624588, -0.014328538440167904, 0.0241501834243536, 0.07128841429948807, 0.007200527470558882, 0.00196256535127759, -0.01986631378531456, -0.009407849982380867, -0.011754726059734821, -0.035779956728219986, -0.0109383100643754, 0.053026068955659866, -0.03824619576334953, 0.02333126775920391, -0.010318419896066189, -0.01195640116930008, -0.02462172508239746, -0.02126718871295452, 0.011097939684987068, -0.05505893751978874, -0.02600870281457901, 0.06359713524580002, -0.0033704093657433987, 0.03307604417204857, 0.004559210501611233, -0.035522811114788055, 0.019880009815096855, 0.056700192391872406, -0.028645260259509087, 0.018063509836792946, 0.023541612550616264, -0.011536910198628902, 0.0076803709380328655, -0.014344118535518646, 0.007612493354827166, -0.02260720171034336, -0.03590713441371918, 0.043481867760419846, 0.005343912169337273, -0.015002908185124397, 0.003972302656620741, 0.0002486035809852183, 0.020482724532485008, 0.02496812306344509, -0.023100411519408226, 0.04913236200809479, 0.007507374510169029, 0.06296978145837784, -0.02282005362212658, -0.026448562741279602, -0.0435854010283947, 0.05908692255616188, 0.020434070378541946, 0.0463808998465538, 0.028544792905449867, 0.0015813850332051516, 0.03491780906915665, 0.019101129844784737, -0.026139836758375168, 0.03050338849425316, -0.006422905251383781, 0.028258252888917923, 0.04529399052262306, 0.03678476810455322, -0.010130345821380615, 0.021196020767092705, -0.004704682622104883, 0.01599431037902832, 0.00690627982839942, 0.04246601462364197, -0.001734387595206499, 0.04643578827381134, -0.0056431908160448074, 0.03495289757847786, -0.04058948904275894, 0.010577205568552017, 0.03128313273191452, 0.07575919479131699, 0.0051460713148117065, -0.011950340121984482, -0.0022958361078053713, 0.00727105000987649, -0.007403188850730658, 0.012443311512470245, 0.05210196226835251, 0.0017148996703326702, -0.007439248263835907, 0.026063699275255203, -0.034774281084537506, -0.02951381914317608, -0.04723326861858368, -0.03659519553184509, -0.026924235746264458, -0.035644207149744034, -0.049489591270685196, -0.004095239564776421, 0.054075658321380615, -0.021004458889365196, 0.042238056659698486, 0.0006384789012372494, -0.0192064568400383, -0.019588159397244453, -0.009725266136229038, 0.0402265265583992, 0.03793220967054367, 0.03605350852012634, -0.02605242282152176, 0.004220086149871349, -0.0521819032728672, 0.022246558219194412, -0.03571133688092232, 0.007441377732902765, -0.027461107820272446, -0.0008741371566429734, 0.02222931571304798, -0.006432192400097847, -0.03034001961350441, -0.005477935541421175, -0.036116499453783035, -0.07388367503881454, -0.02543921396136284, 0.011571415700018406, -0.01373059581965208, -0.019276557490229607, -0.0058610206469893456, 0.04865933209657669, -0.008290456607937813, -0.02061276137828827, 0.05696636438369751, 0.036461230367422104, -0.02143571525812149, 0.054150018841028214, 0.017860637977719307, 0.004649027716368437, -0.05323382839560509, 0.030036253854632378, 0.047972019761800766, 0.030129598453640938, -0.04102637618780136, -0.019675007089972496, -0.02215183898806572, 0.02235289104282856, 0.017267808318138123, -0.01862570084631443, -0.011767004616558552, 0.0519111342728138, 0.006274752784520388, -0.04334815964102745, 0.027218950912356377, -0.0035874645691365004, -0.03967642784118652, -0.050062235444784164, -0.04210934787988663, 0.038440607488155365, -0.022603387013077736, 0.02067534253001213, 0.025134379044175148, -0.0270262211561203, -0.006782082375138998, -0.00503405649214983, 0.040462225675582886, -0.015354647301137447, -0.008733680471777916, 0.04325716570019722, -0.007128695957362652, 0.04400105029344559, 0.020866215229034424, 0.010864037089049816, -0.034270577132701874, -0.006062961649149656, 0.002835450693964958, 0.017825495451688766, 0.030540242791175842, 0.034602198749780655, 0.008999286219477654, 0.03746183216571808, -0.026757439598441124, -0.01671873964369297, -0.014621046371757984, 0.001864249468781054, 0.04340117797255516, -0.0201837420463562, 0.007623875048011541, 0.014258590526878834, -0.07912769168615341, -0.039471063762903214, -0.013133557513356209, 0.024191172793507576, 0.04814177006483078, -0.0862380638718605, 0.06302066147327423, 0.020051488652825356, -0.04844722896814346, 0.029432544484734535, -0.034494753926992416, -0.022507112473249435, 0.011603410355746746, -0.012152126990258694, 0.036740969866514206, -0.027440089732408524, 0.040976814925670624, -0.05120149627327919, -0.001265356200747192, 0.03909551724791527, 0.022977478802204132, 0.03799687698483467, -0.017672834917902946, -0.03752676397562027, 0.002339170314371586, -0.030883612111210823, -0.010137825272977352, -0.020852450281381607, 0.0244960505515337, 0.009742154739797115, -0.03518737852573395, -0.05811239778995514, 0.023466169834136963, 0.02687065489590168, 0.050377972424030304, 0.0032085285056382418, 0.02679232507944107, 0.010337739251554012, -0.021948322653770447, 0.0457141175866127, -0.04924372211098671, 0.02458242140710354, -0.03686017543077469, 0.03843303397297859, 0.023862147703766823, -0.023956190794706345, -0.032740604132413864, -0.011286304332315922, -0.027937287464737892, 0.034433089196681976, -0.01944330893456936, -0.027495499700307846, -0.027801938354969025, -0.009546177461743355, 0.015033967792987823, 0.06298671662807465, -0.024121977388858795, 0.005004476755857468, -0.008996166288852692, 0.028763629496097565, 0.006513615604490042, -0.032628126442432404, -0.0001200005499413237, -0.035940200090408325, 0.04357532784342766, 0.03645186126232147, -0.01589149236679077, -0.050956904888153076, -0.04477975144982338, -0.011031043715775013, -0.05157575383782387, 0.011270041577517986, 0.013676266185939312, 0.012324893847107887, 0.018492503091692924, -0.05223077908158302, 0.027530424296855927, 0.03520141914486885, -0.01929267682135105, -0.032550547271966934, 0.0021482983138412237, 0.03598767891526222, -0.00837032962590456, 0.02948409877717495, 0.003171976190060377, -0.011797367595136166, -0.006168867461383343, -0.03742952272295952, 0.037751369178295135, -0.007375091314315796, -0.018256638199090958, -0.030521562322974205, 0.03036360628902912, 0.02867165580391884, 0.06346995383501053, -0.001524504623375833, 0.01020481064915657, -0.02547536976635456, 0.037561800330877304, -0.06498246639966965, -0.03534660488367081, 0.06410554051399231, 0.00409955158829689, -0.03941594064235687, 0.018619323149323463, 0.05470802262425423, -0.04697006195783615, -0.001017419621348381, 0.024241356179118156, -0.040458910167217255, 0.019693350419402122, -0.05017504096031189, 0.018324891105294228, -0.023280978202819824, -0.04611305147409439, 0.01218399778008461, -0.002612822689116001, 0.04633107781410217, 0.021763598546385765, 0.024147752672433853, -0.03724493831396103, -0.031104853376746178, -0.010377448983490467, 0.009040688164532185, -0.04317472130060196, 0.01699114963412285, 0.023500654846429825, 0.006107371300458908, 0.006704417988657951, -0.036730051040649414, -0.006673131603747606, 0.00023849125136621296, -0.04541649669408798, 0.06090448796749115, -0.014437545090913773, 0.00915252324193716, 0.01367072481662035, -0.013632714748382568, -0.034530822187662125, -0.01013614609837532, 0.006139970850199461, -0.02449589967727661, -0.05383412167429924, 0.006246746983379126, -0.0332302488386631, 0.028196416795253754, -0.05004650354385376, -0.018013153225183487, 0.01778886653482914, 0.008068990893661976, 0.010693345218896866, 0.0067918067798018456, -0.009789230301976204, 0.042095594108104706, -0.007563609164208174, 0.04574459046125412, 0.005155434366315603, -0.03572440147399902, -0.012516582384705544, 0.04617971181869507, -0.026532955467700958, 0.0323004350066185, 0.012828514911234379, 0.007340264972299337, -0.033915746957063675, -0.04274563491344452, 0.014311670325696468, -0.052746906876564026, -0.034877803176641464, -0.04240403324365616, -0.05768011510372162, 0.002604130655527115, 0.03538961708545685, -0.0031189466826617718, -0.019239068031311035, 0.019674383103847504, -0.024856362491846085, -0.01274020504206419, -0.03812752291560173, -0.033625442534685135, -0.03680049628019333, 0.010763448663055897, -0.006036373786628246, 0.055726464837789536, -0.018979886546730995, 0.019222967326641083, 0.008431190624833107, -0.006832847371697426, -0.002051952527835965, -0.00446699233725667, -0.03678198531270027, -0.03405502811074257, -0.010429427959024906, -0.017280971631407738, 0.01085712667554617, 0.03543270379304886, -0.02555120550096035, 0.047961290925741196, -0.0366787426173687, 0.0041190143674612045, -0.04062896966934204, -0.038904864341020584, -0.033210478723049164, -0.00024507628404535353, 0.06065468117594719, -0.03316926583647728, -0.0020405403338372707, -0.03572285175323486, 0.03086067922413349, 0.07049880921840668, 0.0009223168599419296, -0.02190910466015339, -0.05272036790847778, -0.04532812908291817, -0.0768032819032669, 0.03191631659865379, -0.03368625044822693, -0.03594915568828583, -0.036526069045066833, -0.005887324921786785, 0.02915029600262642, 0.011276776902377605, 0.034990713000297546, 0.029420137405395508, -0.019080685451626778, -0.015150969848036766, -0.03811612352728844, 0.016746196895837784, 0.02755468711256981, -0.021614059805870056, -0.012998493388295174, -0.01553991436958313, -0.0348176583647728, 0.020682334899902344, -0.03584394231438637, -0.05519011244177818, -0.030555197969079018, -0.02970413863658905, 0.03874397277832031, -0.03664911165833473, 0.0422014556825161, -0.004551761783659458, -0.0574118010699749, -0.026495952159166336, 0.03482309728860855, -0.014766894280910492, -0.0027507052291184664, 0.03853951767086983, -0.008538718335330486, -0.0011280906619504094, 0.020266050472855568, 0.02371794357895851, 0.01018534880131483, -0.01895599067211151, 0.08792376518249512, 0.003985694143921137, -0.03078516013920307, 0.01469708327203989, 0.02082759328186512, -0.05135906860232353, -0.044954124838113785, 0.0017588143236935139, 0.01696709357202053, -0.0006182684446685016, -0.048537760972976685, 0.06899000704288483, -0.02515064738690853, 0.011191094294190407, 0.024867508560419083, 0.04170139133930206, 0.01438678428530693, 0.03983533754944801, 0.025064656510949135, 0.013244128786027431, -0.04810414835810661, 0.010371643118560314, 0.030381103977560997, -0.03030172735452652, -0.03393666446208954, -0.01579578034579754, -0.033545318990945816, 0.02621431276202202, -0.01476308424025774, 0.040861934423446655, -0.006420895457267761, 0.05199204757809639, 0.01883699558675289, -0.013462512753903866, 0.06681475043296814, -0.0022902183700352907, -0.014792773872613907, 0.013834383338689804, -0.019213341176509857, -0.03874526917934418, -0.03862772881984711, 0.009287532418966293, -0.025138521566987038, 0.03621535375714302, -0.04873790219426155, 0.009994485415518284, 0.0399785153567791, -0.005571471527218819, 0.01059833262115717, -0.04807107523083687, -0.05844518542289734, -0.029245641082525253, -0.05817708373069763, -0.009510206058621407, -0.013830184936523438, 0.0273006409406662, -0.00003239823490730487, 0.011995705775916576, -0.010456266812980175, -0.014256555587053299, -0.02468857914209366, -0.011145838536322117, 0.035724200308322906, -0.006848763208836317, -0.006671227980405092, 0.004556084051728249, -0.05198675021529198, -0.03236660733819008, 0.02756264992058277, -0.04528457671403885, -0.019457707181572914, -0.05938015133142471, -0.0246263574808836, 0.006005705799907446, 0.004504092503339052, -0.006987941917032003, -0.0012698047794401646, -0.01924595609307289, -0.05478115752339363, -0.01677638664841652, 0.015252104960381985, -0.019037168473005295, 0.024644089862704277, 0.0021681454963982105, 0.01230384036898613, 0.02254985086619854, -0.02182900719344616, -0.021231703460216522, 0.0156321432441473, -0.012471454218029976, -0.014688607305288315, -0.0105355903506279, -0.05356133356690407, -0.028447480872273445, 0.0032284390181303024, -0.024460403248667717, 0.047491155564785004, 0.009987291879951954, 0.002482702722772956, 0.001735486090183258, -0.022111879661679268, -0.013898450881242752, 0.07535413652658463, -0.02612842060625553, 0.013576912693679333, 0.015336272306740284, 0.004476308822631836, 0.044455938041210175, 0.004994387272745371, 0.015877628698945045, 0.017346402630209923, 0.03352527320384979, -0.050592090934515, -0.017226995900273323, 0.0012273273896425962, -0.02981579676270485, 0.01904883235692978, -0.004855245351791382, -0.03398874029517174, -0.05421895161271095, -0.01233933586627245, 0.007270109839737415, 0.014827815815806389, -0.0038231764920055866, -0.008224042132496834, 0.042542070150375366, -0.008930648677051067, -0.05787128955125809, -0.010265141725540161, -0.07511534541845322, -0.04242907091975212, 0.06049555912613869, -0.011627940461039543, 0.011603977531194687, -0.005257255397737026, -0.041782282292842865, 0.0018215106101706624, -0.024580184370279312, -0.0025512943975627422, -0.03581696376204491, 0.02285093441605568, 0.006865403149276972, 0.022193048149347305, -0.030405191704630852, -0.02075900509953499, 0.036221325397491455, 0.07742299139499664, -0.045533400028944016, -0.03451666608452797, 0.03071853518486023, 0.042427144944667816, -0.017442408949136734, -0.006553034298121929, -0.0033037294633686543, 0.008623112924396992, 0.0024600622709840536, 0.006402787286788225, -0.01788466051220894, 0.016897620633244514, -0.004462340380996466, 0.04484117031097412, -0.00552436662837863, -0.0004681941354647279, -0.03528965637087822, 0.053603142499923706, 0.02974681556224823, 0.02400895766913891, -0.04346165060997009, 0.04636416956782341, 0.023044003173708916, -0.01517641730606556, 0.05369865521788597, -0.003001127392053604, 0.03133048117160797, -0.019148176535964012, 0.021069204434752464, -0.0354754775762558, 0.03340305760502815, 0.031799644231796265, 0.033708296716213226, 0.013012927956879139, 0.033438850194215775, 0.06268104165792465, 0.007428111508488655, 0.005113318562507629, 0.06650453060865402, 0.03960519656538963, -0.030602188780903816, -0.02151707001030445, 0.007153363432735205, 0.03911380469799042, -0.012234892696142197, -0.0067190914414823055, 0.009180145338177681, -0.045252855867147446, -0.009001105092465878, -0.019779019057750702, -0.004925119690597057, 0.050996724516153336, -0.02826983481645584, 0.011288588866591454, -0.028626365587115288, -0.027192337438464165, 0.005790559574961662, 0.06554732471704483, 0.006535931956022978, 0.025994712486863136, 0.006440185941755772, 0.028805626556277275, -0.01961434818804264, 0.06445099413394928, 0.013575955294072628, -0.005627534817904234, -0.01691253110766411, 0.009609942324459553, 0.010548085905611515, 0.009675366804003716, -0.022904494777321815, -0.008181623183190823, -0.03793663904070854, 0.03721807897090912, -0.032145507633686066, -0.012040907517075539, 0.011924517340958118, -0.001634024316444993, -0.009746864438056946, -0.041915636509656906, 0.025841617956757545, -0.042005185037851334, 0.039310354739427567, -0.0005771413561888039, -0.0011311740381643176, -0.03375060483813286, 0.02907123789191246, -0.008189784362912178, 0.023090872913599014, 0.011795621365308762, 0.0656876340508461, 0.0014690785901620984, 0.010952483862638474, 0.03333646431565285, 0.00103843305259943, -0.0006775067886337638, -0.004697668831795454, -0.012024829164147377, -0.013314221054315567, -0.035055335611104965, -0.04246579855680466, -0.026881081983447075, 0.0031441249884665012, -0.02611018903553486, 0.022673815488815308, 0.028010079637169838, 0.02982337772846222, -0.021146362647414207, -0.0256134495139122, 0.0542997308075428, -0.06137903407216072, -0.0008658248698338866, 0.02013811655342579, 0.051980338990688324, -0.005357359070330858, -0.03956455737352371, -0.04350972920656204, -0.034709226340055466, -0.015599175356328487, -0.044077083468437195, 0.02378258667886257, 0.014082335866987705, -0.030835121870040894, -0.05411371961236, -0.0601855032145977, -0.03662718087434769, 0.007207043003290892, -0.04065587744116783, -0.05514347925782204, 0.05046655237674713, 0.02104370668530464, 0.00993846170604229, 0.020640842616558075, -0.006807729601860046, 0.0035016352776437998, 0.020926842465996742, 0.05807960405945778, 0.018091654404997826, 0.05392865836620331, 0.03349076583981514, 0.02338148094713688, 0.027647873386740685, -0.02335248701274395, 0.07666035741567612, -0.03791867941617966, 0.0033377325162291527, -0.01679081842303276, 0.015406213700771332, -0.015107428655028343, -0.047483671456575394, 0.02874773181974888, -0.024791283532977104, 0.015072888694703579, -0.037468843162059784, -0.05700646713376045, -0.008862112648785114, -0.0486583411693573, -0.020127616822719574, -0.01877783052623272, 0.0363747738301754, -0.006079351529479027, 0.00013807065261062235, 0.001982663758099079, -0.057040221989154816, 0.1673702448606491, 0.05566497892141342, 0.017928656190633774, 0.043009523302316666, 0.011271439492702484, 0.05129437521100044, 0.016439998522400856, -0.041380394250154495, -0.012567420490086079, -0.059255823493003845, -0.005074347835034132, 0.005189148709177971, 0.021102914586663246, -0.0025303855072706938, 0.026623625308275223, 0.07529329508543015, -0.0341867059469223, 0.017657605931162834, -0.012472367845475674, -0.02295500412583351, -0.09012982994318008, 0.041711192578077316, 0.016220087185502052, 0.02567734383046627, -0.006249515805393457, 0.016464704647660255, -0.0009252908057533205, -0.06731686741113663, -0.026550421491265297, -0.04611355811357498, 0.03265852853655815, -0.04274618253111839, 0.02517547458410263, -0.020896747708320618, -0.02326323837041855, 0.0603649877011776, -0.005638099741190672, -0.011190630495548248, 0.01516078319400549, 0.03155839070677757, -0.03076917491853237, -0.004151613917201757, 0.030321044847369194, -0.03035615012049675, 0.02561124972999096, 0.011681477539241314, -0.035525981336832047, 0.00027425968437455595, 0.03179163113236427, -0.03991605341434479, 0.07005421072244644, -0.015944523736834526, 0.04972057044506073, 0.004276260267943144, 0.01151051465421915, -0.014418745413422585, -0.007858783937990665, -0.03267449140548706, 0.009868664667010307, 0.02875996194779873, 0.03851490840315819, 0.0025700731202960014, -0.011495881713926792, -0.010129736736416817, 0.002401343546807766, -0.005221752915531397, 0.055816344916820526, 0.010371776297688484, -0.01714862883090973, -0.010147332213819027, -0.013256505131721497, -0.01512238010764122, -0.016803890466690063, -0.01782120019197464, 0.034279074519872665, 0.03162591904401779, -0.026307202875614166, 0.03105344995856285, 0.046599648892879486, -0.032121237367391586, -0.013012274168431759, -0.026682401075959206, -0.014390854164958, 0.018495220690965652, 0.013573918491601944, 0.040507879108190536, -0.03915172815322876, -0.03918799012899399, -0.02997855842113495, 0.057503290474414825, 0.047064006328582764, 0.03194238990545273, -0.016297198832035065, -0.009381929412484169, 0.010244457982480526 ]
Kenneth Andrews Music Director & Conductor ONNY ONLINE Support ONNY About ONNY Contact ONNY James Madeja Principal Trumpet (2020-21) JAMES MADEJA is Professor Emeritus at The Crane School of Music, State University of New York at Potsdam where he taught courses in instrumental music education and studio trumpet and conducted the Crane Concert Band and Crane Brass Ensemble. Dr. Madeja received his EdD in Music Education from the University of Illinois at Urbana-Champaign. He is a charter member of the Orchestra of Northern New York and Northern Symphonic Winds and has been a member of the Potsdam Brass Quintet since 1985. He has toured as cornetist with Keith Brion's New Sousa Band and held the position of conductor of Skyline Brass, a professional large brass ensemble based in Harrisonburg, VA. Prior to joining the faculty of The Crane School of Music in 1985, he developed two successful high school wind band programs in the state of Illinois and directed the Judson College Wind Ensemble. His ensembles have performed for both Presidents Ronald Reagan and George H. W. Bush. From 1990 to 2002, Dr. Madeja was Associate Editor of The Journal of the International Trumpet Guild. His research interests include the history of the American wind band and in particular the contribution of Herbert L. Clarke. His written work has appeared in the Journal of Band Research, College Band Directors National Association (CBDNA) Journal, The Journal of the International Trumpet Guild, The Instrumentalist, The Brass Player, New York State School Music News, Association for Recorded Sound Collections (ARSC) Journal, and Music Educators Journal (MEJ). He is recipient of the SUNY Potsdam President's Award for Excellence in Academic Advising, the MENC Excellence in Teaching Award, and most recently, the 2019 SUNY Chancellor's Award for Excellence in Teaching. About the Orchestra of Northern NY Crane Student Apprentices Adirondack Advisory Committee Watertown Advisory Committee Ticketing Information & Policies Concert Etiquette Open Rehearsals Arts in the North Country NYSCA Logo.png ONNY is supported in part by NYSCA, a state agency, with the support of Governor Andrew Cuomo and the NYS Legislature. NNYCFboldhorizontal10.png crane.png ncac.jpg wdt_banner.png SLC-logoRvsd_600x154.png potsdam_coc_sm.jpg canton_chamber.png cropped-cropped-massena_chamber_logo_small.png Proud member of the: league_title_dark.png Ticketing Prices & Policies Public Safety Plan Beyond the Competition Tuesday Talks with the Maestro ONNY Beyond the Stage Behind the Scenes of ONNY Improv Sessions with ONNY Musicians Mini Music Lessons with ONNY Musicians The ONNY Family Online Cookbook Former YAC Winners Ways to Support ONNY Music Purchase/Rental Giving Levels and Benefits Season Patrons Friends of the Orchestra Business, Foundation & Government Supporters ONNY Golf Classic Sponsorship Orchestra of Northern New York P.O. Box 488 · Potsdam, NY 13676 Office: 315-267-3251 · Cell: 315-212-3440 · Email: info@onny.org Copyright ©2021 The Orchestra of Northern New York.
[ -0.03007449023425579, -0.00998019054532051, -0.008806207217276096, -0.0021385573782026768, 0.0017934866482391953, 0.002878825645893812, -0.01984076388180256, 0.0022158718202263117, 0.030984513461589813, 0.003512078896164894, 0.05813070014119148, 0.005959644913673401, 0.03380783274769783, -0.054354168474674225, -0.009568274952471256, 0.01018455345183611, -0.02777504175901413, -0.015361481346189976, -0.026125969365239143, -0.010408848524093628, -0.009579678066074848, -0.0015894235111773014, -0.05419200658798218, -0.032096970826387405, -0.025817006826400757, 0.031526047736406326, 0.021066715940833092, 0.030293099582195282, 0.04455132409930229, 0.009554611518979073, -0.024047421291470528, -0.03972214087843895, 0.03267727419734001, -0.06625337898731232, -0.02391866408288479, -0.015621008351445198, 0.04368601366877556, -0.03565426543354988, -0.0017583842854946852, -0.07611571997404099, 0.01969839446246624, -0.024732569232583046, 0.013559284619987011, -0.020885588601231575, -0.045082636177539825, -0.006712662056088448, -0.026688676327466965, -0.009271055459976196, -0.017127806320786476, -0.04153015837073326, 0.002792060375213623, -0.010332394391298294, 0.03321998938918114, -0.0050101871602237225, 0.01296643540263176, 0.017729511484503746, -0.0005128430784679949, -0.02899576723575592, -0.02466830052435398, 0.03692509979009628, 0.02663622610270977, -0.003941270522773266, 0.013039632700383663, -0.07262807339429855, 0.0013987006386741996, 0.012644114904105663, -0.025114357471466064, -0.017690736800432205, 0.005869504529982805, -0.006241834256798029, -0.013331446796655655, -0.013979572802782059, -0.01892726495862007, -0.006285151932388544, 0.0012943035690113902, 0.012531916610896587, -0.01309272088110447, 0.015169757418334484, -0.019184447824954987, 0.01705673709511757, 0.03750273957848549, 0.032403118908405304, -0.013046697713434696, 0.015347644686698914, -0.05445753037929535, -0.0012091537937521935, 0.00009767868323251605, 0.015167552046477795, 0.005591106601059437, 0.014105935581028461, 0.01629888080060482, 0.06337659806013107, -0.028901303187012672, 0.002540548564866185, 0.03909469395875931, 0.04072417691349983, -0.04660080745816231, 0.05830741673707962, -0.004143191501498222, -0.023092780262231827, 0.0416334830224514, 0.027866410091519356, 0.0022685250733047724, 0.03741586580872536, -0.022214507684111595, 0.0022007182706147432, 0.002459235256537795, -0.0053936694748699665, -0.009324764832854271, -0.0719461590051651, 0.019524239003658295, -0.01676754280924797, 0.03568463772535324, -0.029249878600239754, 0.023079482838511467, 0.05438278615474701, -0.020703662186861038, 0.06896020472049713, -0.016192495822906494, 0.022723378613591194, 0.03321439400315285, 0.03571518510580063, 0.027596311643719673, -0.024643903598189354, 0.02064664289355278, -0.032532211393117905, -0.039565619081258774, 0.04922907426953316, -0.031338874250650406, -0.017708314582705498, 0.0032787008676677942, -0.07332184165716171, -0.015092117711901665, 0.02193603850901127, -0.002041434170678258, 0.043657273054122925, -0.003097645938396454, 0.04932102933526039, 0.04291302710771561, -0.06918645650148392, 0.060468852519989014, 0.028901129961013794, 0.002553866244852543, 0.09408627450466156, -0.029258573427796364, 0.02628004364669323, -0.015081147663295269, -0.010780921205878258, -0.04150087386369705, 0.05523902177810669, -0.04374925419688225, 0.011681691743433475, -0.01139897108078003, 0.02405649796128273, -0.029219239950180054, 0.012686893343925476, -0.019929135218262672, 0.00575642753392458, 0.039678655564785004, 0.0281766839325428, -0.020745905116200447, -0.020942403003573418, 0.011842544190585613, 0.027316762134432793, -0.00335561647079885, 0.026581477373838425, -0.0004767094214912504, 0.004578948952257633, 0.007409917656332254, -0.009578095749020576, 0.007626579608768225, 0.024704843759536743, -0.0035705321934074163, 0.00299967173486948, 0.013881397433578968, 0.031219985336065292, 0.014815742149949074, 0.01725848577916622, 0.03689116612076759, 0.04295943304896355, -0.012941748835146427, 0.02052491158246994, 0.017702871933579445, 0.026808176189661026, 0.011250418610870838, -0.027544042095541954, -0.012295893393456936, -0.008547980338335037, -0.04630345106124878, -0.011971661821007729, -0.0006932435790076852, 0.02421961911022663, -0.014067080803215504, -0.0061349724419415, 0.0017116280505433679, -0.007566619664430618, 0.010244559496641159, -0.02215016633272171, -0.010172384791076183, -0.034909822046756744, 0.0039058243855834007, 0.05530849099159241, -0.024999937042593956, 0.008034656755626202, -0.014947861433029175, -0.0027420599944889545, 0.05098764970898628, 0.028759069740772247, -0.06970766186714172, 0.011531861498951912, 0.030431272462010384, 0.03390580788254738, 0.006553293205797672, 0.001781617640517652, 0.017100892961025238, 0.001823847065679729, -0.03788270428776741, 0.04450869560241699, 0.00604054844006896, -0.012093296274542809, 0.0269521065056324, 0.016184816136956215, 0.055387016385793686, 0.060023434460163116, -0.014254680834710598, 0.0005010859458707273, 0.03305559605360031, 0.08379612118005753, -0.02088482305407524, -0.0024780614767223597, 0.019315235316753387, 0.030893642455339432, 0.02606433816254139, 0.09588348120450974, 0.0611259751021862, 0.03148973733186722, 0.022527256980538368, 0.05572978034615517, -0.025491511449217796, 0.009830188006162643, -0.027267297729849815, 0.024599047377705574, 0.04436102882027626, 0.06053049489855766, 0.009608890861272812, 0.045171212404966354, -0.01690719835460186, -0.003992350772023201, -0.023354165256023407, 0.011311755515635014, -0.0009029103675857186, 0.06308754533529282, 0.001820641802623868, 0.027015497907996178, -0.026567872613668442, 0.011971204541623592, 0.02991979755461216, 0.029421726241707802, -0.015463843941688538, -0.021017469465732574, 0.016680000349879265, 0.027652451768517494, -0.039624884724617004, 0.021066749468445778, 0.023801283910870552, 0.005091825500130653, 0.00957008171826601, 0.005088966805487871, -0.027623001486063004, -0.05333847925066948, -0.03733984753489494, -0.06318236142396927, -0.02059783786535263, -0.022800005972385406, -0.051134780049324036, -0.008317196741700172, 0.0527619831264019, -0.05572985112667084, 0.03212539479136467, 0.022338321432471275, -0.0036593538243323565, -0.030534429475665092, -0.04829702526330948, 0.04574812203645706, 0.036844320595264435, 0.038828786462545395, -0.04088032245635986, 0.015186826698482037, -0.0040495977737009525, 0.024847455322742462, -0.026566706597805023, -0.025822728872299194, 0.02423114888370037, -0.005624218378216028, 0.03882678970694542, -0.03342553600668907, -0.02284291200339794, -0.01979736238718033, -0.04312458261847496, -0.05778195336461067, -0.022152332589030266, 0.016855383291840553, 0.0001563134283060208, 0.003013733308762312, -0.039177555590867996, 0.05675327777862549, 0.013400583527982235, -0.061023492366075516, 0.028750639408826828, 0.024584254249930382, -0.038126278668642044, 0.046036481857299805, 0.042091112583875656, -0.01199222169816494, -0.042745910584926605, 0.044291187077760696, 0.03853347897529602, 0.03595214709639549, -0.04879540950059891, -0.020771576091647148, -0.04998208209872246, 0.012320641428232193, 0.008366514928638935, -0.034585800021886826, -0.014533757232129574, 0.061648041009902954, -0.003360726637765765, -0.06689480692148209, 0.055430877953767776, -0.04972632974386215, -0.02168874815106392, -0.057683009654283524, -0.027266064658761024, 0.014589743688702583, 0.03432412073016167, 0.06527365744113922, 0.018348580226302147, -0.013593669049441814, 0.005263632163405418, 0.007392187137156725, 0.0677606612443924, -0.031195325776934624, 0.004618150647729635, 0.025882359594106674, -0.0019164527766406536, 0.013484599068760872, 0.013219510205090046, -0.022128626704216003, 0.005340472795069218, 0.031077895313501358, -0.0018213788280263543, -0.005810289643704891, 0.0023526414297521114, -0.01710355281829834, 0.016613246873021126, 0.04364323243498802, -0.051135338842868805, -0.003549703862518072, -0.028364919126033783, 0.02247081883251667, 0.029069187119603157, 0.005320442840456963, 0.014940625056624413, -0.0454709529876709, -0.03029508888721466, -0.05078820511698723, 0.0013272901996970177, 0.026918558403849602, 0.05534898117184639, -0.09297766536474228, 0.0486958846449852, -0.01633629947900772, -0.03467614948749542, 0.033087100833654404, -0.0689261332154274, 0.029955502599477768, 0.058926694095134735, 0.005857508163899183, 0.03198547288775444, -0.012829546816647053, 0.019780000671744347, -0.005003554280847311, -0.019720662385225296, 0.03682897984981537, -0.01272506918758154, 0.015953291207551956, -0.04311412200331688, -0.01298548560589552, -0.007916031405329704, -0.0035923896357417107, -0.006680807564407587, -0.019542736932635307, 0.006927778944373131, 0.006748008541762829, -0.007217347156256437, -0.040489282459020615, 0.02801309898495674, 0.030893977731466293, 0.01304822787642479, -0.014586113393306732, 0.0371437706053257, -0.012876241467893124, 0.03728102520108223, 0.03553429991006851, -0.008696425706148148, 0.01797540858387947, -0.03960930556058884, 0.026203805580735207, 0.02278267778456211, -0.012059061788022518, -0.019709264859557152, -0.03848978504538536, -0.027886265888810158, 0.03781921789050102, 0.007629218976944685, -0.006896606180816889, -0.037368275225162506, 0.041546426713466644, -0.004062980879098177, 0.024928756058216095, -0.015207953751087189, -0.024357805028557777, -0.03256439045071602, 0.07019080221652985, 0.03775395452976227, -0.06035705283284187, -0.023238644003868103, -0.04986372962594032, 0.028250422328710556, 0.05843469128012657, -0.012389671988785267, -0.05297667905688286, -0.011948752216994762, -0.035077180713415146, -0.020239830017089844, 0.008430981077253819, 0.02970270812511444, 0.014825728721916676, 0.013873163610696793, -0.02279660291969776, 0.03728794679045677, 0.02111147902905941, -0.008340389467775822, 0.00427525769919157, -0.004603786394000053, 0.00654748035594821, -0.012989095412194729, 0.022658448666334152, -0.022496739402413368, -0.01489700935781002, 0.03422940894961357, -0.06878948211669922, 0.024180980399250984, 0.01694115251302719, -0.007410073187202215, 0.026774683967232704, -0.008006204850971699, -0.0004632952040992677, 0.03528619557619095, 0.00017098519310820848, -0.01638197712600231, -0.021705549210309982, 0.03559545427560806, -0.048972975462675095, -0.037041448056697845, 0.04061271250247955, -0.02583369053900242, -0.026857633143663406, 0.04234659671783447, 0.052769746631383896, -0.014257959090173244, 0.006767787970602512, 0.01151675172150135, -0.027504125609993935, 0.03423665836453438, -0.06817969679832458, 0.014811111614108086, -0.021149784326553345, -0.049106426537036896, 0.01460270956158638, -0.023579753935337067, 0.015722334384918213, -0.016129186376929283, -0.0265476256608963, -0.03106611594557762, -0.05999310687184334, -0.01422190759330988, -0.0028396553825587034, 0.002549409167841077, -0.005064139608293772, -0.007376469671726227, -0.008092821575701237, 0.008824741467833519, -0.004949129186570644, -0.004471026360988617, 0.016350410878658295, 0.002156701870262623, -0.010482088662683964, -0.0012649692362174392, 0.0005078943213447928, 0.03643053025007248, -0.008333336561918259, -0.04656368866562843, 0.02072286047041416, -0.02479332499206066, -0.03102749027311802, -0.06140216439962387, -0.012851513922214508, -0.022318588569760323, -0.03281012549996376, -0.024134835228323936, 0.001170285395346582, -0.013324632309377193, 0.04603249207139015, 0.005039297044277191, -0.007914437912404537, -0.03116178885102272, 0.009321299381554127, -0.03415179252624512, 0.05646375194191933, 0.0454409159719944, -0.020464081317186356, 0.0003252519527450204, 0.03292558714747429, -0.009319104254245758, 0.04288077354431152, -0.016816332936286926, -0.01017700880765915, -0.04155566915869713, -0.029948174953460693, 0.02371201291680336, -0.002651727059856057, -0.025243792682886124, -0.029879221692681313, -0.0008569688652642071, -0.018469182774424553, 0.042266812175512314, -0.0045314570888876915, 0.015056668780744076, 0.008598052896559238, -0.02852937951683998, -0.026355737820267677, -0.03426656126976013, -0.023816561326384544, -0.015041721984744072, -0.036039482802152634, 0.012087990529835224, 0.03417448699474335, 0.004651027265936136, 0.005116358399391174, 0.01985122077167034, -0.0004202868149150163, 0.020026307553052902, -0.011719276197254658, -0.03461665287613869, -0.05089834704995155, 0.014287167228758335, 0.017844414338469505, 0.012922980822622776, -0.013607902452349663, -0.025772059336304665, 0.07493871450424194, -0.045305509120225906, 0.013303578831255436, -0.023015618324279785, -0.030743997544050217, -0.000052126735681667924, -0.004145612474530935, 0.06867427378892899, -0.0491454191505909, 0.01930626481771469, -0.011863825842738152, 0.028114724904298782, 0.04583310708403587, -0.007003991864621639, -0.016871565952897072, -0.024915458634495735, -0.03916690871119499, -0.025550944730639458, 0.014391723088920116, -0.0282245185226202, -0.005646792706102133, -0.0445730946958065, 0.007234596647322178, 0.05384930968284607, -0.015105498023331165, 0.041679833084344864, 0.006546602584421635, -0.023671304807066917, 0.013081640005111694, -0.0270868968218565, 0.021323420107364655, 0.030530596151947975, -0.032686494290828705, 0.0036021526902914047, -0.02665112540125847, -0.019655045121908188, 0.008747213520109653, -0.05812499672174454, -0.020675351843237877, -0.03721068799495697, -0.024225467815995216, 0.04764636233448982, -0.021455103531479836, 0.04266077280044556, -0.019320599734783173, -0.029879173263907433, -0.051061324775218964, 0.05883881449699402, 0.0089033218100667, 0.012972624972462654, 0.04827325418591499, 0.015439946204423904, -0.007215025834739208, 0.01348123885691166, -0.0270600114017725, -0.016874445602297783, -0.0451580286026001, 0.05285272374749184, -0.034041039645671844, -0.028637565672397614, -0.0059781852178275585, 0.04766324907541275, -0.07618308067321777, -0.018474191427230835, 0.0008588641067035496, -0.0037290137261152267, 0.020115645602345467, -0.028687460348010063, -0.004747833125293255, -0.02840401418507099, -0.028263559564948082, -0.02323068492114544, 0.037153031677007675, -0.00008553136285627261, 0.049090560525655746, -0.006591376848518848, 0.02065262570977211, -0.0267570149153471, 0.03235795348882675, 0.01883898861706257, -0.01611897349357605, -0.040446750819683075, -0.031163442879915237, -0.03981675207614899, 0.02309032902121544, -0.025937965139746666, 0.04768345132470131, -0.001958240522071719, 0.03094347007572651, 0.05675801634788513, -0.033005163073539734, 0.05493543669581413, -0.03724938631057739, -0.032147157937288284, 0.03455733507871628, -0.046942852437496185, -0.06790970265865326, -0.027333196252584457, 0.016995444893836975, 0.01409886684268713, 0.03198932111263275, -0.055100880563259125, 0.013231771066784859, 0.024684758856892586, 0.02294725924730301, 0.020462507382035255, -0.04835811257362366, -0.02743132971227169, -0.04028110206127167, -0.02706095576286316, -0.03928421810269356, -0.017758924514055252, 0.01092484500259161, 0.022208314388990402, 0.009176159277558327, -0.028881678357720375, -0.0011356245959177613, -0.010369203053414822, -0.012898380868136883, -0.005817253142595291, -0.014980883337557316, -0.006305235903710127, -0.014000984840095043, -0.02587897516787052, -0.028375675901770592, -0.00267317658290267, -0.022650139406323433, 0.004267858806997538, 0.008658666163682938, -0.0107418829575181, -0.011590023525059223, 0.03191009908914566, 0.02625526860356331, 0.0011995144886896014, -0.006694846320897341, -0.030303729698061943, -0.01838272251188755, 0.02417672798037529, -0.003679202403873205, 0.03579200804233551, 0.0396992489695549, -0.016575045883655548, 0.035273414105176926, 0.025378506630659103, -0.0577218197286129, -0.010674741119146347, -0.006950313225388527, 0.003038360271602869, 0.00899594184011221, -0.058793313801288605, -0.035389628261327744, 0.016101406887173653, -0.04648563638329506, 0.02277214452624321, 0.016280122101306915, 0.03426772356033325, 0.0006748354062438011, -0.0247560515999794, 0.02039870247244835, 0.04539217799901962, -0.004620046354830265, 0.02647601254284382, 0.017827026546001434, 0.014414344914257526, 0.01851467974483967, 0.008617556653916836, 0.018319543451070786, 0.02759532816708088, 0.0134370606392622, -0.05907471477985382, -0.005555914714932442, 0.010108113288879395, -0.0165866632014513, 0.045778870582580566, -0.017297150567173958, -0.03506246954202652, -0.04361208528280258, -0.03796719014644623, -0.002741627860814333, 0.07845322787761688, 0.0022660410031676292, -0.01173089724034071, 0.03391636908054352, -0.05724980682134628, -0.0014073740458115935, 0.001742141437716782, -0.07566357403993607, -0.039224542677402496, 0.03067285381257534, -0.02336226962506771, 0.00950508750975132, -0.03964513912796974, -0.01853644847869873, -0.01467388216406107, -0.02083772048354149, -0.005811586976051331, -0.02236526645720005, 0.006721741519868374, -0.003208944108337164, 0.06646803766489029, -0.008618664927780628, -0.012855743989348412, 0.019671445712447166, 0.044675957411527634, -0.02913270890712738, -0.05246873199939728, 0.025839708745479584, 0.007301355712115765, 0.04556160792708397, 0.010779378935694695, 0.014217182993888855, 0.004826730117201805, -0.001515400828793645, 0.02901834063231945, -0.014543144963681698, 0.0010842049960047007, 0.0067212581634521484, 0.022722648456692696, -0.028512317687273026, -0.021601000800728798, -0.022296437993645668, 0.042672935873270035, -0.006955982651561499, 0.0028713911306113005, -0.017745299264788628, 0.012188742868602276, 0.030724747106432915, -0.03405049815773964, 0.04614738002419472, 0.015589368529617786, 0.0626630038022995, -0.004949490539729595, -0.007837936282157898, 0.01693050190806389, 0.05429990962147713, 0.01920115016400814, 0.07438647001981735, 0.03649656102061272, 0.013014483265578747, 0.050452377647161484, 0.022487526759505272, 0.004066656343638897, 0.04826296865940094, 0.023163802921772003, -0.04471605643630028, -0.0007947696722112596, -0.029196517542004585, 0.0325804203748703, 0.04735560342669487, -0.001944263931363821, 0.010762320831418037, -0.022663036361336708, -0.0060588219203054905, -0.005479888059198856, -0.0004142644756939262, 0.03700406849384308, -0.05459285154938698, 0.01247996836900711, 0.0029184825252741575, -0.013130296021699905, 0.01810593344271183, 0.0704333484172821, 0.03290369734168053, 0.036817166954278946, 0.027165094390511513, 0.03354175016283989, -0.02486819215118885, 0.039937250316143036, 0.036998942494392395, -0.0003427201008889824, -0.0659753680229187, -0.0020460477098822594, 0.03708118572831154, -0.001127241412177682, -0.009119080379605293, -0.01682663895189762, -0.022567100822925568, 0.010666627436876297, -0.0290557648986578, -0.0002581400622148067, 0.046534765511751175, -0.032053641974925995, -0.020220233127474785, -0.030666206032037735, 0.04594961181282997, -0.021842902526259422, -0.010654386132955551, 0.03603658080101013, -0.013007675297558308, -0.03159475699067116, 0.06857767701148987, -0.012232293374836445, 0.04372834414243698, 0.036439865827560425, 0.031264275312423706, 0.0026225142646580935, 0.04147433117032051, 0.028087899088859558, -0.056614745408296585, -0.029020044952630997, 0.028613831847906113, -0.022127754986286163, -0.07172451913356781, -0.03664611279964447, -0.056929171085357666, -0.04826468229293823, -0.02621922641992569, 0.006383897271007299, -0.011153535917401314, 0.03855602443218231, -0.01979213021695614, -0.039023611694574356, 0.012266930192708969, 0.01898461952805519, -0.0528167299926281, 0.023291150107979774, 0.0038726108614355326, 0.03289909288287163, -0.03591781109571457, -0.017024604603648186, -0.018315836787223816, -0.02590404823422432, -0.01915213093161583, -0.05432216450572014, 0.046153560280799866, -0.017708543688058853, -0.03171239793300629, -0.021535750478506088, -0.03164283186197281, -0.0313400998711586, 0.0020970585756003857, -0.061291761696338654, -0.05989205092191696, 0.024540646001696587, 0.05521439015865326, -0.01349504292011261, 0.03369680419564247, -0.04606834799051285, 0.030780045315623283, 0.010136574506759644, 0.04617069289088249, 0.000037637848436133936, 0.006962158717215061, 0.021651241928339005, -0.02244042418897152, 0.0233224555850029, -0.03888017311692238, 0.024225782603025436, -0.02842973731458187, -0.0169995054602623, -0.015146155841648579, 0.03969371318817139, -0.04385116323828697, -0.05961710587143898, 0.00031921613845042884, 0.0039433506317436695, 0.000878735154401511, -0.040016669780015945, -0.05530981346964836, -0.014606446027755737, -0.02746032550930977, -0.008802222087979317, -0.047738075256347656, 0.018013739958405495, 0.011472860351204872, 0.010465803556144238, -0.00047788218944333494, -0.06938863545656204, 0.14426061511039734, 0.05322146415710449, 0.0483090840280056, 0.028817562386393547, 0.03152387961745262, 0.06749606132507324, 0.003899339819326997, -0.010250234976410866, -0.01007160171866417, -0.029548995196819305, 0.011255726218223572, -0.015066330321133137, 0.012669116258621216, 0.019138013944029808, -0.003999582026153803, 0.06826896965503693, -0.0009676596382632852, -0.01951073668897152, 0.03796235844492912, -0.0508606918156147, -0.0521022267639637, 0.005136766470968723, -0.008452231995761395, -0.005820122547447681, -0.025231655687093735, 0.013412702828645706, -0.0004235871019773185, -0.04052749648690224, -0.005077662877738476, -0.007074808701872826, 0.021516481414437294, -0.028254259377717972, 0.025726165622472763, 0.012853804044425488, -0.022073842585086823, 0.042782336473464966, 0.007848037406802177, 0.0003048222861252725, 0.012504414655268192, -0.0045593976974487305, -0.03198264166712761, 0.015155103988945484, 0.03587108105421066, -0.04144618660211563, -0.0036067692562937737, 0.0019879108294844627, -0.033407360315322876, 0.010184213519096375, 0.02887488529086113, -0.033305056393146515, 0.06083333119750023, -0.02940606325864792, -0.007127826102077961, -0.00023083591077011079, 0.005016358569264412, 0.04000217095017433, 0.011051038280129433, -0.015731453895568848, -0.022350750863552094, -0.0015509503427892923, 0.04439235106110573, -0.006612077821046114, -0.02286641299724579, 0.02253490686416626, -0.04836110398173332, 0.005486853886395693, 0.02583673782646656, 0.0010687316535040736, -0.0417059063911438, -0.017444919794797897, -0.02043532393872738, -0.018618132919073105, -0.0017324005020782351, -0.02349838614463806, 0.0154260927811265, 0.0476570762693882, 0.009502854198217392, 0.050234582275152206, 0.004705349449068308, -0.04031025990843773, 0.0000991002016235143, -0.002090662019327283, 0.01203812938183546, -0.011297072283923626, 0.030206652358174324, 0.04058976098895073, -0.03465164825320244, -0.024024905636906624, -0.026904741302132607, 0.03981155529618263, 0.07928285747766495, -0.010514832101762295, -0.025685807690024376, -0.021728774532675743, -0.01619022525846958 ]
The Development Bank of the Philippines (DBP) and construction firm AlloyMTD signed today a Php9.5 billion loan agreement for the development of the National Government Administrative Center (NGAC) at the New Clark City (NCC) located in the municipalities of Capas and Bamban in Tarlac. DBP Chairman Alberto Romulo, DBP President and Chief Executive Officer Cecilia Borromeo, AlloyMTD Chairman Isaac David, and AlloyMTD President Patrick Nicholas David led the signing ceremonies held at the DBP Head Office in Makati City. According to MTD Philippines President Nicholas David, the Php9.5 billion loan represents 75 percent of the Php13 billion budget to build the first phase of NGAC. The rest will be the equity counterpart of MTD. The project is a joint venture between State-owned Bases Conversion and Development Authority (BCDA) and MTD. The DBP Board approved the loan agreement on March 21, 2018 shortly after the Philippine Competition Commission approved on March 13 the joint venture between BCDA and MTD. NGAC broke ground in New Clark City on January 23, 2018. The 40-hectare Phase 1A of the project involves the development of disaster-resilient back-up offices of various government agencies, world-class Sports Stadium with 20,000 seating capacity, Aquatic Center, village for athletes competing in the 2019 Southeast Asian Games, government housing, and support service facilities. Upon satisfactory completion of the project's Phase 1A, work for the project's Phase 1B will commence for the construction of more government offices and residential units on a 20-hectare land. MTD is targeting to complete Phase 1A by Oct. 15, 2019.
[ -0.017581135034561157, 0.007087454665452242, -0.02307773008942604, 0.012578054331243038, -0.0051729935221374035, -0.005761599168181419, 0.003620357718318701, 0.007590032182633877, 0.007275389973074198, 0.026920460164546967, 0.03978900983929634, -0.008709465153515339, 0.01885954849421978, -0.040183957666158676, -0.017209960147738457, 0.015588889829814434, -0.019354335963726044, 0.0028062541969120502, 0.0003897594287991524, 0.020330285653471947, -0.014513153582811356, 0.019044602289795876, -0.07479463517665863, -0.03309832140803337, -0.004699822049587965, 0.07070360332727432, 0.02774113230407238, -0.00920820888131857, 0.05764029920101166, 0.032565437257289886, -0.05070566013455391, -0.07221660763025284, 0.03974936902523041, -0.02658742666244507, -0.025246692821383476, -0.0025603517424315214, 0.022396927699446678, -0.03353476524353027, 0.004396711476147175, -0.0531354658305645, 0.012330238707363605, -0.025037705898284912, 0.0248582623898983, -0.026592837646603584, -0.026873210445046425, -0.0017459195805713534, -0.026768093928694725, -0.03189938887953758, 0.024224912747740746, -0.04114007204771042, -0.0010266477474942803, 0.02602955885231495, 0.012268392369151115, 0.012434940785169601, -0.02439996600151062, 0.009050434455275536, -0.030006568878889084, -0.04398498684167862, -0.030678605660796165, 0.04919065535068512, 0.02531425841152668, -0.012024693191051483, 0.022723546251654625, -0.06970728188753128, 0.05786162614822388, -0.0014214608818292618, -0.006913031917065382, -0.013448933139443398, 0.04727691784501076, -0.013511262834072113, -0.007899715565145016, 0.010170825757086277, -0.03784690052270889, -0.03289678692817688, 0.026279529556632042, -0.017671966925263405, 0.0072256154380738735, -0.009783382527530193, 0.0033643192145973444, -0.01000309456139803, 0.03341284394264221, 0.05896121636033058, 0.012272223830223083, -0.0032796894665807486, -0.05027833953499794, -0.003506939159706235, -0.02640748955309391, 0.02388974092900753, -0.024366866797208786, 0.006731150671839714, 0.0031238298397511244, 0.047232650220394135, 0.02391686663031578, 0.006319986656308174, 0.03217414766550064, 0.023554328829050064, -0.0679270476102829, 0.027721183374524117, 0.0014530307380482554, -0.008890818804502487, 0.0005597567651420832, 0.005184135865420103, -0.009726299904286861, 0.055180005729198456, -0.019242461770772934, -0.012213117443025112, -0.002465881872922182, -0.015143248252570629, 0.01792709343135357, -0.016368890181183815, 0.03026825562119484, -0.029095346108078957, -0.005372603889554739, -0.031134001910686493, 0.009940141811966896, 0.07720178365707397, 0.0008342626970261335, 0.06831233948469162, -0.015496510080993176, 0.0017020580125972629, 0.0232091061770916, 0.00018921433365903795, 0.014400849118828773, -0.015041269361972809, 0.012515745125710964, -0.02879125252366066, -0.006638893857598305, 0.028343774378299713, -0.03107781894505024, -0.025209477171301842, 0.010375975631177425, -0.0498536191880703, -0.01161293312907219, 0.02893967740237713, -0.007412808947265148, 0.030632246285676956, -0.0074647096917033195, 0.05949842929840088, 0.026374056935310364, -0.037882428616285324, 0.03410997986793518, 0.018877217546105385, 0.00844971090555191, 0.09453214704990387, -0.0011364035308361053, 0.05734874680638313, -0.01044609397649765, -0.007514117751270533, -0.023677702993154526, 0.03152649104595184, -0.06348472833633423, 0.019005492329597473, 0.012120760977268219, 0.049090612679719925, -0.012005728669464588, -0.004405992105603218, 0.009866021573543549, 0.051264118403196335, 0.008510119281709194, 0.01880410872399807, -0.03648527339100838, 0.013093264773488045, 0.00864601880311966, 0.024150745943188667, -0.027342844754457474, 0.01714950241148472, -0.03836355730891228, -0.018892472609877586, -0.013819406740367413, -0.042560771107673645, 0.0210877638310194, 0.02202598750591278, -0.024035874754190445, 0.001728505128994584, 0.016739191487431526, 0.032435525208711624, 0.06728456169366837, 0.012116911821067333, 0.046786677092313766, 0.04328647628426552, -0.03069591335952282, -0.025706307962536812, 0.011768799275159836, 0.04034768417477608, 0.03015952743589878, 0.019637927412986755, -0.025432869791984558, -0.03002697415649891, -0.027161849662661552, -0.030487248674035072, -0.007841788232326508, 0.019423888996243477, -0.025294627994298935, 0.04374539107084274, -0.01775313727557659, 0.0008406814886257052, -0.02255273051559925, -0.02264869026839733, -0.011494257487356663, -0.05521237850189209, -0.036199040710926056, 0.03774671256542206, -0.00594297656789422, 0.046698618680238724, -0.04481671005487442, -0.02754216268658638, 0.022404387593269348, 0.05530015379190445, -0.06049204617738724, 0.01763724349439144, 0.036513201892375946, 0.01242099329829216, -0.0026083500124514103, -0.040463369339704514, 0.014579331502318382, 0.004784907214343548, -0.029120298102498055, 0.02385285310447216, 0.021448010578751564, -0.011858542449772358, -0.0002543707378208637, 0.025339173153042793, 0.030666662380099297, 0.05757398530840874, 0.021889593452215195, 0.011913309805095196, 0.013331758789718151, 0.03840119019150734, -0.0013983793323859572, -0.028373101726174355, 0.014243880286812782, 0.024110643193125725, 0.015357814729213715, 0.07866726070642471, 0.06278368085622787, 0.023210590705275536, 0.024159200489521027, 0.04540698975324631, -0.016129018738865852, 0.043634239584207535, 0.005484132096171379, 0.013799246400594711, 0.02532954514026642, 0.02848268486559391, -0.011765389703214169, 0.04906154051423073, -0.031137140467762947, -0.0016705597518011928, -0.02882198430597782, 0.0005791621515527368, -0.014080055058002472, 0.0656827837228775, 0.014204219914972782, 0.032023198902606964, -0.009650275111198425, 0.03389095515012741, 0.03894691914319992, 0.039780572056770325, -0.006458882708102465, -0.00478005176410079, 0.005558720789849758, 0.015308860689401627, -0.02113819122314453, -0.002881745109334588, 0.03373921290040016, 0.005505393259227276, -0.007182962726801634, 0.000610381190199405, -0.02160164713859558, -0.04896031320095062, -0.04724790155887604, -0.02792421169579029, -0.055212199687957764, -0.02502479776740074, -0.08028779178857803, -0.046745914965867996, 0.035291798412799835, -0.05611049383878708, 0.012951696291565895, -0.013818674720823765, -0.023146500810980797, -0.030120817944407463, -0.01570720225572586, 0.039519548416137695, 0.046457868069410324, 0.04264594614505768, -0.05817044898867607, 0.02883472479879856, -0.0112456688657403, 0.019054489210247993, -0.039455596357584, 0.008044157177209854, 0.011554083786904812, -0.008134589530527592, 0.03260931372642517, -0.008362453430891037, 0.01498633436858654, -0.01028346735984087, -0.047359202057123184, -0.05365585535764694, -0.011145568452775478, 0.005252120550721884, -0.01716446503996849, 0.004619304556399584, -0.014891790226101875, 0.03784920647740364, 0.025163793936371803, -0.009364303201436996, 0.03577018156647682, 0.05089353024959564, -0.00006665728142252192, 0.03628149628639221, 0.031686220318078995, 0.006967425812035799, -0.06386739760637283, 0.042845793068408966, 0.07517968118190765, 0.00558712612837553, -0.031264953315258026, -0.04419199749827385, -0.04435861110687256, 0.02445182576775551, 0.021223947405815125, -0.026558659970760345, -0.00867118313908577, 0.02705387957394123, 0.04448110610246658, -0.03911997750401497, 0.014816186390817165, -0.033807095140218735, -0.0351373665034771, -0.03334392234683037, -0.011014796793460846, -0.008824560791254044, 0.023243121802806854, 0.01957131363451481, -0.0038174488581717014, -0.016849808394908905, -0.024528242647647858, -0.009070005267858505, 0.06772451847791672, -0.034274350851774216, 0.05266157537698746, 0.037597887217998505, -0.0015349866589531302, 0.03101508505642414, 0.005961618386209011, -0.04253586381673813, -0.0054000928066670895, 0.009937706403434277, -0.0077117797918617725, -0.01021731086075306, 0.011731214821338654, 0.02385234646499157, 0.02061016671359539, 0.04223420098423958, -0.02709774486720562, -0.0020237646531313658, 0.010477747768163681, 0.012468325905501842, 0.043288249522447586, 0.0024017952382564545, -0.004347240086644888, -0.025339119136333466, -0.04066269472241402, -0.05034133419394493, 0.02701232023537159, 0.02015809714794159, 0.06758038699626923, -0.05287160351872444, 0.06073347479104996, 0.012357146479189396, -0.03959323838353157, 0.037778500467538834, -0.045966215431690216, -0.017295856028795242, 0.08199182897806168, -0.008229649625718594, 0.045094482600688934, -0.03967917338013649, 0.02078971080482006, 0.018129726871848106, 0.007507100701332092, 0.033953189849853516, 0.017242589965462685, 0.022625766694545746, -0.0014865485718473792, -0.016031377017498016, -0.014512122608721256, -0.03395944461226463, 0.022113952785730362, -0.054110147058963776, -0.03259912133216858, -0.007632226217538118, -0.017518138512969017, -0.060285668820142746, 0.04803097993135452, 0.029197683557868004, 0.036267418414354324, -0.03689461201429367, 0.024837620556354523, 0.019775209948420525, 0.025473102927207947, 0.023752374574542046, 0.0029746084474027157, 0.0222626943141222, -0.024450892582535744, 0.03137708827853203, 0.01014732290059328, -0.023683950304985046, -0.015394224785268307, -0.036137767136096954, -0.05606371909379959, 0.03374379873275757, -0.014385892078280449, -0.012742136605083942, -0.02398880571126938, 0.027624761685729027, -0.023774128407239914, 0.03530871868133545, -0.0375809483230114, -0.011198032647371292, -0.01840905286371708, 0.022120920941233635, 0.00783658679574728, -0.04513639956712723, 0.027424169704318047, -0.03184757009148598, 0.0200287327170372, 0.059458471834659576, -0.023619676008820534, -0.021830467507243156, -0.015697535127401352, 0.024877246469259262, -0.03320390731096268, 0.013199848122894764, 0.022904768586158752, -0.004392044153064489, -0.007652150932699442, -0.04797815531492233, 0.020512942224740982, 0.020117001608014107, -0.0023010061122477055, -0.00737996818497777, 0.0336490236222744, 0.0012840254930779338, 0.022766079753637314, 0.038558829575777054, -0.019314756616950035, -0.0017770001431927085, 0.013146980665624142, -0.02790444903075695, 0.0014801115030422807, 0.003426764626055956, -0.02635348215699196, -0.008059575222432613, 0.010481026954948902, 0.009570958092808723, 0.051542822271585464, -0.030841242522001266, 0.0060272556729614735, -0.004405229352414608, 0.03752821311354637, -0.06882928311824799, -0.012644683010876179, 0.0600878968834877, -0.018843844532966614, -0.04624279960989952, 0.011035475879907608, 0.0317755863070488, -0.06458055973052979, 0.009505676105618477, -0.001513986149802804, -0.026586037129163742, 0.05236808583140373, -0.03584246337413788, 0.012774682603776455, -0.014328488148748875, -0.016092395409941673, 0.004437529016286135, -0.003347966354340315, 0.011901384219527245, -0.005964526906609535, -0.011780975386500359, -0.02823932096362114, -0.06719046086072922, -0.03170810267329216, 0.030980847775936127, -0.011232299730181694, 0.007734804879873991, 0.02695002220571041, -0.001823005615733564, -0.010875588282942772, -0.02723337709903717, -0.012238569557666779, 0.005970867816358805, -0.02228599786758423, 0.014310680329799652, -0.01795864664018154, -0.014854872599244118, -0.0069872611202299595, -0.030075253918766975, -0.04229885712265968, 0.02519219182431698, -0.014867348596453667, -0.03988473117351532, -0.05702510103583336, -0.007207018323242664, -0.013949429616332054, 0.003162885783240199, -0.06085246428847313, -0.0066031115129590034, -0.019991105422377586, 0.016991032287478447, 0.03307826817035675, 0.031299665570259094, 0.01436139177531004, 0.024169951677322388, -0.04239862784743309, 0.048052359372377396, 0.06705480813980103, -0.03190634027123451, -0.048685625195503235, 0.03446122631430626, 0.01023864932358265, 0.04171048104763031, -0.00660216948017478, -0.0069366260431706905, -0.03555900231003761, -0.042782336473464966, 0.007262007333338261, -0.05375407636165619, -0.025006309151649475, -0.03238457068800926, -0.020704003050923347, 0.01273330394178629, 0.01073673740029335, 0.02367347478866577, -0.0010638049570843577, 0.01851489208638668, -0.028744781389832497, -0.00003625114550231956, -0.0555247999727726, -0.001773976837284863, -0.029099643230438232, -0.029459776356816292, -0.024406762793660164, 0.04909849911928177, 0.0348038375377655, 0.012716361321508884, -0.016306547448039055, 0.01606673188507557, 0.05176324024796486, -0.0072157057002186775, -0.05086413398385048, -0.03511678799986839, 0.01826784573495388, 0.025075629353523254, -0.011605978943407536, 0.02814580872654915, -0.04422125965356827, 0.05680032819509506, -0.00882366020232439, 0.007074939087033272, -0.024141792207956314, -0.020609276369214058, -0.02670489251613617, -0.04238654673099518, 0.04591582715511322, -0.05865607038140297, 0.0013546948321163654, 0.00020088814198970795, 0.05168508365750313, 0.036273129284381866, 0.006152717862278223, -0.01435448881238699, -0.0555376261472702, -0.02058771438896656, -0.07334738969802856, 0.02200065553188324, -0.02966596744954586, -0.006281632464379072, -0.019108658656477928, -0.01916947029531002, -0.0045073069632053375, -0.00872156210243702, 0.06013553589582443, 0.06704115867614746, -0.03144250810146332, 0.015173140913248062, -0.04130364581942558, 0.03534824773669243, 0.04189452901482582, -0.014617490582168102, -0.04434620589017868, -0.011774529702961445, -0.021267399191856384, 0.03578440845012665, -0.06959396600723267, -0.054930634796619415, -0.032166145741939545, -0.010740493424236774, 0.05690557509660721, -0.02722959592938423, 0.03795023635029793, -0.020707078278064728, -0.05074772611260414, -0.059231165796518326, 0.032060734927654266, -0.024741841480135918, 0.015460208989679813, 0.05231618136167526, 0.01908627152442932, -0.006482451688498259, 0.019380364567041397, -0.011418364010751247, 0.0149947265163064, -0.020777376368641853, 0.06972645223140717, -0.004006014671176672, -0.06331448256969452, -0.0016803598264232278, 0.0453217513859272, -0.043971676379442215, -0.055015966296195984, 0.010580374859273434, 0.0011834483593702316, -0.008296051062643528, -0.016253970563411713, 0.01391435693949461, -0.022773778066039085, -0.014267100021243095, 0.0017417786875739694, 0.005352894309908152, 0.029802341014146805, 0.03187066316604614, 0.000733802211470902, 0.005273752845823765, -0.031031951308250427, -0.010960143059492111, 0.024539638310670853, 0.011045578867197037, -0.020060386508703232, -0.031653571873903275, -0.021714696660637856, -0.015542346984148026, 0.00305422255769372, 0.058739516884088516, 0.00007885305967647582, 0.040682125836610794, 0.027063865214586258, 0.01028370764106512, 0.05156867578625679, 0.010824000462889671, -0.006641161162406206, 0.043862003833055496, -0.003925880417227745, -0.044572144746780396, -0.021719031035900116, -0.005319952964782715, 0.02269763872027397, 0.0323198065161705, -0.05730240046977997, -0.002276038285344839, 0.03450443968176842, -0.02396656572818756, 0.03070639632642269, -0.017751779407262802, -0.021266421303153038, -0.02968737855553627, -0.030786916613578796, -0.008142911829054356, 0.0051350900903344154, 0.004423015285283327, 0.05087079107761383, 0.01806778833270073, -0.05550700053572655, -0.02326822653412819, -0.0015726385172456503, -0.029321424663066864, 0.016144894063472748, -0.013045781292021275, -0.012797156348824501, -0.07456809282302856, -0.06142759695649147, -0.04767429828643799, 0.0031625337433069944, -0.04386691004037857, 0.01399187371134758, 0.005656389519572258, 0.01358603686094284, 0.016400059685111046, 0.007334847003221512, -0.005117221735417843, 0.002704068785533309, -0.012898864224553108, -0.06844762712717056, 0.012923656031489372, 0.013948839157819748, 0.03749337047338486, 0.03595905378460884, 0.0416693240404129, -0.02242659591138363, 0.036933500319719315, -0.016603097319602966, -0.013388702645897865, -0.012843465432524681, 0.0069548264145851135, 0.0004071977746207267, -0.01110934466123581, -0.0339607410132885, -0.010365540161728859, -0.024169521406292915, -0.04677446931600571, 0.01196940615773201, -0.008996234275400639, 0.01199810765683651, 0.015178290195763111, -0.018722819164395332, -0.01373173575848341, 0.0409279465675354, -0.012811905704438686, 0.010220653377473354, -0.003922882489860058, 0.005397009663283825, 0.027155492454767227, -0.0046158162876963615, 0.03371398150920868, 0.020873568952083588, 0.03691188618540764, -0.004749164450913668, 0.010968998074531555, 0.02464069239795208, -0.01643219217658043, 0.05488334596157074, 0.0002924614236690104, -0.03797761723399162, -0.02872811257839203, -0.00798707827925682, -0.0033252821303904057, 0.019357576966285706, 0.0028403950855135918, 0.011230520904064178, 0.03659321367740631, -0.02352525293827057, -0.05108976364135742, -0.005531222093850374, -0.03468632698059082, -0.05333796888589859, 0.035870399326086044, -0.033266015350818634, -0.024735577404499054, -0.028091328218579292, -0.04349710792303085, -0.01298573799431324, -0.023671606555581093, -0.01919446885585785, -0.028116876259446144, 0.043508365750312805, 0.020421547815203667, 0.013110900297760963, -0.02883201837539673, -0.02433745749294758, 0.015005295164883137, 0.05224684625864029, -0.0575392059981823, -0.056555893272161484, 0.029965581372380257, 0.03517964109778404, 0.011989779770374298, 0.009479192085564137, -0.009279951453208923, 0.023347247391939163, 0.006178082898259163, 0.02356284111738205, -0.01880110800266266, 0.04070832580327988, 0.009555518627166748, 0.03843144327402115, -0.02766592986881733, -0.005429331213235855, -0.026233108714222908, 0.047463130205869675, 0.010891202837228775, -0.024117613211274147, -0.06961416453123093, 0.017972001805901527, 0.01203907746821642, -0.02875981293618679, 0.04514312744140625, 0.021058734506368637, 0.0293656624853611, 0.0032953235786408186, 0.011165388859808445, -0.006542362738400698, 0.04021399840712547, 0.03540293872356415, 0.03452121093869209, -0.017875758931040764, 0.004944090265780687, 0.05487259104847908, 0.020356664434075356, -0.02686610259115696, 0.04527297988533974, 0.019844943657517433, -0.031034743413329124, -0.01748078130185604, 0.009930247440934181, 0.008918868377804756, 0.0036102430894970894, -0.020554887130856514, -0.0037649800069630146, -0.02047714777290821, 0.009229130111634731, 0.03150387480854988, -0.011498217470943928, 0.06489947438240051, -0.04192136600613594, 0.007997795939445496, -0.028393110260367393, -0.021913276985287666, 0.026401830837130547, 0.009433199651539326, -0.0019682201091200113, -0.01139115635305643, 0.029294295236468315, 0.031048642471432686, -0.0020908983424305916, 0.0234539657831192, 0.03861524909734726, -0.01329820230603218, -0.03879297897219658, 0.013789787888526917, 0.002456904388964176, -0.005697519052773714, -0.006868909578770399, 0.0003688352007884532, -0.040771063417196274, 0.05020745098590851, -0.017152516171336174, -0.04860452935099602, 0.019064385443925858, -0.017317945137619972, -0.02636459656059742, -0.0514950267970562, 0.05674714967608452, -0.057128485292196274, -0.010055992752313614, 0.03461339697241783, 0.00968780554831028, -0.020348435267806053, 0.038207776844501495, -0.002503074938431382, 0.009802798740565777, 0.027363818138837814, 0.05114852637052536, 0.008755995891988277, 0.04230406880378723, 0.03274888917803764, -0.06749677658081055, -0.0011611601803451777, 0.03631526604294777, -0.028297441080212593, -0.05302760377526283, -0.027503393590450287, -0.046327073127031326, -0.017522020265460014, -0.029707306995987892, -0.01544160582125187, 0.014931321144104004, 0.04007794335484505, 0.014001786708831787, -0.04240928590297699, 0.030016951262950897, 0.03381199389696121, -0.0269545316696167, -0.00882246345281601, 0.010578073561191559, 0.04246263578534126, 0.005981019232422113, 0.016944942995905876, -0.0037874910049140453, -0.02953951805830002, -0.004143973812460899, -0.03654404357075691, 0.03483590856194496, -0.01272415742278099, -0.021050022915005684, -0.032528966665267944, -0.041942697018384933, -0.011618570424616337, -0.0017654887633398175, -0.0853612869977951, -0.06448902934789658, 0.033200036734342575, 0.048761993646621704, 0.011777517385780811, 0.0135740851983428, -0.02360406145453453, -0.004012796096503735, 0.028831722214818, 0.07157599180936813, -0.01568903960287571, 0.025891248136758804, 0.030237389728426933, 0.03640660271048546, 0.015655744820833206, -0.023909248411655426, 0.0396963469684124, -0.008435836061835289, -0.016503261402249336, -0.024861015379428864, 0.009864737279713154, -0.012625880539417267, -0.07759209722280502, 0.013752266764640808, 0.03639412671327591, -0.019906193017959595, 0.0009587799431756139, -0.03723961114883423, 0.0015117231523618102, -0.06274830549955368, -0.017751352861523628, -0.03702543303370476, 0.01289261132478714, -0.03371904417872429, -0.003156772581860423, 0.0342676043510437, -0.06416734308004379, 0.16977356374263763, 0.009254373610019684, 0.033626917749643326, 0.013057608157396317, 0.029999174177646637, 0.04087430238723755, 0.01752380095422268, -0.021312393248081207, 0.0017568739131093025, -0.025837117806077003, 0.020508164539933205, -0.0008981465944088995, 0.011348436586558819, 0.011736863292753696, -0.010936308652162552, 0.044956695288419724, -0.023799650371074677, 0.0026210956275463104, 0.006390881724655628, -0.04734985902905464, -0.05959548428654671, 0.03935520723462105, -0.001508605550043285, 0.02173427678644657, -0.02505200356245041, 0.024571189656853676, -0.001912917708978057, -0.07199845463037491, 0.009610866196453571, -0.02923552505671978, -0.0036924572195857763, -0.048824239522218704, 0.04850417375564575, 0.0006507172365672886, -0.04496851935982704, 0.021411295980215073, 0.01402056310325861, -0.03965754806995392, -0.005899315699934959, 0.017569296061992645, -0.015668760985136032, 0.01136468630284071, 0.02011886239051819, -0.05578751862049103, 0.023727333173155785, 0.034543558955192566, -0.04755178093910217, -0.005049961619079113, 0.0034885008353739977, -0.04476384446024895, 0.07622982561588287, -0.009274928830564022, 0.040395259857177734, 0.015833305194973946, -0.02124544233083725, 0.0003721272514667362, -0.006739671342074871, -0.01295658852905035, -0.01322018913924694, 0.019107356667518616, 0.05207580700516701, 0.00742247374728322, -0.024731885641813278, 0.006499165669083595, -0.0431404747068882, 0.035076942294836044, 0.042521294206380844, 0.02474788762629032, -0.005439401604235172, -0.013539724051952362, -0.0024470805656164885, -0.0065942732617259026, -0.0076296404004096985, -0.002084353007376194, 0.03509038686752319, 0.04381656274199486, -0.039732299745082855, 0.027112649753689766, -0.002613697201013565, -0.01604761742055416, -0.015459435991942883, -0.023386899381875992, 0.026737596839666367, -0.034238267689943314, 0.024181319400668144, 0.03097744844853878, -0.027370832860469818, -0.0305473729968071, -0.0151536138728261, 0.04005393385887146, 0.0607762448489666, 0.017349133267998695, -0.014216819778084755, -0.03135337680578232, -0.009871963411569595 ]
Life in the age of internet addiction "The vast majority of the American population is mildly addicted to technology" byNed Hepburn Anyone who spends their day staring at screens can speak to the modern-day epidemic of eye fatigue. But what is our digital obsession doing to our brains? Researchers have noted a rise in something called Digital Attention Disorder — the addiction to social networks and computers in general. How does it work? More than 50 years ago, psychologist B.F. Skinner was experimenting on rats and pigeons, and noticed that the unpredictability of reward was a major motivator for animals. If a reward arrives either predictably or too infrequently, the animal eventually loses interest. But when there was anticipation of a reward that comes with just enough frequency, the animals' brains would consistently release dopamine, a neurotransmitter in the brain that (basically) regulates pleasure. What does this have to do with the internet? Some researchers believe that intermittent reinforcement — in the form of texts, tweets, and various other social media — may be working on our brains the same way rewards did on Skinner's rats. "Internet addiction is the same as any other addiction — excessive release of dopamine," says Hilarie Cash, executive director of the reStart program for internet addiction and recovery, a Seattle-area rehab program that helps wean people off the internet. "Addiction is addiction. Whether it's gambling, cocaine, alcohol, or Facebook." "The vast majority of the American population is mildly addicted to technology, and our clinic treats only very serious cases," she told me in a phone interview. "Most of the people that come are young adult males around the ages of 18 to 30 who spend a lot of time on the internet. Their health is poor, their social relationships have turned to crap, they have no social confidence or real-world friends. They don't date. They don't work." Cash continued: Internet and video game addiction starts young. Most young men are given computer or video games when they are five or six years old and therefore their childhood development is profoundly wired for these activities. It's quite different to drug addicts and alcoholics who are usually exposed to drugs or alcohol closer to the age of 15. Internet addicts usually have 15 to 20 years of addiction on them due to starting younger. The problem isn't just young men, either. "Women are getting addicted, too," Cash told me. "Although women usually become addicted later in life and, more often than not, directly to social media, while men are more adept to becoming addicted to multiplayer games. Women seem to juggle addiction and life better than men." So how does Cash's program work? According to the website: "Our professionally trained clinicians understand technology related process addictions, and the impact problematic use has on life. We work with individuals, couples and families to promote a better understanding of problematic technology use; assist users in discovering the underlying issues (e.g., depression, anxiety, ADHD, learning differences, stress, family relationship issues, and addictions) that may be co-occurring with excessive use patterns; and work together to design an individualized plan to promote a healthy, balanced lifestyle." Now, at "just under $20,000" for a minimum 45-day internet rehab (60- and 90- day options are available), the reStart program may not be for everyone. Indeed, you could always just... turn off your phone and computer. Still, the new wave of young internet addicts that Cash describes might be heralding something sinister for future generations: We've all seen the ease at which a toddler can operate an iPhone or iPad. These days, maybe kids are just born addicted to the internet. Microsoft's Activision Blizzard bailout Every U.S. Netflix plan just got more expensive Thieves raid rail cars for packages, L.A. news crew reports Train Heist Florida advances ban on making white people feel 'discomfort' over past racism California deputy DA opposed to vaccine mandates dies of COVID-19 Ukraine, Russia, and the problem of the Cold War lens W. James Antle III
[ -0.005400070920586586, 0.007671770639717579, -0.007362100761383772, 0.04943481832742691, 0.0016817512223497033, -0.019626479595899582, -0.0113506019115448, 0.0070005012676119804, 0.028706714510917664, 0.019765762612223625, 0.0034105104859918356, -0.026925917714834213, 0.019698671996593475, -0.02516986057162285, 0.017494304105639458, -0.030315686017274857, -0.043469663709402084, -0.033764999359846115, -0.019367506727576256, 0.01447271928191185, 0.012399992905557156, 0.02499588020145893, -0.02350602298974991, -0.04184605926275253, -0.029909491539001465, 0.04108988866209984, 0.017996259033679962, 0.017137909308075905, 0.040600795298814774, 0.05658499896526337, -0.004454905167222023, -0.027336686849594116, 0.003315167035907507, -0.03871188312768936, -0.02222302183508873, -0.015042646788060665, 0.039945293217897415, -0.08032103627920151, -0.024702472612261772, -0.04237404093146324, 0.017671536654233932, -0.03972630575299263, 0.026460403576493263, -0.05645502358675003, -0.04137015715241432, 0.009007493034005165, -0.014257656410336494, -0.04092112556099892, 0.017659921199083328, -0.028016552329063416, 0.010394942946732044, -0.016984671354293823, 0.011089008301496506, 0.03243861719965935, 0.007721231319010258, -0.010628835298120975, 0.010592778213322163, 0.013594100251793861, -0.01229674182832241, 0.03773532062768936, 0.024567298591136932, 0.009726990014314651, 0.0339939147233963, -0.05768212676048279, 0.024660583585500717, 0.02564532309770584, -0.009218324907124043, -0.011451159603893757, 0.01319985743612051, -0.011896152049303055, -0.0050272815860807896, 0.013482275418937206, -0.03720751404762268, -0.009592371992766857, 0.00874339696019888, 0.022087087854743004, -0.022850262001156807, 0.008783208206295967, -0.011847269721329212, 0.020485324785113335, -0.019039219245314598, 0.03750377148389816, -0.009629868902266026, 0.03825617954134941, -0.04372324049472809, -0.019459186121821404, 0.016453593969345093, 0.03931491822004318, 0.01047426462173462, -0.0020459077786654234, 0.01699463278055191, 0.015486275777220726, 0.0069161271676421165, 0.01293233223259449, 0.021560898050665855, 0.06238234415650368, -0.012502091936767101, 0.02635866403579712, -0.007366594392806292, -0.0262531079351902, 0.04833298549056053, 0.035337094217538834, -0.02532099559903145, 0.06881227344274521, -0.043102849274873734, -0.012460887432098389, 0.06293141096830368, 0.0003986083611380309, -0.02878713048994541, -0.041844990104436874, 0.0018386129522696137, -0.016534700989723206, 0.01801912672817707, 0.01460176520049572, -0.010027337819337845, 0.030927443876862526, -0.027900731191039085, 0.039970576763153076, -0.0602620393037796, 0.01515188068151474, -0.012357547879219055, 0.00827847421169281, 0.031756963580846786, -0.03650548309087753, 0.0025645296555012465, -0.030599495396018028, -0.0301494337618351, 0.04084260016679764, -0.021880801767110825, -0.019254084676504135, -0.024892693385481834, -0.037725865840911865, -0.0023354615550488234, -0.0043632229790091515, -0.023152612149715424, 0.016497360542416573, -0.01305332500487566, 0.02869059517979622, 0.019661057740449905, -0.04407954216003418, 0.024926379323005676, 0.010472052730619907, -0.025143960490822792, 0.09076838195323944, 0.007998052053153515, 0.018603766337037086, 0.006736509967595339, -0.028233684599399567, -0.014680682681500912, 0.0373430997133255, -0.02039254643023014, 0.034073881804943085, -0.007283602841198444, 0.03360588103532791, 0.005478700157254934, -0.012727653607726097, -0.004500893410295248, 0.03373423591256142, 0.014330492354929447, 0.024332091212272644, -0.012476062402129173, 0.024078786373138428, -0.024412056431174278, 0.07905592769384384, -0.027835316956043243, 0.029276840388774872, -0.046945612877607346, -0.00009972085535991937, 0.00853586196899414, -0.021397460252046585, 0.014476990327239037, 0.012736579403281212, -0.020782677456736565, 0.021024921908974648, 0.03729334473609924, 0.02519000507891178, 0.04732785373926163, -0.007605522871017456, 0.04191024601459503, 0.04570078104734421, -0.053608544170856476, 0.020591357722878456, -0.011421889998018742, 0.06810556352138519, -0.008893080987036228, -0.01702866144478321, -0.007796720135957003, -0.029642103239893913, -0.045345596969127655, -0.02296482026576996, 0.024296244606375694, 0.021691033616662025, -0.06618282198905945, 0.015331177040934563, 0.02171212248504162, 0.008347838185727596, 0.00595985259860754, -0.01458805799484253, 0.020397832617163658, -0.07432741671800613, -0.03721262142062187, 0.04704251140356064, -0.012189695611596107, 0.03887832537293434, 0.014566117897629738, 0.019470199942588806, 0.013349322602152824, 0.0728980153799057, -0.044010356068611145, -0.016608765348792076, 0.024600103497505188, 0.025884997099637985, -0.012132862582802773, -0.00786683615297079, -0.003515027230605483, -0.014962977729737759, -0.029922712594270706, 0.05309376120567322, -0.007534864824265242, -0.02171599678695202, 0.01376145239919424, 0.020553503185510635, 0.019873350858688354, 0.03309633955359459, -0.013769661076366901, 0.004966442473232746, 0.02285817451775074, 0.03829861059784889, 0.0003134212165605277, -0.02041809633374214, -0.005723835900425911, 0.05575193837285042, 0.04084412381052971, 0.04019923135638237, 0.03407682105898857, 0.029045531526207924, 0.030996812507510185, 0.02086256816983223, -0.014696395955979824, 0.04097256436944008, -0.009996970184147358, 0.014823931269347668, 0.05036472529172897, 0.016637936234474182, -0.019973551854491234, 0.028094682842493057, -0.03321598470211029, 0.019766801968216896, -0.043850529938936234, 0.018844760954380035, -0.019414201378822327, 0.05312260612845421, 0.02825397439301014, 0.01642102748155594, -0.04906153306365013, -0.009038412943482399, 0.053765811026096344, 0.06030922010540962, -0.018985209986567497, -0.024673309177160263, -0.02713262103497982, 0.009232883341610432, 0.013370065949857235, 0.034669384360313416, 0.050589900463819504, 0.004423209466040134, 0.005372596904635429, 0.05921699106693268, -0.015184761956334114, -0.03460204601287842, -0.033581942319869995, -0.05578617379069328, -0.07354162633419037, -0.03959604352712631, -0.049749623984098434, -0.011148818768560886, 0.007617366500198841, -0.02942923828959465, 0.023524103686213493, 0.014831839129328728, -0.01458741258829832, -0.04996383190155029, 0.013759801164269447, 0.036395613104104996, 0.014512096531689167, 0.04367975890636444, -0.03717614337801933, 0.02429562620818615, 0.0190118458122015, 0.02593238465487957, 0.0024541206657886505, -0.03264479711651802, 0.01494840532541275, -0.019536910578608513, 0.03078816644847393, -0.01702343113720417, 0.00508578447625041, -0.0024976974818855524, -0.039264824241399765, -0.040057480335235596, 0.007203181739896536, 0.003532863687723875, -0.019467271864414215, 0.007317472714930773, -0.015314008109271526, 0.06055386736989021, 0.02151435799896717, -0.030938679352402687, 0.04279952123761177, 0.03389032930135727, -0.04775476083159447, 0.05086745321750641, -0.004078522324562073, 0.011988186277449131, -0.06000234931707382, 0.03460831940174103, 0.03339496627449989, 0.010887731797993183, -0.0017500247340649366, 0.0037332214415073395, -0.009750083088874817, -0.01664234884083271, 0.011075898073613644, -0.019744273275136948, -0.0483110137283802, 0.00915740430355072, 0.0198710598051548, -0.09420619159936905, 0.017415180802345276, -0.04206687957048416, -0.049296941608190536, -0.018728675320744514, -0.062110722064971924, 0.043842822313308716, 0.03535837680101395, 0.02910514362156391, 0.04333453252911568, -0.0375179722905159, -0.021595865488052368, 0.029192499816417694, 0.05866923928260803, -0.03431033343076706, 0.01689237542450428, 0.06426677852869034, 0.0034200623631477356, 0.011777713894844055, 0.029089292511343956, -0.0300639346241951, 0.01688919961452484, 0.030367759987711906, 0.004137901589274406, 0.03133099153637886, 0.028386598452925682, 0.002638360485434532, 0.019318699836730957, 0.02961181104183197, -0.02853870764374733, -0.014413491822779179, 0.03623662516474724, -0.00007551429735030979, 0.027664190158247948, 0.014490538276731968, -0.005948410369455814, -0.003933697007596493, -0.02469208650290966, -0.0651702806353569, 0.03545038029551506, 0.00314060365781188, 0.04957974702119827, -0.0651053786277771, 0.06189027428627014, -0.0199238620698452, -0.018630441278219223, 0.037262026220560074, -0.0369112454354763, 0.00980730727314949, 0.06993111222982407, -0.01839485764503479, 0.07669936865568161, -0.061570219695568085, 0.03643728792667389, -0.0192966740578413, 0.02965257503092289, 0.053394172340631485, 0.005829302594065666, 0.01299784705042839, 0.0023505499120801687, 0.005313133355230093, -0.00440882658585906, -0.008936526253819466, -0.00580176804214716, -0.0051131355576217175, -0.0005138315027579665, -0.01173957996070385, -0.045664671808481216, -0.06454754620790482, 0.05285616219043732, 0.014539442956447601, 0.05656454712152481, -0.042117275297641754, 0.05108752101659775, -0.035222869366407394, 0.031607359647750854, 0.04033738747239113, 0.02060193195939064, 0.00903946440666914, -0.044169798493385315, 0.061574019491672516, 0.027218464761972427, -0.01397581398487091, -0.03800089284777641, -0.014828279614448547, -0.015210962854325771, 0.030145512893795967, 0.015560457482933998, -0.014330418780446053, -0.04205824434757233, 0.006615598686039448, 0.002342942403629422, 0.02996229939162731, -0.02681467868387699, -0.009498030878603458, 0.0030898035038262606, 0.04040747508406639, -0.0009860406862571836, -0.048497360199689865, 0.00014754229050595313, -0.031223652884364128, 0.05143292620778084, 0.06351836770772934, 0.016652004793286324, -0.05798662453889847, -0.016980018466711044, 0.0012631507124751806, -0.05329807102680206, 0.00970413163304329, 0.0095744077116251, -0.02973160333931446, 0.01667976751923561, -0.027769386768341064, 0.02335735596716404, 0.019899921491742134, 0.000037569912819890305, -0.001673454069532454, 0.006674529053270817, 0.03558144345879555, 0.00852099247276783, 0.029923442751169205, 0.025875050574541092, -0.034421756863594055, 0.03167452663183212, -0.05149764195084572, 0.010050822049379349, -0.006193516775965691, -0.0229893047362566, 0.012678300030529499, 0.014411455020308495, 0.004550471436232328, -0.009338535368442535, -0.015105004422366619, -0.004048855043947697, -0.014022006653249264, 0.06033065542578697, -0.012232967652380466, -0.021539034321904182, 0.05312800779938698, -0.006683092098683119, -0.0350484773516655, 0.009548883885145187, 0.056658387184143066, -0.026448683813214302, 0.019584747031331062, 0.00864887423813343, -0.06643346697092056, 0.035959191620349884, -0.03301848843693733, 0.03176838159561157, -0.004848859738558531, -0.0224793441593647, -0.02434299886226654, -0.03297526389360428, 0.006317026447504759, -0.0015588259557262063, -0.008266054093837738, -0.020017391070723534, -0.0540364645421505, -0.009227797389030457, -0.009410248138010502, -0.022312607616186142, 0.001199150225147605, 0.004849582444876432, -0.02165893092751503, -0.021864885464310646, 0.005030998028814793, -0.019457684829831123, 0.0313967764377594, -0.03571502864360809, 0.023658880963921547, -0.008293726481497288, 0.037519313395023346, 0.03283028304576874, -0.0463608056306839, -0.027329642325639725, -0.0062895966693758965, 0.011130772531032562, -0.0066381492651999, -0.04660961031913757, -0.008292130194604397, -0.002287066774442792, 0.010600080713629723, -0.023805122822523117, -0.004005221650004387, -0.014612527564167976, 0.04200407862663269, 0.05586041510105133, -0.004236939363181591, 0.03851857781410217, 0.001382036367431283, -0.029947957023978233, 0.026041287928819656, 0.027129221707582474, -0.021832898259162903, -0.013071373105049133, 0.05427953600883484, -0.03985251113772392, 0.03514394164085388, -0.007201823405921459, -0.05586424097418785, -0.04823867604136467, -0.06139661744236946, -0.013691164553165436, -0.07150732725858688, -0.014366128481924534, -0.050987906754016876, -0.00006408904300769791, -0.030360527336597443, 0.03849177062511444, 0.009836140088737011, -0.03052988089621067, 0.007506195921450853, -0.028282836079597473, 0.006479132920503616, -0.021548563614487648, -0.0006260505178943276, -0.026751520112156868, 0.002007613657042384, 0.022951269522309303, 0.06671705842018127, 0.029053835198283195, -0.00725162960588932, -0.0059552667662501335, 0.0402509905397892, 0.015825890004634857, 0.01103740744292736, -0.06127548590302467, 0.0013949177227914333, -0.007656107656657696, -0.010267567820847034, -0.0038728585932403803, 0.014738590456545353, -0.049332041293382645, 0.03526132181286812, -0.019932352006435394, -0.02146722935140133, -0.035442057996988297, -0.0365566648542881, -0.03636808320879936, 0.005425107199698687, 0.02072581648826599, -0.01870977133512497, 0.023543452844023705, -0.032763827592134476, 0.052042022347450256, 0.05680881440639496, 0.0014416743069887161, -0.031944677233695984, -0.026814792305231094, -0.0489056222140789, -0.05496176332235336, 0.0189229566603899, -0.017177915200591087, 0.004483841359615326, -0.03684374317526817, -0.016098152846097946, 0.04520198702812195, -0.03922451660037041, 0.027910687029361725, 0.056929055601358414, 0.00041679319110699, -0.025757117196917534, -0.003428179305046797, 0.033431414514780045, 0.04307254031300545, -0.010147547349333763, 0.008069638162851334, -0.02895340509712696, -0.033897679299116135, -0.010428902693092823, -0.05926106497645378, -0.024226553738117218, -0.03292171284556389, -0.021270789206027985, 0.06883801519870758, -0.03282521665096283, 0.05191575363278389, -0.016338296234607697, -0.05028199777007103, -0.03445694223046303, 0.001311994856223464, 0.0003454440156929195, 0.030319103971123695, 0.03878231346607208, 0.012550054118037224, -0.018757076933979988, 0.020411541685461998, 0.018155420199036598, -0.03164489567279816, -0.034687455743551254, 0.04513707384467125, -0.006794979330152273, -0.03268563374876976, 0.032280292361974716, 0.03343901038169861, -0.05735097452998161, -0.03467694669961929, 0.015640199184417725, -0.02194291539490223, -0.009676441550254822, -0.05641365796327591, -0.008281073532998562, -0.014527883380651474, 0.01879795268177986, -0.0026171421632170677, 0.046003468334674835, -0.025080688297748566, 0.021829597651958466, 0.008022806607186794, 0.013345071114599705, -0.039185188710689545, 0.028469473123550415, 0.032554756850004196, 0.027988655492663383, -0.014958720654249191, -0.06033225357532501, -0.009788663126528263, 0.022138206288218498, -0.01706106960773468, 0.057359542697668076, -0.033943917602300644, 0.02156943827867508, 0.025948097929358482, -0.006152227520942688, 0.04035394266247749, -0.008334510028362274, -0.012173940427601337, 0.015037469565868378, -0.034730661660432816, -0.06493038684129715, -0.04272186756134033, 0.006455500144511461, -0.012282553128898144, 0.06323360651731491, -0.06695641577243805, -0.003715312806889415, 0.03670250624418259, 0.012288082391023636, -0.01941513828933239, -0.04511791095137596, -0.062096886336803436, -0.061889227479696274, -0.06740227341651917, -0.02467833273112774, -0.02986590936779976, -0.023223312571644783, 0.03562873229384422, 0.00727789057418704, -0.020388610661029816, -0.03680415451526642, 0.024340849369764328, -0.059854473918676376, -0.017559047788381577, -0.04748408496379852, 0.044341444969177246, -0.049337588250637054, -0.02282104641199112, -0.028639160096645355, 0.006576188839972019, -0.03265770524740219, -0.020070398226380348, -0.009919661097228527, 0.011907726526260376, -0.008162574842572212, 0.04424278065562248, 0.002794839208945632, 0.019423330202698708, -0.011151169426739216, -0.04597670957446098, -0.013605553656816483, 0.023435242474079132, -0.017852915450930595, 0.04166308045387268, 0.04376707971096039, -0.03010975755751133, 0.023156430572271347, -0.025798005983233452, -0.010600738227367401, -0.03351317718625069, 0.0007382994517683983, -0.0027988951187580824, 0.010492540895938873, -0.057630836963653564, -0.015741832554340363, 0.014830514788627625, -0.05862683430314064, -0.006960684433579445, -0.013737642206251621, 0.0041409884579479694, -0.01729658804833889, -0.055103033781051636, 0.003071008948609233, 0.05883670598268509, -0.010191070847213268, 0.030087990686297417, -0.008220394141972065, 0.026666009798645973, 0.002269243123009801, -0.009110478684306145, 0.015905719250440598, -0.009290233254432678, -0.002118112752214074, -0.0335785411298275, -0.03989775478839874, -0.013421519659459591, -0.0036662095226347446, 0.03622689098119736, -0.03979581594467163, -0.04791051894426346, -0.0396474152803421, -0.003159348154440522, 0.0191328264772892, 0.02428814209997654, -0.026472922414541245, 0.005190287716686726, -0.002707303036004305, -0.029847173020243645, -0.03928675875067711, 0.004315702710300684, -0.05793435499072075, -0.004633248317986727, 0.020190894603729248, -0.003068640362471342, -0.02311771921813488, -0.014598055742681026, -0.03493121266365051, 0.00793429184705019, -0.0023704548366367817, -0.00016580997908022255, -0.0353175587952137, 0.023678675293922424, 0.006007752381265163, 0.03825392201542854, 0.008082829415798187, -0.010304148308932781, 0.005758779123425484, 0.027058400213718414, -0.005619476083666086, -0.0447198785841465, 0.02042161300778389, -0.014724216423928738, -0.0005968631594441831, -0.03868013247847557, -0.03137094900012016, -0.0015244327951222658, 0.00588412256911397, -0.013060622848570347, 0.037337034940719604, 0.010525954887270927, 0.006676900666207075, 0.02991616539657116, 0.007442296948283911, 0.03443470597267151, -0.01573096588253975, 0.053769052028656006, 0.0037108641117811203, -0.051670923829078674, -0.021209949627518654, 0.038146037608385086, 0.06233010068535805, -0.021827537566423416, 0.049141526222229004, -0.003966465592384338, 0.01629239320755005, -0.0021699683275073767, 0.03555572032928467, -0.008427892811596394, 0.04710547253489494, 0.04045528545975685, 0.021030282601714134, 0.012587178498506546, 0.02140538953244686, 0.05138378217816353, -0.01557841431349516, 0.027629980817437172, 0.023178262636065483, 0.0038664275780320168, -0.008337907493114471, 0.007417098619043827, -0.06409309804439545, 0.005067439749836922, -0.0027977218851447105, -0.029849426820874214, -2.6460912749826093e-7, -0.02993919886648655, 0.005991500802338123, -0.026727009564638138, -0.027871083468198776, 0.048550572246313095, -0.035936322063207626, 0.005022987723350525, 0.005267713684588671, -0.0030134550761431456, -0.002892227377742529, 0.020487306639552116, 0.007454006467014551, -0.01571047306060791, 0.02242392860352993, 0.02976357750594616, -0.02461174502968788, 0.05422689765691757, 0.03409149870276451, 0.009928456507623196, -0.01489228568971157, 0.021943114697933197, 0.01815081760287285, -0.02064340002834797, -0.005973805207759142, 0.007604434620589018, -0.04852092266082764, 0.02912929281592369, -0.017361892387270927, -0.04014265537261963, 0.07049190253019333, -0.03791840001940727, -0.029560567811131477, -0.044850222766399384, 0.015635399147868156, -0.022957103326916695, -0.017302699387073517, 0.03559350222349167, 0.015366769395768642, -0.01414569653570652, 0.02432444505393505, -0.01746428944170475, 0.060331542044878006, -0.005067440215498209, 0.06375333666801453, -0.025413084775209427, 0.07565000653266907, 0.05027424916625023, -0.033683545887470245, 0.002699893433600664, 0.006969332695007324, -0.015758346766233444, -0.03072887286543846, -0.010182131081819534, -0.03546779975295067, 0.011006012558937073, -0.011486722156405449, -0.005833938717842102, 0.007919736206531525, 0.036511119455099106, -0.012055424973368645, -0.02689661644399166, -0.005099951755255461, 0.00862308219075203, -0.0173808541148901, 0.002107291715219617, 0.007432007696479559, 0.03370468318462372, -0.006053564604371786, -0.013068567961454391, -0.041486043483018875, -0.009962353855371475, 0.010119342245161533, -0.03585110604763031, 0.055178482085466385, -0.0006632354925386608, -0.058125872164964676, -0.03019114024937153, -0.05133958160877228, -0.03823127597570419, 0.008590194396674633, -0.0178141500800848, -0.036646630614995956, 0.04865231737494469, 0.05223185941576958, -0.0014677922008559108, 0.021283939480781555, -0.021970504894852638, 0.0009051928063854575, 0.0776122435927391, 0.08679118752479553, 0.020878225564956665, 0.029010510072112083, 0.0303554218262434, -0.009489373303949833, 0.01897560991346836, -0.00215186458081007, 0.04247671365737915, -0.002800567075610161, -0.018492870032787323, -0.03573180362582207, 0.020141849294304848, -0.005953640677034855, -0.044286251068115234, 0.01995645835995674, 0.010471304878592491, 0.02804611250758171, -0.055615898221731186, -0.06452149897813797, -0.013332062400877476, -0.028255606070160866, 0.01838396117091179, -0.0227045975625515, 0.05088232830166817, -0.0031383312307298183, -0.0004345103516243398, -0.018522996455430984, -0.06121249124407768, 0.1470285803079605, 0.0625881776213646, 0.004590076860040426, -0.01250925101339817, 0.030695199966430664, 0.049338795244693756, 0.03587960824370384, -0.004718518815934658, 0.0006819191621616483, 0.019149726256728172, 0.023703722283244133, 0.0037579075433313847, 0.009620611555874348, -0.003803184488788247, 0.017827773466706276, 0.046185556799173355, -0.017662543803453445, 0.007675081491470337, -0.012404097244143486, -0.028511984273791313, -0.03663551062345505, 0.008432530798017979, 0.018379779532551765, 0.01875457540154457, -0.011932791210711002, -0.0011996739776805043, 0.030769282951951027, -0.045152731239795685, -0.003086649812757969, -0.003250323934480548, 0.018064362928271294, -0.041950345039367676, 0.04054888337850571, -0.025240514427423477, -0.055687081068754196, 0.0338856540620327, -0.00014607053890358657, -0.02111542783677578, 0.005728085990995169, 0.011240645311772823, -0.01459781639277935, -0.005703521892428398, 0.017177050933241844, -0.04359205812215805, 0.026162192225456238, 0.028057416900992393, -0.02029077149927616, 0.02347109094262123, 0.010513723827898502, -0.029989449307322502, 0.050904691219329834, -0.04285784810781479, 0.026538388803601265, 0.010746369138360023, -0.046516988426446915, 0.01574120670557022, 0.03103901445865631, -0.021179545670747757, 0.022916141897439957, 0.010747013613581657, 0.017105495557188988, 0.014758963137865067, -0.0128183513879776, 0.01830771192908287, 0.00947915855795145, -0.006342950742691755, 0.023743251338601112, 0.02126142382621765, -0.0033389150630682707, 0.005571162328124046, -0.023168278858065605, -0.009344369173049927, -0.05580725148320198, -0.03859962150454521, 0.00962911918759346, 0.02678479254245758, -0.006984769832342863, 0.03169882670044899, 0.004374860320240259, -0.03054514341056347, -0.051376547664403915, -0.04273933172225952, 0.007974766194820404, -0.0001421561901224777, 0.008427595719695091, 0.04612820968031883, -0.054628729820251465, -0.017588771879673004, -0.04271429777145386, 0.06692684441804886, 0.07092239707708359, -0.0015593564603477716, 0.0033838434610515833, -0.0365816131234169, -0.014086335897445679 ]
GadgetBond The daily coverage of gadgets, technology and consumer electronics 6 Best Learning Apps for Creative and Career Growth Best Workout Apps to Make Your Life Everyday Better 5 Best Useful Google Chrome Extensions of All Time Best External Storage of All Time Deals/Application Save 35% on ESET Security products through Jan. 14th by Shubham Dec 31, 2021 | 1:00 PM IST Logo courtesy: ESET Starting today through January 14th, 2022, ESET offers a discount of 35% on its Security products to new Canadian and US customers at a lower price including ESET Smart Security Premium, ESET Internet Security, and ESET NOD32 Antivirus. ESET Smart Security Premium, Now $38.99 (Was $59.99) — US, Canada ESET Internet Security, Now $32.49 (Was $49.99) — US, Canada ESET NOD32 Antivirus, Now $25.99 (Was $39.99) — US, Canada In October, ESET released an updated version of its award-winning consumer products, which included several of the new features and enhanced security for users at home. Users of these products will now get access to ESET HOME, a mobile app or website that allows them to control the security of all of their Windows and Android home devices from a single, easy-to-use interface. "With more people working from home, and consequently more cyberattacks aimed at home networks, it's vital that people keep safe from these persistent cyber threats," said Brent McCarty, president of ESET North America. "That's why we are pleased to offer our consumer products at a reduced rate for this special New Year's promotion, so home users can safely work, browse, buy and pay online knowing they're backed by our easy-to-use products." ESET Smart Security Premium is a premium security suite that includes safe banking and a password manager for PC, macOS, and Android. Advanced threat detection, additional theft protection, easy password management, and military-grade encryption are just a few of the features. ESET Smart Security Premium now includes LiveGuard, an additional proactive layer of protection against never-before-seen sorts of attacks, to effectively satisfy home users' needs and deliver top-level protection. ESET Smart Security Premium safeguards all of a user's devices and encrypts files and photos, allowing them to safely shop and bank online. ESET Internet Security includes banking and payment protection, firewall and network inspector, parental controls, and legendary antivirus technology with multilayered proactive protection for Windows, macOS, and Android devices, making it ideal for modern users concerned about their privacy and who actively use the internet for shopping, banking, work, and communication. For gamers and regular users who don't want to be interrupted, ESET NOD32 Antivirus is fast, light, and useful. Antivirus and antispyware protection are included, as well as an upgraded ransomware shield and exploits blocker, advanced machine learning, and script-based attack defense. ESET NOD32 Antivirus protects computers running Windows and macOS devices. FTC: We receive compensation from the links on this page. Learn more Best Pick Jan 16, 2022 | 2:45 PM IST Adobe After Effects Keyboard Shortcuts to Save Your Time Apple App Store will accept third-party payments in South Korea Jan 4, 2022 | 7:50 PM IST BlueJeans Meetings is now preloaded on Glass Enterprise Edition 2 devices sold by Verizon I appreciate doing research on interesting things. If you're interested in contributing content, please contact me at shubham@gadgetbond.com. Fiverr launches personalized discovery feature called 'Inspire' Telegram's end of the year updates brings amazing features, including reactions, message translation, themed QR codes, hidden text (spoilers), and more Copyright © 2022 GadgetBond. All Right Reserved.
[ -0.024131782352924347, -0.009802968241274357, -0.02895648218691349, 0.004554310813546181, -0.01854628324508667, 0.013034268282353878, -0.0011305195512250066, 0.01913248747587204, 0.03320026397705078, 0.02893534116446972, 0.034106601029634476, 0.016009408980607986, 0.03094625100493431, -0.034929193556308746, -0.025967072695493698, 0.0053492882288992405, -0.02369534596800804, -0.01945600099861622, -0.006693631410598755, 0.01372110191732645, 0.02784596011042595, 0.02054484561085701, -0.06145479530096054, -0.04699011147022247, -0.039670929312705994, 0.03207087889313698, 0.02215319313108921, -0.004152074456214905, 0.05084142088890076, 0.055625952780246735, -0.017070669680833817, -0.030283672735095024, 0.030177041888237, -0.05483541637659073, -0.027945447713136673, -0.039704229682683945, 0.025129428133368492, 0.0037865324411541224, -0.03814151510596275, -0.028410088270902634, 0.011097974143922329, 0.0072460658848285675, 0.06598756462335587, -0.03457815572619438, -0.028691565617918968, -0.03429058566689491, 0.012519779615104198, -0.029855920001864433, 0.01951281912624836, -0.011090991087257862, 0.02123892866075039, 0.00975368544459343, 0.03724853694438934, -0.01302505936473608, 0.01436525583267212, 0.030083978548645973, -0.012565416283905506, 0.00839221104979515, -0.03745473176240921, 0.028242284432053566, 0.024234134703874588, 0.010120432823896408, 0.04029453173279762, -0.027156000956892967, 0.023949479684233665, 0.009739236906170845, -0.0026681385934352875, -0.009916177950799465, 0.02297781966626644, -0.008691905997693539, -0.00909229926764965, 0.009675061330199242, -0.021885521709918976, -0.028920769691467285, 0.0014600246213376522, 0.013436831533908844, -0.045337606221437454, 0.040288738906383514, -0.011280164122581482, -0.027229303494095802, 0.005050813779234886, 0.03144025802612305, -0.011762883514165878, -0.011197020299732685, -0.07117348909378052, -0.027162324637174606, -0.0016474974108859897, -0.006840103305876255, -0.027893422171473503, 0.02035471424460411, -0.007238198071718216, 0.05635719746351242, 0.019628776237368584, -0.019199548289179802, 0.024154266342520714, 0.028354426845908165, -0.033239953219890594, 0.0035963866394013166, -0.0016063579823821783, -0.005752222612500191, 0.02895391173660755, 0.01550899725407362, 0.0009988307720050216, 0.059640806168317795, -0.01771792210638523, -0.013296185992658138, 0.02837786078453064, -0.03444330021739006, -0.03342922031879425, -0.033565420657396317, -0.0007093187887221575, 0.003492336254566908, 0.022956665605306625, -0.00712821539491415, 0.0018674819730222225, 0.04421133175492287, -0.013468683697283268, 0.059944797307252884, -0.03792314976453781, 0.033498555421829224, 0.0036584888584911823, 0.024260690435767174, 0.04381004720926285, -0.023964107036590576, -0.0015719198854640126, -0.03405061364173889, -0.005791747011244297, 0.01362051535397768, -0.01622544229030609, -0.0408746674656868, -0.0246278028935194, -0.022273218259215355, 0.016550296917557716, 0.050137799233198166, -0.015713006258010864, 0.047440920025110245, 0.014945073053240776, 0.024227198213338852, 0.03653596341609955, -0.06852226704359055, 0.03422042354941368, 0.023768378421664238, 0.021273721009492874, 0.09890904277563095, 0.0011110244086012244, 0.016905125230550766, 0.01048477366566658, -0.02156626246869564, -0.020490873605012894, 0.024081600829958916, -0.016878295689821243, 0.041096679866313934, 0.006693467032164335, 0.029951171949505806, -0.022678518667817116, -0.004716663155704737, -0.018694335594773293, 0.035788651555776596, 0.006081120111048222, 0.02691728062927723, -0.02836158685386181, 0.017497142776846886, -0.008991354145109653, 0.05287138372659683, -0.01777483895421028, 0.033679310232400894, -0.037587765604257584, -0.014746436849236488, -0.023488476872444153, -0.015261995606124401, 0.018643105402588844, -0.011294214054942131, -0.012638520449399948, 0.007947954349219799, 0.042439501732587814, 0.05347517877817154, 0.06270784139633179, 0.005251016933470964, 0.031589850783348083, 0.05890659615397453, -0.029378164559602737, 0.0016764079919084907, -0.009195877239108086, 0.07408113777637482, -0.010963100008666515, 0.01053309440612793, 0.01451319083571434, -0.023962322622537613, -0.01983955316245556, -0.016263563185930252, 0.002027057344093919, 0.0108609264716506, -0.04449351131916046, 0.011541875079274178, -0.014529962092638016, 0.001235376694239676, -0.038360267877578735, -0.0036873766221106052, -0.006883236579596996, -0.07540740072727203, -0.008441699668765068, 0.03995644673705101, -0.038354840129613876, 0.014599945396184921, 0.009116847068071365, -0.051909588277339935, 0.031541287899017334, 0.06603898853063583, -0.04890245571732521, -0.004284054972231388, 0.030102159827947617, 0.04159877449274063, -0.028924869373440742, -0.04583210125565529, 0.03528398275375366, -0.0027578885201364756, -0.013403849676251411, 0.051202744245529175, 0.0022380270529538393, -0.014667252078652382, 0.004674529656767845, 0.015825791284441948, 0.011612782254815102, 0.05308178439736366, -0.015064230188727379, 0.02262076735496521, 0.011809093877673149, 0.06285687536001205, -0.024853328242897987, -0.0007869769469834864, -0.0042139687575399876, 0.03401365503668785, 0.02023065648972988, 0.056201402097940445, 0.04911492019891739, 0.031557515263557434, 0.02314116433262825, 0.03616310656070709, 0.006416534539312124, 0.046510010957717896, 0.0033232076093554497, -0.019108779728412628, 0.0205828994512558, 0.00961280521005392, -0.002840218599885702, 0.004209641832858324, -0.00795771088451147, -0.005713251885026693, -0.03582143038511276, 0.019962450489401817, -0.03581080213189125, 0.04839932546019554, 0.006787936668843031, 0.04287979379296303, -0.03641808405518532, -0.003200995037332177, 0.0617113932967186, 0.06228182464838028, -0.020444368943572044, 0.01493407879024744, -0.029044201597571373, 0.031319428235292435, 0.012992440722882748, 0.014395898208022118, 0.020130669698119164, 0.05155101418495178, 0.013839835301041603, 0.006987413391470909, -0.04424020275473595, -0.04020535945892334, -0.04676399752497673, -0.05420554429292679, -0.055330898612737656, -0.01250390149652958, -0.06467651575803757, -0.009071492590010166, 0.009743544273078442, -0.04779699444770813, 0.02814827859401703, -0.05588821321725845, 0.017600523307919502, -0.02724693901836872, -0.01689671352505684, 0.04492802545428276, 0.01624661684036255, 0.03641713038086891, -0.01023313868790865, 0.02835197187960148, 0.027890056371688843, 0.03259675204753876, -0.03495551645755768, -0.00021011971693951637, 0.003114928025752306, -0.03442434221506119, 0.01219026930630207, -0.02758895605802536, 0.0005662590265274048, 0.0012483653845265508, -0.02735608071088791, -0.018943937495350838, -0.009288311004638672, 0.019551046192646027, 0.001498865312896669, 0.01570856012403965, -0.045434173196554184, 0.040410760790109634, 0.04649585485458374, -0.018303098157048225, 0.05373387038707733, 0.051058243960142136, -0.048143401741981506, 0.028922613710165024, 0.027669990435242653, 0.034578245133161545, -0.0666450709104538, 0.030354857444763184, 0.039738573133945465, 0.010319355875253677, -0.052327413111925125, 0.0048741246573626995, -0.035893820226192474, 0.01124147791415453, 0.0055601708590984344, -0.014205235987901688, -0.026720738038420677, 0.03275412321090698, 0.015525110997259617, -0.0624915286898613, 0.03459612652659416, -0.045980747789144516, -0.018817221745848656, -0.06219514086842537, -0.016605833545327187, 0.016864921897649765, 0.015287302434444427, 0.019366510212421417, -0.0019940403290092945, -0.007336744572967291, 0.0031053374987095594, -0.0035223441664129496, 0.044842664152383804, -0.03969720005989075, 0.02937755174934864, 0.03378656134009361, 0.0018829067703336477, 0.019156891852617264, 0.03315563499927521, -0.026691410690546036, -0.015311656519770622, 0.0008908098097890615, -0.013682331889867783, 0.024313177913427353, 0.024552464485168457, -0.0012766699073836207, 0.024220002815127373, 0.03608492389321327, -0.032852381467819214, 0.026769010350108147, 0.035654209554195404, 0.012693922035396099, 0.056044068187475204, 0.01572341099381447, 0.0040851496160030365, 0.006735996343195438, -0.00774775817990303, -0.061430610716342926, 0.03531327098608017, 0.00018716022896114737, 0.03747428208589554, -0.03916168585419655, 0.0152512788772583, -0.00338925002142787, -0.050751637667417526, 0.041280802339315414, -0.047084398567676544, 0.00044858342153020203, 0.02597963809967041, -0.029391488060355186, 0.027951791882514954, -0.02511618845164776, 0.033381830900907516, 0.009073990397155285, 0.006208423525094986, 0.031944241374731064, -0.009001999162137508, 0.02518089860677719, -0.009220446459949017, -0.019517064094543457, -0.02359122224152088, -0.013500424101948738, -0.010138841345906258, -0.03468598052859306, 0.016234783455729485, -0.006079364567995071, -0.04098742455244064, -0.054424092173576355, 0.03420175984501839, 0.0024391314946115017, 0.01798863895237446, -0.022089164704084396, 0.05750935897231102, -0.025595180690288544, 0.03461791202425957, 0.02718646451830864, -0.010363294743001461, -0.007243266794830561, -0.03635425493121147, 0.05128016322851181, -0.0003157357277814299, -0.010859225876629353, -0.05073291435837746, -0.012486475519835949, -0.05110175535082817, 0.03148088604211807, -0.0035136970691382885, -0.0070265913382172585, -0.014095776714384556, 0.018387725576758385, 0.019158372655510902, 0.041351545602083206, -0.030521858483552933, -0.009676583111286163, -0.055798761546611786, 0.05399016663432121, 0.02178064174950123, -0.04289103299379349, -0.014504566788673401, -0.04658931866288185, 0.023055054247379303, 0.04816051200032234, 0.011886527761816978, -0.022233469411730766, -0.03133745118975639, -0.02614460699260235, -0.04055020213127136, -0.004510784987360239, 0.021234381943941116, 0.0013299036072567105, 0.014305686578154564, -0.055492524057626724, 0.02460845187306404, 0.018284348770976067, -0.0037018856965005398, -0.014011839404702187, 0.029696624726057053, 0.016357893124222755, 0.00814206525683403, 0.023934943601489067, 0.013556658290326595, -0.021861733868718147, 0.03180693835020065, -0.05426420271396637, 0.03899803385138512, -0.007069107610732317, -0.04176739975810051, 0.0047075687907636166, 0.02954193763434887, -0.004125128500163555, 0.02608734928071499, -0.04621026664972305, 0.018473826348781586, -0.009458992630243301, 0.05872313305735588, -0.039364252239465714, -0.03426016494631767, 0.043393202126026154, -0.031091323122382164, -0.029218748211860657, 0.008247296325862408, 0.024133335798978806, 0.00660205353051424, 0.02507106214761734, 0.02496567741036415, -0.037955593317747116, 0.02419961988925934, -0.043353673070669174, 0.0068046655505895615, -0.0012983479537069798, -0.048544976860284805, -0.014642448164522648, -0.04737164452672005, 0.01672564633190632, 0.008867689408361912, -0.010978884063661098, -0.05485161393880844, -0.04693080112338066, -0.02999972365796566, 0.008430030196905136, -0.019988592714071274, 0.03809709846973419, 0.005945208482444286, -0.015121030621230602, -0.005123881157487631, 0.004081200808286667, 0.007459279149770737, 0.025713186711072922, -0.011506443843245506, 0.00033811695175245404, 0.032255303114652634, 0.022670892998576164, 0.024207621812820435, -0.042087942361831665, -0.02386208437383175, -0.00006994038267293945, 0.004890499170869589, -0.03152669221162796, -0.0657757818698883, 0.0135334562510252, -0.02380354516208172, -0.025475194677710533, -0.01217340026050806, 0.03565891459584236, -0.04426409304141998, 0.018754933029413223, 0.03275512158870697, -0.00017181965813506395, -0.0015663772355765104, 0.0069996388629078865, -0.04199210926890373, 0.04076563939452171, 0.018533971160650253, -0.03264491260051727, -0.02583514340221882, 0.04663178697228432, -0.007857493124902248, 0.050360966473817825, -0.0020353770814836025, -0.021931327879428864, -0.06042712926864624, -0.03827333822846413, -0.023921823129057884, -0.029373180121183395, -0.008296667598187923, -0.041130948811769485, -0.011758494190871716, -0.026266535744071007, 0.06192948296666145, 0.028458042070269585, -0.012325616553425789, -0.007400607690215111, -0.0412847176194191, 0.008840401656925678, -0.055035289376974106, -0.008436255156993866, -0.024561161175370216, -0.038075514137744904, -0.027544816955924034, 0.05805371701717377, -0.00017712009139358997, 0.025487150996923447, -0.020178575068712234, 0.03366588056087494, 0.010945717804133892, 0.009902194142341614, -0.06833556294441223, -0.04770591855049133, 0.003152464749291539, -0.015381797216832638, -0.0036430219188332558, -0.0198211632668972, -0.0477323979139328, 0.04897347465157509, -0.054606158286333084, -0.0172271765768528, -0.01666261814534664, 0.014881545677781105, -0.011027403175830841, -0.002529407385736704, 0.0436699315905571, -0.027403559535741806, -0.00251234183087945, -0.008867226541042328, 0.037172555923461914, 0.07543846219778061, 0.013859220780432224, -0.055243950337171555, -0.03011760674417019, -0.044138334691524506, -0.05108799412846565, 0.017508061602711678, -0.030619803816080093, -0.00486932834610343, -0.022120123729109764, -0.03557116165757179, 0.02827558107674122, -0.004751612897962332, 0.033169373869895935, 0.06516901403665543, -0.00956473033875227, -0.016932018101215363, -0.018045684322714806, 0.02806037664413452, 0.04961342364549637, -0.034943755716085434, -0.025804581120610237, -0.03028407320380211, -0.02709009498357773, 0.006123651750385761, -0.06920857727527618, -0.039066676050424576, -0.03698229417204857, -0.007870245724916458, 0.050344318151474, -0.033815592527389526, 0.05047232285141945, -0.021668802946805954, -0.044735055416822433, -0.03459198772907257, 0.061176978051662445, -0.003401759546250105, 0.04914769530296326, 0.06409478187561035, 0.019718216732144356, -0.031052229925990105, 0.024325847625732422, -0.01681917905807495, 0.033005572855472565, -0.03779631108045578, 0.05597638338804245, -0.012868795543909073, -0.028696810826659203, 0.02892814204096794, 0.05451461672782898, -0.04339892044663429, -0.07728156447410583, 0.024995844811201096, -0.0001730767107801512, -0.0005775284371338785, -0.06298191100358963, 0.020941106602549553, 0.020245322957634926, -0.003249791217967868, 0.009609152562916279, 0.03786548599600792, 0.01785687357187271, 0.041344497352838516, 0.02423485554754734, 0.046579644083976746, -0.03778271749615669, 0.004687544424086809, 0.010185482911765575, -0.00973841268569231, 0.004748468287289143, -0.0511477068066597, -0.02694149874150753, -0.0121837817132473, -0.02666332945227623, 0.05159822106361389, -0.003502921899780631, 0.007531899027526379, 0.017426632344722748, 0.01811307854950428, 0.04215856269001961, 0.008137570694088936, -0.007582923863083124, 0.018581995740532875, -0.03506113216280937, -0.042856425046920776, -0.02632693015038967, 0.02333957329392433, -0.006838916335254908, 0.0372546948492527, -0.02156442403793335, 0.015537985600531101, 0.0022596290800720453, 0.009120074100792408, -0.04219913110136986, -0.05078557878732681, -0.042140696197748184, -0.050569087266922, -0.04717746749520302, 0.0031844002660363913, -0.020280128344893456, -0.014836136251688004, 0.023209983482956886, 0.006424485705792904, -0.02382645010948181, -0.02307197079062462, 0.026514198631048203, -0.017685314640402794, -0.013314662501215935, -0.03136833384633064, 0.01915549859404564, -0.05615660920739174, -0.07219865918159485, -0.05675281211733818, 0.023970482870936394, -0.01534703467041254, 0.004573892802000046, -0.026262838393449783, 0.010862871073186398, 0.0049552288837730885, 0.020631765946745872, -0.025382641702890396, 0.013673827052116394, -0.039955634623765945, -0.050751905888319016, -0.004943310283124447, 0.02932877279818058, -0.021009599789977074, 0.029473595321178436, 0.04298347234725952, -0.022285597398877144, 0.01385044027119875, -0.030672701075673103, -0.013726873323321342, -0.030360117554664612, 0.017475081607699394, -0.005539016332477331, 0.0372251532971859, -0.044357530772686005, -0.04578733071684837, -0.004069230984896421, -0.02660624124109745, 0.023398902267217636, -0.028629949316382408, 0.004033723846077919, 0.00009851953655015677, 0.018578795716166496, -0.005416999105364084, 0.0558207705616951, 0.012890409678220749, 0.02110365405678749, 0.015883898362517357, 0.01279792096465826, 0.01504089031368494, -0.022007834166288376, 0.0190699715167284, 0.0069383131340146065, 0.049996256828308105, -0.00805467925965786, 0.005767625756561756, 0.0027474521193653345, -0.022786490619182587, 0.025515180081129074, -0.0023994462098926306, -0.022628575563430786, -0.025538261979818344, 0.006604507565498352, -0.016735797747969627, 0.030610721558332443, 0.030827172100543976, 0.03977709636092186, 0.04183143004775047, 0.00003737149745575152, -0.03965102508664131, -0.0004332828102633357, -0.042619723826646805, -0.04232777655124664, 0.016339944675564766, -0.00532548176124692, -0.03552832826972008, -0.002252699574455619, -0.03661755844950676, -0.00395322497934103, -0.02425495907664299, -0.014582174830138683, -0.002109444933012128, 0.0629110038280487, -0.0034056417644023895, 0.05115100368857384, -0.004019399639219046, 0.012230553664267063, 0.018891479820013046, 0.07106863707304001, -0.047245871275663376, -0.046684663742780685, 0.013607509434223175, 0.0365971215069294, -0.017943568527698517, -0.018015963956713676, -0.019439654424786568, 0.003955783322453499, 0.043492164462804794, -0.014209982939064503, 0.012073196470737457, 0.022707726806402206, -0.039734818041324615, 0.048696376383304596, -0.016218064352869987, 0.04178885743021965, -0.010537141934037209, 0.027773553505539894, -0.020414192229509354, -0.022793030366301537, -0.05460076034069061, 0.01657039299607277, 0.04425109177827835, -0.018312454223632812, 0.018225761130452156, 0.0238801296800375, 0.03267057612538338, -0.027575677260756493, 0.005507613066583872, -0.012615087442100048, 0.03212634101510048, 0.03331444784998894, 0.026995452120900154, -0.009262650273740292, 0.043815262615680695, 0.05204634740948677, -0.0219064150005579, 0.009366343729197979, 0.029477976262569427, -0.004380353726446629, -0.03529810160398483, 0.020990626886487007, -0.03362668678164482, 0.00862818118184805, 0.0028094076551496983, -0.04279617965221405, -0.012297777459025383, -0.02396470122039318, 0.01843741163611412, -0.01536998525261879, -0.015888337045907974, 0.04005425050854683, -0.02706896699965, 0.01976141706109047, 0.019510766491293907, -0.009141023270785809, 0.01972394436597824, 0.03145870938897133, 0.004943472798913717, -0.03773527964949608, 0.04273372143507004, 0.043125052005052567, -0.013002259656786919, 0.02743716351687908, 0.030647171661257744, -0.0030293648596853018, -0.02262440137565136, -0.002008444629609585, -0.01889859326183796, -0.012645870447158813, -0.01794985681772232, 0.0035803148057311773, -0.08345769345760345, 0.0518781878054142, -0.014344903640449047, -0.019320594146847725, 0.05238579213619232, -0.060271039605140686, -0.02955799736082554, -0.06371984630823135, 0.030311768874526024, -0.04734101891517639, -0.03129010275006294, 0.054486263543367386, -0.01162086520344019, -0.0244574137032032, 0.012653009966015816, -0.0013231368502601981, 0.0374174527823925, 0.03627559170126915, 0.04342306777834892, -0.01010133232921362, 0.04736456274986267, 0.05527177080512047, -0.03297935798764229, -0.015414838679134846, 0.037214245647192, -0.0025470068212598562, -0.01193938683718443, -0.01734890043735504, -0.050260018557310104, -0.007117916829884052, -0.001815032446756959, -0.024847444146871567, 0.005872718524187803, 0.04931744188070297, 0.010626868344843388, -0.01578124612569809, 0.015994979068636894, 0.04607740417122841, -0.020972425118088722, 0.005982192233204842, 0.04807508364319801, 0.051731616258621216, 0.006269057281315327, -0.017112357541918755, -0.018333837389945984, -0.0633397325873375, -0.018694324418902397, -0.05597010627388954, 0.041742581874132156, -0.026170462369918823, -0.011981218121945858, -0.03299229219555855, -0.04826989024877548, -0.053365398198366165, -0.0023490148596465588, -0.02718864567577839, -0.04157150536775589, 0.05725307762622833, 0.030435750260949135, 0.011530487798154354, 0.005633160006254911, -0.030134327709674835, 0.0009676548070274293, 0.04477180168032646, 0.04375100135803223, -0.013227293267846107, 0.03620574250817299, 0.024051012471318245, 0.008158421143889427, 0.04055137187242508, -0.03411693125963211, 0.050906773656606674, -0.02458539418876171, -0.021298101171851158, -0.01605750434100628, -0.001655613537877798, -0.021871773526072502, -0.03992394357919693, 0.00624512555077672, 0.004658753518015146, 0.015004999004304409, -0.030653899535536766, -0.042664337903261185, -0.005045610014349222, -0.05479346960783005, -0.00012710913142655045, -0.04068638011813164, 0.01857270672917366, 0.011652480810880661, -0.031217193230986595, -0.01683359034359455, -0.06686827540397644, 0.16221830248832703, 0.07350368797779083, 0.04790559411048889, 0.019910946488380432, 0.04778994619846344, 0.02930339239537716, 0.02207251824438572, -0.03310243412852287, 0.003071544924750924, -0.013579427264630795, 0.014134866185486317, -0.022863155230879784, 0.027739478275179863, 0.008714563213288784, 0.00011978662951150909, 0.03922608122229576, -0.02680782601237297, -0.006320766638964415, 0.029476450756192207, -0.04395072162151337, -0.07929009199142456, 0.015969714149832726, 0.003532717004418373, 0.024630015715956688, 0.0002932945790234953, 0.01852920651435852, 0.011966712772846222, -0.03883124515414238, -0.017645178362727165, -0.025957688689231873, 0.035396963357925415, -0.0322435200214386, 0.052364543080329895, -0.006401749327778816, -0.053683340549468994, 0.05953653156757355, -0.005446189548820257, -0.01949758641421795, -0.010400144383311272, 0.006436340976506472, -0.03024783357977867, 0.008102396503090858, 0.034843478351831436, -0.03581317514181137, 0.011175223626196384, 0.016594350337982178, -0.050435133278369904, 0.004665850196033716, 0.03109068237245083, -0.04589594528079033, 0.035319335758686066, -0.030111851170659065, 0.03703763708472252, 0.014127150177955627, -0.040690790861845016, -0.0007775818812660873, 0.023845519870519638, -0.03294011205434799, 0.012764251790940762, 0.010223927907645702, 0.03147830069065094, 0.006972517352551222, -0.01675187610089779, -0.011975767090916634, -0.02625279687345028, 0.0036342155653983355, -0.005645241122692823, 0.05001036077737808, 0.006320009473711252, -0.013262184336781502, -0.019872792065143585, -0.01707002893090248, -0.02567143552005291, -0.0039050523191690445, 0.019409634172916412, 0.014906753785908222, 0.001006366335786879, 0.03531738743185997, 0.005995282903313637, -0.023453036323189735, -0.03829921409487724, -0.009672533720731735, -0.03194956108927727, -0.010708375833928585, 0.051965441554784775, 0.05444863438606262, -0.04198440909385681, -0.028574392199516296, -0.022810891270637512, 0.04871877282857895, 0.04131322726607323, 0.029972365126013756, -0.0006234057946130633, -0.014813859947025776, 0.01679222472012043 ]
You are at: Home - > MCC-SK 50th -> Material Resources Material Resources 50 Year Celebration On December 4, 2014, MCCS celebrated its last 50th anniversary event with an evening to celebrate the Material Resources department. It was held at Mount Royal Church in Saskatoon. 39 people were present and enjoyed a lively time of remincing about this vital service. The cake shown here, was cleverly decorated to show items from a typical School Kit. The dove on the black background is the MCC logo on the humanitarian aid shipped out by MCC, giving us a name as "the People of the Bird." Del Lennea shared the following report and history. . . . Material Resources Material Resources are the items Mennonite Central Committee sends overseas as humanitarian aid to those in need. Doreen Epp and Darlene Wahl, as well as myself, Del Lennea, helped build MR into what it is today. Doreen was a kind, gentle entrepreneur married to a hard-working farmer. She was an excellent resource to be part of MCC. She had the knowledge and support it took to get a donor base established. Doreen also began the logistics of putting together a plan of how to get items here in Saskatchewan to faraway places overseas to those people who needed them. One of Doreen's highlights, working for MCCS, was the opportunity to travel to Ukraine. On this trip she was able to see where MCC had its first ever shipment of food delivered and dispersed. As earlier mentioned Darlene Wahl was also part of MR at the MCCS location. After talking with Darlene I realized her major highlight was bringing the MR resources room from the dark, windowless, second-floor corner down to where it is now. She advocated with her volunteers, that it be more front and centre - where the room was well-lit and the room would be more inviting and warm. This also would help MCCS in the promotion of MR to the public. People would notice the noisy, busy room as soon as they entered the building. This leads us to where we are today. The Baler Transition The material donations that piled up here in Saskatchewan were boxed up, banded shut and sent to the MCCBC warehouse in Abbotsford. This would involve about eight or nine people to take a half day to load the semi-trailer by hand with all these cardboard boxes. There was plenty of joyous noise as those involved realized the difference these donations were going to make in someone's life. Upon the arrival of the donations in BC, they would all have to be unloaded by hand, hauled into the warehouse, reopened and baled appropriately for the container. Soon after my arrival here at MCCS, I questioned why we were creating work for the people in the BC warehouse, when we could do it at our own location, and increases the efficiency of our own warehouse. The introduction of the second-hand, refurbished tobacco-baler from Kansas was the start of MCCS's move to become more efficient. This baler made its way up to our warehouse with God's blessing. When it arrived, a newly-assembled team was invited in to put it back together and see how it would operate. This team consisted of Ed Feick, Ben Thiessen, and Del Lennea. In fine fashion, the response from the team was enthusiastic. With a little physical cranking and chains connecting all the moving parts, we had ourselves a baler. This was significant because the containers used to move the material overseas could be packed more efficiently using 5.0 cubic foot balers. The calculations of cubic feet were made and the baler was marked accordingly, then just a few more supplies were needed, and we were ready to step into the future. Wrap, strapping, tape, labels, and cardboard for extra support were brought in and the first bale at the MCCS warehouse existed. Since the team was now working with larger, heavier weight, a pallet jack was needed to simplify operations. Let the fund-raising begin. A very short while later we had our jack, and now pallets were filled and wrapped so MCCS could ship out the Material Resources when they were needed. However, as time waits for nobody, the team found the physical nature needed for baling was getting to be a bit much. When the idea of a hydraulic, electric baler was being thrown around, Del decided to follow up on it. He found one available for a cost of approximately $3500. The fund-raising began and a few generous donors later, the current baler was ordered. With the new baler in place, and less physical effort needed, MCCS was now working with maximum efficiency, in line with all the rest of the larger MCC network across the US and Canada. This is still where we are today, baling and shipping, all in the name of Christ. Not only was the location and aesthetics of the MR room important, but also the direction MCCS was lead, was also modified slightly. MCCS now had more people becoming involved in MR and the need to find more opportunities became more important. One of the areas MCCS started working towards was the education of the public on what was happening here, as well as what we stood for, and were about. We called this global education as the staff at MCCS would take turns leading groups throughout our building and giving them hands-on activity to do, or introducing them to programs that were happening here. All of the tours and activities were geared towards sharing the MCCS's philosophy and knowledge of how, and why, we helped the internationally oppressed in the "Name of Christ." On October 25th, 2013, MCCS made it's first locally prepared direct shipment to a country Rep in Jordan. This shipment went to provide aid for the displaced people of Syria in Jordan. The shipping documentation and photos are provided with this report. I mention this because it is one of my highlights in being part of MCCS at this time. We will see if our first direct shipment will gather any energy from our surrounding constituents, and who knows where that may lead in touching the lives of many with a little ray of hope or having a mustard seed of faith. Currently the MR network is noticing a slight shift in how the larger MCC responds to natural disasters, or misplaced people. There seems to be more of a focus on sustaining the economy, where we can, and purchasing locally to help boost the local economy, and provide aid as well. This approach works well in some countries, but not all of them. So there will always continue to be a need for helping oppressed people in countries where natural, or man-made disasters are taking place with shipments of humanitarian aid. See a photo story of Saskatchewan Blankets from their start with the Eigenheim Church ladies, to their destination in Syria. Then read also a Thank You Note from Syria. Back to MCCS's 50th Anniversary - index Or; Jan: IVEP | Feb: Thrift Shop Movement | Mar: Canadian Foodgrains Bank| Apr: Ten Thousand Villages | May: Restorative Justice | June: Relief Sale | July: Refugee Assistance | Aug: Aboriginal Neighbours (Historical overview) | Sept: Governance | Oct: Music Gala | Nov: Recognized in Provincial Legisalature | Dec: Material Resources [last updated - Dec/16/2021]
[ 0.010021045804023743, 0.0002769288548734039, -0.04458528757095337, 0.02737964689731598, -0.017063790932297707, 0.005914795678108931, 0.004903438035398722, 0.014459642581641674, 0.025124628096818924, -0.001729132723994553, 0.023698437958955765, -0.013155038468539715, 0.00773667311295867, -0.05129308998584747, -0.020489457994699478, -0.020513497292995453, -0.009750280529260635, -0.03251209110021591, -0.01172285620123148, 0.006129427347332239, -0.01204950176179409, 0.010463346727192402, -0.0849449560046196, -0.043042514473199844, -0.021715985611081123, 0.03832171484827995, 0.0040474385023117065, 0.009677152149379253, 0.04500294476747513, 0.055937834084033966, -0.04602216184139252, -0.03166479244828224, 0.029409771785140038, -0.08143098652362823, -0.002276487648487091, -0.010208498686552048, 0.021235890686511993, -0.04780007153749466, -0.0026159167755395174, -0.04847584292292595, 0.011407474055886269, -0.05673608183860779, 0.045313067734241486, -0.05025305971503258, -0.041433513164520264, -0.00007017369352979586, 0.013183904811739922, -0.004670157562941313, 0.011624839156866074, -0.03362121805548668, 0.021924957633018494, -0.015192360617220402, 0.01336655393242836, -0.008187749423086643, 0.007102967239916325, 0.02847500704228878, 0.010188810527324677, -0.028167637065052986, -0.017938323318958282, 0.0050646038725972176, 0.048581987619400024, -0.005569157190620899, 0.03153425455093384, -0.060706209391355515, 0.06372671574354172, 0.017059218138456345, -0.019020074978470802, -0.022432507947087288, 0.012491618283092976, -0.04413178563117981, -0.007681318558752537, 0.013725985772907734, -0.030262388288974762, -0.009759677574038506, 0.014858010224997997, 0.010631400160491467, -0.01222739927470684, -0.001528166583739221, -0.03979179635643959, -0.00784892588853836, 0.028367826715111732, 0.06686891615390778, 0.02668384276330471, 0.02640405297279358, -0.07696516811847687, -0.021306993439793587, -0.03525258228182793, 0.005337503273040056, 0.021334338933229446, 0.009269443340599537, -0.012519356794655323, 0.05626773089170456, 0.013709591701626778, 0.00826516654342413, 0.04519648849964142, 0.030682673677802086, -0.04641805216670036, 0.04058890417218208, 0.00009730774763738737, -0.029117250815033913, 0.03393658250570297, 0.010479290969669819, -0.018637225031852722, 0.03928294777870178, -0.04535819590091705, -0.008145086467266083, 0.0025710901245474815, -0.011986172758042812, 0.003609119215980172, -0.028961598873138428, -0.006665615830570459, -0.040700655430555344, 0.030598795041441917, -0.014229209162294865, 0.016461465507745743, 0.051525942981243134, 0.007838571444153786, 0.04274566099047661, -0.027202671393752098, 0.017964918166399002, 0.027971850708127022, -0.005980459041893482, 0.027275387197732925, -0.04857365041971207, 0.01306635420769453, -0.02571088634431362, 0.02020643837749958, 0.0548306480050087, -0.01915418729186058, -0.01848546415567398, 0.012531761080026627, -0.07467254251241684, -0.010488509200513363, 0.01227585133165121, 0.0004446053644642234, 0.006391349248588085, 0.00886230356991291, 0.031929027289152145, 0.032116446644067764, -0.04948192834854126, 0.03775519132614136, 0.06567378342151642, -0.004171279259026051, 0.06734514981508255, -0.015242691151797771, 0.013487466610968113, -0.018507935106754303, -0.015831224620342255, -0.041641440242528915, 0.02980375848710537, -0.0351455993950367, 0.008174634538590908, -0.01278311014175415, 0.040527090430259705, 0.024809429422020912, 0.014283055439591408, -0.01271481066942215, 0.024261612445116043, 0.01280215848237276, 0.006838413421064615, -0.02429847978055477, 0.015845855697989464, 0.013284200802445412, 0.037071626633405685, -0.012890394777059555, 0.01705319806933403, -0.028533799573779106, -0.004338272847235203, -0.03648248687386513, -0.04828203096985817, 0.014171281829476357, -0.02038555219769478, -0.018830765038728714, 0.024179523810744286, 0.028288641944527626, 0.06882194429636002, 0.03478902205824852, 0.022205017507076263, 0.023823367431759834, 0.03591279685497284, -0.028301650658249855, -0.006976523902267218, 0.030379706993699074, 0.048351652920246124, 0.007900862954556942, -0.005139980465173721, -0.016711406409740448, -0.019075807183980942, -0.026080407202243805, -0.02047506347298622, 0.005839663092046976, 0.017499584704637527, -0.014893659390509129, 0.03170768544077873, -0.008248486556112766, 0.005098037421703339, -0.01448027417063713, 0.009862677194178104, 0.001340661197900772, -0.04076696187257767, -0.00633531017228961, 0.030379075556993484, -0.030131613835692406, 0.00893417838960886, -0.028661202639341354, -0.02673616074025631, 0.052791908383369446, 0.047588616609573364, -0.053111299872398376, 0.0021208506077528, 0.05161641538143158, 0.004958655685186386, -0.027119964361190796, -0.010688831098377705, 0.014222892932593822, -0.0029969147872179747, -0.04552338272333145, 0.019365541636943817, -0.03691412881016731, -0.029266145080327988, 0.027870941907167435, 0.03358735889196396, 0.031859107315540314, 0.03131192922592163, -0.015820331871509552, 0.0018796592485159636, 0.02567545510828495, 0.08079620450735092, -0.01513009611517191, -0.021485544741153717, -0.006828843615949154, 0.0460737943649292, 0.03320305049419403, 0.053393471986055374, 0.046281494200229645, 0.04189422354102135, 0.022340426221489906, 0.04356924816966057, 0.004361732397228479, 0.027624711394309998, 0.007762730587273836, -0.04398179054260254, 0.04051852226257324, 0.04132411628961563, -0.01155119389295578, 0.03626861423254013, -0.03192242607474327, -0.007491074036806822, 0.004115661606192589, 0.010800674557685852, 0.0045784167014062405, 0.02684987522661686, -0.004701564088463783, 0.04744783416390419, -0.030221812427043915, 0.0051862504333257675, 0.04405045509338379, 0.06392590701580048, -0.017060862854123116, -0.026240389794111252, 0.007496565114706755, 0.024734467267990112, -0.006235368084162474, 0.013282021507620811, 0.025672774761915207, 0.013975552283227444, -0.002696445444598794, 0.04716216400265694, -0.020495861768722534, -0.037844374775886536, -0.008395044133067131, -0.025055211037397385, -0.047564923763275146, -0.03599157929420471, -0.04256400465965271, 0.0031043849885463715, 0.04769480600953102, -0.05565980449318886, 0.009082786738872528, 0.01124949287623167, -0.011504154652357101, -0.0047618490643799305, 0.002310121199116111, 0.023532940074801445, 0.03473137319087982, 0.020473210141062737, -0.031024513766169548, 0.035861786454916, -0.017102064564824104, 0.010714692063629627, -0.03581656143069267, 0.013212382793426514, 0.008175437338650227, -0.02132468670606613, 0.033189915120601654, -0.02058088779449463, -0.002768871607258916, -0.011598545126616955, -0.03393690288066864, -0.06638268381357193, -0.020047463476657867, 0.01263387594372034, -0.010908645577728748, -0.0006618080078624189, -0.039833180606365204, 0.0437551811337471, -0.01854841597378254, -0.023643432185053825, 0.039574671536684036, 0.04969906434416771, -0.026329010725021362, 0.04865849018096924, 0.026471374556422234, -0.008760525844991207, -0.05343909189105034, 0.02939794957637787, 0.04539689049124718, 0.031417764723300934, -0.010140365920960903, 0.002949123503640294, -0.038647860288619995, 0.004732032772153616, 0.015707291662693024, -0.02097434550523758, -0.04053644463419914, 0.05643337965011597, 0.02336474321782589, -0.05424986407160759, 0.02602490223944187, -0.04326768219470978, -0.05324961245059967, -0.03840365260839462, -0.037957776337862015, 0.012432530522346497, 0.028926042839884758, 0.010598145425319672, -0.021707884967327118, -0.01715962402522564, 0.0021260392386466265, 0.016676580533385277, 0.06378357112407684, -0.022264067083597183, 0.02143162488937378, 0.020080145448446274, -0.03605012223124504, -0.010125555098056793, -0.019945954903960228, -0.018185649067163467, 0.002833049511536956, 0.009657508693635464, 0.020449664443731308, 0.007667867932468653, 0.03884591907262802, 0.02593335509300232, 0.025323297828435898, 0.06593044102191925, -0.03547394648194313, -0.00767915416508913, -0.0066628349013626575, 0.009139273315668106, 0.05262233689427376, -0.01285406295210123, 0.011070947162806988, -0.03173490986227989, -0.026187436655163765, -0.051746658980846405, 0.01371026411652565, -0.0013089922722429037, 0.036343351006507874, -0.05212472006678581, 0.0609147846698761, -0.0043116076849401, -0.0010445715161040425, 0.055773843079805374, -0.05645840987563133, 0.012711734510958195, 0.055378444492816925, -0.012956639751791954, 0.014654016122221947, -0.04531373083591461, 0.02330448292195797, -0.010730573907494545, 0.0329919308423996, 0.012861212715506554, -0.00403577322140336, 0.0016287408070638776, -0.012726004235446453, -0.003615360939875245, -0.010121512226760387, -0.03019469790160656, 0.0008095239172689617, -0.046483222395181656, -0.0026399395428597927, -0.004937490914016962, -0.003683648305013776, -0.04999881237745285, 0.03989822790026665, 0.021657763049006462, 0.0506490021944046, -0.018830878660082817, 0.02237027883529663, 0.023978985846042633, 0.023269588127732277, 0.05271065980195999, -0.012821806594729424, -0.01714683510363102, -0.021161962300539017, 0.04812174662947655, 0.02123093791306019, -0.03034299612045288, -0.044869136065244675, -0.01915966346859932, -0.02319166250526905, 0.0351693220436573, -0.012392752803862095, -0.014039773494005203, -0.022402288392186165, 0.02067258208990097, -0.021839646622538567, 0.03405405953526497, -0.01251144241541624, -0.01511695608496666, 0.02436702698469162, 0.017392314970493317, 0.03232552483677864, -0.05582893639802933, 0.010674180462956429, -0.03441862761974335, 0.06246054172515869, 0.024961691349744797, -0.025064466521143913, -0.04460350424051285, -0.016699621453881264, -0.026276400312781334, -0.02221697010099888, 0.01433625165373087, 0.0496077835559845, 0.01934826746582985, 0.009680778719484806, -0.048701461404561996, 0.011385086923837662, 0.03415503725409508, 0.004635900259017944, -0.028123851865530014, 0.014704462140798569, 0.029976991936564445, 0.00494550634175539, 0.03965848311781883, -0.0227702334523201, -0.040313828736543655, 0.009760766290128231, -0.026494508609175682, 0.0004771478124894202, -0.026239972561597824, 0.017582640051841736, 0.06601668894290924, 0.007753313519060612, -0.003666411153972149, 0.04525148496031761, -0.03945346921682358, 0.00593674648553133, -0.0033946020994335413, 0.036148592829704285, -0.07500571012496948, 0.004053214564919472, 0.05292300134897232, 0.0014368887059390545, -0.0565967820584774, 0.03039703704416752, 0.06214671581983566, -0.020922912284731865, 0.015851082280278206, 0.03172758221626282, -0.03203312307596207, 0.021803593263030052, -0.03201253339648247, 0.0043673026375472546, -0.033661093562841415, -0.021066954359412193, 0.009574036113917828, -0.013586044311523438, 0.04806501418352127, -0.024573570117354393, -0.0005514394724741578, -0.024215392768383026, -0.0394681841135025, -0.02138650231063366, 0.033458009362220764, -0.0070440927520394325, 0.014769114553928375, 0.01522081345319748, -0.014176060445606709, -0.012881478294730186, -0.025460444390773773, 0.0016995626501739025, -0.00762349646538496, -0.007821855135262012, 0.01420827116817236, -0.012241840362548828, -0.00341001502238214, 0.02422005496919155, -0.03302489221096039, -0.005919082555919886, 0.022142156958580017, 0.009158777073025703, -0.03030378371477127, -0.04519527405500412, 0.028853757306933403, -0.033851735293865204, -0.007170842494815588, -0.018470127135515213, -0.006701712496578693, -0.00015820140833966434, 0.006787485908716917, 0.020641343668103218, 0.03299162909388542, 0.016562458127737045, 0.018084468320012093, -0.021990913897752762, 0.045439936220645905, 0.02514834702014923, -0.03141811117529869, -0.0250531118363142, 0.016676003113389015, -0.026238175109028816, 0.04008657485246658, -0.00015660379722248763, -0.021636473014950752, -0.019832666963338852, -0.04436584934592247, -0.032291777431964874, -0.029864806681871414, -0.05048779770731926, -0.027437061071395874, -0.02003176137804985, 0.008719428442418575, 0.04587307199835777, -0.004074132535606623, -0.01265704445540905, -0.022862639278173447, -0.03289934992790222, 0.005991323385387659, -0.028121810406446457, -0.047753479331731796, -0.030625078827142715, -0.03277483955025673, -0.03221838176250458, 0.053758274763822556, -0.03176309913396835, 0.02951974794268608, -0.019371604546904564, 0.010998671874403954, 0.01039425004273653, -0.003942746669054031, -0.03604042902588844, -0.06609778106212616, -0.024706177413463593, 0.02673041634261608, -0.0020992239005863667, 0.01443131361156702, -0.007714881561696529, 0.0677763968706131, -0.024124199524521828, -0.004042844288051128, -0.05058220401406288, -0.011999794282019138, -0.04812805727124214, -0.008011046797037125, 0.06794693320989609, -0.0073595498688519, 0.03214545175433159, -0.021042464300990105, 0.03997889161109924, 0.023789161816239357, -0.010293073952198029, -0.01633232831954956, -0.039275504648685455, -0.011623005382716656, -0.01508473139256239, 0.043577659875154495, -0.0042299311608076096, -0.027644773945212364, -0.008359644562005997, -0.00766485882923007, 0.020177438855171204, 0.0038365016225725412, 0.04156315699219704, 0.05597531422972679, -0.02711934968829155, 0.00938620325177908, -0.017805224284529686, 0.01300268154591322, 0.03434329479932785, -0.0385415218770504, -0.0016954275779426098, -0.01327047124505043, -0.04308660328388214, 0.01714644581079483, -0.05795498192310333, -0.019208451732993126, -0.06883363425731659, -0.02068786881864071, 0.0625186562538147, -0.03546567261219025, 0.03704535961151123, 0.0006716111674904823, -0.05878891423344612, -0.010321073234081268, 0.03654763475060463, -0.0018644857918843627, -0.008962799794971943, 0.036883868277072906, 0.003512278664857149, -0.0069418251514434814, -0.013323905877768993, -0.012863116338849068, 0.003824140876531601, -0.04605386406183243, 0.06911306828260422, -0.00618408527225256, -0.04107553884387016, -0.01374652050435543, 0.08153057098388672, -0.043050117790699005, -0.04711408168077469, -0.00651904009282589, 0.014119819737970829, 0.010529506020247936, -0.03475743532180786, -0.007088086102157831, -0.01673436351120472, 0.005331088788807392, 0.011340352706611156, 0.015135644003748894, -0.006941970903426409, 0.02450457029044628, -0.0018474290845915675, 0.04618832468986511, -0.04330214858055115, 0.014583335258066654, 0.032212141901254654, -0.009799481369554996, -0.018153047189116478, 0.01273255329579115, -0.04230450466275215, 0.007895265705883503, -0.004357459954917431, 0.06337475776672363, -0.033742424100637436, 0.016522038727998734, 0.022159351035952568, -0.025158291682600975, 0.03243984654545784, 0.02889210171997547, -0.02451554499566555, 0.02971959114074707, -0.03181946650147438, -0.028915636241436005, -0.0205259807407856, 0.0006495441775768995, -0.004302635323256254, 0.01866880990564823, -0.028831947594881058, -0.00292109209112823, 0.04511751979589462, -0.021043019369244576, 0.0384119376540184, -0.04864342510700226, -0.022456498816609383, -0.0397244356572628, -0.04597026854753494, -0.04768485203385353, -0.02323416993021965, 0.003474663710221648, 0.017529895529150963, -0.015640225261449814, -0.06230776757001877, -0.03508767858147621, 0.032769639045000076, -0.046565666794776917, -0.013708415441215038, 0.0022392633836716413, 0.023474428802728653, -0.049458958208560944, -0.053851835429668427, -0.04860156401991844, -0.004310213960707188, 0.001247838488779962, -0.006479436531662941, -0.02378738857805729, 0.008105787448585033, 0.008354736492037773, 0.04359104111790657, 0.008170569315552711, -0.0032468915451318026, -0.028536606580018997, -0.05929810553789139, 0.010370164178311825, 0.051720090210437775, -0.010452346876263618, 0.023075133562088013, 0.05755887180566788, -0.03958530351519585, 0.04621020704507828, 0.030415231361985207, -0.021968847140669823, -0.028773322701454163, 0.035134557634592056, 0.027092043310403824, 0.004709731787443161, -0.063806913793087, -0.021695878356695175, -0.010348232463002205, -0.04334353655576706, 0.005394810810685158, 0.009293513372540474, 0.01998385600745678, 0.022775938734412193, -0.022449132055044174, 0.012162098661065102, 0.05988128483295441, 0.005175108555704355, 0.03316308185458183, 0.024499645456671715, 0.041939862072467804, 0.004287564195692539, 0.0031781080178916454, -0.0001619096874492243, 0.05349539965391159, 0.02416868694126606, -0.04583819955587387, 0.012962844222784042, -0.0008220751769840717, -0.059694789350032806, 0.04532482475042343, -0.020191483199596405, -0.01297158282250166, -0.037981487810611725, -0.0046324715949594975, -0.0028968758415430784, 0.037181831896305084, 0.0166383758187294, -0.02218107134103775, 0.03862118348479271, -0.029477324336767197, -0.008501929230988026, 0.010616700164973736, -0.05614260211586952, -0.03764882683753967, 0.039875682443380356, -0.04581979289650917, -0.028795426711440086, -0.008248578757047653, -0.03602410480380058, 0.033996306359767914, -0.04829831048846245, -0.03789684176445007, -0.008552155457437038, 0.03599536791443825, -0.03597503900527954, 0.056714270263910294, -0.04255678877234459, -0.018934201449155807, -0.00721110450103879, 0.06025690212845802, -0.04332304745912552, -0.032416291534900665, 0.022147322073578835, -0.004980369005352259, 0.01303567923605442, 0.013129925355315208, 0.007304584141820669, 0.006137799005955458, -0.008272833190858364, -0.006231063511222601, 0.007085988763719797, 0.029210280627012253, 0.017040995880961418, 0.033863671123981476, 0.03539315238595009, -0.018619902431964874, -0.028478257358074188, 0.024882785975933075, 0.030815614387392998, -0.049258168786764145, -0.05438580363988876, 0.03984594717621803, 0.05195958912372589, -0.05042187124490738, 0.04718305170536041, 0.026095427572727203, 0.0740574449300766, 0.003548372071236372, -0.014015615917742252, -0.0045136623084545135, 0.027409106492996216, 0.011641383171081543, 0.044503167271614075, 0.01536092720925808, 0.020592916756868362, 0.036736395210027695, 0.01772169955074787, -0.015984313562512398, 0.015298096463084221, 0.014009697362780571, -0.02189304679632187, -0.02836040034890175, -0.0010308886412531137, -0.0035545469727367163, 0.023207562044262886, -0.016268188133835793, 0.018911076709628105, -0.027393236756324768, 0.006821670103818178, -0.01298371609300375, 0.0012849275954067707, 0.0678328350186348, -0.026156358420848846, -0.0012083768378943205, 0.0044775353744626045, -0.007377311121672392, -0.014497644267976284, 0.02431553602218628, -0.006545365322381258, 0.02204050123691559, 0.02310194820165634, 0.041693657636642456, 0.02655375748872757, 0.03512303903698921, 0.036566078662872314, -0.0043393890373408794, -0.02699250355362892, 0.0012898537097498775, 0.028928952291607857, -0.0005091772763989866, -0.05488177016377449, -0.014094972051680088, -0.03321802616119385, 0.029249219223856926, -0.029012160375714302, -0.018126463517546654, 0.018602076917886734, -0.030731016770005226, -0.02224147506058216, -0.059717807918787, 0.04511107876896858, -0.04722021147608757, -0.01991225965321064, 0.029524218291044235, 0.022094085812568665, -0.026118220761418343, 0.040710922330617905, -0.002162193413823843, 0.060653913766145706, 0.03116389736533165, 0.029938606545329094, -0.01264809351414442, 0.017126355320215225, 0.048448897898197174, -0.031469475477933884, 0.004562909249216318, 0.011040370911359787, -0.03024318255484104, -0.033869825303554535, 0.010803925804793835, -0.03182591125369072, -0.018010618165135384, -0.04928859323263168, 0.0057974220253527164, -0.0036158945877104998, 0.07976313680410385, -0.008351621218025684, -0.04856391251087189, 0.0013930238783359528, 0.03977729380130768, -0.058364734053611755, 0.0033092424273490906, 0.011172068305313587, 0.05109773576259613, -0.01686372421681881, -0.03788534924387932, -0.028323279693722725, -0.006890581920742989, -0.008573003113269806, -0.015371853485703468, 0.03908972442150116, 0.00018418251420371234, -0.006494719535112381, -0.036926526576280594, -0.057690057903528214, -0.03237556666135788, 0.004972056485712528, -0.055908311158418655, -0.05341493338346481, 0.047962501645088196, 0.02821602299809456, 0.01725330390036106, -0.0011806447291746736, -0.04367271438241005, -0.012671363539993763, 0.06170077249407768, 0.047697946429252625, 0.004678571596741676, 0.06173396110534668, 0.04432128742337227, 0.0025038360618054867, 0.03125409036874771, -0.021996552124619484, 0.045599378645420074, -0.008394435048103333, -0.013001861050724983, -0.023154204711318016, 0.030453834682703018, 0.003405083902180195, -0.049806710332632065, -0.018420835956931114, 0.046495236456394196, 0.020141974091529846, -0.03010142222046852, -0.07321392744779587, -0.01869565062224865, -0.039404548704624176, -0.020476538687944412, -0.03449300676584244, 0.032413382083177567, 0.0201918575912714, 0.010951411910355091, -0.004582877270877361, -0.062455229461193085, 0.1327754706144333, 0.011154997162520885, 0.03860299289226532, 0.03499584645032883, 0.03836448863148689, 0.08317585289478302, 0.033826619386672974, -0.03692254424095154, -0.009438208304345608, -0.042196888476610184, 0.021117499098181725, -0.005851081572473049, 0.01000579446554184, -0.01943315379321575, 0.02395295724272728, 0.03980349376797676, -0.006533935200423002, 0.010100283659994602, 0.030263463035225868, -0.03872817009687424, -0.030971860513091087, 0.0231157299131155, -0.004943229723721743, 0.02333752065896988, -0.002094923285767436, 0.011683827266097069, 0.04131307080388069, -0.03917321190237999, -0.020426711067557335, -0.007716902066022158, 0.036628834903240204, -0.031010400503873825, 0.030059056356549263, -0.030593829229474068, -0.040255848318338394, 0.06385687738656998, 0.02216751128435135, -0.04857373982667923, 0.01570252515375614, 0.024830181151628494, -0.02200065366923809, -0.016446376219391823, 0.03251966834068298, -0.041326358914375305, 0.006223198026418686, 0.03391965106129646, -0.036480385810136795, 0.011671648360788822, 0.01787530444562435, -0.0484919436275959, 0.05535614863038063, -0.012856059707701206, -0.002360966056585312, 0.012696292251348495, -0.04312318563461304, 0.0014807572588324547, -0.008250780403614044, -0.05319730192422867, -0.026332175359129906, -0.021632082760334015, 0.03020305559039116, 0.026848508045077324, 0.004243188537657261, 0.011486508883535862, -0.03622657433152199, 0.01729395240545273, 0.02765338495373726, 0.005621905438601971, -0.025992410257458687, -0.016285454854369164, -0.013824814930558205, -0.004968356341123581, -0.019030772149562836, -0.033553432673215866, 0.011504593305289745, 0.029344899579882622, -0.020543238148093224, 0.06301087141036987, 0.007026576902717352, -0.025478148832917213, -0.026985278353095055, -0.033678412437438965, -0.0033173542469739914, -0.016609570011496544, 0.029474956914782524, 0.07342004030942917, -0.05256922170519829, -0.030762990936636925, -0.014877603389322758, 0.040698811411857605, 0.06616497039794922, 0.009496566839516163, -0.056477442383766174, -0.013176871463656425, -0.005457658786326647 ]
Submissions for variant NM_020631.5(PLEKHG5):c.274G>A (p.Val92Ile) (rs371516662) GeneDx RCV000236807 SCV000293040 uncertain significance not provided 2015-07-23 criteria provided, single submitter clinical testing The V92I variant has not been published as pathogenic, nor has it been reported as a benign polymorphism to our knowledge. The V92I variant was not observed with any significant frequency in approximately 6,500 individuals of European and African American ancestry in the NHLBI Exome Sequencing Project. The V92I variant is a conservative amino acid substitution, which is not likely to impact secondary protein structure as these residues share similar properties. However, this substitution occurs at a position that is conserved across species. In silico analysis is inconsistent in its predictions as to whether or not the variant is damaging to the protein structure/function. Therefore, based on the currently available information, it is unclear whether this variant is a pathogenic or a rare benign variant. Invitae RCV000645436 SCV000767181 uncertain significance Distal spinal muscular atrophy, autosomal recessive 4; Charcot-Marie-Tooth disease, recessive intermediate c 2018-09-28 criteria provided, single submitter clinical testing This sequence change replaces valine with isoleucine at codon 92 of the PLEKHG5 protein (p.Val92Ile). The valine residue is moderately conserved and there is a small physicochemical difference between valine and isoleucine. This variant is present in population databases (rs371516662, ExAC 0.009%). This variant has not been reported in the literature in individuals with PLEKHG5-related disease. ClinVar contains an entry for this variant (Variation ID: 245867). Algorithms developed to predict the effect of missense changes on protein structure and function do not agree on the potential impact of this missense change (SIFT: "Deleterious"; PolyPhen-2: "Benign"; Align-GVGD: "Class C0"). In summary, the available evidence is currently insufficient to determine the role of this variant in disease. Therefore, it has been classified as a Variant of Uncertain Significance.
[ -0.004979400429874659, 0.015408448874950409, -0.0028395731933414936, 0.03821105137467384, -0.04416504129767418, -0.0103794289752841, 0.002249584998935461, 0.010220210067927837, 0.009899694472551346, 0.015155525878071785, 0.015985488891601562, -0.016692887991666794, -0.009162542410194874, -0.046313486993312836, -0.04556098207831383, 0.00401438120752573, -0.005080477800220251, -0.0361982136964798, -0.01105398591607809, -0.022571472451090813, 0.014860673807561398, -0.010995547287166119, -0.08558600395917892, 0.002931340364739299, 0.016591986641287804, 0.04930583015084267, 0.03619220107793808, -0.0024422691203653812, 0.057723984122276306, 0.04428546875715256, -0.008833215571939945, -0.02413944900035858, 0.002589498646557331, -0.04338005185127258, -0.03799119591712952, -0.034779489040374756, 0.05166090652346611, -0.014662208966910839, -0.02481498382985592, -0.04407298192381859, 0.02253497950732708, 0.01803174614906311, 0.0192714873701334, -0.035446926951408386, -0.024121833965182304, -0.04291898384690285, -0.01823841594159603, -0.015275472775101662, -0.008768103085458279, -0.016139285638928413, 0.008344109170138836, 0.0024824291467666626, 0.04326071962714195, -0.018381984904408455, -0.007615017704665661, 0.03962080553174019, -0.004952589515596628, -0.029100244864821434, -0.057867631316185, -0.0006109364912845194, -0.009837419725954533, 0.024417933076620102, 0.04196346178650856, -0.06501274555921555, 0.032737068831920624, 0.026804648339748383, 0.0059487358666956425, -0.01619524508714676, -0.005779440049082041, -0.01980212889611721, -0.01925542764365673, 0.004109709523618221, -0.042564719915390015, -0.027961211279034615, 0.010448714718222618, -0.003720920765772462, 0.00995753612369299, -0.007846793159842491, 0.0033295457251369953, -0.012083638459444046, 0.005292253103107214, 0.0313471183180809, 0.031085921451449394, 0.0038742166943848133, -0.06082407757639885, -0.0035983610432595015, -0.008247380144894123, 0.02564336359500885, -0.006551381200551987, 0.022929400205612183, -0.022857170552015305, 0.055055126547813416, -0.02190348505973816, -0.03737642243504524, 0.0109191183000803, 0.04271094873547554, -0.022299321368336678, 0.02574029192328453, 0.008645690977573395, -0.02880333550274372, 0.030976267531514168, 0.009217082522809505, 0.012366212904453278, 0.03424397110939026, -0.054505012929439545, -0.03875764086842537, 0.0027725661639124155, -0.006516094319522381, -0.04067232832312584, -0.024097584187984467, 0.012114373967051506, -0.011234472505748272, -0.012950070202350616, 0.013408174738287926, -0.003947416786104441, 0.048887357115745544, -0.005749995820224285, 0.03347302973270416, -0.0320684015750885, -0.025912145152688026, 0.008073714561760426, -0.015646932646632195, 0.048662323504686356, -0.028415128588676453, 0.020743170753121376, -0.009658513590693474, -0.014720669016242027, 0.018429560586810112, -0.02313222549855709, -0.0024523159954696894, -0.011601962149143219, -0.032464221119880676, -0.009527395479381084, 0.02815326116979122, 0.015941696241497993, 0.01796150952577591, -0.018147004768252373, 0.04154355451464653, 0.02713562734425068, -0.059613753110170364, 0.03341877833008766, 0.016461122781038284, -0.024109845981001854, 0.09225855767726898, 0.0009170190896838903, 0.03396637737751007, -0.006984106730669737, -0.021837487816810608, -0.0025139295030385256, 0.022394679486751556, -0.028683215379714966, 0.029235538095235825, 0.012546133249998093, -0.013485708273947239, 0.011923913843929768, 0.012526946142315865, -0.022294187918305397, 0.02034151367843151, 0.0270722396671772, 0.021753858774900436, -0.027997320517897606, 0.043403878808021545, 0.0273415707051754, 0.029094886034727097, -0.016561539843678474, 0.0417487695813179, -0.034427229315042496, -0.006207203958183527, 0.019795622676610947, -0.0392775721848011, 0.004324981942772865, 0.016815831884741783, 0.0026401805225759745, 0.022420616820454597, 0.04804087430238724, 0.02664809860289097, 0.07944497466087341, 0.007999188266694546, 0.05518180504441261, 0.05966465547680855, -0.0019941094797104597, -0.005061474163085222, 0.018362801522016525, 0.07100027799606323, 0.015088398940861225, -0.014392541721463203, -0.007449230179190636, -0.004552008118480444, -0.03855135664343834, -0.040220167487859726, -0.037191759794950485, 0.033539533615112305, -0.02000834234058857, 0.02172974683344364, -0.01966395415365696, 0.011949367821216583, -0.018465818837285042, -0.02846357598900795, -0.008936130441725254, -0.025573430582880974, -0.007831068709492683, 0.04527570679783821, -0.03025227040052414, 0.019013473764061928, 0.013619431294500828, -0.023712603375315666, 0.007765382528305054, 0.045741967856884, -0.023802625015378, 0.026045288890600204, 0.04954925924539566, 0.006578565109521151, -0.015340990386903286, 0.0019568935967981815, 0.009910054504871368, -0.042918380349874496, -0.01302937138825655, 0.04218215122818947, -0.0409308522939682, 0.006263088900595903, 0.013212224468588829, 0.014334572479128838, 0.02493755891919136, 0.03987940773367882, -0.005940287373960018, -0.000645008054561913, 0.042051296681165695, 0.02168620377779007, -0.023744750767946243, -0.03641040623188019, 0.013244573026895523, 0.037936169654130936, 0.028755806386470795, 0.06382117420434952, 0.026270490139722824, 0.011286535300314426, 0.061795592308044434, 0.03595743328332901, -0.024740634486079216, 0.025054244324564934, -0.007213909644633532, 0.03537439554929733, 0.053338393568992615, 0.020756855607032776, -0.0086356895044446, 0.025536462664604187, -0.03855443745851517, -0.03284710645675659, -0.02298099361360073, 0.04970742389559746, 0.00020043358381371945, 0.06429684162139893, 0.015382152982056141, 0.028459325432777405, 0.007207153365015984, -0.022346265614032745, 0.04057639464735985, 0.024241309612989426, -0.02557538077235222, -0.0026164317969232798, 0.006016047205775976, 0.0014175028773024678, -0.022574706003069878, -0.00809780415147543, 0.058999113738536835, 0.044447824358940125, 0.022241516038775444, 0.01814994215965271, 0.021081771701574326, -0.05387035384774208, -0.03631448745727539, -0.04882841929793358, -0.05389995127916336, -0.036493025720119476, -0.06015065684914589, -0.0028505155351012945, 0.04993937164545059, -0.04408300668001175, 0.042850665748119354, 0.0049788933247327805, -0.016596045345067978, -0.02139449492096901, -0.014706759713590145, 0.024655049666762352, 0.04045841097831726, 0.045794643461704254, -0.03742700070142746, 0.03485856577754021, -0.0013500843197107315, 0.041637714952230453, -0.051190491765737534, -0.028842095285654068, -0.0104844830930233, -0.0038092941977083683, 0.024407170712947845, -0.030274605378508568, 0.009352794848382473, -0.01427684910595417, -0.036824680864810944, -0.021306080743670464, -0.03700406476855278, 0.01681985892355442, -0.017320960760116577, 0.008771024644374847, -0.03760519251227379, 0.0480315275490284, 0.013677593320608139, -0.022801309823989868, 0.04469551146030426, 0.06326296180486679, -0.028811434283852577, 0.03616620972752571, 0.032129012048244476, 0.013516363687813282, -0.06415630131959915, 0.05256452038884163, 0.07193110883235931, 0.017977973446249962, -0.012708161026239395, -0.037091270089149475, -0.05002908781170845, 0.017782509326934814, -0.0040418473072350025, 0.010190166532993317, -0.007192855700850487, 0.05374237522482872, 0.028007855638861656, -0.07148448377847672, 0.026945015415549278, -0.03962811082601547, -0.0253607165068388, -0.0257569532841444, 0.0018014702945947647, 0.017049532383680344, 0.0235140398144722, 0.011784565635025501, 0.021251864731311798, -0.005345996934920549, -0.0077986386604607105, 0.019627289846539497, 0.03880181163549423, -0.019262999296188354, 0.014543402940034866, 0.03326039016246796, 0.0195960383862257, 0.018289795145392418, 0.020892489701509476, -0.01891285553574562, 0.002609273884445429, -0.0016363653121516109, -0.011601077392697334, 0.02156148850917816, 0.06543844938278198, 0.02230413258075714, 0.019645223394036293, 0.0337098129093647, -0.017917148768901825, -0.038785941898822784, 0.02515433356165886, 0.03345664218068123, 0.03087782673537731, 0.005198064260184765, 0.026254333555698395, -0.009869663044810295, -0.03598177060484886, -0.05791301652789116, 0.016784120351076126, 0.022338949143886566, 0.08517598360776901, -0.05124812200665474, 0.0600564181804657, 0.021478544920682907, -0.015578223392367363, 0.06664229929447174, -0.047216299921274185, 0.022419732064008713, 0.051386695355176926, 0.010149501264095306, 0.04490683600306511, -0.06605399399995804, 0.014225766994059086, 0.009760448709130287, -0.00018499705765862018, 0.055760014802217484, 0.0063277343288064, 0.010349726304411888, -0.04032137617468834, -0.018745923414826393, -0.0097254803404212, -0.0035040227230638266, -0.016539638862013817, -0.041081760078668594, -0.0003864051541313529, 0.01887502521276474, -0.023747770115733147, -0.030240528285503387, -0.00437534973025322, 0.009979735128581524, 0.006129423622041941, -0.006616861093789339, 0.051950350403785706, -0.0015355501091107726, 0.013943462632596493, 0.031747013330459595, 0.009867843240499496, 0.014749661087989807, -0.059793826192617416, 0.03048374317586422, 0.028353145346045494, 0.0030333404429256916, 0.01230717170983553, -0.04630393534898758, -0.02683231234550476, 0.016430560499429703, 0.005693532060831785, -0.04691804200410843, -0.01796267181634903, -0.0031334469094872475, 0.020790742710232735, 0.006248863413929939, -0.020973457023501396, -0.02469017542898655, -0.03706473857164383, 0.030771629884839058, 0.04412982612848282, -0.041670553386211395, 0.01857573911547661, -0.015568790026009083, 0.03759748861193657, 0.030937418341636658, 0.042156677693128586, -0.031710632145404816, -0.037804313004016876, -0.031588658690452576, -0.03380007669329643, 0.013351722620427608, 0.05306648463010788, -0.009604807943105698, 0.00854399148374796, -0.03866085410118103, 0.0035411755088716745, -0.006038045976310968, 0.011477800086140633, -0.007658837363123894, 0.00763992452993989, 0.016942542046308517, 0.025493785738945007, 0.04371575266122818, -0.010878738015890121, -0.03344583138823509, 0.010315980762243271, -0.05134719982743263, 0.01815694570541382, 0.0006631699507124722, -0.02523091994225979, -0.01876477524638176, 0.01638692617416382, -0.010251302272081375, 0.030097488313913345, -0.021084431558847427, 0.01039276085793972, 0.004566673655062914, 0.02811102196574211, -0.06657634675502777, -0.032201092690229416, 0.07199552655220032, -0.026865720748901367, -0.018799154087901115, 0.04981735721230507, 0.015839699655771255, -0.022644152864813805, 0.008125897496938705, 0.022610925137996674, -0.07241757959127426, 0.06362485885620117, -0.02465185336768627, 0.015591932460665703, 0.007992136292159557, -0.04795460030436516, -0.01969757303595543, -0.03547699376940727, 0.05491921305656433, -0.0010206947335973382, -0.02350841462612152, -0.024057479575276375, -0.05562184378504753, -0.013109937310218811, 0.0068542929366230965, -0.015133560635149479, 0.004209797363728285, 0.027841635048389435, -0.00469977967441082, 0.004538694396615028, -0.024341950193047523, -0.03419674560427666, -0.03753272816538811, -0.0368131585419178, 0.023886574432253838, -0.0029136401135474443, 0.014364910311996937, 0.04483481124043465, -0.01056566834449768, -0.029347116127610207, 0.006666380912065506, 0.015828803181648254, -0.03489876911044121, -0.060090322047472, 0.001125215319916606, -0.015261913649737835, -0.013877700082957745, -0.026378804817795753, -0.006105460226535797, -0.02626693993806839, 0.00281394156627357, 0.016812782734632492, -0.007106237579137087, 0.013573950156569481, 0.03453065827488899, -0.02471700683236122, 0.06605876982212067, 0.03155327960848808, -0.06040779873728752, -0.026084760203957558, 0.015021069906651974, 0.03044889122247696, 0.04471656307578087, 0.014536140486598015, -0.018450424075126648, -0.04891667515039444, -0.057268887758255005, 0.009481730870902538, -0.03528676554560661, 0.013922037556767464, -0.055532947182655334, 0.007666833698749542, -0.006097892299294472, 0.034281712025403976, 0.0137639120221138, -0.01950862444937229, -0.00052251061424613, -0.019808828830718994, 0.02318669483065605, -0.05145321041345596, -0.025412335991859436, -0.017606643959879875, 0.003721154760569334, 0.0021028746850788593, 0.06958860158920288, 0.018916070461273193, 0.02226298861205578, 0.0026318670716136694, -0.0026424911338835955, 0.03596638888120651, 0.004980132915079594, -0.04696003720164299, -0.03249491751194, 0.0304219089448452, 0.02789299003779888, -0.013988349586725235, 0.009008767083287239, -0.057153668254613876, 0.04067804291844368, -0.046622004359960556, -0.01732061244547367, -0.0018075477564707398, 0.0010501130018383265, -0.006000509485602379, -0.05320718139410019, 0.04781483858823776, -0.01325721014291048, -0.00663589034229517, -0.023060154169797897, 0.02614019252359867, 0.015137073583900928, -0.008556417189538479, -0.011788778938353062, -0.02332109399139881, -0.05015731230378151, -0.06258764863014221, 0.04311191663146019, -0.02695639058947563, -0.016199922189116478, -0.008933132514357567, -0.021591108292341232, 0.03295811265707016, -0.026909736916422844, 0.04678657650947571, 0.0442013218998909, -0.022177960723638535, -0.012667112052440643, -0.013575030490756035, 0.0124769676476717, 0.059901218861341476, -0.014454405754804611, 0.018877550959587097, 0.006384442560374737, -0.021170003339648247, 0.013440728187561035, -0.01765727996826172, -0.06103431060910225, -0.06212107837200165, 0.016512690111994743, 0.05817171558737755, 0.026416420936584473, 0.04113021120429039, 0.015931079164147377, -0.06767220050096512, -0.04965576156973839, 0.05212625116109848, -0.027367837727069855, 0.014991559088230133, 0.05331115052103996, 0.006125003099441528, -0.013425568118691444, 0.026641538366675377, 0.009403785690665245, -0.009993177838623524, -0.05574262887239456, 0.09038510918617249, 0.0071492502465844154, -0.047420158982276917, 0.028760019689798355, 0.04482046887278557, -0.04805729538202286, -0.03449995070695877, -0.030550239607691765, -0.0030066422186791897, -0.013452444225549698, -0.02804098278284073, -0.024345509707927704, -0.0015021259896457195, 0.005521740298718214, 0.014560711570084095, -0.013927253894507885, -0.0018294148612767458, 0.06639166176319122, -0.0012091646203771234, 0.03086581639945507, -0.03446698188781738, 0.013734283857047558, 0.03304050490260124, -0.025754107162356377, -0.00043218847713433206, -0.030025171115994453, -0.008569794707000256, 0.016659874469041824, -0.011588362976908684, 0.04803776368498802, -0.007281817030161619, 0.024093423038721085, 0.015528871677815914, -0.00034111752756871283, 0.025220025330781937, 0.014216870069503784, -0.018213286995887756, 0.04317863658070564, -0.004886680282652378, -0.06087957322597504, -0.036994654685258865, 0.005510915536433458, 0.014716005884110928, 0.050722017884254456, -0.023669958114624023, 0.00677642785012722, 0.04190585017204285, 0.042564306408166885, -0.0006125125219114125, -0.06537801027297974, -0.030549420043826103, -0.0343867652118206, -0.032581690698862076, 0.014038391411304474, -0.014542206190526485, 0.014685454778373241, 0.016227247193455696, -0.009473244659602642, -0.023206299170851707, -0.02998143807053566, 0.019577646628022194, -0.040744487196207047, 0.008420415222644806, -0.0405605249106884, 0.020919717848300934, -0.035377632826566696, -0.0513698011636734, -0.03904041275382042, -0.0006218933849595487, 0.0018147684168070555, 0.016810087487101555, -0.028823157772421837, 0.010862985625863075, 0.008412234485149384, 0.006314846221357584, 0.017057305201888084, 0.031460072845220566, -0.03685668110847473, -0.039530567824840546, -0.015443465672433376, 0.02991686575114727, -0.012263011187314987, 0.054038677364587784, 0.05512085184454918, -0.010048681870102882, 0.022770412266254425, 0.03253254294395447, -0.03497869521379471, -0.026778340339660645, -0.011555224657058716, 0.0038447773549705744, -0.020500222221016884, -0.041451726108789444, -0.02998468279838562, 0.010954915545880795, -0.05958428233861923, 0.012505946680903435, -0.01983838528394699, 0.003689119126647711, 0.00004263802111381665, -0.0016092610312625766, -0.014512400142848492, 0.03779180347919464, 0.01879197172820568, -0.024913497269153595, 0.022094788029789925, 0.0043701911345124245, 0.04725167527794838, -0.0038416050374507904, 0.008633713237941265, -0.00994894839823246, 0.01715240627527237, -0.032017193734645844, 0.02123331092298031, 0.01783275045454502, 0.002506708027794957, 0.022522248327732086, -0.002831071149557829, -0.003614838235080242, -0.035067662596702576, -0.042070552706718445, -0.026424655690789223, 0.036829810589551926, 0.024717923253774643, -0.019739272072911263, 0.013884281739592552, -0.03262041136622429, -0.04504341632127762, -0.005674437154084444, -0.07060263305902481, -0.04828304797410965, 0.03295578435063362, -0.029122859239578247, 0.018449952825903893, -0.041081685572862625, -0.019819971174001694, 0.0442303903400898, 0.02379942312836647, -0.014802168123424053, -0.006799943745136261, 0.011083469726145267, 0.04820025712251663, 0.04526281729340553, -0.010014905594289303, 0.009136148728430271, 0.008515823632478714, 0.02670057862997055, -0.061183467507362366, -0.05191938951611519, -0.0104981679469347, 0.01639179140329361, 0.007535406854003668, -0.00864521972835064, -0.01936289109289646, -0.008552144281566143, -0.00428404426202178, 0.003365151584148407, -0.014902224764227867, -0.02124287560582161, -0.010929961688816547, 0.032635703682899475, -0.06532668322324753, -0.006390693131834269, -0.04183962941169739, 0.030886482447385788, 0.012064450420439243, -0.035483427345752716, -0.021179435774683952, 0.0420941598713398, 0.05782651528716087, -0.013345174491405487, 0.036104716360569, 0.020665641874074936, 0.03116457164287567, -0.031050710007548332, 0.015808822587132454, 0.005850026849657297, 0.01630120538175106, 0.048188466578722, 0.036596015095710754, 0.01206976454705, 0.03417547792196274, 0.014246677048504353, 0.01767140068113804, 0.004040475934743881, 0.03842678293585777, 0.017404772341251373, -0.005554193630814552, -0.008094524033367634, -0.02029491402208805, 0.014437418431043625, 0.020516471937298775, -0.024738319218158722, -0.005249673034995794, -0.03475428745150566, -0.0018740977393463254, -0.0077994391322135925, -0.014035281725227833, 0.056806642562150955, -0.02450055629014969, 0.004173939116299152, -0.006953699514269829, 0.01617714948952198, 0.02331838198006153, 0.03713565319776535, 0.004795821383595467, 0.012421899475157261, 0.05062431842088699, 0.010313970036804676, 0.026030559092760086, 0.06260084360837936, 0.002500921254977584, 0.0024194694124162197, -0.026152612641453743, -0.014808268286287785, 0.005938662216067314, 0.0025306944735348225, -0.01822011172771454, -0.017741471529006958, -0.04648801311850548, 0.038354337215423584, -0.02963772416114807, -0.008228418417274952, 0.03772393614053726, -0.024746732786297798, -0.007913315668702126, -0.003986308351159096, 0.05111091583967209, -0.04521523416042328, -0.012734174728393555, 0.05115235969424248, -0.017307454720139503, -0.01116329524666071, 0.04739931970834732, -0.00949307531118393, 0.0664750337600708, 0.007715195417404175, 0.050452668219804764, -0.017568401992321014, 0.035887718200683594, 0.03613775968551636, 0.013235933147370815, -0.01452963799238205, 0.022129446268081665, -0.03828459233045578, -0.05337589234113693, -0.031060168519616127, -0.05276244506239891, -0.0006773974164389074, -0.025196772068738937, 0.013296560384333134, 0.007326909806579351, 0.02510898746550083, -0.03406867757439613, -0.046575333923101425, 0.008560126647353172, 0.048005376011133194, -0.0466667078435421, -0.003696716856211424, 0.030392710119485855, 0.036937348544597626, -0.004338171798735857, -0.022482048720121384, -0.024280542507767677, -0.040177032351493835, -0.024410244077444077, -0.04783263057470322, 0.031007150188088417, -0.021768420934677124, -0.03406501188874245, -0.015877101570367813, -0.05054484307765961, -0.02939065545797348, -0.016441049054265022, -0.052901141345500946, -0.05234130844473839, 0.027254851534962654, 0.03317749500274658, 0.02944410964846611, 0.04234759509563446, -0.011248935014009476, 0.02072218619287014, 0.016406675800681114, 0.07803073525428772, -0.012128109112381935, 0.060502875596284866, 0.012108538299798965, -0.020896730944514275, 0.021444009616971016, -0.03571499139070511, 0.00885292049497366, -0.018806379288434982, -0.026053298264741898, -0.04300079867243767, 0.019010839983820915, -0.02827710658311844, -0.058972664177417755, 0.020929032936692238, 0.035649120807647705, -0.013294890522956848, -0.049438316375017166, -0.07139735668897629, -0.003068344434723258, -0.022342799231410027, 0.017407827079296112, -0.035941705107688904, -0.013650191947817802, 0.0004673383373301476, -0.005106732714921236, 0.017223695293068886, -0.05199389532208443, 0.1445816606283188, 0.08611061424016953, 0.030521981418132782, -0.007897266186773777, -0.01384136825799942, 0.04274870827794075, 0.004774225875735283, -0.014134228229522705, -0.006649503950029612, -0.02939687669277191, 0.03845755755901337, 0.04429483041167259, 0.04373626783490181, -0.003550195600837469, 0.02672206237912178, 0.031677454710006714, -0.04359371215105057, 0.016034580767154694, 0.015885235741734505, -0.07120007276535034, -0.04922010749578476, 0.021564042195677757, -0.02303193509578705, -0.004460945259779692, -0.007037325296550989, 0.03038956969976425, 0.0019988692365586758, -0.029966123402118683, -0.027959058061242104, -0.02553039789199829, 0.005954354535788298, -0.029063748195767403, 0.05450697988271713, -0.0018152248812839389, -0.03044741414487362, 0.03354842960834503, 0.004726998042315245, -0.05213281139731407, -0.0023342601489275694, 0.048088300973176956, 0.0053478023037314415, -0.026753805577754974, -0.004969840869307518, -0.03780196234583855, 0.01744922436773777, 0.02096504159271717, -0.026993628591299057, -0.03241434693336487, 0.006681404076516628, -0.024928094819188118, 0.05374518781900406, -0.04733612760901451, 0.03296046331524849, 0.000780355476308614, -0.062343496829271317, 0.005767421796917915, -0.009871265850961208, -0.07366209477186203, 0.007513826247304678, 0.009440526366233826, 0.007650725543498993, -0.010908765718340874, -0.031403105705976486, 0.012519506737589836, -0.03757398575544357, 0.025355912744998932, 0.017134418711066246, 0.016993511468172073, -0.01862378418445587, -0.03848643600940704, -0.015637703239917755, -0.03970180079340935, -0.04436358064413071, -0.02640107274055481, 0.04994340240955353, 0.04142887517809868, -0.03911789134144783, 0.024822333827614784, -0.007280605845153332, -0.03102564439177513, -0.00017488206503912807, -0.015756184235215187, -0.01790298894047737, -0.03818059712648392, 0.042831480503082275, 0.018340814858675003, -0.04917061701416969, -0.028954511508345604, -0.046656183898448944, 0.05814763158559799, 0.01933778077363968, 0.011772267520427704, 0.01782170683145523, -0.03252170607447624, -0.02412550523877144 ]
William "Billy" C. Roberts, age 47, of Gosport, passed away at 12:58 P.M. on Thursday, January 24, 2019, at his residence. He was born in Greencastle, on August 12, 1971, the son of Bill & Rosetta (Surber) Roberts. Billy was a 1990 graduate of Owen Valley High School. He attended Olney Central College in Illinois, majoring in baseball. He was the owner of Livewire Electrical Services for over fifteen years. He was recently elected and sworn in as an Owen County Commissioner. Billy's favorite pastime was spending time with his kids and being a Grampy. He was a baseball coach for twenty-five years, spending most the years with Owen Valley High School. He also coached boys and girls soccer, and basketball. He was involved in many community projects, he served on the Owen Valley Sports Complex Board as President, the Owen County Fair Board for many years, he was the voice of the Patriots, announcing volleyball and basketball. He and his daughter showed pigs on the National Circuit. He founded the Valley Stars Baseball team, coaching his boys while traveling to many World Series tournaments. He enjoyed spending time being a mentor to young children and making a difference in their lives. He was an avid Cardinals fan, enjoyed running the Owen County demolition derbies, and vacationing. He attended the Owen Valley Christian Fellowship in Spencer. He is survived by his wife who had been part of his life since age twelve, together thirty-five years, and married for twenty-seven years, Becky (Arnold) Roberts of Gosport. He is also survived by his parents, his children, Craig Roberts, Shelby Roberts (Jason Mosson), and Brandon "Casey" Roberts, his grandson, Trey, a brother, Jimmy Roberts (Stephanie Sparks) of Spencer, a sister, Debbie (Steve) Ison of Spencer, his maternal grandmother, Shirley Staley of Cloverdale, his mother-in-law, Lois Arnold, and former sister-in-law, Shelly (Mike) Roofe. He was preceded by his paternal grandparents, Bill & Stella Roberts, and his maternal grandfather, Frank Surber. Funeral service will be held at the Christian Life Center in Spencer at 11:00 A.M. on Monday, January 28, 2019, with Pastor Bill Grandi officiating. Burial will follow at Hudson Hill Cemetery in Spencer. Visitation will be held at the Christian Life Center on Sunday from 2-8 P.M., and Monday from 9 A.M. until the time of service. Billy's request is for friends and family to wear their favorite sports team attire.
[ -0.024795273318886757, -0.000384180253604427, 0.0062476457096636295, -0.003678591689094901, -0.023083720356225967, 0.003945544362068176, 0.0004811653052456677, 0.017219489440321922, 0.026560813188552856, 0.0020437021739780903, 0.02782268263399601, -0.052140973508358, -0.004144083708524704, -0.017270129173994064, -0.022109724581241608, -0.00632905401289463, -0.025472775101661682, -0.043271295726299286, 0.00636439910158515, 0.01627374067902565, -0.013270830735564232, 0.0030485717579722404, -0.04454762116074562, -0.033104829490184784, 0.001187563524581492, 0.008179553784430027, 0.01940445974469185, 0.006734437774866819, 0.04235024377703667, 0.035030655562877655, -0.0300164632499218, -0.06413581967353821, 0.022187549620866776, -0.060259152203798294, -0.009192208759486675, -0.020150767639279366, 0.029205426573753357, -0.05057644471526146, -0.038738545030355453, -0.028272388502955437, 0.004802912473678589, -0.008581647649407387, 0.04288775473833084, -0.02741376683115959, -0.012796231545507908, -0.018473686650395393, -0.028304751962423325, -0.023261548951268196, 0.01237619761377573, -0.01498063188046217, 0.018484292551875114, -0.009843380190432072, 0.011016948148608208, -0.013123730197548866, -0.011026479303836823, 0.010969119146466255, 0.022044051438570023, -0.01963655836880207, 0.0015255642356351018, 0.014244351536035538, 0.022292321547865868, -0.022128142416477203, 0.017164109274744987, -0.05337037146091461, 0.01494322344660759, 0.020472239702939987, -0.02915855497121811, -0.0113408537581563, 0.030876003205776215, -0.02690763957798481, 0.03629344701766968, -0.0024357230868190527, -0.05340008810162544, -0.014548174105584621, 0.014197152107954025, -0.010391853749752045, -0.03997921571135521, -0.01597640849649906, -0.010651971213519573, 0.02221306599676609, -0.004031682386994362, 0.02055145986378193, 0.034602947533130646, 0.020717324689030647, -0.06851211190223694, -0.03418603911995888, -0.024545252323150635, 0.015091066248714924, 0.023085162043571472, 0.004413012880831957, -0.009811940602958202, 0.04493486136198044, 0.002388073829934001, -0.04305776581168175, 0.05247379466891289, 0.025116292759776115, -0.016116004437208176, 0.028355946764349937, 0.007246871944516897, -0.0263972207903862, 0.029839634895324707, 0.026675555855035782, -0.010847889818251133, 0.019742686301469803, -0.04479922726750374, -0.003845928004011512, 0.020522577688097954, 0.010150124318897724, 0.0071661146357655525, -0.02983189933001995, 0.007281474303454161, -0.023557020351290703, 0.041399724781513214, 0.0013054432347416878, -0.015442151576280594, 0.04365427792072296, -0.01459487620741129, 0.011712033301591873, -0.054076217114925385, 0.04025723785161972, 0.026083892211318016, 0.02147090621292591, 0.06454789638519287, -0.02833086997270584, 0.015639957040548325, -0.0435672290623188, -0.020963825285434723, 0.012161098420619965, 0.00632457947358489, -0.05204210802912712, 0.029973110184073448, -0.04541558027267456, 0.005959580186754465, -0.0027146192733198404, 0.013599677011370659, 0.0005356181645765901, 0.010066756047308445, 0.004532621707767248, 0.0027142942417412996, -0.06790225207805634, 0.018303116783499718, 0.018360169604420662, 0.017489613965153694, 0.08633142709732056, -0.010898287408053875, 0.020490186288952827, -0.00806239154189825, 0.003097568405792117, -0.01721428520977497, 0.021786872297525406, -0.05203408747911453, 0.024917935952544212, -0.011776341125369072, 0.023461202159523964, 0.004403106402605772, -0.012187718413770199, 0.014652605168521404, -0.001646652934141457, 0.011396453715860844, 0.04814364016056061, -0.0011798073537647724, 0.02069593407213688, 0.004351967014372349, 0.01790003292262554, -0.03994794934988022, 0.007374290842562914, -0.026485320180654526, -0.006993119139224291, -0.02677391655743122, -0.019535744562745094, 0.03675737977027893, 0.007471855729818344, -0.0365542508661747, 0.021345464512705803, -0.0033398957457393408, 0.05124206468462944, 0.05898937210440636, 0.01801314577460289, 0.05434618890285492, 0.05473872274160385, -0.02918907441198826, -0.014315790496766567, -0.01192250195890665, 0.07836311310529709, -0.008182484656572342, -0.04258095473051071, 0.03086237423121929, -0.0011633039684966207, -0.03700863569974899, -0.019469287246465683, 0.012088371440768242, 0.012011601589620113, -0.0197713952511549, 0.01251832116395235, -0.01032170094549656, 0.0024625894147902727, -0.017071496695280075, -0.02339186519384384, 0.008706115186214447, -0.01942722126841545, -0.02532573975622654, 0.056022606790065765, 0.003444427391514182, 0.01268902700394392, -0.010335217230021954, -0.024963490664958954, 0.03174178674817085, 0.061479467898607254, -0.05384909361600876, 0.04182502254843712, 0.042158644646406174, -0.002923985943198204, -0.026007933542132378, -0.016643229871988297, -0.0024840570986270905, 0.029476787894964218, -0.03652488812804222, 0.06443484872579575, 0.0019758089911192656, -0.011444009840488434, 0.009923063218593597, 0.050521813333034515, 0.046015650033950806, 0.0372776985168457, -0.006584827788174152, -0.009043324738740921, 0.033850912004709244, 0.03732261806726456, -0.062024906277656555, -0.02929406240582466, 0.02020631544291973, 0.029633760452270508, -0.001847384963184595, 0.08156727254390717, 0.011140843853354454, 0.012106834910809994, 0.0382714718580246, 0.049312934279441833, -0.015855928882956505, 0.05461768060922623, -0.024642184376716614, -0.018959451466798782, 0.06012825295329094, 0.04827957972884178, -0.001698422129265964, 0.011305196210741997, -0.034848492592573166, 0.009567886590957642, -0.022612355649471283, 0.02423742599785328, -0.02600235864520073, 0.03675324097275734, 0.02700837142765522, 0.037182506173849106, -0.03127461299300194, -0.008073169738054276, 0.013034253381192684, 0.046190615743398666, -0.05046901851892471, 0.010345070622861385, -0.017152706161141396, 0.012883306480944157, -0.018564017489552498, 0.026142751798033714, 0.032595664262771606, 0.011502848006784916, -0.009747427888214588, 0.007577375043183565, -0.014530537649989128, -0.05127722769975662, -0.021525418385863304, -0.07657569646835327, -0.012378507293760777, -0.038573265075683594, -0.03936190530657768, 0.01508098654448986, 0.07024582475423813, -0.031028486788272858, 0.009110304526984692, -0.02356753684580326, -0.012772879563272, -0.03635108470916748, 0.005881750024855137, 0.040402673184871674, 0.026701830327510834, 0.05323915183544159, -0.05388214439153671, 0.03679826855659485, -0.010136319324374199, 0.005004144739359617, -0.020100979134440422, -0.00022960061323828995, 0.003756418824195862, -0.03523200750350952, 0.03913912922143936, -0.012679253704845905, -0.007402169983834028, 0.014309441670775414, -0.06520889699459076, -0.07918819040060043, 0.003972999285906553, 0.013485634699463844, -0.014664484187960625, 0.00958455353975296, -0.03865966573357582, 0.04520883038640022, 0.011116446927189827, -0.06871625036001205, 0.0339190848171711, 0.05466458946466446, -0.05859440937638283, 0.04671335965394974, 0.026075253263115883, 0.005042797885835171, -0.052641548216342926, 0.07861590385437012, 0.009653976187109947, 0.031207766383886337, -0.025500649586319923, -0.014863491989672184, -0.02279876545071602, -0.006191212683916092, 0.014115243218839169, -0.015890877693891525, -0.04477154463529587, 0.048678815364837646, 0.022656846791505814, -0.050413552671670914, 0.03646331652998924, -0.032056309282779694, -0.024126585572957993, -0.022160734981298447, -0.03358595445752144, 0.019163314253091812, 0.02825036272406578, -0.0014722596388310194, 0.015870025381445885, -0.026452792808413506, -0.008230955339968204, 0.01209807675331831, 0.051814399659633636, -0.03728707879781723, 0.014566469006240368, 0.05136515945196152, 0.004489687271416187, 0.006372461095452309, 0.030926747247576714, 0.0077898562885820866, -0.016919711604714394, 0.011877934448421001, -0.013731452636420727, -0.006245987955480814, 0.01509841438382864, -0.0007374617853201926, 0.01943625882267952, 0.019096925854682922, -0.04185553267598152, 0.004319619853049517, 0.01816589944064617, -0.005543603096157312, 0.07013894617557526, 0.018443387001752853, -0.019645975902676582, -0.024818208068609238, -0.027759548276662827, -0.049749668687582016, 0.018193164840340614, 0.032793957740068436, 0.038591403514146805, -0.03937084972858429, 0.06528402864933014, -0.009358742274343967, 0.00008147563494276255, 0.04897031933069229, -0.03678273782134056, -0.0004605390422511846, 0.05131607502698898, -0.012633532285690308, 0.03633372113108635, -0.013175045140087605, 0.02372273989021778, 0.010063698515295982, -0.004279477521777153, 0.029739860445261, -0.006093199364840984, 0.006124111823737621, 0.007879038341343403, 0.026588868349790573, -0.024272631853818893, 0.006795803084969521, -0.0013766780029982328, -0.056529927998781204, -0.02043073996901512, -0.011407922953367233, -0.05312243849039078, -0.015099184587597847, 0.028497381135821342, -0.02631247788667679, 0.03937757387757301, 0.003578108036890626, 0.022870125249028206, -0.02210710570216179, 0.008748132735490799, 0.06284888833761215, -0.020192859694361687, 0.05039554089307785, -0.0588647797703743, 0.03004937618970871, 0.03583237901329994, -0.0324324406683445, -0.02150510810315609, -0.0310200322419405, 0.023595154285430908, 0.03213264420628548, 0.04590208828449249, -0.019216962158679962, -0.02652166411280632, 0.017185812816023827, -0.015680357813835144, 0.04411349445581436, -0.004321306478232145, -0.022300882264971733, 0.006970413029193878, 0.04385452717542648, 0.005249024368822575, -0.07644384354352951, -0.02422134019434452, -0.03389814496040344, 0.03835315257310867, 0.02100270986557007, 0.028902705758810043, -0.031008873134851456, 0.0042977482080459595, -0.03510446473956108, -0.014256259426474571, 0.03965775668621063, 0.035609081387519836, 0.013504784554243088, 0.04789185896515846, -0.03301046043634415, 0.014039778150618076, 0.022473206743597984, 0.0179241094738245, -0.013255025260150433, 0.012051337398588657, 0.03104688599705696, -0.006985438521951437, 0.03221200034022331, -0.01026192493736744, -0.03731363266706467, 0.033997632563114166, -0.05298234894871712, 0.037693336606025696, 0.02038835734128952, -0.020318137481808662, 0.007253482472151518, 0.007321903016418219, 0.016274644061923027, 0.03938063979148865, -0.002936148550361395, 0.006320783402770758, 0.015373324044048786, 0.021666616201400757, -0.0290820375084877, 0.0013454610016196966, 0.06916134804487228, -0.011065613478422165, -0.018519729375839233, 0.045242588967084885, 0.03973028063774109, -0.009859826415777206, 0.027277540415525436, 0.013120288960635662, -0.03432523086667061, 0.02943616919219494, -0.06235383450984955, 0.029150234535336494, -0.03270427882671356, -0.025960464030504227, 0.008021504618227482, -0.0006492299726232886, 0.013686991296708584, -0.0268570464104414, 0.009563932195305824, -0.03844582289457321, -0.0711599811911583, -0.002627602545544505, -0.0049343048594892025, -0.00799085944890976, -0.005909549538046122, 0.022106371819972992, -0.004300795029848814, -0.017062194645404816, -0.030999457463622093, 0.011101399548351765, 0.011792514473199844, -0.016825459897518158, 0.00144458026625216, 0.00734845083206892, -0.0049096946604549885, -0.006614348851144314, -0.020901834592223167, -0.021635431796312332, -0.0003907505888491869, -0.013023131527006626, -0.015441350638866425, -0.0469084307551384, -0.013614979572594166, -0.021547645330429077, 0.0013968897983431816, -0.002588156145066023, 0.022412825375795364, -0.01100452896207571, 0.03644222393631935, 0.002491486258804798, -0.0006869349163025618, 0.01421272475272417, 0.056718405336141586, -0.05140983685851097, 0.03255319222807884, 0.03006291203200817, -0.05459173396229744, -0.04277239367365837, 0.05162442848086357, -0.02357318066060543, 0.03887656331062317, 0.0018143487395718694, 0.008213113062083721, -0.007033995818346739, -0.06693177670240402, 0.01488020084798336, -0.026863573119044304, -0.03898598253726959, -0.04417753219604492, -0.04367977753281593, -0.025317147374153137, 0.024151353165507317, -0.029800185933709145, -0.016980523243546486, -0.02172744646668434, -0.020976869389414787, -0.02344871498644352, -0.04117200896143913, -0.020031284540891647, -0.0426686592400074, -0.03459763154387474, -0.02876875177025795, 0.056338243186473846, -0.008822543546557426, 0.024271899834275246, -0.0034517564345151186, 0.03394037112593651, 0.019751517102122307, -0.02332409657537937, -0.06719100475311279, -0.05128331854939461, 0.005471708718687296, 0.000036265162634663284, 0.00625386880710721, -0.009834757074713707, -0.004163818899542093, 0.05632128566503525, -0.05014393851161003, -0.017257096245884895, -0.013679960742592812, -0.03649426996707916, 0.016955062747001648, -0.005746978335082531, 0.05729164183139801, -0.01815778575837612, 0.02127305418252945, -0.00969725102186203, 0.0417519249022007, -0.009103653952479362, 0.011232682503759861, -0.025693027302622795, -0.06418236345052719, -0.022545188665390015, -0.04166589677333832, 0.0332847461104393, -0.032062314450740814, -0.015318715013563633, -0.03381733223795891, -0.0008805363904684782, 0.03263835236430168, 0.0005110155907459557, 0.04062213376164436, 0.03808319568634033, -0.019345732405781746, 0.00818997249007225, -0.0520341619849205, 0.05796467140316963, 0.012313823215663433, 0.023013833910226822, 0.02511439099907875, -0.033388253301382065, -0.029603712260723114, -0.0031847853679209948, -0.04425787925720215, -0.061159394681453705, -0.045226678252220154, -0.004111988935619593, 0.07806751132011414, 0.015752213075757027, 0.0624561570584774, -0.0003804835141636431, -0.04946040362119675, -0.029562702402472496, 0.03882286697626114, 0.014949829317629337, 0.011623179540038109, 0.0449756421148777, -0.026802441105246544, -0.010334894992411137, 0.002852199599146843, -0.008844043128192425, -0.0019015392754226923, -0.05159726366400719, 0.060081206262111664, -0.020182359963655472, -0.028992049396038055, 0.0342821329832077, 0.07686687260866165, -0.06660950928926468, -0.026535015553236008, 0.021753279492259026, 0.011235116980969906, 0.01503424346446991, -0.029596224427223206, 0.013434944674372673, -0.016057530418038368, 0.019805943593382835, -0.00596213573589921, 0.011362666264176369, 0.010363305918872356, 0.06079777702689171, -0.01893446408212185, 0.04692560434341431, -0.0360301174223423, 0.009718544781208038, 0.03783096745610237, -0.015553340315818787, -0.03287059813737869, -0.02027777023613453, -0.008046220988035202, -0.007565651088953018, -0.009508663788437843, 0.04854520410299301, 0.004401491954922676, 0.022446827962994576, 0.012243309058248997, -0.03191957622766495, 0.009684588760137558, 0.01991252973675728, -0.011168964207172394, -0.0006659312057308853, -0.014219507575035095, -0.06726936250925064, -0.05397297441959381, 0.0016235311049968004, 0.01457132026553154, 0.011251348070800304, -0.056042321026325226, -0.0031000261660665274, 0.012752478942275047, 0.021133236587047577, 0.008061866275966167, -0.04114456847310066, -0.024728013202548027, -0.01642301306128502, -0.023153234273195267, -0.021447522565722466, -0.01983507350087166, -0.009983809664845467, 0.02212383970618248, -0.001599143841303885, -0.03373409062623978, -0.0025814783293753862, 0.018240882083773613, 0.011803223751485348, 0.04341261088848114, -0.05934566259384155, 0.029115503653883934, -0.023318035528063774, -0.04687809571623802, -0.046537064015865326, -0.008205125108361244, -0.014022891409695148, -0.01292396429926157, 0.02756587415933609, 0.01860000565648079, -0.027668790891766548, 0.008559045381844044, 0.0152136804535985, -0.039701979607343674, -0.005038564559072256, -0.05369054153561592, 0.022236566990613937, 0.029262132942676544, -0.014594248495995998, 0.06084532290697098, 0.05435092747211456, -0.043670929968357086, 0.044331587851047516, -0.0031567132100462914, -0.04190574958920479, -0.0005770130665041506, -0.030101044103503227, 0.003750918433070183, 0.024435289204120636, -0.06546129286289215, -0.040940094739198685, -0.018457554280757904, -0.07351857423782349, 0.04117327183485031, 0.029734663665294647, 0.026840975508093834, 0.009878567419946194, -0.0014568313490599394, 0.003535142634063959, 0.055039700120687485, -0.015849905088543892, 0.02694748155772686, 0.00507006049156189, -0.009865352883934975, 0.019894441589713097, 0.01800403743982315, -0.012077001854777336, 0.01963997818529606, 0.020256487652659416, -0.011228587478399277, 0.02246972732245922, 0.005631641019135714, -0.020906152203679085, 0.020592287182807922, -0.024418123066425323, -0.049734555184841156, -0.06565716862678528, -0.02330498956143856, 0.004264978691935539, 0.00941435992717743, -0.02464999258518219, -0.009684001095592976, 0.052174776792526245, -0.025444738566875458, -0.05038393288850784, 0.029858816415071487, -0.05225435271859169, -0.037807296961545944, 0.040484778583049774, -0.010355682112276554, -0.002199270064011216, -0.027266355231404305, -0.031135521829128265, 0.019803829491138458, 0.007416415028274059, 0.005173892714083195, 0.014356086030602455, 0.048809245228767395, -0.004876797553151846, 0.04226585105061531, 0.03196492791175842, -0.004625589121133089, -0.010659096762537956, 0.0345374159514904, -0.03702254593372345, -0.04859454184770584, 0.0061286999844014645, -0.004267989657819271, 0.020276512950658798, 0.003998587839305401, 0.015487324446439743, -0.007746994495391846, 0.010669435374438763, -0.00556280417367816, -0.0032675224356353283, 0.011800822801887989, -0.03027372620999813, -0.01832607015967369, -0.02083781734108925, 0.003065828699618578, -0.052284110337495804, 0.04855164512991905, 0.0067931185476481915, -0.03154303506016731, -0.03196805343031883, 0.04177571460604668, 0.04169571027159691, -0.029572762548923492, 0.04951128363609314, 0.02677180990576744, 0.04553105682134628, 0.000027852880521095358, -0.0011119756381958723, -0.016012225300073624, 0.01855071261525154, 0.026285873726010323, 0.05260854586958885, 0.02300165966153145, 0.046649474650621414, 0.051826369017362595, 0.015485084615647793, 0.0002471377665642649, 0.061514195054769516, 0.041844166815280914, -0.06651461124420166, 0.03934025019407272, -0.009180274792015553, -0.0047958907671272755, 0.007072637788951397, -0.005590258166193962, 0.017703315243124962, -0.04046596959233284, -0.003168255090713501, 0.013875891454517841, -0.014436278492212296, 0.05424107238650322, -0.0037664149422198534, -0.023035762831568718, 0.02438916079699993, -0.005573098547756672, -0.017223384231328964, 0.03897008299827576, -0.015241152606904507, -0.0003829138877335936, 0.019970260560512543, 0.02930815890431404, 0.01012518722563982, 0.030609000474214554, 0.011099208146333694, 0.028075596317648888, -0.06087386608123779, -0.0017324135405942798, 0.01811257377266884, 0.00022070073464419693, -0.035377394407987595, 0.012618405744433403, -0.019314637407660484, 0.0057431296445429325, -0.03330611065030098, -0.013207399286329746, 0.04612608253955841, -0.011260166764259338, -0.022037232294678688, -0.0218666959553957, 0.030524486675858498, -0.017524128779768944, -0.016983965411782265, 0.053835656493902206, 0.0015016471734270453, -0.034755218774080276, 0.05698821693658829, 0.0050180936232209206, 0.028624271973967552, -0.0010904358932748437, 0.004328169859945774, 0.017629830166697502, 0.03871944174170494, 0.06563728302717209, -0.049239858984947205, -0.03167828172445297, 0.010334995575249195, -0.01687292754650116, -0.060090724378824234, -0.03174977004528046, -0.030256131663918495, 0.011661648750305176, -0.027395451441407204, -0.03423120081424713, 0.026434654369950294, 0.011244017630815506, -0.017290867865085602, -0.06011907383799553, -0.004924124572426081, 0.01080254279077053, -0.048668649047613144, 0.047504913061857224, 0.0007528234273195267, 0.03645305708050728, -0.01883530057966709, -0.0439864881336689, -0.027598077431321144, -0.022915760055184364, -0.00032557352096773684, -0.030117735266685486, 0.036410436034202576, -0.007066931575536728, -0.038851141929626465, -0.017824994400143623, -0.045415252447128296, -0.033768393099308014, 0.02026420086622238, -0.07636893540620804, -0.016306541860103607, 0.03300810605287552, 0.05625971779227257, -0.01599251478910446, 0.031446490436792374, -0.012800079770386219, 0.008684538304805756, 0.021454090252518654, 0.03628915175795555, -0.001910278107970953, 0.013740211725234985, 0.01649906113743782, -0.02582421712577343, 0.03865249827504158, -0.026597367599606514, 0.032223861664533615, -0.01801573485136032, -0.0460592620074749, -0.022573333233594894, 0.018015436828136444, -0.01213448029011488, -0.06018778309226036, 0.01560852862894535, 0.015584699809551239, 0.014133797027170658, -0.01666661910712719, -0.06680063903331757, 0.027700884267687798, -0.02946329303085804, -0.0026975455693900585, -0.041174642741680145, 0.02263791859149933, 0.01208468247205019, 0.0029242767486721277, -0.02452556975185871, -0.07162648439407349, 0.1519528180360794, 0.02919660694897175, 0.013391070999205112, -0.02327907085418701, 0.030005386099219322, 0.05476647987961769, 0.013899295590817928, 0.023384369909763336, -0.030104083940386772, -0.0641765370965004, 0.03498469665646553, 0.01064740214496851, 0.04554152861237526, 0.018192023038864136, 0.006288048345595598, 0.06746463477611542, -0.021247299388051033, 0.019844941794872284, 0.008239309303462505, -0.04030309617519379, -0.045516904443502426, 0.015655547380447388, -0.02138320542871952, 0.0311419740319252, -0.0067514837719500065, 0.04218658059835434, 0.02068951725959778, -0.05187191814184189, 0.0051970104686915874, -0.012371428310871124, 0.04049630090594292, -0.03206977993249893, 0.01810925453901291, -0.005841644015163183, -0.0348481722176075, 0.03631681948900223, 0.0011825001565739512, -0.020023878663778305, 0.020556239411234856, 0.0026420701760798693, -0.0011868375586345792, 0.009832589887082577, 0.038641393184661865, -0.03009549342095852, 0.021265313029289246, 0.03487427160143852, -0.06286243349313736, 0.024572638794779778, 0.06255552917718887, -0.025568081066012383, 0.06556012481451035, -0.037640996277332306, 0.023565689101815224, 0.016264431178569794, -0.003954543732106686, 0.011682149954140186, 0.019615326076745987, -0.045871175825595856, -0.049294017255306244, -0.000854729616548866, 0.05697612091898918, -0.0018218646291643381, -0.024434907361865044, 0.030364276841282845, -0.041304197162389755, 0.010550886392593384, 0.049576468765735626, 0.012147553265094757, -0.02516923099756241, -0.05643478035926819, -0.01116887852549553, -0.0038425393868237734, -0.018076559528708458, -0.03738212212920189, 0.041349880397319794, 0.023430215194821358, -0.023516805842518806, 0.04482981935143471, 0.0084204887971282, -0.016717445105314255, -0.00856710597872734, -0.04971133545041084, 0.004130883142352104, -0.005866957828402519, 0.038562532514333725, 0.020824281498789787, -0.02459031715989113, -0.03674028441309929, -0.010995852760970592, 0.04194863513112068, 0.047549277544021606, 0.009838780388236046, -0.014773485250771046, -0.017508884891867638, -0.039625637233257294 ]
Recently Dita von Teese visited Moscow and told about it on her page on Instagram. The 44-year-old star of Burlesque decided not to tell why she decided to visit the Russian capital, but she shared her impressions of Moscow's cultural attractions. "Hello from Moscow! Thanks @frolburimskiy for being next to me on this beautiful day, filled with the scent of flowering trees. I've been to Moscow many times, but I can not remember a more beautiful day. I really enjoyed visiting the Gorky Museum. And as usual, I went to the Diamond Fund to admire the impressive exhibits, - Dita told her followers, sharing a picture taken in the former mansion of S. P. Ryabushinsky, where the museum-apartment of A. M. Gorky is now located. Frol Burimsky, mentioned by the American model in his post, also shared an image on his Instagram-diary - in the picture shared to Instagram Dita von Teese is seen on Red Square.
[ -0.00956746470183134, -0.017534289509058, -0.016437456011772156, 0.010936110280454159, -0.029791900888085365, -0.013280395418405533, -0.0013592264149338007, 0.031411025673151016, 0.0014688668306916952, 0.005151650402694941, 0.021723521873354912, 0.01289503276348114, 0.022208303213119507, -0.012366380542516708, 0.0006237657507881522, -0.02761833183467388, -0.03103773295879364, -0.01052053552120924, -0.043160662055015564, 0.009512332268059254, -0.003920431714504957, 0.02026212401688099, -0.05521026626229286, -0.011753135360777378, -0.01431441493332386, 0.053204912692308426, 0.041747406125068665, -0.010485314764082432, 0.0619901604950428, 0.051537685096263885, -0.009251991286873817, -0.04157273843884468, 0.04382704943418503, -0.05948037654161453, 0.02062007412314415, -0.00037061457987874746, 0.04369519650936127, -0.03876214846968651, 0.006236701738089323, -0.05445275083184242, 0.005136716179549694, -0.010252784006297588, 0.03635793551802635, -0.03771304339170456, -0.05115565285086632, 0.01644461415708065, -0.04822838306427002, -0.007657141890376806, 0.00925543811172247, -0.03224574401974678, 0.0023540628608316183, -0.007092403247952461, 0.012768354266881943, 0.031084541231393814, -0.00903678871691227, -0.026460181921720505, -0.027093030512332916, -0.008931496180593967, 0.011662236414849758, 0.036778416484594345, 0.03509071469306946, -0.017006317153573036, 0.04275934398174286, -0.0744701623916626, 0.010687035508453846, -0.01002095639705658, 0.01571574993431568, -0.0319904163479805, -0.005200265906751156, -0.026094114407896996, 0.0005796406767331064, -0.0063219377771019936, -0.009825616143643856, -0.041582729667425156, -0.02445938065648079, 0.01381988637149334, -0.01969323121011257, 0.0032973771449178457, 0.014740057289600372, 0.012387043796479702, 0.03933636471629143, 0.04282241314649582, -0.010374252684414387, 0.04798685014247894, -0.03839361295104027, -0.02979777567088604, -0.011400801129639149, 0.005954645574092865, -0.004076648969203234, 0.018975012004375458, 0.04894847050309181, 0.0445123091340065, -0.003516423748806119, -0.018853306770324707, 0.050441011786460876, 0.04808901622891426, -0.022637685760855675, 0.03602732717990875, -0.017524953931570053, 0.0059980968944728374, 0.02303488366305828, 0.022866904735565186, -0.005107515025883913, 0.06588950008153915, -0.020891614258289337, 0.004506932571530342, 0.021375447511672974, 0.0026526181027293205, 0.006898193620145321, -0.02411358430981636, 0.0070966933853924274, -0.03148632124066353, 0.033838897943496704, 0.01423149649053812, 0.006973275449126959, 0.04913235083222389, 0.010032405145466328, 0.014918197877705097, -0.04835040867328644, 0.013084237463772297, -0.004439676646143198, 0.01259598508477211, 0.01940126158297062, -0.025093991309404373, 0.015736686065793037, -0.019053258001804352, -0.029509490355849266, 0.062164705246686935, -0.015397042967379093, -0.042805444449186325, -0.009994028136134148, -0.0364203006029129, 0.03154745697975159, -0.008648744784295559, 0.007135097403079271, -0.005748776253312826, -0.02713795192539692, 0.03285466507077217, 0.02166210301220417, -0.0458446629345417, 0.06852863729000092, 0.010929088108241558, 0.009178641252219677, 0.08765766024589539, 0.005150948651134968, 0.05073452368378639, 0.02678012289106846, 0.000471955951070413, -0.04053576663136482, 0.02635619044303894, -0.014431804418563843, 0.00807503517717123, -0.0004020458145532757, 0.026643719524145126, 0.01126867812126875, -0.0016243811696767807, 0.007787852082401514, 0.0451536551117897, -0.008529484272003174, 0.0473610982298851, -0.019043130800127983, 0.026042187586426735, -0.01652156002819538, 0.03989251330494881, 0.014539578929543495, 0.014105677604675293, -0.017466682940721512, -0.021257970482110977, 0.030026806518435478, -0.025118201971054077, 0.03612349182367325, 0.01917637698352337, -0.020395798608660698, 0.006808354984968901, 0.028219103813171387, 0.027293561026453972, 0.020906616002321243, -0.019914165139198303, 0.025623133406043053, 0.01971706748008728, -0.028396666049957275, 0.018071450293064117, 0.01661716215312481, 0.01323788147419691, 0.016291383653879166, -0.05101967975497246, -0.006566955707967281, -0.05624917894601822, -0.045557089149951935, -0.021983100101351738, -0.019311843439936638, -0.010396206751465797, -0.01990482211112976, 0.030433950945734978, 0.015250458382070065, 0.029442790895700455, -0.014063025824725628, 0.005991979502141476, -0.001014985260553658, -0.05896414816379547, -0.013440923765301704, 0.07028486579656601, -0.038388997316360474, 0.014653132297098637, 0.019290359690785408, -0.021226666867733, 0.005228217225521803, 0.07877812534570694, -0.03353502228856087, -0.0008018873631954193, 0.026207512244582176, -0.016769133508205414, 0.0004881253407802433, -0.024593597277998924, 0.004355987999588251, -0.007079266477376223, -0.026521291583776474, 0.05505135655403137, -0.024859948083758354, -0.014006565324962139, 0.009178356267511845, 0.011406169272959232, 0.03413134068250656, 0.01680293306708336, -0.008277113549411297, 0.02001933939754963, 0.0045611076056957245, 0.024117860943078995, -0.003180805128067732, 0.006777686066925526, -0.018824834376573563, 0.048432160168886185, 0.023367563262581825, 0.049196917563676834, 0.04811035841703415, 0.01268074382096529, 0.04713650047779083, 0.03299972414970398, -0.012129858136177063, 0.023537656292319298, -0.028828628361225128, 0.016447322443127632, 0.031058788299560547, 0.028937438502907753, -0.0038512872997671366, 0.0584079772233963, -0.034751761704683304, 0.01104460284113884, -0.006442365702241659, 0.037954557687044144, -0.020546138286590576, 0.031102918088436127, 0.020941080525517464, 0.05591458082199097, -0.03629336506128311, 0.022251641377806664, 0.0192638598382473, 0.03572812303900719, 0.0019330884097144008, -0.014435482211411, 0.004947462119162083, 0.021700704470276833, -0.004006046801805496, 0.013261516578495502, 0.044782668352127075, -0.014279318042099476, -0.010280926711857319, 0.035141173750162125, -0.01610732637345791, -0.061454419046640396, -0.02688402496278286, -0.03263475000858307, -0.05145052447915077, -0.03731708601117134, -0.03440854698419571, -0.010654169134795666, 0.0716567412018776, -0.03454531729221344, 0.021472953259944916, -0.002870909869670868, -0.021748367697000504, -0.04301958158612251, -0.02104947157204151, 0.04440325126051903, 0.028662705793976784, 0.05448199808597565, -0.028909549117088318, 0.043490685522556305, 0.017659857869148254, 0.029094157740473747, -0.02380366064608097, -0.006976315751671791, -0.02362772449851036, 0.02145947515964508, 0.03188011795282364, -0.009121978655457497, -0.023910153657197952, -0.039206963032484055, -0.02875709906220436, -0.030584042891860008, 0.006370340008288622, 0.04216623306274414, 0.02379935421049595, -0.007980458438396454, -0.012568112462759018, 0.03666923567652702, 0.03612090274691582, -0.04340739920735359, 0.03638913482427597, 0.04376852512359619, -0.027794713154435158, 0.035303980112075806, 0.04150059446692467, 0.00017860537627711892, -0.04854917898774147, 0.06605823338031769, 0.07076390832662582, -0.0036331515293568373, -0.03366325423121452, -0.0002778923371806741, -0.011020260863006115, 0.006971660070121288, 0.02218780107796192, -0.033484358340501785, -0.05645976588129997, 0.02246745117008686, 0.014443483203649521, -0.06756222993135452, 0.015749743208289146, -0.054709818214178085, -0.019259948283433914, -0.022809812799096107, -0.046158310025930405, 0.03828219696879387, 0.052190445363521576, 0.024151122197508812, -0.007327719125896692, -0.01917368918657303, -0.02729182504117489, 0.029605379328131676, 0.008746972307562828, -0.032968856394290924, -0.0004973590839654207, 0.049581270664930344, -0.025569528341293335, 0.01756594330072403, -0.004448825027793646, -0.0029673371464014053, 0.0006733598420396447, 0.01127066183835268, 0.0189360361546278, -0.002919655293226242, 0.011578998528420925, 0.024285204708576202, -0.016939576715230942, 0.04349082335829735, -0.03248467296361923, 0.022379865869879723, 0.031951818615198135, 0.02264825440943241, 0.015512526966631413, 0.020898791030049324, 0.047398168593645096, -0.010688756592571735, -0.05192117393016815, -0.06392352283000946, 0.027848413214087486, 0.021938471123576164, 0.05077294632792473, -0.044781394302845, 0.06828274577856064, -0.032896243035793304, -0.03834737464785576, 0.03449295088648796, -0.05973991006612778, -0.009913013316690922, 0.05920513719320297, -0.004676410462707281, 0.051277175545692444, -0.02280449867248535, 0.012110734358429909, -0.05555391311645508, 0.02774765156209469, 0.05248138681054115, -0.01694927178323269, 0.022056300193071365, -0.04212592542171478, -0.05856017395853996, 0.002609683433547616, -0.001577362883836031, -0.017869092524051666, -0.021651219576597214, 0.0023057686630636454, 0.005916346795856953, -0.041682422161102295, -0.07735318690538406, 0.04736299067735672, 0.03355276212096214, 0.017789116129279137, -0.024819176644086838, 0.01413732673972845, 0.06264851987361908, 0.026400519534945488, 0.03593871742486954, -0.04100578650832176, -0.005172172095626593, -0.046514514833688736, 0.04516589269042015, 0.006423786748200655, -0.011525562033057213, -0.0028410381637513638, -0.029652707278728485, -0.02181015908718109, 0.022225623950362206, 0.013768162578344345, -0.0030739889480173588, -0.01650693453848362, -0.005942080169916153, -0.0314103327691555, 0.017369180917739868, -0.050613053143024445, -0.01673213019967079, 0.008507300168275833, 0.03602588176727295, 0.006946997717022896, -0.03129791468381882, 0.011470668949186802, -0.018632661551237106, 0.04870534688234329, 0.02909889817237854, -0.0130164148285985, -0.059785615652799606, -0.04349546134471893, -0.025721099227666855, -0.05314922705292702, -0.041427113115787506, 0.052588701248168945, 0.011090008541941643, -0.0048401327803730965, -0.06187200918793678, 0.04979617893695831, 0.03264428675174713, -0.004628186114132404, 0.007843106985092163, -0.012521442957222462, -0.004165291786193848, 0.0075759682804346085, 0.02934952639043331, -0.009648347273468971, -0.04041759669780731, 0.009002018719911575, -0.051745444536209106, 0.00735510466620326, 0.0007293197559192777, -0.028873147442936897, -0.009336438030004501, -0.009947476908564568, 0.015216873958706856, 0.03962763026356697, 0.013432462699711323, 0.04113638773560524, -0.008972587063908577, 0.02320965565741062, -0.03303754702210426, -0.03454894572496414, 0.055010516196489334, 0.021787825971841812, -0.0002602793392725289, -0.0038271425291895866, 0.09396359324455261, -0.02069655992090702, -0.009870574809610844, 0.006421715021133423, -0.06742748618125916, 0.03203820809721947, -0.043719783425331116, -0.01997215487062931, -0.036522604525089264, -0.05395268276333809, 0.01137561071664095, -0.020640281960368156, 0.04389401152729988, 0.02278096042573452, -0.008750427514314651, -0.04665304720401764, -0.0682237446308136, -0.023472784087061882, 0.01915510930120945, -0.00030329666333273053, 0.0005928340251557529, 0.015893857926130295, -0.027474572882056236, -0.023158511146903038, -0.031808849424123764, -0.01989496871829033, 0.03006613627076149, -0.033381350338459015, 0.02780907042324543, 0.021271495148539543, -0.01808650605380535, 0.0016036727465689182, 0.012508925050497055, -0.032379329204559326, 0.005572461988776922, -0.00008616164996055886, -0.046957723796367645, -0.07544560730457306, -0.009080849587917328, -0.023733749985694885, -0.025597186759114265, -0.023345082998275757, -0.03402719274163246, -0.018291233107447624, 0.008443308062851429, 0.037001851946115494, -0.005052777007222176, 0.03899843990802765, 0.00922915618866682, -0.020851945504546165, 0.021253719925880432, 0.03681737557053566, -0.04295312985777855, 0.004392597358673811, 0.04358435422182083, -0.0006443548481911421, 0.01152712106704712, -0.0017672666581347585, -0.025601327419281006, -0.04810190945863724, -0.04810229688882828, -0.007945869117975235, -0.05608513206243515, -0.028483277186751366, -0.060077037662267685, -0.027688421308994293, -0.03191279247403145, 0.02197474054992199, 0.014996316283941269, -0.018630122765898705, 0.028765372931957245, -0.017107632011175156, -0.019826939329504967, -0.035513702780008316, -0.03383883088827133, -0.021703483536839485, -0.03512631356716156, -0.01075862254947424, 0.04099341481924057, -0.029665924608707428, 0.02841956540942192, 0.0015199731569737196, 0.002590768039226532, 0.00010790413216454908, -0.0441427156329155, -0.02825099788606167, -0.05964275449514389, -0.004886311013251543, 0.0032607843168079853, -0.005875271745026112, 0.020072657614946365, -0.05080634728074074, 0.05411548167467117, -0.04523792490363121, -0.005129155702888966, -0.019905179738998413, -0.050148855894804, 0.0008422068203799427, -0.029184626415371895, 0.0675259456038475, -0.029053084552288055, -0.007045751437544823, -0.03824932128190994, 0.055923230946063995, 0.028178708627820015, -0.003365366952493787, -0.028257332742214203, -0.07252074778079987, -0.017058564350008965, -0.06235591694712639, 0.04943250119686127, -0.05602269992232323, -0.018853038549423218, -0.04306551814079285, 0.009468101896345615, 0.043163422495126724, 0.016957100480794907, 0.022230960428714752, 0.0485931932926178, -0.00673605827614665, -0.004732626024633646, -0.04402125999331474, 0.013332315720617771, 0.034081827849149704, 0.01234807912260294, -0.0136641850695014, 0.014159605838358402, -0.028107278048992157, 0.023381484672427177, -0.02716643549501896, -0.007605364080518484, -0.0307938102632761, -0.013766871765255928, 0.07243630290031433, -0.023721512407064438, 0.027804667130112648, 0.0023872770834714174, -0.052665382623672485, -0.05084192380309105, 0.05627857521176338, 0.01855890266597271, -0.007482134737074375, 0.007422747556120157, -0.011568140238523483, -0.006412084214389324, 0.0038092792965471745, 0.047390446066856384, -0.015604750253260136, -0.029077235609292984, 0.0547686330974102, -0.006592123303562403, -0.07110550254583359, 0.03215992450714111, 0.07326206564903259, -0.029396623373031616, -0.04896019771695137, -0.0006757316878065467, -0.01705118454992771, 0.020938489586114883, -0.031449075788259506, 0.0038343367632478476, 0.0034402571618556976, -0.014002518728375435, 0.026434268802404404, 0.05183136835694313, 0.01699693500995636, 0.014532845467329025, 0.018420953303575516, 0.01791042648255825, -0.024182550609111786, 0.0007780237356200814, 0.016256190836429596, -0.022381437942385674, -0.0403219498693943, -0.057534489780664444, -0.017117319628596306, -0.022291891276836395, -0.005726904142647982, 0.05593201518058777, -0.012697278521955013, 0.022714706137776375, 0.026222918182611465, -0.006492511834949255, 0.06593432277441025, 0.010342583060264587, 0.016035355627536774, 0.010329840704798698, -0.03838951513171196, -0.04907449707388878, -0.035689517855644226, 0.018822237849235535, -0.004540392197668552, 0.03963905945420265, -0.056983329355716705, -0.014490167610347271, 0.06843557953834534, -0.0076484293676912785, -0.012782509438693523, -0.04550692439079285, -0.0472276397049427, -0.042571429163217545, -0.03471831604838371, -0.02956274338066578, -0.0007676417590118945, 0.0059725739993155, 0.007704972289502621, -0.01751980371773243, -0.07622217386960983, -0.020351314917206764, 0.010537514463067055, -0.01777767948806286, -0.0008270455291494727, -0.024543920531868935, 0.027052395045757294, -0.04178670421242714, -0.03796825185418129, -0.014860350638628006, 0.00429258169606328, -0.009803892113268375, -0.010759340599179268, -0.002206511329859495, 0.013648557476699352, 0.0015552027616649866, 0.03939379006624222, 0.0213793758302927, 0.007320890668779612, -0.009495644830167294, -0.03744572401046753, -0.018756849691271782, 0.01755804382264614, -0.000997817376628518, 0.01588555797934532, 0.014593906700611115, -0.038871120661497116, 0.007367343176156282, -0.03625759109854698, -0.034960221499204636, -0.010960589163005352, -0.012169528752565384, 0.026779780164361, 0.02225709892809391, -0.001567356986925006, -0.02532566525042057, -0.011807850562036037, -0.01600102335214615, 0.02263094112277031, -0.007191576063632965, -0.00517467362806201, 0.00025356109836138785, -0.013021022081375122, -0.012554946355521679, 0.03327719867229462, -0.001572367618791759, 0.0016221655532717705, -0.0032067487481981516, -0.003250478534027934, -0.005565481726080179, 0.0017871096497401595, 0.02533712424337864, 0.025832217186689377, 0.034428227692842484, -0.008323702961206436, 0.03950142860412598, 0.019355738535523415, -0.0223494041711092, 0.04148215055465698, -0.01264236681163311, -0.07377223670482635, -0.04733366519212723, 0.0010707206092774868, 0.001102618407458067, 0.039818741381168365, 0.047211747616529465, -0.0016653415514156222, 0.038237735629081726, -0.07369767874479294, -0.04036649689078331, 0.03525771200656891, -0.04421491175889969, -0.030530834570527077, 0.020591311156749725, -0.03459828719496727, -0.0034927092492580414, -0.008042721077799797, -0.029036827385425568, 0.009988214820623398, -0.008068302646279335, 0.007662639021873474, -0.02959332801401615, -0.023515816777944565, 0.004597201477736235, 0.004439033102244139, -0.013071735389530659, -0.011408925987780094, 0.014552341774106026, 0.016774430871009827, -0.017773132771253586, -0.03942335024476051, 0.013465379364788532, 0.027363590896129608, 0.009267894551157951, -0.03163819760084152, -0.010084140114486217, -0.005072745960205793, -0.006977699231356382, -0.03251475840806961, 0.007030034437775612, 0.04072782024741173, 0.03403092175722122, 0.04602689668536186, 0.000514596002176404, -0.014024247415363789, -0.005039245821535587, 0.03993064910173416, -0.005968611687421799, -0.0037509826943278313, -0.03091364912688732, 0.0349988155066967, 0.008152369409799576, 0.007412073668092489, 0.06797560304403305, 0.02641298435628414, 0.032665614038705826, -0.001156993443146348, 0.014954866841435432, -0.0255894735455513, 0.05474335700273514, 0.023938877508044243, 0.00883958488702774, -0.004104749299585819, 0.029301775619387627, 0.04710208624601364, -0.016367098316550255, 0.009052135981619358, 0.03699573129415512, 0.037938717752695084, -0.011214572004973888, -0.010475896298885345, -0.024517422541975975, 0.007333846762776375, 0.003446471644565463, -0.0007719032582826912, 0.005844515282660723, -0.0035694397520273924, -0.006064802873879671, -0.02927255816757679, -0.03736899048089981, 0.04053904488682747, -0.030198443681001663, 0.011678991839289665, -0.02567100338637829, -0.013555848971009254, -0.010371488519012928, 0.032945215702056885, 0.02968171238899231, 0.013192355632781982, 0.021031681448221207, -0.005552329588681459, -0.0506274588406086, 0.06566081941127777, 0.02581528015434742, 0.012390087358653545, -0.03076191432774067, 0.03354495018720627, 0.0017563612200319767, -0.007636445574462414, -0.0017479683738201857, 0.0018165793735533953, -0.0316365584731102, 0.06730492413043976, -0.05987696349620819, -0.02446196973323822, 0.06695768237113953, -0.04981470853090286, 0.0163137037307024, -0.04994843900203705, 0.045615434646606445, -0.035896312445402145, -0.006431250832974911, 0.01184505969285965, -0.01144952792674303, -0.03828422352671623, 0.04851239547133446, -0.002238989109173417, 0.03464851155877113, 0.01509370468556881, 0.06435692310333252, -0.002119921613484621, 0.03924914076924324, 0.050409723073244095, -0.028156520798802376, -0.025556636974215508, 0.009425169788300991, 0.0023076478391885757, -0.04187953844666481, -0.024013860151171684, -0.04749448969960213, 0.03232155367732048, 0.003444575471803546, 0.008580368012189865, 0.03765792027115822, 0.04458174109458923, 0.01699790731072426, -0.018247505649924278, -0.01267923228442669, 0.02009878307580948, -0.016498614102602005, 0.009555748663842678, 0.02076762542128563, 0.052333466708660126, -0.02924632839858532, 0.004119489807635546, -0.02019091695547104, -0.031261466443538666, -0.00025585456751286983, -0.05936862528324127, 0.04623042047023773, 0.01939803548157215, -0.019471338018774986, -0.016422254964709282, -0.0725305899977684, -0.009399610571563244, 0.0014561412390321493, -0.0616997554898262, -0.05363846570253372, 0.011054033413529396, 0.037425801157951355, 0.012974806129932404, -0.010679424740374088, -0.028434576466679573, -0.01626035012304783, 0.012963172048330307, 0.06861505657434464, 0.02861275151371956, 0.02948935516178608, 0.030218981206417084, -0.01549598854035139, 0.027744995430111885, -0.028241490945219994, 0.024837709963321686, -0.0164316538721323, -0.015777800232172012, -0.008475241251289845, 0.0016402613837271929, -0.006861069705337286, -0.06092842295765877, 0.027010362595319748, 0.005618001334369183, 0.02556379698216915, -0.029070766642689705, -0.05515052378177643, -0.028320271521806717, -0.05238373577594757, -0.004998526070266962, -0.03321399539709091, 0.013402129523456097, 0.023727860301733017, 0.026097619906067848, -0.006462913006544113, -0.08418005704879761, 0.16271160542964935, 0.03962777554988861, 0.038283929228782654, -0.04404320940375328, 0.04073591157793999, 0.03992867469787598, 0.03399121016263962, -0.020161667838692665, -0.007957188412547112, -0.04499368742108345, 0.03662363439798355, -0.006396125070750713, 0.04447789862751961, -0.012417049147188663, 0.026444997638463974, 0.04398937150835991, -0.0176105797290802, -0.008081008680164814, 0.022465066984295845, -0.026726389303803444, -0.03802403807640076, 0.05375276133418083, -0.015676718205213547, 0.001650820835493505, 0.01498004887253046, 0.008319507353007793, 0.008298981003463268, -0.04606151208281517, 0.004318741150200367, -0.027869001030921936, 0.01508281473070383, -0.0062874676659703255, 0.03718307241797447, -0.0054907058365643024, -0.040711160749197006, 0.03233538568019867, -0.014895136468112469, -0.030332494527101517, 0.025631291791796684, 0.04082201421260834, -0.01598241738975048, -0.020846180617809296, 0.05300379544496536, 0.0034619213547557592, 0.015095043927431107, 0.03158082813024521, -0.05988164618611336, 0.01751028001308441, 0.018968047574162483, -0.06208011880517006, 0.044329844415187836, -0.031965963542461395, 0.02845226600766182, -0.031555842608213425, -0.02086827903985977, 0.009100501425564289, 0.0038337092846632004, -0.044504325836896896, 0.007025223225355148, 0.02390775829553604, 0.013265176676213741, 0.0010047706309705973, -0.019160447642207146, -0.005450762342661619, -0.04850994423031807, 0.01059595588594675, 0.01851819083094597, 0.026816532015800476, -0.009696410968899727, -0.02732618898153305, -0.015977412462234497, 0.0005554610979743302, -0.0238492414355278, -0.010673224925994873, 0.02829265594482422, 0.028806768357753754, -0.006968161556869745, 0.0539688877761364, -0.01915004290640354, -0.008588256314396858, 0.00995330885052681, -0.03369331359863281, 0.0004038430342916399, -0.003592090681195259, 0.029875988140702248, 0.03976554796099663, -0.01540443766862154, -0.017335733398795128, -0.007804093882441521, 0.04669065400958061, 0.03861577436327934, 0.03465229272842407, -0.030592402443289757, 0.003149570431560278, -0.018344515934586525 ]
Home Leisure & Sports Kamaiu Johnson Victorious in Second Straight APGA Tour TPC Las Vegas Tourney Kamaiu Johnson Victorious in Second Straight APGA Tour TPC Las Vegas Tourney by PRIDE Newsdesk April 15, 2022 written by PRIDE Newsdesk April 15, 2022 APGA Tour Executive Director Cole Smith (left) presents the winner's check to APGA Tour at TPC Las Vegas repeat champion Kamaiu Johnson. (Photo credit – APGA Tour photo) LAS VEGAS, NV. – APGA Tour shining star Kamaiu Johnson moved back into the winner's circle Tuesday, conquering difficult conditions to win the APGA Tour at TPC Las Vegas for the second year in a row. The victory, his third career win on the APGA Tour, came in a single-day competition after Monday's first-round was called off as winds gusting to 70 MPH made competition unsustainable. One of the APGA Tour's most recognizable players, Johnson became a prominent story in 2021 when his PGA TOUR debut at the Farmers Insurance Open was scuttled by a positive COVID-19 test. The golf world rallied in support of Johnson and the APGA Tour and he was invited to three PGA TOUR events in the ensuing months, fulfilling his dream of competing at the highest level. "It was quite a journey last year, for sure," said Johnson, the Tallahassee native now residing in Orlando. "Then my daughter was born in October and that was amazing. Now, I'm more relaxed, patient. I know she's going to love me whether I shoot 82 or 62." Last year, Johnson fired a final-round 70 to win at TPC Las Vegas by a single stroke. This year, he was two strokes better than Aaron Beverly of Fairfield, California, Joseph Hooks of Farmington Hills, Michigan, and Willie Mack III of Grand Blanc, Michigan, who tied for second with 2-over-par 73s. Johnson won the tournament on the 591-yard par-5 15th hole. He drove into the rough, punched out up the fairway, and then holed out for eagle from 133 yards with a gap wedge. "It bounced a couple of times and then rolled in," Johnson added. "I saw it the whole way." His winning 71 was even par on the 6,699-yard layout with two birdies and two bogeys on the front nine. On the back, he carded the eagle plus two bogeys, good enough as the rest of the field battled the windy conditions. Johnson's other credentials include winning the APGA Tour season-end championship in 2020 plus one start on the Korn Ferry Tour in 2021 and a start this past January at the Farmers Insurance Open. Johnson won $7,500 from the $25,000 purse. The APGA Tour is back in action on April 18-19 with APGA Tour at TPC Scottsdale in Scottsdale, Arizona. The APGA Tour was established in 2010 with the mission to bring greater diversity to the game of golf by hosting and operating professional golf tournaments, player development programs, mentoring programs, and introducing the game to inner-city young people. The tour has grown from seven events with $200,000 in prize money in 2020 and 14 events with over $400,000 in prize money in 2021, and now 18 events with over $700,000 in prize money in 2022. APGAAPGA Tour TPCKamaiu JohnsonLas Vegas Tourneyvictory Remembering Dr. Martin Luther King, Jr. 54 years later Movie Reviews: Missing Inaugural Frist Arts Fest Weekend features new art... Black History Month Programming on PBS Titans hire Ran Carthon as team's new general... NMAAM honors Dr. Bobby Jones with Living Legends...
[ 0.016487302258610725, 0.017332063987851143, -0.028709033504128456, 0.03514963388442993, -0.009247343055903912, -0.01264883205294609, -0.00667144637554884, 0.04581722617149353, 0.03069402277469635, 0.028461847454309464, 0.030273498967289925, 0.012517603114247322, -0.0007351487292908132, -0.04605613276362419, -0.014099406078457832, 0.01195655856281519, -0.015937842428684235, -0.029003983363509178, -0.02064739540219307, 0.0059173572808504105, 0.003586254082620144, 0.029922986403107643, -0.06635431200265884, -0.03687362000346184, -0.004177025984972715, 0.03353286162018776, 0.022394681349396706, 0.00636987155303359, 0.05848480388522148, 0.03705022111535072, -0.012712130323052406, -0.03326192498207092, 0.046774160116910934, -0.04071058705449104, -0.037260524928569794, -0.014058925211429596, 0.024141613394021988, -0.017421264201402664, -0.03366893529891968, -0.04077231138944626, 0.027775470167398453, -0.009317020885646343, 0.030938802286982536, -0.02394699491560459, -0.02679518796503544, -0.0002408978034509346, -0.013221746310591698, -0.043451789766550064, 0.02867419645190239, -0.029086176306009293, -0.0022276907693594694, -0.017274053767323494, 0.007237483747303486, -0.002508515492081642, -0.017948657274246216, 0.0212500412017107, 0.017474038526415825, -0.028621764853596687, -0.018087312579154968, 0.03804994001984596, 0.0052618966437876225, -0.02400088496506214, 0.019322887063026428, -0.06931352615356445, 0.038107097148895264, -0.021362967789173126, -0.01685781590640545, -0.005217893980443478, 0.034009501338005066, 0.0010454942239448428, -0.02497544325888157, -0.014521351084113121, -0.05947352200746536, -0.01591530814766884, -0.005452332552522421, -0.024924948811531067, -0.014455701224505901, -0.0047556632198393345, -0.021981878206133842, -0.02321092039346695, -0.010453285649418831, 0.04317741468548775, 0.0391678549349308, 0.010349312797188759, -0.05882665887475014, -0.032321445643901825, -0.0034701447002589703, 0.009522468782961369, 0.0028857728466391563, 0.006013878155499697, 0.009094570763409138, 0.05411384627223015, -0.0019016960868611932, -0.020414337515830994, 0.045936137437820435, 0.043909329921007156, -0.021131066605448723, 0.024153737351298332, 0.0023341209162026644, -0.017953095957636833, 0.021924618631601334, -0.0019303429871797562, 0.0008519060793332756, 0.04419387876987457, -0.0420483835041523, -0.028250768780708313, 0.026136504486203194, -0.0049308896996080875, -0.007230321876704693, -0.05034952983260155, 0.04131752997636795, -0.012819033116102219, 0.01897735893726349, -0.003750815521925688, 0.007425210904330015, 0.030756846070289612, 0.019401634112000465, 0.058287136256694794, -0.03188367560505867, -0.000524165341630578, 0.03583252429962158, -0.0047426363453269005, 0.06925877183675766, 0.010390819050371647, 0.014049869030714035, -0.003018694929778576, -0.028909387066960335, 0.040374163538217545, -0.04470408335328102, -0.0143737168982625, 0.020049480721354485, -0.02247924916446209, 0.00015997400623746216, -0.002409515203908086, 0.0033543738536536694, 0.04267655313014984, -0.011305850930511951, 0.03015986643731594, -0.004180149175226688, -0.03786616399884224, 0.060146432369947433, 0.028823304921388626, 0.005821999628096819, 0.07945169508457184, -0.021123122423887253, 0.054281048476696014, 0.030362041667103767, -0.019480464980006218, -0.036090441048145294, 0.01984461396932602, -0.028948074206709862, 0.00642413180321455, -0.030205735936760902, 0.044990722090005875, 0.0010227361926808953, 0.009381950832903385, -0.02509358897805214, 0.002891253214329481, 0.011425493285059929, 0.04188106954097748, -0.04715323448181152, 0.011899897828698158, -0.014903204515576363, 0.02327026054263115, 0.016811322420835495, 0.044770222157239914, -0.026210270822048187, -0.03830530121922493, 0.002419637516140938, -0.024394936859607697, 0.02054315060377121, -0.009437847882509232, -0.010162446647882462, 0.010591587983071804, 0.03400599583983421, 0.07202298939228058, 0.04471063241362572, 0.014770561829209328, 0.05079417675733566, 0.050926875323057175, -0.04021552950143814, 0.00834160391241312, -0.0293169803917408, 0.04700930044054985, 0.014837054535746574, 0.010294127278029919, 0.02166042849421501, -0.042891401797533035, -0.036936916410923004, -0.02619725652039051, -0.01713039167225361, -0.012635521590709686, -0.03832169249653816, 0.01992717757821083, 0.017135463654994965, -0.004729312378913164, -0.026147129014134407, -0.004913578741252422, -0.02181459404528141, -0.04213942959904671, -0.002692642854526639, 0.054567206650972366, -0.022555004805326462, 0.016955509781837463, 0.010525038465857506, 0.0076310341246426105, 0.02750476822257042, 0.06579937785863876, -0.055369783192873, -0.0012387015158310533, 0.054701920598745346, 0.015988465398550034, 0.0028705024160444736, -0.028941897675395012, -0.013296796940267086, -0.01157828327268362, -0.014252152293920517, 0.040520764887332916, -0.002643359825015068, 0.00547321792691946, 0.01749444007873535, 0.010734443552792072, 0.018212513998150826, 0.03661177679896355, -0.01167735829949379, -0.014843538403511047, 0.02597508393228054, 0.04025197774171829, -0.03557351231575012, -0.012176252901554108, -0.014984565787017345, 0.05172186717391014, 0.07034315168857574, 0.07032915949821472, 0.04699384793639183, 0.01041383109986782, 0.044622134417295456, 0.030616316944360733, 0.01234838180243969, 0.017837414517998695, -0.008508187718689442, -0.0035806617233902216, 0.028494814410805702, 0.028279898688197136, -0.016688130795955658, 0.03749721869826317, -0.056409839540719986, -0.02064635418355465, -0.02685549482703209, 0.05067385733127594, -0.023119280114769936, 0.04942325875163078, 0.0064595723524689674, 0.07850892096757889, -0.014822375029325485, 0.008187081664800644, 0.05664391815662384, 0.029842669144272804, -0.04378042742609978, 0.00854759756475687, -0.031022431328892708, 0.0014869174920022488, -0.03444632515311241, -0.02494472824037075, 0.042430587112903595, 0.04359085485339165, -0.014439224265515804, 0.02880924381315708, -0.022398194298148155, -0.048970989882946014, -0.03195720538496971, -0.05752130225300789, -0.016300922259688377, -0.03882983699440956, -0.044309623539447784, -0.005247969646006823, 0.07987111806869507, -0.03203289583325386, -0.006907036527991295, -0.0331125482916832, -0.022832684218883514, -0.02719285897910595, -0.005255460273474455, 0.03546803444623947, 0.019426554441452026, 0.05857393890619278, -0.044893842190504074, 0.04687093570828438, 0.016335556283593178, 0.03396598622202873, -0.03450557962059975, -0.0036139527801424265, -0.01066217664629221, 0.0033491814974695444, 0.03392033651471138, -0.02735595777630806, -0.010621896013617516, -0.021645981818437576, -0.04857124760746956, -0.03930102288722992, 0.02687440812587738, 0.02831858955323696, -0.02141592465341091, -0.007723265327513218, -0.05294952914118767, 0.04382294788956642, 0.0427093580365181, -0.02725077047944069, 0.03636084124445915, 0.04080590978264809, -0.05213611572980881, 0.047432299703359604, 0.010948967188596725, 0.013635138981044292, -0.07500246912240982, 0.04523506015539169, 0.041816484183073044, 0.021575016900897026, -0.03514609858393669, -0.027996642515063286, -0.04183026775717735, 0.015442006289958954, 0.024750033393502235, -0.018561406061053276, -0.017785347998142242, 0.058157823979854584, 0.01459827832877636, -0.04421379789710045, 0.02574450895190239, -0.03266369178891182, -0.013480723835527897, -0.036633361130952835, -0.03244495764374733, 0.005950328428298235, 0.04210829734802246, 0.011872787028551102, 0.02201484516263008, -0.021747440099716187, -0.018936527892947197, 0.011026756837964058, 0.05518527701497078, -0.06977257877588272, 0.02761693485081196, 0.035799361765384674, -0.014129186049103737, 0.009949443861842155, 0.030688699334859848, -0.005429575685411692, -0.040770117193460464, 0.01729643903672695, -0.036666400730609894, -0.024336926639080048, 0.01678108423948288, -0.037546057254076004, 0.0013418468879535794, 0.03103652596473694, -0.011950508691370487, 0.015073451213538647, -0.008551687002182007, 0.017244499176740646, 0.009811930358409882, 0.05392168089747429, 0.0035927537828683853, -0.017187314108014107, -0.03741326555609703, -0.06052153930068016, 0.006896088365465403, 0.057554394006729126, 0.0715826228260994, -0.07081668078899384, 0.05452050641179085, 0.012845458462834358, -0.022522613406181335, 0.02807006798684597, -0.05076264590024948, 0.006762748584151268, 0.05513162165880203, -0.017461715266108513, 0.019727716222405434, -0.030615705996751785, 0.005558560136705637, 0.00957364123314619, 0.011031621135771275, 0.03882714733481407, 0.004382685292512178, 0.03240867704153061, -0.011107729747891426, -0.03471172973513603, -0.0001603465643711388, -0.00508302915841341, -0.0021480037830770016, -0.028794514015316963, 0.0073652686551213264, -0.005770058371126652, -0.026660503819584846, -0.005776696372777224, 0.050609290599823, 0.0033032959327101707, 0.019649572670459747, 0.00042581051820889115, 0.029649486765265465, 0.0047538308426737785, 0.04051315784454346, 0.03066856600344181, -0.010906306095421314, 0.033148519694805145, -0.04211598262190819, 0.02019474096596241, 0.03260920196771622, -0.06354136765003204, -0.021341700106859207, -0.03168860077857971, -0.039325516670942307, 0.023449700325727463, 0.04646532982587814, -0.01004945207387209, -0.005392636172473431, 0.08663792163133621, -0.04784202203154564, 0.05374756455421448, -0.037922076880931854, -0.05400683730840683, -0.016291534528136253, 0.044305797666311264, 0.0030651444103568792, -0.06650549173355103, 0.004109921399503946, -0.013843336142599583, 0.05938762426376343, 0.025853123515844345, 0.0016125746769830585, -0.056826815009117126, -0.004021743778139353, -0.04873081296682358, -0.022440677508711815, 0.028848588466644287, 0.03592009097337723, 0.020773494616150856, 0.003294562455266714, -0.003290260210633278, 0.025870971381664276, 0.014355684630572796, -0.013297408819198608, -0.016040749847888947, -0.014048942364752293, -0.0012205897364765406, 0.02751746028661728, 0.02940996363759041, -0.022171029821038246, -0.03144841268658638, 0.02546282485127449, -0.04587874189019203, 0.026281680911779404, 0.04955942928791046, -0.05810727924108505, -0.0066810534335672855, 0.009160565212368965, 0.009184743277728558, -0.001365369651466608, -0.03258981183171272, 0.028658797964453697, 0.003925195895135403, 0.026417922228574753, -0.03741629049181938, -0.0036871160846203566, 0.06418980658054352, 0.0010978052159771323, 0.023344671353697777, 0.010622385889291763, 0.02278854325413704, -0.021650396287441254, 0.03123565763235092, 0.0036192978732287884, -0.05726262927055359, 0.028474410995841026, -0.016148319467902184, 0.004659734666347504, -0.019529225304722786, -0.03221198916435242, 0.008542980067431927, -0.01661696843802929, 0.04516893997788429, -0.0028570748399943113, -0.012381591834127903, -0.0192676093429327, -0.055175673216581345, -0.013289196416735649, 0.011761142872273922, -0.00691639631986618, 0.030104899778962135, -0.011754706501960754, -0.0021459627896547318, 0.0024676925968378782, -0.025519559159874916, -0.012649783864617348, -0.008292806334793568, -0.012311290949583054, 0.035007067024707794, 0.009260250255465508, 0.0034941984340548515, 0.012975087389349937, 0.015543070621788502, -0.03709188848733902, 0.02690209448337555, -0.03442799299955368, -0.05328233540058136, -0.06040034070611, 0.019048137590289116, -0.05641547963023186, -0.007053140550851822, -0.04639082029461861, 0.01736297272145748, -0.008913667872548103, 0.037297625094652176, 0.037499938160181046, -0.00024827595916576684, 0.03209632262587547, 0.014431914314627647, -0.03404214233160019, 0.03320165351033211, 0.05635548755526543, -0.03927655518054962, -0.04667089506983757, 0.036214180290699005, -0.002928576897829771, 0.044227294623851776, -0.033637210726737976, 0.0030983840115368366, -0.016884205862879753, -0.057361528277397156, 0.019265780225396156, -0.0029348768293857574, -0.0031754281371831894, -0.07317321002483368, -0.04002197086811066, -0.016720177605748177, 0.025561561807990074, 0.003267864231020212, 0.0012284042313694954, 0.011740467511117458, -0.03667903691530228, 0.010002627037465572, -0.034104958176612854, -0.0021101501770317554, -0.03686477243900299, -0.01145869679749012, 0.0030630831606686115, 0.05660482868552208, 0.02598518133163452, 0.02612944506108761, 0.020937085151672363, 0.014380020089447498, 0.03867446631193161, -0.029875775799155235, -0.051120903342962265, -0.038027022033929825, -0.02147257886826992, -0.018888497725129128, 0.0007894112495705485, -0.010974247939884663, -0.02568102814257145, 0.05531342700123787, -0.03622228279709816, -0.00911162793636322, -0.020535795018076897, -0.0034664927516132593, -0.011524802073836327, -0.04121466726064682, 0.0648614764213562, -0.009464805014431477, 0.014043550938367844, -0.0335778072476387, 0.03416592255234718, 0.054348863661289215, 0.017359839752316475, -0.01854173094034195, -0.0192680973559618, -0.02804633229970932, -0.05239051207900047, 0.04769189655780792, -0.04528725519776344, -0.01734548807144165, -0.05050040781497955, -0.012826032936573029, 0.0391572006046772, 0.008219681680202484, 0.08100513368844986, 0.06064169108867645, -0.010800478979945183, -0.013660699129104614, -0.023638026788830757, 0.028383810073137283, 0.03724890574812889, 0.01547448430210352, -0.03641897439956665, -0.011849632486701012, -0.03552806004881859, -0.011353181675076485, -0.054760973900556564, -0.03104296512901783, -0.016569387167692184, -0.03548969328403473, 0.0375187061727047, 0.004961629398167133, 0.051577966660261154, -0.0282665453851223, -0.046190135180950165, -0.056974947452545166, 0.02604568935930729, 0.02312288247048855, 0.01769406720995903, 0.059858836233615875, -0.007903354242444038, -0.03903161734342575, 0.016766952350735664, 0.003161562606692314, 0.006482468917965889, -0.0596640408039093, 0.0583646222949028, -0.0016717617399990559, -0.03277792036533356, 0.05251128599047661, 0.06207466498017311, -0.03571575507521629, -0.021511491388082504, -0.0016431224066764116, -0.010541089810431004, 0.0012868235353380442, -0.006285795941948891, 0.01325155608355999, 0.0079345079138875, -0.009089000523090363, -0.00458332197740674, 0.014110516756772995, 0.009039239026606083, 0.027974717319011688, 0.0019059975165873766, 0.021956687793135643, -0.043438754975795746, -0.02098199352622032, 0.019797135144472122, -0.0002825677511282265, -0.02886786125600338, -0.02827695570886135, -0.006597147323191166, 0.0019889594987034798, -0.012223269790410995, 0.04203611984848976, -0.025352776050567627, -0.0006615510210394859, 0.0006603155634365976, -0.0069702062755823135, 0.025722792372107506, 0.009951743297278881, -0.028124570846557617, -0.006678521633148193, -0.033339496701955795, -0.029157333076000214, -0.04268506541848183, 0.009410605765879154, 0.009117621928453445, 0.037867892533540726, -0.039725061506032944, 0.005201107822358608, 0.040752097964286804, 0.018899284303188324, 0.010074551217257977, -0.03894488513469696, -0.024571912363171577, -0.0282807108014822, -0.043324314057826996, -0.021617332473397255, -0.007397489156574011, 0.011800076812505722, 0.016833815723657608, -0.013626228086650372, -0.04457962140440941, -0.0031842212192714214, 0.02133018523454666, -0.024940019473433495, 0.012495792470872402, -0.04031504690647125, 0.037956602871418, -0.04187630116939545, -0.040052883327007294, -0.03173842281103134, 0.007785663474351168, -0.04494718834757805, 0.03180982172489166, 0.013147386722266674, 0.034204382449388504, 0.009120546281337738, 0.024469753727316856, 0.007777094841003418, 0.0002829027362167835, -0.017938140779733658, -0.04531744122505188, -0.024445954710245132, 0.011610974557697773, -0.04221826791763306, 0.03645995631814003, 0.05424639210104942, -0.02272416464984417, 0.05678527057170868, 0.023348785936832428, -0.03231537714600563, -0.018170783296227455, -0.014512797817587852, -0.01745901256799698, 0.013128953985869884, -0.035503119230270386, -0.04395280033349991, -0.03129306808114052, -0.011393407359719276, 0.024605734273791313, -0.0025428191293030977, -0.004896941129118204, 0.009691718965768814, 0.0028497055172920227, -0.01154716033488512, 0.036988429725170135, 0.009144998155534267, 0.035346172749996185, 0.0011056591756641865, 0.05986301228404045, 0.039824556559324265, 0.010742454789578915, 0.013382473960518837, 0.006457503419369459, 0.010805686004459858, -0.039468538016080856, 0.044568710029125214, -0.009892009198665619, 0.011639400385320187, 0.03811041638255119, -0.0182636845856905, -0.03748368099331856, -0.06321407109498978, -0.030824381858110428, 0.02159683220088482, 0.017063749954104424, -0.010681013576686382, 0.020996510982513428, 0.0364689864218235, -0.04516860097646713, -0.04320183023810387, 0.015035424381494522, -0.057424113154411316, 0.01026136800646782, 0.003577979514375329, -0.019439661875367165, -0.03514203429222107, 0.004923831205815077, -0.04029252380132675, -0.011055476032197475, 0.013633215799927711, 0.000561118358746171, -0.029649054631590843, 0.027678044512867928, 0.018348170444369316, 0.03586811572313309, -0.009311863221228123, -0.006742769852280617, -0.0011492336634546518, 0.061089884489774704, -0.040063824504613876, -0.02641097456216812, -0.0030635837465524673, 0.019619379192590714, 0.02863508090376854, -0.009191221557557583, -0.009025266394019127, 0.019227152690291405, -0.0032082980033010244, -0.002192472340539098, -0.026535004377365112, 0.012169462628662586, -0.01681726612150669, -0.00004337925201980397, -0.007612444926053286, -0.004239456728100777, -0.015709321945905685, 0.03452466055750847, 0.005504031199961901, -0.03931112214922905, -0.03363380581140518, 0.051533810794353485, 0.02468940243124962, -0.0440075658261776, 0.043346941471099854, 0.012155570089817047, 0.008893033489584923, -0.030092522501945496, 0.01638442650437355, 0.0032762361224740744, -0.008346856571733952, 0.02972794510424137, 0.04051951318979263, -0.012093383818864822, 0.014763383194804192, 0.04063840210437775, -0.00008314701699418947, 0.0007275855168700218, 0.05174189433455467, 0.0042176865972578526, -0.0526367612183094, -0.002202277071774006, -0.046211935579776764, 0.007284433580935001, -0.02327355556190014, -0.018016181886196136, 0.0018306372221559286, -0.039463795721530914, 0.007195849437266588, 0.0005614508991129696, -0.020305274054408073, 0.04439203441143036, -0.02904760092496872, 0.03844832256436348, -0.0276351198554039, -0.021484997123479843, -0.014356502331793308, 0.0381079837679863, -0.010391395539045334, 0.034347742795944214, 0.014989606104791164, 0.025880474597215652, -0.023814290761947632, 0.05933760106563568, 0.030984871089458466, 0.037628211081027985, -0.031745824962854385, 0.013376222923398018, -0.0010019803885370493, -0.01594778150320053, -0.018063971772789955, 0.008775697089731693, -0.030853504315018654, 0.024416029453277588, -0.024165833368897438, -0.010595289058983326, 0.039071399718523026, -0.0511447936296463, 0.0041029853746294975, -0.020603660494089127, 0.02864794433116913, -0.025180310010910034, -0.00309244217351079, 0.052539706230163574, -0.02770053781569004, -0.0031829155050218105, 0.07212183624505997, 0.013694079592823982, 0.050981562584638596, -0.013224545866250992, 0.031897179782390594, 0.010479346849024296, 0.04896824061870575, 0.05731327459216118, -0.05801229178905487, -0.0012547759106382728, 0.015745164826512337, 0.0042464714497327805, -0.04340735450387001, -0.026104390621185303, -0.022961972281336784, -0.014220082201063633, -0.001470451126806438, -0.002871864940971136, -0.0073718540370464325, 0.012835344299674034, -0.00040413616807200015, -0.03300429880619049, -0.01561087928712368, 0.021326998248696327, -0.029530517756938934, -0.001873535686172545, 0.03120441734790802, 0.04708411172032356, -0.015615859068930149, -0.03620606288313866, -0.05513453111052513, -0.028278043493628502, 0.011247496120631695, -0.04747321084141731, 0.008004915900528431, -0.025799022987484932, -0.02414506860077381, -0.02794278971850872, -0.07118802517652512, -0.012915362603962421, -0.002393672475591302, -0.023588329553604126, -0.06422063708305359, 0.05263426899909973, 0.05084129050374031, 0.012959453277289867, 0.016387661918997765, -0.0243548471480608, -0.036588914692401886, 0.029629191383719444, 0.06204641982913017, 0.009098470211029053, 0.013303346000611782, 0.029853027313947678, -0.04201137647032738, 0.028303394094109535, -0.0458715558052063, 0.03151511028409004, -0.03128772974014282, -0.020385002717375755, -0.04188496619462967, 0.04500969126820564, -0.0190164502710104, -0.07829620689153671, 0.022720178589224815, 0.005353385116904974, 0.006411257665604353, -0.01664506271481514, -0.07290016114711761, -0.004594532307237387, -0.012023287825286388, -0.009157015942037106, -0.05743060261011124, 0.005435796454548836, 0.01404487993568182, 0.0009391058119945228, -0.02214709296822548, -0.052676159888505936, 0.14692364633083344, 0.04065121337771416, 0.04102699086070061, -0.016453390941023827, 0.02020576409995556, 0.029942601919174194, 0.018507182598114014, -0.016703173518180847, 0.01667661778628826, -0.036601435393095016, 0.032032229006290436, -0.00988053996115923, 0.051327500492334366, 0.004756869748234749, -0.02205604687333107, 0.03206397220492363, -0.06456419080495834, -0.0007421076879836619, 0.022102192044258118, -0.04933170974254608, -0.0373874269425869, -0.00434268219396472, -0.00427611218765378, 0.006250458303838968, -0.0069354805164039135, 0.05256255343556404, -0.020619820803403854, -0.025067955255508423, 0.011108659207820892, -0.018397999927401543, 0.02341889776289463, -0.011721359565854073, 0.03784560412168503, -0.005116742569953203, -0.04499688372015953, 0.05205298215150833, -0.010693049989640713, -0.028404323384165764, 0.0031315733212977648, 0.008507704362273216, -0.00266662472859025, -0.011095439083874226, 0.02980426512658596, -0.06409651041030884, 0.003629978746175766, 0.036749184131622314, -0.039754174649715424, 0.03229790925979614, 0.04595301300287247, -0.01980520412325859, 0.03274677321314812, -0.03464672714471817, 0.013677279464900494, 0.0075909835286438465, -0.030374595895409584, 0.00770448986440897, 0.012119605205953121, -0.0379960872232914, 0.008288763463497162, 0.032069601118564606, 0.03210529312491417, -0.009315144270658493, -0.02081132121384144, -0.016825269907712936, -0.027704332023859024, 0.050288502126932144, 0.02798842452466488, -0.00901191309094429, -0.02652161195874214, -0.020806290209293365, -0.01857892982661724, -0.02020329050719738, 0.008554407395422459, -0.037834472954273224, 0.022269969806075096, 0.023363865911960602, 0.012448511086404324, 0.03948443382978439, 0.012226018123328686, -0.023166537284851074, -0.024031637236475945, -0.035675548017024994, 0.0019029362592846155, -0.008140613324940205, 0.012330129742622375, 0.034217171370983124, -0.0028055107686668634, -0.05250159278512001, -0.011952703818678856, 0.07881412655115128, 0.0347588025033474, 0.022621789947152138, -0.04562070965766907, -0.012721438892185688, -0.030890580266714096 ]
Tsokolate FAQ Pure Blend Lola's Blend We acknowledge the traditional custodians of the land on which we work, create and live. We are grateful for and hold sacred the wisdom of our ancestors from all regions of this beautiful earth. We pay our respects to Elders past, present & future and recognise their continuing connection to the lands, the waters, the cosmos and the sacred ways. Sol Alkhemi is a not for profit, community service, private association. All profits are used to fund community projects. Instagram Hive Heart Play-circle Telegram Envelope All Rights Reserved © 2022 Sol Alkhemi Made with love by Cosmic Creative Studio Sol Alkhemi is a not for profit, private association We are a community dedicated to sharing sacred knowledge and ancient wisdom with a focus on how to apply it to our modern context. Our guiding goal is to empower one another to realise our true potential, live in alignment with natural law and uphold our freedom. If you align with our mission and want to be a part of our community, you can become a member and be the first to have access to our unique offerings and educational resources. After you sign up to join, you will receive an exclusive member's welcome pack including our guiding values and mission as well as exclusive offers. I want to become a member of Sol Alkhemi and receive the member's welcome pack! Yes please.
[ -0.00916809868067503, 0.03118540160357952, -0.03317977488040924, -0.019223827868700027, -0.0205864068120718, -0.01697099767625332, 0.00880419835448265, 0.046470679342746735, 0.003803104627877474, -0.0028422698378562927, 0.03632427379488945, 0.036809999495744705, 0.009046670980751514, -0.018624627962708473, -0.03539915010333061, 0.019997209310531616, -0.012553984299302101, -0.04976946488022804, -0.03669800981879234, 0.000566795701161027, 0.009725071489810944, -0.005134704522788525, -0.08816473186016083, -0.046656928956508636, -0.017384130507707596, 0.03110467828810215, 0.024525323882699013, -0.015188398770987988, 0.06500273942947388, 0.04694599658250809, -0.03271104022860527, -0.005282269325107336, 0.043387655168771744, -0.08140762150287628, -0.026964295655488968, -0.005587960127741098, 0.031243689358234406, -0.008530082181096077, -0.032868072390556335, -0.06482528895139694, 0.0072957295924425125, 0.013628557324409485, 0.04462936893105507, -0.044053710997104645, -0.05545559898018837, 0.033269599080085754, -0.011718165129423141, -0.04309301823377609, -0.00045958327245898545, -0.037390198558568954, 0.02512703463435173, 0.01397272665053606, 0.01845685951411724, -0.003357724752277136, -0.012492530047893524, 0.019210482016205788, 0.024421563372015953, -0.0015729996375739574, -0.015381505712866783, 0.04473089426755905, 0.0018407581374049187, 0.030686916783452034, 0.02175314910709858, -0.04721647500991821, 0.006806449964642525, 0.033008020371198654, -0.010696571320295334, 0.0019269330659881234, 0.01591160148382187, -0.044270072132349014, 0.0031139403581619263, 0.014072153717279434, -0.023934422060847282, -0.0006821465212851763, 0.000008670556780998595, 0.0021545779891312122, -0.007939687930047512, -0.006749143823981285, 0.0061422549188137054, -0.021114319562911987, 0.0234389565885067, 0.07503482699394226, 0.03530913218855858, 0.01622127741575241, -0.06485491245985031, -0.03273704648017883, 0.0014499889221042395, 0.00597998034209013, 0.031613342463970184, 0.013154199346899986, 0.01387765258550644, 0.07398611307144165, -0.006370507180690765, -0.015871362760663033, 0.04306561127305031, 0.053502101451158524, -0.035107746720314026, 0.04436720162630081, -0.005840255878865719, 0.017584118992090225, 0.05027792230248451, 0.042159467935562134, 0.01354504656046629, 0.040896255522966385, -0.023671384900808334, -0.01931769587099552, -0.015700332820415497, -0.009392659179866314, 0.043300047516822815, -0.022724227979779243, -0.0032394309528172016, -0.04148240387439728, -0.0005663849879056215, -0.009084132499992847, 0.006009520031511784, 0.0506255105137825, -0.020003318786621094, 0.032380666583776474, -0.04896578937768936, -0.01584586314857006, 0.0004843598580919206, 0.03053482249379158, 0.029552118852734566, -0.002732725813984871, 0.020676663145422935, -0.06923002004623413, -0.004715838935226202, 0.02272878587245941, -0.02721692994236946, -0.011742684058845043, -0.0077766780741512775, -0.05832947418093681, -0.0004059754719492048, 0.027567336335778236, -0.009015817195177078, 0.021201353520154953, 0.012165751308202744, 0.024472160264849663, 0.005700511857867241, -0.051357634365558624, 0.05636586248874664, 0.03230707347393036, 0.004179732408374548, 0.06905364990234375, 0.012304766103625298, 0.03330725431442261, 0.019433442503213882, -0.006143241189420223, -0.052768491208553314, 0.01952754333615303, -0.007397084962576628, 0.009722468443214893, -0.0022100904025137424, 0.05635171756148338, 0.002731101121753454, -0.008434265851974487, -0.0007707132608629763, 0.02022310346364975, 0.025402817875146866, 0.02707175351679325, -0.03605109825730324, 0.006640187930315733, 0.01793869584798813, 0.05157643184065819, -0.0014068925520405173, 0.030518516898155212, -0.016308333724737167, -0.03705280274152756, -0.0030011071357876062, -0.04213972017168999, 0.02871073968708515, -0.0037942794151604176, -0.015127157792448997, 0.008251187391579151, 0.013698638416826725, 0.0421614870429039, 0.023324498906731606, 0.014702118001878262, 0.028774216771125793, 0.05096462741494179, -0.020794186741113663, 0.006658710073679686, -0.011984718963503838, 0.08968544006347656, 0.02782524935901165, -0.039436664432287216, -0.010209619998931885, -0.01646365411579609, -0.05804174020886421, -0.03675210103392601, -0.0052651469595730305, 0.027639953419566154, -0.023521387949585915, 0.03624600172042847, -0.004087977111339569, -0.0011467688018456101, -0.010810952633619308, -0.014695348218083382, -0.01576981134712696, -0.06160994991660118, -0.001020255615003407, 0.06868632137775421, -0.03923466056585312, 0.03123527206480503, 0.022160619497299194, 0.006097786594182253, 0.0008564742165617645, 0.0457308255136013, -0.042421113699674606, 0.009802965447306633, 0.03887612000107765, -0.011244035325944424, 0.0013435763539746404, -0.02481536567211151, -0.000585115747526288, -0.043445833027362823, -0.02116929553449154, 0.048648517578840256, -0.042359352111816406, 0.009718520566821098, 0.015183331444859505, 0.009439477697014809, 0.03598726913332939, 0.07318159937858582, -0.02795332670211792, -0.016792139038443565, 0.00924994982779026, 0.04219464585185051, -0.02246042527258396, -0.020992234349250793, -0.013346035964787006, 0.03324626013636589, 0.04287613928318024, 0.05774233490228653, 0.04802670702338219, 0.047966908663511276, 0.03338366746902466, 0.06876400113105774, -0.017877772450447083, 0.012785236351191998, -0.01956808567047119, 0.01823854073882103, 0.020267728716135025, 0.0386410616338253, -0.013625513762235641, 0.03515661880373955, 0.0076358807273209095, 0.005233673844486475, -0.026507852599024773, 0.05248896777629852, -0.026457179337739944, 0.02813536487519741, 0.02658478170633316, 0.06692872941493988, -0.058001644909381866, 0.0006397603428922594, 0.04789777845144272, 0.04390163719654083, -0.016664262861013412, -0.02745932899415493, -0.0075980378314852715, 0.029082784429192543, -0.012883703224360943, 0.011258025653660297, 0.00558688398450613, -0.001699106302112341, -0.003764719469472766, 0.011823255568742752, 0.012693267315626144, -0.0416988730430603, -0.056430377066135406, -0.051094308495521545, -0.031943876296281815, -0.04105394706130028, -0.04171261563897133, 0.01280550193041563, 0.04486973211169243, -0.05294619873166084, 0.023032760247588158, -0.012847984209656715, -0.0029677171260118484, -0.041333526372909546, -0.021445006132125854, -0.003213578835129738, 0.05854129046201706, 0.05899107828736305, -0.03459141030907631, 0.02267463132739067, -0.0036214941646903753, 0.04902644455432892, -0.04078236594796181, -0.009896430186927319, -0.02862447313964367, -0.041340719908475876, 0.05677272379398346, 0.028775187209248543, -0.00004848991738981567, 0.0015020329738035798, -0.029010089114308357, -0.0557822547852993, 0.029968492686748505, 0.014634097926318645, -0.031757161021232605, 0.016026735305786133, -0.04088841378688812, 0.029104430228471756, 0.04166121035814285, -0.011334307491779327, 0.051680292934179306, 0.026975195854902267, -0.012911762110888958, 0.0450068898499012, 0.004978868644684553, 0.023303641006350517, -0.05947247892618179, 0.03377078101038933, 0.05958620458841324, -0.008630693890154362, -0.02294098772108555, -0.0192253515124321, -0.04423639178276062, 0.026603939011693, 0.012808134779334068, -0.002730414504185319, -0.053294140845537186, 0.04735511913895607, 0.04121953994035721, -0.07630433142185211, 0.026890940964221954, -0.014073033817112446, -0.040009383112192154, -0.03524715080857277, -0.03724151849746704, 0.006671430077403784, 0.008786091580986977, -0.0016202249098569155, -0.008299150504171848, -0.016526473686099052, -0.001027377205900848, 0.019327295944094658, 0.06387048214673996, -0.01621202379465103, 0.018162595108151436, 0.02034679614007473, 0.012342392466962337, 0.0032888103742152452, 0.02665209211409092, -0.010038492269814014, -0.029824839904904366, 0.0046517797745764256, -0.0005998258711770177, 0.0034145130775868893, 0.04739496111869812, 0.028027456253767014, 0.012643808498978615, 0.051092710345983505, -0.042437098920345306, -0.03328530490398407, 0.01687205769121647, 0.014696975238621235, 0.008883259259164333, -0.003354511456564069, 0.02406862936913967, -0.01637382246553898, -0.017674703150987625, -0.04813479632139206, 0.013826639391481876, 0.021187206730246544, 0.07843100279569626, -0.05838124081492424, 0.036310721188783646, 0.011935179121792316, -0.04426271840929985, 0.022453496232628822, -0.05790741741657257, 0.008759742602705956, 0.03501002490520477, -0.01818832755088806, 0.03150466829538345, -0.024363724514842033, -0.014528218656778336, -0.023850731551647186, 0.024134572595357895, 0.04258228838443756, -0.008871476165950298, 0.027728017419576645, -0.01552262157201767, -0.03744637966156006, -0.004119010176509619, -0.04322219267487526, -0.005786254070699215, -0.019371826201677322, 0.0071593960747122765, -0.010395746678113937, -0.08023300021886826, -0.044582780450582504, 0.03774214908480644, 0.017478302121162415, 0.041787274181842804, -0.03991381451487541, 0.02777344174683094, 0.03415127098560333, 0.006548556499183178, 0.0274425707757473, -0.012757153250277042, 0.010322301648557186, -0.0612805038690567, 0.04072054475545883, 0.03525029495358467, -0.009791895747184753, -0.03629550710320473, -0.03249199688434601, -0.038654834032058716, -0.008616432547569275, 0.025846045464277267, -0.01050146110355854, -0.020096879452466965, 0.03098161891102791, 0.0030374457128345966, 0.03696203604340553, -0.035295356065034866, -0.025183096528053284, -0.031520020216703415, 0.03848002851009369, 0.02657037228345871, -0.043065786361694336, -0.004420200828462839, -0.036365583539009094, 0.04992854595184326, 0.04361935332417488, -0.024321407079696655, -0.02375403605401516, -0.031145362183451653, -0.02021222934126854, -0.02765526995062828, -0.009066133759915829, 0.05842685326933861, 0.0029227568302303553, 0.0004264202725607902, -0.023253679275512695, 0.03902597725391388, 0.025172635912895203, 0.0001328204380115494, -0.021665265783667564, -0.004858084488660097, 0.01114321406930685, -0.011687436141073704, 0.042370229959487915, -0.0212588869035244, -0.0077697038650512695, -0.0019679793622344732, -0.058947499841451645, -0.002954815048724413, -0.0013695682864636183, -0.021115493029356003, -0.009024137631058693, 0.002184404758736491, 0.026697155088186264, 0.035490114241838455, -0.024566389620304108, 0.004952909424901009, -0.000718903262168169, 0.03458358719944954, -0.061768852174282074, -0.016465594992041588, 0.03240111097693443, -0.025540834292769432, -0.0243656188249588, 0.04144783690571785, 0.028063490986824036, -0.023489702492952347, 0.012475441209971905, -0.008879046887159348, -0.054793983697891235, 0.03480541333556175, -0.037502534687519073, 0.013758336193859577, -0.009133746847510338, -0.04364771023392677, -0.012593680992722511, -0.01501473505049944, 0.04892921447753906, 0.02783134952187538, 0.0059646125882864, -0.041752979159355164, -0.055836912244558334, -0.02005089446902275, 0.008425694890320301, -0.02619968168437481, 0.023709218949079514, 0.0058376663364470005, -0.030608952045440674, -0.011517271399497986, 0.010499614290893078, 0.01454878319054842, -0.004299559630453587, -0.024953072890639305, -0.00019769780919887125, 0.024478089064359665, 0.010529001243412495, 0.020301686599850655, -0.005956527777016163, -0.012978318147361279, -0.011599003337323666, -0.008222929202020168, -0.004206277430057526, -0.04883765056729317, -0.006326969247311354, -0.015401484444737434, -0.005731956101953983, -0.025959985330700874, -0.006700062658637762, 0.008836839348077774, -0.0037769400514662266, 0.01113175880163908, 0.02187807485461235, 0.021094171330332756, 0.00696722324937582, -0.053953204303979874, 0.06645920127630234, 0.013555299490690231, -0.05111175402998924, -0.02883725054562092, 0.015371667221188545, 0.01352085079997778, 0.03152543306350708, -0.0014952842611819506, -0.009296182543039322, -0.06023590266704559, -0.09817313402891159, -0.004142725374549627, -0.044285912066698074, -0.030568821355700493, -0.03202443942427635, -0.036951515823602676, -0.008473564870655537, 0.03300559148192406, 0.006859698798507452, -0.019203824922442436, 0.012717897072434425, -0.05279763042926788, 0.0055739786475896835, -0.024434268474578857, -0.030970046296715736, -0.05116092041134834, -0.013369682244956493, -0.003968892153352499, 0.04834072291851044, -0.0047712503001093864, 0.026388997212052345, 0.008925458416342735, 0.009363451972603798, -0.017140543088316917, -0.030990319326519966, -0.04215073212981224, -0.03527745231986046, -0.010506807826459408, 0.025693926960229874, -0.007871833629906178, 0.03369380533695221, -0.04219365864992142, 0.03760915622115135, -0.03772599995136261, 0.0021706477273255587, -0.0312662199139595, -0.006985575892031193, -0.022519394755363464, -0.014871969819068909, 0.058980852365493774, -0.008887028321623802, 0.002390387002378702, -0.01107861753553152, 0.03957413509488106, 0.043433792889118195, -0.0034719337709248066, -0.02806626446545124, -0.036584995687007904, -0.04650741070508957, -0.06243577226996422, 0.006080304272472858, -0.011460347101092339, -0.042961087077856064, -0.04089523106813431, -0.0017466247081756592, 0.0219572763890028, -0.023304563015699387, 0.023425234481692314, 0.05223815143108368, -0.031088996678590775, -0.01647017151117325, -0.03350147232413292, 0.021238261833786964, 0.0193786583840847, -0.03926189988851547, -0.018262449651956558, -0.013312011957168579, -0.027202580124139786, -0.00013453865540213883, -0.026561666280031204, -0.04792110621929169, -0.05826489254832268, -0.008434699848294258, 0.05023270472884178, -0.02820095792412758, 0.03651295602321625, 0.0022206672001630068, -0.04222625494003296, -0.04462131857872009, 0.04737897589802742, 0.012830446474254131, 0.008141460828483105, 0.042607419192790985, 0.010297565720975399, -0.03627939149737358, -0.011421503499150276, -0.0057433778420090675, 0.0322563461959362, -0.02708193100988865, 0.07293394953012466, 0.02596074715256691, -0.03427638113498688, 0.021506812423467636, 0.0488705039024353, -0.06247998774051666, -0.042509760707616806, -0.021569913253188133, 0.013320518657565117, 0.021599968895316124, -0.012102151289582253, 0.008765880018472672, -0.018496811389923096, 0.013713193126022816, 0.012783154845237732, 0.027277791872620583, 0.007657270412892103, 0.04545992985367775, 0.015228061936795712, 0.04973158240318298, -0.06362452358007431, -0.0233134888112545, 0.04637201502919197, 0.0004859371401835233, -0.05082636699080467, -0.016172954812645912, -0.01624498888850212, -0.03260786086320877, -0.013048353604972363, 0.03180267661809921, -0.0005206435453146696, 0.05069417878985405, 0.038153570145368576, -0.0006294567137956619, 0.033104680478572845, 0.005062185227870941, -0.002785744611173868, 0.015311683528125286, -0.04903455451130867, -0.04028473049402237, -0.04408865049481392, 0.042568888515233994, -0.0005852385074831545, 0.022930342704057693, -0.02053624577820301, -0.005022626835852861, 0.021950192749500275, -0.0014553649816662073, 0.007224326487630606, -0.007357822265475988, -0.044883619993925095, -0.040278270840644836, -0.04729348048567772, -0.05381710082292557, -0.05399559065699577, 0.012231993488967419, 0.03868286311626434, -0.011562112718820572, -0.05323990434408188, -0.006290636491030455, 0.006990306079387665, -0.011218513362109661, 0.00357045722194016, -0.04659558832645416, 0.03490797430276871, -0.043155040591955185, -0.05073810741305351, -0.048552922904491425, -0.0007484849193133414, -0.023063497617840767, -0.006616292055696249, -0.018689503893256187, 0.011819195933640003, -0.005044971127063036, 0.058138031512498856, 0.00005099482223158702, 0.014424855820834637, -0.00755391176789999, -0.014860660769045353, 0.007082289084792137, 0.07793217152357101, -0.006882755551487207, 0.036246415227651596, 0.04883113130927086, -0.01656949147582054, 0.013200867921113968, 0.021707316860556602, -0.059999458491802216, -0.01749284751713276, 0.011354505084455013, 0.02409742958843708, 0.001434618723578751, -0.033172015100717545, -0.013988169841468334, 0.023472830653190613, -0.03256126865744591, -0.011686625890433788, -0.020458992570638657, 0.01025401707738638, 0.010355920530855656, 0.014573506079614162, -0.005933233071118593, 0.051306791603565216, 0.009713905863463879, -0.013937434181571007, 0.01776026003062725, 0.031940896064043045, 0.0023253317922353745, -0.008093554526567459, 0.026642734184861183, 0.027434896677732468, 0.024441592395305634, 0.0016651925398036838, 0.031867485493421555, 0.028294822201132774, 0.0020712215919047594, 0.024744706228375435, -0.029907934367656708, -0.013765743933618069, -0.01725906878709793, -0.028246622532606125, -0.006144154351204634, 0.04005090892314911, 0.003007792867720127, -0.032543282955884933, 0.04202616959810257, -0.032556578516960144, -0.04291543737053871, 0.01114721316844225, -0.046494580805301666, -0.04520725831389427, 0.03734356537461281, -0.0025242138653993607, 0.0031818021088838577, -0.009415319189429283, -0.023911209776997566, -0.009798208251595497, -0.02478034421801567, -0.011970563791692257, -0.025324854999780655, 0.005824311636388302, -0.03267381712794304, 0.015121565200388432, 0.006885860580950975, 0.00844560656696558, 0.012683955952525139, 0.04588776454329491, -0.03248123824596405, -0.05914068967103958, -0.0012518330477178097, 0.007384413853287697, 0.02559301257133484, -0.0038126776926219463, 0.017783112823963165, 0.0005777343176305294, -0.025627387687563896, 0.00991805549710989, 0.0062285130843520164, 0.018694516271352768, 0.00832302775233984, 0.00676425127312541, -0.012490569613873959, 0.00826901663094759, -0.01861776039004326, 0.020313870161771774, -0.007236418314278126, -0.02726800926029682, -0.026504430919885635, 0.06558967381715775, 0.037156134843826294, -0.011982085183262825, 0.028488636016845703, 0.008314356207847595, 0.041984058916568756, 0.0194905623793602, 0.01855597458779812, 0.0057137757539749146, 0.026789385825395584, 0.01977105438709259, 0.0663105919957161, -0.030231203883886337, 0.022850994020700455, 0.05870739743113518, 0.02463459223508835, -0.01216807495802641, 0.029308432713150978, 0.03652810677886009, -0.03179172798991203, -0.019235733896493912, -0.03306093066930771, 0.0011156480759382248, 0.022969331592321396, -0.009589319117367268, 0.003800166305154562, -0.004136566072702408, -0.00548438960686326, -0.030577506870031357, -0.019830474629998207, 0.03327706456184387, -0.030147811397910118, 0.026715638116002083, -0.006637956015765667, -0.01490907184779644, -0.006293867714703083, 0.047763872891664505, 0.016559740528464317, 0.02315455675125122, 0.043750375509262085, 0.03722534701228142, -0.035614632070064545, 0.032078132033348083, 0.015753818675875664, 0.021412082016468048, -0.019976641982793808, 0.043718427419662476, 0.028636449947953224, -0.01708197593688965, -0.03911055624485016, -0.008406524546444416, -0.020154211670160294, 0.045998867601156235, -0.06246024742722511, -0.04720694571733475, 0.015474806539714336, -0.03535563871264458, -0.007888032123446465, -0.02792646363377571, 0.0429440438747406, -0.04644777625799179, 0.002619304461404681, 0.021998310461640358, -0.01371349859982729, -0.03025866486132145, 0.0166261475533247, 0.0045316750183701515, 0.029693450778722763, 0.012238823808729649, 0.026848334819078445, -0.016758009791374207, 0.007008565589785576, 0.06110570952296257, -0.015632573515176773, 0.007118603214621544, 0.0015692049637436867, -0.0005360221839509904, -0.03930431604385376, -0.009594601579010487, -0.022544633597135544, 0.015341505408287048, -0.012326202355325222, -0.011288641020655632, -0.0011489862808957696, 0.030692724511027336, 0.004902151878923178, -0.04051387310028076, 0.030860498547554016, 0.043084900826215744, -0.04127753525972366, -0.004776259418576956, -0.004191224928945303, 0.05210862681269646, -0.03418661281466484, -0.004284188151359558, -0.02866867557168007, -0.04435325786471367, -0.0020878647919744253, -0.05595343932509422, 0.04191433638334274, -0.005617152899503708, -0.03359922766685486, -0.03339657932519913, -0.05605804920196533, -0.02102457359433174, 0.005667968187481165, -0.035833053290843964, -0.04058085009455681, 0.05143017694354057, 0.05871126055717468, 0.019569775089621544, -0.017711933702230453, -0.03038770891726017, -0.011036121286451817, 0.01993465982377529, 0.07231812179088593, -0.008270674385130405, 0.02928350120782852, 0.047803159803152084, -0.03410600870847702, 0.022438164800405502, -0.002685189712792635, 0.024897534400224686, -0.010321343317627907, 0.0034081123303622007, -0.040765922516584396, 0.0015384061262011528, -0.02606750838458538, -0.05124719440937042, 0.033414509147405624, 0.015585681423544884, 0.01820334978401661, -0.036594096571207047, -0.043157000094652176, -0.007519890088587999, -0.06208830699324608, -0.010920814238488674, -0.06034305691719055, 0.01770690828561783, 0.033572420477867126, -0.03333848714828491, 0.03528188169002533, -0.0514177642762661, 0.16009853780269623, 0.05495898798108101, 0.03947257250547409, 0.04114803299307823, 0.022578183561563492, 0.07885044068098068, 0.008680101484060287, -0.0006933959666639566, 0.005304170306771994, -0.029069984331727028, 0.04864976555109024, -0.003161574946716428, 0.028971519321203232, 0.011790920980274677, -0.0013149669393897057, 0.061423130333423615, -0.006545557174831629, 0.017593322321772575, 0.013394677080214024, -0.05345868319272995, -0.07470878958702087, 0.04185007885098457, -0.008256188593804836, 0.00565081974491477, 0.005603393539786339, 0.020024282857775688, 0.02144129015505314, -0.06187691166996956, 0.0013291430659592152, -0.012961329892277718, 0.008160296827554703, 0.007944871671497822, 0.03477230668067932, -0.02089066617190838, -0.04994141310453415, 0.05944757163524628, 0.002099491422995925, -0.034781213849782944, 0.025034798309206963, 0.01853024587035179, -0.017138095572590828, 0.013255426660180092, 0.05159904435276985, -0.03948464244604111, 0.0014294906286522746, 0.019855407997965813, -0.01871562749147415, -0.023189200088381767, 0.00939421821385622, -0.01745852641761303, 0.059012219309806824, -0.04664791002869606, 0.020323894917964935, -0.027988340705633163, -0.028208274394273758, 0.013594908639788628, 0.010573784820735455, -0.011643679812550545, -0.021114079281687737, 0.009696691296994686, 0.02578103169798851, 0.02608833648264408, -0.024052606895565987, -0.00035281191230751574, -0.01362548302859068, 0.014380713924765587, 0.03469003736972809, 0.0030777801293879747, -0.011640308424830437, -0.012753845192492008, -0.019264956936240196, -0.0136285200715065, 0.0016360313165932894, -0.035816073417663574, 0.009961828589439392, 0.02299807220697403, -0.030879955738782883, 0.029517419636249542, 0.009182453155517578, -0.030044594779610634, -0.003668889869004488, -0.02370910532772541, -0.01528856810182333, -0.03376622498035431, 0.015763984993100166, 0.003748123999685049, -0.016163479536771774, -0.02587662823498249, -0.03162016347050667, 0.047046370804309845, 0.05824403092265129, 0.005387063138186932, -0.012933294288814068, -0.024095455184578896, -0.007900109514594078 ]
10-year old among three killed as India, Pak troops pound Kashmir LoC Three people including a ten-year old boy were killed as Indian and Pakistani troops exchanged gunfire along the Line of Control in Jammu and Kashmir on Monday, reports said. A 10-year-old boy and a teenage girl were killed while nine other civilians injured as Pakistani troops opened fire and lobbed mortars at dozens of villages and posts along the Line of Control in Poonch district of Jammu and Kashmir on Monday morning., news agency PTI reported. The deceased have been identified as Asrar Ahmad of Mohallha Qasba and Yasmeen Akhtar of Kerma village of Dighwar. Indian troops shelled border villages across the Line of Control (LoC) in Pakistan-administered Kashmir's Haveli district on Monday morning, leaving an elderly man dead and five others ─ including a woman and her son ─ injured, Pakistani media reported. "They [Indian troops] resorted to shelling at about 6am in Nezapir and Digwar sectors, using both small and heavy arms," Chaudhry Kashif Hussain, Haveli's deputy commissioner, was quoted as saying by Dawn. Hussain said shelling had so far left a 70-year-old man identified as Muhammad Deen dead and his 25-year-old son Muhammad Jamil injured in Digwar village. In the same village, Tasneem Bibi, 34, her 12-year-old son Aqib, and Muhammad Javed, 35, were also injured, he added. He said one Wali Mohammad was injured in the village Keirni in Nezapir sector. ( Representative image)
[ -0.022711066529154778, 0.027783432975411415, -0.010805693455040455, 0.00591140054166317, -0.02828526496887207, -0.01565542258322239, -0.004924468696117401, 0.043300118297338486, 0.015190568752586842, 0.00774688646197319, 0.02735239826142788, -0.01504547894001007, 0.0015746616991236806, -0.04245942831039429, -0.02544584311544895, -0.018230263143777847, -0.04897904023528099, -0.01089781615883112, 0.019529877230525017, 0.007468887139111757, -0.021272145211696625, 0.02936757542192936, -0.050967853516340256, -0.002150580519810319, -0.011829594150185585, 0.020395243540406227, 0.018611401319503784, -0.0038044166285544634, 0.04419204220175743, 0.04661402851343155, -0.0332476869225502, -0.037507906556129456, 0.07001064717769623, -0.057425420731306076, -0.0039331745356321335, 0.006128612905740738, 0.05146924406290054, -0.05919325724244118, -0.03132525458931923, -0.047165874391794205, 0.014388928189873695, -0.050790976732969284, 0.03673318400979042, -0.024824708700180054, -0.025453930720686913, -0.023698749020695686, -0.022740334272384644, -0.0033337140921503305, 0.02271839790046215, -0.007470546755939722, -0.0261636134237051, -0.018803687766194344, 0.037186700850725174, -0.020602239295840263, -0.0241136085242033, -0.0037575382739305496, 0.014229292050004005, -0.019038759171962738, 0.01008003018796444, 0.03992138430476189, 0.017180923372507095, -0.004515749402344227, 0.05231589823961258, -0.058985672891139984, -0.0024675584863871336, 0.03365311771631241, 0.023646332323551178, 0.020274197682738304, 0.043633993715047836, -0.04023032262921333, -0.016738247126340866, 0.016564413905143738, -0.05161670595407486, -0.014548670500516891, 0.008352402597665787, 0.008637698367238045, -0.0390789732336998, 0.01111564226448536, -0.02356397733092308, 0.019025633111596107, 0.014710256829857826, 0.0425751693546772, 0.013963596895337105, 0.028473446145653725, -0.060371190309524536, -0.023362083360552788, -0.022738391533493996, 0.024508653208613396, -0.02518358826637268, 0.0016842408804222941, -0.028866717591881752, 0.06558293104171753, -0.010814056731760502, -0.03438830003142357, 0.054844193160533905, 0.03299400582909584, -0.038683146238327026, 0.026114443317055702, -0.005816146265715361, -0.009786887094378471, 0.03966808691620827, 0.022521406412124634, 0.01208881102502346, 0.038981907069683075, -0.04033471643924713, -0.026320338249206543, -0.026531219482421875, -0.00395538005977869, -0.0017661125166341662, -0.018713414669036865, 0.009842334315180779, -0.014421856962144375, -0.009846438653767109, -0.00996534526348114, 0.015290030278265476, 0.035000573843717575, -0.022564547136425972, 0.042442839592695236, -0.03448924422264099, 0.015306368470191956, 0.016414033249020576, 0.02046627178788185, 0.04358482360839844, -0.0014932890189811587, 0.025711528956890106, -0.025820255279541016, -0.010876188986003399, 0.032599058002233505, -0.012562597170472145, -0.033125944435596466, 0.008704697713255882, -0.04353593662381172, 0.017168710008263588, 0.018667705357074738, 0.02141178399324417, 0.005210273899137974, 0.005583769176155329, 0.013436900451779366, -0.012819265015423298, -0.03565892577171326, 0.011126181110739708, 0.025759875774383545, -0.002236311323940754, 0.08562639355659485, 0.004887797869741917, 0.05807456374168396, 0.0012833913788199425, -0.00856170617043972, -0.024850569665431976, 0.004338471684604883, -0.04320839047431946, 0.01598643697798252, -0.02484840713441372, 0.01743502728641033, -0.00036227874807082117, 0.0027555658016353846, 0.003906707279384136, 0.03165658190846443, -0.005876206327229738, 0.039495084434747696, 0.012668527662754059, 0.011990943923592567, 0.011174103245139122, 0.03203519806265831, -0.029539769515395164, 0.03167201578617096, -0.0210743211209774, -0.039258670061826706, -0.010838864371180534, -0.02725999243557453, 0.03994522616267204, 0.024482397362589836, -0.002125432249158621, 0.018407821655273438, 0.02846880629658699, 0.05392981693148613, 0.020255308598279953, 0.012906312942504883, 0.03142239525914192, 0.036638714373111725, -0.00660477252677083, -0.003928652964532375, 0.01241255085915327, 0.05922466516494751, 0.008047757670283318, 0.008913340047001839, 0.007616444490849972, -0.009367933496832848, -0.02453775331377983, -0.03513487055897713, -0.03422399237751961, 0.03367726877331734, -0.04058825224637985, 0.03770166635513306, 0.002458111848682165, -0.004643190652132034, -0.0020380569621920586, -0.053873807191848755, 0.00014714848657604307, -0.050135403871536255, -0.01243420597165823, 0.04986795037984848, -0.02270421013236046, 0.004161122255027294, -0.0077545661479234695, -0.015397581271827221, 0.018555935472249985, 0.077543705701828, -0.04022208973765373, -0.008945932611823082, 0.06170884892344475, 0.028754770755767822, -0.013765065930783749, -0.004903309978544712, 0.0073028309270739555, 0.011461546644568443, -0.04562189057469368, 0.05492502078413963, -0.013194002211093903, -0.024761850014328957, 0.0449327677488327, 0.04753393307328224, 0.006910399999469519, 0.03531543165445328, -0.008443949744105339, -0.01363916415721178, -0.003391028381884098, 0.03025609254837036, -0.03009386919438839, -0.030026987195014954, 0.015097817406058311, 0.018245238810777664, 0.017862632870674133, 0.05797441303730011, 0.05895719677209854, -0.007526241708546877, 0.038725122809410095, 0.016960304230451584, 0.012195413932204247, 0.025870399549603462, 0.012572473846375942, 0.012781219556927681, 0.0077080330811440945, 0.016532480716705322, 0.011326484382152557, 0.05094590410590172, -0.0006673498428426683, -0.02037513628602028, -0.036159757524728775, 0.03885011747479439, 0.00932926032692194, 0.06197509169578552, 0.010378340259194374, 0.058852288872003555, -0.026424827054142952, -0.006895558908581734, 0.024396756663918495, 0.03257071599364281, -0.009867364540696144, -0.027644338086247444, -0.012869276106357574, 0.009461811743676662, 0.003729061922058463, -0.018977629020810127, 0.04597480595111847, 0.046944547444581985, -0.026564564555883408, 0.019601013511419296, -0.0032209858763962984, -0.04688895866274834, -0.026673009619116783, -0.06228329613804817, -0.0005781103973276913, -0.03370475023984909, -0.08090484142303467, -0.00707404175773263, 0.055077895522117615, -0.04531138390302658, 0.00870452355593443, -0.016409674659371376, -0.011925225146114826, -0.024621233344078064, -0.02535146102309227, 0.0460604727268219, 0.036109425127506256, 0.06007895991206169, -0.04139804095029831, 0.029899101704359055, 0.023119281977415085, 0.0208616703748703, -0.021210115402936935, 0.00548452278599143, -0.01757243648171425, -0.013417915441095829, 0.035789500921964645, -0.02133701741695404, 0.023490561172366142, -0.0050531006418168545, -0.035021986812353134, -0.0408577099442482, 0.019438553601503372, 0.017780570313334465, 0.015141857787966728, 0.02795562706887722, -0.038255348801612854, 0.060005031526088715, 0.03313708305358887, -0.017981436103582382, 0.049838416278362274, 0.05313042178750038, -0.017828749492764473, 0.05378738418221474, 0.016307473182678223, 0.03403841704130173, -0.04828932508826256, 0.05148354172706604, 0.03278534114360809, 0.02145230397582054, -0.024925198405981064, -0.002105941064655781, -0.0250396765768528, 0.0018551214598119259, 0.004240349866449833, -0.01144359353929758, -0.0443231426179409, 0.03563937544822693, 0.020098768174648285, -0.04610702767968178, 0.00911953765898943, -0.032033052295446396, -0.021488068625330925, -0.0197738204151392, -0.0133928582072258, 0.03469454497098923, 0.0283832885324955, -0.01654437556862831, 0.00429496867582202, -0.02641674317419529, -0.017313459888100624, 0.0009686251287348568, 0.0603359155356884, -0.02508735843002796, 0.019403962418437004, 0.035579148679971695, -0.004855396691709757, 0.019468968734145164, 0.021537695080041885, -0.0035308522637933493, -0.020102526992559433, 0.00005942484494880773, -0.014689385890960693, 0.02975127100944519, 0.05023174732923508, 0.00320324650965631, -0.004224223084747791, 0.0463298000395298, -0.04909416660666466, -0.0018253212329000235, 0.018528316169977188, 0.009094644337892532, 0.026068322360515594, -0.0016291661886498332, 0.0005798653000965714, -0.02540263906121254, -0.041682031005620956, -0.05485880747437477, 0.042265038937330246, -0.0015782290138304234, 0.03849976137280464, -0.031036032363772392, 0.0576019287109375, -0.025778310373425484, 0.007268509827554226, 0.04387844726443291, -0.05576956272125244, 0.00627734512090683, 0.06665056943893433, 0.005545895546674728, 0.07429293543100357, -0.015516060404479504, 0.03932929411530495, -0.01114937849342823, -0.01060557086020708, 0.023771531879901886, 0.024425897747278214, 0.03143075108528137, -0.021368181332945824, 0.00867471843957901, 0.008664538152515888, -0.020324695855379105, -0.013547835871577263, -0.05058291181921959, -0.0013949947897344828, -0.0342135913670063, -0.05444473400712013, -0.044812336564064026, 0.022432319819927216, 0.020795579999685287, 0.048015572130680084, -0.015818912535905838, 0.04612280800938606, -0.005581817589700222, 0.03182642534375191, 0.03300301730632782, -0.03111862577497959, 0.022675415500998497, -0.027213282883167267, 0.05374539643526077, 0.022921433672308922, -0.03570316731929779, -0.012028123252093792, -0.04384752735495567, -0.022944042459130287, 0.005290165077894926, 0.015848122537136078, -0.033905576914548874, -0.033180758357048035, 0.02418222464621067, -0.009414906613528728, 0.023869551718235016, -0.03250791132450104, -0.06092367693781853, 0.0002928987960331142, 0.024659769609570503, -0.00016369057993870229, -0.06737170368432999, 0.009055674076080322, -0.04585491493344307, 0.05937174707651138, 0.010299215093255043, 0.029700985178351402, -0.03395487368106842, -0.03211968392133713, -0.04581731557846069, -0.02362268604338169, -0.04661167040467262, 0.03759698197245598, 0.0026879904326051474, 0.005979033652693033, -0.058739785104990005, -0.023661384359002113, -0.003753849072381854, 0.04664817824959755, 0.010424541309475899, -0.005059560760855675, 0.024291321635246277, -0.023854510858654976, 0.03556490316987038, -0.01621362566947937, -0.03252777084708214, 0.02243136614561081, -0.04594848304986954, 0.0237700417637825, -0.036129362881183624, -0.022387249395251274, -0.006241920869797468, -0.008438351564109325, 0.003372529521584511, 0.06032627448439598, -0.028851084411144257, 0.0027252708096057177, -0.0072544896975159645, 0.03191062808036804, -0.05200580134987831, -0.02114453725516796, 0.038783878087997437, -0.024102989584207535, -0.029579078778624535, 0.059764645993709564, 0.00844398234039545, -0.02013346739113331, 0.007299704477190971, -0.0179672222584486, -0.036372292786836624, 0.0636465921998024, -0.042077213525772095, 0.006399453151971102, -0.01863669604063034, 0.005104709882289171, 0.033500902354717255, -0.027432139962911606, 0.018458133563399315, -0.022068971768021584, -0.01809161901473999, -0.046515293419361115, -0.05419769883155823, 0.005820284131914377, 0.024777404963970184, 0.007628969848155975, 0.028295736759901047, 0.01258065551519394, -0.022858692333102226, -0.003895960748195648, -0.0016980527434498072, 0.04507146775722504, 0.006690372247248888, -0.03849240392446518, 0.007109650410711765, 0.04318033531308174, -0.031669411808252335, 0.0009558700257912278, 0.006187509745359421, -0.007855942472815514, -0.015839997678995132, -0.014217427000403404, 0.0008043822017498314, -0.05634579807519913, 0.014240781776607037, -0.05081508308649063, -0.0203810203820467, -0.030818378552794456, 0.010902437381446362, -0.01887991838157177, -0.011687902733683586, 0.0031440004240721464, 0.007734153885394335, 0.007040388882160187, 0.021180661395192146, -0.036586783826351166, 0.03949578478932381, 0.030008215457201004, -0.05421113967895508, -0.03154103085398674, 0.03446660563349724, -0.012552527710795403, 0.034662049263715744, -0.004779583774507046, -0.027973560616374016, -0.033600810915231705, -0.054513584822416306, -0.0025687534362077713, -0.044745150953531265, -0.012409522198140621, -0.052194442600011826, -0.0368291400372982, 0.031184304505586624, 0.0487760491669178, 0.009276694618165493, -0.01069655641913414, -0.013757522217929363, -0.0514071024954319, -0.00021277018822729588, -0.004621169529855251, 0.00464660907164216, -0.042052559554576874, -0.021420441567897797, -0.011491627432405949, 0.05365018546581268, 0.016060762107372284, 0.026346920058131218, 0.017348362132906914, 0.0005946003366261721, 0.006889216601848602, -0.024538949131965637, -0.0735330581665039, -0.0418475978076458, 0.014593339525163174, 0.005353476386517286, -0.0023736353032290936, -0.031640902161598206, -0.06325464695692062, 0.03237181901931763, -0.04577680677175522, -0.002978823846206069, -0.031336624175310135, -0.040444888174533844, -0.012007692828774452, -0.009088323451578617, 0.04294396936893463, -0.028419606387615204, 0.0375065952539444, 0.007214704528450966, 0.015388283878564835, -0.0008145060273818672, 0.020375100895762444, -0.010462864302098751, -0.014706184156239033, -0.022830206900835037, -0.05249033495783806, 0.0276963971555233, -0.028185607865452766, -0.018246382474899292, -0.02939465455710888, 0.003852857742458582, 0.0507030226290226, -0.013716304674744606, 0.024564314633607864, 0.0398235097527504, -0.019514139741659164, -0.00515934219583869, -0.0477856770157814, 0.03716794773936272, 0.004866866394877434, 0.009868915192782879, -0.025680651888251305, -0.02897365391254425, -0.022828005254268646, -0.01478895079344511, -0.06594476848840714, -0.03468431904911995, -0.056185074150562286, -0.00791951548308134, 0.08442668616771698, -0.005921727977693081, 0.0722585991024971, 0.0034863727632910013, -0.04413614422082901, -0.05836710333824158, 0.009974459186196327, -0.008233054541051388, 0.018604718148708344, 0.04893471673130989, -0.0011678786249831319, -0.007109727710485458, 0.04466051235795021, 0.014124930836260319, 0.0347459614276886, -0.030096663162112236, 0.04695356637239456, -0.021781757473945618, -0.05403025820851326, 0.04421459138393402, 0.05592598393559456, -0.022190965712070465, -0.039064921438694, 0.014213234186172485, 0.009097127243876457, 0.0005883731064386666, -0.02075830288231373, -0.009007219225168228, -0.03333406522870064, 0.004734355490654707, 0.005964466370642185, 0.015438497997820377, 0.014552172273397446, 0.04204810783267021, -0.014815196394920349, 0.04197140410542488, -0.007168219890445471, -0.019142935052514076, 0.04006025567650795, -0.048550598323345184, -0.023634115234017372, -0.026983320713043213, -0.012913575395941734, -0.01044014748185873, 0.004874629899859428, 0.037619657814502716, -0.03946903347969055, 0.023064175620675087, 0.009104568511247635, -0.02284357324242592, 0.05126320570707321, -0.00018092480604536831, -0.004799449350684881, 0.011394677683711052, -0.0008379991631954908, -0.053238820284605026, -0.016984378919005394, 0.00073801982216537, -0.005024618469178677, 0.022317666560411453, -0.057856373488903046, 0.014626716263592243, 0.0323852077126503, 0.02963506616652012, 0.008186726830899715, -0.04360102862119675, -0.04168768599629402, -0.034642040729522705, -0.037636466324329376, 0.014632646925747395, -0.031219586730003357, -0.01718880422413349, 0.008785948157310486, 0.01965334825217724, -0.049519769847393036, 0.0179632268846035, 0.01357825007289648, -0.0370686873793602, 0.04810890927910805, -0.05002050846815109, 0.01590491272509098, -0.03737684711813927, -0.048332251608371735, -0.03456226736307144, 0.001074434956535697, -0.0477893240749836, -0.013739709742367268, 0.015794770792126656, 0.023907946422696114, -0.002778931288048625, 0.018875854089856148, 0.012969898991286755, -0.009083513170480728, -0.017480183392763138, -0.03384167701005936, -0.0019186264835298061, 0.03799645975232124, 0.011804623529314995, 0.03962016478180885, 0.053027067333459854, -0.008936690166592598, 0.019697673618793488, 0.034454986453056335, -0.03537658601999283, 0.00834104884415865, 0.00009075141861103475, 0.018586860969662666, 0.037033189088106155, -0.05531745404005051, -0.019595809280872345, 0.03266885504126549, -0.021814242005348206, 0.051419373601675034, -0.05407803878188133, 0.017234457656741142, -0.015585212968289852, -0.0005341670475900173, 0.02868158556520939, 0.05233887955546379, -0.002158439951017499, 0.02618487738072872, -0.0025348432827740908, 0.044081781059503555, 0.013040021993219852, -0.0007958353962749243, 0.04355652630329132, 0.012904725037515163, 0.04330441728234291, -0.016574358567595482, -0.022342003881931305, 0.014567493461072445, -0.01589081808924675, 0.035444729030132294, -0.03946857899427414, -0.022094866260886192, -0.030180897563695908, -0.005419242661446333, -0.013371613807976246, 0.02433379925787449, 0.010791159234941006, -0.00035299299634061754, 0.06141463667154312, -0.01002045813947916, -0.015168623067438602, 0.015633219853043556, -0.05525154247879982, -0.06643733382225037, 0.045533157885074615, -0.013103864155709743, -0.003980572801083326, 0.00213747750967741, -0.07136330008506775, 0.016498073935508728, -0.014439895749092102, 0.008777252398431301, 0.0046120136976242065, 0.05721523240208626, 0.002148462925106287, 0.03209177777171135, -0.008081665262579918, 0.011673597618937492, 0.015905015170574188, 0.02922005206346512, -0.07473595440387726, -0.02865448221564293, -0.0008415806223638356, 0.03065376728773117, 0.009532179683446884, 0.014489633031189442, -0.027721751481294632, -0.008456653915345669, -0.022547932341694832, -0.014963915571570396, -0.02006419003009796, -0.0061769261956214905, -0.008609289303421974, 0.024749625474214554, -0.04405129700899124, 0.011198621243238449, -0.03790060803294182, 0.04529174417257309, -0.022381888702511787, -0.05433201044797897, -0.03882366418838501, 0.02595742605626583, 0.02829362265765667, -0.02622872218489647, 0.03816789761185646, 0.03388121351599693, 0.04512668028473854, -0.02301938831806183, -0.0156661756336689, -0.024515867233276367, 0.053282804787158966, 0.03295140340924263, 0.04714009538292885, -0.026674974709749222, 0.02778206579387188, 0.04995378106832504, 0.002830070210620761, 0.0136751439422369, 0.04178042709827423, 0.027147890999913216, -0.024035150185227394, -0.0003759301034733653, -0.05281411483883858, -0.015352056361734867, 0.032421525567770004, -0.006272399798035622, -0.004752386827021837, -0.04551494121551514, 0.009121381677687168, -0.015310234390199184, -0.003684742609038949, 0.043823495507240295, -0.031189220026135445, 0.006641888990998268, -0.018516596406698227, -0.0005635134293697774, 0.0036371061578392982, 0.05294201523065567, 0.0014098843093961477, -0.001610753359273076, 0.06519754230976105, 0.028565092012286186, -0.0317673459649086, 0.03417214751243591, 0.004066795110702515, 0.03023412637412548, -0.04006967321038246, 0.0032862364314496517, 0.005489214789122343, 0.004242708906531334, -0.026270410045981407, 0.012743347324430943, -0.03839321807026863, 0.011999214068055153, -0.022922687232494354, 0.02389419451355934, 0.026263007894158363, -0.03664187714457512, -0.04042602702975273, -0.025155242532491684, 0.06302102655172348, -0.04182310402393341, -0.04217950627207756, 0.032640065997838974, 0.019977865740656853, -0.0354558527469635, 0.021141456440091133, 0.0017900597304105759, 0.025913573801517487, 0.047296393662691116, 0.05245725065469742, -0.02228417433798313, 0.020759183913469315, 0.026061927899718285, -0.05176343396306038, -0.008172793313860893, 0.003959754481911659, -0.01696941815316677, -0.018143508583307266, -0.05076557770371437, -0.017294295132160187, 0.010650030337274075, -0.00764458067715168, -0.028585979714989662, 0.030156075954437256, 0.04911533370614052, 0.00039571456727571785, -0.07113576680421829, 0.025139344856142998, 0.033591318875551224, -0.044459983706474304, 0.002316748956218362, -0.003563315374776721, 0.038962557911872864, -0.00842367671430111, 0.01614871807396412, -0.03087601810693741, 0.021906239911913872, -0.003877433715388179, -0.0369759239256382, 0.057400476187467575, -0.007205815054476261, -0.056050483137369156, -0.025096764788031578, -0.04389496147632599, -0.019771533086895943, -0.000374509982066229, -0.028576072305440903, -0.04089229181408882, 0.03076893649995327, 0.07534566521644592, 0.0023691318929195404, 0.011760647408664227, -0.03555148467421532, 0.03867635875940323, 0.06845416873693466, 0.08106670528650284, -0.015547331422567368, 0.007317350711673498, 0.013236558064818382, -0.019569475203752518, 0.05234111100435257, -0.02160663902759552, 0.019657930359244347, -0.012205231934785843, -0.020715592429041862, -0.04495188966393471, -0.00540614128112793, -0.03381842002272606, -0.0724634900689125, 0.021073900163173676, 0.047544121742248535, -0.015918834134936333, -0.023629050701856613, -0.07939589023590088, -0.009788809344172478, -0.04082848131656647, 0.00800594687461853, -0.055713653564453125, 0.019528964534401894, -0.0066545987501740456, -0.0004416505980771035, -0.0030234940350055695, -0.05155456066131592, 0.13581620156764984, 0.04472050443291664, 0.0218058954924345, -0.003498977283015847, -0.010175598785281181, 0.07819650322198868, 0.043863389641046524, -0.030740195885300636, -0.012371355667710304, -0.04450920969247818, 0.01575549691915512, 0.00018823919526766986, 0.040679894387722015, -0.023142050951719284, -0.013802597299218178, 0.05201731622219086, -0.043697018176317215, 0.0012520510936155915, 0.025605907663702965, -0.05413617193698883, -0.04523460566997528, 0.01058926060795784, 0.00001898098889796529, 0.010974070057272911, -0.033662814646959305, 0.005668748170137405, 0.005955606698989868, -0.043811459094285965, 0.017923224717378616, -0.015367885120213032, 0.029863350093364716, -0.0460066981613636, 0.03300738334655762, -0.006393405143171549, -0.04885296896100044, 0.03941277787089348, -0.024738706648349762, -0.01967182196676731, 0.020845932886004448, -0.009447219781577587, -0.040544815361499786, 0.005340979900211096, 0.03444623202085495, -0.01764041744172573, 0.000599911087192595, 0.05727940797805786, -0.04610124230384827, 0.008676936849951744, 0.04932180419564247, -0.04948659986257553, 0.0513177365064621, -0.039456360042095184, 0.03231610730290413, 0.012321051210165024, -0.05523313954472542, -0.021243728697299957, 0.01827925629913807, -0.0015238143969327211, -0.026720933616161346, -0.028743287548422813, 0.025513669475913048, -0.014137620106339455, 0.0176845695823431, 0.022633105516433716, -0.032605402171611786, 0.015974614769220352, 0.04983309283852577, -0.014176523312926292, -0.0038106420543044806, -0.0034487831871956587, -0.0020917963702231646, -0.009478707797825336, -0.02782614901661873, 0.00568260857835412, 0.01978827454149723, 0.012338705360889435, -0.012892556376755238, 0.022709300741553307, 0.03132550045847893, -0.0013690694468095899, -0.027465548366308212, -0.012036927044391632, 0.012500402517616749, -0.000687382067553699, 0.03165801987051964, 0.025188984349370003, -0.020125873386859894, -0.031931448727846146, -0.01460115797817707, 0.02214711531996727, 0.059229522943496704, 0.014235696755349636, -0.03277084603905678, 0.008463336154818535, -0.0018351591425016522 ]
The current world has a lot of technology, with more being created every year. There are always new innovations or upgrades to current technology making older versions obsolete. Most of the modern technology is smart phone/smart technology related, usually with updates to current technology. This means that certain devices can be controlled via smartphone through an Internet connection or Wi-Fi enabling. Such devices are speakers, radios, banking platforms, and even security systems. This technology allows the user to control the device from anywhere, as long as there is a connection. For example, some security systems allow the user to see inside his house from miles away with just a click of a button. That is just one example. A newer device I find interesting is the smart thermostat. This thermostat is connected to Wi-Fi, and via Wi-Fi, can be controlled from anywhere; you just need your phone. This is desirable as the temperature of the house can be manipulated from anywhere. Too hot, turn the thermostat down. Too cold, turn it up. This guarantees your house is the perfect temperature as soon as you walk in it. I think this would be nice to have as it practically guarantees comfort, all without you having to do much at all. Another good point is how it can control your energy bill. Keeping a constant temperature combats too much energy usage contributing in a higher electric bill. No one wants a high electric bill. There are too many good reasons to have a smart thermostat, and it is no more challenging to use than any other app.
[ -0.0026903171092271805, 0.019348055124282837, -0.028812963515520096, 0.01705789379775524, -0.012444011867046356, 0.02993449568748474, 0.013605785556137562, 0.035059574991464615, 0.055521704256534576, 0.027020232751965523, 0.045056503266096115, 0.009464653208851814, 0.012320996262133121, -0.02945951744914055, 0.0011857041390612721, -0.04284350201487541, -0.025028785690665245, -0.00988017488270998, 0.009276282042264938, 0.012830451130867004, -0.006637228652834892, 0.05186610296368599, -0.05068032070994377, -0.05084332823753357, -0.050996702164411545, 0.028846917673945427, 0.0031171839218586683, -0.006038899999111891, 0.031154954805970192, 0.0860210582613945, 0.005060999188572168, -0.0309593565762043, 0.02202695421874523, -0.034064702689647675, -0.021617861464619637, -0.03627679497003555, 0.028116464614868164, 0.00004808689118362963, -0.03008461557328701, -0.03121209517121315, 0.01762562245130539, 0.022110402584075928, 0.04889203608036041, -0.059156570583581924, -0.04442312568426132, -0.012433918192982674, -0.01240665651857853, -0.03899649530649185, -0.0023548908066004515, -0.012207086198031902, -0.014240695163607597, -0.007814981043338776, 0.018866637721657753, -0.014494050294160843, 0.02477734163403511, 0.009220334701240063, -0.017928916960954666, 0.016902847215533257, -0.02321690507233143, 0.04034633934497833, 0.0036253032740205526, -0.006685113068670034, 0.04600503668189049, -0.033636633306741714, 0.04398725926876068, 0.02362244948744774, 0.012057013809680939, -0.012371785007417202, 0.007620516698807478, -0.013684353791177273, -0.012518553994596004, -0.00022715544037055224, -0.032662533223629, -0.0521046444773674, 0.01678570732474327, 0.04740675166249275, -0.030862843617796898, 0.006340031046420336, -0.048616960644721985, 0.001749417046085, 0.015886221081018448, 0.06194638833403587, -0.03238103911280632, 0.012302840128540993, -0.0416959784924984, -0.03884916752576828, -0.007490187417715788, -0.00018828643078450114, -0.03174872323870659, 0.029368456453084946, 0.025653604418039322, 0.05632603168487549, 0.016691073775291443, -0.014938334934413433, 0.05076570808887482, 0.03272700682282448, -0.034516025334596634, 0.04004824161529541, -0.00045581560698337853, 0.001119812484830618, 0.040714722126722336, 0.008354696445167065, -0.015549547038972378, 0.07231146842241287, -0.010168131440877914, 0.02800384722650051, 0.006346211768686771, -0.022202705964446068, -0.04675328731536865, -0.05105282738804817, -0.025397364050149918, -0.04064824804663658, -0.006936009041965008, 0.0034833590034395456, -0.0076083652675151825, 0.050152525305747986, -0.001159933628514409, 0.0417005717754364, -0.03082364611327648, 0.037088632583618164, -0.0016126284608617425, 0.011547797359526157, 0.03381316736340523, -0.026844896376132965, -0.012388925068080425, -0.023908205330371857, -0.013362878002226353, 0.03887948766350746, -0.00626138411462307, -0.04165450856089592, -0.04745716601610184, -0.035909950733184814, 0.0015899284044280648, 0.04330182820558548, -0.008574211969971657, 0.030842790380120277, -0.00980535987764597, 0.036831121891736984, 0.01737283356487751, -0.04420428350567818, 0.04826205596327782, 0.012450478971004486, 0.025693660601973534, 0.10076216608285904, 0.015342120081186295, 0.03511224314570427, 0.009508267045021057, -0.008072388358414173, -0.031511224806308746, 0.029560497030615807, 0.0024420986883342266, 0.0313020795583725, 0.002398974262177944, 0.02070225030183792, 0.0001302041782764718, -0.019055088981986046, -0.01613243855535984, 0.0221080519258976, 0.0054358490742743015, 0.055345769971609116, -0.0005752156721428037, 0.022942233830690384, -0.0011627450585365295, 0.017256448045372963, -0.021619724109768867, 0.025461670011281967, -0.03300017863512039, -0.009035681374371052, -0.017901480197906494, -0.01053495705127716, 0.02218620479106903, -0.0035859975032508373, -0.030704066157341003, 0.010865231975913048, 0.03751702234148979, 0.04311494529247284, 0.03611411154270172, 0.01608111336827278, 0.02760777436196804, 0.050328392535448074, -0.06217525154352188, -0.008414093405008316, -0.005803335458040237, 0.061805736273527145, 0.02918863110244274, 0.02085372433066368, 0.0062634446658194065, -0.005457058548927307, -0.0028807984199374914, -0.014206125400960445, -0.016295118257403374, 0.019135084003210068, -0.04630694165825844, 0.015965702012181282, 0.007647660560905933, -0.019700538367033005, -0.010559863410890102, -0.006000032182782888, 0.011657972820103168, -0.07099788635969162, -0.03479292243719101, 0.04626894369721413, -0.03744283691048622, 0.01102491095662117, 0.004393635783344507, -0.004807322286069393, 0.005173820536583662, 0.06822815537452698, -0.06917484849691391, 0.01774229109287262, 0.005355655215680599, 0.012677960097789764, -0.04863785207271576, -0.0178518183529377, 0.009305435232818127, 0.01587798073887825, -0.011649546213448048, 0.027171075344085693, -0.022376559674739838, 0.0004318315477576107, 0.011765831150114536, 0.009908867999911308, 0.051713526248931885, 0.04135160893201828, -0.0265163816511631, 0.008438635617494583, -0.006654695142060518, 0.03274181857705116, -0.02742519974708557, -0.004171108361333609, -0.008559280075132847, 0.04942202940583229, 0.030987802892923355, 0.04951069876551628, 0.045089028775691986, 0.02335105836391449, 0.013385217636823654, 0.024115776643157005, 0.01902877353131771, 0.02280478924512863, 0.010160325095057487, 0.01847008615732193, 0.05508419871330261, 0.0077406433410942554, -0.028861479833722115, 0.03856940567493439, -0.014896774664521217, -0.017910316586494446, -0.02290964312851429, 0.014428266324102879, -0.027120795100927353, 0.025414295494556427, 0.04698018729686737, 0.03391572833061218, -0.026488585397601128, 0.00039624577038921416, 0.03641512244939804, 0.05633356422185898, -0.04354478791356087, -0.03212272748351097, -0.0047449287958443165, 0.021712670102715492, -0.020579522475600243, 0.029572678729891777, 0.06931918114423752, 0.0038949043955653906, 0.0122984005138278, 0.009752544574439526, -0.02751029096543789, -0.04302060976624489, -0.07023100554943085, -0.042926542460918427, -0.041331447660923004, -0.012282953597605228, -0.06335430592298508, -0.0012377836974337697, 0.019942214712500572, -0.04486405476927757, 0.03354715183377266, -0.0167397353798151, -0.0122122373431921, -0.025318067520856857, 0.014390330761671066, 0.056601278483867645, 0.024161824956536293, 0.037069715559482574, -0.010389738716185093, 0.03994276374578476, 0.015864616259932518, 0.02455364540219307, 0.005603469908237457, -0.025467609986662865, -0.005939630791544914, 0.005909500177949667, -0.00434151804074645, -0.011689086444675922, 0.01719306781888008, 0.021679602563381195, -0.06402671337127686, -0.049870479851961136, -0.015357092954218388, 0.008851892314851284, -0.0077469078823924065, -0.006963922176510096, -0.032554954290390015, 0.047578562051057816, 0.01327596977353096, -0.021627187728881836, 0.0515921413898468, 0.0703403651714325, -0.055339932441711426, 0.07734832167625427, -0.008621221408247948, 0.045009467750787735, -0.05497565120458603, 0.02823122963309288, 0.038699571043252945, -0.007250432390719652, -0.025111865252256393, -0.004350512754172087, 0.010414110496640205, -0.013475178740918636, 0.005907777231186628, -0.05599925294518471, -0.035718996077775955, 0.029898950830101967, 0.022947095334529877, -0.06981203705072403, 0.021982857957482338, -0.022680502384901047, -0.0278797447681427, -0.05015299469232559, -0.03604605793952942, 0.0349920280277729, 0.01885754056274891, 0.015482407994568348, 0.03801637142896652, -0.04088505730032921, 0.0020209948997944593, 0.02203983999788761, 0.05400625616312027, -0.032771799713373184, 0.016853075474500656, 0.0352066308259964, 0.0019237120868638158, 0.027238022536039352, 0.05101553350687027, -0.0002349879068788141, -0.003958415240049362, -0.000119841264677234, -0.02828315459191799, 0.01856636069715023, 0.019700728356838226, 0.006115021649748087, 0.021738193929195404, 0.05146211385726929, -0.05456012859940529, -0.006646426394581795, -0.002909536473453045, 0.003898304421454668, 0.046763982623815536, 0.014300153590738773, -0.019966542720794678, 0.005851298104971647, -0.03925642743706703, -0.06309974938631058, 0.041199810802936554, 0.0037349362391978502, 0.027202976867556572, -0.03370105102658272, 0.06272830069065094, -0.019604619592428207, -0.05633845925331116, 0.06311540305614471, -0.04833262041211128, -0.007148141041398048, 0.02926499955356121, 0.0038912007585167885, 0.024658450856804848, -0.04721055179834366, 0.005069605074822903, 0.005836223252117634, 0.013166436925530434, 0.03863418847322464, -0.015360169112682343, 0.03291944041848183, -0.025350917130708694, 0.001738542690873146, -0.013454504311084747, -0.006901953369379044, 0.009463953785598278, -0.01371263712644577, 0.00034639815567061305, -0.028161238878965378, -0.04260982945561409, -0.07490769773721695, 0.020521460101008415, 0.017741236835718155, 0.017871741205453873, -0.03701232746243477, 0.03973585367202759, -0.005740892142057419, 0.01906202919781208, 0.036358267068862915, 0.0003351799095980823, -0.009725971147418022, -0.030879637226462364, 0.04603652283549309, 0.019738279283046722, -0.008660451509058475, -0.03000328131020069, -0.02264447882771492, 0.0051242937333881855, 0.00813700444996357, -0.014873476698994637, 0.02329249680042267, -0.017386050894856453, 0.0004483660450205207, 0.0032086591236293316, 0.024785390123724937, -0.07828953117132187, -0.006805151700973511, -0.05063304677605629, 0.07277339696884155, 0.0055158184841275215, -0.03891545534133911, -0.026041900739073753, -0.03378157690167427, 0.03619338572025299, 0.05566925182938576, -0.0129623394459486, -0.047438621520996094, -0.010039749555289745, 0.00034105649683624506, -0.02424577996134758, 0.020014073699712753, 0.03754806891083717, -0.021109305322170258, 0.02389817126095295, -0.060102980583906174, 0.014020130038261414, 0.03787033259868622, -0.006760468706488609, -0.00482900207862258, -0.0008388268179260194, 0.018001748248934746, 0.0007478612242266536, 0.011146600358188152, -0.007406999822705984, -0.01859733834862709, 0.042427416890859604, -0.05247236043214798, 0.020000290125608444, 0.0040620057843625546, 0.0012457530247047544, -0.009782166220247746, 0.02229810319840908, -0.0017806809628382325, 0.011368346400558949, -0.013368955813348293, 0.013690647669136524, -0.011007051914930344, 0.06254547089338303, -0.029685387387871742, -0.043306831270456314, 0.03562644496560097, -0.025458436459302902, -0.009340443648397923, 0.007546980399638414, 0.05872035026550293, 0.01619827002286911, 0.016362003982067108, -0.0064622219651937485, -0.04908627271652222, 0.023948250338435173, -0.045611292123794556, 0.016861816868185997, -0.0007506610709242523, -0.04514990374445915, -0.019359085708856583, -0.06153225898742676, 0.022117486223578453, 0.04129251465201378, 0.015711423009634018, -0.041702751070261, -0.05433078482747078, -0.0019211058970540762, 0.019153257831931114, -0.005841431207954884, 0.030440926551818848, -0.025636356323957443, -0.027023937553167343, -0.01220269501209259, 0.0014480720274150372, 0.019012225791811943, 0.03041895292699337, -0.0032027813140302896, -0.012678216211497784, -0.006092476192861795, 0.02184399403631687, 0.0288518276065588, -0.011247266083955765, -0.044297076761722565, -0.015748532488942146, -0.002079806523397565, -0.04095621779561043, -0.05051387473940849, 0.02532956935465336, -0.01710531860589981, -0.008130103349685669, -0.00867939181625843, 0.00878187082707882, -0.008391418494284153, 0.03880659118294716, 0.02761169523000717, 0.0198595579713583, 0.020424293354153633, 0.006144746206700802, -0.03837228938937187, 0.0316319465637207, 0.01272051502019167, -0.050534654408693314, -0.0402587428689003, 0.054771848022937775, -0.029943138360977173, 0.035163331776857376, 0.0027143992483615875, -0.029139580205082893, -0.06527645885944366, -0.04038749262690544, -0.0033437679521739483, -0.026712670922279358, -0.003650492522865534, -0.042950354516506195, -0.0005487941089086235, -0.02779439464211464, 0.01560977566987276, 0.004720307420939207, -0.013038626872003078, -0.001209031674079597, -0.026895105838775635, 0.04982234165072441, -0.05370199680328369, -0.018946612253785133, -0.002388953696936369, -0.025995682924985886, -0.022835321724414825, 0.035420775413513184, -0.053160410374403, -0.015361970290541649, -0.0004958542995154858, -0.015276494435966015, 0.027220644056797028, 0.00016090345161501318, -0.06462888419628143, -0.0371050089597702, -0.008316896855831146, 0.017871694639325142, -0.02419266849756241, 0.015984194353222847, -0.01973903179168701, 0.02860894240438938, -0.015422074124217033, -0.012892037630081177, -0.020535336807370186, 0.021326538175344467, -0.04108567163348198, 0.00594975845888257, 0.033882852643728256, -0.012449001893401146, -0.01667228527367115, -0.03761443495750427, 0.05755757540464401, 0.06016944721341133, -0.006925282068550587, -0.043290648609399796, -0.03258753940463066, -0.055128924548625946, -0.03653910011053085, 0.016976866871118546, -0.013405266217887402, -0.004460770636796951, -0.03731363266706467, 0.003758869832381606, 0.05543223023414612, -0.029606299474835396, 0.010788969695568085, 0.05708322674036026, 0.005889814347028732, -0.02468167617917061, -0.03146059066057205, 0.05987687408924103, 0.039928413927555084, -0.019397033378481865, -0.0029723343905061483, -0.023672854527831078, -0.02452990598976612, -0.013782934285700321, -0.04822301119565964, -0.052593134343624115, -0.07232894003391266, -0.00401424802839756, 0.0636480525135994, -0.06382407993078232, 0.014930288307368755, 0.0008895198698155582, -0.06194484233856201, -0.012891041114926338, 0.020400535315275192, 0.015876468271017075, 0.026378683745861053, 0.03992873430252075, 0.03328746184706688, -0.036821234971284866, 0.020542025566101074, -0.0025449043605476618, -0.0049753435887396336, -0.04101964458823204, 0.04102804884314537, 0.004347160458564758, -0.046096060425043106, 0.024626489728689194, 0.055540747940540314, -0.048948973417282104, -0.04452604427933693, 0.002651207149028778, 0.007342856377363205, 0.02076999843120575, -0.035499174147844315, 0.011100631207227707, -0.0258485134691, 0.005192131735384464, -0.01890379935503006, 0.031285401433706284, 0.003581539262086153, 0.027350997552275658, 0.0017614337848499417, 0.029601288959383965, -0.050601325929164886, 0.010849428363144398, -0.004870959557592869, -0.007310196757316589, -0.01080195140093565, -0.06731262058019638, -0.025261834263801575, 0.028781794011592865, -0.01735181361436844, 0.042994175106287, -0.021756066009402275, 0.012321182526648045, 0.04052932932972908, -0.022777071222662926, 0.014680246822535992, 0.013344679027795792, -0.0022955252788960934, 0.016695424914360046, -0.004304251167923212, -0.0765327662229538, -0.010022774338722229, 0.0379328690469265, 0.02013891376554966, 0.004479211289435625, -0.023190001025795937, 0.01576794497668743, 0.0338275246322155, 0.006877207197248936, -0.006092975381761789, -0.05270230397582054, -0.04128691181540489, -0.06708966195583344, -0.05958440899848938, -0.02447791025042534, 0.02050754241645336, -0.00023890640295576304, 0.007031558081507683, -0.014198155142366886, -0.016676554456353188, -0.027650758624076843, 0.011981368064880371, -0.00695727439597249, -0.017362555488944054, -0.03983981907367706, 0.037981074303388596, -0.029143285006284714, -0.029239144176244736, -0.039451729506254196, 0.026951760053634644, -0.028948819264769554, -0.002726101316511631, -0.015928974375128746, 0.01883186772465706, -0.061538342386484146, 0.04291513189673424, -0.003633195301517844, 0.036371998488903046, -0.04179314523935318, -0.05436694994568825, -0.010093609802424908, 0.039907149970531464, -0.011396803893148899, 0.04247976094484329, 0.015434393659234047, 0.002987466286867857, 0.03472162410616875, -0.036196280270814896, 0.0031667379662394524, -0.037027016282081604, -0.008410126902163029, 0.03302597999572754, 0.01031520962715149, -0.02063995599746704, -0.05042197182774544, 0.0031231145840138197, -0.035558827221393585, 0.020893368870019913, -0.009539156220853329, 0.039077263325452805, -0.009999564848840237, 0.0025185132399201393, -0.02093365415930748, 0.03473548963665962, -0.008555497974157333, 0.024946805089712143, -0.011259197257459164, 0.03182448074221611, 0.0058443122543394566, -0.00018380628898739815, 0.02522396668791771, 0.006226900964975357, -0.004320297855883837, -0.06318096816539764, 0.011555416509509087, -0.01544866431504488, -0.008897923864424229, 0.02799556404352188, -0.007152970880270004, -0.02953559346497059, -0.025801993906497955, 0.019634759053587914, -0.007233705837279558, 0.0289686918258667, 0.0031088157556951046, 0.03014327958226204, 0.023562433198094368, -0.025093229487538338, -0.03089229203760624, 0.0027608878444880247, -0.0739617720246315, -0.0023543916177004576, 0.02920667640864849, 0.0015406714519485831, -0.02441825158894062, -0.013283693231642246, -0.05881962925195694, -0.015397864393889904, -0.00831544492393732, -0.003491327865049243, -0.026714988052845, 0.014079037122428417, 0.0073378137312829494, 0.059843771159648895, -0.021748119965195656, 0.013055717572569847, 0.014313681051135063, 0.06271378695964813, -0.026026133447885513, -0.04419408366084099, 0.02305631712079048, -0.00042696495074778795, -0.007417856249958277, -0.028810961171984673, -0.008716356940567493, 0.00946718268096447, 0.016410551965236664, 0.027118444442749023, 0.01120733842253685, 0.013004953972995281, -0.03589760884642601, 0.05210333317518234, 0.024407105520367622, 0.02992151491343975, -0.014468437060713768, 0.05103291571140289, 0.003291874658316374, -0.03180551156401634, -0.02364380657672882, 0.03373857960104942, 0.03303728997707367, -0.020481757819652557, 0.061805129051208496, 0.0082892756909132, 0.052244171500205994, 0.00026495583006180823, 0.018033355474472046, -0.027748139575123787, 0.006502640899270773, 0.023652492091059685, 0.027718963101506233, -0.0011901183752343059, 0.03335472568869591, 0.05505833774805069, 0.00041841960046440363, 0.008264013566076756, 0.013528203591704369, -0.010011773556470871, -0.04993762448430061, 0.020624268800020218, -0.03242383152246475, 0.0026727025397121906, 0.009520750492811203, -0.010694067925214767, -0.0134567990899086, -0.028791019693017006, 0.012194031849503517, -0.026027001440525055, -0.03476962074637413, 0.0731978714466095, -0.01953311823308468, 0.0037247720174491405, 0.030712101608514786, -0.0019235642394050956, -0.008260473608970642, 0.035420238971710205, 0.01412199903279543, 0.017735116183757782, 0.03887268528342247, 0.05888228490948677, -0.007552001159638166, 0.02468273974955082, 0.023194462060928345, 0.004930654540657997, -0.02289087139070034, -0.010413084179162979, -0.0073141902685165405, 0.002623732900246978, -0.042122725397348404, -0.012056104838848114, -0.04122528061270714, 0.06457214057445526, -0.02838847227394581, -0.061638735234737396, 0.03708348795771599, -0.04028767719864845, -0.016159774735569954, -0.058125585317611694, 0.03374006971716881, -0.026541927829384804, -0.02223128266632557, 0.004701044876128435, 0.005778223276138306, -0.03296968340873718, 0.048809852451086044, -0.022880153730511665, 0.05726901814341545, 0.019267985597252846, 0.01710827648639679, 0.0010784020414575934, 0.06197475269436836, 0.05266595259308815, -0.01581699401140213, -0.02460498921573162, 0.05017491802573204, -0.00343090551905334, -0.03628334775567055, -0.01923837698996067, -0.05497501417994499, -0.026281969621777534, 0.027866747230291367, -0.022589487954974174, -0.018416518345475197, 0.03531428053975105, -0.012101993896067142, -0.0010666733141988516, -0.025743216276168823, 0.04505084455013275, -0.02229001373052597, 0.013293512165546417, 0.0015469787176698446, 0.04189237207174301, -0.008318367414176464, -0.005617259070277214, -0.03315451741218567, -0.04481332004070282, 0.021413113921880722, -0.05588920786976814, 0.056372903287410736, 0.0006514262640848756, -0.03186407312750816, -0.03207402676343918, -0.039439089596271515, -0.03143427148461342, 0.0032685110345482826, -0.002925053471699357, -0.028488263487815857, 0.04776638746261597, 0.04783131927251816, 0.024737125262618065, -0.008412695489823818, -0.021873099729418755, -0.02146737091243267, 0.00002327621950826142, 0.04144386574625969, -0.001792790018953383, 0.029993943870067596, 0.042839571833610535, 0.04643939062952995, 0.013294980861246586, -0.03330063447356224, 0.027328161522746086, -0.02754172496497631, -0.026198536157608032, -0.028245653957128525, -0.007557411212474108, -0.0366414375603199, -0.04298161715269089, 0.004981709644198418, 0.029275644570589066, 0.0016646628500893712, -0.03339635208249092, -0.04409293085336685, -0.01475062221288681, -0.04957805946469307, 0.010843916796147823, -0.019424784928560257, 0.010866384953260422, 0.026492150500416756, -0.022355368360877037, 0.011104687117040157, -0.06390944123268127, 0.15095636248588562, 0.06748265027999878, 0.021778596565127373, 0.022772323340177536, 0.026499196887016296, 0.046369921416044235, 0.001311507192440331, -0.0167220551520586, -0.023019222542643547, -0.0036974346730858088, 0.015623612329363823, -0.031682103872299194, 0.007708996068686247, 0.03838092461228371, 0.017283793538808823, 0.024772007018327713, -0.0032282937318086624, -0.007457963656634092, 0.009638386778533459, -0.026693180203437805, -0.05769151449203491, -0.010985330678522587, 0.022640995681285858, 0.011196364648640156, -0.009605935774743557, 0.030573904514312744, 0.017172031104564667, -0.032243721187114716, -0.01910364255309105, -0.024244049564003944, 0.04162758216261864, -0.06563396751880646, 0.043431684374809265, 0.00656781904399395, -0.05043841525912285, 0.04533706232905388, 0.003153950907289982, -0.015724867582321167, -0.008526584133505821, 0.009758797474205494, -0.014681925997138023, -0.005586083512753248, 0.015235207974910736, -0.026908954605460167, -0.008303309790790081, 0.00585381081327796, 0.008855355903506279, 0.0205925814807415, 0.02767307125031948, -0.04397296905517578, 0.05473347753286362, -0.06068140268325806, 0.04492999613285065, 0.020605240017175674, -0.027835911139845848, 0.007874845527112484, 0.01476304605603218, -0.020157575607299805, -0.030262434855103493, 0.011459155939519405, 0.03958004340529442, 0.012354453094303608, -0.03238460421562195, 0.012251382693648338, 0.016147702932357788, -0.014338528737425804, 0.02574855275452137, 0.02228841744363308, -0.009272255003452301, -0.0064572230912745, -0.016113143414258957, 0.004178999923169613, -0.004935590550303459, -0.06149469316005707, 0.032290007919073105, 0.04540619999170303, 0.004124656319618225, 0.04515809565782547, 0.0009206702816300094, -0.0327194482088089, -0.019701937213540077, -0.009397284127771854, -0.012470451183617115, -0.028345368802547455, 0.05386644974350929, 0.03323468565940857, -0.05002964660525322, -0.020954912528395653, -0.03629394993185997, 0.0701855942606926, 0.043177396059036255, 0.061874378472566605, -0.017574744299054146, -0.009015460498631, -0.011471664533019066 ]
Can you microwave an undercooked steak? Pat the steak down gently with paper towels. Then, season both sides with salt, pepper, or whatever other spices you prefer. Place the steak in a microwave safe dish for five to seven minutes on HIGH, flipping the steak once halfway through. What should a medium rare steak feel like? If you'd like your steak medium-rare, it should feel like your cheek: tender and soft but still fleshy (as opposed to raw, which would be just soft). If you want a medium steak, touch your chin: The steak should still be tender, but with some resistance. How can I defrost a steak quickly? The best way to defrost steak in a hurry Simply fill a large bowl with cold water, place your steak in a resealable and leak-proof plastic bag, and submerge it in the water. If your steak has been frozen individually in a vacuum-sealed bag, it's okay to leave the steak in the bag when you submerge it.. Is Steak OK to eat if it smells a little? A spoiled steak will have a potent odor that no longer smells like raw steak but instead has an ammonia-clad aroma. You'll definitely know the odor when you smell it, and it's a sure-fire sign that you should not plan to eat it! It's important to note that your nose may not also be the best thing to use.. What wine goes with steak and scallops? It is not uncommon to pair a white wine with the seafood to start, then progress to a bolder red when you make your way to the steak. We recommend a full-bodied wine to start, such as a California Chardonnay, followed by a red rich in structure, such as a Bordeaux. How long does it take to thaw out a steak? Depending on the thickness of the cut, you should leave your steak to thaw in the fridge for at least 12 hours. Most pieces of meat will need 18-24 hours to thaw properly, and a particularly thick cut could require up to 30 hours.. Can you thaw steak on the counter? Freezing meat keeps bacteria in a dormant stage. However, once thawed, these bacteria can become active again. Never thaw meat on the counter or let it sit out of the refrigerator for more than two hours.. How do you thaw a steak in 10 minutes? Spotted on CTi News, a Taiwanese cable TV network (via Women's Health Mag), the idea is pretty simple. Turn one of the pots upside down and place the meat in a bag on top. Next, fill the other pot with room temperature water and put it on top of the steak. Are hot dogs made with pork? Pork and beef are the traditional meats used in hot dogs. Less expensive hot dogs are often made from chicken or turkey, using low-cost mechanically separated poultry.. Is it OK to eat salmon that smells fishy? If your raw salmon has a strong smell, it's probably gone bad. The fishy smell will be pretty obvious, and bad salmon smells rather ammonia-like if it's not a good idea to cook it. Fresh salmon won't have such a strong smell and instead has more of a mild scent, so this is a good first sign of spoilage. How do you cook a steak on a cast iron pan on the stove? Place a heavy skillet, preferably cast-iron, on the stove and sprinkle lightly but evenly with about 1/4 to 1/2 teaspoon salt. Turn heat to high under pan. Pat both sides of steak dry again. When pan is smoking hot, 5 to 8 minutes, pat steak dry again and place in pan.. Which Rice has the most arsenic? Brown riceBrown rice contains higher amounts of arsenic than white rice. If you eat large amounts of rice, the white variety may be a better choice ( 12 , 49 , 50 ). How long boil frozen fish? Cover pan tightly and reduce heat to low. What is chowder soup typically thickens with? Chowder is a type of soup or stew often prepared with milk or cream and thickened with broken crackers, crushed ship biscuit, or a roux. Variations of chowder can be seafood or vegetable.. Should I cut Italian sausage before cooking? Slicing uncooked sausage is easier if you put it in the freezer first. This will also help the sausage retain moisture while cooking. Preparing uncooked sausage coins will give an added bonus of having a mouthwatering, caramelized texture on each side of the sausage. Enjoy those Johnsonville coins.. Are turkey rashers healthy UK? Is turkey bacon healthier? Turkey bacon is viewed as a healthier alternative because it contains fewer calories and saturated fat. But some experts say it's heavily processed to add fat and bacon flavouring, which if you ask the World Health Organisation, would cancel out those benefits. What is the best soup thickener? How to thicken soup Blend all or part of it. If you've made a broth with chunks of vegetable in it, such as minestrone soup, then pour the soup through a sieve. ... Add cream or yogurt. ... Add flour or cornflour. ... Use a butter and flour paste. ... Blend in bread. ... Add lentils or rice. ... Can I slow cook a steak? Yes! Slow cooking steak is a wonderful way to make savory and tender fillets each time. Slow cooking steak for hours on end allows for the flavors to fully saturate the meat, resulting in a truly mouth-watering, delectable dish.. What is the silent letter in debt? Originally Answered: What is the silent letter in the word debt? The ' is silent. The letter was inserted in the word by writers and scholars to show its relationship to the Latin word 'debitum'. The word came into English from French and has already lost the ' sound by then..
[ 0.0006774654611945152, 0.011583433486521244, -0.0054947929456830025, 0.0037355711683630943, -0.05560410022735596, 0.013333072885870934, -0.001221281010657549, 0.012022988870739937, 0.00016857105947565287, 0.02780546247959137, 0.04759593680500984, -0.013779880478978157, -0.0067718662321567535, -0.028274457901716232, 0.005159810651093721, -0.008324956521391869, -0.025338010862469673, -0.0756339579820633, -0.05569034442305565, 0.023597432300448418, -0.005438115913420916, -0.003852484282106161, -0.06352102756500244, -0.01842968910932541, -0.02115076221525669, 0.013339714147150517, 0.004402601160109043, -0.014155766926705837, 0.0739995464682579, 0.04035496339201927, -0.0466250404715538, -0.007552111055701971, 0.033022455871105194, -0.038974713534116745, -0.014650600962340832, -0.053126558661460876, 0.03168599680066109, 0.002450470579788089, -0.04797384887933731, -0.013762936927378178, 0.016782091930508614, -0.008036286570131779, 0.04143664240837097, 0.003383495146408677, -0.03186415135860443, 0.015375757589936256, -0.02132299728691578, -0.037664517760276794, -0.0033364081755280495, -0.06932852417230606, 0.019971545785665512, 0.024182602763175964, 0.025692341849207878, -0.0056021627970039845, 0.03214683011174202, 0.008179771713912487, -0.006791283376514912, 0.009054254740476608, -0.04048626124858856, 0.03636685758829117, 0.055299244821071625, 0.025753282010555267, -0.0037714308127760887, -0.024641741067171097, 0.019067848101258278, 0.05045347288250923, -0.025756796821951866, -0.008176461793482304, -0.01640024036169052, -0.00837258156388998, 0.024171369150280952, -0.0208321250975132, -0.010274316184222698, 0.008962808176875114, 0.02121994085609913, 0.01970488578081131, 0.04817541316151619, 0.014769664034247398, 0.006958921905606985, 0.0024849569890648127, 0.00166000344324857, 0.06565369665622711, 0.017840635031461716, 0.03681356832385063, -0.05690574273467064, -0.04786798357963562, 0.012377968057990074, -0.007382070645689964, 0.006333666853606701, -0.024913914501667023, -0.007318195886909962, 0.03851602226495743, -0.012229233980178833, -0.0598890595138073, 0.03355804458260536, 0.010499607771635056, -0.02561364136636257, 0.03461093455553055, 0.040594104677438736, 0.0023087537847459316, 0.028826292604207993, 0.017815442755818367, 0.009259822778403759, 0.06036507710814476, -0.039957549422979355, -0.012328882701694965, -0.030683401972055435, -0.020928718149662018, -0.050896383821964264, -0.018685881048440933, -0.010761587880551815, -0.03495479375123978, 0.012141263112425804, 0.002371520269662142, -0.0160983894020319, 0.05683332681655884, 0.007893689908087254, 0.05497819185256958, -0.04433608800172806, 0.0036873824428766966, 0.031216146424412727, -0.0020142807625234127, 0.026889236643910408, -0.04296189174056053, 0.01417477335780859, -0.016267355531454086, -0.026711994782090187, 0.04921237751841545, -0.03581557422876358, -0.008094822987914085, -0.01706906221807003, -0.019302254542708397, 0.01639869064092636, 0.02139885537326336, 0.002336926758289337, 0.025491366162896156, -0.028183167800307274, 0.00489303283393383, 0.02985788695514202, -0.05571654066443443, 0.04821526259183884, 0.0145820127800107, 0.025573240593075752, 0.08729945123195648, 0.05644508823752403, 0.005184717942029238, 0.03000551089644432, -0.018154321238398552, -0.020471256226301193, 0.07026547938585281, -0.04557191953063011, 0.04543698951601982, -0.031077943742275238, -0.00011688740050885826, 0.009989763610064983, 0.0034701062832027674, -0.01014767587184906, -0.012974134646356106, -0.009977017529308796, 0.02805241197347641, -0.014613316394388676, 0.014189011417329311, -0.03243521973490715, 0.02440389059484005, -0.0051073720678687096, 0.014955093152821064, -0.05371170490980148, -0.025552723556756973, -0.009699512273073196, -0.026999909430742264, 0.026906603947281837, -0.0006921466556377709, -0.008625528775155544, 0.016601908951997757, -0.0058078402653336525, 0.034128375351428986, 0.0530104860663414, -0.01749010942876339, 0.047938473522663116, 0.04680056497454643, -0.03270576894283295, 0.018970279023051262, 0.02760319411754608, 0.050441354513168335, 0.03891657665371895, -0.009330214001238346, -0.03641436621546745, -0.005841230507940054, -0.0376749262213707, 0.001951904152520001, -0.026493942365050316, 0.04860547184944153, 0.01427437737584114, 0.01141186524182558, 0.00930013693869114, 0.004121411591768265, 0.002097449731081724, -0.006500876508653164, -0.007265985012054443, -0.019892726093530655, -0.03029078245162964, 0.05367124825716019, -0.05083618313074112, 0.03910047188401222, 0.029764922335743904, -0.04042801260948181, 0.02789868600666523, 0.04141712933778763, -0.04134219512343407, 0.007192743476480246, 0.01163425575941801, 0.020764922723174095, -0.048334669321775436, -0.013474554754793644, -0.008540079928934574, -0.00828766729682684, -0.028136998414993286, 0.017622582614421844, -0.01068291999399662, 0.0016881502233445644, 0.05018605664372444, 0.01498856395483017, 0.02074846811592579, 0.047016385942697525, 0.03651604801416397, 0.017124660313129425, -0.019517136737704277, 0.04846825450658798, -0.010128890164196491, -0.011978231370449066, -0.03321176394820213, 0.08481866121292114, 0.01924484595656395, 0.046628326177597046, 0.07445374131202698, 0.0004038378829136491, 0.012200661934912205, 0.031674303114414215, 0.009199987165629864, 0.013882569968700409, -0.0031612440943717957, 0.008532676845788956, 0.021531855687499046, 0.02875065989792347, -0.0049858419224619865, 0.021088752895593643, -0.0016291176434606314, -0.024554964154958725, -0.029959043487906456, 0.03044172376394272, 0.006550854071974754, 0.007418920751661062, 0.037116628140211105, 0.02876032143831253, -0.019903315231204033, 0.012496874667704105, 0.036839477717876434, 0.07544643431901932, -0.0036215458530932665, -0.04077823832631111, -0.014439234510064125, 0.022226380184292793, -0.040902044624090195, -0.012869124300777912, 0.037270914763212204, 0.02430546097457409, -0.0030308773275464773, 0.05071904510259628, 0.0017598518170416355, -0.026260321959853172, -0.03174791485071182, -0.05604248121380806, -0.014975473284721375, -0.04182418808341026, -0.05307190865278244, 0.015552710741758347, 0.04690280556678772, -0.02859569527208805, 0.010007966309785843, 0.013999168761074543, -0.0241632591933012, -0.04346424341201782, -0.034602485597133636, 0.06587360799312592, 0.04179838299751282, 0.04048233479261398, -0.009750430472195148, 0.020732128992676735, 0.011046377941966057, 0.05230634659528732, -0.011101041920483112, -0.004442725330591202, -0.020676271989941597, 0.007618436589837074, 0.02684737928211689, -0.03258290886878967, -0.030561720952391624, -0.02741912007331848, -0.020849576219916344, -0.0474986769258976, -0.0014407736016437411, 0.013100562617182732, 0.013647297397255898, 0.031272079795598984, -0.04975090175867081, 0.041438035666942596, 0.008400723338127136, -0.038599707186222076, 0.03417961671948433, 0.012315922416746616, -0.02160392701625824, 0.02641431801021099, 0.015782125294208527, 0.04548107832670212, -0.024911321699619293, 0.021924780681729317, 0.058076415210962296, 0.005094218533486128, -0.01505384873598814, -0.024863166734576225, -0.0421261265873909, -0.012255795300006866, -0.000938383920583874, -0.056591205298900604, -0.039439067244529724, 0.037523817270994186, 0.0019518249901011586, -0.051541876047849655, 0.02632312662899494, -0.028986996039748192, -0.031827978789806366, -0.017086846753954887, -0.03226438909769058, 0.055493906140327454, 0.017892830073833466, 0.02952638827264309, 0.021738415583968163, -0.004553675185889006, -0.01411005575209856, 0.03405952453613281, 0.048395901918411255, -0.036713872104883194, 0.01602342166006565, 0.049522481858730316, -0.028034064918756485, 0.02171008661389351, 0.057442061603069305, -0.051267873495817184, 0.0018272006418555975, 0.007006712257862091, -0.009337835013866425, 0.026872143149375916, 0.03811097517609596, 0.04698450118303299, 0.02960052900016308, 0.0774952620267868, -0.0362151600420475, 0.005568972323089838, 0.04647113382816315, 0.004232120234519243, 0.02990611642599106, -0.025394728407263756, -0.010825451463460922, 0.018992837518453598, -0.04500577971339226, -0.02948891744017601, 0.03478946536779404, 0.005869970191270113, 0.03698576241731644, -0.06281140446662903, 0.05008062720298767, -0.023174025118350983, -0.00006539686728501692, 0.027120595797896385, -0.07196865975856781, -0.01127830520272255, 0.0030348014552146196, 0.020911643281579018, 0.047286976128816605, -0.059323351830244064, 0.0025874990969896317, -0.02944629266858101, 0.01189002487808466, 0.0311314444988966, -0.006682214327156544, 0.040648531168699265, -0.04306609183549881, 0.0015509414952248335, -0.03223998844623566, -0.025861650705337524, 0.00856043491512537, -0.053525254130363464, 0.009830920025706291, 0.009944050572812557, -0.02542758919298649, -0.0291148591786623, 0.016026288270950317, 0.007587131578475237, 0.04551451653242111, -0.0026822665240615606, 0.018322810530662537, -0.011070278473198414, 0.048560332506895065, 0.02274567261338234, -0.0008277632296085358, 0.010423090308904648, -0.019665369763970375, 0.04183061048388481, 0.05219413712620735, 0.012110006995499134, 0.0023106583394110203, -0.01850753277540207, -0.024202443659305573, -0.0039225113578140736, -0.013769567012786865, -0.03616117313504219, -0.03420180454850197, 0.03743612393736839, -0.0085753807798028, 0.021002821624279022, -0.04728591442108154, -0.03348451107740402, -0.02430480159819126, 0.0385684110224247, 0.035829879343509674, -0.047203488647937775, 0.00866699032485485, -0.0400988832116127, 0.017321011051535606, 0.0399656817317009, 0.0429929718375206, -0.03653179854154587, -0.027530549094080925, -0.02634274587035179, -0.03706367686390877, 0.042452406138181686, 0.0339396595954895, -0.023505816236138344, -0.011839472688734531, -0.05566157028079033, -0.01573178917169571, 0.02068500593304634, 0.014966418035328388, -0.014658752828836441, -0.007143761031329632, 0.006886004004627466, 0.004231855273246765, 0.042752884328365326, -0.005449282471090555, 0.0074214329943060875, 0.005728646647185087, -0.03738139942288399, 0.0047414954751729965, -0.027251500636339188, -0.05425593629479408, 0.019421091303229332, 0.022597119212150574, -0.004745871294289827, 0.03872118890285492, -0.012500517070293427, 0.009690491482615471, -0.026809677481651306, 0.012480240315198898, -0.04231278970837593, -0.026120249181985855, 0.03820234164595604, -0.014863631688058376, -0.03579116240143776, 0.03629497438669205, 0.025646885856986046, -0.002592068864032626, 0.015398654155433178, 0.034384116530418396, -0.020434044301509857, 0.028288908302783966, -0.04163371026515961, 0.03456004709005356, -0.002798762172460556, -0.018844163045287132, -0.015688080340623856, -0.058271218091249466, 0.027430469170212746, 0.0366029255092144, -0.019484905526041985, -0.013772224076092243, -0.06414030492305756, -0.026325326412916183, 0.006809016223996878, 0.012353310361504555, -0.0018162262858822942, 0.000489730155095458, 0.002759742783382535, -0.019006233662366867, -0.0017318595200777054, -0.028619637712836266, 0.0028552543371915817, -0.019944151863455772, 0.009510336443781853, 0.017676284536719322, 0.051870495080947876, -0.005037009250372648, -0.014335134997963905, -0.03595277667045593, 0.013353289104998112, -0.04599962383508682, -0.01723509468138218, -0.04584387689828873, -0.009701616130769253, -0.013392823748290539, -0.023628298193216324, -0.03199584037065506, 0.01913260482251644, -0.02930350787937641, 0.010336973704397678, 0.05604087561368942, 0.035975128412246704, -0.006083471700549126, 0.012381639331579208, -0.01140393316745758, 0.03256255388259888, -0.0034560877829790115, -0.027992650866508484, -0.036933135241270065, 0.026745090261101723, -0.04166952893137932, 0.03482222557067871, 0.013412595726549625, -0.06642252206802368, -0.038613494485616684, -0.06404078006744385, -0.013006518594920635, -0.02965943142771721, -0.03555396944284439, -0.04791898652911186, -0.038575418293476105, -0.022814743220806122, 0.054201435297727585, -0.0015023945597931743, -0.01194689515978098, 0.017406338825821877, -0.05453086271882057, 0.013246317394077778, -0.011258537881076336, -0.00749643798917532, -0.017833290621638298, -0.007302536629140377, -0.01709860749542713, 0.034389011561870575, -0.03283422067761421, 0.05514950305223465, 0.0321362130343914, 0.026333915069699287, 0.02769406884908676, -0.015391838736832142, -0.03894985094666481, -0.057975299656391144, -0.003602009266614914, -0.0026973842177540064, 0.011679399758577347, 0.006402861792594194, -0.03717873990535736, 0.05707459896802902, -0.04230894893407822, 0.0018385755829513073, -0.04432893916964531, 0.003118841676041484, -0.025754006579518318, -0.02199450694024563, 0.03924751281738281, -0.03153754398226738, 0.011202007532119751, -0.01531815342605114, 0.0486505888402462, 0.0375266894698143, -0.0048316786997020245, -0.03783874213695526, -0.025406401604413986, -0.06229836493730545, -0.07380407303571701, 0.030111707746982574, -0.0053482153452932835, -0.011547865346074104, -0.06204945594072342, 0.007195338141173124, 0.03503355756402016, -0.020122511312365532, 0.036563556641340256, 0.06855693459510803, -0.019959457218647003, -0.019812893122434616, -0.05136610195040703, 0.03881050646305084, 0.026818275451660156, -0.01233573630452156, -0.017898166552186012, -0.005358322057873011, -0.0635087639093399, 0.004577897489070892, -0.04632089287042618, -0.03541875258088112, -0.046900272369384766, -0.008798278868198395, 0.04790347069501877, -0.045488324016332626, 0.06644261628389359, -0.012660454958677292, -0.06187261641025543, -0.030702777206897736, 0.0432513989508152, 0.04966682195663452, 0.0010198301170021296, 0.023760108277201653, -0.009717406705021858, -0.034553512930870056, 0.015133589506149292, -0.021385394036769867, -0.016435982659459114, -0.02727820910513401, 0.04880702123045921, 0.008798262104392052, -0.047269970178604126, 0.025250067934393883, 0.03594530001282692, -0.0834638699889183, -0.012644357979297638, -0.0014901001704856753, 0.00018175459990743548, -0.003842913778498769, 0.0009239075006917119, -0.0028038006275892258, -0.02001776546239853, 0.022487079724669456, 0.04189881309866905, 0.05261820927262306, -0.014157717116177082, 0.018630580976605415, 0.006853295955806971, 0.03380787372589111, -0.044042572379112244, -0.027488332241773605, 0.016333790495991707, -0.012859314680099487, -0.03370083123445511, -0.02603452280163765, -0.02071007899940014, 0.013107667677104473, 0.003718629013746977, 0.039270296692848206, -0.017932020127773285, -0.021045446395874023, 0.011499512009322643, -0.012448715977370739, 0.04484259709715843, 0.014879281632602215, 0.0024722812231630087, 0.0037741693668067455, -0.008598125539720058, -0.06376186013221741, -0.045467667281627655, -0.0058782706037163734, -0.005406699609011412, 0.008207088336348534, -0.05872172489762306, 0.005071477964520454, 0.03775808960199356, -0.0005674721905961633, -0.02761910855770111, -0.02577221393585205, -0.04399038478732109, -0.050577372312545776, -0.04303976520895958, -0.02747371979057789, -0.009777813218533993, -0.03041084110736847, 0.024481842294335365, 0.03224736079573631, -0.007396777626127005, -0.026517214253544807, -0.003100637812167406, -0.007813923992216587, 0.008903110399842262, -0.0394195131957531, 0.044376298785209656, -0.036807600408792496, -0.04115988314151764, -0.010870669037103653, -0.011959360912442207, -0.02209881693124771, -0.007973291911184788, 0.011672161519527435, 0.00715227285400033, -0.03755420073866844, 0.03769783675670624, 0.0007736056577414274, 0.04227408394217491, -0.007168854121118784, -0.012878276407718658, -0.0007009787950664759, 0.027597006410360336, -0.023657428100705147, 0.0333067812025547, 0.006505794357508421, -0.0351671539247036, 0.008884880691766739, 0.020958740264177322, -0.028040152043104172, -0.024136394262313843, -0.01361517421901226, 0.026616759598255157, 0.012758259661495686, -0.04489854350686073, -0.03171344846487045, -0.016035232692956924, -0.02024509198963642, 0.02478357031941414, -0.013085046783089638, -0.022872861474752426, 0.015332053415477276, 0.009285257197916508, 0.019792841747403145, 0.051205407828092575, -0.010345128364861012, 0.0316365621984005, 0.0013682860881090164, 0.024061378091573715, 0.023041076958179474, -0.013655810616910458, 0.0422249399125576, 0.0012693420285359025, 0.027744660153985023, -0.022148624062538147, -0.02473837323486805, 0.011815502308309078, 0.020869160071015358, 0.013897939585149288, -0.016191957518458366, 0.005907770711928606, -0.02874372899532318, -0.004462204407900572, -0.019820615649223328, 0.023173049092292786, 0.0022612239699810743, 0.022517353296279907, 0.01242765411734581, -0.031588874757289886, -0.06346270442008972, -0.006665847264230251, -0.030192485079169273, -0.027441764250397682, 0.021562958136200905, -0.019404789432883263, -0.012357598170638084, -0.02159980498254299, -0.04497885704040527, 0.022681720554828644, -0.048262130469083786, -0.005793750751763582, -0.019802123308181763, 0.012266525067389011, 0.0014948506141081452, 0.05328262969851494, -0.01712603121995926, -0.003504787338897586, -0.0035424144007265568, 0.03735480457544327, -0.05393292382359505, -0.04900036379694939, 0.025154268369078636, 0.0073797572404146194, 0.03768058866262436, 0.00519750639796257, -0.04682450369000435, 0.016797401010990143, 0.013774539344012737, 0.016427790746092796, 0.008725800551474094, -0.008440244942903519, 0.016276903450489044, 0.051827140152454376, -0.03460307419300079, -0.051810260862112045, -0.03235376626253128, 0.0438745878636837, -0.023859046399593353, -0.01190610509365797, -0.005618762690573931, 0.062289584428071976, 0.019389573484659195, 0.010642101056873798, 0.053720083087682724, 0.05094224587082863, 0.03438784182071686, -0.032147593796253204, 0.005807302892208099, -0.020653340965509415, 0.05555625259876251, 0.03833901882171631, 0.017254764214158058, -0.012480582110583782, 0.010842408053576946, 0.030012093484401703, -0.022644685581326485, 0.017305638641119003, 0.005350825842469931, 0.04465979337692261, -0.0345887616276741, 0.004295996390283108, -0.015526714734733105, 0.001271212357096374, -0.019952442497015, 0.012890037149190903, 0.011802859604358673, -0.045170076191425323, 0.009172024205327034, -0.01850719377398491, -0.017367083579301834, 0.04568859934806824, -0.02749824896454811, 0.023562714457511902, 0.010495861992239952, 0.004897949751466513, 0.004123849328607321, 0.03454292193055153, -0.010153282433748245, 0.0005013677873648703, 0.046225953847169876, 0.022777942940592766, 0.004009538795799017, 0.05964414402842522, 0.007283647544682026, 0.004851655103266239, -0.04227440431714058, 0.005304694641381502, 0.023282036185264587, 0.010608985088765621, -0.027404116466641426, -0.005665850825607777, -0.03493894636631012, 0.04717957228422165, -0.04478977993130684, -0.0007806533831171691, 0.03170761838555336, -0.015265124849975109, -0.03415108099579811, -0.035928867757320404, 0.022143157199025154, -0.03426704555749893, 0.021775588393211365, 0.02917221002280712, -0.01712019182741642, -0.03179454803466797, 0.04636964946985245, 0.00790735799819231, 0.06655697524547577, 0.032646529376506805, 0.07095056027173996, 0.01600838638842106, 0.026741433888673782, 0.0591154620051384, -0.045099079608917236, -0.02942010387778282, 0.013095305301249027, -0.01221406552940607, -0.04485567286610603, -0.004864803049713373, -0.01127915270626545, -0.013333127833902836, -0.0026428408455103636, -0.006660743150860071, -0.03782770782709122, 0.04282548278570175, 0.005332282744348049, -0.047317974269390106, -0.005166567396372557, 0.009748968295753002, -0.041422534734010696, 0.052975572645664215, 0.028922511264681816, 0.034983180463314056, -0.039333075284957886, -0.02437962405383587, -0.03267388045787811, -0.02054605633020401, -0.006742839701473713, -0.027356760576367378, 0.03459371626377106, -0.02236803062260151, -0.04940323531627655, -0.041504740715026855, -0.042461149394512177, -0.018171435222029686, 0.0008571901707910001, -0.05030959099531174, -0.046394139528274536, 0.059657927602529526, 0.026969386264681816, -0.014818144962191582, 0.012126296758651733, -0.010443955659866333, 0.029240339994430542, 0.031252652406692505, 0.05324818938970566, 0.009156012907624245, 0.08012302219867706, 0.033268220722675323, -0.02264043316245079, 0.028946107253432274, -0.022740764543414116, 0.043089356273412704, -0.012179868295788765, -0.025697914883494377, -0.017389606684446335, 0.001371651072986424, -0.026524821296334267, -0.049348458647727966, 0.01884910650551319, 0.01654084585607052, 0.009685114026069641, -0.028006426990032196, -0.07834847271442413, 0.025081316009163857, -0.06412436813116074, -0.020742377266287804, -0.029769424349069595, 0.014498271979391575, 0.00887409970164299, -0.004879527259618044, 0.03655595704913139, -0.044209033250808716, 0.1426001489162445, 0.06181277334690094, 0.03706728294491768, 0.007650385610759258, 0.014181873761117458, 0.03244215250015259, 0.0029027727432549, -0.022233985364437103, -0.02325875498354435, -0.02180735021829605, 0.06116602569818497, -0.02236769162118435, 0.04121093079447746, 0.015901651233434677, -0.0022904991637915373, 0.02967594750225544, -0.00806256104260683, 0.002138956682756543, 0.019061796367168427, -0.04279477149248123, -0.027950624004006386, 0.020600996911525726, 0.00812166091054678, 0.004035494290292263, 0.0040950654074549675, 0.022466817870736122, 0.03334008902311325, -0.04603562876582146, -0.004197373520582914, -0.041361719369888306, 0.06029166653752327, -0.03694508597254753, 0.055198412388563156, 0.003273116424679756, -0.0022857659496366978, 0.03804561495780945, 0.03757380694150925, -0.02962356060743332, -0.00461970129981637, -0.015041150152683258, -0.025556445121765137, 0.017231693491339684, 0.016644185408949852, -0.014542960561811924, 0.01693984866142273, 0.017612053081393242, -0.023885110393166542, 0.0320657417178154, 0.009950469247996807, -0.016128484159708023, 0.0701579824090004, -0.03489978238940239, 0.03682086244225502, -0.029702050611376762, -0.02505001425743103, 0.022000225260853767, 0.009437133558094501, -0.006791072431951761, 0.002079201629385352, -0.001204917673021555, 0.033664580434560776, 0.0075395978055894375, -0.021800218150019646, -0.007033708970993757, -0.02781214751303196, -0.009170932695269585, 0.012796965427696705, 0.006808497477322817, 0.016864316537976265, -0.02716146595776081, 0.004328754264861345, -0.03228020668029785, 0.0096098268404603, -0.03630872443318367, 0.05485324189066887, 0.022089166566729546, -0.022306226193904877, 0.026388736441731453, 0.03195842728018761, -0.04348912462592125, -0.0015037873527035117, -0.07624102383852005, -0.021496055647730827, -0.026554815471172333, 0.062185462564229965, 0.04479096457362175, -0.041804902255535126, -0.04817521944642067, -0.047203969210386276, 0.04290592670440674, 0.02799770049750805, 0.004835499916225672, -0.001051138387992978, 0.009028174914419651, -0.006537708453834057 ]
This location is close to everything! Updating throughout, end unit wit lots of light! All new... engineered hardwood flooring, carpet, interior paint, plumbing fixtures, electrical fixtures, door & closet hardware. Kitchen has new cabinets, granite counter tops, trough sink, subway tile back splashes, raised ceiling with can lights. Main level with all new blinds. Community grounds and pool. All exterior maintenance covered by HOA. Garage has extra shop area off 2 car space for extra storage or small shop. Legal Description UNIT6 BLDG V 1808 SQFT CARRIAGE PK AT BOISE CONDOMINIUM.
[ -0.003265322418883443, 0.03819216415286064, -0.01615724340081215, -0.004842071328312159, -0.04445987194776535, -0.00519541883841157, -0.018743028864264488, 0.04608458653092384, 0.013024535961449146, 0.01820790208876133, 0.032682865858078, 0.024048060178756714, 0.0006128112436272204, -0.041764505207538605, -0.01645834930241108, -0.010702962055802345, -0.04570477455854416, 0.005766458809375763, -0.0241893008351326, 0.015260404907166958, -0.021187203004956245, -0.004194526933133602, -0.08472760021686554, -0.02182130701839924, -0.00921763014048338, 0.025328144431114197, 0.019618019461631775, -0.031612329185009, 0.03852264583110809, 0.0630408525466919, -0.02544340305030346, -0.01938398741185665, 0.02585671842098236, -0.05200473964214325, -0.042815305292606354, -0.006321130786091089, 0.03188265860080719, 0.009781623259186745, -0.029495231807231903, -0.07611008733510971, -0.006033649202436209, -0.00271085393615067, 0.032983023673295975, -0.017663640901446342, -0.026982778683304787, -0.008030724711716175, -0.02038748934864998, -0.03937340900301933, 0.038608528673648834, -0.03926814720034599, 0.020725203678011894, -0.0025383951142430305, 0.01942545548081398, -0.0267524104565382, 0.008186344988644123, 0.03377736359834671, -0.04360789805650711, 0.00705580972135067, 0.0010214645881205797, 0.049976374953985214, 0.025218049064278603, -0.01604445092380047, 0.0283737163990736, -0.052443962544202805, 0.03675821051001549, 0.04740992188453674, 0.013794643804430962, -0.007857926189899445, 0.024695688858628273, -0.03498405963182449, 0.00508748646825552, -0.012214167974889278, -0.012491433881223202, -0.03306642919778824, 0.007076461799442768, -0.008761076256632805, -0.0014463632833212614, 0.031190577894449234, -0.03000633977353573, -0.021267175674438477, 0.0234361719340086, 0.01636163331568241, 0.034594159573316574, -0.0010106443660333753, -0.029723212122917175, -0.027866866439580917, -0.013342747464776039, 0.03413093462586403, -0.006639046594500542, 0.012218036688864231, 0.006873547099530697, 0.04902015998959541, 0.018129903823137283, 0.006778276525437832, 0.03604842722415924, 0.019381191581487656, -0.031026162207126617, 0.04342077672481537, 0.03366038575768471, -0.00002706976556510199, -0.00012470381625462323, 0.019902026280760765, 0.012457258068025112, 0.05215965211391449, -0.04049914330244064, 0.017342234030365944, -0.009388560429215431, -0.0033044638112187386, -0.01781398244202137, -0.03553861379623413, 0.019842300564050674, -0.026305072009563446, 0.027761342003941536, 0.009661762043833733, -0.007573429495096207, 0.0613059476017952, 0.01241238322108984, 0.04805303364992142, -0.02865591086447239, 0.019864244386553764, 0.07604869455099106, -0.014666714705526829, 0.014747267588973045, -0.028075870126485825, 0.03236091136932373, -0.03312952443957329, -0.0275130458176136, 0.06157365068793297, -0.022448262199759483, -0.009082917124032974, -0.006088235881179571, -0.05560889095067978, -0.009096221998333931, 0.0021656423341482878, -0.008558291010558605, -0.016868913546204567, 0.006723787169903517, 0.04807590693235397, -0.0050251721404492855, -0.03274146094918251, 0.05266067385673523, 0.026361148804426193, 0.006086129229515791, 0.08471493422985077, 0.010257387533783913, 0.04078124463558197, 0.015002235770225525, 0.009105121716856956, -0.050929922610521317, 0.001594011322595179, -0.016279201954603195, 0.03865834325551987, -0.017418041825294495, 0.02620764449238777, 0.009302649646997452, -0.008707360364496708, -0.0011918011587113142, 0.02380462735891342, -0.010957901366055012, 0.029509687796235085, -0.00453191390261054, 0.007335171569138765, -0.003843784797936678, 0.018448080867528915, -0.021791795268654823, 0.03671806678175926, -0.047058820724487305, -0.032486531883478165, -0.03490171208977699, -0.034542784094810486, 0.022728193551301956, -0.005684512667357922, -0.029995594173669815, -0.0030667681712657213, 0.012472517788410187, 0.0383102186024189, 0.07838304340839386, 0.028806418180465698, 0.016874978318810463, 0.041407205164432526, -0.025529390200972557, -0.019539566710591316, 0.02285541407763958, 0.053864091634750366, 0.015334044583141804, -0.021047096699476242, 0.015644289553165436, -0.018554117530584335, -0.050442252308130264, -0.03677833452820778, -0.026943214237689972, 0.024908870458602905, 0.0026756974402815104, 0.020005295053124428, -0.00495905289426446, 0.012638227082788944, -0.008567389100790024, -0.024711184203624725, -0.03168892487883568, -0.03359207883477211, -0.013445093296468258, 0.054438769817352295, -0.024613719433546066, 0.017643913626670837, 0.03974376246333122, -0.03535519912838936, 0.036580510437488556, 0.08381995558738708, -0.024098491296172142, 0.00009035516995936632, 0.03344365954399109, 0.01216664258390665, -0.03841700032353401, -0.007914092391729355, 0.006512727588415146, -0.00662864139303565, -0.021640194579958916, 0.06449867784976959, 0.009569731540977955, 0.011423222720623016, 0.014841016381978989, 0.025802820920944214, 0.028895404189825058, 0.04271484538912773, -0.0015356449875980616, 0.0004697464464697987, 0.028048882260918617, 0.03837841749191284, -0.006524152588099241, -0.013904108665883541, -0.023511573672294617, 0.01957828551530838, 0.0013836671132594347, 0.0378134623169899, 0.01946845091879368, 0.01802668534219265, 0.04100615158677101, 0.010947230271995068, -0.016205722466111183, 0.053774017840623856, 0.004571524914354086, 0.009794999845325947, 0.026967938989400864, 0.012370629236102104, -0.029191963374614716, 0.025097643956542015, -0.00830125156790018, -0.018623337149620056, -0.03309866040945053, 0.02273838222026825, -0.02116023562848568, 0.009534764103591442, 0.010340637527406216, 0.045287005603313446, -0.014970053918659687, 0.000630912953056395, 0.0401395708322525, 0.046239517629146576, -0.027426734566688538, 0.026938380673527718, 0.0049025192856788635, 0.018986836075782776, -0.022730236873030663, 0.0029358286410570145, 0.046032100915908813, 0.018085826188325882, -0.0076784975826740265, -0.012501224875450134, -0.017120160162448883, -0.022199401631951332, -0.04574385657906532, -0.02171836607158184, -0.06748194992542267, -0.02116926945745945, -0.051154911518096924, -0.0005807021516375244, 0.021345432847738266, -0.0008842943352647126, 0.015243621543049812, -0.03862866759300232, -0.005055200774222612, -0.022826937958598137, -0.006590717006474733, 0.04749077185988426, 0.025250514969229698, 0.042992863804101944, -0.01073895301669836, 0.0324280820786953, -0.01952264830470085, 0.026543879881501198, -0.03228551894426346, -0.021391626447439194, -0.018530501052737236, -0.009106318466365337, -0.01837141253054142, -0.0553852878510952, -0.0019998587667942047, -0.012488963082432747, -0.049388397485017776, -0.07264521718025208, 0.00724031450226903, 0.012765055522322655, -0.03768519312143326, 0.0004596494254656136, -0.03764278069138527, 0.05917944759130478, 0.03607511147856712, -0.0008980752318166196, 0.04023459926247597, 0.06950985640287399, -0.02151462994515896, 0.030771741643548012, 0.009826676920056343, 0.024181736633181572, -0.0610409639775753, 0.02285495214164257, 0.06438393890857697, 0.03335949406027794, -0.04668409377336502, -0.02962568588554859, -0.006308451760560274, 0.0036555053666234016, 0.010838205926120281, -0.010297397151589394, -0.01720442622900009, 0.04227934777736664, 0.040357232093811035, -0.08643965423107147, -0.010539805516600609, -0.059970833361148834, -0.022693930193781853, -0.053279172629117966, -0.02207755856215954, 0.007658427581191063, 0.01982681266963482, 0.031476106494665146, 0.011040528304874897, -0.04618489369750023, 0.006386017892509699, 0.01030892413109541, 0.08424579352140427, -0.025516586378216743, 0.008597842417657375, 0.03489474579691887, 0.01691288687288761, 0.018839869648218155, 0.038824498653411865, -0.01895793154835701, -0.01364347618073225, 0.007601397577673197, 0.000015966801583999768, -0.0006540130125358701, 0.02741136960685253, 0.011067794635891914, 0.013186926022171974, 0.04855094850063324, -0.04827021434903145, 0.009991921484470367, 0.004744178149849176, -0.00023768232495058328, 0.03688432648777962, 0.008970092050731182, 0.007433970924466848, -0.03219304233789444, -0.06975658237934113, -0.06086879223585129, 0.029999254271388054, -0.01589091122150421, 0.04313639923930168, -0.05084524303674698, 0.05993250012397766, -0.007350702304393053, -0.019814610481262207, 0.03672070801258087, -0.03482350334525108, -0.017171233892440796, 0.03934086859226227, -0.0182386115193367, 0.003183821914717555, 0.009644574485719204, 0.014532169327139854, -0.011182017624378204, 0.010259243659675121, 0.04434417933225632, -0.003491308307275176, 0.03493620827794075, -0.05149810388684273, -0.017570650205016136, -0.01727495901286602, -0.0010607861913740635, -0.03986320272088051, -0.04162706807255745, 0.007597644347697496, 0.010064828209578991, -0.051521461457014084, -0.06179970130324364, 0.038084376603364944, 0.04604402557015419, 0.03312073275446892, -0.0211735051125288, 0.022162266075611115, 0.007977052591741085, 0.03818855807185173, 0.041399579495191574, -0.04291848465800285, 0.030858920887112617, -0.025866782292723656, 0.025145109742879868, 0.024114996194839478, 0.0032229337375611067, -0.02520667389035225, -0.025849975645542145, -0.032237131148576736, 0.061555296182632446, -0.036017026752233505, 0.0034779037814587355, -0.019588636234402657, 0.0044813561253249645, -0.02897455543279648, 0.011236896738409996, -0.04871222749352455, -0.00611979840323329, -0.04012123495340347, 0.027962950989603996, 0.032939061522483826, -0.05681309849023819, 0.0035499155055731535, -0.046020060777664185, 0.04122842103242874, 0.06895104795694351, -0.02205718867480755, -0.021630264818668365, -0.0352008081972599, 0.0022898514289408922, 0.0000010429357644170523, 0.02343839965760708, 0.03845364600419998, -0.02049524337053299, -0.011965752579271793, -0.029268313199281693, 0.01623287796974182, 0.018166199326515198, -0.03359143063426018, -0.027537234127521515, 0.001573655172251165, -0.002760515781119466, -0.020423296838998795, 0.026439307257533073, 0.007704300340265036, -0.020879564806818962, -0.012625263072550297, -0.04845817759633064, 0.0007891596760600805, -0.0011168272467330098, -0.01504093874245882, 0.007134999148547649, 0.025776218622922897, 0.01188065018504858, 0.025348559021949768, 0.009253669530153275, 0.04412449151277542, -0.005841097794473171, 0.017123933881521225, -0.03318184241652489, -0.026215363293886185, 0.03899853676557541, -0.017612501978874207, -0.024823235347867012, 0.021240802481770515, 0.051022373139858246, -0.03309665247797966, 0.005610389169305563, 0.026343612000346184, -0.04311845824122429, 0.03577403724193573, -0.05706328898668289, 0.0067861368879675865, -0.034738682210445404, -0.03398940712213516, 0.02108553610742092, -0.027779700234532356, 0.021073153242468834, 0.0023673116229474545, 0.007272868417203426, -0.05732092261314392, -0.060469213873147964, -0.034800175577402115, -0.009235742501914501, -0.03132282570004463, 0.04713040217757225, 0.021004246547818184, -0.014115207828581333, 0.012223310768604279, -0.033150508999824524, 0.0397457517683506, -0.008833548985421658, -0.020824413746595383, 0.03209584951400757, 0.021983416751027107, -0.010845251381397247, 0.010711533948779106, -0.007766952272504568, -0.006646334193646908, 0.0075980680994689465, -0.01478822436183691, -0.030171388760209084, -0.06758736819028854, 0.016282863914966583, -0.0065177325159311295, 0.028514698147773743, -0.05459539592266083, 0.008714631199836731, -0.019452108070254326, 0.005598799791187048, 0.018836818635463715, 0.0003543623606674373, 0.019384827464818954, 0.0013354556867852807, 0.005902441218495369, 0.024437198415398598, 0.062041185796260834, -0.030752571299672127, -0.024221651256084442, 0.022988690063357353, 0.02316971868276596, 0.04604639112949371, 0.01177070289850235, 0.002940189791843295, -0.035877618938684464, -0.03303837031126022, 0.03223775699734688, -0.03416823968291283, -0.020878180861473083, -0.049054764211177826, -0.042773254215717316, -0.00970988068729639, 0.028569957241415977, 0.0170117374509573, 0.012268271297216415, 0.019112620502710342, -0.01138280238956213, 0.01606762409210205, -0.026014262810349464, -0.031688887625932693, -0.05100557580590248, 0.0042520444840192795, -0.013200436718761921, 0.04526917636394501, 0.0013995901681482792, -0.0007278642733581364, -0.0005370901199057698, 0.01076996698975563, 0.015371299348771572, 0.0065415664575994015, -0.04401644319295883, -0.03270230442285538, -0.0012345982249826193, -0.02308800257742405, -0.0031256850343197584, 0.014299163594841957, -0.032454751431941986, 0.045739248394966125, -0.026198243722319603, -0.04194138944149017, -0.02849462628364563, -0.027120301499962807, -0.010963460430502892, -0.01877027004957199, 0.025059130042791367, -0.02267722599208355, -0.015623101964592934, -0.01693069003522396, 0.04913248121738434, 0.035584233701229095, 0.0008533303043805063, -0.029487529769539833, -0.0762777104973793, -0.052879881113767624, -0.051576510071754456, 0.025637974962592125, -0.05026540532708168, -0.01084118988364935, -0.04681672528386116, -0.019038952887058258, 0.011833617463707924, 0.01290009543299675, 0.054662641137838364, 0.0699457898736, -0.029742324724793434, 0.012814215384423733, -0.06404848396778107, 0.04881642386317253, 0.04506230726838112, -0.025629578158259392, -0.028178418055176735, -0.013563389889895916, -0.026089176535606384, 0.04568256810307503, -0.04376506060361862, -0.06459024548530579, -0.059581488370895386, -0.02281028777360916, 0.07832766324281693, -0.00090558867668733, 0.05511339381337166, -0.005437093786895275, -0.03411228954792023, -0.03932733088731766, 0.04436052590608597, -0.004096643999218941, 0.037641119211912155, 0.05874338001012802, -0.004471682943403721, -0.02484510838985443, 0.044464193284511566, 0.028313037008047104, 0.013120617717504501, -0.040245868265628815, 0.06682336330413818, -0.003416484920307994, -0.0538034625351429, 0.02247227542102337, 0.07812377065420151, -0.06808848679065704, -0.0581790991127491, -0.009818661026656628, -0.0110727334395051, 0.015932483598589897, -0.04091368615627289, 0.008782588876783848, -0.0162131879478693, -0.004886968992650509, 0.02613917551934719, 0.012794744223356247, 0.03383122757077217, 0.06767722964286804, 0.011737443506717682, 0.031194141134619713, -0.061162497848272324, -0.04383937269449234, 0.051200710237026215, 0.013558123260736465, -0.019570736214518547, -0.03241667151451111, -0.03213857114315033, -0.003414181061089039, 0.03519970923662186, 0.044471319764852524, -0.021513883024454117, -0.007554363925009966, 0.044756654649972916, -0.02471137046813965, 0.05594748631119728, -0.003508419031277299, 0.025617076084017754, 0.022071143612265587, -0.02788361720740795, -0.04103172570466995, -0.033717188984155655, -0.006705965381115675, -0.007865827530622482, 0.020835304632782936, -0.030100060626864433, -0.006217662710696459, 0.04555962234735489, -0.011162481270730495, -0.006356248166412115, -0.05029686912894249, -0.032334741204977036, -0.04132135584950447, -0.04938859865069389, -0.0055663129314780235, -0.010788843035697937, 0.02786179818212986, 0.016393179073929787, -0.01840183511376381, -0.036917511373758316, 0.0027372478507459164, 0.006332216784358025, -0.04199107736349106, 0.027478523552417755, -0.02663114294409752, 0.03187303617596626, -0.026181243360042572, -0.027224291115999222, -0.05999825894832611, 0.007725944276899099, -0.03222417086362839, 0.01714630052447319, -0.021807780489325523, 0.010530145838856697, 0.018756765872240067, 0.020640529692173004, 0.004345153458416462, 0.00043877761345356703, 0.0026054037734866142, -0.06001295521855354, 0.0020672939717769623, 0.009852200746536255, 0.01464887149631977, 0.04321938380599022, 0.00741969607770443, 0.0007278767880052328, 0.043329522013664246, 0.023664863780140877, -0.022589752450585365, -0.007939801551401615, -0.009997259825468063, -0.021960003301501274, 0.00286191888153553, -0.04850891977548599, -0.05467281863093376, -0.002332894364371896, -0.019950898364186287, 0.015555907972157001, 0.01972195878624916, 0.004712522961199284, 0.019611110910773277, -0.007959714159369469, -0.03373551368713379, 0.059711843729019165, -0.01253125723451376, -0.003840672317892313, -0.02859232760965824, 0.03837336599826813, 0.02786151133477688, 0.0028015575371682644, 0.014584146440029144, -0.006736340932548046, 0.02144094742834568, -0.00867220014333725, 0.001184928580187261, 0.025306975468993187, -0.010989195667207241, 0.034522879868745804, -0.011836962774395943, -0.023463450372219086, -0.035162344574928284, -0.013292210176587105, -0.008027981035411358, 0.05441036820411682, -0.0010755050461739302, 0.0024615866132080555, 0.044454362243413925, -0.02714175544679165, -0.05134766548871994, 0.018095405772328377, -0.03113352693617344, -0.05374377220869064, 0.05117953196167946, -0.01713929884135723, 0.022097589448094368, -0.018697861582040787, -0.06658665835857391, -0.024985380470752716, -0.008621245622634888, 0.011565488763153553, -0.038084279745817184, 0.035972751677036285, 0.01142658106982708, 0.033924974501132965, 0.0068274312652647495, -0.02217111922800541, 0.028214331716299057, 0.026975547894835472, -0.023009387776255608, -0.05961816757917404, -0.0018473104573786259, 0.03588398918509483, 0.007643038406968117, -0.02268153429031372, 0.016929782927036285, 0.03702903911471367, -0.01322802621871233, -0.0030276430770754814, 0.015316931530833244, 0.028311725705862045, 0.011346690356731415, 0.027634911239147186, -0.029899008572101593, -0.010584376752376556, -0.010297649540007114, 0.052770115435123444, -0.0033123374450951815, -0.05751769617199898, -0.04644940420985222, 0.03561980277299881, 0.041846197098493576, 0.0004298794665373862, 0.032972853630781174, 0.007074207067489624, 0.028776613995432854, -0.015885794535279274, 0.022920912131667137, -0.006800784729421139, 0.04001607000827789, 0.045501552522182465, 0.04357879236340523, 0.007396509405225515, 0.02270394377410412, 0.037442322820425034, 0.035760488361120224, -0.0008823508978821337, 0.023514460772275925, 0.0200811754912138, -0.026795895770192146, 0.0022089385893195868, -0.018724819645285606, 0.00006110988761065528, 0.0009288805304095149, -0.024250531569123268, -0.013059358112514019, -0.044085923582315445, -0.011700707487761974, -0.0014165333705022931, -0.017939288169145584, 0.062135398387908936, 0.004112476482987404, -0.0033700482454150915, 0.006952175870537758, -0.014221389777958393, -0.009777982719242573, 0.029830383136868477, -0.0021401667036116123, 0.020027387887239456, 0.015335114672780037, 0.020078370347619057, 0.0028108987025916576, 0.04445420205593109, 0.03346851095557213, 0.01982826367020607, -0.029386108741164207, 0.029464012011885643, 0.01605152152478695, -0.01107092946767807, -0.017531709745526314, -0.013019458390772343, -0.021472403779625893, 0.02536613680422306, -0.0077474405989050865, -0.027142152190208435, 0.037507060915231705, -0.046460799872875214, -0.026446154341101646, -0.03665192797780037, 0.029275495558977127, -0.049585405737161636, -0.010975374840199947, 0.06764531135559082, -0.02397170662879944, -0.013189681805670261, 0.051509153097867966, -0.010432290844619274, 0.008929218165576458, 0.025017788633704185, 0.050601355731487274, -0.0037096161395311356, 0.06549350172281265, 0.043133024126291275, -0.034959547221660614, 0.007710697595030069, 0.018047889694571495, -0.0026682887692004442, -0.04162007197737694, -0.04281085357069969, -0.01309185940772295, -0.02001536451280117, -0.0060838875360786915, -0.036457035690546036, 0.01880473643541336, 0.029700439423322678, 0.004653973504900932, -0.042766671627759933, -0.022278202697634697, 0.03500569239258766, -0.032242972403764725, 0.01532329898327589, 0.027249092236161232, 0.052462514489889145, -0.007068324368447065, -0.01121845655143261, -0.009896282106637955, -0.04705177620053291, 0.017158251255750656, -0.0074260039255023, 0.04682236909866333, -0.008606958203017712, -0.016611553728580475, -0.05152806267142296, -0.03935497626662254, -0.027562642470002174, -0.01049778237938881, -0.04520179703831673, -0.057916734367609024, 0.006805292796343565, 0.04110274091362953, 0.015590905211865902, 0.022241592407226562, -0.040082696825265884, -0.0010527330450713634, 0.012528796680271626, 0.056462690234184265, -0.024991018697619438, 0.06506108492612839, 0.028177771717309952, 0.00811369251459837, -0.003149996977299452, 0.004810416605323553, 0.052105862647295, -0.05786866694688797, -0.023177670314908028, -0.0340748205780983, 0.017740236595273018, -0.026683134958148003, -0.04406309872865677, 0.023294564336538315, 0.011656202375888824, 0.004523338284343481, -0.02588937245309353, -0.05843641236424446, -0.01000592764467001, -0.03699522465467453, -0.04211411252617836, -0.037915535271167755, 0.009540180675685406, 0.018016580492258072, 0.020094433799386024, 0.020913461223244667, -0.07439349591732025, 0.14034461975097656, 0.05731496587395668, 0.04286368563771248, 0.02780943177640438, 0.018846511840820312, 0.04445323720574379, -0.008901192806661129, -0.018840987235307693, -0.030767176300287247, -0.048214856535196304, 0.010034834034740925, -0.006638485938310623, 0.03235732764005661, 0.01445411890745163, 0.04611024633049965, 0.034494996070861816, -0.03426973521709442, 0.025700613856315613, 0.024283956736326218, -0.04079100862145424, -0.06181562691926956, 0.007412012200802565, -0.018828846514225006, 0.02130933478474617, 0.014406038448214531, 0.02146371454000473, -0.009233230724930763, -0.054484765976667404, -0.010896310210227966, -0.03983073681592941, 0.013094677589833736, -0.018468283116817474, 0.025229748338460922, 0.021453892812132835, -0.04209024831652641, 0.051619309931993484, 0.004722101613879204, -0.010937429033219814, 0.01034669578075409, -0.009655357338488102, -0.027104463428258896, -0.005163800437003374, 0.019989890977740288, -0.03854801505804062, -0.002806663978844881, 0.009332575835287571, -0.0284993015229702, -0.016156503930687904, 0.027483178302645683, -0.04808792471885681, 0.07401075959205627, -0.016977962106466293, 0.018637346103787422, 0.004836161620914936, -0.02679193764925003, 0.0087656294927001, 0.009712105616927147, -0.012653075158596039, 0.023305151611566544, 0.024179264903068542, 0.044308852404356, -0.007905309088528156, -0.034856460988521576, 0.029017146676778793, -0.02761390432715416, -0.020078888162970543, 0.01914156787097454, 0.015543343499302864, 0.000729319523088634, -0.029461300000548363, -0.0009316718205809593, -0.008715825155377388, -0.04004918783903122, -0.00588535750284791, 0.06871416419744492, 0.05231313779950142, -0.02622300758957863, 0.05697026476264, 0.004460926633328199, -0.02664058469235897, -0.020354297012090683, -0.029947837814688683, -0.0016558864153921604, -0.01584135740995407, 0.03105301409959793, 0.04205485060811043, -0.04697217792272568, -0.03181847557425499, -0.03505389392375946, 0.053060442209243774, 0.03583764657378197, 0.026601877063512802, -0.006645405665040016, -0.007179033011198044, -0.02956751547753811 ]
Click the button below to add the The Infant and Toddler Classroom to your wish list. Description: (3 hours) Online Self-Paced – Open Enrollment * To understand the role of the caregiver in creating an environment for infants and toddlers that is safe, and fosters their motor skills, cognitive development, and social/emotional growth. When we talk about the infant/toddler environment, we define it as a space that is appropriately equipped to meet the needs of the children. The environment should be highly functional, attractive, and age appropriate. It should also allow for appropriate movement, such as crawling, climbing, running, and jumping. Identify ways for families to share their cultural and family preferences for the child's eating habits, needs, and food preferences. Describe ways to give and receive information from parents. Define an ideal environment in an infant/toddler classroom. List activities that may encourage an infant or toddler to explore his/her environment. Describe why it is important to establish routines for infants and toddlers. Identify ways to provide space to allow private time for children. I especially liked the video. I especially liked the video. Seeing as well as hearing the training is helpful. I learned many things about enhancing the infants learning through this lesson. The training provided a lot of good information that I will definitely be able to use in my classroom. The whole training was very useful.
[ -0.01164912898093462, 0.03264499083161354, -0.01659492217004299, -0.003111243713647127, -0.015115723945200443, -0.014622299000620842, -0.02500797249376774, 0.03752435743808746, 0.022148476913571358, -0.0007701169815845788, 0.015227187424898148, 0.03643326461315155, 0.01360311545431614, -0.02528201974928379, 0.014677383005619049, -0.006271905265748501, -0.03370244428515434, -0.04869462922215462, -0.047940563410520554, -0.018192052841186523, -0.0010805161437019706, 0.015450340695679188, -0.07253126800060272, -0.012556133791804314, -0.01436066534370184, 0.029141675680875778, 0.011491985060274601, -0.0007594912312924862, 0.045917849987745285, 0.05355247110128403, -0.011124800890684128, -0.025265779346227646, 0.020796382799744606, -0.006415081210434437, -0.019726131111383438, -0.01697218418121338, 0.03799056261777878, -0.027791203930974007, -0.015262942761182785, -0.05908724293112755, 0.020289918407797813, -0.016311537474393845, 0.041537750512361526, -0.06795963644981384, -0.03762395307421684, 0.010120654478669167, 0.010190609842538834, -0.005133118014782667, 0.028263723477721214, -0.026823626831173897, 0.04034148156642914, 0.003806732827797532, 0.01607571542263031, -0.0025290020275861025, 0.017035245895385742, 0.011458262801170349, 0.00020491430768743157, -0.022399816662073135, -0.03940705955028534, 0.04766266793012619, 0.008269159123301506, 0.002543409587815404, 0.007108844816684723, -0.07312742620706558, 0.024103723466396332, 0.006227277219295502, 0.015024960972368717, -0.006576389539986849, -0.024605553597211838, -0.0009304049890488386, -0.022429371252655983, 0.004150039982050657, -0.0013782617170363665, -0.025140590965747833, 0.01620127260684967, 0.009365791454911232, 0.011324627324938774, -0.004611650947481394, -0.01671523042023182, 0.02563473954796791, 0.011967605911195278, 0.05409681424498558, 0.04203483834862709, 0.00028072207351215184, -0.03888192027807236, -0.059352464973926544, 0.0015818611718714237, 0.0024824277497828007, -0.017816461622714996, 0.002532390644773841, 0.019279133528470993, 0.05494837835431099, -0.021913718432188034, -0.02369815483689308, 0.04503581300377846, 0.029833627864718437, -0.0337381586432457, 0.030380986630916595, 0.019026629626750946, -0.011631457135081291, 0.06159580871462822, -0.007099218666553497, 0.010655438527464867, 0.02987123467028141, -0.08371545374393463, 0.01918013021349907, -0.011190220713615417, -0.02533905766904354, -0.02588745579123497, -0.023030858486890793, -0.007089321035891771, -0.012524066492915154, 0.01147267036139965, -0.0022444864735007286, -0.021430181339383125, 0.07003665715456009, 0.01016869768500328, 0.053058601915836334, -0.06360027194023132, 0.00897957757115364, 0.014634317718446255, 0.013744620606303215, 0.02980322763323784, -0.03361279517412186, 0.03426824510097504, -0.018046129494905472, -0.04068906232714653, 0.04546109586954117, -0.025399446487426758, 0.004050300922244787, -0.03533365949988365, -0.037833910435438156, 0.0011302635539323092, 0.01615200936794281, -0.006503928918391466, 0.012316984124481678, -0.014983860775828362, 0.012511574663221836, 0.017675455659627914, -0.07622477412223816, 0.021322457119822502, 0.02781439758837223, 0.00915641337633133, 0.07643987983465195, 0.020284565165638924, 0.03018052875995636, -0.01982239820063114, 0.005003122612833977, -0.04688943177461624, 0.003292710054665804, -0.018928691744804382, 0.036758799105882645, 0.006928194314241409, 0.026897581294178963, 0.004527010023593903, 0.0015356806106865406, -0.015297777950763702, 0.019496742635965347, -0.002240413799881935, 0.017918195575475693, -0.01571868546307087, 0.01878819428384304, -0.04095558822154999, 0.027433739975094795, -0.027771493420004845, 0.036318715661764145, -0.02533593587577343, -0.011809204705059528, -0.010459939017891884, -0.029214870184659958, -0.0031322413124144077, -0.009240738116204739, 0.002648931695148349, -0.006366930902004242, 0.016637077555060387, 0.0402367077767849, 0.04885058477520943, 0.025087444111704826, 0.037134427577257156, 0.03641644865274429, -0.03551724925637245, -0.03555547446012497, 0.004884729161858559, 0.041264891624450684, 0.0385148711502552, -0.012742355465888977, 0.008617005310952663, 0.002181211020797491, -0.07096990197896957, -0.024999549612402916, -0.013544593937695026, 0.03157617524266243, -0.05767623335123062, 0.011432178318500519, 0.039268847554922104, 0.017852112650871277, -0.018928447738289833, 0.0013065231032669544, -0.01899104192852974, -0.0456836000084877, -0.04890936613082886, 0.03554658219218254, -0.01286433544009924, 0.02072511799633503, 0.02475411258637905, -0.008690118789672852, 0.009957434609532356, 0.05894063040614128, -0.03795311227440834, -0.0021540913730859756, 0.03377356007695198, 0.03169972449541092, -0.030862415209412575, 0.021471384912729263, 0.018877411261200905, -0.041317034512758255, -0.03751546889543533, 0.03266330808401108, -0.0035317810252308846, 0.004053816199302673, 0.00955001451075077, 0.007782087195664644, 0.04249019920825958, 0.052188239991664886, -0.0038823862560093403, -0.008503311313688755, 0.02506440505385399, 0.051008593291044235, -0.027896005660295486, 0.0156918466091156, -0.00781270582228899, 0.04814385995268822, 0.03172681853175163, 0.06001536548137665, 0.04693052917718887, 0.03505931794643402, 0.0006760188844054937, 0.03358415141701698, 0.005871476139873266, 0.0152534618973732, 0.005955669097602367, 0.02738872729241848, 0.03538452461361885, 0.021985681727528572, -0.006192305125296116, 0.025921665132045746, -0.00730920722708106, 0.026103096082806587, -0.012035857886075974, 0.018320687115192413, -0.03049767017364502, 0.054898276925086975, 0.018946968019008636, 0.04369620233774185, -0.00454734917730093, 0.01737898960709572, 0.05187709629535675, 0.04947584494948387, -0.0196668803691864, -0.002543034264817834, -0.0032411389984190464, 0.0029177386313676834, -0.022587336599826813, 0.008053291589021683, 0.021589890122413635, 0.02049942873418331, -0.0031320240814238787, 0.024280890822410583, -0.018384911119937897, -0.04088034853339195, -0.04194832965731621, -0.060450229793787, -0.06456627696752548, -0.013739880174398422, -0.049386411905288696, -0.013885539956390858, 0.027941791340708733, -0.05733124539256096, 0.023186299949884415, -0.04559880867600441, -0.011197933927178383, -0.0064370231702923775, -0.015953730791807175, 0.05785880237817764, 0.046478234231472015, 0.03025585226714611, -0.03315068408846855, 0.027958745136857033, -0.0061249746941030025, 0.026630949229002, -0.02672240138053894, -0.003513301955536008, -0.004888217430561781, -0.031955208629369736, 0.04625699669122696, -0.0365203320980072, -0.008026372641324997, 0.009401462972164154, -0.05052516236901283, -0.057175520807504654, -0.009751790203154087, 0.024246230721473694, -0.0077429963275790215, 0.015144718810915947, -0.041079893708229065, 0.06792782992124557, 0.0028860208112746477, -0.021185120567679405, 0.04374979808926582, 0.017463084310293198, -0.040038689970970154, 0.060767292976379395, 0.02961679734289646, 0.023798994719982147, -0.052706412971019745, 0.040164969861507416, 0.03489095717668533, 0.020023062825202942, -0.012521590106189251, -0.018748119473457336, -0.0285022109746933, -0.012122388929128647, 0.008880456909537315, -0.022130277007818222, -0.023484669625759125, 0.01773480325937271, 0.030504537746310234, -0.09231898933649063, -0.015281070955097675, -0.07045195996761322, -0.018771549686789513, -0.03911612555384636, -0.0053619821555912495, -0.003623782191425562, 0.0054773250594735146, 0.04997965693473816, 0.008143319748342037, -0.02617907151579857, 0.01496785506606102, 0.023134231567382812, 0.055973950773477554, 0.0021053776144981384, 0.039994098246097565, 0.05191710591316223, -0.013422204181551933, 0.008345081470906734, 0.005658482201397419, -0.01425515953451395, -0.006000026129186153, 0.007992833852767944, 0.018121985718607903, 0.006743570789694786, 0.051165007054805756, -0.005468627437949181, 0.02462088130414486, 0.044366274029016495, -0.06452611088752747, 0.010131947696208954, 0.03802744671702385, 0.015017732977867126, -0.022528421133756638, -0.007566644344478846, 0.04040110111236572, -0.05596691370010376, -0.0387188158929348, -0.058110907673835754, 0.06294174492359161, -0.004212123807519674, 0.060896601527929306, -0.10554836690425873, 0.040830742567777634, -0.028241952881217003, -0.026934880763292313, 0.055137649178504944, -0.043798480182886124, -0.02778618596494198, 0.052577272057533264, -0.010570145212113857, 0.05103353410959244, -0.03227038308978081, 0.006344493944197893, -0.0246141254901886, -0.00461901118978858, 0.05325019732117653, 0.004320894367992878, 0.039972588419914246, -0.008099540136754513, 0.001149942516349256, -0.0006754679488949478, -0.008671869523823261, -0.021449999883770943, -0.035034388303756714, 0.035280946642160416, -0.01665145717561245, -0.01586497202515602, -0.057727210223674774, 0.05316922813653946, 0.022129585966467857, 0.04623176530003548, -0.022860154509544373, 0.020942306146025658, -0.026000259444117546, 0.02843380905687809, 0.02447737194597721, -0.00037800255813635886, 0.0020718597806990147, -0.03101794235408306, 0.031109636649489403, 0.02689378336071968, -0.03419535607099533, -0.02297222428023815, -0.024480000138282776, -0.062072061002254486, 0.03529178351163864, 0.015729675069451332, -0.016199477016925812, -0.042487937957048416, -0.005844089202582836, -0.023988263681530952, -0.005456624552607536, -0.036411140114068985, -0.017470667138695717, -0.01414895337074995, 0.021835539489984512, 0.03979877009987831, -0.04817536473274231, -0.01548872422426939, -0.02470693551003933, 0.0630413293838501, 0.020971640944480896, -0.026503710076212883, -0.025293640792369843, -0.0296255424618721, -0.0001634005893720314, -0.0007737195119261742, -0.029357079416513443, 0.06497618556022644, -0.0011121236020699143, 0.023206040263175964, -0.03619833290576935, 0.026450417935848236, 0.03531743586063385, -0.008832165040075779, -0.002755197463557124, 0.010099063627421856, 0.011098112910985947, 0.003084483090788126, 0.023164791986346245, 0.018589939922094345, -0.05119483545422554, 0.027004145085811615, -0.04767879471182823, 0.015311775729060173, -0.010991901159286499, 0.010991103947162628, -0.025087062269449234, 0.022224297747015953, 0.01170521229505539, 0.03403570502996445, -0.02301521971821785, 0.007729162462055683, 0.012633816339075565, 0.0373736172914505, -0.029612984508275986, -0.019348295405507088, 0.04722671955823898, -0.0424436554312706, -0.043486401438713074, 0.049845196306705475, 0.027547068893909454, -0.03528638184070587, -0.004540101159363985, 0.01798894815146923, -0.05382813140749931, 0.0336141474545002, -0.043540168553590775, -0.011417160741984844, -0.0006497027934528887, -0.04125112295150757, 0.003119799541309476, -0.032740842550992966, 0.044164396822452545, -0.015072556212544441, 0.00793401524424553, -0.040671516209840775, -0.05255444720387459, -0.033899176865816116, -0.007328344974666834, -0.03603794053196907, 0.015040390193462372, 0.013795178383588791, -0.013841564767062664, -0.007971000857651234, -0.02773488499224186, -0.00905145239084959, -0.0015955920098349452, -0.00043752649798989296, 0.011126345954835415, 0.0028332225047051907, -0.014300724491477013, 0.01636655256152153, -0.016103927046060562, -0.030751124024391174, 0.004641857463866472, -0.004950607195496559, -0.009617777541279793, -0.03449470177292824, 0.009069406427443027, -0.0330740362405777, 0.00046867027413100004, -0.009354455396533012, 0.016920194029808044, -0.036713968962430954, 0.0030199470929801464, 0.03691737353801727, -0.00287103233858943, 0.0050664939917624, -0.006618387997150421, -0.002759356051683426, 0.04103750362992287, 0.0189382154494524, -0.020301243290305138, -0.015972672030329704, 0.034693848341703415, 0.010146571323275566, 0.030811280012130737, -0.001252505462616682, -0.009573548100888729, -0.04878811910748482, -0.037145789712667465, 0.01647740788757801, -0.03156570717692375, -0.0022438480518758297, -0.04303937405347824, -0.030126124620437622, 0.009424041956663132, 0.020356718450784683, 0.035282280296087265, 0.012636305764317513, 0.0065666683949530125, -0.0333603136241436, -0.0028214158955961466, -0.04901373013854027, -0.006048039998859167, -0.014930411241948605, -0.020407019183039665, -0.007162683177739382, 0.041868891566991806, 0.021252857521176338, 0.01652202010154724, 0.013608600944280624, 0.03931821882724762, 0.010412720032036304, -0.0032864969689399004, -0.04224344342947006, -0.030124878510832787, -0.008319688029587269, 0.02510024793446064, -0.025551222264766693, 0.02217995934188366, -0.024165041744709015, 0.045515719801187515, -0.049057066440582275, -0.021764254197478294, -0.033198773860931396, -0.02477654069662094, -0.01460091583430767, 0.00840792153030634, 0.06848783046007156, 0.011189062148332596, 0.004639963153749704, -0.016585957258939743, 0.042691219598054886, 0.05160251259803772, 0.007771160453557968, -0.04938055947422981, -0.029189564287662506, -0.028420794755220413, -0.03936951979994774, 0.022454356774687767, -0.009293635375797749, -0.03156033530831337, -0.028042813763022423, 0.006223396398127079, 0.028041571378707886, 0.009460661560297012, 0.03624718636274338, 0.07628212124109268, -0.011576643213629723, -0.030626771971583366, -0.024727128446102142, -0.004280401859432459, 0.015101781114935875, 0.004889531992375851, -0.004118091892451048, -0.008870106190443039, -0.012385684996843338, -0.00692786555737257, -0.0379825122654438, -0.0444365032017231, -0.060449495911598206, -0.015827519819140434, 0.05192752927541733, -0.032434094697237015, 0.06579761952161789, 0.007976598106324673, -0.055182259529829025, -0.02680107206106186, 0.048852402716875076, -0.03067973256111145, 0.004746615421026945, 0.030485134571790695, -0.022455520927906036, -0.03618576377630234, -0.01921718940138817, -0.017583632841706276, 0.006016949657350779, -0.018418028950691223, 0.0695369690656662, 0.012117735110223293, -0.07148674130439758, -0.0042555127292871475, 0.07275621592998505, -0.06466057151556015, -0.04911169782280922, -0.01121380366384983, -0.014414658769965172, 0.019644588232040405, -0.034766487777233124, 0.005093833431601524, 0.022713059559464455, 0.03834899142384529, 0.023183008655905724, 0.03485282137989998, -0.024116074666380882, 0.04354601353406906, 0.039433930069208145, 0.03013569302856922, -0.052729085087776184, -0.014223698526620865, 0.03531993553042412, 0.019907772541046143, -0.04076450690627098, -0.018310153856873512, -0.0029385185334831476, 0.008440518751740456, 0.0024757839273661375, 0.0401669405400753, -0.012099148705601692, -0.015527299605309963, 0.02743617445230484, -0.0470336452126503, 0.04527822509407997, -0.02307988330721855, 0.008878165856003761, 0.02105718106031418, -0.03978094086050987, -0.04387085884809494, -0.024734312668442726, 0.04148684814572334, -0.0021812471095472574, 0.020871397107839584, -0.04329372197389603, 0.011072522960603237, 0.038084592670202255, 0.02367534302175045, -0.005547209642827511, -0.049213290214538574, -0.05613839253783226, -0.054696690291166306, -0.0576217919588089, 0.008646471425890923, -0.018647080287337303, 0.021277477964758873, -0.0076617468148469925, 0.03836926072835922, -0.04570457339286804, 0.020427051931619644, 0.016675475984811783, -0.030680924654006958, -0.008513247594237328, -0.055960312485694885, 0.03594862297177315, -0.04020173102617264, -0.037193287163972855, -0.0373692512512207, 0.05096729099750519, -0.017806876450777054, 0.008797639049589634, -0.014243421144783497, 0.034255143254995346, -0.021937694400548935, 0.05858095735311508, -0.0013813786208629608, 0.02543073333799839, -0.0451483353972435, -0.018967097625136375, 0.014344359748065472, 0.04026941582560539, 0.006843245588243008, -0.0005895372596569359, 0.03061814047396183, -0.03302300348877907, 0.02859320677816868, 0.011200521141290665, -0.02202727645635605, -0.028191864490509033, 0.04155983775854111, 0.006256551947444677, 0.006362385582178831, -0.05907020717859268, -0.0048549300990998745, 0.03349677473306656, -0.028575817123055458, -0.0025309924967586994, -0.011798079125583172, -0.00419669970870018, -0.006138190161436796, -0.006501735653728247, -0.0021987748332321644, 0.05356580391526222, 0.017918847501277924, 0.038203101605176926, 0.006923350039869547, 0.016103720292448997, 0.03428814932703972, 0.0295700803399086, -0.003568238578736782, 0.018936386331915855, 0.009715793654322624, -0.03400556370615959, 0.024773262441158295, 0.011535347439348698, -0.0227701086550951, 0.03735505789518356, -0.023419516161084175, -0.012291163206100464, -0.03492291644215584, 0.012380550615489483, 0.0026936326175928116, 0.05541235953569412, 0.0028203134424984455, -0.015036355704069138, 0.029374506324529648, -0.027914222329854965, -0.029569776728749275, 0.012445562519133091, -0.03428312763571739, -0.03372057154774666, 0.03876689448952675, -0.0036148671060800552, -0.028018608689308167, -0.024157974869012833, -0.03371009603142738, -0.0008632881799712777, -0.017435260117053986, -0.009075930342078209, -0.02755499817430973, 0.01814519613981247, -0.011611344292759895, 0.03831365704536438, -0.004596867132931948, -0.0049968622624874115, 0.0006311035831458867, 0.001696019433438778, -0.04799501597881317, -0.05964074656367302, 0.016811322420835495, 0.0299410168081522, -0.002195451408624649, -0.015350501984357834, -0.009921638295054436, 0.018646564334630966, -0.0066923960112035275, 0.015990685671567917, -0.005736820865422487, 0.02651180326938629, -0.007060003001242876, 0.006229135673493147, -0.008266509510576725, -0.0021495020482689142, -0.02032598853111267, 0.047586843371391296, -0.009482569992542267, -0.03039521351456642, -0.0258887130767107, 0.05418257787823677, 0.014250554144382477, -0.02204284258186817, 0.03168042376637459, -0.000673341506626457, 0.060261063277721405, -0.01423261221498251, 0.03139598295092583, 0.007331046275794506, 0.05534918233752251, 0.029419461265206337, 0.029445795342326164, 0.010763638652861118, 0.02793819271028042, 0.03394272178411484, -0.01979508250951767, -0.007214357145130634, 0.04207839444279671, 0.03244716674089432, -0.021601535379886627, -0.011139577254652977, -0.039823710918426514, -0.005217610392719507, 0.0046625640243291855, -0.017714984714984894, 0.005510853603482246, -0.04568174481391907, -0.031182600185275078, -0.01501390989869833, -0.02503305673599243, 0.08286573737859726, -0.0029356523882597685, -0.03076482191681862, 0.011234409175813198, -0.0027229662518948317, -0.001925413846038282, 0.054057564586400986, 0.0034886186476796865, 0.01479910034686327, 0.059866875410079956, 0.045517560094594955, -0.002662858460098505, 0.018364960327744484, 0.0032005561515688896, 0.031699005514383316, -0.0322529673576355, 0.0002803560928441584, -0.011079574935138226, -0.019728152081370354, -0.06772462278604507, -0.017497217282652855, -0.020820900797843933, 0.048263516277074814, -0.00421082554385066, -0.02455969713628292, 0.06387024372816086, -0.034620024263858795, -0.03397291526198387, -0.03000684082508087, 0.027078919112682343, -0.04191961884498596, -0.0010148583678528666, 0.04798969626426697, -0.010962553322315216, -0.014060870744287968, 0.04627911373972893, -0.004116795025765896, 0.015052993781864643, 0.039429813623428345, 0.047535255551338196, -0.0012610963312909007, 0.03298429399728775, 0.04502546787261963, -0.01127921137958765, -0.015210269019007683, 0.020835157483816147, -0.014515851624310017, -0.03809427097439766, 0.00020373097504489124, -0.008501861244440079, -0.025360871106386185, -0.01803380250930786, -0.06641393154859543, 0.005312285851687193, 0.02643652632832527, -0.008534002117812634, -0.02679075486958027, -0.027110686525702477, 0.018699711188673973, -0.05327446386218071, 0.0165348369628191, 0.008167468011379242, 0.0326208658516407, 0.006322885397821665, 0.015222026966512203, -0.01153219398111105, -0.032471202313899994, 0.005323711317032576, -0.023603925481438637, 0.03574071079492569, -0.017367850989103317, -0.0511920303106308, -0.043579019606113434, -0.05531991273164749, -0.023545369505882263, 0.007879444397985935, -0.02144629880785942, -0.0430576391518116, 0.011100523173809052, 0.02948853187263012, 0.026721401140093803, 0.022813409566879272, -0.028744889423251152, -0.031189080327749252, 0.02959754876792431, 0.09494299441576004, 0.005492557305842638, 0.04766565561294556, 0.0344226211309433, -0.010457141324877739, 0.04295865446329117, -0.03074873425066471, 0.03807612508535385, -0.029865780845284462, -0.005304104648530483, -0.007473307196050882, 0.03314024955034256, -0.0040544322691857815, -0.059358179569244385, -0.005739726126194, 0.0346682034432888, 0.02204146608710289, -0.023647166788578033, -0.08188958466053009, -0.0038217436522245407, -0.08065725862979889, 0.00971275009214878, -0.035796649754047394, 0.009907463565468788, -0.0018369929166510701, -0.030563578009605408, -0.021049227565526962, -0.0515168197453022, 0.14262227714061737, 0.051792267709970474, 0.03550735488533974, -0.008488574996590614, 0.0056182947009801865, 0.062067143619060516, 0.03114042617380619, 0.012504342012107372, -0.008833509869873524, -0.037815604358911514, 0.02796224132180214, 0.0015776193467900157, 0.030507029965519905, 0.02332710660994053, 0.06358812749385834, 0.035097185522317886, -0.04081759601831436, -0.01009149756282568, 0.007849860936403275, -0.05639513581991196, -0.05733189731836319, 0.03488640859723091, 0.010335599072277546, 0.026800356805324554, -0.024158816784620285, -0.004726705141365528, 0.007895068265497684, -0.05190526321530342, 0.005704394541680813, -0.02903488650918007, -0.005353096406906843, -0.03457028418779373, 0.025308813899755478, -0.0218325424939394, -0.0353657528758049, 0.06343920528888702, -0.005117855966091156, -0.0041368319652974606, 0.0019536905456334352, -0.00611345237120986, -0.035545967519283295, 0.023000439628958702, 0.03530081734061241, -0.035448603332042694, 0.024501707404851913, 0.04942895472049713, -0.025767028331756592, -0.0009073317050933838, 0.019970031455159187, -0.052554212510585785, 0.04903789982199669, -0.04340597242116928, 0.020262306556105614, -0.013936365023255348, -0.03747700899839401, -0.002855324652045965, -0.00839119590818882, -0.041951898485422134, -0.009433413855731487, 0.018383381888270378, 0.03193512558937073, 0.01462092250585556, -0.017527634277939796, 0.020974040031433105, -0.056010935455560684, -0.002472372492775321, 0.039764393121004105, 0.04908430203795433, -0.006238670088350773, 0.014089735224843025, -0.001098809065297246, -0.015568162314593792, -0.024512644857168198, -0.01775217242538929, 0.06712943315505981, 0.01778210699558258, -0.0007835511933080852, 0.023862289264798164, 0.015734339132905006, -0.04294728487730026, -0.020805679261684418, -0.04363153129816055, 0.010543194599449635, 0.009310676716268063, 0.015631869435310364, 0.06561056524515152, -0.0589536614716053, -0.027139289304614067, -0.0216510109603405, 0.05865994840860367, 0.013363164849579334, 0.020679833367466927, -0.00984860211610794, -0.010093720629811287, -0.0011157072149217129 ]
School districts want to see the Missouri Legislature discuss a resolution increasing a district's bonding capacity from 15 to 20 percent. Grain Valley Superintendent Chris Small is eager for the Missouri General Assembly to discuss increasing how much a school district can borrow to complete projects such as renovations or construction. Currently, under the Missouri Constitution, a school district can borrow up to 15 percent of its total assessed valuation, minus debt incurred. Bond funds can only be used for "bricks and mortar" such as renovating buildings and are paid back through a tax levy. What Small and many other school districts are requesting is that the bonding capacity be increased to 20 percent. The last increase was made in 1998, increasing a district's bonding capacity from 10 to the current 15 percent. One way to change the state constitution is for the legislature to place a question on a statewide ballot. State Rep. Chris Molendorp, R-Belton, is sponsoring a bill calling for a constitutional amendment "raising the allowable level of bonded ineptness for school districts." No hearing, however, has been scheduled for HJR 6 and it is currently not on the legislative calendar. Rep. Bryan Pratt, R-Blue Springs, said he is in support of such a resolution and believes it has "a good shot" this year.
[ 0.022454289719462395, -0.004714704118669033, -0.021567193791270256, 0.027068817988038063, -0.01857255958020687, 0.01248064637184143, 0.022748250514268875, 0.029085949063301086, -0.006450825370848179, 0.03652042895555496, 0.03469996154308319, -0.0140776876360178, 0.02130482904613018, -0.028039289638400078, -0.0004861225315835327, 0.019127322360873222, -0.003344269236549735, -0.016517244279384613, 0.015837449580430984, 0.018080193549394608, -0.008603951893746853, 0.0068362620659172535, -0.061790041625499725, -0.018535077571868896, 0.006167651154100895, 0.046009086072444916, 0.04816607013344765, -0.029285697266459465, 0.06645089387893677, 0.03710353747010231, -0.019135626032948494, -0.04582701250910759, -0.00238151871599257, -0.03435884788632393, -0.033989038318395615, -0.03289949893951416, 0.050789304077625275, 0.0012119143502786756, 0.022632228210568428, -0.058886557817459106, 0.029591398313641548, -0.02284499816596508, 0.02020959183573723, -0.04969746619462967, -0.03607536107301712, -0.0020464081317186356, -0.011307144537568092, -0.04029756039381027, 0.014787320047616959, -0.03560830280184746, -0.022375022992491722, -0.006487250793725252, 0.0243416428565979, -0.003594040870666504, 0.03203854337334633, 0.031616102904081345, 0.0016460609622299671, -0.02423151396214962, -0.025648226961493492, 0.03116683103144169, 0.029918285086750984, -0.005239005666226149, 0.026898415759205818, -0.034646738320589066, 0.01849418506026268, 0.02438153140246868, 0.006259676069021225, -0.012149355374276638, 0.006405320018529892, -0.042350780218839645, 0.01417156308889389, 0.026871193200349808, -0.033597324043512344, -0.005536136217415333, 0.03331422805786133, -0.0003762291744351387, 0.010716492310166359, -0.020602528005838394, -0.017568422481417656, 0.024309594184160233, -0.0006058938452042639, 0.040941670536994934, 0.005615212023258209, 0.012595189735293388, -0.06001079082489014, -0.026342572644352913, -0.030937017872929573, 0.014280947856605053, -0.017280176281929016, 0.02258981205523014, -0.01954076997935772, 0.0528225377202034, -0.008509756997227669, 0.01183974277228117, 0.0427396185696125, 0.04919250309467316, -0.03210968151688576, 0.034137971699237823, 0.025388522073626518, -0.026195865124464035, 0.031165003776550293, 0.032439157366752625, 0.024541713297367096, 0.05207209661602974, -0.033487945795059204, -0.0068657128140330315, -0.01286734826862812, 0.00012452492956072092, 0.04185877740383148, -0.014747955836355686, -0.0038267546333372593, -0.047090355306863785, 0.014947657473385334, -0.012833206914365292, -0.03582039847970009, 0.021275099366903305, -0.013434532098472118, 0.026579484343528748, -0.038859348744153976, 0.020188728347420692, 0.044531773775815964, -0.018024858087301254, 0.030662858858704567, -0.02580440603196621, 0.012695105746388435, -0.032421089708805084, -0.017847688868641853, 0.056404080241918564, -0.02782737836241722, -0.03542877733707428, 0.02021144889295101, -0.03124895505607128, -0.021495357155799866, 0.021268215030431747, 0.0041655683889985085, -0.0021744242403656244, 0.0061463224701583385, 0.022293802350759506, 0.02063719555735588, -0.035780053585767746, 0.02668381668627262, 0.0083157978951931, 0.020883092656731606, 0.08571728318929672, 0.00962235126644373, 0.027285564690828323, -0.000752494262997061, -0.03938758745789528, -0.01910480298101902, 0.01600438728928566, -0.03604617714881897, 0.0184163860976696, 0.01585972122848034, 0.015860656276345253, -0.0007608452579006553, 0.0027222998905926943, 0.004252468701452017, 0.009420433081686497, -0.00035875121830031276, 0.006974948104470968, -0.003929889295250177, 0.016616923734545708, -0.03081221878528595, 0.017963295802474022, -0.04464903101325035, 0.009118090383708477, -0.02767239324748516, -0.018409760668873787, -0.018700463697314262, -0.025198040530085564, -0.0004782764008268714, 0.027461202815175056, -0.03995624557137489, 0.021502984687685966, 0.03185702860355377, 0.023955466225743294, 0.05812550708651543, 0.015742909163236618, 0.02242550067603588, 0.05895557627081871, -0.05616240203380585, -0.01618931069970131, 0.01141228899359703, 0.07010588049888611, 0.007465728092938662, 0.013276196084916592, -0.02098659984767437, -0.022532925009727478, -0.03303593769669533, -0.029192687943577766, -0.012059864588081837, 0.028659479692578316, -0.0270320326089859, 0.00223189452663064, -0.004402420949190855, 0.01022848580032587, -0.019004924222826958, -0.011963948607444763, 0.006059690844267607, -0.037528667598962784, -0.04381982982158661, 0.04186002165079117, -0.007011101581156254, 0.06095867231488228, -0.010172035545110703, -0.056028615683317184, 0.024544086307287216, 0.06240876764059067, -0.05311616510152817, -0.023755978792905807, 0.04089628532528877, 0.028311463072896004, -0.015838908031582832, 0.027453796938061714, 0.006101823877543211, -0.007785714231431484, -0.00860721804201603, 0.058445949107408524, 0.01146231684833765, -0.011062055826187134, 0.019356554374098778, 0.021207505837082863, 0.055539365857839584, 0.04472450911998749, -0.010905450209975243, -0.01881072111427784, 0.017828285694122314, 0.039433177560567856, -0.002416169736534357, -0.023112276569008827, -0.012276612222194672, 0.06358876079320908, 0.02537398599088192, 0.04943855479359627, 0.027288898825645447, 0.008250228129327297, 0.06517348438501358, 0.03029553033411503, 0.014531396329402924, 0.036264676600694656, -0.012404786422848701, 0.022020386531949043, 0.02965363673865795, 0.004632283002138138, -0.02689344622194767, 0.020640002563595772, -0.03233389928936958, -0.020602034404873848, -0.016668105497956276, 0.007796006742864847, -0.0357263907790184, 0.03276568278670311, 0.00016553404566366225, 0.03421783447265625, -0.021031677722930908, 0.018485795706510544, 0.0433848574757576, 0.06573664397001266, -0.05204378068447113, -0.027446087449789047, 0.015655403956770897, 0.02512676827609539, 0.004226952791213989, -0.013634206727147102, 0.01145373284816742, 0.006448264233767986, -0.019242700189352036, 0.03864127770066261, -0.005506133195012808, -0.005896208807826042, -0.026807105168700218, -0.05144451558589935, -0.021072417497634888, -0.038577865809202194, -0.04253709316253662, 0.02568109706044197, 0.03962181508541107, -0.05839363858103752, 0.006315247621387243, -0.027551118284463882, -0.02221987396478653, -0.012190543115139008, -0.008832234889268875, 0.060763873159885406, 0.045176804065704346, 0.05861356481909752, -0.01626332849264145, 0.04880687966942787, 0.005557180382311344, 0.02628721483051777, -0.03822065889835358, -0.055112242698669434, -0.026377255097031593, 0.0015250915894284844, 0.035192303359508514, -0.026575248688459396, -0.017659934237599373, 0.005526244640350342, -0.029013819992542267, -0.04469882324337959, -0.004650697577744722, -0.01908865012228489, 0.00723879924044013, -0.033383820205926895, -0.0545031763613224, 0.02460663393139839, 0.020607370883226395, -0.04795501008629799, 0.03468942269682884, 0.05034046247601509, -0.03938494995236397, 0.07348702847957611, 0.008129253052175045, 0.03528694435954094, -0.0494203194975853, 0.02592194639146328, 0.04548776522278786, 0.003081195754930377, -0.0338992215692997, -0.037845999002456665, -0.0041169673204422, 0.007920777425169945, 0.0037456846330314875, -0.029411522671580315, -0.03635269030928612, 0.027224693447351456, 0.035012852400541306, -0.047293826937675476, 0.015251248143613338, -0.03677697107195854, -0.022670406848192215, -0.05751567333936691, -0.032987985759973526, 0.01361868530511856, 0.02739659696817398, 0.0027855203952640295, -0.005809972528368235, -0.041227616369724274, 0.005316406022757292, 0.0017170278588309884, 0.10282913595438004, -0.02024480514228344, 0.04495178535580635, 0.0425516813993454, -0.0008293861756101251, 0.011380461044609547, 0.011209821328520775, -0.04264993220567703, -0.01768837682902813, 0.009519384242594242, 0.0010628325399011374, 0.004143876489251852, 0.04186467453837395, 0.03105006366968155, -0.011154789477586746, 0.04244745522737503, -0.036537569016218185, -0.0035792123526334763, 0.02674255333840847, 0.005686119664460421, 0.014111841097474098, 0.013897869735956192, 0.006706540938466787, -0.021895205602049828, -0.04293686896562576, -0.04858105257153511, 0.038411859422922134, 0.0036571382079273462, 0.07076116651296616, -0.06353095173835754, 0.06734703481197357, -0.006934008561074734, 0.00775730749592185, 0.03945169597864151, -0.026916760951280594, -0.010191008448600769, 0.05422992259263992, 0.0043981485068798065, 0.030979463830590248, -0.06256555020809174, 0.017027566209435463, 0.013333894312381744, 0.0005997132393531501, 0.010917115025222301, 0.056722041219472885, 0.007207405287772417, -0.035284627228975296, 0.019433271139860153, -0.009589814580976963, -0.019236916676163673, 0.0060662501491606236, -0.03712755814194679, -0.007896734401583672, -0.013457505032420158, -0.020553849637508392, -0.0500033013522625, 0.037271205335855484, 0.012803139165043831, 0.026146510615944862, -0.029736757278442383, 0.051270801573991776, -0.04516955092549324, 0.021569155156612396, 0.014939499087631702, -0.027869945392012596, 0.011619380675256252, -0.0579025037586689, 0.031262803822755814, 0.004975772462785244, -0.031076781451702118, 0.005224144086241722, -0.012640293687582016, -0.028756722807884216, 0.03587029501795769, 0.0033963003661483526, -0.0296369269490242, -0.022907588630914688, 0.015843167901039124, 0.017100805416703224, 0.026577353477478027, -0.04142678156495094, -0.026588326320052147, 0.016026416793465614, 0.028864974156022072, 0.04099872708320618, -0.05379858613014221, 0.028799207881093025, -0.046070732176303864, 0.03815446048974991, 0.03562242537736893, -0.027406005188822746, -0.03352998197078705, -0.038739822804927826, -0.010319487191736698, -0.02937118336558342, -0.0069903903640806675, 0.05429407209157944, -0.002144056372344494, -0.006071885582059622, -0.03474043682217598, 0.04806572571396828, 0.03746290132403374, 0.02166842110455036, -0.005794415716081858, -0.004191441927105188, 0.02045370638370514, -0.004436928313225508, 0.053438059985637665, 0.006278111599385738, -0.009409223683178425, -0.00935752410441637, -0.024924710392951965, 0.006235452834516764, -0.008529658429324627, -0.026729244738817215, 0.008031080476939678, 0.02596363052725792, 0.011136004701256752, 0.03405750170350075, -0.03188328072428703, 0.022940557450056076, -0.0015400690026581287, 0.037055838853120804, -0.02770320512354374, -0.016534265130758286, 0.03788111358880997, -0.017640186473727226, -0.012321216985583305, 0.03231142461299896, 0.0398840457201004, -0.010771396569907665, 0.010749262757599354, 0.011246703565120697, -0.03512644022703171, 0.06724381446838379, -0.030399007722735405, 0.026248402893543243, -0.028053924441337585, -0.034186284989118576, 0.016179855912923813, -0.0178542323410511, 0.02233433909714222, 0.016374314203858376, -0.02240619622170925, -0.03364349529147148, -0.04898549243807793, -0.019157106056809425, 0.028808774426579475, -0.016227010637521744, 0.013868112117052078, -0.0015889364294707775, 0.0028883428312838078, -0.01116802915930748, -0.04019860923290253, 0.0014439864316955209, 0.012396120466291904, -0.005816120654344559, -0.01897101290524006, 0.024698849767446518, 0.011121077463030815, 0.010911463759839535, -0.010658345185220242, -0.0544850155711174, -0.020991520956158638, -0.023550642654299736, -0.008841631934046745, -0.07434028387069702, 0.019340598955750465, -0.020355163142085075, 0.007041416596621275, -0.020120615139603615, 0.02004418894648552, -0.00752174062654376, 0.02116270363330841, 0.010127291083335876, 0.023803558200597763, 0.009130778722465038, -0.03513691574335098, -0.025185801088809967, 0.03795526176691055, 0.015677785500884056, -0.04796017333865166, -0.03345615416765213, 0.02775624766945839, -0.01585732400417328, 0.04395766928792, -0.005607874598354101, -0.02599503844976425, -0.04939202964305878, -0.04433955252170563, -0.01964225433766842, -0.04190334677696228, -0.02140495739877224, -0.027055615559220314, -0.03188004717230797, -0.0008549560443498194, 0.03790963441133499, 0.04142679274082184, -0.009788088500499725, 0.013983146287500858, -0.042426373809576035, 0.01234793197363615, -0.04407930746674538, -0.022534094750881195, -0.009849956259131432, -0.02879086136817932, -0.025887273252010345, 0.035859473049640656, 0.017515083774924278, 0.0278609711676836, -0.03090747632086277, -0.011199490167200565, 0.020978964865207672, -0.003864970291033387, -0.04667336493730545, -0.0312426146119833, -0.0068348911590874195, -0.007810333743691444, -0.010903052985668182, -0.006654825527220964, -0.014623775146901608, 0.061015691608190536, -0.062217216938734055, 0.002849519718438387, -0.03342703357338905, -0.028272319585084915, -0.022342219948768616, -0.02971028909087181, 0.026223381981253624, -0.013816644437611103, 0.030320746824145317, -0.04001990705728531, 0.029530996456742287, 0.024729475378990173, 0.019876273348927498, -0.035982970148324966, -0.03297153115272522, -0.05011698231101036, -0.02895250730216503, 0.036388371139764786, -0.01872352883219719, -0.031203191727399826, -0.021957404911518097, -0.023632174357771873, 0.04799715802073479, -0.02845733053982258, 0.04550331458449364, 0.049852799624204636, -0.030728548765182495, -0.008282103575766087, -0.007273184601217508, 0.02028285712003708, 0.03812604397535324, -0.007184253074228764, -0.01118205115199089, -0.0221687164157629, 0.0012248569400981069, 0.01823272742331028, -0.049802061170339584, 0.00047398838796652853, -0.07114612311124802, -0.0058649019338190556, 0.07270687073469162, -0.024504411965608597, 0.05460229888558388, -0.016880633309483528, -0.047971922904253006, -0.03436139598488808, 0.03181992471218109, -0.013973278924822807, 0.014961674809455872, 0.019742632284760475, 0.00657613156363368, -0.005530156195163727, 0.027986424043774605, -0.01365721970796585, -0.016044912859797478, -0.029149973765015602, 0.055139295756816864, -0.024146290495991707, -0.058620523661375046, 0.03852880001068115, 0.061685241758823395, -0.05088365823030472, -0.027236809954047203, -0.009929748252034187, -0.015663838014006615, -0.016074534505605698, -0.032695215195417404, 0.026509614661335945, -0.020336290821433067, -0.022963043302297592, -0.010782861150801182, 0.025251086801290512, -0.012892921455204487, 0.05110251158475876, -0.033967066556215286, 0.04230925440788269, -0.019868886098265648, 0.00042183647747151554, 0.01885380782186985, 0.005950253922492266, -0.0173528753221035, -0.03168636932969093, -0.0031674797646701336, -0.004800442140549421, 0.005475685931742191, 0.07548737525939941, -0.02783861756324768, -0.008389001712203026, 0.0015365461586043239, 0.0012108655646443367, 0.06032032519578934, -0.012757401913404465, -0.0006877999403513968, 0.019908742979168892, -0.02774844318628311, -0.0434819832444191, -0.024827690795063972, -0.02382517047226429, 0.03981560841202736, 0.03099982813000679, -0.05692527815699577, -0.004926167894154787, 0.03923981264233589, 0.019505098462104797, 0.030382096767425537, -0.04794303700327873, -0.04510809853672981, -0.03169403225183487, -0.03805726394057274, -0.026131998747587204, -0.005561693571507931, 0.004901679698377848, 0.04071684926748276, -0.005674455780535936, -0.03930705785751343, 0.00011692460248013958, 0.020072564482688904, -0.031631551682949066, -0.022976022213697433, -0.02224636636674404, -0.007722838781774044, -0.0026814641896635294, -0.06362386047840118, -0.058550648391246796, 0.007226196117699146, -0.010064882226288319, -0.016451707109808922, -0.03955044597387314, 0.052257683128118515, 0.016967646777629852, 0.038988128304481506, 0.012776478193700314, -0.01659814827144146, -0.01793537847697735, -0.052080027759075165, 0.014189394190907478, 0.0064085847698152065, -0.00762516213580966, 0.028811953961849213, 0.032614096999168396, -0.014600506983697414, 0.02036413364112377, -0.035879574716091156, -0.01987239345908165, -0.004231385886669159, 0.02338160015642643, -0.012770624831318855, 0.0149854039773345, -0.033976562321186066, -0.021585894748568535, -0.03305763006210327, -0.016060009598731995, 0.04896105080842972, -0.04493599385023117, 0.03380696102976799, -0.002150164917111397, -0.027024894952774048, -0.012891547754406929, 0.06839241832494736, -0.00015330500900745392, 0.022954236716032028, 0.007033569738268852, 0.02913139946758747, 0.04019817337393761, 0.022521676495671272, 0.0050460416823625565, 0.010593432933092117, 0.01828683353960514, -0.0276170764118433, 0.015641631558537483, 0.008268341422080994, -0.01858793944120407, 0.03800780326128006, -0.011633120477199554, -0.008849996142089367, -0.029138170182704926, 0.014752564020454884, -0.03330007568001747, 0.04240325093269348, 0.007329155690968037, -0.015680506825447083, 0.03423035144805908, -0.02723992057144642, -0.04145249351859093, -0.01289339829236269, -0.060502637177705765, -0.040689386427402496, 0.033054184168577194, 0.008576816879212856, -0.025480028241872787, -0.024545427411794662, -0.0476241260766983, -0.018526718020439148, -0.018047459423542023, -0.04828669875860214, -0.02669200301170349, 0.05393886938691139, 0.02092393860220909, 0.037278302013874054, -0.016841165721416473, -0.013082832098007202, 0.010826603509485722, 0.06608458608388901, -0.07313409447669983, -0.04585197567939758, 0.016876181587576866, 0.03257500380277634, 0.011491927318274975, 0.024365607649087906, -0.007764727342873812, 0.023625925183296204, -0.012898924760520458, 0.02853775955736637, -0.02191024459898472, 0.010200309567153454, 0.007435308303683996, 0.012143739499151707, -0.012049026787281036, -0.01663733646273613, -0.00038539996603503823, 0.052900463342666626, -0.019471682608127594, -0.04798426106572151, -0.04149153083562851, 0.029424162581562996, 0.03898309916257858, -0.008396392688155174, 0.047109853476285934, 0.019494587555527687, 0.028613535687327385, -0.01668710447847843, 0.02869405597448349, -0.020332403481006622, 0.07250770926475525, 0.051433015614748, 0.06608599424362183, 0.018164658918976784, 0.0035530284512788057, 0.04733988642692566, 0.006680872291326523, 0.00151995534542948, 0.04442603141069412, 0.012272459454834461, -0.030059760436415672, -0.008409122936427593, -0.022811980918049812, 0.03169066458940506, 0.006754552945494652, -0.025407832115888596, -0.0258786603808403, -0.061566926538944244, 0.019889332354068756, 0.011521813459694386, -0.015091260895133018, 0.056327350437641144, -0.02655768394470215, -0.022326210513710976, 0.007222441956400871, -0.01483493484556675, 0.015689294785261154, 0.028186708688735962, -0.023097727447748184, -0.002001172862946987, 0.051311515271663666, 0.03420443460345268, 0.030873704701662064, 0.03094511851668358, 0.014625484123826027, -0.001999260624870658, -0.046858906745910645, 0.004395817872136831, -0.019981052726507187, 0.031500235199928284, -0.05232229828834534, -0.0063744597136974335, -0.01858365163207054, 0.03309280052781105, -0.0033079679124057293, 0.0038946857675909996, 0.0037927916273474693, -0.04879169911146164, -0.029191557317972183, -0.06028898060321808, 0.03875630348920822, -0.05674576759338379, -0.007359142415225506, 0.04725383594632149, 0.009471193887293339, -0.027678953483700752, 0.06637301295995712, -0.020689358934760094, 0.03372642397880554, 0.04407781735062599, 0.03361997753381729, 0.017659923061728477, 0.023903459310531616, 0.067201629281044, -0.011859866790473461, 0.01387720089405775, 0.058922190219163895, -0.02481805346906185, -0.02465817518532276, -0.027451680973172188, -0.04908996820449829, -0.020756348967552185, -0.021121138706803322, -0.02105621062219143, 0.012736290693283081, 0.02285410277545452, 0.004413334187120199, -0.06686379760503769, 0.02005230449140072, 0.04809325188398361, -0.043963681906461716, 0.007466206792742014, 0.01903313398361206, 0.06013025715947151, -0.006107065360993147, -0.01621893234550953, -0.012337337248027325, 0.011526145972311497, -0.01017877645790577, -0.005599241238087416, 0.035758644342422485, -0.01322739664465189, -0.041497040539979935, -0.0034894419368356466, -0.055543798953294754, -0.02231542393565178, 0.02478434145450592, -0.05323738604784012, -0.0447358675301075, 0.03773988410830498, 0.018453726544976234, 0.020491059869527817, -0.017598509788513184, -0.043344125151634216, 0.0006921976455487311, 0.04973183572292328, 0.034071944653987885, -0.03148869052529335, 0.027753163129091263, 0.020906539633870125, -0.024003764614462852, 0.037937019020318985, -0.008212708868086338, 0.020950553938746452, -0.04369235038757324, -0.01348413061350584, 0.007270167116075754, 0.024088693782687187, -0.022494973614811897, -0.0636020079255104, 0.03535664826631546, 0.017048539593815804, -0.004009932745248079, -0.030178898945450783, -0.04306634142994881, 0.009043854661285877, -0.04569556564092636, -0.03237400949001312, -0.053807955235242844, 0.00808015652000904, -0.013861022889614105, 0.006917046383023262, 0.03355959802865982, -0.07303667068481445, 0.15773272514343262, 0.023402368649840355, 0.04119526967406273, 0.003990914672613144, 0.01731136068701744, 0.06232502683997154, 0.01974795013666153, 0.005074113607406616, -0.011406620033085346, -0.030646316707134247, 0.010028054937720299, 0.0003765709407161921, 0.023090526461601257, -0.009330473840236664, 0.025431184098124504, 0.05022789537906647, -0.03143419325351715, 0.03021971508860588, 0.006163808982819319, -0.05508754774928093, -0.051488108932971954, 0.0009060157462954521, -0.005833175964653492, 0.06629897654056549, -0.010611625388264656, 0.026242012158036232, 0.023342590779066086, -0.060615599155426025, -0.013515829108655453, -0.03186287730932236, 0.04750926047563553, -0.038322728127241135, 0.0323357991874218, -0.043309833854436874, -0.05722678452730179, 0.03816431015729904, 0.004942253232002258, -0.05920179933309555, 0.019112534821033478, -0.007011536043137312, -0.013276730664074421, 0.008525685407221317, 0.014040285721421242, -0.04502767696976662, 0.027200335636734962, 0.016108272597193718, -0.01158211287111044, 0.025347841903567314, 0.004519391804933548, -0.03275543823838234, 0.05993552878499031, -0.0015202986542135477, 0.02653801068663597, 0.0043544224463403225, -0.03629932180047035, 0.0044817812740802765, 0.0024986546486616135, -0.013430432416498661, -0.012259538285434246, -0.021790169179439545, 0.031081173568964005, 0.01596364565193653, -0.026266975328326225, 0.015329884365200996, -0.05199536681175232, -0.01896371692419052, 0.04309524968266487, -0.008177232928574085, -0.01809796877205372, -0.0016740354476496577, -0.003875399474054575, -0.008057269267737865, 0.0034815024118870497, -0.02832772396504879, 0.053621869534254074, 0.028572862967848778, -0.04711449518799782, 0.04467852786183357, 0.03037000261247158, -0.008742657490074635, 0.008533673360943794, -0.04619868844747543, -0.017821410670876503, -0.010820762254297733, -0.013882988132536411, 0.0466332770884037, -0.048955321311950684, -0.0324220135807991, -0.03779847174882889, 0.05952167510986328, 0.03197444602847099, 0.05728888139128685, -0.015804730355739594, -0.02230188623070717, -0.011282792314887047 ]
Cathedral in the Desert - a little tough to get to, but worth the climb. Hole in the Rock - what a view. Getting to watch a water plane take off - exciting! A stormy day on the lake is pretty dramatic. My first experience on Lake Powell was with my husband's family for a week on a houseboat. Spending a week with 20+ members of a new family is a bit daunting, but after just a few days, it was like I had been a part of the family for years! Part of that had to do with just plain great people, but the other part had to do with Lake Powell itself. What a beautiful place to get acquainted! From sun up to sun down we explored the endless beauty that is Lake Powell. Swimming, jet skiing, kayaking, climbing rocks and hills and then once the day is done, lying there gazing above you at the breathtaking night sky. That week went by much too quickly, and it just made me more anxious to the next time we'd get to be together in that magical place!! Join in and write your own page! It's easy to do. How? Simply click here to return to My Most Memorable Lake Powell Vacation.
[ 0.00778698967769742, 0.028079474344849586, -0.010000279173254967, 0.005037766415625811, -0.037896737456321716, 0.009224901907145977, -0.027962280437350273, 0.07050339877605438, 0.03287200629711151, -0.014786769635975361, 0.02913915365934372, 0.00817235466092825, 0.016369855031371117, -0.04216545820236206, -0.009028646163642406, -0.014436517842113972, -0.061740774661302567, -0.040079157799482346, -0.016805490478873253, 0.008713488467037678, -0.026154527440667152, 0.017833400517702103, -0.07861383259296417, -0.03919951245188713, -0.011356502771377563, 0.047026269137859344, 0.04627397656440735, -0.012361185625195503, 0.03587175905704498, 0.05262960493564606, -0.028401395305991173, -0.023372480645775795, 0.04269219934940338, -0.06552029401063919, -0.029208267107605934, -0.0178680419921875, 0.0452503003180027, -0.006528998259454966, -0.03754371404647827, -0.03755692020058632, -0.00693086814135313, -0.0410911850631237, 0.037176791578531265, -0.04946502670645714, -0.026650363579392433, -0.008932532742619514, -0.009057636372745037, -0.016881220042705536, 0.01892491988837719, -0.05242311954498291, 0.03649159520864487, 0.005307240877300501, 0.037645772099494934, 0.011825747787952423, -0.009879526682198048, 0.02421865239739418, -0.012703469023108482, -0.017394687980413437, -0.012484223581850529, 0.031991373747587204, -0.0074651953764259815, 0.00876481831073761, 0.0329422689974308, -0.05815952643752098, 0.004872145131230354, 0.022002466022968292, -0.006053106393665075, -0.0067873853258788586, 0.016186049208045006, -0.0005378442583605647, 0.00463389465585351, 0.0023954615462571383, -0.006927810609340668, -0.011671025305986404, -0.03125176578760147, 0.011205846443772316, -0.002066672081127763, 0.0037671758327633142, -0.011229785159230232, 0.00980545487254858, -0.008565365336835384, 0.027313631027936935, 0.010280506685376167, 0.03448959439992905, -0.057799629867076874, -0.024992238730192184, 0.015233089216053486, 0.03060670755803585, 0.027611110359430313, 0.0045018489472568035, -0.0009113746345974505, 0.05150100588798523, 0.03065061755478382, -0.02749999426305294, 0.032381683588027954, 0.024540482088923454, -0.08366265892982483, 0.03312050551176071, 0.0028728717006742954, 0.027564866468310356, 0.03620925173163414, 0.008656720630824566, -0.014629058539867401, 0.03810201585292816, -0.03448602557182312, -0.01233492698520422, -0.017925512045621872, -0.015057427808642387, 0.003547216299921274, -0.03414905071258545, -0.01897963508963585, -0.0050168405286967754, 0.026448316872119904, 0.006118408869951963, -0.003722960827872157, 0.029254179447889328, 0.004832079634070396, 0.033896755427122116, -0.03938741981983185, 0.006031453143805265, 0.002829076489433646, 0.0101101603358984, 0.02916417270898819, -0.02937908284366131, 0.015057886019349098, -0.03816429153084755, -0.07182925939559937, 0.05793109908699989, -0.012415587902069092, -0.012008347548544407, -0.014389511197805405, -0.04237589240074158, -0.027093010023236275, 0.027005085721611977, -0.004707959480583668, 0.008836280554533005, -0.01473022811114788, -0.005090207792818546, 0.018033746629953384, -0.09607617557048798, 0.0427120178937912, 0.035040635615587234, 0.007025456987321377, 0.0804896429181099, 0.03394908457994461, 0.04795112460851669, 0.005316152237355709, -0.003024998353794217, -0.056269869208335876, 0.03754815831780434, -0.04006100073456764, 0.004411695525050163, 0.018506933003664017, 0.032500091940164566, 0.017989540472626686, -0.00735233211889863, 0.000012005744792986661, 0.003903666278347373, 0.02206895500421524, 0.014559570699930191, -0.007793135941028595, 0.019288120791316032, -0.01674637384712696, 0.02883567102253437, -0.014340200461447239, 0.009500736370682716, -0.010265694931149483, -0.029288863763213158, 0.0026868577115237713, -0.063991017639637, 0.007959632202982903, -0.0085324477404356, -0.03662463650107384, 0.0014604610623791814, 0.03426332399249077, 0.0402107797563076, 0.019787907600402832, -0.015810750424861908, 0.05686727538704872, 0.047852177172899246, -0.0385044664144516, 0.01946096681058407, 0.004605268128216267, 0.06132074445486069, -0.0037455663550645113, -0.03369872272014618, -0.005828863475471735, -0.031161168590188026, -0.03937767446041107, -0.01961597241461277, -0.004782612901180983, -0.005540776066482067, -0.021642770618200302, 0.037357818335294724, 0.02987520396709442, 0.023805081844329834, -0.0376516729593277, -0.038016628473997116, -0.025338776409626007, -0.04566072300076485, 0.0002455160429235548, 0.03459754213690758, -0.047908682376146317, 0.063757985830307, 0.009844866581261158, -0.01876489631831646, 0.03811448812484741, 0.07866848260164261, -0.001293657231144607, -0.006402395199984312, 0.0358971506357193, 0.019743584096431732, 0.0008281873888336122, -0.025563079863786697, -0.009778187610208988, -0.01662539318203926, -0.024429036304354668, 0.060072921216487885, -0.039156533777713776, -0.0256667397916317, 0.043427105993032455, 0.012896387837827206, 0.04455585405230522, 0.040497638285160065, -0.016558129340410233, -0.006637377664446831, 0.004885827656835318, 0.05620761215686798, -0.022856591269373894, -0.015263931825757027, -0.02613070420920849, 0.0175765473395586, 0.028724145144224167, 0.08267499506473541, 0.03224123641848564, 0.03358707204461098, 0.026530737057328224, 0.04238102212548256, -0.00543972896412015, -0.014995942823588848, 0.0005188209470361471, 0.018618034198880196, 0.03968330845236778, 0.01742015779018402, -0.0019573168829083443, 0.036821842193603516, -0.012695797719061375, -0.0034656866919249296, -0.020679505541920662, 0.03874132037162781, -0.007922179065644741, 0.037907619029283524, 0.01677722856402397, 0.04287699982523918, -0.004448815248906612, 0.03384077548980713, 0.038067709654569626, 0.055998966097831726, -0.01773080974817276, -0.019851962104439735, 0.006932518910616636, 0.01752585358917713, -0.019617777317762375, -0.00912551674991846, 0.01966875232756138, -0.003220262238755822, -0.03888300806283951, 0.00896686501801014, -0.004242627415806055, -0.07376392930746078, -0.007683269679546356, -0.05849314108490944, -0.02744911052286625, -0.04622870311141014, -0.03882627561688423, -0.0013156139757484198, 0.06042315438389778, -0.027370287105441093, 0.030151940882205963, -0.02422168292105198, 0.009519246406853199, -0.010913074016571045, -0.017370903864502907, 0.050074417144060135, 0.03450426459312439, 0.023584607988595963, -0.020251953974366188, 0.05136141926050186, 0.02223239094018936, 0.03379644453525543, -0.031432416290044785, -0.014635843224823475, 0.002320222556591034, -0.022970164194703102, 0.027661260217428207, -0.03374524787068367, -0.002558369655162096, -0.008980968967080116, -0.05390289053320885, -0.07089658081531525, 0.027805961668491364, 0.01604394055902958, -0.01914065144956112, 0.008855742402374744, -0.05489801988005638, 0.06063020974397659, 0.014595613814890385, -0.01785246469080448, 0.01294002402573824, 0.06159771978855133, -0.032039664685726166, 0.07548624277114868, 0.033686816692352295, -0.0031279700342565775, -0.04413091018795967, 0.07770524173974991, 0.04450337216258049, 0.0049706329591572285, -0.008141351863741875, 0.018514694646000862, -0.0017703233752399683, 0.02699633315205574, -0.006363336928188801, 0.014101171866059303, -0.030344171449542046, 0.06762455403804779, 0.02202806994318962, -0.0638110488653183, 0.01741514913737774, -0.01455816812813282, -0.02031431347131729, -0.06653428822755814, -0.05945500358939171, 0.018901005387306213, 0.05405757576227188, 0.01069908868521452, -0.006320837885141373, -0.047506172209978104, -0.016110865399241447, 0.05273523926734924, 0.018076427280902863, -0.028964286670088768, 0.0285286083817482, 0.04681999981403351, -0.020588841289281845, 0.006084078922867775, 0.00997555535286665, -0.0442219153046608, 0.01518603228032589, 0.02376735210418701, -0.016973143443465233, 0.009129012003540993, 0.020940210670232773, 0.01331126969307661, -0.001453380798920989, 0.031580258160829544, -0.041895102709531784, -0.001103131682612002, 0.0036054402589797974, 0.010200997814536095, -0.00962997879832983, 0.013908261433243752, 0.015751533210277557, -0.020445099100470543, -0.02619062177836895, -0.05162617564201355, 0.06921298056840897, 0.01847607083618641, 0.07681489735841751, -0.034940142184495926, 0.07612145692110062, 0.023292552679777145, -0.02075391449034214, 0.034090034663677216, -0.054067134857177734, -0.019139714539051056, 0.033589109778404236, 0.006061607506126165, 0.02653954178094864, -0.014444803819060326, -0.0002235661231679842, -0.007359230425208807, 0.0248018316924572, 0.04466075822710991, -0.023616530001163483, 0.016901440918445587, -0.015378938987851143, -0.01763281226158142, -0.02285088784992695, 0.011718511581420898, -0.010506857186555862, -0.014364797621965408, -0.015035239979624748, -0.014506443403661251, -0.04224194213747978, -0.04127086326479912, 0.05118167772889137, 0.012831490486860275, 0.010410592891275883, -0.01593342423439026, -0.0017716247821226716, 0.027483833953738213, 0.030771438032388687, 0.02913038805127144, 0.0019994250033050776, 0.026282144710421562, -0.044748932123184204, 0.055041708052158356, 0.003325431142002344, -0.04601222649216652, -0.027068890631198883, -0.01809612475335598, -0.017312709242105484, 0.0245547816157341, 0.030208270996809006, -0.01810249499976635, -0.05324488505721092, 0.047621458768844604, -0.016626862809062004, 0.030939608812332153, -0.053639598190784454, -0.01667722873389721, -0.01576743833720684, 0.0293581485748291, 0.0004987340071238577, -0.06667855381965637, 0.008826633915305138, -0.06327670067548752, 0.05649464577436447, 0.018823739141225815, -0.016048617660999298, -0.029514078050851822, -0.02213933877646923, -0.00873575359582901, -0.02420973964035511, 0.009136483073234558, 0.03396322578191757, -0.01010878011584282, 0.018455520272254944, -0.048635032027959824, 0.029103197157382965, 0.025777656584978104, -0.00720391096547246, 0.0020507227163761854, -0.015943627804517746, -0.0010093175806105137, -0.027323367074131966, 0.013834001496434212, 0.007269210647791624, -0.03276366367936134, -0.004484009463340044, -0.04260708764195442, -0.015438031405210495, 0.005437961779534817, -0.030574701726436615, 0.01066585723310709, 0.015092406421899796, 0.018379567191004753, 0.02033276855945587, -0.013292873278260231, 0.018139375373721123, -0.0006905181217007339, 0.05900336802005768, 0.0006325070862658322, -0.03462931141257286, 0.023535223677754402, -0.0120383994653821, -0.0410156212747097, 0.038281191140413284, 0.05782051011919975, 0.009999057278037071, -0.0021168827079236507, 0.05422253534197807, -0.03799138590693474, 0.02875933051109314, -0.0720163881778717, 0.009651899337768555, -0.011429677717387676, -0.01938856579363346, 0.006414654664695263, -0.056317251175642014, 0.013709883205592632, 0.01113109476864338, -0.0028531779535114765, -0.05381273850798607, -0.07619500160217285, -0.004560732748359442, 0.010677335783839226, 0.014136716723442078, -0.0011142273433506489, 0.0326869860291481, -0.005726643372327089, -0.017146091908216476, -0.05219271406531334, 0.02878819778561592, 0.0035992127377539873, 0.005707996431738138, 0.029814686626195908, 0.022691311314702034, -0.002255928236991167, 0.03692064434289932, 0.018876779824495316, -0.011701005510985851, -0.004638545215129852, -0.018821390345692635, -0.016572706401348114, -0.0348459929227829, 0.014588744379580021, -0.023943601176142693, -0.019083701074123383, -0.015953512862324715, -0.01148067694157362, -0.029204297810792923, 0.019703807309269905, 0.016690701246261597, 0.025250675156712532, 0.023524662479758263, -0.0011185380863025784, 0.004507794510573149, 0.035394348204135895, 0.00532164191827178, -0.03107534907758236, -0.0250077024102211, 0.057045839726924896, -0.03495189547538757, 0.04348156601190567, 0.015722548589110374, -0.031220776960253716, -0.03589974716305733, -0.0320008359849453, -0.030193954706192017, -0.04083392024040222, -0.04255601018667221, -0.02960386872291565, -0.026994800195097923, -0.04142232984304428, 0.0093866977840662, 0.016911813989281654, -0.028648292645812035, 0.015962248668074608, -0.038616832345724106, -0.011671620421111584, -0.027694981545209885, -0.005090078338980675, -0.018860172480344772, 0.005154374986886978, -0.01919337920844555, 0.022164927795529366, 0.011026348918676376, 0.003471188945695758, 0.014977969229221344, 0.008612220175564289, 0.016288848593831062, -0.014502710662782192, -0.057062484323978424, -0.025990193709731102, -0.012560020200908184, 0.016045404598116875, -0.003922603093087673, 0.02190564200282097, -0.030185557901859283, 0.05955803394317627, -0.04696853831410408, -0.00628311512991786, -0.024459077045321465, 0.0033074032980948687, -0.01074217353016138, 0.005659551825374365, 0.040519051253795624, -0.026474282145500183, -0.009487991221249104, -0.01768706552684307, 0.040234215557575226, 0.0257123876363039, 0.008073240518569946, -0.02913195639848709, -0.03992129862308502, -0.038100458681583405, -0.0485309436917305, 0.041491471230983734, -0.018004167824983597, -0.02250169962644577, -0.06146742030978203, 0.005987945012748241, 0.011556624434888363, -0.00451182434335351, 0.024642284959554672, 0.07629905641078949, -0.017100175842642784, -0.010020051151514053, -0.03645966574549675, -0.008438454009592533, 0.03211549296975136, -0.009030417539179325, -0.012595887295901775, 0.0009510862291790545, -0.02927675098180771, -0.006299798376858234, -0.013384118676185608, -0.026063574478030205, -0.06738025695085526, -0.022037062793970108, 0.056516531854867935, 0.006124874576926231, 0.05411360040307045, 0.018942130729556084, -0.0420076884329319, -0.043745458126068115, 0.07426705956459045, 0.025814536958932877, 0.00006540792674059048, 0.027338139712810516, -0.022334018722176552, -0.04084387049078941, 0.033249158412218094, 0.002309615956619382, -0.01813374273478985, -0.0400003045797348, 0.03871607035398483, -0.007639806717634201, -0.04045777767896652, 0.00502330157905817, 0.07528247684240341, -0.06723413616418839, -0.06356517225503922, 0.02197146601974964, -0.025864921510219574, -0.019956128671765327, -0.039850231260061264, 0.01018083281815052, -0.0016974197933450341, -0.013121009804308414, 0.004392283037304878, 0.032411493360996246, 0.022121315822005272, 0.026851026341319084, 0.0430053249001503, 0.0447717159986496, -0.04768267273902893, 0.049123916774988174, 0.03590228408575058, 0.012005805969238281, -0.03438881039619446, -0.052283406257629395, -0.027045585215091705, 0.02705972269177437, -0.009029963985085487, 0.01918961852788925, -0.01565752737224102, -0.022930171340703964, 0.013911793008446693, 0.00145903998054564, 0.032177507877349854, 0.017414571717381477, 0.031382326036691666, -0.00032461166847497225, -0.02776257134974003, -0.03600269928574562, -0.038674671202898026, 0.019338276237249374, -0.016168363392353058, 0.05644120275974274, -0.0641825869679451, -0.017595047131180763, 0.036565426737070084, -0.03547441214323044, -0.02567666955292225, -0.044197872281074524, -0.044059496372938156, -0.050972577184438705, -0.04616619646549225, -0.043146904557943344, -0.01458677276968956, -0.008935387246310711, 0.013855071738362312, 0.014573758468031883, -0.01835385523736477, 0.012575418688356876, 0.018691953271627426, -0.005316872615367174, 0.026259230449795723, -0.009423686191439629, 0.052015166729688644, -0.04491550475358963, -0.032180752605199814, -0.02062613144516945, 0.011024189181625843, -0.0029617385007441044, -0.014797162264585495, -0.01041084062308073, 0.008148165419697762, -0.010065698064863682, 0.03889227658510208, 0.019119827076792717, 0.015181389637291431, -0.02409624308347702, -0.03542981669306755, -0.0022381851449608803, 0.019043678417801857, -0.008569027297198772, 0.04308763146400452, 0.020869197323918343, -0.006630992982536554, 0.03231072425842285, 0.0019920188933610916, -0.03996429219841957, 0.005517613608390093, -0.017240354791283607, 0.014471527189016342, 0.004333219490945339, -0.03557378798723221, -0.03726496547460556, -0.00297266012057662, -0.061790887266397476, 0.00241839443333447, 0.01831170544028282, -0.01242666132748127, -0.000480326940305531, -0.022379230707883835, 0.015608967281877995, 0.06182009354233742, 0.005045329686254263, 0.020783377811312675, 0.0017593239899724722, -0.006821260787546635, 0.03464889898896217, -0.018227949738502502, 0.00618329830467701, 0.024033749476075172, 0.012293652631342411, 0.005527113564312458, 0.014080754481256008, -0.0069471197202801704, -0.013603243976831436, 0.03919161856174469, 0.0007275090902112424, 0.0020629339851439, -0.035935115069150925, 0.000040212966268882155, -0.001446180627681315, 0.0647171139717102, -0.007579630706459284, -0.010860987938940525, 0.004717876669019461, -0.061551254242658615, -0.04414189234375954, 0.030484270304441452, -0.08721865713596344, -0.016940411180257797, 0.01451216172426939, -0.012668267823755741, -0.03250321000814438, 0.01013967115432024, -0.04139542207121849, 0.011018740944564342, -0.01723284274339676, -0.005674806889146566, -0.02607395313680172, 0.0057426742278039455, 0.021830137819051743, 0.017911523580551147, -0.0002239422028651461, 0.01786813698709011, -0.002788288751617074, 0.03431857377290726, -0.04785294458270073, -0.03830355033278465, -0.016345791518688202, 0.009649704210460186, 0.01205549854785204, 0.01493703480809927, 0.00009167243115371093, 0.050644658505916595, -0.005102583672851324, -0.008092980831861496, -0.007397884503006935, 0.04006897285580635, 0.001890274346806109, 0.007807367946952581, 0.021114498376846313, -0.014267507009208202, -0.03469623252749443, 0.017183950170874596, -0.012147406116127968, -0.014865193516016006, -0.038127608597278595, 0.06552144885063171, 0.032433122396469116, -0.0036275654565542936, 0.05348401516675949, 0.001020427094772458, 0.04183000698685646, -0.012015865184366703, 0.009585057385265827, 0.01253466121852398, 0.028674831613898277, 0.051173217594623566, 0.005356485024094582, -0.012672112323343754, 0.02604328654706478, 0.036027222871780396, 0.00345896789804101, 0.01617591641843319, 0.026875732466578484, 0.02956121787428856, -0.012382397428154945, -0.0307824295014143, -0.02031155303120613, -0.009717739187180996, -0.007997803390026093, -0.014477990567684174, 0.007668927777558565, -0.026756176725029945, -0.024100102484226227, -0.014949237927794456, -0.015582784079015255, 0.05766674503684044, -0.017978332936763763, -0.00007347163773374632, 0.00381870218552649, -0.03141174837946892, -0.038634587079286575, 0.04824686422944069, -0.014166373759508133, 0.03400413691997528, 0.03977017477154732, 0.025009682402014732, -0.02203674241900444, 0.0441584475338459, 0.0008930623298510909, -0.009568936191499233, -0.021095603704452515, 0.004509878810495138, 0.01985328085720539, 0.0017327299574390054, -0.04008958116173744, 0.016740765422582626, -0.038339320570230484, 0.04176213964819908, -0.016269581392407417, -0.01779419369995594, 0.032761722803115845, -0.03514629974961281, -0.055932704359292984, -0.04451083391904831, 0.032191164791584015, -0.029761282727122307, -0.010612637735903263, 0.046854812651872635, 0.008396213874220848, -0.03446075692772865, 0.02569349855184555, 0.023798245936632156, 0.04239274561405182, -0.015928277745842934, 0.048705801367759705, -0.02070116065442562, 0.03931819275021553, 0.0704091340303421, -0.059554506093263626, -0.00745115801692009, 0.03103807382285595, 0.0027886382304131985, -0.05114840716123581, -0.003041869029402733, -0.029749931767582893, -0.00004119722871109843, -0.0009934469126164913, -0.007662251591682434, 0.012050502933561802, 0.06044333800673485, -0.015527919866144657, -0.06179011985659599, 0.025550490245223045, 0.036681558936834335, -0.04514504224061966, 0.026357393711805344, -0.007829832844436169, 0.04477226361632347, -0.02982708066701889, -0.021717151626944542, -0.028484957292675972, -0.00880115944892168, 0.009068600833415985, -0.037397146224975586, 0.043964941054582596, 0.01055238675326109, -0.014669072814285755, -0.04984651878476143, -0.04192999377846718, -0.005062723532319069, 0.006566420663148165, -0.04322372376918793, -0.048168525099754333, -0.01682187058031559, 0.07123874127864838, 0.002143379533663392, 0.0067778052762150764, -0.054415296763181686, 0.014364480040967464, 0.033990614116191864, 0.041934534907341, 0.021467283368110657, 0.03937956318259239, 0.043886274099349976, -0.02537623792886734, 0.02777698263525963, -0.05095271021127701, 0.019296329468488693, -0.009691686369478703, -0.004537389148026705, -0.008639867417514324, 0.023345904424786568, -0.021930363029241562, -0.0561693049967289, 0.0004775517445523292, 0.029467374086380005, 0.008351819589734077, -0.020940400660037994, -0.046259522438049316, 0.006037326063960791, -0.04708066210150719, -0.0243641659617424, -0.05412932485342026, 0.030732521787285805, 0.06028277054429054, -0.007562604267150164, -0.0020023903343826532, -0.06031548231840134, 0.15463557839393616, 0.03749607130885124, 0.010545519180595875, -0.019736407324671745, -0.00809815526008606, 0.040227338671684265, 0.05872079357504845, -0.00029044048278592527, 0.02297919988632202, -0.041311733424663544, 0.03569870814681053, 0.003404074115678668, 0.020321480929851532, -0.004909591283649206, 0.04969623684883118, 0.06505391001701355, -0.02348262257874012, -0.012229747138917446, 0.016902221366763115, -0.035177092999219894, -0.017599625512957573, 0.031706925481557846, 0.024406887590885162, 0.03169018030166626, 0.024398762732744217, 0.0015542736509814858, 0.008778330869972706, -0.0520988367497921, -0.016128474846482277, -0.007125402335077524, 0.006734705530107021, -0.02538200467824936, 0.04344279691576958, -0.019943704828619957, -0.02806522510945797, 0.047447919845581055, -0.0017416849732398987, -0.01806361973285675, 0.014493782073259354, 0.014208370819687843, -0.014607015065848827, 0.00880708359181881, 0.021553359925746918, -0.033584002405405045, 0.01226367149502039, 0.03295211121439934, -0.024458613246679306, 0.02104557491838932, 0.0010720791760832071, -0.007824545726180077, 0.04035000130534172, -0.016268234699964523, 0.011732494458556175, -0.021943137049674988, -0.050852272659540176, 0.022480133920907974, 0.0020851297304034233, -0.01921773888170719, -0.01886141672730446, 0.00656263018026948, 0.03606844320893288, 0.0042100087739527225, -0.023819051682949066, 0.011384970508515835, -0.03945975378155708, 0.02513495646417141, 0.02438790164887905, -0.015664299950003624, -0.03652556985616684, -0.048655711114406586, -0.009221391752362251, -0.021583883091807365, -0.0006824785377830267, -0.034357331693172455, 0.05875405669212341, 0.0400715172290802, -0.01270099077373743, 0.019018473103642464, 0.04542771726846695, -0.021546591073274612, -0.005802818574011326, -0.029716691002249718, -0.023151276633143425, -0.004486399702727795, 0.017633803188800812, 0.04143788293004036, -0.04866893216967583, -0.05061929672956467, -0.03610791265964508, 0.057933539152145386, 0.06348398327827454, 0.021372757852077484, -0.018595408648252487, -0.002657565288245678, -0.013157259672880173 ]
We thinks what prospects think, the urgency of urgency to act from the interests of a client position of theory, allowing for greater high-quality, reduced processing costs, rates are much more reasonable, won the new and previous consumers the support and affirmation for Pump Equipments , Pump Unit , Pump Boiler , but more even important is our greatest support along with the competitive cost. "Every single member from our large efficiency profits team values customers' requirements and organization communication for Pump Equipments , Pump Unit , Pump Boiler , Our company will continue to serve customers with best quality competitive price and timely delivery & the best payment term! We sincerely welcome friends from all over the world to visit& cooperate with us and enlarge our business. If you are interested in our merchandise remember to do not hesitate to contact us we'll be happy to offer you with further information!
[ -0.017442921176552773, 0.004757140763103962, -0.03031551092863083, -0.0035522340331226587, 0.002065894426777959, 0.014674455858767033, 0.010524471290409565, 0.033157188445329666, 0.01915118284523487, 0.012970799580216408, 0.03823596239089966, 0.007137234788388014, 0.0012509746011346579, -0.016997264698147774, -0.00797339715063572, -0.02763552963733673, 0.0011694453423842788, -0.03181852400302887, -0.00770722609013319, 0.005034389905631542, 0.012712004594504833, 0.007950354367494583, -0.038210704922676086, -0.014375146478414536, -0.015949169173836708, 0.03527330234646797, 0.012998203746974468, -0.01433705072849989, 0.06172725930809975, 0.04216587916016579, -0.04095203056931496, -0.012674670666456223, 0.03523840755224228, -0.04989003762602806, -0.021900083869695663, -0.016645759344100952, 0.013662131503224373, -0.0234239362180233, -0.031049814075231552, -0.06705724447965622, -0.014038726687431335, 0.01667814888060093, 0.04190053790807724, -0.014966272749006748, -0.0641850009560585, -0.009563115425407887, -0.016621550545096397, -0.07150272279977798, -0.00033807370346039534, -0.059346459805965424, 0.022315533831715584, -0.03406922519207001, -0.002425301121547818, 0.005618150811642408, -0.00896331574767828, 0.001460988074541092, 0.011572669260203838, -0.010081103071570396, -0.02895125187933445, 0.058467235416173935, 0.03251177817583084, -0.0173050370067358, 0.04119513928890228, -0.05357981473207474, 0.03416898101568222, 0.009706228040158749, -0.032605912536382675, -0.01657215505838394, 0.008724878542125225, -0.004823154769837856, -0.01402259711176157, -0.010126541368663311, -0.004550826270133257, -0.017685046419501305, 0.011155011132359505, 0.02553344890475273, -0.0036688761319965124, -0.002226148499175906, -0.042910560965538025, -0.020056435838341713, 0.036723751574754715, 0.04126351699233055, 0.023264994844794273, -0.018253056332468987, -0.04808250442147255, 0.008456041105091572, -0.002627252135425806, -0.0005124449380673468, 0.012451947666704655, -0.001678130473010242, -0.012025948613882065, 0.049558788537979126, 0.0027083454187959433, 0.0078063178807497025, 0.04017339646816254, 0.0180723425000906, -0.02137034758925438, 0.030773749575018883, 0.0019725419115275145, 0.007068003993481398, 0.009194291196763515, 0.02579081431031227, 0.0008976886747404933, 0.03215406835079193, -0.046679798513650894, 0.03084188885986805, 0.0032962344121187925, 0.023096241056919098, -0.00838184729218483, -0.03388867899775505, 0.009613553993403912, -0.029831750318408012, 0.024925950914621353, -0.016395604237914085, 0.0011340458877384663, 0.06744980067014694, -0.0008223218028433621, 0.012859034352004528, -0.03720484673976898, 0.008530637249350548, 0.02064322866499424, 0.01253985520452261, 0.026839684695005417, -0.0006942604668438435, 0.024002326652407646, -0.019668390974402428, -0.01711018569767475, 0.0627724677324295, -0.0366891548037529, -0.038411013782024384, 0.009162425063550472, -0.014685532078146935, -0.021040283143520355, 0.003066139994189143, 0.021062087267637253, 0.017551859840750694, 0.020479360595345497, 0.03513401001691818, 0.016744321212172508, -0.04491431638598442, 0.06004386022686958, 0.045287322252988815, 0.0068151680752635, 0.07352692633867264, 0.0023399805650115013, 0.03598468750715256, 0.0016390499658882618, -0.026909682899713516, -0.044547390192747116, 0.026700275018811226, -0.04258613660931587, 0.03217102214694023, -0.032234035432338715, 0.025495445355772972, 0.0041890013962984085, -0.016213219612836838, -0.021502913907170296, 0.0255475714802742, 0.01850905455648899, 0.0411301851272583, -0.00694167148321867, -0.0017039902741089463, -0.01993756927549839, 0.0419095903635025, -0.012037345208227634, 0.027997124940156937, -0.01353555265814066, -0.024196114391088486, -0.014986933209002018, -0.025463659316301346, 0.014007004909217358, -0.012938061729073524, -0.015117122791707516, 0.01589864492416382, 0.013163622468709946, 0.06331238895654678, 0.03502589836716652, 0.022015227004885674, 0.02546769753098488, 0.04418264329433441, -0.0267171747982502, -0.010297988541424274, -0.016149401664733887, 0.061724524945020676, 0.02322852611541748, 0.0026610123459249735, 0.003868691623210907, -0.04090798273682594, -0.021957550197839737, -0.011221270076930523, 0.012686650268733501, 0.021946564316749573, -0.03446883708238602, 0.03234122693538666, -0.008408493362367153, 0.006854572333395481, 0.008897594176232815, -0.004109308123588562, -0.008869417943060398, -0.055875275284051895, -0.010951478965580463, 0.06549523025751114, -0.03630557656288147, 0.018057825043797493, 0.016502799466252327, -0.038958195596933365, -0.0038041556254029274, 0.07846438139677048, -0.03006225824356079, 0.007714791689068079, 0.03227565065026283, 0.04005840793251991, -0.009089868515729904, -0.02568638138473034, 0.0024356043431907892, -0.018504492938518524, -0.034219641238451004, 0.0354817770421505, -0.024982355535030365, 0.0004762507160194218, 0.022936750203371048, 0.015677528455853462, 0.03042232245206833, 0.04163368418812752, 0.01564173959195614, -0.002993521513417363, 0.021560396999120712, 0.057242393493652344, -0.019397351890802383, -0.018933329731225967, -0.0006541676120832562, 0.047594405710697174, 0.0038062746170908213, 0.05794135108590126, 0.04731985181570053, 0.02874716930091381, 0.03808261826634407, 0.06932669132947922, -0.00932306982576847, 0.029902957379817963, -0.009923182427883148, -0.011891289614140987, 0.054777082055807114, 0.013320007361471653, -0.026902947574853897, 0.013125529512763023, 0.022196663543581963, -0.0057168263010680676, -0.019962618127465248, 0.059154339134693146, -0.001797921839170158, 0.025834474712610245, 0.027725867927074432, 0.06513279676437378, -0.034092649817466736, 0.023028623312711716, 0.031436968594789505, 0.050313036888837814, -0.02855231799185276, -0.019852684810757637, 0.00834206398576498, 0.016151001676917076, -0.010454723611474037, 0.006873468868434429, 0.03251124173402786, -0.013470285572111607, 0.016813764348626137, 0.013974638655781746, -0.032822009176015854, -0.011503016576170921, -0.02861291542649269, -0.05348381772637367, -0.02297016978263855, -0.024113744497299194, -0.02150212787091732, -0.007630100939422846, 0.02309446409344673, -0.025449762120842934, 0.03257918357849121, 0.005427197553217411, -0.01708286441862583, -0.01068171951919794, -0.04046514630317688, 0.033206257969141006, 0.022142834961414337, 0.03284124657511711, -0.033744461834430695, 0.029307203367352486, -0.01775345765054226, 0.030300723388791084, -0.0019819303415715694, 0.00544012663885951, 0.00216283998452127, -0.02648806944489479, 0.01895894668996334, 0.0206385999917984, -0.006747697480022907, 0.01995854265987873, -0.05054004490375519, -0.06976647675037384, -0.013487391173839569, -0.006163135636597872, -0.018662642687559128, -0.013452031649649143, -0.017782889306545258, 0.0680408701300621, 0.01721910946071148, -0.019160915166139603, 0.03326534107327461, 0.05189143866300583, -0.036501169204711914, 0.03448966145515442, 0.02338346466422081, 0.028173556551337242, -0.06059342622756958, 0.045216962695121765, 0.031105870380997658, -0.0008614992257207632, -0.04747499153017998, -0.021215151995420456, -0.01578556001186371, 0.008737153373658657, 0.03049495816230774, 0.004658631049096584, -0.0382511280477047, 0.003112656529992819, 0.032707616686820984, -0.07240752875804901, 0.046339601278305054, -0.04742066189646721, -0.031085018068552017, -0.053235288709402084, -0.056366924196481705, 0.015184340998530388, 0.004408105742186308, 0.017336472868919373, 0.004292585887014866, -0.04328310489654541, 0.03461640328168869, 0.0005518423276953399, 0.05428344011306763, -0.016074594110250473, 0.024666761979460716, 0.0636681616306305, -0.016856761649250984, 0.00819178856909275, 0.030904216691851616, -0.02209574729204178, -0.04610984027385712, -0.0017157257534563541, 0.014226849190890789, 0.017904765903949738, 0.03940236568450928, 0.01549906749278307, 0.013312500901520252, 0.036174774169921875, -0.0385274663567543, 0.021941468119621277, -0.01633048616349697, 0.03545565530657768, 0.011097543872892857, 0.006396373268216848, 0.0306690763682127, -0.01790890097618103, -0.017801012843847275, -0.033810101449489594, 0.045535165816545486, -0.0038582223933190107, 0.0464327298104763, -0.054316338151693344, 0.053756579756736755, 0.010152147151529789, -0.06257261335849762, 0.06303723901510239, -0.03055259771645069, 0.011510627344250679, 0.022241320461034775, 0.0075810616835951805, 0.0361395999789238, -0.05732979625463486, -0.0034400969743728638, -0.037052031606435776, 0.019150229170918465, 0.009851890616118908, 0.0025470745749771595, 0.04550909623503685, 0.000928315392229706, 0.004577605053782463, -0.02292640507221222, -0.021938426420092583, -0.00868400651961565, -0.01945655792951584, 0.009209465235471725, 0.014363521710038185, -0.0721912682056427, -0.06896347552537918, 0.021408474072813988, 0.01663610152900219, 0.0293638464063406, -0.0347362719476223, 0.035189155489206314, 0.01418028213083744, 0.014356957748532295, 0.024799685925245285, 0.0015256238402798772, 0.005822076927870512, -0.02347780019044876, 0.03849244862794876, 0.02217899262905121, -0.015608498826622963, -0.04815690219402313, -0.05117799714207649, -0.02244696207344532, 0.02439356967806816, -0.04254024103283882, -0.007021813187748194, -0.016005821526050568, 0.003221648745238781, -0.007566690910607576, 0.023745689541101456, -0.027122335508465767, -0.0396132655441761, -0.011110379360616207, 0.05212674289941788, 0.0452556274831295, -0.05282926186919212, 0.02514028176665306, -0.02824373170733452, 0.051954951137304306, 0.04772833362221718, -0.0070332312025129795, -0.04255299270153046, -0.004119266755878925, -0.015621794387698174, -0.031974632292985916, 0.016827860847115517, 0.04252752661705017, -0.0017785640666261315, -0.011438529007136822, -0.017237327992916107, 0.035151563584804535, 0.032366495579481125, -0.01352204754948616, 0.01510218158364296, -0.032681792974472046, 0.01952560432255268, 0.0020802400540560484, 0.03232927620410919, -0.0030086615588515997, -0.04174424335360527, 0.019823258742690086, -0.06359951198101044, 0.035200245678424835, 0.011103584431111813, 0.0007064309902489185, 0.006167062558233738, -0.010521488264203072, 0.015271292068064213, 0.036080725491046906, 0.010402609594166279, 0.004146019462496042, 0.00490505900233984, 0.034948546439409256, -0.055892523378133774, -0.03569505736231804, 0.022386251017451286, 0.03284779563546181, -0.041644059121608734, 0.03865203261375427, 0.03646903485059738, -0.01791059784591198, 0.003323202719911933, 0.0207992997020483, -0.050882432609796524, 0.022960249334573746, -0.04887290298938751, 0.017539791762828827, -0.012416849844157696, -0.018640896305441856, 0.038909975439310074, -0.00737044308334589, 0.0374220535159111, 0.018915440887212753, -0.027450991794466972, -0.025378357619047165, -0.0777621790766716, -0.0018575636204332113, 0.013147342018783092, -0.005454803816974163, 0.042297668755054474, -0.005627867300063372, -0.01500437781214714, -0.023070547729730606, -0.032597605139017105, 0.015909802168607712, 0.015887178480625153, 0.00833793357014656, 0.025390222668647766, 0.01910475827753544, -0.01872931607067585, 0.03155883029103279, -0.03802165389060974, 0.005979218520224094, -0.008827459067106247, -0.04664315655827522, -0.0142136225476861, -0.0491759367287159, 0.011652318760752678, 0.0009745596908032894, 0.03215558081865311, -0.029849866405129433, -0.009180578403174877, -0.019034696742892265, 0.021015271544456482, 0.0015291227027773857, 0.0260190237313509, -0.01252155750989914, 0.01426488533616066, -0.053395941853523254, 0.06101567670702934, 0.024087656289339066, -0.051379092037677765, -0.0390634648501873, 0.03907407075166702, -0.009590821340680122, 0.036374419927597046, -0.020645182579755783, -0.003840688383206725, -0.04847925901412964, -0.091225266456604, 0.017086470499634743, -0.046757545322179794, -0.023234514519572258, -0.0562635138630867, -0.02624252438545227, -0.050700537860393524, 0.033891912549734116, 0.013798716478049755, 0.008304069750010967, -0.0007688329787924886, -0.042398493736982346, -0.004058067686855793, -0.028901364654302597, -0.05345536395907402, -0.026604071259498596, -0.027896882966160774, -0.04435685649514198, 0.027451468631625175, 0.022935377433896065, 0.02781003527343273, -0.007278079632669687, 0.010409350506961346, 0.030057035386562347, 0.02318572998046875, -0.045403484255075455, -0.05252803489565849, -0.020400650799274445, 0.002154719550162554, 0.010994710959494114, -0.009088055230677128, -0.03326825052499771, 0.03804364055395126, -0.027920253574848175, 0.0022345073521137238, -0.02474917098879814, -0.029057402163743973, 0.0021678025368601084, 0.008836952969431877, 0.051872048527002335, -0.023040954023599625, 0.021056948229670525, -0.018730435520410538, 0.06387875974178314, 0.04613976180553436, 0.0014065072173252702, -0.027056237682700157, -0.06590336561203003, -0.044619593769311905, -0.03337964415550232, 0.03389516845345497, -0.02805674821138382, -0.015879034996032715, -0.051430635154247284, 0.0004365772765595466, 0.026683086529374123, -0.010053854435682297, 0.021662555634975433, 0.06635142117738724, -0.010826539248228073, 0.001052312203682959, -0.026766156777739525, 0.013420239090919495, 0.05894562229514122, -0.04922647774219513, -0.014853469096124172, -0.0034329171758145094, -0.03137798234820366, -0.008694945834577084, -0.07048375904560089, -0.0682232677936554, -0.054441340267658234, -0.01614042930305004, 0.057027023285627365, -0.02732350304722786, 0.04804634302854538, -0.017224662005901337, -0.038688935339450836, -0.05312376841902733, 0.051195178180933, -0.023046370595693588, 0.00037838274147361517, 0.06096842885017395, 0.008779817260801792, -0.0331302173435688, 0.026044072583317757, 0.007110636681318283, -0.008443241007626057, -0.0529104582965374, 0.026393331587314606, -0.0007403072086162865, -0.049465153366327286, 0.002372919814661145, 0.04448563978075981, -0.03851687163114548, -0.07946863770484924, 0.02160543203353882, 0.004155144561082125, 0.001496447017416358, -0.03747118264436722, 0.029046790674328804, -0.007779803592711687, 0.025774050503969193, -0.002130715874955058, 0.021730851382017136, 0.0020248310174793005, 0.04225177317857742, 0.005392347928136587, 0.045675601810216904, -0.058026038110256195, -0.0015092194080352783, 0.030915597453713417, 0.01066377479583025, -0.025407323613762856, -0.030869029462337494, -0.040963225066661835, -0.012458527460694313, -0.0018208783585578203, 0.053010791540145874, 0.015442442148923874, 0.008167535997927189, 0.04012325033545494, -0.02133132703602314, 0.05799051374197006, -0.01409920584410429, 0.001823462313041091, -0.0050904406234622, -0.04463416710495949, -0.06332580745220184, -0.012757064774632454, 0.023292619735002518, -0.020404506474733353, -0.010780874639749527, -0.013599441386759281, 0.005745975766330957, 0.03536352887749672, 0.016921833157539368, 0.00016781983140390366, -0.05096897855401039, -0.009995557367801666, -0.021164512261748314, -0.025283144786953926, -0.0450211726129055, -0.014324293471872807, 0.024647897109389305, 0.020277461037039757, -0.011540861800312996, -0.04024065285921097, -0.001657975371927023, 0.018465625122189522, -0.0018667118856683373, 0.010151105001568794, -0.03474201634526253, 0.01941216178238392, -0.04506915062665939, -0.060403116047382355, -0.05543651059269905, 0.036764487624168396, -0.0007511645089834929, -0.031852837651968, -0.015896879136562347, 0.001221235259436071, 0.003682370064780116, 0.0038684771861881018, 0.01804843544960022, -0.00832335650920868, -0.005865638144314289, -0.060697585344314575, 0.012791094370186329, 0.02569640427827835, -0.017609113827347755, 0.061869654804468155, 0.01582936756312847, -0.02197594940662384, 0.036296311765909195, 0.006546787451952696, -0.03558727726340294, -0.018345553427934647, -0.013012432493269444, 0.019100811332464218, 0.00005599182259174995, -0.017213691025972366, -0.0435468815267086, 0.012912268750369549, -0.0407603420317173, 0.010847289115190506, 0.008534633554518223, 0.009689734317362309, 0.0071548293344676495, 0.007178780622780323, -0.03391682356595993, 0.033540841192007065, -0.013590590097010136, 0.003995969891548157, 0.035894282162189484, 0.03467368334531784, 0.005079437978565693, -0.011302371509373188, 0.023149151355028152, -0.005510867107659578, 0.029867010191082954, -0.06152848154306412, 0.028058765456080437, 0.031008044257760048, -0.006388755515217781, 0.04293220117688179, -0.018768901005387306, -0.04026205092668533, -0.0655767023563385, -0.030763575807213783, -0.004269098863005638, 0.06941476464271545, 0.002689600922167301, -0.001759305945597589, 0.018514811992645264, -0.004028540104627609, -0.002315849531441927, 0.0038846181705594063, -0.06936949491500854, -0.019073819741606712, 0.06097900867462158, -0.012634026817977428, -0.035140424966812134, 0.001921062241308391, -0.058077115565538406, 0.0017279016319662333, -0.00600085174664855, -0.009552815929055214, -0.04345891624689102, 0.0020252454560250044, -0.0012002408038824797, 0.042551953345537186, 0.007472484838217497, 0.015750709921121597, 0.024666210636496544, 0.061380937695503235, -0.016662277281284332, -0.04767787456512451, 0.011364887468516827, -0.010141394101083279, -0.014300864189863205, -0.016504649072885513, 0.007618456147611141, 0.006566182244569063, -0.007286757230758667, 0.00228976272046566, -0.009526045992970467, 0.028448037803173065, -0.008186799474060535, 0.034075360745191574, -0.0017017062054947019, -0.009493461810052395, -0.025019442662596703, 0.04511331394314766, -0.012694867327809334, -0.028844565153121948, -0.04355717822909355, 0.04491719603538513, 0.03954153135418892, -0.0033846197184175253, 0.0281999334692955, 0.014061570167541504, 0.04454866051673889, -0.006702037528157234, 0.022999053820967674, -0.032069217413663864, 0.04631528630852699, 0.04502442106604576, 0.04493231698870659, -0.0101704653352499, -0.011104471050202847, 0.057669565081596375, 0.00833194050937891, -0.0016158550279214978, 0.04387541860342026, 0.002140048425644636, -0.04025343433022499, 0.010814759880304337, -0.02259424328804016, 0.01074322871863842, 0.00774001469835639, -0.018169738352298737, -0.007452796678990126, -0.0373656339943409, -0.005323971621692181, 0.01169909443706274, -0.038596056401729584, -0.004603673703968525, -0.03556907922029495, 0.0013877074234187603, -0.0010311269434168935, -0.041264601051807404, 0.00821979995816946, 0.02461138553917408, 0.04093402251601219, 0.0009483735193498433, 0.01848703995347023, 0.03195123374462128, 0.0007528892019763589, 0.04638689011335373, 0.022070422768592834, 0.011894888244569302, -0.04634321108460426, 0.047860369086265564, 0.01521669328212738, -0.028251945972442627, -0.0017185594188049436, -0.0008292193524539471, -0.04497996345162392, 0.03820338845252991, -0.016957510262727737, 0.007545847911387682, -0.003214596537873149, -0.024850565940141678, 0.021921813488006592, -0.04114862531423569, 0.04198804125189781, -0.050238076597452164, -0.014214454218745232, 0.02389862947165966, -0.022358553484082222, -0.020983096212148666, 0.04792223125696182, -0.017821121960878372, 0.04205523803830147, 0.044654715806245804, 0.04917071759700775, -0.02939956821501255, 0.03466092050075531, 0.041002001613378525, -0.037708330899477005, 0.012471811845898628, 0.03324960544705391, 0.020240938290953636, -0.020347995683550835, 0.008798756636679173, -0.04767642915248871, -0.022391565144062042, 0.007435434497892857, -0.04381130263209343, -0.01110809575766325, 0.055733077228069305, 0.0024549374356865883, -0.06786581873893738, -0.037750277668237686, 0.02190672978758812, -0.017522066831588745, 0.013934756629168987, 0.02206091396510601, 0.060202449560165405, 0.0009336724178865552, -0.01917349174618721, -0.046398960053920746, -0.03303570672869682, -0.007437144406139851, -0.04005033150315285, 0.016405021771788597, -0.004512205719947815, -0.04895879328250885, -0.06583227962255478, -0.021857507526874542, -0.03024888224899769, 0.026528440415859222, -0.03205377981066704, -0.06218281760811806, 0.026631854474544525, 0.01027650199830532, 0.012537657283246517, 0.009045618586242199, -0.03252776339650154, -0.010999444872140884, 0.03485196456313133, 0.0376446470618248, -0.00883806124329567, 0.05904078483581543, 0.06028903275728226, -0.009317511692643166, 0.011584948748350143, -0.03125856816768646, 0.04281318187713623, 0.010436768643558025, 0.014281706884503365, 0.002925473963841796, 0.014310508035123348, -0.028395507484674454, -0.06918429583311081, 0.013614069670438766, 0.05947389826178551, -0.012507264502346516, 0.0008602662710472941, -0.04080260172486305, -0.015448075719177723, -0.041680268943309784, -0.006857836153358221, -0.028535157442092896, 0.029630204662680626, 0.013552598655223846, 0.004350846167653799, -0.0022501160856336355, -0.056773439049720764, 0.14483387768268585, 0.0557614266872406, -0.007643346209079027, 0.04072919487953186, 0.03618098050355911, 0.07554063946008682, 0.008484918624162674, -0.025878233835101128, 0.01943841017782688, -0.05179612338542938, 0.034701935946941376, -0.005982803180813789, 0.004401633515954018, 0.002722418401390314, 0.028639161959290504, 0.06517390161752701, -0.04586093872785568, 0.010675236582756042, 0.02646610140800476, -0.01672530733048916, -0.05196211859583855, 0.015511857345700264, 0.013131283223628998, 0.02556859329342842, -0.02143191732466221, 0.03137630969285965, 0.0055000875145196915, -0.017171762883663177, -0.010742300190031528, -0.038576651364564896, 0.022186968475580215, -0.05022922903299332, 0.020131658762693405, -0.019309161230921745, -0.01726103015244007, 0.033617500215768814, 0.0035000082571059465, -0.0266234390437603, 0.03368251398205757, -0.006708999164402485, -0.01957482285797596, -0.007009561639279127, 0.052978552877902985, -0.05688954144716263, -0.007150451187044382, 0.027855923399329185, -0.054315704852342606, 0.014562572352588177, -0.009279030375182629, -0.04601563885807991, 0.07559842616319656, -0.02170330099761486, 0.04339621961116791, -0.015980694442987442, -0.04462138190865517, 0.024195272475481033, -0.006862709764391184, -0.046919699758291245, -0.024451492354273796, 0.010970115661621094, 0.03819163143634796, 0.019034402444958687, -0.016922734677791595, 0.01946541666984558, -0.03232743963599205, 0.008125635795295238, 0.02593282423913479, 0.017318120226264, -0.003523819614201784, 0.020002970471978188, -0.0010658841347321868, -0.03578491881489754, -0.01901375874876976, -0.01622186414897442, 0.02576405368745327, 0.048585131764411926, -0.0011694476706907153, 0.021280597895383835, 0.02063784748315811, -0.02292240597307682, -0.004057746380567551, -0.017775006592273712, -0.004686238709837198, -0.0432918556034565, 0.0003452820819802582, 0.023451846092939377, -0.06211348623037338, -0.040830448269844055, -0.05006160959601402, 0.05461672693490982, 0.05417870357632637, 0.047228191047906876, -0.00020843849051743746, -0.02472759038209915, -0.032908983528614044 ]
Complaint of 'racism' against Wexford shop whose owner painted his face black for advert upheld Smyths Homevalue shared the video on Facebook to promote Black Friday last year. By Stephen McDermott Wednesday 26 Jun 2019, 9:31 AM Jun 26th 2019, 9:31 AM 40,422 Views 83 Comments Share29 Tweet Email Smyths Homevalue in Enniscorthy Image: Google Streetview A COMPLAINT AGAINST a Wexford DIY store whose owner painted his face black for a Black Friday promotional video has been upheld by the advertising watchdog. The Advertising Standards Authority of Ireland (ASAI) received a complaint about the video, posted by Enniscorthy-based Smyths Homevalue on Facebook last year, after a member of the public deemed it was "racist" and attempted to sell goods using racism. The video featured the shop's owner discussing the discounts on a number of items for sale in the shop, while dressed completely in black clothing and with his face and his hands painted black. It began with the shop owner flicking his tongue at the camera, before he explained the products offered on sale and flicked his tongue again at the end of the video. The video was subsequently removed from the store's Facebook page after a number of commenters complained that it was racist, due to its connotations to 19th-century minstrel shows. The shows featured white actors dressing up as black characters and often saw discriminatory depictions of African-Americans. In a subsequent social media post, Smyths apologised for any offence or upset caused by the video, adding that its creation was naive on the part of the store and that it did not intend to offend anyone based on their race. Historic rugby win Responding to the complaint made to the ASAI, Smyths said the premise of the video was to celebrate Ireland's recent historic win over the New Zealand rugby team, known as the All Blacks, while linking it to Black Friday. They said this was portrayed by the store owner dressing entirely in a New Zealand All Blacks kit and painting his body with black body paint. The store also said the idea was brought to life by the store owner attempting an element of New Zealand's ceremonial dance, the Haka, specifically the 'whetero' routine, which is where the participant exposes their tongue. Smyths told the ASAI that the video was positively received by an "overwhelming majority of people", but that they removed it almost immediately after receiving complaints on social media. They added that their subsequent apology was very well received, which was proven by the positive and supportive responses they received afterwards. The DIY store also said that while they appreciated that the video's execution was ill-advised, they regretted that it had been misinterpreted, and said they did not intend to impersonate or insult anyone based on race. Smyths rejected the assertion that the video was intended as a racial slur, but acknowledged the misunderstanding it had caused. They also told the ASAI that they committed to ensuring that those in the store were more aware of societal sensitivities in the future. 'Concerns of racism' In its conclusions, the ASAI's committee upheld the complaint against Smyths Homevalue. The authority's committee said that it had considered the detail of the complaint, Smyths' response and the fact that the advertisement had been withdrawn. The commttee also noted that the store had not intended to impersonate nor insult anyone. However, it considered that the application of face paint to change the owner's complexion without context "could give rise to concerns of racism". The committee added that the advertisement had breached several sections of the advertising code, including the use of humour, offensiveness, and respecting the diversity of Irish society. However, as the video in question had been withdrawn, the ASAI ruled that no further action on the part of Smyths was required. Stephen McDermott @Ste_McDermott stephen.mcdermott@thejournal.ie See more articles by Stephen McDermott <iframe width="600" height="460" frameborder="0" style="border:0px;" src="https://www.thejournal.ie/https://www.thejournal.ie/complaint-asai-wexford-hardware-store-black-paint-4697725-Jun2019/?embedpost=4697725&width=600&height=460" ></iframe> Email "Complaint of 'racism' against Wexford shop whose owner painted his face black for advert upheld". Feedback on "Complaint of 'racism' against Wexford shop whose owner painted his face black for advert upheld". Complaint of 'racism' against Wexford shop whose owner painted his face black for advert upheld Comments
[ -0.04058688133955002, -0.003943499643355608, -0.023000532761216164, 0.011068888008594513, -0.010755064897239208, -0.003205012297257781, 0.01951364427804947, 0.006516039837151766, 0.015285694971680641, 0.034083012491464615, 0.04116281494498253, 0.0007202563574537635, 0.034632690250873566, -0.01825089380145073, -0.002415682654827833, -0.0063855876214802265, -0.014686493203043938, -0.042149826884269714, -0.009016063995659351, -0.012956220656633377, 0.03386202082037926, -0.01361723430454731, -0.04741719737648964, -0.05740240588784218, -0.004801442380994558, 0.03151411563158035, -0.0017657374264672399, -0.0221877321600914, 0.0574384480714798, 0.04318462312221527, -0.01337459310889244, -0.028522826731204987, 0.05150570347905159, -0.05353974550962448, -0.008600959554314613, -0.030778750777244568, 0.04409406706690788, -0.03638780489563942, -0.03917672857642174, -0.05268346890807152, 0.008587554097175598, 0.005596849136054516, 0.03335609659552574, -0.02872837334871292, -0.03650067001581192, -0.03495372086763382, -0.03985341265797615, -0.027407469227910042, 0.026343561708927155, -0.0067609925754368305, 0.03314745053648949, -0.013282346539199352, 0.020969336852431297, 0.004281824920326471, 0.008492257446050644, 0.012988672591745853, -0.001986471237614751, -0.0203271321952343, -0.04224187135696411, 0.020843859761953354, 0.02101389318704605, 0.013110705651342869, 0.0398607961833477, -0.07918751984834671, 0.025148363783955574, 0.004239254165440798, -0.02473565749824047, -0.018264535814523697, -0.001548019703477621, -0.035057615488767624, 0.020771896466612816, 0.013400929979979992, -0.01705307327210903, -0.03615967929363251, 0.005684484727680683, -0.005083444993942976, -0.06198512017726898, -0.006215600296854973, -0.015297290869057178, -0.007183288224041462, -0.0022358291316777468, 0.02935008890926838, 0.03790322318673134, 0.02616652101278305, -0.06667719781398773, -0.002950336318463087, -0.0184820257127285, 0.01792038604617119, -0.00934333074837923, -0.001063557923771441, -0.001875316840596497, 0.061798129230737686, -0.01241020392626524, -0.03108886629343033, 0.047921523451805115, 0.05243230611085892, -0.02642991952598095, 0.03564312309026718, -0.011884195730090141, -0.02033895254135132, 0.05867813900113106, 0.008868996053934097, -0.011867551133036613, 0.05428377911448479, -0.04672197252511978, -0.01421801745891571, -0.008185598999261856, -0.014418667182326317, -0.021815240383148193, -0.03703907132148743, -0.005449868272989988, -0.038324423134326935, 0.03505105897784233, -0.031197890639305115, 0.006345170550048351, 0.03557416424155235, -0.0002838263753801584, 0.038473084568977356, -0.019902469590306282, 0.03497275710105896, 0.01391347125172615, 0.02546178176999092, 0.04837637022137642, -0.02405828796327114, -0.0017845022957772017, -0.02448313683271408, 0.010865014977753162, 0.03706272318959236, -0.046485889703035355, 0.021114809438586235, 0.028362631797790527, -0.03133296221494675, -0.013177843764424324, 0.016233738511800766, -0.013956548646092415, 0.03753373771905899, -0.0038685777690261602, 0.05509822443127632, 0.014169437810778618, -0.03594188019633293, 0.05791875347495079, 0.029574407264590263, 0.008816610090434551, 0.06996841728687286, 0.011957522481679916, 0.041450828313827515, 0.021571990102529526, -0.009856237098574638, -0.03963317722082138, 0.01886262744665146, -0.014004331082105637, 0.029257696121931076, 0.005482758395373821, 0.016029853373765945, -0.010040060617029667, -0.010155782103538513, 0.009670284576714039, 0.00038347585359588265, 0.03553680703043938, 0.030316852033138275, -0.029039297252893448, 0.04650396853685379, 0.007343316450715065, 0.04447795823216438, -0.027944084256887436, 0.025400735437870026, -0.025447510182857513, -0.021502096205949783, -0.012118028476834297, -0.023467648774385452, 0.01739262044429779, 0.005175233352929354, -0.017806513234972954, 0.010234201326966286, 0.021242521703243256, 0.05915128067135811, 0.04873301088809967, -0.007567087188363075, 0.05431811138987541, 0.039358898997306824, -0.015545317903161049, -0.0037552593275904655, 0.005863781087100506, 0.07261965423822403, 0.012277083471417427, -0.026135815307497978, 0.017165010794997215, -0.04922427237033844, -0.029965179041028023, -0.021945809945464134, 0.0033056053798645735, 0.0018462104490026832, -0.030411219224333763, 0.027030063793063164, 0.01306953001767397, 0.006775092799216509, 0.0053559560328722, -0.05777965113520622, 0.0014414304168894887, -0.10774389654397964, -0.027415983378887177, 0.05573470517992973, -0.01502138003706932, 0.04674389213323593, 0.01659276895225048, -0.03615374118089676, 0.02962673082947731, 0.04446326196193695, -0.0385994054377079, 0.0002838483196683228, -0.00620058411732316, 0.009974532760679722, -0.014215236529707909, -0.015186615288257599, 0.014165256172418594, -0.02161719650030136, -0.01610802859067917, 0.045466382056474686, -0.03702660650014877, -0.015787934884428978, 0.0025544557720422745, 0.05174492299556732, 0.016525333747267723, 0.05283946171402931, -0.027972141280770302, -0.011197793297469616, 0.013980016112327576, 0.05341687798500061, -0.010011913254857063, -0.024920955300331116, -0.02954496257007122, 0.055621180683374405, 0.032490551471710205, 0.050080034881830215, 0.024463079869747162, 0.007136092986911535, 0.0371558852493763, 0.02381978929042816, 0.009298611432313919, 0.015165616758167744, -0.01479470543563366, -0.005802789703011513, 0.036097705364227295, 0.02580217458307743, -0.014596630819141865, 0.03615480288863182, 0.006516825407743454, -0.0033049737103283405, 0.004548066295683384, 0.04299488291144371, 0.009934186935424805, 0.039159368723630905, 0.028104640543460846, 0.05586100369691849, -0.026629319414496422, -0.0020667125936597586, 0.03374814987182617, 0.04496997967362404, 0.012880614958703518, 0.019668420776724815, -0.01279545295983553, 0.027487942948937416, -0.015168572776019573, 0.007239605765789747, 0.05710235610604286, -0.018803752958774567, 0.019135409966111183, 0.023501291871070862, -0.017835164442658424, -0.014652194455265999, -0.05167103186249733, -0.04765339195728302, -0.029641535133123398, -0.028788095340132713, -0.02394747920334339, -0.010815761052072048, 0.05133119970560074, -0.043954554945230484, 0.03315560892224312, -0.013649153523147106, -0.00759495934471488, -0.006008296739310026, 0.0009579043835401535, 0.008295319974422455, 0.03511052206158638, 0.05230296775698662, -0.02322431281208992, 0.027140051126480103, -0.00021796177315991372, 0.019115302711725235, -0.009594549424946308, 0.005771763622760773, -0.004170081578195095, -0.011388194747269154, 0.03760768845677376, 0.015719471499323845, -0.00974513590335846, -0.007482349872589111, -0.024361321702599525, -0.04575365036725998, 0.01376966293901205, -0.004392558243125677, -0.0001814593415474519, -0.019184835255146027, -0.04967677965760231, 0.04728207364678383, 0.04614095762372017, -0.03080678917467594, 0.03663036227226257, 0.05767090618610382, -0.05115086957812309, 0.03027230314910412, 0.010941675864160061, 0.002847442403435707, -0.04530330374836922, 0.04305615648627281, 0.028664888814091682, 0.03806373104453087, -0.04189172759652138, -0.006976483389735222, -0.023013653233647346, -0.015114461071789265, 0.019160181283950806, 0.0028212398756295443, -0.017285937443375587, 0.013140379451215267, 0.05219222605228424, -0.07301337271928787, 0.027011357247829437, -0.07671619951725006, -0.004877216648310423, -0.055674415081739426, -0.02770066075026989, 0.015923019498586655, 0.03461212292313576, 0.013718743808567524, 0.0271714236587286, -0.01578875258564949, 0.0004234796797391027, 0.006072890479117632, 0.024994375184178352, -0.01447058841586113, 0.013159788213670254, 0.02318236418068409, 0.0006007224437780678, 0.04055403918027878, -0.0074402447789907455, -0.0158612709492445, 0.011012393049895763, 0.00706547312438488, 0.014760811813175678, 0.01314491219818592, 0.03106016293168068, 0.04994652420282364, 0.03350241482257843, 0.06415247172117233, -0.028162218630313873, 0.00903338473290205, -0.011515647172927856, 0.026553263887763023, 0.05215545371174812, -0.010394532233476639, -0.008570296689867973, -0.03505308926105499, -0.024723976850509644, -0.046284496784210205, 0.013122115284204483, 0.022674422711133957, 0.028648102656006813, -0.01734861359000206, 0.05617640167474747, -0.0028290776535868645, -0.02092495560646057, 0.04009827598929405, -0.049694061279296875, 0.0029309475794434547, 0.039084527641534805, -0.03454192727804184, 0.047604892402887344, -0.016031013801693916, 0.0195164754986763, -0.013486293144524097, -0.0024951861705631018, -0.005707337521016598, -0.014408285729587078, 0.011521820910274982, -0.026601949706673622, -0.014618849381804466, -0.013825156725943089, 0.0027622277848422527, -0.014307254925370216, -0.027781998738646507, 0.022794341668486595, 0.003010509768500924, -0.0501365102827549, -0.055542122572660446, 0.028128165751695633, 0.006692925468087196, 0.05815509334206581, -0.006857769098132849, 0.01621193066239357, -0.014840575866401196, -0.03795013204216957, -0.0134361507371068, -0.029999693855643272, 0.009159572422504425, -0.037356048822402954, 0.035363972187042236, 0.01822543703019619, -0.05176796764135361, -0.03305189311504364, -0.031406428664922714, -0.04979130998253822, 0.024130169302225113, -0.00423165550455451, -0.01131154503673315, -0.03563429042696953, 0.005650920327752829, -0.022628000006079674, 0.013885772787034512, -0.033279899507761, -0.0347626768052578, 0.003781697480008006, 0.05754337087273598, 0.04949963092803955, -0.05255536735057831, 0.0265464149415493, -0.026804059743881226, 0.043074220418930054, 0.05654248222708702, 0.0019831343088299036, -0.052092574536800385, 0.0026281303726136684, -0.03167746216058731, -0.028091682121157646, 0.01704670675098896, 0.02516074851155281, 0.004107255954295397, -0.008218660019338131, -0.035939380526542664, 0.005227478686720133, 0.03630264103412628, -0.010429675690829754, -0.004667474888265133, 0.014785914681851864, 0.02310778945684433, -0.012848204001784325, 0.04704778268933296, 0.005523595493286848, -0.016331098973751068, 0.03533105552196503, -0.049562301486730576, 0.02357972227036953, -0.028650563210248947, -0.009194853715598583, 0.006595429033041, 0.030434591695666313, 0.00710963923484087, 0.0569368377327919, -0.01995348185300827, 0.03796602413058281, 0.015217793174088001, 0.02099445089697838, -0.050793085247278214, -0.025984089821577072, 0.0598086453974247, 0.041710108518600464, -0.037251390516757965, 0.017586423084139824, 0.021333618089556694, -0.021221771836280823, 0.018869373947381973, 0.029276356101036072, -0.06125740706920624, 0.016741614788770676, -0.03481325879693031, 0.01657562330365181, -0.009510988369584084, -0.03648388758301735, -0.0006102664628997445, -0.030057542026042938, 0.03136986494064331, 0.001511169015429914, -0.01667379029095173, -0.05387905240058899, -0.04333416745066643, 0.004165767692029476, -0.031121233478188515, -0.01664075069129467, -0.00048229130334220827, 0.02139337919652462, -0.009132559411227703, -0.01533565204590559, -0.025904593989253044, 0.0008408689755015075, -0.011387902311980724, -0.011859381571412086, 0.0006670195725746453, 0.004804367199540138, 0.00075187673792243, -0.006212973967194557, -0.009633124805986881, -0.02743712067604065, 0.015376741997897625, -0.013537931255996227, -0.02839040756225586, -0.049775224179029465, -0.009056861512362957, -0.009267361834645271, 0.006471781991422176, -0.019990229979157448, 0.02337356097996235, -0.02232794091105461, 0.04006002098321915, 0.022361604496836662, 0.000701277342159301, -0.0008129932102747262, 0.04392846301198006, -0.018149366602301598, 0.07394330203533173, 0.028108594939112663, -0.05637608468532562, -0.06946316361427307, 0.019466808065772057, 0.003468060167506337, 0.036881133913993835, -0.021475642919540405, 0.008480352349579334, -0.01710684224963188, -0.06623432040214539, -0.01648845337331295, -0.001675108214840293, -0.0008970187627710402, -0.04785957559943199, -0.0209256149828434, -0.0017105621518567204, 0.06597991287708282, -0.02292202226817608, 0.031848106533288956, 0.012434768490493298, -0.03574571758508682, 0.013650048524141312, -0.027453534305095673, -0.032909639179706573, -0.02804001234471798, -0.02491721883416176, -0.007919595576822758, 0.041559308767318726, 0.019556736573576927, 0.037166520953178406, 0.03510136157274246, -0.009311487898230553, 0.013255879282951355, -0.03589967265725136, -0.025847814977169037, -0.0087997792288661, -0.009907365776598454, -0.014742637053132057, -0.0051650856621563435, -0.004406164865940809, -0.01905105449259281, 0.06868401914834976, -0.026688063517212868, 0.023834096267819405, -0.009817302227020264, -0.018161218613386154, 0.012604153715074062, -0.009477498009800911, 0.047218967229127884, -0.006984229665249586, 0.00987632479518652, -0.006774302572011948, 0.02927606925368309, 0.046083565801382065, 0.021672429516911507, 0.0033649310935288668, -0.003942220006138086, -0.044739980250597, -0.054490379989147186, 0.0303367730230093, -0.048076603561639786, -0.02146991901099682, -0.036611638963222504, -0.014690686017274857, 0.05425078794360161, -0.002168038161471486, 0.05028485506772995, 0.04545377567410469, 0.00028248297167010605, -0.015643449500203133, -0.03513290733098984, 0.013389838859438896, 0.027310488745570183, -0.02343573421239853, -0.004600439220666885, -0.03084838017821312, -0.038087278604507446, -0.004238251596689224, -0.051326412707567215, -0.020164664834737778, -0.03787234053015709, -0.019158639013767242, 0.056927356868982315, -0.04571128636598587, 0.018910447135567665, -0.03401242569088936, -0.0886065661907196, -0.043216172605752945, 0.026856182143092155, 0.015878483653068542, 0.012647262774407864, 0.07080844044685364, -0.012104472145438194, -0.0467214360833168, -0.01434563659131527, 0.011415727436542511, -0.021784355863928795, -0.04224025830626488, 0.06682676076889038, 0.007426402997225523, -0.014471767470240593, 0.029632439836859703, 0.0362037755548954, -0.0692448765039444, -0.05054215341806412, 0.016899269074201584, 0.014749834313988686, 0.0007791750831529498, -0.008488763123750687, 0.03187580406665802, 0.00198798137716949, -0.011640407145023346, 0.013441486284136772, 0.018247615545988083, 0.014061709865927696, 0.041699379682540894, -0.021698182448744774, 0.0667889416217804, -0.060350317507982254, -0.018053079023957253, 0.016508735716342926, -0.04286200925707817, -0.04917189106345177, -0.006238217931240797, -0.002378059783950448, -0.00725939916446805, -0.00007232707866933197, 0.037551697343587875, -0.024984898045659065, -0.007376131135970354, 0.015276717953383923, -0.01625317893922329, 0.06368818134069443, -0.001175829442217946, -0.04505719244480133, -0.005970107391476631, -0.0395122654736042, -0.04195243865251541, -0.057800740003585815, 0.0011888310546055436, -0.009185336530208588, 0.02171291597187519, -0.050426799803972244, -0.009018507786095142, 0.031185640022158623, -0.01665695570409298, -0.004706617444753647, -0.019987719133496284, -0.02818378061056137, -0.0308946892619133, -0.03454231843352318, -0.03109508380293846, -0.029494239017367363, 0.012728160247206688, 0.015124926343560219, 0.012002278119325638, -0.03964444622397423, -0.03888382017612457, 0.000374675466446206, -0.012454506009817123, 0.006285473704338074, -0.04070797562599182, 0.019649194553494453, -0.0315043106675148, -0.0600862018764019, -0.030457912012934685, -0.013152342289686203, -0.048495467752218246, 0.006803043186664581, -0.025183428078889847, 0.01930551789700985, -0.0028909347020089626, 0.009962925687432289, 0.010412126779556274, 0.00413514906540513, 0.008335026912391186, -0.061734165996313095, -0.00006947927613509819, 0.06294922530651093, 0.0006553703569807112, 0.02472742833197117, 0.006813001818954945, 0.006839190609753132, 0.0365450419485569, 0.02011365443468094, -0.02712424285709858, 0.011194106191396713, -0.015002025291323662, -0.01641746237874031, 0.03810741379857063, -0.04930755868554115, -0.034244704991579056, -0.01496101077646017, -0.016077473759651184, 0.04646724835038185, -0.0024058001581579447, 0.007922152988612652, 0.032200295478105545, -0.028559928759932518, 0.006562252528965473, 0.03075975924730301, -0.012055144645273685, 0.06170879676938057, 0.004079627804458141, 0.017914190888404846, 0.002513085724785924, -0.002057357458397746, 0.03403117135167122, 0.03630802407860756, 0.03594636544585228, -0.014761102385818958, 0.03362144157290459, 0.024479208514094353, 0.0003779117250815034, 0.026504434645175934, -0.02789328247308731, -0.014789133332669735, -0.05955839157104492, -0.03792263939976692, 0.02744942717254162, 0.0041794017888605595, 0.001561547163873911, 0.005778154358267784, 0.04911321401596069, -0.008615330792963505, -0.06888549029827118, 0.028416931629180908, -0.06572239100933075, -0.020405633375048637, 0.04855043813586235, -0.008641490712761879, -0.018083002418279648, -0.03518567234277725, -0.04211718216538429, 0.019746096804738045, -0.018883058801293373, -0.012224454432725906, -0.010641702450811863, 0.01597651094198227, -0.026790667325258255, 0.04705512523651123, 0.014473136514425278, 0.0016909114783629775, 0.023071568459272385, 0.04989100620150566, -0.058295197784900665, -0.04337962344288826, 0.014706775546073914, 0.04585186764597893, -0.010583936236798763, -0.018327733501791954, -0.03371509164571762, 0.012250944040715694, -0.017363302409648895, -0.008391722105443478, 0.00867108441889286, 0.060033705085515976, -0.005278979428112507, 0.03836427256464958, -0.01353201363235712, 0.018056998029351234, 0.002700449898838997, 0.04898908734321594, 0.0011484255082905293, -0.04216380417346954, -0.023548584431409836, 0.043273378163576126, 0.033647820353507996, -0.006576277781277895, 0.03903166949748993, 0.02359679900109768, 0.05842628702521324, -0.04278695210814476, -0.007051702123135328, 0.001243850332684815, 0.03967071697115898, 0.021878650411963463, 0.017248600721359253, -0.019586220383644104, 0.02564041130244732, 0.04907679185271263, 0.003203872125595808, 0.02400846593081951, 0.0277110505849123, 0.024405915290117264, -0.04222039505839348, 0.004640121944248676, -0.04278925806283951, 0.014095582067966461, -0.01892811432480812, -0.0025597726926207542, -0.006307035218924284, -0.03140345588326454, -0.034478120505809784, -0.008985502645373344, -0.020988913252949715, 0.028060082346200943, 0.0008100237464532256, 0.007248321548104286, 0.0034220293164253235, 0.0112119996920228, 0.026718301698565483, 0.041510388255119324, 0.012014053761959076, 0.023811014369130135, 0.021050570532679558, 0.012083221226930618, -0.025235384702682495, 0.057938456535339355, 0.016631027683615685, -0.005408034194260836, -0.010116908699274063, 0.002699084347113967, 0.04838680848479271, -0.005246525630354881, -0.026088546961545944, 0.006170538254082203, -0.04299359396100044, 0.05265286564826965, -0.03640039265155792, -0.018646644428372383, 0.04202777147293091, -0.036016251891851425, -0.010238598100841045, -0.0398549921810627, 0.05875972658395767, -0.05885011702775955, -0.02377535216510296, 0.02393828146159649, 0.000326085661072284, -0.018614139407873154, 0.03360576555132866, -0.023239873349666595, 0.009193627163767815, -0.010611805133521557, 0.034613948315382004, -0.0050110649317502975, 0.00811921525746584, 0.05413931608200073, -0.04350676387548447, 0.0037647231947630644, 0.011126144789159298, -0.021025007590651512, -0.03279617056250572, -0.024133363738656044, -0.0458185113966465, -0.008223949931561947, -0.03021252155303955, -0.008959246799349785, -0.008275884203612804, 0.04172733426094055, -0.03246234729886055, -0.039270054548978806, -0.011824137531220913, 0.022564226761460304, -0.034203723073005676, -0.006238466128706932, 0.0017612699884921312, 0.02989596128463745, -0.015108533203601837, -0.0033002239651978016, -0.0533846952021122, -0.041401542723178864, -0.0030432133935391903, -0.04599089175462723, 0.02163676731288433, 0.0002795879845507443, -0.03596314415335655, -0.02811087854206562, -0.06336211413145065, -0.015030940063297749, 0.003189816838130355, -0.030662547796964645, -0.02912638708949089, 0.03987462446093559, 0.046578045934438705, 0.0012159148463979363, 0.005895925685763359, -0.004022186156362295, -0.00019776335102505982, 0.03091398999094963, 0.060224391520023346, -0.008962026797235012, 0.03845234960317612, 0.014837312512099743, -0.05569242313504219, 0.04848362132906914, -0.033266402781009674, 0.026275228708982468, -0.015731943771243095, -0.033621858805418015, -0.026765670627355576, 0.03353351727128029, -0.046874623745679855, -0.0488637275993824, 0.025469135493040085, 0.013183524832129478, 0.009735402651131153, -0.02845529280602932, -0.07110876590013504, 0.004377781879156828, -0.03126874193549156, 0.00037617579801008105, -0.03686196729540825, 0.0330553762614727, 0.03128878027200699, 0.018643220886588097, -0.03498562052845955, -0.05673840641975403, 0.16106615960597992, 0.03988869860768318, 0.025250788778066635, 0.024046288803219795, 0.030525613576173782, 0.03506888449192047, 0.02769581973552704, -0.02837361767888069, -0.00458069983869791, -0.03774341568350792, 0.041292499750852585, 0.018840355798602104, 0.04818715155124664, 0.0073946379125118256, 0.027573270723223686, 0.04643259942531586, -0.029934531077742577, 0.016138657927513123, 0.039337463676929474, -0.03761417418718338, -0.05577429011464119, 0.003910572733730078, 0.00266167800873518, 0.0020279004238545895, -0.0050883181393146515, 0.02206496335566044, 0.018325796350836754, -0.08308521658182144, -0.021466827020049095, -0.0445585623383522, 0.05988096073269844, -0.03265376389026642, 0.0429069809615612, -0.03919815272092819, -0.04241155460476875, 0.05076640471816063, 0.03003024496138096, -0.020454438403248787, 0.03130198270082474, 0.015415242873132229, -0.0208184365183115, -0.005861107725650072, 0.04158812016248703, -0.031134353950619698, 0.015515152364969254, 0.009097956120967865, -0.03868184983730316, -0.009819542989134789, 0.03173845261335373, -0.016484327614307404, 0.07335851341485977, -0.055293090641498566, 0.02885921113193035, -0.0019087009131908417, -0.027484677731990814, -0.0024964038748294115, -0.002377657685428858, -0.0393313392996788, 0.01615154556930065, 0.008448665030300617, 0.03205331042408943, -0.0015225737588480115, -0.03017696551978588, 0.00003066084536840208, -0.04833337292075157, 0.008869340643286705, -0.002295800019055605, 0.006648657843470573, 0.00034800751018337905, -0.026279831305146217, -0.03282376751303673, 0.024423202499747276, 0.025661181658506393, -0.005716203711926937, 0.008223213255405426, 0.04025084525346756, -0.017162976786494255, 0.03848063573241234, 0.024300582706928253, -0.020163502544164658, -0.04614400118589401, -0.06892923265695572, 0.013893683440983295, 0.0006733521586284041, 0.03743812441825867, 0.034512851387262344, -0.06722526252269745, -0.03371194377541542, -0.00715551758185029, 0.048755768686532974, 0.07868117094039917, 0.0150153748691082, -0.017379017546772957, -0.02180272527039051, -0.019625745713710785 ]
Welcome to the world of HONEST LAMINATES. At Honest Lamites we strongly believe in the Philosophy of Redefining Interiors. Our motto is to develop wide range of laminates causing least environmental damage and attain customer satisfaction.
[ -0.009484675712883472, 0.014874598942697048, -0.020009491592645645, 0.004264994524419308, -0.03894025459885597, 0.003202978055924177, 0.007113600615411997, 0.02843162603676319, 0.007286618929356337, 0.007609446533024311, 0.02157137542963028, 0.03707998991012573, 0.0014455433702096343, -0.02442891336977482, -0.01791241206228733, -0.011869363486766815, -0.024830177426338196, -0.009376274421811104, -0.02748173289000988, 0.017508678138256073, -0.016168227419257164, 0.017572743818163872, -0.05490973964333534, -0.02823621779680252, -0.01378671545535326, 0.028576623648405075, 0.05383811891078949, 0.00244780327193439, 0.07034622877836227, 0.05133155360817909, -0.03799508884549141, 0.008015749976038933, 0.04060003161430359, -0.053365789353847504, -0.03161557763814926, -0.05747716501355171, -0.007279051933437586, -0.019620537757873535, -0.036575429141521454, -0.053132373839616776, 0.00292798294685781, -0.02568628080189228, 0.02447551302611828, -0.02959384024143219, -0.05449323356151581, -0.012296542525291443, -0.00433660252019763, -0.04197940602898598, 0.021810021251440048, -0.019264541566371918, 0.017792239785194397, -0.012705662287771702, 0.009706960991024971, -0.011925076134502888, 0.0020953163038939238, 0.018789557740092278, -0.00593674136325717, 0.005478910636156797, -0.023627104237675667, 0.03715105354785919, 0.013833479955792427, -0.03176712244749069, -0.00409918837249279, -0.07428937405347824, 0.03423548862338066, 0.020493105053901672, 0.00378535152412951, 0.015076667070388794, 0.020640527829527855, -0.019829880446195602, 0.0024623251520097256, -0.005180644802749157, -0.003307008882984519, -0.036025937646627426, -0.024172255769371986, -0.012581657618284225, 0.007982541806995869, 0.010827274061739445, -0.031714342534542084, -0.004163208417594433, 0.038228508085012436, 0.024665242061018944, -0.017186658456921577, 0.021036449819803238, -0.0633661150932312, -0.021951453760266304, -0.012325339950621128, 0.03394703567028046, 0.009061968885362148, -0.008623047731816769, 0.019884057343006134, 0.045306216925382614, 0.01599513553082943, -0.008296961896121502, 0.011628599837422371, 0.044901032000780106, -0.0528760589659214, 0.06746504455804825, 0.011915930546820164, 0.008637169376015663, 0.01280275546014309, 0.04254426434636116, 0.0016811672830954194, 0.03791902959346771, -0.05628205090761185, 0.0009385776938870549, -0.008700818754732609, -0.0034994923043996096, 0.004125599749386311, -0.02950473688542843, 0.0003529634850565344, 0.0020045810379087925, 0.009178056381642818, -0.008459923788905144, -0.011032451875507832, 0.056294914335012436, 0.015810860320925713, 0.07420332729816437, -0.024720463901758194, 0.0016950630815699697, 0.0014305597869679332, 0.0003535591531544924, 0.042702388018369675, -0.016916606575250626, -0.010998792946338654, -0.03275369480252266, 0.002492540283128619, 0.028818625956773758, -0.008267097175121307, -0.03785381093621254, 0.032563745975494385, -0.057500503957271576, 0.004100666847079992, 0.04273287206888199, -0.0050364285707473755, 0.013691968284547329, 0.0034588580019772053, 0.037283755838871, 0.010155591182410717, -0.0248468779027462, 0.06050855293869972, 0.029978834092617035, 0.032175734639167786, 0.07605712115764618, -0.014934610575437546, 0.03337901458144188, 0.011548474431037903, -0.02258695475757122, -0.03247584030032158, 0.029858864843845367, -0.01628044806420803, 0.018539289012551308, 0.0021757944487035275, 0.052110057324171066, 0.008692258037626743, -0.03427455946803093, -0.02369869500398636, 0.00598382530733943, 0.011150959879159927, 0.028877010568976402, -0.015544209629297256, 0.01659351773560047, -0.012199432589113712, 0.04687992483377457, -0.024582695215940475, 0.05756809934973717, -0.034053679555654526, -0.016760021448135376, -0.010466322302818298, -0.02379799261689186, 0.006831962149590254, -0.035784441977739334, -0.021539771929383278, 0.018771382048726082, 0.04047895222902298, 0.07109467685222626, 0.04786517098546028, 0.019215445965528488, 0.05094537138938904, 0.04291938245296478, -0.030099470168352127, -0.01981179043650627, 0.026514515280723572, 0.07473894208669662, 0.008881920948624611, -0.011679469607770443, 0.006474398076534271, -0.011240622028708458, -0.019772497937083244, -0.021825339645147324, -0.004964098799973726, 0.0247633196413517, -0.029614580795168877, 0.028871558606624603, 0.001986000221222639, -0.005997516680508852, -0.0209110789000988, 0.017412174493074417, -0.03782923147082329, -0.055531732738018036, -0.022862346842885017, 0.01378172542899847, -0.02328953705728054, 0.002714503323659301, 0.002895117737352848, -0.025072837248444557, -0.001324349083006382, 0.06797055155038834, -0.041254378855228424, 0.004843192640691996, 0.027934029698371887, 0.012594725005328655, -0.01700025051832199, -0.009042609483003616, 0.01458017062395811, -0.021074844524264336, -0.023774292320013046, 0.030416373163461685, -0.018040798604488373, -0.015697812661528587, -0.01334375236183405, 0.017311565577983856, 0.03718448057770729, 0.038866620510816574, 0.012511203065514565, 0.017136363312602043, -0.0017268637893721461, 0.038128841668367386, -0.005302680656313896, -0.019077686592936516, -0.037479039281606674, 0.059767019003629684, 0.030476313084363937, 0.04959936812520027, 0.033185772597789764, 0.03273497149348259, 0.0355231948196888, 0.0665339007973671, -0.000032647410989739, 0.001808571512810886, 0.016357671469449997, 0.013580990023911, 0.020025432109832764, 0.0004914820310659707, 0.011437580920755863, 0.01876525580883026, -0.027863280847668648, -0.009793944656848907, -0.03167916461825371, 0.03015591762959957, 0.006540623027831316, 0.06258504092693329, 0.07477780431509018, 0.020306168124079704, -0.03224078193306923, 0.01609686017036438, 0.05910379812121391, 0.024689899757504463, -0.0036073557566851377, 0.005623211152851582, 0.01601235568523407, 0.017247453331947327, -0.01365587953478098, 0.0012391824275255203, 0.03323531150817871, 0.017431240528821945, -0.017612826079130173, 0.03163473308086395, -0.06313873082399368, -0.02510683797299862, -0.04886573925614357, -0.05236481502652168, -0.04608966410160065, -0.023800810799002647, -0.0529717355966568, 0.007702640723437071, 0.030659250915050507, -0.037395283579826355, 0.030374908819794655, -0.018234025686979294, -0.011202757246792316, -0.03906930983066559, -0.006651232484728098, 0.01318249199539423, 0.030116762965917587, 0.048934366554021835, -0.02879088744521141, 0.05123450607061386, -0.010982225649058819, 0.0043690684251487255, -0.03345026075839996, -0.00902894139289856, -0.022873852401971817, -0.007786334026604891, 0.04027033597230911, 0.005876514595001936, -0.003747306764125824, -0.017062878236174583, -0.0660952553153038, -0.05824081599712372, 0.004967310465872288, 0.02563832513988018, -0.02631828561425209, 0.004872538149356842, -0.04178144782781601, 0.05623334273695946, 0.011074789799749851, -0.008026637136936188, 0.055549781769514084, 0.04643978923559189, -0.045201633125543594, 0.03744781017303467, 0.03427448123693466, 0.024818580597639084, -0.04237520694732666, 0.014848030172288418, 0.05651009827852249, 0.0022548227570950985, -0.003914401400834322, -0.017987072467803955, -0.02653159201145172, 0.024588868021965027, 0.06308010965585709, -0.015479366295039654, -0.029853912070393562, 0.03569724038243294, 0.047702860087156296, -0.07270102947950363, 0.038443904370069504, -0.032901789993047714, -0.04730885848402977, -0.034253787249326706, -0.018881864845752716, 0.011658805422484875, 0.02345580793917179, 0.021271400153636932, 0.01701149344444275, -0.03940201923251152, -0.006320670247077942, -0.0004426274972502142, 0.04267340153455734, -0.02788414992392063, 0.028879009187221527, 0.04597560316324234, -0.02771040052175522, 0.025282490998506546, 0.021967967972159386, -0.009458682499825954, -0.02606569044291973, 0.00046566728269681334, 0.04754642769694328, 0.021192748099565506, 0.025550739839673042, 0.00660082558169961, 0.012882131151854992, 0.049591656774282455, -0.020761067047715187, -0.0014195914845913649, -0.014007998630404472, -0.010431378148496151, 0.02109128050506115, 0.04265742748975754, 0.019482791423797607, 0.003096233354881406, -0.06226905435323715, -0.04420216754078865, -0.01816905289888382, 0.006913173943758011, 0.03942796587944031, -0.036617450416088104, 0.055766910314559937, -0.028811873868107796, -0.026755500584840775, 0.04680607095360756, -0.028263673186302185, -0.018351778388023376, 0.0436403863132, 0.00008883359259925783, 0.02658318541944027, -0.05973591282963753, -0.003261859994381666, -0.008620006963610649, -0.012329906225204468, 0.016488799825310707, -0.016691267490386963, 0.02894456498324871, -0.026766836643218994, -0.009953264147043228, -0.028523335233330727, -0.0130298538133502, -0.037889447063207626, -0.04966164007782936, 0.004591738805174828, -0.01490218285471201, -0.05136195942759514, -0.07540296018123627, 0.052086763083934784, 0.0436868853867054, 0.016828082501888275, -0.02403796836733818, 0.017237896099686623, 0.03587647154927254, 0.022139478474855423, 0.035824745893478394, -0.03833013400435448, -0.003500920021906495, -0.015226789750158787, 0.03854979947209358, 0.00491461344063282, -0.01575353369116783, -0.021730801090598106, -0.008256413973867893, -0.04328671470284462, 0.02322632446885109, -0.022762130945920944, -0.038548752665519714, -0.027163205668330193, 0.017172010615468025, 0.01377116795629263, 0.02971671149134636, -0.050679001957178116, -0.04504502937197685, -0.006249763071537018, 0.013035577721893787, 0.04629474878311157, -0.06871668249368668, -0.008280396461486816, 0.009753151796758175, 0.05777975916862488, 0.04659707844257355, 0.003257417818531394, -0.05499434471130371, -0.045929886400699615, -0.02724279649555683, -0.02863658219575882, 0.0011387321865186095, 0.04734650254249573, -0.021422967314720154, 0.01103608775883913, -0.048564061522483826, 0.03994295746088028, 0.0384456142783165, -0.015164479613304138, -0.014120238833129406, -0.013942069374024868, 0.02274654433131218, 0.014365232549607754, 0.057146795094013214, 0.009003343991935253, -0.011058151721954346, 0.0037768767215311527, -0.05976274609565735, 0.028435030952095985, -0.007991604506969452, -0.013559102080762386, -0.00037458300357684493, 0.00234232097864151, 0.013013070449233055, 0.06892538070678711, -0.0182423647493124, 0.01527221966534853, 0.008680024184286594, 0.027875108644366264, -0.04267659783363342, -0.005110826343297958, 0.04112008213996887, -0.00986907072365284, -0.039727114140987396, 0.010771467350423336, 0.04492640867829323, -0.019208088517189026, 0.001831044559367001, 0.027963733300566673, -0.046986501663923264, 0.043824560940265656, -0.03469282016158104, 0.038696691393852234, -0.031210217624902725, -0.024269381538033485, 0.006288450676947832, -0.011428945697844028, 0.013781744055449963, 0.0018682993249967694, -0.012204774655401707, -0.024891657754778862, -0.04733265936374664, -0.014875140972435474, -0.010337392799556255, -0.01758861541748047, 0.026330720633268356, -0.012617988511919975, 0.0065095131285488605, 0.014633291400969028, -0.023660071194171906, 0.02099129557609558, 0.01791222020983696, -0.028453921899199486, -0.013903033919632435, -0.01485842652618885, 0.014217251911759377, 0.016438983380794525, 0.01844305917620659, -0.03575282171368599, -0.0024788647424429655, -0.02235249988734722, -0.01825678162276745, -0.02732151374220848, 0.009922736324369907, -0.028505081310868263, 0.04497644677758217, -0.02916959673166275, -0.0004564173286780715, -0.005725650116801262, 0.003775425488129258, 0.04478507488965988, 0.020632555708289146, 0.009176385588943958, -0.01634974405169487, -0.04414243996143341, 0.03507065400481224, 0.006274490151554346, -0.023447923362255096, -0.03387656807899475, 0.02007269486784935, -0.004934238735586405, 0.026563676074147224, -0.00610175309702754, 0.00337742711417377, -0.045655976980924606, -0.03827659785747528, 0.020814688876271248, -0.03961208462715149, -0.028351718559861183, -0.042238567024469376, -0.03734351322054863, 0.0069095296785235405, 0.0641648918390274, 0.0024294741451740265, -0.01685761846601963, 0.002784094074741006, -0.004073590040206909, 0.0026825577951967716, -0.018797554075717926, -0.011722879484295845, -0.02469358779489994, -0.024240829050540924, -0.00425837142392993, 0.0438879132270813, 0.01563200168311596, 0.015095522627234459, -0.0035950453020632267, 0.051927655935287476, 0.022716375067830086, -0.007522697560489178, -0.03430423513054848, -0.05847734212875366, -0.02916778065264225, 0.01710972748696804, 0.023572931066155434, 0.010389167815446854, -0.0032834410667419434, 0.034228213131427765, -0.01954505406320095, 0.0020288473460823298, -0.03959224745631218, 0.004246456548571587, -0.00977212656289339, -0.02325175143778324, 0.05166579410433769, 0.0008204664336517453, -0.011554145254194736, -0.04957890138030052, 0.016147509217262268, 0.047064829617738724, -0.0199598241597414, -0.004131332505494356, -0.039246272295713425, -0.04136892035603523, -0.044392768293619156, 0.042388610541820526, -0.034840863198041916, -0.0006304132402874529, -0.056789886206388474, -0.03594084829092026, 0.052606623619794846, -0.006671544164419174, 0.06827309727668762, 0.07353871315717697, 0.015337979421019554, -0.03466497361660004, -0.016273554414510727, -0.009061508812010288, 0.03779834136366844, -0.06682462990283966, -0.013521797023713589, -0.02744130790233612, -0.031523317098617554, -0.01560620591044426, -0.02424178458750248, -0.0619354322552681, -0.050665222108364105, -0.007994979619979858, 0.05597176030278206, -0.026573872193694115, 0.04015529528260231, 0.003349733306095004, -0.03433452919125557, -0.03835820034146309, 0.047641437500715256, -0.015371328219771385, 0.028458302840590477, 0.02785695344209671, 0.0008960800478234887, -0.029556643217802048, 0.03049793839454651, 0.008651171810925007, -0.0040750144980847836, -0.056093864142894745, 0.08696533739566803, 0.02332659438252449, -0.039360128343105316, 0.006290619261562824, 0.058276157826185226, -0.059098780155181885, -0.042256422340869904, -0.005963536910712719, 0.033015165477991104, 0.01441369391977787, -0.04208211600780487, 0.0025389520451426506, -0.02585979923605919, 0.00852182973176241, 0.020260276272892952, 0.06892827153205872, 0.008513581939041615, 0.052767314016819, 0.03655638173222542, 0.029263140633702278, -0.03363615274429321, 0.007692050654441118, 0.028933683410286903, -0.01140454038977623, -0.029017994180321693, -0.028927745297551155, -0.020421108230948448, 0.01356546115130186, -0.015207243151962757, 0.06850318610668182, 0.0022155591286718845, 0.019957683980464935, 0.017696106806397438, -0.025041846558451653, 0.06154950335621834, -0.016523834317922592, -0.024105597287416458, -0.00009050589869730175, -0.03421563282608986, -0.04055619239807129, -0.052349817007780075, 0.03207695856690407, -0.010083074681460857, -0.0031537238974124193, -0.04062509909272194, 0.01687944307923317, 0.036945100873708725, 0.020408764481544495, 0.004956927616149187, -0.0413532629609108, -0.037855375558137894, -0.027432845905423164, -0.042771484702825546, -0.04298735409975052, -0.038856782019138336, 0.027194229885935783, -0.008505280129611492, 0.017463183030486107, -0.01638857088983059, -0.009163747541606426, 0.0016158821526914835, -0.0035213609226047993, -0.006012937519699335, -0.02111818641424179, 0.04656856134533882, -0.0250009223818779, -0.046151697635650635, -0.04997507482767105, 0.005199508275836706, -0.017816787585616112, -0.00016102285007946193, -0.03769276663661003, 0.015884898602962494, 0.012341078370809555, 0.047930020838975906, -0.014261790551245213, 0.027974199503660202, 0.011520596221089363, -0.03713422641158104, -0.02656400203704834, 0.03608066588640213, -0.04515301436185837, 0.03545928746461868, 0.04950275272130966, 0.006908860057592392, 0.03830935060977936, -0.004466394893825054, -0.0661877691745758, -0.009486046619713306, -0.009169543161988258, -0.003538904944434762, -0.0125797800719738, -0.027140971273183823, -0.02762230858206749, -0.002777035580947995, -0.03872039169073105, -0.017777813598513603, 0.023162944242358208, -0.01404576376080513, 0.03711235895752907, 0.00032214372185990214, -0.03461204841732979, 0.04909515753388405, -0.022116653621196747, 0.03520828112959862, 0.03440297022461891, 0.03948463499546051, 0.01825089007616043, -0.016481157392263412, 0.0356714241206646, 0.011306597851216793, 0.025353513658046722, -0.021563425660133362, 0.002571800025179982, 0.04042713716626167, -0.02050446905195713, 0.031179534271359444, -0.03241664543747902, -0.005549570545554161, -0.045697376132011414, 0.006621822249144316, -0.029559090733528137, 0.05926511436700821, 0.0017031460301950574, -0.011751286685466766, 0.04502618685364723, -0.019734488800168037, -0.014429262839257717, 0.010957449674606323, -0.050163451582193375, -0.001061377814039588, 0.017881393432617188, -0.015634672716259956, -0.02319937013089657, 0.0027744362596422434, -0.04205924645066261, -0.003955991938710213, -0.015185444615781307, 0.006216456647962332, -0.03336383402347565, 0.026971537619829178, -0.005157862789928913, 0.035489343106746674, -0.015386287122964859, -0.0064926124177873135, 0.03390301764011383, 0.03497910872101784, -0.04062532261013985, -0.053162120282649994, 0.0370943583548069, 0.02536100149154663, -0.007313262205570936, -0.024051787331700325, 0.006253090221434832, 0.01545669138431549, -0.0065055168233811855, 0.018858611583709717, 0.013246631249785423, 0.0205257348716259, 0.0014772933209314942, 0.043002501130104065, 0.029076918959617615, -0.007383604533970356, -0.03213413804769516, 0.03051794320344925, -0.008142933249473572, -0.037673816084861755, -0.04829735308885574, 0.03649206459522247, 0.04209107905626297, 0.0025500706396996975, 0.04087241739034653, -0.005315870512276888, 0.08348730206489563, -0.020317018032073975, 0.028790775686502457, 0.009127410128712654, 0.05610406771302223, 0.06417235732078552, 0.026948630809783936, -0.026090404018759727, 0.025028513744473457, 0.05694463476538658, 0.006894078105688095, -0.023520035669207573, 0.010571413673460484, 0.004799783695489168, -0.036482665687799454, -0.036637648940086365, -0.032170359045267105, 0.017795585095882416, 0.02538865990936756, -0.004664427135139704, -0.0226344745606184, -0.03439830616116524, -0.02999970316886902, -0.003071769140660763, -0.02980487421154976, 0.025993483141064644, -0.01778290420770645, -0.010851663537323475, 0.012218441814184189, -0.014462114311754704, 0.0015160386683419347, 0.050750669091939926, 0.012449841946363449, 0.03469838574528694, 0.023560656234622, 0.027659660205245018, -0.01861516386270523, 0.027371888980269432, 0.03428640216588974, 0.0019504473311826587, -0.07115371525287628, 0.006079268176108599, 0.049396611750125885, 0.0008493064669892192, -0.042845070362091064, -0.026066463440656662, -0.053058307617902756, 0.047478146851062775, -0.035062581300735474, -0.022836806252598763, 0.02512393519282341, -0.04799676313996315, -0.028165489435195923, -0.05994021147489548, 0.031561899930238724, -0.023318201303482056, -0.042912792414426804, 0.03462494537234306, -0.003127169096842408, -0.02680324576795101, 0.05351109430193901, 0.02036145329475403, 0.04927394539117813, 0.02723120152950287, 0.03853043541312218, -0.0015519836451858282, 0.0405304878950119, 0.028198951855301857, -0.04259463772177696, 0.003343780990689993, 0.00687826843932271, -0.028881976380944252, -0.01377859991043806, -0.00659624207764864, -0.02004050649702549, -0.030471280217170715, 0.009018249809741974, 0.0020230617374181747, 0.004240031354129314, 0.03596854209899902, -0.003466798458248377, -0.018044205382466316, -0.025349099189043045, 0.056017398834228516, -0.020831668749451637, 0.02669905312359333, -0.022299854084849358, 0.05068394914269447, -0.00026524136774241924, 0.008058328181505203, -0.04185865446925163, -0.027973471209406853, 0.01687462069094181, -0.03633959963917732, 0.043701887130737305, -0.021400224417448044, -0.04142957925796509, -0.04421180114150047, -0.0503673329949379, -0.017939314246177673, 0.02026737853884697, -0.025109589099884033, -0.036970894783735275, 0.04745849594473839, 0.03398111090064049, 0.017679743468761444, -0.017593711614608765, -0.028686854988336563, -0.03110424429178238, 0.04903475195169449, 0.058122050017118454, -0.013946478255093098, 0.0680730864405632, 0.04645121097564697, -0.015559490770101547, 0.029597235843539238, -0.013004275970160961, 0.011805038899183273, -0.012149464339017868, -0.0221388041973114, -0.0415378175675869, 0.05452834442257881, -0.012776993215084076, -0.06463544815778732, 0.05818493664264679, 0.02414899319410324, 0.016231833025813103, -0.01517234742641449, -0.055868666619062424, -0.008863229304552078, -0.05165927857160568, -0.015063785947859287, -0.029811222106218338, 0.029025854542851448, 0.0007764269830659032, -0.01980370096862316, -0.007718540728092194, -0.06896466016769409, 0.14754794538021088, 0.03359752520918846, 0.01954895444214344, 0.035354748368263245, 0.035656217485666275, 0.03963629901409149, -0.0003954086860176176, -0.020886918529868126, 0.007764779031276703, -0.02365744486451149, 0.01713472604751587, 0.02148774266242981, 0.023985715582966805, 0.017913468182086945, 0.014845955185592175, 0.04345739632844925, -0.046433281153440475, 0.012802115641534328, 0.012534288689494133, -0.038293201476335526, -0.04791662096977234, 0.03361840546131134, 0.027215389534831047, -0.0009587693493813276, 0.008412005379796028, 0.005230475217103958, 0.011690475977957249, -0.04123089089989662, -0.02068225108087063, -0.013374751433730125, 0.03133454918861389, -0.00326348515227437, 0.019046664237976074, -0.052698761224746704, -0.028776515275239944, 0.042332421988248825, -0.008467419072985649, -0.038015782833099365, 0.00927382055670023, 0.03716849163174629, -0.009066046215593815, -0.02690357156097889, 0.03347364440560341, -0.04455386847257614, -0.009054826572537422, 0.004298411309719086, -0.06339839100837708, 0.009546891786158085, 0.008528308942914009, -0.03522905707359314, 0.04417122155427933, -0.0293735358864069, 0.004606339149177074, -0.028845202177762985, -0.04771001264452934, -0.013494785875082016, -0.015144228003919125, -0.015347971580922604, -0.014279814437031746, 0.008870060555636883, 0.01646828092634678, -0.0023210966028273106, -0.024242598563432693, 0.003002605866640806, -0.03258127719163895, -0.018794400617480278, 0.02960829995572567, 0.02744017168879509, 0.0023800909984856844, -0.010428298264741898, -0.016627946868538857, -0.02603183314204216, -0.0023350210394710302, -0.008093612268567085, 0.02488802559673786, 0.029705200344324112, -0.023175301030278206, 0.03596753254532814, -0.014881632290780544, -0.028374774381518364, -0.03419222682714462, -0.05334366858005524, -0.01379929669201374, 0.0046136886812746525, 0.01754997856914997, 0.01464914157986641, -0.07264237105846405, -0.05049016326665878, -0.01971163973212242, 0.03650438413023949, 0.05586809664964676, 0.02389860898256302, -0.013467833399772644, -0.031957607716321945, 0.005201114807277918 ]
Google has begun integrating Google+ into search results with public Google+ posts now appearing in Social Search. Whenever a user publicly shares a link on Google+, an annotation will show up under that link when it appears in a friend's search results. For example, if I share a My Blogs article about Google+ eliminating pseudonyms publicly on my Google+ page, users who have added me to their circles will see a note that I shared that link if they stumble upon it in Google Search. Google+ now joins Flickr, Twitter, Quora and Google Buzz as other inputs for Google's Social Search product. Social Search debuted in 2009 at the Web 2.0 Summit, partly as a response to Bing's integration with Facebook and Twitter. Social Search highlights what links your friends are sharing on the web and returns results it believes are relevant based on your friends' interests. Social Search integration is only the beginning for Google's plans for combining its search engine and social network. Google intends to revive real-time search with Google+ data and will launch a search engine for Google+ posts. Of course, the tech giant did the same thing with Google Buzz, and we all know what happened to that product. Do you think Google+ makes Google Search a better product? Let us know what you think in the comments.
[ -0.005721012130379677, 0.01905711553990841, -0.012038971297442913, 0.018003614619374275, -0.007587707135826349, 0.002341523068025708, -0.025729883462190628, 0.01734321191906929, 0.04631673917174339, 0.02165791392326355, 0.013303017243742943, 0.013888010755181313, 0.0005524401785805821, -0.03210907801985741, -0.006270696874707937, 0.005775445140898228, -0.04438565671443939, -0.029316019266843796, -0.008027958683669567, -0.010900952853262424, 0.009861170314252377, 0.049882616847753525, -0.06447416543960571, -0.031277794390916824, -0.02074831910431385, 0.03784451633691788, 0.017388302832841873, -0.039715081453323364, 0.03984205424785614, 0.06660335510969162, -0.012093886733055115, -0.04382889345288277, 0.02217462845146656, -0.03140955790877342, -0.03970042243599892, -0.019926249980926514, 0.024285461753606796, -0.03702434152364731, -0.03841795027256012, -0.04481033980846405, 0.006991872098296881, -0.034581467509269714, 0.02471103146672249, -0.061209436506032944, -0.031270090490579605, 0.028933139517903328, 0.0016997006023302674, -0.02858085371553898, 0.01276566181331873, -0.058487702161073685, 0.007668306119740009, -0.007835238240659237, -0.005818026140332222, 0.020475680008530617, 0.03538445383310318, -0.006974740885198116, -0.02741602621972561, -0.013950484804809093, -0.037884969264268875, 0.04700018838047981, 0.004617664963006973, 0.007895546033978462, 0.01075943186879158, -0.06000794097781181, -0.007878514938056469, 0.012864128686487675, 0.03671779856085777, -0.043450500816106796, 0.01586035266518593, -0.025179285556077957, -0.02753719687461853, -0.007405264303088188, -0.0192833561450243, -0.022753387689590454, 0.010560344904661179, 0.009420309215784073, -0.011034976691007614, -0.00623361486941576, -0.029039572924375534, 0.011631852947175503, 0.020313121378421783, 0.04511941224336624, -0.021827457472682, 0.017781494185328484, -0.06596436351537704, -0.019842129200696945, 0.004072682932019234, -0.00808737799525261, 0.013573759235441685, 0.00863155908882618, -0.01413185428828001, 0.04891352728009224, 0.02826208434998989, 0.0019019392784684896, 0.03909715637564659, 0.03849239647388458, -0.023512324318289757, 0.02034076303243637, 0.010013427585363388, 0.015701979398727417, 0.02982608787715435, 0.020467372611165047, 0.0017507784068584442, 0.059335287660360336, -0.020710928365588188, 0.0048279110342264175, -0.025527574121952057, -0.027760475873947144, 0.028222976252436638, -0.04703819379210472, -0.03683670237660408, -0.011928360909223557, 0.024474114179611206, -0.04935234785079956, -0.008932862430810928, 0.03885149210691452, -0.0064384727738797665, 0.019978540018200874, -0.012241214513778687, 0.02075381577014923, -0.015477834269404411, 0.007457518484443426, 0.014050119556486607, -0.0034934242721647024, -0.010398661717772484, -0.012016896158456802, -0.04146353155374527, 0.04304667189717293, -0.04521791264414787, 0.0004176118818577379, -0.009735087864100933, -0.018336620181798935, -0.010401500388979912, 0.02153918892145157, -0.015019718557596207, 0.01649273745715618, 0.005588863510638475, 0.030757872387766838, 0.03759647160768509, -0.07419262826442719, 0.041990555822849274, 0.008168220520019531, 0.025168878957629204, 0.09823901206254959, 0.000222624687012285, 0.04264949634671211, -0.016147127375006676, -0.019803613424301147, -0.04213976860046387, 0.013814511708915234, 0.01637829653918743, 0.053760990500450134, -0.003930355422198772, 0.02362929657101631, -0.034857071936130524, -0.0010161801474168897, 0.008693349547684193, 0.0010280797723680735, 0.03992466628551483, 0.04327651485800743, -0.029509173706173897, 0.018968721851706505, -0.02242538146674633, 0.06213948503136635, -0.0024853977374732494, 0.049678850919008255, -0.031227819621562958, -0.0021686870604753494, 0.008358688093721867, -0.040094103664159775, -0.021886566653847694, 0.0028457336593419313, -0.03909168764948845, 0.040583446621894836, 0.020189080387353897, 0.035027988255023956, 0.011076319962739944, -0.013891927897930145, 0.05485285073518753, 0.029402144253253937, -0.021151667460799217, 0.003961498383432627, 0.0019300224957987666, 0.07128399610519409, -0.007242139428853989, -0.00025604493566788733, -0.013806740753352642, -0.016666540876030922, -0.050633370876312256, -0.043511129915714264, -0.006630658637732267, 0.02736371010541916, -0.06836245954036713, 0.0243793036788702, 0.018575025722384453, 0.010254726745188236, -0.020529955625534058, -0.0336373932659626, 0.008831635117530823, -0.05665745586156845, -0.03036162070930004, 0.07161737978458405, -0.02638956345617771, 0.019551966339349747, -0.00642607593908906, -0.030686719343066216, 0.02955874241888523, 0.06053391098976135, -0.05790489912033081, 0.017127392813563347, 0.01551385223865509, 0.011969838291406631, -0.01926977001130581, -0.02597624994814396, 0.022589603438973427, -0.005755435209721327, -0.04785481095314026, 0.04274256154894829, -0.004305040929466486, 0.006484882906079292, 0.005804259795695543, 0.04633109271526337, 0.02797912433743477, 0.042568109929561615, 0.024725623428821564, 0.027996763586997986, 0.02999710477888584, 0.05619527027010918, -0.020391331985592842, 0.0031771983485668898, -0.04327692836523056, 0.031896527856588364, 0.022603875026106834, 0.05098110809922218, 0.020447300747036934, 0.01847168616950512, 0.04062555730342865, 0.05772394686937332, 0.007143005728721619, 0.032462719827890396, 0.005210488568991423, 0.0023318426683545113, 0.03582807257771492, 0.021903889253735542, 0.00007430346158798784, 0.019658632576465607, 0.041338346898555756, 0.00233117351308465, -0.014908960089087486, 0.055363334715366364, -0.022746283560991287, 0.05283863842487335, 0.017117254436016083, 0.017363114282488823, -0.044278062880039215, 0.0008861985988914967, 0.04373760521411896, 0.05184248462319374, -0.012729113921523094, -0.004009676165878773, -0.000935451767873019, 0.06103121116757393, -0.009339267387986183, -0.009918246418237686, 0.03149036318063736, -0.01791127771139145, 0.017875676974654198, 0.01129409670829773, -0.012829727493226528, -0.051206912845373154, -0.05593758821487427, -0.05283641070127487, -0.022836003452539444, -0.03484486788511276, -0.026314962655305862, -0.03494381532073021, 0.029062572866678238, -0.03247825428843498, 0.00210080505348742, -0.011211126111447811, -0.002864298177883029, -0.06179231405258179, -0.023170096799731255, 0.03275202959775925, 0.025391127914190292, 0.055151812732219696, -0.06323998421430588, 0.00709185004234314, 0.012276880443096161, 0.06455972045660019, -0.027545183897018433, -0.008766119368374348, 0.031732697039842606, -0.012277877889573574, 0.024377454072237015, 0.005456612445414066, -0.01462728064507246, -0.013471372425556183, -0.054672520607709885, -0.026224998757243156, 0.02783849835395813, 0.007860667072236538, 0.0005417477223090827, 0.01355825737118721, -0.04544897377490997, 0.009858001954853535, 0.024977024644613266, 0.013806800357997417, 0.0624392144382, 0.07118537276983261, -0.0450202077627182, 0.04331579431891441, 0.022341905161738396, 0.01683345064520836, -0.05142248049378395, 0.052812959998846054, 0.04401407763361931, 0.005886561702936888, -0.022395651787519455, -0.003906316589564085, -0.04144138842821121, -0.007039167918264866, -0.0054296767339110374, -0.033423662185668945, -0.037196625024080276, 0.017690341919660568, 0.0072211348451673985, -0.07786156982183456, 0.018384668976068497, -0.046774137765169144, -0.06283871084451675, -0.043340783566236496, -0.004908704198896885, 0.033715248107910156, 0.030265197157859802, 0.014032579958438873, 0.032869189977645874, -0.01491568423807621, 0.012881794013082981, 0.006578733213245869, 0.04739530384540558, -0.013160129077732563, 0.020094744861125946, 0.05174936354160309, 0.0038402127102017403, -0.013638428412377834, 0.031223352998495102, 0.010059461928904057, 0.032199881970882416, 0.012169049121439457, -0.004981514532119036, 0.018215838819742203, 0.023104889318346977, 0.018733838573098183, 0.028729312121868134, 0.03964801877737045, -0.0449879914522171, -0.0034474802669137716, 0.01497533917427063, -0.034473173320293427, 0.017395006492733955, 0.01334363967180252, 0.0029138338286429644, -0.012906496413052082, -0.028881262987852097, -0.025807049125432968, 0.03184964880347252, 0.02485639788210392, 0.043292902410030365, -0.05065860226750374, 0.04413702338933945, -0.016253909096121788, -0.04107674956321716, 0.06167615205049515, -0.060669660568237305, -0.027336599305272102, 0.05657074600458145, -0.04550709202885628, 0.05898432061076164, -0.01688487082719803, 0.005306644830852747, 0.010097842663526535, 0.056006647646427155, 0.06110557168722153, -0.0236030463129282, 0.038897838443517685, -0.03981493413448334, 0.020355377346277237, -0.015928292647004128, -0.010298221372067928, -0.01898091472685337, -0.01879291981458664, -0.0018520274898037314, -0.01771112158894539, -0.035429440438747406, -0.05867635831236839, 0.02673586644232273, 0.029775545001029968, 0.041989315301179886, -0.02295020781457424, 0.03669430688023567, 0.013501438312232494, 0.002494562417268753, 0.018228095024824142, -0.0018377321539446712, 0.010585252195596695, -0.06424509733915329, 0.01635315641760826, 0.043278768658638, -0.005649731494486332, -0.018962312489748, -0.020581940189003944, -0.024082237854599953, 0.002349133836105466, 0.0010386023204773664, -0.024885475635528564, -0.03841078281402588, -0.023738302290439606, 0.00013974121247883886, 0.03038802556693554, -0.03157489746809006, -0.04805966466665268, -0.03585751727223396, 0.018782325088977814, 0.01709330454468727, -0.04693983867764473, 0.009377080015838146, -0.023160764947533607, 0.045350320637226105, 0.03936871513724327, -0.022525545209646225, -0.02677503414452076, -0.03560878708958626, -0.02652023173868656, 0.002444402314722538, 0.04084533452987671, 0.02020222693681717, 0.01664259470999241, 0.027046725153923035, -0.06865201145410538, 0.044459521770477295, 0.008304833434522152, 0.017772190272808075, -0.008189523592591286, 0.018089041113853455, 0.010537221096456051, -0.002808087971061468, 0.07180330902338028, 0.0021534543484449387, -0.04104681313037872, 0.035843219608068466, -0.03528474271297455, 0.020036082714796066, 0.018891118466854095, -0.023114528506994247, -0.031391263008117676, 0.05663105472922325, -0.003712837351486087, 0.026694996282458305, 0.01231206301599741, 0.021784977987408638, -0.0040997774340212345, 0.017192469909787178, -0.04500988870859146, -0.05761302262544632, 0.06629202514886856, -0.007778536528348923, -0.03098105452954769, 0.03362985700368881, 0.04404137283563614, -0.024888189509510994, -0.0010074705351144075, 0.0010753253009170294, -0.04209638386964798, 0.020514434203505516, -0.030417591333389282, 0.02197784185409546, -0.014294481836259365, -0.014702213928103447, -0.0013664686121046543, -0.018394652754068375, 0.03943158686161041, -0.00349070830270648, -0.03191860020160675, -0.07591387629508972, -0.0427422821521759, 0.0017716111615300179, -0.03504301235079765, 0.021004673093557358, -0.0038070539012551308, -0.02380932681262493, -0.02439030632376671, -0.009400518611073494, -0.01702549308538437, -0.02146158367395401, 0.007686932105571032, 0.0002778320631477982, 0.009086796082556248, 0.006583650130778551, -0.029169753193855286, 0.04415025934576988, -0.01682407595217228, -0.07534883916378021, 0.007682785391807556, -0.002423998201265931, -0.023612214252352715, -0.038671329617500305, 0.014840541407465935, -0.010942886583507061, -0.01937582902610302, -0.006967930123209953, 0.005875587463378906, -0.04502612724900246, 0.0024271479342132807, 0.03796406090259552, 0.008305407129228115, 0.016598744317889214, -0.008571828715503216, -0.019241323694586754, 0.045544106513261795, 0.008859542198479176, -0.039186250418424606, -0.032347116619348526, 0.026966748759150505, -0.019999338313937187, 0.05226333439350128, 0.06479360908269882, -0.026257000863552094, -0.027385281398892403, -0.0449698306620121, -0.023698490113019943, -0.02413557469844818, -0.011304376646876335, -0.042814698070287704, -0.00402052653953433, -0.03877846151590347, 0.05881403759121895, 0.024047361686825752, -0.016278862953186035, -0.008332938887178898, -0.03906310722231865, -0.011136697605252266, -0.02536219358444214, -0.025578457862138748, -0.013243482448160648, -0.011184865608811378, 0.0019285280723124743, 0.036490995436906815, 0.0035763431806117296, 0.03427159786224365, -0.003882653545588255, 0.02306372858583927, -0.0067809950560331345, -0.03129701688885689, -0.04459010809659958, -0.009745743125677109, 0.022922242060303688, -0.008118581026792526, 0.0075902184471488, 0.023055367171764374, -0.053274642676115036, 0.036352548748254776, -0.03475642576813698, 0.0010274715023115277, -0.04919328913092613, -0.0010815680725499988, -0.03201143443584442, -0.01576334610581398, 0.013868334703147411, -0.021968921646475792, -0.003098695771768689, -0.0028190542943775654, 0.028987154364585876, 0.005272568669170141, 0.017492754384875298, -0.057489532977342606, -0.014923484064638615, -0.038291286677122116, -0.043518923223018646, 0.007769086863845587, -0.05672157183289528, -0.015265987254679203, -0.05399641394615173, 0.016206035390496254, 0.04040791094303131, -0.019138993695378304, 0.02678050473332405, 0.06875358521938324, 0.015610389411449432, 0.021323366090655327, -0.046712763607501984, 0.03261413052678108, 0.0516110323369503, -0.005620993208140135, -0.006153193302452564, -0.03480179235339165, -0.029195314273238182, -0.02779957838356495, -0.04132895916700363, -0.03944232314825058, -0.02566562406718731, 0.009705904871225357, 0.07947948575019836, -0.05883939564228058, 0.027173005044460297, -0.024645689874887466, -0.060984641313552856, -0.0495758093893528, 0.05223113298416138, -0.007350477389991283, -0.006815975997596979, 0.0552116259932518, 0.023584386333823204, -0.005792398937046528, 0.029623014852404594, -0.0053246221505105495, -0.023161455988883972, -0.04441703110933304, 0.05098261684179306, 0.005473523400723934, -0.04835201054811478, 0.041671473532915115, 0.047545626759529114, -0.042098354548215866, -0.03913257643580437, 0.010026946663856506, -0.04710656777024269, 0.021513978019356728, -0.044600341469049454, -0.0013758573913946748, 0.011374659836292267, -0.009356905706226826, -0.014135277830064297, 0.01602189801633358, -0.010276921093463898, 0.030696798115968704, 0.02232353575527668, 0.021168509498238564, -0.04283435270190239, 0.0050827451050281525, 0.07135072350502014, 0.003090605139732361, -0.01437423937022686, -0.04206794872879982, 0.02019234374165535, 0.004290444310754538, -0.01672976091504097, 0.06434296071529388, -0.034929320216178894, 0.03646288439631462, 0.04491715878248215, 0.015277368016541004, 0.04096090421080589, -0.014295150525867939, -0.008166616782546043, 0.03968990966677666, -0.049041640013456345, -0.04771798476576805, -0.03055458888411522, 0.01931966468691826, -0.018313290551304817, 0.04425295442342758, -0.049975648522377014, 0.0061142221093177795, 0.008062520995736122, 0.0003679917426779866, -0.037282608449459076, -0.0479477234184742, -0.02491728402674198, -0.06156621873378754, -0.045166485011577606, -0.002071118215098977, -0.003556217532604933, -0.0016821459867060184, 0.008815041743218899, 0.0057148621417582035, -0.018260639160871506, -0.009259043261408806, 0.0026059725787490606, -0.01671728491783142, 0.006476002745330334, -0.017986910417675972, 0.023127466440200806, -0.07491744309663773, -0.017833679914474487, -0.04493187740445137, 0.011024132370948792, 0.00820201076567173, -0.018297649919986725, -0.019972117617726326, 0.03649691492319107, 0.03761913999915123, -0.01000739075243473, 0.005717978347092867, 0.012166917324066162, -0.027194302529096603, -0.022390492260456085, -0.01861434243619442, 0.05857085436582565, -0.029196597635746002, -0.00039649882819503546, 0.00695490138605237, -0.01603761501610279, 0.02896994911134243, 0.003673100844025612, -0.0475723072886467, -0.04526801407337189, 0.010912307538092136, -0.006186626385897398, -0.001105996547266841, -0.03671037778258324, -0.0573691800236702, 0.004382198676466942, -0.018254445865750313, -0.011502409353852272, -0.005151510704308748, -0.01948309689760208, -0.008087745867669582, 0.006858229171484709, 0.0035819141194224358, 0.03660183399915695, 0.039145637303590775, 0.016612155362963676, -0.01058491226285696, 0.01795649342238903, 0.013470949605107307, -0.017786560580134392, 0.018839063122868538, -0.01875082217156887, 0.025900380685925484, -0.02302965149283409, -0.0009725688141770661, 0.02459719032049179, -0.002461037365719676, 0.0162894856184721, 0.02454637549817562, -0.02502116747200489, -0.05075797066092491, -0.010138947516679764, 0.006276953034102917, 0.041418127715587616, 0.005034313537180424, -0.015919435769319534, 0.01612585410475731, 0.008096041157841682, -0.009221316315233707, 0.005748100578784943, -0.05296993628144264, -0.022620396688580513, 0.05494486168026924, 0.001910038641653955, 0.01703108847141266, 0.004453555215150118, -0.022154690697789192, 0.027476390823721886, -0.0064363544806838036, -0.00865284912288189, -0.023071739822626114, -0.0033301461953669786, -0.007028969004750252, 0.03225350007414818, -0.013079374097287655, -0.0007034651353023946, -0.0034110592678189278, 0.03480132296681404, -0.031213177368044853, -0.030043689534068108, -0.004794543609023094, 0.007549018133431673, 0.010193715803325176, -0.018938040360808372, 0.004051241558045149, 0.010621185414493084, 0.01489352434873581, -0.019146714359521866, 0.014140057377517223, 0.015081316232681274, -0.009298374876379967, 0.03416045010089874, -0.03538961708545685, 0.021786807104945183, -0.03880590200424194, 0.03393324092030525, -0.006541940849274397, -0.029514027759432793, -0.0053560566157102585, 0.012654349207878113, 0.05594222620129585, -0.00905795767903328, 0.02157624065876007, -0.004852137994021177, 0.029531052336096764, -0.00528202299028635, 0.016786042600870132, 0.012311889789998531, 0.04027478024363518, 0.019496938213706017, 0.030051277950406075, -0.0017528441967442632, 0.027324523776769638, 0.04093135893344879, -0.014730342663824558, -0.009517388418316841, 0.00977027416229248, 0.023676950484514236, -0.008786400780081749, 0.005772419273853302, -0.017625289037823677, 0.018854709342122078, -0.004725378938019276, -0.016373539343476295, 0.020831555128097534, -0.033142782747745514, -0.021194173023104668, -0.01857673190534115, -0.026028448715806007, 0.019271746277809143, -0.024452243000268936, -0.018478363752365112, -0.013768918812274933, -0.028884265571832657, 0.0012648795964196324, 0.01666627638041973, 0.0302017442882061, 0.024204455316066742, -0.004382493440061808, 0.039493221789598465, -0.009594500996172428, 0.05947689339518547, -0.008296162821352482, 0.04087185114622116, -0.021632418036460876, -0.010227921418845654, 0.03046587109565735, -0.0026585266459733248, -0.004165446851402521, 0.0262975562363863, -0.025342335924506187, 0.03208260238170624, -0.010238434188067913, -0.03704521059989929, 0.05817703157663345, -0.039444856345653534, -0.03397225961089134, -0.030965950340032578, 0.05316818505525589, -0.047599080950021744, -0.02244342491030693, 0.03674096614122391, -0.03809740021824837, -0.01960701309144497, 0.043362073600292206, -0.007138701155781746, 0.04140925034880638, -0.002730279229581356, 0.047743551433086395, -0.02718278206884861, 0.01286697294563055, 0.054880496114492416, -0.023971078917384148, -0.034600041806697845, 0.020799756050109863, -0.01012265495955944, -0.008564313873648643, 0.008319324813783169, -0.03773769363760948, 0.015152226202189922, 0.01465754583477974, -0.029420049861073494, 0.007048448082059622, 0.03386601060628891, 0.026301711797714233, -0.05898166447877884, -0.009259943850338459, 0.027851440012454987, -0.049634724855422974, 0.005679905414581299, 0.04446149617433548, 0.017590472474694252, -0.0233211237937212, -0.014211324043571949, -0.042945746332407, -0.011842023581266403, -0.015345826745033264, -0.05875889211893082, 0.05098986253142357, 0.011312547139823437, -0.05402131751179695, 0.013464441522955894, -0.051345039159059525, -0.029480107128620148, 0.007504982408136129, -0.013678452931344509, -0.059538550674915314, 0.021249564364552498, 0.05373835191130638, 0.01393701322376728, 0.01627436652779579, -0.0357685349881649, 0.008637994527816772, 0.02914785034954548, 0.08059270679950714, 0.0056777652353048325, 0.09100258350372314, 0.029637709259986877, 0.010931733064353466, 0.006198253482580185, -0.02184774912893772, 0.03126702085137367, 0.004639400634914637, 0.002456612652167678, -0.007885306142270565, 0.01288102101534605, -0.00909280963242054, -0.0542481504380703, 0.026013052091002464, 0.030867038294672966, 0.06809759140014648, -0.01647573709487915, -0.060237154364585876, 0.0012327851727604866, -0.08139951527118683, -0.006846659816801548, -0.020703468471765518, 0.022031540051102638, 0.0010687240865081549, -0.009991600178182125, 0.020447364076972008, -0.09306871891021729, 0.15696848928928375, 0.046562764793634415, 0.030901022255420685, -0.026195170357823372, -0.010172137059271336, 0.043718937784433365, 0.04483234882354736, 0.01515033096075058, 0.010236209258437157, -0.011191966943442822, 0.037752747535705566, 0.013817427679896355, 0.014853386208415031, 0.018029917031526566, 0.0026259873993694782, 0.04531259834766388, -0.03632928431034088, 0.0185526292771101, 0.02739335037767887, -0.042896173894405365, -0.029822159558534622, 0.02682122215628624, -0.015180698595941067, -0.0007838371675461531, -0.0005745628732256591, 0.018129166215658188, -0.010092521086335182, -0.06943787634372711, 0.016205472871661186, 0.029003124684095383, 0.0038473247550427914, -0.03927852213382721, 0.06636476516723633, -0.01677749492228031, -0.04697791859507561, 0.031643323600292206, -0.014722752384841442, -0.037982527166604996, -0.006295898929238319, 0.04335375502705574, 0.0018916962435469031, 0.015488834120333195, 0.04169963300228119, 0.0019330220529809594, 0.02100617066025734, 0.006078666541725397, -0.025874951854348183, -0.00542483339086175, 0.04223346337676048, -0.028111532330513, 0.07196226716041565, -0.039940718561410904, 0.044305283576250076, -0.012469792738556862, -0.05158700421452522, 0.018107175827026367, 0.005616927053779364, -0.017750689759850502, -0.007692832034081221, 0.020949775353074074, 0.03133130818605423, 0.022171204909682274, -0.032535016536712646, -0.011597612872719765, -0.012074416503310204, -0.010371626354753971, -0.02513798326253891, 0.01801241934299469, 0.003563844133168459, -0.019550099968910217, -0.03090454638004303, -0.0016763661988079548, 0.03227417171001434, -0.04392256215214729, 0.022771041840314865, 0.015596495009958744, -0.022028647363185883, 0.03460901975631714, 0.004682738799601793, -0.04072218015789986, -0.028902800753712654, -0.01587856188416481, -0.04691803455352783, -0.02307717315852642, 0.04361390694975853, 0.03422752022743225, -0.038196202367544174, -0.02288759872317314, -0.018423311412334442, 0.0549033097922802, 0.04393564164638519, -0.0037010014057159424, 0.0009667776757851243, -0.0019948678091168404, -0.010296272113919258 ]
Author's info Richard M. Crawford Academic degree: Dr.Sci.(Bio.) Affiliation: Alfred Wegener Institute for Polar and Marine Research Author's publications The Planet Chronicles by Diatoms Diatoms and People Diatoms: Creators of Glass Castles Mini Nano-Engineers Six Continents of the Eternal Life "...Almost Immortal and Forever Young" Invisible Network SCIENCE First Hand is an illustrated interdisciplinary popular science journal. It has been available since 2004 in Novosibirsk Akademgorodok, one of the world's largest research centers. The print version in Russian is published six times a year. SCIENCE First Hand, the electronic version in English, is published three times a year. Working closely with Novosibirsk State University, the SB RAS research institutes, and the Novosibirsk Technopark, we publish unique and reliable materials on the most relevant, interesting and important topics. The authors of SCIENCE First Hand are leading Russian and foreign scientists. The topics cover almost all fields of human knowledge such as biology, medicine, mathematics, physics, chemistry, astronomy, astrophysics, geology, IT-technology, history, archeology, ethnography, etc. Letter to editors Electronic payments are made through the ROBOKASSA © INFOLIO, 2019
[ -0.024746712297201157, -0.011770369485020638, -0.009319695644080639, -0.01595143787562847, -0.0018057540291920304, 0.008144178427755833, -0.020617835223674774, 0.02480023354291916, 0.022979306057095528, 0.03099389374256134, 0.03634922206401825, -0.040695421397686005, 0.03637144714593887, -0.023521197959780693, -0.018765773624181747, -0.01760251075029373, -0.03301924467086792, -0.008007294498383999, -0.030804594978690147, -0.003967281896620989, 0.007818766869604588, 0.029027478769421577, -0.05839810147881508, -0.058419279754161835, -0.02553057111799717, 0.03644309565424919, 0.035820238292217255, -0.0007277987897396088, 0.0647377073764801, 0.03081054985523224, -0.012193570844829082, -0.03955104574561119, 0.04273701086640358, -0.06288310140371323, 0.003156262217089534, -0.009744607843458652, 0.02735542133450508, -0.04139304533600807, -0.029448606073856354, -0.05224326625466347, 0.026959551498293877, -0.009784335270524025, 0.04678836464881897, -0.030660634860396385, -0.03366878256201744, -0.013358565047383308, -0.015803229063749313, 0.008445699699223042, -0.008240853436291218, -0.03125280141830444, 0.02153570018708706, 0.022800877690315247, 0.03779086470603943, -0.005948726087808609, -0.019238650798797607, 0.04505861923098564, -0.012152895331382751, -0.008144093677401543, -0.03775946795940399, 0.025866791605949402, 0.033248916268348694, -0.005346687976270914, 0.05950835719704628, -0.043185777962207794, 0.01321274135261774, 0.03902199864387512, -0.0062592048197984695, -0.00563881266862154, 0.009738173335790634, -0.0235513374209404, -0.011165635660290718, -0.010411343537271023, -0.0012769586173817515, -0.014859145507216454, -0.013696410693228245, -0.0030766180716454983, -0.006513237487524748, -0.01929650269448757, 0.012706700712442398, -0.011870292015373707, 0.008724797517061234, 0.03815062344074249, 0.01061708852648735, 0.017574964091181755, -0.05303174629807472, -0.040534306317567825, -0.02960207313299179, -0.017940400168299675, 0.015854444354772568, 0.027863889932632446, 0.01581597328186035, 0.04526447132229805, 0.010300759226083755, -0.019148284569382668, 0.021909208968281746, 0.03361985832452774, -0.05177859216928482, 0.045126140117645264, -0.021264735609292984, 0.010968821123242378, 0.05111464858055115, 0.047963108867406845, -0.00030402818811126053, 0.07773932069540024, -0.034922610968351364, 0.02373546175658703, -0.0054110195487737656, 0.0010063606314361095, -0.014870054088532925, -0.049683086574077606, 0.007926112972199917, -0.00928257405757904, 0.01901072822511196, 0.0076751550659537315, 0.010585869662463665, 0.04024204611778259, 0.02077285759150982, 0.033484265208244324, -0.040269605815410614, 0.03785448893904686, -0.03585013747215271, 0.010064633563160896, 0.032804280519485474, -0.020441684871912003, 0.020141981542110443, -0.05455140769481659, -0.029635582119226456, 0.062036074697971344, -0.01820089854300022, -0.03896448388695717, 0.01709963195025921, -0.049201104789972305, -0.01343459077179432, 0.04961404949426651, 0.0036378747317939997, -0.0033221051562577486, 0.0011642769677564502, 0.02793426811695099, 0.032420214265584946, -0.044703368097543716, 0.03782486543059349, 0.020140498876571655, -0.0024620210751891136, 0.09738009423017502, 0.0008695594733580947, 0.03534361720085144, -0.002916170284152031, -0.014348182827234268, -0.027208885177969933, 0.05722939223051071, -0.0344187393784523, -0.013893247582018375, -0.0008845564443618059, 0.03627839684486389, -0.02401065267622471, 0.005250334274023771, -0.030698135495185852, -0.007287886459380388, 0.016652299091219902, 0.018013127148151398, 0.0094786761328578, 0.021577144041657448, -0.03403785452246666, 0.03021540492773056, -0.028179269284009933, 0.036761991679668427, -0.041246917098760605, -0.04594220966100693, -0.002697482006624341, -0.02395114302635193, -0.00422657048329711, -0.03550722822546959, -0.011511609889566898, 0.035887617617845535, 0.013520955108106136, 0.02694919891655445, 0.02758006751537323, -0.010551439598202705, 0.027894621714949608, 0.035868242383003235, -0.02334233932197094, -0.01977286860346794, 0.015214208513498306, 0.053708646446466446, -0.0013085894752293825, -0.015113990753889084, -0.005868284031748772, -0.05585167929530144, -0.022657202556729317, -0.02454574778676033, -0.0027198102325201035, 0.044036056846380234, -0.0548458993434906, 0.02913912571966648, -0.0073927524499595165, 0.0017929532332345843, -0.025283731520175934, 0.004336379002779722, 0.024530630558729172, -0.06029806658625603, -0.02352464385330677, 0.03503906726837158, -0.051384009420871735, 0.01753838360309601, -0.00028830370865762234, -0.0035389955155551434, 0.026808416470885277, 0.08494941145181656, -0.05527728796005249, 0.00334008876234293, 0.043849773705005646, 0.0037148580886423588, 0.004181292373687029, -0.02203015424311161, 0.0063691455870866776, -0.03168607875704765, -0.04005059227347374, 0.05533437430858612, -0.005219303537160158, -0.021292248740792274, 0.012152951210737228, 0.001121336710639298, 0.04667235165834427, 0.019442535936832428, -0.008318852633237839, 0.016472335904836655, -0.000015079814147611614, 0.050001177936792374, -0.023505276069045067, -0.01395011879503727, 0.0156610906124115, 0.04409676417708397, -0.0013804782647639513, 0.06252790987491608, 0.05520495027303696, 0.02687949687242508, 0.036917779594659805, 0.04544179141521454, -0.00041413604049012065, -0.0026576819363981485, 0.006907197646796703, -0.014987969771027565, 0.04516252502799034, 0.011717911809682846, 0.011348728090524673, 0.04408223554491997, -0.01186244934797287, 0.01921062171459198, -0.03906707465648651, 0.03298170492053032, -0.01510846707969904, 0.037596311420202255, 0.0275193490087986, 0.0076682050712406635, -0.04991026222705841, 0.0027698357589542866, 0.026312140747904778, 0.02613513357937336, -0.03519054502248764, -0.022739680483937263, 0.004209509585052729, 0.028930768370628357, -0.019213564693927765, -0.0019310555653646588, 0.03585069254040718, 0.02536277286708355, -0.017811529338359833, 0.02631887048482895, 0.007814842276275158, -0.0415177159011364, -0.03421391546726227, -0.04702584818005562, -0.05643304064869881, -0.04701533913612366, -0.062049683183431625, 0.007276096381247044, 0.036654602736234665, -0.04457280784845352, 0.01151830144226551, 0.01395819429308176, -0.011669925414025784, -0.023366287350654602, -0.014252442866563797, 0.04454130679368973, 0.04004751518368721, 0.039088938385248184, -0.03762330859899521, 0.04408170282840729, -0.030154850333929062, 0.03798384591937065, -0.0006735814968124032, 0.01577684096992016, -0.014479187317192554, -0.015808459371328354, 0.020253486931324005, 0.003461803775280714, -0.005037989467382431, -0.0025707336608320475, -0.05624618008732796, -0.03983006253838539, 0.018654918298125267, 0.004919857252389193, -0.011701801791787148, 0.011406957171857357, -0.028246313333511353, 0.04741426184773445, 0.013116838410496712, -0.03190883621573448, 0.057697489857673645, 0.03539489582180977, -0.02430545724928379, 0.05845775082707405, 0.008969025686383247, 0.012542614713311195, -0.052376341074705124, 0.048220906406641006, 0.04446746036410332, -0.0016544462414458394, 0.010508318431675434, -0.024072572588920593, -0.05388419330120087, -0.009867741726338863, 0.016195764765143394, -0.040136728435754776, -0.027652844786643982, 0.03660710155963898, 0.0242064967751503, -0.061541441828012466, 0.012889719568192959, -0.038603562861680984, -0.06165873259305954, -0.03127215802669525, -0.027997318655252457, 0.033342767506837845, 0.028815027326345444, 0.019237013533711433, -0.017248857766389847, -0.042061325162649155, 0.006663020700216293, 0.01609407179057598, 0.04228460416197777, -0.05302320793271065, 0.01648680865764618, 0.041258975863456726, 0.0030899900011718273, -0.004530358128249645, 0.046266619116067886, -0.007174361031502485, 0.007258700206875801, 0.028449973091483116, 0.00259207165800035, 0.006172957830131054, 0.036386165767908096, -0.0018176393350586295, -0.011633185669779778, 0.06328023970127106, -0.03258395195007324, -0.021992148831486702, 0.007897956296801567, 0.022620288655161858, 0.013123803772032261, 0.006619983818382025, 0.01168377697467804, 0.0011881800601258874, -0.05456406623125076, -0.03585457056760788, 0.029603557661175728, 0.020320160314440727, 0.046474263072013855, -0.04598255082964897, 0.08279549330472946, -0.015288139693439007, -0.01677597127854824, 0.036177054047584534, -0.031526628881692886, 0.008279038593173027, 0.061292748898267746, -0.01798431947827339, 0.06568680703639984, -0.051558591425418854, -0.00537036033347249, 0.00152440438978374, 0.022920947521924973, 0.023371893912553787, -0.021873287856578827, 0.028744135051965714, -0.005581417586654425, -0.05427329242229462, -0.024916572496294975, -0.03834327682852745, -0.024583827704191208, -0.03619139641523361, -0.00412946380674839, 0.012125631794333458, -0.05363403260707855, -0.03937710449099541, 0.0307452529668808, 0.042851608246564865, 0.033222269266843796, -0.008001318201422691, 0.03844410181045532, -0.00025713341892696917, 0.03574581444263458, 0.057611703872680664, -0.016382519155740738, 0.005072577856481075, -0.05077308416366577, 0.052483268082141876, 0.028109585866332054, -0.015504138544201851, -0.0412081815302372, 0.005400488153100014, -0.04776494577527046, -0.0127188079059124, -0.0014172320952638984, -0.028175000101327896, -0.013991257175803185, 0.02439703606069088, 0.01581472158432007, 0.02153877355158329, -0.06171504035592079, -0.003913854714483023, -0.027065834030508995, 0.06836193054914474, 0.03376154974102974, -0.0574924610555172, -0.0014103336725383997, -0.03386379033327103, 0.060043323785066605, 0.049113743007183075, -0.013571717776358128, -0.06487811356782913, -0.040682658553123474, -0.02013934589922428, -0.03286982700228691, 0.0003982230555266142, 0.011961149051785469, -0.02827843837440014, 0.014748920686542988, -0.02696327492594719, 0.02804502844810486, 0.037606772035360336, 0.0009318481315858662, -0.030169114470481873, -0.023077039048075676, 0.020706402137875557, 0.024242566898465157, 0.020090481266379356, -0.0160325076431036, -0.017324281856417656, -0.009722912684082985, -0.03726885840296745, 0.013026694767177105, -0.023699752986431122, 0.009064925834536552, 0.007035191636532545, 0.009773549623787403, -0.00524870352819562, 0.04512784630060196, -0.01036929152905941, 0.006225890945643187, 0.01581379398703575, 0.04711949825286865, -0.019116364419460297, -0.04111739620566368, 0.04768933728337288, -0.020700231194496155, -0.015156447887420654, 0.009923739358782768, 0.05935780331492424, -0.008183733560144901, 0.022225672379136086, 0.00821736641228199, -0.04423930123448372, 0.01762138120830059, -0.049835413694381714, 0.015613525174558163, -0.03680913895368576, -0.03993230685591698, 0.013175297528505325, 0.004885121248662472, 0.017463436350226402, -0.0052476925775408745, 0.0109426099807024, -0.012876952067017555, -0.06899198889732361, -0.016857421025633812, -0.01292828656733036, -0.023607827723026276, 0.01396188884973526, -0.014720737934112549, -0.025840971618890762, -0.024812674149870872, -0.02265307493507862, -0.009880977682769299, 0.010017910040915012, -0.027904724702239037, -0.018495358526706696, 0.0009570547845214605, -0.027164962142705917, 0.03556128963828087, 0.002976929536089301, -0.030349576845765114, 0.007634314242750406, -0.011188037693500519, -0.03800404444336891, -0.03062640316784382, -0.003364743897691369, -0.014730377122759819, -0.03226806968450546, 0.003972323145717382, -0.010686562396585941, -0.015146779827773571, 0.007314543705433607, 0.02706904709339142, 0.016928143799304962, 0.047606226056814194, -0.005820497404783964, -0.029972592368721962, 0.041281260550022125, 0.007079830393195152, -0.019424043595790863, -0.02574201300740242, 0.04180373251438141, -0.024440089240670204, 0.02660866640508175, -0.014555413275957108, -0.05141940340399742, -0.02801528200507164, -0.051293883472681046, 0.005857390817254782, -0.051702532917261124, -0.02828502096235752, -0.05904611200094223, -0.011197401210665703, -0.03625206649303436, 0.06262382864952087, 0.031598374247550964, -0.030742289498448372, 0.04231894761323929, -0.060024891048669815, -0.004738189745694399, -0.02672032080590725, -0.014068573713302612, -0.032336845993995667, -0.042947012931108475, -0.029483631253242493, 0.08877404034137726, -0.020958933979272842, 0.02808467298746109, -0.005524699576199055, 0.018598005175590515, 0.006332322955131531, 0.015172404237091541, -0.049984920769929886, -0.03389492258429527, 0.011706696823239326, 0.0167509987950325, 0.014393586665391922, 0.00507336063310504, -0.03482381999492645, 0.056064900010824203, -0.046648502349853516, -0.004050315823405981, 0.0006612389115616679, -0.004199058748781681, -0.009128149598836899, -0.0036255603190511465, 0.04011997953057289, -0.038333710283041, 0.002753665205091238, -0.030640827491879463, 0.043527115136384964, 0.042630426585674286, 0.011978310532867908, -0.04477597028017044, -0.02942807599902153, -0.03977198153734207, -0.06535559892654419, 0.044424161314964294, -0.0225431676954031, -0.03565433993935585, -0.04151170700788498, -0.007770313415676355, 0.03664126992225647, -0.016656864434480667, 0.050542768090963364, 0.03777589276432991, -0.02163628116250038, 0.009786336682736874, -0.026985954493284225, 0.025669198483228683, 0.024038318544626236, -0.01299827080219984, -0.009855945594608784, -0.0007777586579322815, -0.010372646152973175, 0.019246259704232216, -0.013720325194299221, -0.046659428626298904, -0.039756983518600464, 0.010169505141675472, 0.08062371611595154, -0.023236751556396484, 0.05531284213066101, 0.009566214866936207, -0.03387895226478577, -0.0431118868291378, 0.037175167351961136, 0.012675771489739418, 0.03202155977487564, 0.04327814653515816, -0.0031017689034342766, -0.01955215260386467, 0.00888342410326004, 0.01355821918696165, 0.010977293364703655, -0.023213332518935204, 0.07308667153120041, -0.006821122020483017, -0.049687501043081284, 0.02066819742321968, 0.08278334885835648, -0.051711950451135635, -0.056300997734069824, -0.01346998568624258, -0.0060693006962537766, 0.015982095152139664, -0.05667329579591751, 0.018658123910427094, -0.006939074024558067, -0.0193434227257967, -0.017170222476124763, 0.03514120355248451, -0.004247244447469711, 0.0038832954596728086, 0.009984497912228107, 0.0465986505150795, -0.0473824217915535, 0.027407318353652954, 0.03457967936992645, -0.012099156156182289, -0.03968396037817001, -0.034180350601673126, -0.008588896133005619, -0.01576862297952175, -0.0008698257151991129, 0.06274363398551941, -0.023783093318343163, 0.031150927767157555, 0.03952651098370552, 0.013125632889568806, 0.02529650181531906, 0.014053205028176308, -0.026154380291700363, 0.015092807821929455, -0.016629289835691452, -0.061453789472579956, -0.04162880405783653, 0.021288814023137093, 0.011813566088676453, 0.025940587744116783, -0.06877432018518448, -0.0007897012401372194, 0.05738573148846626, 0.006994206458330154, -0.005575548391789198, -0.05705131217837334, -0.06589297950267792, -0.04050312936306, -0.04815882071852684, -0.03784211724996567, -0.02861500158905983, -0.021532025188207626, -0.00835401751101017, 0.01319202035665512, -0.04224206134676933, -0.012662879191339016, 0.026355234906077385, -0.00587870366871357, 0.025143170729279518, -0.013686742633581161, 0.0293857641518116, -0.03876972943544388, -0.036372680217027664, -0.03765338286757469, -0.009465791285037994, -0.022702960297465324, 0.005610204767435789, -0.03875809535384178, 0.010689652524888515, 0.013199257664382458, 0.02770867571234703, 0.024959230795502663, 0.0018504008185118437, -0.04415002465248108, -0.014045563526451588, -0.03693458065390587, 0.02056307904422283, -0.015151256695389748, 0.024242650717496872, 0.02396143414080143, -0.054244399070739746, 0.027262583374977112, 0.006685360800474882, -0.05578562989830971, 0.002311134012416005, 0.01182215753942728, 0.033856164664030075, 0.0042368266731500626, -0.04171125963330269, -0.018259551376104355, 0.021653207018971443, -0.06040285900235176, 0.008705048821866512, 0.0026157612446695566, 0.032060302793979645, 0.01716223731637001, -0.02455548569560051, -0.014738406985998154, 0.05280895531177521, -0.010105667635798454, 0.029544364660978317, 0.009904610924422741, 0.019578078761696815, -0.015496333129703999, -0.010763474740087986, 0.02572813257575035, 0.013797210529446602, 0.03717979043722153, -0.041381195187568665, 0.014221708290278912, -0.004223497584462166, -0.019554782658815384, 0.03644885867834091, -0.013237088918685913, -0.019100302830338478, -0.04287521541118622, -0.008520003408193588, -0.01378621719777584, 0.03532588854432106, -0.00013542515807785094, 0.004889405332505703, 0.012676003389060497, -0.03987434506416321, -0.038036853075027466, 0.025875989347696304, -0.04943693056702614, -0.030708758160471916, 0.035941340029239655, -0.030463675037026405, -0.020813163369894028, -0.013509486801922321, -0.05663277953863144, 0.012158305384218693, -0.007346348371356726, -0.006089443806558847, -0.026222476735711098, 0.04960080608725548, -0.011869359761476517, 0.03015745058655739, 0.016832394525408745, 0.00476678553968668, 0.014807705767452717, 0.021317381411790848, -0.03967369720339775, -0.03628202900290489, -0.006226954981684685, 0.0044962516985833645, -0.005711006000638008, -0.015854910016059875, -0.0284564308822155, -0.00913021806627512, 0.01794111169874668, 0.018055643886327744, 0.02985997125506401, 0.03370746225118637, -0.012963886372745037, 0.05376112088561058, 0.009436532855033875, 0.012310606427490711, -0.01203776616603136, 0.009866367094218731, 0.0303328987210989, -0.019323352724313736, -0.051309846341609955, 0.03967367112636566, 0.04303693398833275, -0.02387312240898609, 0.044012222439050674, -0.0019962468650192022, 0.03819320723414421, -0.0070176501758396626, 0.03385885804891586, -0.013351177796721458, 0.018203318119049072, 0.04121021553874016, 0.03734062984585762, 0.009248106740415096, 0.03471065312623978, 0.045028068125247955, -0.007225036155432463, 0.004403506871312857, -0.0017821394139900804, 0.03476715460419655, -0.04062388092279434, -0.00862580444663763, -0.052058808505535126, 0.006148568820208311, 0.029589423909783363, -0.013056941330432892, 0.0025305666495114565, -0.01856578141450882, -0.0005135011742822826, -0.01272069476544857, -0.02133568376302719, 0.045207954943180084, -0.048173688352108, 0.013985026627779007, -0.0038217552937567234, -0.014822516590356827, 0.007977775298058987, 0.030707843601703644, 0.017232606187462807, 0.0028591034933924675, 0.051948439329862595, 0.03349936008453369, -0.027770396322011948, 0.04025014862418175, 0.038935475051403046, 0.004900588653981686, -0.04965522885322571, 0.026772888377308846, 0.0201522558927536, 0.012861889787018299, -0.046821869909763336, -0.024485066533088684, -0.03295884281396866, 0.04858328402042389, -0.059798456728458405, -0.019978223368525505, 0.04640074819326401, -0.03163280338048935, -0.020614957436919212, -0.058015190064907074, 0.02252032421529293, -0.051695648580789566, -0.025525521486997604, 0.04427485540509224, -0.007477448787540197, -0.023619456216692924, 0.044638074934482574, 0.0097903897985816, 0.0681980773806572, 0.031573232263326645, 0.033767715096473694, 0.005044256802648306, 0.02588513121008873, 0.06845816224813461, -0.02027144283056259, -0.016008922830224037, 0.02097754366695881, 0.004827989265322685, -0.024220114573836327, 0.011613388545811176, -0.03227214142680168, 0.02338813804090023, -0.0000857270642882213, -0.025074202567338943, -0.001343753538094461, 0.06291943043470383, -0.007482771296054125, -0.028321480378508568, -0.006126380059868097, 0.053582098335027695, -0.013467212207615376, 0.010684489272534847, -0.011724560521543026, 0.04323586821556091, 0.00037834953400306404, -0.025313708931207657, -0.016582470387220383, -0.007549298461526632, 0.015721961855888367, -0.051623739302158356, 0.04415665194392204, 0.008796224370598793, 0.00478186784312129, -0.042267389595508575, -0.041568439453840256, -0.032026506960392, -0.013028963468968868, -0.019433271139860153, -0.05968313291668892, 0.0287930928170681, 0.03065326251089573, 0.03807655721902847, -0.0007751308148726821, -0.022069204598665237, -0.008184230886399746, 0.05187403783202171, 0.0587109737098217, 0.0060671111568808556, 0.07022646814584732, 0.0364483967423439, -0.023701434955000877, 0.009426259435713291, 0.007181564811617136, 0.018083378672599792, -0.015076187439262867, -0.006798441056162119, -0.02932698465883732, 0.011630740016698837, -0.011927718296647072, -0.06960824131965637, 0.017192453145980835, 0.022444140166044235, 0.013793740421533585, -0.03110847808420658, -0.0251594427973032, -0.011728594079613686, -0.027532462030649185, 0.003763959277421236, -0.04572945088148117, 0.007851728238165379, 0.03136415034532547, 0.01412122417241335, 0.01685609668493271, -0.06060298532247543, 0.15670813620090485, 0.08070379495620728, 0.020024830475449562, -0.013065963983535767, 0.007366596255451441, 0.03166838735342026, 0.01918548159301281, -0.03216227516531944, 0.021291613578796387, -0.02517605759203434, 0.027554986998438835, 0.015765635296702385, -0.0038806479424238205, 0.008943495340645313, 0.01195372361689806, 0.05571383610367775, -0.03761325031518936, -0.011582329869270325, 0.003910762723535299, -0.03505924716591835, -0.05215604603290558, 0.030293315649032593, -0.004643912427127361, -0.005071814637631178, 0.008469196036458015, 0.021379994228482246, 0.017546672374010086, -0.03044171817600727, -0.001062319497577846, -0.015123027376830578, 0.009991906583309174, -0.02441272884607315, 0.033125147223472595, -0.03329678997397423, -0.031143134459853172, 0.0349590964615345, 0.004703186452388763, -0.012690999545156956, 0.015473933890461922, 0.021406492218375206, -0.01668206788599491, 0.005182612221688032, 0.03752238303422928, -0.022539466619491577, -0.004093363415449858, 0.00802380871027708, -0.04449135437607765, 0.019782090559601784, 0.013351177796721458, -0.04312560334801674, 0.04984346777200699, -0.036780841648578644, 0.035507433116436005, -0.01562623865902424, -0.03893279656767845, -0.0009542614570818841, 0.01602483168244362, -0.009197251871228218, -0.02901577018201351, -0.00018096384883392602, 0.03803896903991699, 0.007229524198919535, -0.02737092226743698, -0.0020577709656208754, -0.023133372887969017, -0.004092330578714609, 0.015735436230897903, 0.010720127262175083, 0.003526685293763876, -0.004626971669495106, 0.014478972181677818, -0.01499882061034441, -0.03251396119594574, -0.01536304410547018, 0.025087738409638405, 0.03270955756306648, -0.014545046724379063, 0.037906765937805176, -0.0007935068570077419, -0.02899884060025215, 0.0006091292598284781, -0.023494772613048553, -0.013639762997627258, -0.013930540531873703, 0.03923651576042175, 0.047717105597257614, -0.02744687907397747, -0.039227668195962906, -0.021006496623158455, 0.04750628024339676, 0.07354913651943207, 0.014344784431159496, -0.015650814399123192, 0.02011287212371826, -0.01162770763039589 ]
Good analysis depends on good data, but it's up to the look and design of your dashboard to properly deliver insights to your audience. Is the visual design of your work as good as the underlying data, or does it distract from your message? Ask the experts at Microsoft and find out! We're holding a Dashboard Makeover to review, revise, and improve entries from our Community. Attend the live webinar on May 12, 2016 to see how our Power BI pros turn dashboards from standard to shiny, sharing insights more efficiently and making a bigger impact on your audience. We want your dashboard to instantly impress its audience, so the Power BI team is offering the chance for a Dashboard Makeover. Submit your entry by May 5, 2016, and we'll select one or more to be reviewed and remodeled during a live webinar with Microsoft Principal Program Manager and Power BI dashboard expert Marc Reguera. The selections will be chosen by Marc himself to demonstrate potential in the areas of readability, formatting, visual usage, and functionality. The owner of the selected entry(s) will win a Power BI Prize Pack, as well as a newly renovated dashboard. If you want to learn more about dashboard design, with or without a submission of your own, register now for the Dashboard Makeover webinar! You'll watch Marc's dashboard critique in real-time and pick up some useful tips on creating a professionally designed report. The webinar is free, and attendees will have a chance to win one of our new Power BI t-shirts. For all of the entry rules and webinar details, visit the Dashboard Makeover forum on our Community.
[ -0.01695987395942211, -0.010709360241889954, -0.020659953355789185, 0.003056044690310955, -0.003721413901075721, -0.022924620658159256, 0.005906652193516493, -0.0005940328701399267, 0.023870181292295456, 0.01655232161283493, 0.010004151612520218, 0.02792801894247532, -0.0007873835857026279, -0.014044336974620819, -0.012630736455321312, -0.010442274622619152, -0.0010005478980019689, -0.011126075871288776, -0.026415513828396797, 0.007840961217880249, -0.020635198801755905, 0.01093306764960289, -0.06197693198919296, -0.04394533112645149, -0.05437982454895973, 0.03232574090361595, -0.008995339274406433, -0.018416833132505417, 0.0624057911336422, 0.0658576488494873, -0.04360075294971466, -0.04452253878116608, 0.010454876348376274, -0.04930414631962776, -0.031907614320516586, -0.006018510088324547, 0.01186622865498066, -0.028141606599092484, -0.057839710265398026, -0.05269520729780197, -0.0011898491065949202, -0.011533938348293304, 0.0036504545714706182, -0.0494094081223011, -0.03605763986706734, 0.005908046383410692, -0.025454169139266014, -0.04056796059012413, -0.01134722214192152, -0.03678365424275398, -0.0007645676378160715, -0.0016185595886781812, -0.019125187769532204, -0.009939872659742832, 0.0017114641377702355, 0.042510099709033966, 0.00284082000143826, -0.006547868717461824, -0.029207801446318626, 0.04190627112984657, 0.026468032971024513, 0.005734669044613838, 0.026376908645033836, -0.05647994950413704, 0.033590346574783325, -0.006540235131978989, -0.009412646293640137, -0.03341415524482727, 0.007342664059251547, -0.0008161303121596575, -0.03935001790523529, 0.0020468346774578094, -0.016713596880435944, -0.007569711655378342, 0.007648077327758074, -0.0102278096601367, 0.01694677770137787, 0.0013917158357799053, -0.003990105353295803, 0.013718973845243454, 0.01615183986723423, 0.03833281993865967, -0.0030426967423409224, 0.021606139838695526, -0.02389989048242569, -0.033401161432266235, 0.024855371564626694, 0.015966184437274933, 0.022871265187859535, 0.020813558250665665, 0.029078049585223198, 0.028745494782924652, 0.007114342879503965, -0.01647421531379223, 0.0412839874625206, 0.038060907274484634, -0.02862977236509323, 0.028973637148737907, 0.003976873122155666, 0.02733139880001545, 0.039605122059583664, 0.033943142741918564, 0.012806423008441925, 0.04209166765213013, -0.052846286445856094, -0.001585847232490778, 0.03441153094172478, -0.0287760142236948, 0.012109829112887383, -0.04897269979119301, 0.021558644250035286, -0.044540420174598694, 0.028963416814804077, -0.005912613123655319, -0.00805541593581438, 0.02565719000995159, 0.0015435406239703298, 0.020591383799910545, -0.0058790394105017185, 0.01155424676835537, 0.004994513001292944, 0.0023745971266180277, 0.017170973122119904, -0.036461081355810165, -0.0029304297640919685, -0.029976677149534225, -0.016075080260634422, 0.04553190991282463, -0.03255554288625717, -0.014263919554650784, -0.024896947667002678, -0.023920699954032898, -0.018095675855875015, 0.027393557131290436, 0.001833964022807777, 0.03482834994792938, -0.0007945079123601317, 0.03641892969608307, 0.023728812113404274, -0.048087917268276215, 0.028658730909228325, 0.029955198988318443, 0.019387876614928246, 0.08930294960737228, 0.004914651624858379, 0.03942034766077995, -0.00011089257895946503, -0.011264662258327007, -0.02746765688061714, 0.03676993027329445, -0.01495367381721735, 0.05319177731871605, 0.01099728886038065, -0.0038316454738378525, -0.01012029405683279, -0.018839096650481224, 0.00681904936209321, -0.013168897479772568, 0.010437279008328915, -0.0015860788989812136, -0.04044634848833084, 0.04042341560125351, -0.015607431530952454, 0.06002749130129814, -0.000928403518628329, 0.062341559678316116, -0.042078904807567596, -0.03435526788234711, -0.019766638055443764, -0.024798683822155, 0.01771339774131775, -0.018824148923158646, -0.008542877621948719, -0.00912600476294756, 0.01934068091213703, 0.04002860188484192, 0.01814371533691883, -0.009066501632332802, 0.02764084003865719, 0.04303089901804924, -0.034035176038742065, -0.015614421106874943, 0.03205607831478119, 0.07581427693367004, 0.0020107030868530273, -0.022216781973838806, 0.013643890619277954, -0.02773411199450493, -0.034753940999507904, -0.03989512473344803, 0.006716953590512276, 0.0345502570271492, 0.000513338134624064, 0.0223081074655056, 0.023450490087270737, -0.014036392793059349, -0.0029127392917871475, 0.03256901353597641, 0.013433105312287807, -0.05553464591503143, -0.015351660549640656, 0.024910038337111473, -0.02688058651983738, 0.03123524785041809, 0.002243381692096591, -0.011440854519605637, -0.023345619440078735, 0.040680915117263794, -0.06310185045003891, -0.0038371540140360594, 0.037566184997558594, 0.013346763327717781, -0.01103896088898182, -0.016818292438983917, 0.00764637952670455, -0.011059727519750595, 0.0021101373713463545, 0.032581981271505356, 0.015228756703436375, -0.016058536246418953, -0.004680566024035215, 0.007570549380034208, 0.06492338329553604, 0.03152057155966759, -0.015321564860641956, 0.013161883689463139, -0.00004400845864438452, 0.06929336488246918, -0.035359304398298264, 0.011951508931815624, -0.011037234216928482, 0.062296681106090546, 0.031527675688266754, 0.046498704701662064, 0.026163388043642044, 0.015638893470168114, 0.059081289917230606, 0.01103223580867052, -0.001711130142211914, -0.0013555509503930807, 0.018734805285930634, -0.013627526350319386, 0.04278159141540527, 0.051682405173778534, 0.006877063307911158, 0.023339109495282173, 0.012638850137591362, 0.015026538632810116, 0.013998199254274368, 0.0366058349609375, -0.013376153074204922, 0.031184647232294083, 0.02895979769527912, 0.05250822380185127, -0.044123243540525436, -0.010924034751951694, 0.057217251509428024, 0.06731563806533813, -0.0038093719631433487, -0.005089517682790756, -0.012824674136936665, 0.038072619587183, 0.012633315287530422, 0.005806920118629932, 0.004549174569547176, 0.02839711122214794, 0.018393734470009804, 0.019930433481931686, -0.023634877055883408, -0.06135645881295204, -0.04616395756602287, -0.07302376627922058, -0.057679682970047, -0.040264613926410675, -0.0501873604953289, 0.017159326002001762, -0.021759675815701485, -0.060216061770915985, 0.03366123139858246, -0.021203726530075073, -0.03182204067707062, -0.02646998129785061, -0.003554395865648985, 0.06790495663881302, 0.03249126672744751, 0.037560418248176575, -0.02548869140446186, 0.029696349054574966, 0.00024505812325514853, 0.05881824716925621, -0.02890116721391678, -0.006122037302702665, 0.010021003894507885, -0.011676663532853127, 0.027761070057749748, -0.020661862567067146, -0.012334657832980156, 0.03155688941478729, -0.03950498253107071, -0.04826449975371361, -0.013019965030252934, 0.024126602336764336, -0.011513282544910908, -0.015261026099324226, -0.05114920064806938, 0.042482998222112656, 0.01986246556043625, -0.018436508253216743, 0.03908194974064827, 0.023868432268500328, -0.03549685329198837, 0.06076670438051224, 0.014629182405769825, -0.01539658010005951, -0.05304418131709099, 0.033546604216098785, 0.04822149872779846, 0.013514125719666481, -0.008911670185625553, 0.006470152176916599, -0.04183642193675041, -0.0016387462383136153, 0.024200696498155594, -0.01964513771235943, -0.044514384120702744, 0.04873783886432648, 0.007727245334535837, -0.08184225112199783, 0.022976037114858627, -0.048429686576128006, -0.047925494611263275, -0.051370371133089066, -0.03463288024067879, 0.014819841831922531, 0.04892873764038086, 0.01868523843586445, 0.02322150208055973, 0.004465524572879076, 0.020750578492879868, 0.03093469701707363, 0.048914484679698944, -0.037390172481536865, 0.03280601277947426, 0.05971020832657814, 0.005568292457610369, 0.01045488752424717, 0.01748238131403923, -0.024189211428165436, -0.028123486787080765, 0.0029020083602517843, -0.002395280869677663, 0.02277507819235325, 0.0366629995405674, 0.009747833013534546, 0.049942538142204285, 0.04631656035780907, -0.08593182265758514, -0.0047930083237588406, 0.017330650240182877, 0.006520816124975681, 0.006379066035151482, 0.03197482228279114, 0.007615402340888977, -0.008773509413003922, -0.04044169932603836, -0.04737316444516182, 0.015121095813810825, 0.02686234749853611, 0.05777338147163391, -0.04771559312939644, 0.061459798365831375, -0.006112431176006794, -0.0024700891226530075, 0.058741457760334015, -0.038774482905864716, 0.021076122298836708, 0.049851905554533005, -0.006275710184127092, 0.03575143590569496, -0.06357080489397049, 0.012092330493032932, -0.0334639772772789, 0.01614406146109104, 0.015474708750844002, -0.01714719459414482, 0.03553622588515282, -0.010666944086551666, -0.0036997052375227213, 0.001989882905036211, -0.018307888880372047, -0.0009967982769012451, -0.009313803166151047, 0.000323908549034968, 0.0046609980054199696, -0.06479820609092712, -0.053141068667173386, 0.02131401002407074, 0.028218431398272514, 0.06310730427503586, -0.020887820050120354, 0.050975531339645386, 0.005681900307536125, 0.028530895709991455, 0.04371391236782074, -0.0048462217673659325, 0.01957259699702263, -0.03358792886137962, 0.024801716208457947, 0.005426999181509018, -0.008687055669724941, -0.012965075671672821, -0.006876687053591013, -0.0029129593167454004, 0.026025287806987762, 0.002276065293699503, -0.03462165594100952, -0.04944881424307823, 0.01707552559673786, -0.02575056254863739, 0.04746416583657265, -0.03350665047764778, -0.00867141131311655, -0.03788622096180916, 0.0036623773630708456, 0.03295021876692772, -0.06100623309612274, 0.004215638153254986, -0.0027692492585629225, 0.06344830244779587, 0.07535582035779953, -0.03760208562016487, -0.05593011900782585, -0.03437527269124985, -0.05230490490794182, -0.05057740584015846, 0.04060060903429985, 0.06315754354000092, -0.025993501767516136, 0.014821103774011135, -0.04958413913846016, -0.003695954568684101, 0.02508155070245266, -0.016706358641386032, -0.01629791595041752, 0.0013329054927453399, 0.02245815098285675, -0.003847650717943907, 0.0193766038864851, 0.02095154859125614, 0.007543401792645454, 0.01886678859591484, -0.037388041615486145, 0.02335374243557453, -0.024096468463540077, 0.01987377554178238, 0.0009336727089248598, 0.030041877180337906, 0.025469955056905746, 0.031893614679574966, -0.01420505065470934, 0.01251156348735094, -0.004276819992810488, 0.016497746109962463, -0.04712263122200966, -0.03633636608719826, 0.0546712726354599, 0.007926330901682377, -0.006083207670599222, 0.03465461730957031, 0.0290991123765707, -0.047167472541332245, 0.01721952296793461, -0.0008591848891228437, -0.03554145619273186, 0.034391339868307114, -0.029312076047062874, 0.025853756815195084, -0.036963339895009995, -0.04003290832042694, -0.00113633181899786, -0.003203553380444646, 0.025525139644742012, -0.021030081436038017, -0.013078858144581318, -0.05072798952460289, -0.03541747108101845, -0.02241075597703457, 0.022931184619665146, -0.04480374976992607, 0.03903108090162277, -0.018241841346025467, -0.032966818660497665, -0.0010020463960245252, -0.04642675817012787, -0.0012072378303855658, 0.0037638943176716566, -0.01413313951343298, 0.022118601948022842, -0.014124883338809013, -0.021968459710478783, 0.011804100126028061, -0.027954354882240295, -0.03531458228826523, 0.002345709828659892, 0.016277791932225227, -0.03643903508782387, -0.05773648992180824, -0.0001887166581582278, -0.029423093423247337, -0.009227704256772995, -0.015631766989827156, 0.014130248688161373, -0.03598204627633095, 0.04566934332251549, 0.03661280870437622, 0.029338063672184944, 0.001976775238290429, -0.017675962299108505, -0.03031107597053051, 0.04787405952811241, 0.026738783344626427, -0.051097750663757324, -0.048703331500291824, 0.05045817047357559, -0.00847563985735178, 0.05995691567659378, -0.030964331701397896, -0.021696286275982857, -0.012392585165798664, -0.026108261197805405, 0.0008287139353342354, -0.012675956822931767, -0.008081783540546894, -0.04194163903594017, -0.05832808464765549, -0.0006439095595851541, 0.026795679703354836, 0.02667476050555706, -0.020481863990426064, 0.008084278553724289, -0.04046451300382614, -0.010660889558494091, -0.0465037077665329, -0.025619197636842728, 0.004606251604855061, -0.016703128814697266, 0.024609534069895744, 0.05924130231142044, 0.018440227955579758, 0.003142871195450425, 0.005986384116113186, 0.011493007652461529, 0.02967771142721176, -0.011132024228572845, -0.02780216932296753, -0.039129357784986496, 0.007725565228611231, -0.014877389185130596, 0.0018826921004801989, 0.007853507995605469, -0.03791620582342148, 0.04504890367388725, -0.021120557561516762, 0.008713563904166222, -0.02381589449942112, -0.00812582764774561, -0.03527238965034485, -0.006653700489550829, 0.053363434970378876, -0.040782373398542404, 0.0018870525527745485, -0.03025146573781967, 0.03614966943860054, 0.03156252205371857, -0.021137867122888565, -0.007717219181358814, -0.04772104322910309, -0.05601729452610016, -0.037098780274391174, 0.003093590959906578, -0.029080109670758247, 0.006753031630069017, -0.015447201207280159, -0.00403792317956686, 0.026180308312177658, -0.01467561349272728, 0.06467381864786148, 0.047741882503032684, 0.033784572035074234, -0.007163457106798887, -0.024811381474137306, 0.009259733371436596, 0.028485683724284172, 0.009157570078969002, 0.009772839955985546, -0.030456045642495155, -0.0456906296312809, -0.029609937220811844, -0.06686998903751373, -0.035142622888088226, -0.04196836054325104, -0.021018655970692635, 0.08302027732133865, -0.04575050622224808, 0.04414021968841553, 0.01708616502583027, -0.056851938366889954, -0.04235149174928665, 0.05395634472370148, -0.013863782398402691, 0.024202657863497734, 0.040946803987026215, 0.003592461347579956, -0.0017434110632166266, -0.001510083326138556, 0.004761224612593651, 0.003843532409518957, -0.04754600301384926, 0.06326817721128464, 0.030449697747826576, -0.012900409288704395, 0.035224393010139465, 0.07332149147987366, -0.06321463733911514, -0.05482631176710129, -0.008154257200658321, 0.020530467852950096, 0.024476082995533943, -0.039915960282087326, -0.001598208211362362, -0.015195855870842934, -0.034266192466020584, 0.0035897998604923487, 0.02117096818983555, -0.0025361792650073767, 0.02567966654896736, 0.005364781245589256, 0.02655881457030773, -0.02986983209848404, 0.01826714351773262, 0.02296506240963936, -0.014233930967748165, 0.007897830568253994, -0.03980163112282753, -0.013061564415693283, 0.011515278369188309, -0.009759719483554363, 0.06280605494976044, -0.013439585454761982, -0.004357695113867521, 0.02224081940948963, -0.005850621033459902, 0.023471789434552193, -0.015368285588920116, -0.021054083481431007, 0.03872326761484146, -0.031818170100450516, -0.049091778695583344, -0.0501767173409462, 0.0396137572824955, 0.0050351968966424465, 0.04050016403198242, -0.03494930639863014, 0.03685403987765312, 0.04803043231368065, 0.013437390327453613, 0.0017718866001814604, -0.034303802996873856, -0.019114360213279724, -0.048272062093019485, -0.044491320848464966, -0.008366085588932037, -0.03330143541097641, -0.0029145930893719196, 0.014955881051719189, 0.015341733582317829, -0.042705096304416656, -0.022812029346823692, 0.025361932814121246, -0.01985137164592743, -0.015650149434804916, -0.01663205586373806, 0.022479427978396416, -0.030376920476555824, -0.04526650905609131, -0.054903943091630936, -0.005374404601752758, -0.042483504861593246, 0.04751211032271385, -0.028948083519935608, -0.004479238297790289, 0.023289700970053673, 0.025055380538105965, 0.02787758968770504, 0.03911992907524109, -0.05991019308567047, -0.047600794583559036, -0.016485391184687614, 0.02458721026778221, -0.02863391861319542, 0.029832275584340096, 0.03670847415924072, -0.03387126326560974, 0.044816117733716965, 0.010255825705826283, -0.005227795336395502, -0.030213888734579086, 0.005127692129462957, 0.019042646512389183, -0.006296779029071331, -0.04428786039352417, -0.03784098103642464, -0.043468326330184937, -0.02709781564772129, 0.0360984168946743, -0.0011718764435499907, 0.0036690817214548588, 0.016574451699852943, -0.03833599388599396, -0.002356352051720023, 0.024697082117199898, -0.006626778282225132, 0.04313376173377037, 0.0003686279815156013, 0.01793052814900875, 0.03717637062072754, -0.03024992160499096, 0.02126435749232769, 0.015499645844101906, 0.019869377836585045, -0.028783077374100685, 0.02782123163342476, 0.02612423151731491, -0.017220931127667427, 0.018965845927596092, -0.020258942618966103, -0.03209725767374039, -0.0433112308382988, -0.001289800158701837, 0.016330959275364876, 0.0719132050871849, 0.004292541649192572, 0.02981935255229473, 0.043290331959724426, -0.05257093906402588, -0.029439210891723633, 0.01955791562795639, -0.06111699342727661, -0.005246936343610287, 0.02873346209526062, -0.04244496673345566, 0.015577537007629871, -0.017597192898392677, -0.041184790432453156, -0.014170761220157146, -0.016689391806721687, -0.011544176377356052, -0.032124850898981094, 0.025520632043480873, -0.013603408820927143, 0.03583654388785362, -0.01812499575316906, -0.018726114183664322, 0.013572313822805882, 0.03821132704615593, -0.027611246332526207, -0.03818909451365471, 0.008893579244613647, 0.011936003342270851, 0.007096089888364077, -0.024694321677088737, -0.015194435603916645, 0.0077810329385101795, -0.01562436856329441, 0.02238142117857933, 0.02069583535194397, 0.0174332857131958, 0.0016220217803493142, 0.010381211526691914, -0.004913932643830776, 0.015095666982233524, -0.04167349636554718, 0.0068801697343587875, 0.0018084259936586022, -0.040206100791692734, -0.019239651039242744, 0.0333288349211216, 0.050437524914741516, -0.011894476599991322, 0.037007708102464676, 0.007549688220024109, 0.030517132952809334, -0.01970461942255497, -0.02114757150411606, 0.021304456517100334, 0.06600990891456604, 0.06428984552621841, 0.025006160140037537, -0.012594821862876415, 0.03846832364797592, 0.06117076054215431, 0.03519745543599129, 0.017469290643930435, 0.03846697136759758, 0.00967471580952406, -0.00072525191353634, 0.008859308436512947, -0.0182602871209383, 0.008537998422980309, -0.005075652152299881, 0.03121366910636425, -0.000893660238943994, -0.014517515897750854, -0.005928592756390572, -0.00022300155251286924, -0.04728439077734947, 0.0641210749745369, -0.010115589015185833, -0.024521565064787865, -0.018571948632597923, -0.015932172536849976, -0.009653933346271515, 0.052955981343984604, 0.029202494770288467, 0.033774618059396744, 0.029404856264591217, 0.018267562612891197, 0.008138385601341724, 0.05071486905217171, 0.030025240033864975, 0.012289502657949924, -0.03215990588068962, 0.003961005713790655, 0.0031442400068044662, -0.0013350266963243484, -0.04159155488014221, 0.0253449659794569, -0.014813569374382496, 0.05116136744618416, 0.0041071572341024876, 0.011062218807637691, 0.03520788252353668, -0.0583549365401268, -0.025361699983477592, -0.07866007089614868, 0.02149812877178192, -0.030549054965376854, -0.029691234230995178, 0.030722729861736298, -0.004284670576453209, -0.028589390218257904, 0.037358589470386505, -0.010730752721428871, 0.005776958540081978, -0.01037005614489317, 0.0752268135547638, 0.0066824909299612045, 0.03352977707982063, 0.05863507464528084, -0.025365106761455536, -0.035900622606277466, 0.025039726868271828, 0.01226425264030695, -0.021790139377117157, -0.029055200517177582, -0.03908161446452141, -0.022432763129472733, 0.015318337827920914, -0.01968090422451496, 0.005734957754611969, 0.028643803671002388, -0.005797488149255514, -0.04064228758215904, 0.01959287002682686, 0.02483208291232586, -0.03653847426176071, -0.038521792739629745, 0.003948364872485399, -0.010207384824752808, 0.005697641056030989, -0.010598620399832726, -0.040212616324424744, -0.0275525264441967, -0.008842648938298225, -0.026479482650756836, 0.016672110185027122, 0.008835873566567898, -0.032107822597026825, -0.049370672553777695, -0.04200304299592972, -0.031214101240038872, -0.009710214100778103, -0.04444907605648041, -0.05031363666057587, 0.024896033108234406, 0.044719260185956955, 0.05004629120230675, -0.008138824254274368, -0.021371964365243912, -0.004545301664620638, 0.023849088698625565, 0.08451281487941742, 0.006230000406503677, 0.05576111376285553, 0.03610844910144806, -0.003764964872971177, 0.02660376951098442, -0.035691116005182266, -0.0012014618841931224, -0.014064058661460876, -0.014471422880887985, -0.03202842175960541, 0.026191629469394684, -0.022461505606770515, -0.0755055695772171, -0.023698659613728523, 0.0211033932864666, 0.00020009689615108073, -0.020282113924622536, -0.05954308807849884, 0.0104877520352602, -0.03919883817434311, -0.017061810940504074, -0.02826101705431938, 0.037353161722421646, 0.0026881415396928787, 0.012199778109788895, -0.01845468208193779, -0.06178285554051399, 0.1357225626707077, 0.024720201268792152, 0.037634577602148056, 0.011612399481236935, 0.029817117378115654, 0.056072235107421875, 0.02616403065621853, -0.017546387389302254, 0.009652910754084587, -0.03612840175628662, 0.017908195033669472, 0.023136500269174576, 0.016259804368019104, 0.0035310753155499697, 0.0365830734372139, 0.06019807606935501, -0.05412691831588745, 0.008255689404904842, 0.04491062089800835, -0.06274636089801788, -0.06709212809801102, 0.04493512213230133, -0.0035829017870128155, 0.020762696862220764, 0.009905217215418816, 0.0062337578274309635, 0.03174721822142601, -0.048278287053108215, -0.016108695417642593, -0.01789926551282406, 0.013798058032989502, -0.018431399017572403, 0.015674423426389694, -0.01979372650384903, -0.04279410094022751, 0.044655680656433105, 0.006759644486010075, -0.05176009610295296, -0.00902610830962658, -0.0012427010806277394, 0.006386591121554375, -0.01025578286498785, 0.05138793960213661, -0.02456422708928585, 0.006173225585371256, 0.02976078726351261, -0.019612202420830727, -0.0034453696571290493, -0.00704684853553772, -0.023989638313651085, 0.04491398483514786, -0.03432878479361534, 0.04321780055761337, 0.0010834102286025882, -0.04601055011153221, -0.001402748515829444, -0.0037964333314448595, -0.032216474413871765, -0.010469723492860794, 0.019345665350556374, 0.03587925434112549, -0.008011450059711933, -0.008088633418083191, -0.031060075387358665, -0.046068888157606125, -0.007449389901012182, 0.04671325534582138, 0.010626018978655338, -0.004066361580044031, -0.0031141641084104776, -0.012119116261601448, 0.013725873082876205, 0.00021479256974998862, -0.031326454132795334, 0.03755177929997444, 0.026998816058039665, -0.02508077584207058, 0.0348452590405941, -0.0017691543325781822, -0.03978963568806648, 0.013350309804081917, -0.03324628248810768, -0.02376311644911766, -0.011653358116745949, 0.01816583052277565, 0.03691147640347481, -0.041636962443590164, -0.03852288797497749, -0.02333696372807026, 0.05884282663464546, 0.024250151589512825, 0.025903115049004555, -0.021383969113230705, -0.004316315054893494, -0.004163688514381647 ]
Acting Programs Home>Our Blog Why Actors Need to Study Theatre History byElliot Quick 07-08-2015 ♥55 It is a constant frustration to me that I will never experience the first performance of Oedipus Rex. I will never know what it feels like to gather in the Theater of Dionysus with my entire city and watch an ancient king sacrifice himself for his people, with the civic structures and rocky landscape of my homeland sprawling out from all sides of the open stage. I will never stand among the groundlings of Shakespeare's Globe, smelling the roasted nuts or feeling a pickpocket slit my purse strings as I hear the words "To be or not to be." I will never gasp in shock at the chorus of crickets that Stanislavsky, to Chekhov's horror, piped into the Moscow Art Theater for the first production of The Seagull. Every time I step into the classroom to teach these great dramatic texts, I am reminded of what insufficient evidence they are of the ephemeral live events they first proposed. Plays are not like other forms of literature. I can pick up my tattered copy of The Great Gatsby, brew up a mug of tea, curl up in my favorite chair, and have something close to the experience that Fitzgerald originally imagined when he wrote the text: an individual encountering words on a page. The work was meant to be read. Aristotle tells us that a great tragedy can achieve its effect without the benefit of public performance or actors, but I am not so sure. In the theater, our tools are space and time. The spoken word is just one way we shape these media. An important tool, no doubt. Perhaps the most enduring. But a performance also shapes space and time with the actors' bodies, with gesture, with costume, and with music. Its contours are affected by the time of day, the arrangement of the theater space, the unique individuals who are gathered in the audience, and its relationship to the space and time outside the theater. A play operates on the full bodies and lives of its audience. It springs into being anew with each performance, and it takes the shape of the culture that creates it. "An actor without insight into the history and context of the art form is limited, an incomplete artist whose work is ultimately diminished." A study of theater history is full of uncertain evidence. Even the things known about something like Greek Tragedy are, at best, an educated guess, cobbled together from fragmentary allusions in history, philosophy, and the visual arts. And the list of things we think we know is dwarfed by what we know we never will—melodies that were never noted down, movement that defied description, countless performances that were never recorded in written form or whose manuscripts have been lost to time. But if I were deterred by the prospect of never-knowing, then I would not be in the theater. For all their uncertainties, the dramatic texts that have survived are great texts, full of vivid clues to these lost moments in space and time. For any serious actor, learning to listen to these clues is a skill just as important as technique and craft—this takes practice, presence, and a vast imagination. An actor without insight into the history and context of the art form is limited, an incomplete artist whose work is ultimately diminished. Without the certainty to know, we are left with the freedom to imagine, and this is where great theater begins. Elliot B. Quick teaches theatre history classes for actors at the Maggie Flanigan studio in New York, NY. Transforming Negative Energy During Auditions Serious Actors Study and Master All Six Aspects of Their Acting Instrument Casting Director Workshops: The Con Exposed New York After LA: Natasha Weiner Creative Resilience and the Pandemic The Maggie Flanigan Studio proudly announces the reopening of the acting studio and in-person Maggie Flanigan Studio Reopens Preeminent Meisner Technique Source – Maggie Flanigan Studio – Set for Grand Fall Relaunch A Safe Place to Train Meisner training provides the professional actor with a tool set that improves the actor's The Meisner acting program at the Maggie Flanigan Studio provides actors with the tools Why Many Actors Struggle with Emotions and Acting Charlie Sandlan is the head of acting at the Maggie Flanigan Studio. Here in 18-monthActing Program Starts Jan 5th *Call to Schedule an Interview Recent Studio Reviews Facebook YouTube Twitter Google Pinterest info@maggieflanigan studio.com 147 W. 25th Street, 147 W. 25th St. 5th Floor New York, NY 10001, Suite 809, NY 10001 The 18 month acting Summer Acting Programs: Elise Tollefsen Interview Why Actors Need to Train Constantly Meisner training at Maggie Congratulations to Susan Pourfar Audition Techniques - Staying Vulnerable Louisa Proske - "This" Play by Melissa James Gibson The Meisner Technique trains Audition Techniques - The Jaded Auditor Vulnerability In Acting Sam Rockwell: Rage and Vulnerability Copyright©Maggie Flanigan Studio 2017-2021 Maggie Flanigan Studio 147 W. 25th St. 5th Floor, New York, NY 10001 (917) 789-1599
[ 0.02522210404276848, -0.017075510695576668, -0.013210266828536987, -0.006634132470935583, -0.010983474552631378, -0.012201985344290733, -0.0004774632107000798, 0.019945509731769562, 0.005122721660882235, 0.018160037696361542, 0.012439379468560219, -0.010845405049622059, 0.05970308929681778, -0.038928426802158356, 0.0007118353387340903, 0.015460753813385963, -0.015422237105667591, -0.02638360485434532, -0.035530950874090195, -0.010277314111590385, -0.022806381806731224, 0.033282142132520676, -0.0604105144739151, -0.015648474916815758, -0.00966735277324915, 0.04190518707036972, 0.02995946630835533, -0.0015895628603175282, 0.051181185990571976, 0.050041813403367996, -0.0037995572201907635, -0.03467688336968422, 0.016933707520365715, -0.02370956912636757, -0.021690208464860916, -0.016237253323197365, 0.009140966460108757, -0.05667969584465027, -0.0056346445344388485, -0.042011819779872894, -0.0069018821232020855, -0.018270602449774742, 0.0445963479578495, -0.06127714738249779, -0.039703380316495895, 0.026038095355033875, -0.0026772888377308846, -0.06471917033195496, 0.009610339067876339, -0.010533135384321213, -0.0024401729460805655, -0.025462722405791283, -0.007032813038676977, 0.0015721103409305215, -0.009272011928260326, 0.004752759821712971, 0.02895839884877205, 0.015892047435045242, -0.008728143759071827, 0.021274281665682793, 0.0249919630587101, -0.00822410173714161, 0.010339036583900452, -0.06646163761615753, 0.021428076550364494, 0.004741073586046696, -0.0033672084100544453, -0.004353323020040989, 0.02002461813390255, 0.019685853272676468, -0.01762520708143711, 0.0002448099257890135, 0.020552562549710274, -0.015572815202176571, 0.01602761074900627, -0.02208837866783142, -0.013299175538122654, 0.002242759335786104, 0.0122142992913723, -0.01004986185580492, 0.01881049945950508, 0.05308593064546585, 0.014327827841043472, 0.0029376016464084387, -0.04628623649477959, -0.017354711890220642, -0.005675388965755701, 0.0037754352670162916, 0.014183527790009975, 0.008620610460639, 0.02627810835838318, 0.046036455780267715, 0.020945627242326736, 0.003632965497672558, 0.022057335823774338, 0.05381019786000252, -0.025670774281024933, 0.02335892990231514, 0.021182823926210403, 0.0032977440860122442, 0.03656456992030144, 0.04177001863718033, -0.041080765426158905, 0.02842755801975727, -0.045293889939785004, -0.023411553353071213, -0.01371726393699646, -0.013743726536631584, -0.010755416937172413, -0.028852760791778564, -0.01532185822725296, -0.018797321245074272, 0.029667356982827187, -0.012938318774104118, -0.01383155770599842, 0.044591862708330154, -0.004397504031658173, 0.04831087961792946, -0.040904827415943146, -0.005581771023571491, 0.03105420432984829, 0.03057999536395073, 0.020002685487270355, -0.029419060796499252, 0.030584996566176414, -0.0116035845130682, -0.026593569666147232, 0.03284559026360512, -0.02512991428375244, -0.007944891229271889, 0.023795710876584053, -0.013254703022539616, -0.005843138322234154, 0.030305324122309685, -0.015040157362818718, 0.028963226824998856, -0.006848485209047794, 0.03104889765381813, 0.013682055287063122, -0.10284963250160217, 0.03727041929960251, 0.008712970651686192, 0.02486804872751236, 0.0887683853507042, 0.013695046305656433, 0.008343921974301338, 0.0075768232345581055, -0.03586342930793762, -0.0263377632945776, 0.04924299195408821, -0.03386402502655983, 0.006050572730600834, -0.028633467853069305, 0.015352817252278328, -0.028957583010196686, 0.003836170770227909, -0.007998652756214142, 0.027269737794995308, 0.014431101270020008, 0.04799972102046013, -0.02074427902698517, -0.020333677530288696, -0.017279045656323433, 0.04539205878973007, 0.021421628072857857, 0.04641714319586754, -0.022304994985461235, -0.026600023731589317, 0.014855680987238884, -0.01903740130364895, 0.01511150412261486, -0.008577890694141388, -0.02749026007950306, 0.0011876296484842896, 0.0052045476622879505, 0.03278973326086998, 0.030837304890155792, -0.0008691843249835074, 0.004743918310850859, 0.03925643116235733, -0.030004022642970085, -0.010863354429602623, -0.003190782852470875, 0.053725242614746094, 0.024243103340268135, -0.017798881977796555, -0.0054960548877716064, -0.024567442014813423, -0.036528829485177994, -0.011052487418055534, 0.00576667720451951, 0.04168197512626648, -0.008914154022932053, 0.07049836218357086, 0.026231415569782257, 0.0061675249598920345, -0.039032917469739914, -0.00525710778310895, 0.0017156435642391443, -0.05690420791506767, -0.01586885005235672, 0.07704434543848038, -0.030416719615459442, 0.02384682558476925, -0.004529778845608234, -0.0026524451095610857, 0.0212718453258276, 0.08139939606189728, -0.07581398636102676, 0.027220958843827248, 0.022359570488333702, 0.007504327222704887, -0.03643956407904625, -0.001541852718219161, 0.022422991693019867, -0.032321445643901825, -0.0312404315918684, 0.051754310727119446, -0.0007558100624009967, 0.00018962658941745758, 0.02887040004134178, 0.01906258799135685, 0.045571159571409225, 0.0355069600045681, 0.0062717958353459835, 0.014707447960972786, 0.01579694077372551, 0.06298112869262695, -0.03306040167808533, 0.01847824826836586, 0.01674690470099449, 0.03716379031538963, 0.020178690552711487, 0.037286411970853806, 0.052777837961912155, 0.017390871420502663, 0.04110776260495186, 0.053655579686164856, -0.0347415953874588, 0.008240130729973316, 0.013989044353365898, 0.02616909146308899, 0.03232990577816963, 0.03968934714794159, -0.03661515191197395, 0.01353151723742485, -0.04523109272122383, 0.00010492952424101532, 0.02093147486448288, 0.019102396443486214, -0.029303360730409622, 0.06061027571558952, 0.042171627283096313, 0.015395326539874077, -0.029995154589414597, 0.004389612935483456, 0.058624107390642166, 0.08494202792644501, -0.016322061419487, -0.043664779514074326, -0.007693960331380367, 0.05602783337235451, -0.03095238097012043, -0.008254399523139, 0.035012777894735336, 0.00597535353153944, 0.02634170837700367, 0.043815214186906815, -0.03977186605334282, -0.05017300695180893, -0.044229935854673386, -0.05300449952483177, -0.05867263674736023, -0.0235288068652153, -0.04952282831072807, -0.022720173001289368, 0.03933110460639, -0.07024770975112915, 0.01817961595952511, -0.03782520070672035, -0.023432951420545578, -0.019269686192274094, -0.03509547561407089, 0.049055688083171844, 0.024190574884414673, 0.006054447963833809, -0.02191421017050743, 0.038333773612976074, -0.017289377748966217, 0.02580176293849945, -0.03955833986401558, -0.035013530403375626, -0.0034380198922008276, -0.00829725805670023, 0.039798397570848465, -0.006326795089989901, -0.01855950430035591, 0.009951869957149029, -0.03007505089044571, -0.07675186544656754, 0.005067659541964531, 0.02426217310130596, 0.023303043097257614, 0.013758244924247265, -0.041388340294361115, 0.03838927298784256, 0.011505762115120888, -0.06553531438112259, 0.037664782255887985, 0.010217488743364811, -0.057454925030469894, 0.058152440935373306, 0.020592493936419487, 0.026016531512141228, -0.048989180475473404, 0.06878591328859329, 0.03663136810064316, -0.0011592719238251448, -0.03853541985154152, -0.03776605427265167, -0.02161744423210621, -0.006440946366637945, 0.016562292352318764, -0.0371621698141098, -0.02882656455039978, 0.041910942643880844, 0.02247931994497776, -0.06235572323203087, 0.023573394864797592, -0.03393987566232681, -0.004627849441021681, -0.024560347199440002, -0.03458794578909874, 0.043427031487226486, 0.05297151580452919, 0.03257884085178375, -0.001055496628396213, -0.02444845624268055, 0.0013437265297397971, 0.03468824177980423, 0.026746010407805443, -0.0293368399143219, 0.009090811014175415, 0.047986481338739395, -0.025639746338129044, 0.025017494335770607, -0.005162564106285572, -0.044305700808763504, -0.006225381512194872, 0.013594157062470913, 0.018272757530212402, 0.008493741974234581, 0.013763831928372383, 0.026070918887853622, 0.015732407569885254, 0.048753321170806885, -0.04479513689875603, 0.02655978873372078, 0.004471148364245892, 0.007626598235219717, 0.03321877121925354, 0.010001293383538723, 0.0327831506729126, -0.010306326672434807, -0.012838470749557018, -0.07878069579601288, 0.021127836778759956, -0.006590479984879494, 0.06889232248067856, -0.03932705521583557, 0.0754784345626831, 0.012644498609006405, -0.036013081669807434, 0.02925240807235241, -0.05637142434716225, 0.00896359235048294, 0.0388205386698246, -0.0024514521937817335, 0.02033168263733387, -0.05908072367310524, -0.0015458111884072423, -0.02726230025291443, -0.011700345203280449, 0.05676376819610596, -0.01519023533910513, 0.0348733589053154, -0.011285761371254921, -0.037054821848869324, -0.009301789104938507, -0.026125265285372734, -0.00808197632431984, -0.007893473841249943, 0.022097943350672722, -0.008642006665468216, -0.0569378025829792, -0.0601559616625309, 0.054995495826005936, 0.03141248598694801, 0.041410546749830246, -0.028935851529240608, 0.03070429153740406, 0.0005191765958443284, 0.019925395026803017, 0.0556814931333065, -0.0021031475625932217, 0.011092163622379303, -0.06489532440900803, 0.03304517641663551, -0.0009129525860771537, -0.03491119667887688, -0.012041556648910046, -0.034648485481739044, -0.024704039096832275, -0.0016125071560963988, -0.000016467554814880714, -0.013565706089138985, -0.03133215010166168, 0.019246602430939674, 0.004253784194588661, 0.024162596091628075, -0.023485084995627403, -0.026659226045012474, -0.002841267501935363, 0.05162636935710907, 0.02465203031897545, -0.022819839417934418, -0.034781426191329956, -0.026375487446784973, 0.042470332235097885, 0.057889342308044434, -0.011608239263296127, -0.04856817051768303, -0.019341586157679558, -0.025861183181405067, -0.0606553815305233, 0.018985601142048836, 0.04668695107102394, 0.010393377393484116, 0.010556483641266823, -0.04152470454573631, 0.034025367349386215, 0.01204551849514246, -0.011280440725386143, 0.006260511931031942, -0.016880827024579048, 0.02641012705862522, 0.025299858301877975, 0.023210985586047173, -0.014619836583733559, -0.012747499160468578, 0.03466532751917839, -0.05806414783000946, 0.005778878927230835, 0.01252301037311554, 0.01954694464802742, -0.0023598175030201674, -0.010577065870165825, -0.0009587767999619246, 0.05744249001145363, 0.008899512700736523, 0.01815534196794033, -0.007845156826078892, 0.05167553201317787, -0.05488681048154831, -0.035979658365249634, 0.03240601345896721, -0.0314912423491478, -0.02998087741434574, 0.015228782780468464, 0.04361201450228691, -0.0018711258890107274, -0.01042162999510765, -0.0090248454362154, -0.0238345917314291, 0.015637990087270737, -0.03899801895022392, -0.0011292925337329507, -0.015313415788114071, -0.023101812228560448, 0.011013108305633068, -0.037060484290122986, 0.05026498809456825, 0.01953405886888504, -0.03357498347759247, -0.053482867777347565, -0.04070374369621277, -0.012745615094900131, -0.014042925089597702, 0.005298142787069082, -0.014578533358871937, 0.0039614164270460606, -0.01172989048063755, -0.0012132650008425117, -0.011922410689294338, -0.013607721775770187, -0.0065496801398694515, -0.009502814151346684, 0.016023285686969757, 0.0038481031078845263, 0.016530035063624382, 0.00242812093347311, 0.003844395512714982, -0.018661774694919586, -0.025111854076385498, 0.018945537507534027, -0.03018118254840374, -0.03817739710211754, -0.010880731977522373, -0.010424098931252956, 0.00802554003894329, -0.010379762388765812, -0.011578899808228016, -0.013795736245810986, 0.06115799769759178, 0.025878140702843666, 0.013368598185479641, 0.007857699878513813, -0.009059247560799122, -0.03491995111107826, 0.04934529960155487, 0.02087167277932167, -0.045958176255226135, -0.025105824694037437, 0.033319082111120224, -0.025698190554976463, 0.040495336055755615, -0.0002630434464663267, -0.028403248637914658, -0.06357497721910477, -0.04099445044994354, 0.012926715426146984, -0.03117283619940281, -0.037578657269477844, -0.02997671812772751, -0.007497071288526058, -0.026261217892169952, 0.03318554908037186, 0.004649055656045675, -0.02522769570350647, 0.01720946654677391, -0.03278068080544472, 0.008987660519778728, -0.029531121253967285, 0.015003201551735401, -0.02110576257109642, -0.01955936662852764, 0.0020699778106063604, 0.05060134455561638, 0.03501063585281372, 0.02419193647801876, -0.01674952171742916, -0.009621234610676765, 0.049907878041267395, -0.03205230459570885, -0.07110187411308289, -0.07405009120702744, 0.005241047590970993, 0.013417800888419151, 0.00951341912150383, 0.0037012770771980286, -0.0354284793138504, 0.04497956484556198, -0.03393930196762085, -0.0073868390172719955, -0.025150500237941742, -0.028538193553686142, -0.017053674906492233, -0.018550364300608635, 0.08510668575763702, 0.006450165994465351, 0.029017681255936623, -0.01907709427177906, 0.02802303433418274, 0.03488552197813988, 0.0016901945928111672, -0.03964178264141083, -0.018336951732635498, -0.03121015802025795, -0.04050667956471443, 0.021407075226306915, -0.021743427962064743, -0.030286438763141632, -0.038360390812158585, 0.005553319118916988, 0.06760580092668533, -0.003726334311068058, 0.010896766558289528, 0.04252186790108681, -0.011742722243070602, 0.006602587644010782, -0.0019021090120077133, 0.002330319257453084, 0.02417905442416668, -0.013925308361649513, -0.008665136061608791, -0.024657921865582466, -0.042457353323698044, -0.01082898210734129, -0.05263231694698334, -0.021464569494128227, -0.038033418357372284, 0.0031129762064665556, 0.05614682659506798, -0.014910894446074963, 0.051376696676015854, 0.009960933588445187, -0.07068097591400146, -0.051267534494400024, 0.028092429041862488, -0.005692514590919018, 0.013672190718352795, 0.04367053136229515, 0.014827646315097809, -0.03969167545437813, 0.004928406793624163, -0.01678071916103363, -0.005550193600356579, 0.005439139436930418, 0.08680538833141327, 0.001627543126232922, -0.042425673454999924, 0.01346998754888773, 0.04491768777370453, -0.039207056164741516, -0.06062101945281029, 0.009138439781963825, 0.00012475234689190984, 0.008103271014988422, -0.04132762551307678, 0.011011901311576366, -0.02038891613483429, 0.02427709475159645, 0.006396428681910038, 0.05916881933808327, -0.00008859682566253468, 0.041521891951560974, 0.018312618136405945, 0.027746189385652542, -0.03544503450393677, 0.017702842131257057, 0.020017588511109352, -0.008586423471570015, -0.03024986758828163, -0.03955136984586716, -0.008838719688355923, -0.017016250640153885, -0.02048337832093239, 0.05240954831242561, 0.006550319958478212, -0.021090712398290634, 0.029162798076868057, -0.015286830253899097, 0.039151936769485474, -0.0044466410763561726, -0.023885373026132584, 0.012508358806371689, -0.0315728560090065, -0.05025298893451691, -0.013091616332530975, 0.02689608559012413, 0.028048789128661156, 0.036372724920511246, -0.059903234243392944, 0.013400508090853691, 0.04089333117008209, 0.0010364557383581996, -0.0089796781539917, -0.04781985655426979, -0.025523699820041656, -0.037238772958517075, -0.033168427646160126, -0.011052657850086689, -0.010953723452985287, -0.004281266592442989, 0.020802384242415428, -0.003152001416310668, -0.07057122886180878, -0.002790142549201846, 0.028490938246250153, -0.005991811398416758, 0.01599041372537613, -0.048252735286951065, 0.01768512651324272, -0.017172792926430702, -0.042876947671175, -0.04684425890445709, -0.017427997663617134, -0.021490510553121567, -0.012166882865130901, -0.015105576254427433, 0.01594329997897148, 0.0017101793782785535, 0.03593931719660759, 0.013802269473671913, 0.010881499387323856, -0.009540724568068981, -0.03029674105346203, 0.004804654512554407, 0.06608433276414871, -0.01565179042518139, 0.04015440121293068, 0.037217237055301666, -0.04027854651212692, 0.021510707214474678, -0.02026302181184292, -0.037287142127752304, -0.025526676326990128, 0.021100714802742004, 0.014731691218912601, 0.005932560656219721, -0.02457890659570694, -0.02859249897301197, 0.007225983776152134, -0.057333383709192276, 0.02418503165245056, -0.013084707781672478, -0.010300246998667717, 0.0018463144078850746, -0.007027499843388796, 0.014567436650395393, 0.038792986422777176, -0.014543230645358562, 0.06735622137784958, 0.0025081229396164417, 0.030404571443796158, -0.0003437476698309183, 0.015516041778028011, 0.030387599021196365, 0.033956073224544525, 0.002990574575960636, -0.016428973525762558, 0.017236320301890373, -0.017403731122612953, -0.020279113203287125, 0.061783790588378906, -0.005302730947732925, -0.024587221443653107, -0.028210122138261795, -0.007106998469680548, -0.0273957010358572, 0.04470684751868248, 0.02396869659423828, -0.011239655315876007, 0.01849946193397045, -0.06756707280874252, -0.05160409212112427, -0.006722570396959782, -0.07096133381128311, -0.037308961153030396, 0.046407248824834824, -0.01482593547552824, 0.011367144994437695, 0.005472100805491209, -0.028104230761528015, -0.010226274840533733, -0.011286345310509205, -0.003167595947161317, -0.03494228422641754, 0.025838948786258698, -0.003883071942254901, 0.03304245322942734, 0.0026029101572930813, -0.028480075299739838, 0.03429321199655533, 0.0157562717795372, -0.023236636072397232, -0.03331815078854561, 0.0023467738647013903, 0.01615653932094574, 0.01906035654246807, -0.008137873373925686, -0.016284974291920662, 0.020277321338653564, 0.02354583889245987, 0.008808240294456482, 0.031232735142111778, 0.02641994133591652, 0.01798175647854805, 0.02478596940636635, 0.004952195566147566, -0.005929609294980764, 0.0001363071787636727, 0.01565498858690262, 0.004195543006062508, -0.0073272110894322395, -0.059524811804294586, 0.0239320807158947, 0.036813732236623764, -0.012573531828820705, 0.05115683749318123, 0.024610338732600212, 0.05450410023331642, -0.03160089626908302, 0.0357501283288002, 0.011636319570243359, 0.008559857495129108, 0.035847947001457214, 0.022048482671380043, 0.015158952213823795, 0.028521109372377396, 0.0340452715754509, -0.011780419386923313, -0.03565625473856926, 0.04533039405941963, 0.0242497306317091, -0.05967364087700844, -0.022072438150644302, -0.007383511867374182, -0.01114105898886919, 0.03289905562996864, -0.013574732467532158, 0.030150875449180603, -0.02654239721596241, -0.00956466794013977, -0.03957855701446533, -0.029254047200083733, 0.04929798096418381, -0.007022148463875055, 0.00002577232226030901, 0.00043645038385875523, -0.05678359419107437, 0.004963716957718134, 0.0592031367123127, 0.03751123324036598, 0.004980155732482672, -0.0035347610246390104, 0.012824924662709236, -0.013331354595720768, 0.04630069062113762, 0.04353778064250946, 0.0036961825098842382, -0.0360151045024395, 0.011612862348556519, 0.026215124875307083, -0.00041817547753453255, -0.027283109724521637, -0.006835137959569693, -0.03937528654932976, 0.045378170907497406, -0.024522557854652405, -0.016139816492795944, 0.05068468302488327, -0.045479219406843185, -0.0340346097946167, -0.012679185718297958, 0.056463852524757385, -0.06866287440061569, -0.015029060654342175, 0.031157372519373894, 0.005821413826197386, -0.04368274286389351, 0.04083434119820595, -0.013306193053722382, 0.06921842694282532, -0.008311447687447071, 0.048981618136167526, -0.013013789430260658, 0.024281349033117294, 0.04853014275431633, -0.008891071192920208, -0.028751295059919357, 0.011518322862684727, 0.00574265094473958, -0.043897636234760284, -0.01644272170960903, -0.059051427990198135, -0.027107035741209984, -0.03674815967679024, -0.03279584273695946, -0.0038168770261108875, 0.03592541813850403, -0.001420192769728601, -0.009111093357205391, 0.003000368596985936, 0.041156962513923645, -0.03182438388466835, 0.00021563394693657756, 0.009602736681699753, 0.019913574680685997, -0.0022995283361524343, -0.012134794145822525, 0.0013769010547548532, -0.053692009299993515, -0.0031413882970809937, -0.03566671535372734, 0.05864662304520607, -0.013565156608819962, -0.047014087438583374, -0.04613416641950607, -0.0368206724524498, 0.008415679447352886, 0.020028378814458847, -0.01637914404273033, -0.06331939250230789, 0.03236546367406845, 0.015218246728181839, 0.01062326692044735, 0.01570255309343338, -0.034193024039268494, -0.012797980569303036, 0.0030453098006546497, 0.05032216012477875, -0.0019053281284868717, 0.033281341195106506, 0.029152823612093925, -0.003273258451372385, 0.022640246897935867, -0.032025229185819626, 0.03572652116417885, -0.023532018065452576, -0.006971550639718771, -0.011911391280591488, 0.036639172583818436, -0.03738531470298767, -0.05327335745096207, 0.03278462588787079, 0.02812146581709385, 0.01842990517616272, -0.012611483223736286, -0.07302914559841156, -0.011758355423808098, -0.055728066712617874, -0.0178682878613472, -0.0376925952732563, 0.01250624842941761, 0.00008668838563608006, -0.018422652035951614, -0.0016438966849818826, -0.05849042907357216, 0.1396418660879135, 0.0318974032998085, 0.05253751203417778, -0.01197199709713459, 0.019185472279787064, 0.049389392137527466, 0.023723432794213295, 0.006389162037521601, -0.003286363324150443, -0.0304102785885334, 0.023447968065738678, 0.02108689770102501, 0.015362580306828022, 0.02968594990670681, 0.04197458177804947, 0.0594780258834362, -0.03492986783385277, -0.02985747717320919, -0.006312263663858175, -0.04219818487763405, -0.04597712308168411, 0.02236187271773815, 0.00813908502459526, 0.016151629388332367, -0.028667811304330826, 0.03461535647511482, 0.016825944185256958, -0.04451330751180649, -0.017725171521306038, -0.02553178183734417, 0.013400979340076447, -0.006915428675711155, 0.03472935035824776, -0.03632541000843048, -0.026463249698281288, 0.024092689156532288, 0.022348936647176743, -0.034752145409584045, 0.02104087918996811, 0.04505413770675659, -0.024384979158639908, 0.0034153915476053953, 0.040582966059446335, -0.052849024534225464, -0.020663613453507423, 0.010146115906536579, -0.028108589351177216, -0.0024795178323984146, 0.006010921206325293, -0.05112023279070854, 0.06362251937389374, -0.03215992450714111, 0.024263596162199974, -0.047584857791662216, -0.03722444176673889, 0.0048596663400530815, 0.0027326226700097322, -0.05009673535823822, -0.0047835991717875, 0.02239544875919819, 0.05154659226536751, -0.024692406877875328, -0.02168719470500946, 0.01264115422964096, -0.022166458889842033, -0.02298220805823803, -0.011371610686182976, 0.012913169339299202, -0.017641011625528336, -0.02138618752360344, -0.021116556599736214, -0.014783489517867565, 0.016242370009422302, -0.01772632636129856, 0.05124286934733391, 0.03440234437584877, 0.01676606386899948, 0.04774485155940056, -0.011794344522058964, -0.016619553789496422, -0.017774220556020737, -0.02793932892382145, 0.004366184119135141, -0.034840360283851624, 0.050791122019290924, 0.04972462356090546, -0.03469378128647804, -0.014918558299541473, -0.037275899201631546, 0.035234298557043076, 0.05115925893187523, 0.02914457395672798, 0.007962045259773731, -0.005880903452634811, -0.02540896274149418 ]
There is no other event like it in the world! The Houston Livestock Show and Rodeo™ is a three-week event with hundreds of competitions, including a rodeo, the world's largest livestock show and horse show, and more. Be a part of the biggest and best tradition in Texas by participating in one or more of the countless competitions hosted by the booth at the Rodeo. Teams interested in participating in the famous World's Championship Bar-B-Que Contest can find all participation information here. Athletes competing in the Super Series or Super Shootout competition will find RodeoHouston rules and procedures here. RodeoHouston is an invitation-only event that brings the best of the best together. Do have the best wine in the world? Enter your bottle in the Rodeo Uncorked! International Wine Competition for a chance to be a coveted gold medal winner.
[ 0.0005967768374830484, 0.014916702173650265, -0.013856248930096626, 0.06073503941297531, -0.013850390911102295, 0.013369309715926647, -0.02117094397544861, 0.03603719174861908, 0.02432464249432087, 0.024814052507281303, 0.035696521401405334, 0.00206583458930254, -0.012815229594707489, -0.040578801184892654, -0.018354743719100952, 0.007973449304699898, -0.025904618203639984, -0.053893398493528366, -0.03874499350786209, -0.019556302577257156, -0.03073692135512829, -0.0009314462658949196, -0.07130751013755798, -0.010694138705730438, -0.015643032267689705, 0.04439663141965866, 0.023397736251354218, 0.0024577684234827757, 0.0387086495757103, 0.05513126775622368, -0.037650056183338165, -0.03025730699300766, 0.022198231890797615, -0.05205921083688736, -0.022106116637587547, -0.02714390866458416, 0.06065920367836952, -0.018918074667453766, 0.000004946006811223924, -0.033816859126091, -0.02065122313797474, -0.0035644101444631815, 0.01454493124037981, -0.026351315900683403, -0.0297286007553339, 0.005101485643535852, 0.013789650052785873, -0.03655196726322174, 0.0218312069773674, -0.03790121525526047, 0.0005935279768891633, -0.02344777248799801, -0.009190253913402557, -0.0020256508141756058, -0.010766809806227684, 0.012475763447582722, -0.005337604321539402, -0.04026854783296585, 0.005656409543007612, 0.03811980038881302, 0.024748025462031364, 0.006217971909791231, 0.023889057338237762, -0.04311240464448929, 0.041644591838121414, 0.0036109560169279575, -0.01981549710035324, -0.006405751686543226, 0.01787206158041954, -0.0326971635222435, -0.005438194144517183, -0.018560314550995827, -0.038502585142850876, -0.009701529517769814, -0.02272355929017067, -0.009854761883616447, 0.022946719080209732, 0.003753516124561429, 0.006902678404003382, -0.019533919170498848, 0.01676713302731514, 0.05847043916583061, 0.019999638199806213, 0.027685828506946564, -0.06913845241069794, -0.013676128350198269, 0.017549961805343628, -0.018053973093628883, 0.038669053465127945, -0.03306708484888077, -0.006051207426935434, 0.04016178101301193, -0.0025495425797998905, -0.009798594750463963, 0.046979740262031555, 0.006617681123316288, -0.038166288286447525, 0.05094132572412491, -0.009433241561055183, 0.02635686658322811, 0.007898127660155296, -0.0030249094124883413, -0.02854229509830475, 0.05637410655617714, -0.058378905057907104, 0.0006994630675762892, -0.0049950419925153255, 0.017634589225053787, 0.0011978859547525644, -0.05846860259771347, 0.013707198202610016, -0.04394156485795975, 0.03672512248158455, -0.008286229334771633, -0.01100277528166771, 0.01546312216669321, -0.00855929497629404, 0.043311141431331635, -0.05026746541261673, 0.010985113680362701, 0.020985206589102745, 0.006281151901930571, 0.060091376304626465, 0.021393856033682823, 0.014042284339666367, -0.02671268954873085, -0.03140309080481529, 0.04743534326553345, -0.03176567703485489, -0.012514625675976276, 0.02736404910683632, -0.0636323019862175, -0.00015076292038429528, 0.03376533463597298, -0.02106975018978119, 0.04072185978293419, -0.0011676490539684892, 0.026534363627433777, 0.01014835387468338, -0.052706293761730194, 0.0633154809474945, 0.025736907497048378, 0.0035955572966486216, 0.08532028645277023, 0.018672002479434013, 0.01581110619008541, -0.0032697126735001802, -0.007129962090402842, -0.0414637066423893, 0.050682950764894485, -0.016041388735175133, 0.011159071698784828, -0.03151121363043785, 0.03136634826660156, -0.01874435879290104, -0.006444500759243965, 0.00352285779081285, 0.014333083294332027, 0.01006269920617342, 0.02573004551231861, -0.049682196229696274, 0.020323947072029114, -0.015944398939609528, 0.015890786424279213, 0.0036786040291190147, 0.031951285898685455, -0.009593968279659748, -0.007307157851755619, -0.010850312188267708, -0.037551309913396835, -0.006433357950299978, -0.03803927078843117, -0.0000035493353607307654, 0.0007445865194313228, 0.03739058971405029, 0.04062150418758392, 0.038249120116233826, -0.009018978103995323, 0.026870183646678925, 0.04727611690759659, -0.01938771829009056, 0.0139192845672369, -0.013022218830883503, 0.06432488560676575, 0.023818185552954674, 0.004393262322992086, -0.0375509150326252, 0.00446421978995204, -0.05704112723469734, -0.022645074874162674, -0.015962639823555946, 0.021549465134739876, -0.023515813052654266, 0.03296567499637604, 0.016139650717377663, -0.0048789409920573235, -0.022286158055067062, -0.018787164241075516, -0.004431111738085747, 0.0004352628020569682, -0.013725386932492256, 0.07207892090082169, -0.032518498599529266, 0.002204678487032652, 0.01942150853574276, -0.023814624175429344, 0.004136225208640099, 0.0265368465334177, -0.06065009906888008, -0.010527938604354858, 0.01905885897576809, 0.005304660648107529, -0.014599868096411228, 0.019898289814591408, 0.011319640092551708, -0.035376161336898804, -0.03041897341609001, 0.050777070224285126, -0.0010418944293633103, -0.016080893576145172, 0.00915848184376955, 0.02005930431187153, 0.062399011105298996, 0.06535380333662033, 0.023126056417822838, -0.0006196055910550058, 0.023646188899874687, 0.04012488201260567, -0.03571571037173271, 0.012438992038369179, 0.0021626821253448725, 0.05838434398174286, 0.0529927983880043, 0.052650365978479385, 0.04669252783060074, -0.016851866617798805, 0.06228824704885483, 0.02961770072579384, -0.0064629758708179, 0.02727849781513214, 0.014356136322021484, -0.026209626346826553, 0.03410831093788147, 0.01872149482369423, -0.03052816540002823, 0.006999095901846886, 0.011767907999455929, 0.00398264592513442, -0.005357838701456785, 0.04629986360669136, 0.008944515138864517, 0.04947242513298988, 0.006268944125622511, 0.044557906687259674, -0.02493722178041935, 0.0024217022582888603, 0.0174375269562006, 0.03315182030200958, -0.05475959554314613, 0.004859300795942545, 0.0097805792465806, 0.03236835449934006, -0.022570008412003517, 0.02789461240172386, 0.0043005505576729774, 0.01039167121052742, -0.021462954580783844, 0.02804439887404442, -0.015865879133343697, -0.04603969305753708, -0.020536914467811584, -0.06283591687679291, -0.033929578959941864, -0.03902769833803177, -0.02774950861930847, -0.0027357018552720547, 0.030537111684679985, -0.045913439244031906, 0.037300970405340195, 0.0027269809506833553, -0.015509436838328838, -0.01297066081315279, 0.012426570989191532, 0.04654747620224953, 0.021162956953048706, 0.019327344372868538, -0.03778257220983505, 0.03760593384504318, -0.005950871389359236, 0.02504311501979828, -0.017586451023817062, -0.01603761315345764, -0.03944001346826553, 0.0021046290639787912, 0.012332053855061531, -0.0030533522367477417, -0.028972100466489792, 0.010648542083799839, -0.022558676078915596, -0.05497942864894867, 0.008016410283744335, 0.01010415330529213, 0.009027773514389992, 0.011915246956050396, -0.05008832365274429, 0.027767494320869446, 0.03535538166761398, -0.04904705658555031, 0.024119284003973007, 0.03780870884656906, -0.018685564398765564, 0.026906272396445274, 0.02959294803440571, 0.006086680106818676, -0.052155692130327225, 0.030025385320186615, 0.05010764300823212, 0.020484626293182373, -0.02354450337588787, 0.003928435035049915, -0.043641846626996994, -0.023341050371527672, 0.028650669381022453, -0.03384530916810036, -0.04781530424952507, 0.04334354028105736, 0.01944199576973915, -0.08886699378490448, 0.014910672791302204, -0.02238442376255989, -0.016648992896080017, -0.02974567376077175, -0.04967552796006203, 0.03910288214683533, 0.023076247423887253, 0.015211580321192741, 0.006447538733482361, -0.009325268678367138, -0.009897837415337563, 0.031027283519506454, 0.030757861211895943, -0.05415889993309975, 0.021033737808465958, 0.07509977370500565, -0.014448994770646095, 0.02606271393597126, 0.01076944638043642, -0.027618583291769028, 0.008339053019881248, 0.017093118280172348, -0.04069967567920685, 0.0009080873569473624, 0.008232875727117062, 0.002664601430296898, 0.02966340258717537, 0.017682423815131187, -0.01839033141732216, 0.005153384525328875, -0.019463328644633293, 0.02757949009537697, -0.003652514424175024, -0.011334000155329704, 0.032521482557058334, 0.014927096664905548, -0.030209355056285858, -0.04273911193013191, 0.021034756675362587, 0.033323511481285095, 0.05517194792628288, -0.08283925801515579, 0.0507170595228672, 0.009240051731467247, -0.021854029968380928, 0.034131523221731186, -0.06218305975198746, -0.006565354764461517, 0.039321646094322205, 0.005695603787899017, 0.03418085724115372, -0.03379583731293678, 0.01292361132800579, -0.0439252071082592, 0.017230207100510597, 0.04344891756772995, 0.036300379782915115, 0.009027420543134212, -0.00015357107622548938, -0.035636432468891144, -0.0091817332431674, 0.0041941748932003975, 0.010688523761928082, -0.01985323429107666, 0.026506252586841583, -0.00767305213958025, -0.0463155172765255, -0.02617601491510868, 0.03756418079137802, 0.0228348970413208, 0.03832439333200455, -0.01737191528081894, 0.03971892222762108, 0.012463008053600788, 0.016692399978637695, 0.006806173361837864, -0.020381037145853043, 0.01931045576930046, -0.03472452983260155, 0.055687688291072845, 0.02069801278412342, -0.03707128018140793, -0.010845048353075981, -0.03864414244890213, -0.0175633542239666, 0.006890878081321716, 0.03242647647857666, -0.013838537037372589, -0.04650256782770157, 0.051860958337783813, -0.012842334806919098, 0.058419112116098404, -0.016023200005292892, 0.004140852950513363, -0.02165951207280159, 0.023807872086763382, 0.008651213720440865, -0.05653367564082146, 0.030834311619400978, -0.0450466014444828, 0.03759985789656639, 0.044698648154735565, -0.0003632281441241503, -0.04156912863254547, 0.002432409441098571, -0.021243687719106674, -0.02363336645066738, -0.006523425690829754, 0.06067027896642685, 0.0077838534489274025, 0.01819220930337906, -0.032444532960653305, 0.022199539467692375, 0.012007650919258595, -0.0027297453489154577, -0.002153655979782343, -0.0003800153499469161, 0.027366746217012405, 0.02772178128361702, 0.04122915118932724, -0.031058993190526962, -0.02464722841978073, -0.004320112057030201, -0.0674639344215393, -0.004947205539792776, 0.013317305594682693, -0.0281889159232378, 0.021115489304065704, 0.02978069894015789, 0.03556999936699867, 0.031783804297447205, -0.0001960917143151164, 0.019569044932723045, -0.013145050033926964, 0.03652689978480339, -0.06631818413734436, -0.03948638215661049, 0.0794651061296463, -0.014733926393091679, 0.009263790212571621, 0.02080756239593029, 0.05954010784626007, -0.014482387341558933, 0.007268295623362064, 0.04534851387143135, -0.03619983047246933, 0.015289907343685627, -0.05595916137099266, 0.0005527358152903616, 0.001352145103737712, -0.03967607393860817, 0.027701226994395256, -0.03576580062508583, 0.028967199847102165, 0.005062763579189777, -0.018569959327578545, -0.04640216380357742, -0.05317672714591026, -0.031346697360277176, 0.027919771149754524, 0.02325083687901497, 0.008648978546261787, -0.01062056701630354, 0.006359309423714876, -0.02814159356057644, -0.003911205101758242, -0.02331933006644249, 0.014599233865737915, 0.010079248808324337, 0.06814996153116226, 0.0034843028988689184, 0.02239232324063778, 0.00004215283479425125, -0.010816475376486778, -0.06169109791517258, 0.007153291720896959, 0.007120256312191486, -0.02282644808292389, -0.05643950775265694, -0.010658434592187405, -0.04070734977722168, -0.006562441121786833, -0.023527231067419052, 0.007854015566408634, -0.016044510528445244, 0.011454869993031025, 0.0320160947740078, 0.047265004366636276, 0.0015513680409640074, 0.009073224849998951, -0.016514962539076805, 0.03260176256299019, 0.008749931119382381, -0.04201187193393707, -0.06032285839319229, 0.022044841200113297, -0.03672509267926216, 0.040017347782850266, 0.0011916658841073513, -0.004391207359731197, -0.02995835244655609, -0.056032080203294754, -0.00435152230784297, -0.027492042630910873, -0.022987699136137962, -0.05668546259403229, -0.028788525611162186, -0.042248133569955826, 0.036588091403245926, 0.019373029470443726, -0.01785910315811634, -0.008043846115469933, -0.04286346212029457, -0.010316426865756512, -0.012470033019781113, -0.02195705845952034, -0.014858115464448929, 0.003191740019246936, -0.003367141354829073, 0.036943934857845306, 0.012360305525362492, 0.03238759562373161, -0.005575887858867645, 0.012667455710470676, 0.03184628486633301, -0.04078308492898941, -0.06152189522981644, -0.032670386135578156, 0.004302679561078548, 0.010511188767850399, -0.02301373891532421, 0.012945538386702538, -0.015227213501930237, 0.07522011548280716, -0.053455304354429245, -0.012010736390948296, -0.0236335601657629, -0.007000969722867012, -0.0005531582864932716, -0.016056008636951447, 0.06982813030481339, 0.012113027274608612, 0.019461262971162796, 0.007471869233995676, 0.08701308816671371, 0.01156825665384531, 0.006031274329870939, -0.0601980946958065, -0.007012535817921162, -0.020524708554148674, -0.0681052953004837, 0.04782237857580185, -0.0038773398846387863, -0.01888098195195198, -0.04334038123488426, -0.0003532328410074115, 0.05814456194639206, 0.008031112141907215, 0.060056041926145554, 0.02799881063401699, -0.005788950249552727, -0.008680959232151508, -0.004511797800660133, 0.033914800733327866, 0.03272368758916855, -0.011760393157601357, -0.0142659991979599, -0.006698186043649912, -0.022320520132780075, -0.006116876844316721, -0.06850273162126541, -0.02461293898522854, -0.039614345878362656, -0.02524968609213829, 0.0607600063085556, -0.003404613584280014, 0.032451651990413666, -0.021014709025621414, -0.04729185253381729, -0.02439630962908268, 0.03170229122042656, 0.0037437945138663054, -0.015017709694802761, 0.06237069517374039, 0.011375779286026955, -0.03919019177556038, -0.0007415059371851385, -0.007457048166543245, -0.000010879082765313797, -0.06323058158159256, 0.05567847192287445, 0.007536347024142742, -0.04234497621655464, 0.03899812698364258, 0.05353039875626564, -0.06991632282733917, -0.05415136367082596, -0.020352773368358612, 0.008248556405305862, 0.012691487558186054, -0.008455484174191952, 0.00956004485487938, -0.02537764236330986, -0.015420612879097462, -0.00660264166072011, 0.032822735607624054, -0.005895713344216347, 0.028485622256994247, -0.014404174871742725, 0.06614691019058228, -0.05561554804444313, -0.002951516304165125, 0.034502241760492325, -0.005590594373643398, -0.022067444398999214, -0.04717428237199783, -0.006708854343742132, -0.011937140487134457, -0.015281924977898598, 0.010314797051250935, -0.01943049021065235, -0.019327597692608833, 0.03365242853760719, -0.031537774950265884, 0.031148241832852364, 0.003851430956274271, -0.015522535890340805, 0.02245916984975338, -0.03721580654382706, -0.05591689050197601, -0.022625213488936424, -0.005139217711985111, 0.023518694564700127, 0.04526732489466667, -0.03393302485346794, 0.018405234441161156, 0.026526261121034622, -0.015334291383624077, -0.006785839330404997, -0.03225171938538551, -0.07290686666965485, -0.02720622345805168, -0.02000446990132332, -0.03477677330374718, -0.007713914383202791, 0.010332207195460796, 0.022421957924962044, 0.026357002556324005, -0.03232579678297043, -0.006445436738431454, 0.03930659219622612, -0.012678698636591434, 0.0032084009144455194, -0.02687155455350876, 0.029360581189393997, -0.04691680520772934, -0.01618400774896145, -0.03816124051809311, -0.006739308126270771, -0.010096907615661621, 0.010716686025261879, -0.017060771584510803, -0.015278355218470097, -0.004014487378299236, 0.016403408721089363, 0.004324515350162983, 0.02722063846886158, -0.015593978576362133, -0.04945405572652817, -0.024931401014328003, -0.017410805448889732, -0.00958354864269495, 0.043945107609033585, 0.02774493768811226, -0.019350513815879822, 0.025591565296053886, 0.00997074693441391, -0.011596554890275002, -0.03266653046011925, 0.0035043610259890556, -0.00021510767692234367, 0.03646969795227051, -0.05173436552286148, -0.017311902716755867, 0.0012551414547488093, -0.03029787912964821, 0.04289036616683006, -0.0033443334978073835, 0.04567837342619896, 0.008096429519355297, -0.022992083802819252, 0.010695653967559338, 0.05224805325269699, -0.020797669887542725, 0.06536035239696503, -0.013185392133891582, 0.038809824734926224, 0.025839559733867645, -0.03379891440272331, 0.05945530906319618, 0.04727422446012497, 0.03965293988585472, -0.03810333460569382, 0.014682740904390812, 0.0001528347347630188, -0.007084139157086611, 0.029262909665703773, 0.0010607375297695398, -0.03667224198579788, -0.05970538780093193, -0.03644195571541786, 0.0068507809191942215, 0.0413375049829483, -0.007513466291129589, 0.02048751711845398, 0.0458635538816452, -0.022688083350658417, -0.04693080857396126, -0.004369181580841541, -0.03649318963289261, -0.02672610990703106, 0.02913433499634266, -0.020233403891324997, -0.024060875177383423, -0.004232174251228571, -0.0710761621594429, -0.0013435982400551438, -0.039346013218164444, -0.029932543635368347, -0.04201605170965195, 0.0063326661475002766, -0.01907164789736271, 0.03678277134895325, -0.004827669821679592, -0.02893008105456829, 0.0019355082185938954, 0.047115474939346313, -0.02839788608253002, -0.04578854516148567, 0.027178939431905746, 0.05539786070585251, 0.018831240013241768, -0.010819414630532265, 0.019495056942105293, 0.025206945836544037, -0.0018338410882279277, 0.020234664902091026, -0.01642884872853756, 0.012853693217039108, -0.013407093472778797, -0.004868767224252224, -0.011962548829615116, -0.01941090263426304, -0.030396634712815285, 0.05296366661787033, -0.006089330650866032, -0.015956081449985504, -0.03395846486091614, 0.01818150095641613, 0.037235327064991, -0.014720437116920948, 0.039730239659547806, 0.04276352375745773, 0.03453751280903816, -0.007003954611718655, 0.011609100736677647, -0.014092769473791122, 0.03520653024315834, 0.019803982228040695, 0.031556446105241776, -0.014929214492440224, 0.033877402544021606, 0.030455047264695168, 0.02358311042189598, 0.002133432077243924, 0.026253605261445045, 0.006453326437622309, -0.033353954553604126, 0.015921354293823242, -0.001788571709766984, -0.0004967809654772282, 0.0023306049406528473, -0.028782319277524948, -0.010487138293683529, -0.05327804759144783, 0.0063246130011975765, -0.024707207456231117, -0.011581847444176674, 0.03566324710845947, -0.031279537826776505, 0.022216083481907845, 0.0077650477178394794, -0.020013771951198578, -0.006682262290269136, 0.027165820822119713, 0.0025877882726490498, 0.015424554236233234, 0.02888714149594307, 0.021813880652189255, -0.01569252647459507, 0.052717696875333786, 0.02476450428366661, 0.01168341189622879, -0.034818634390830994, 0.016267141327261925, 0.026737432926893234, 0.02728736214339733, -0.036455024033784866, 0.025127854198217392, -0.016306523233652115, 0.026934480294585228, -0.023209592327475548, 0.012943973764777184, 0.042328644543886185, -0.02177603170275688, -0.018159044906497, -0.07279667258262634, 0.035883739590644836, -0.05622730031609535, -0.014272734522819519, 0.01579183153808117, -0.008389201015233994, -0.025262663140892982, 0.019763680174946785, 0.013067382387816906, 0.033759839832782745, 0.026023974642157555, 0.03127549588680267, -0.021401559934020042, 0.0340428426861763, 0.03466140851378441, -0.04286247119307518, -0.011493745259940624, -0.01064073946326971, 0.01275224145501852, -0.052826471626758575, -0.02840336225926876, -0.04710600897669792, -0.01197005994617939, -0.0009164364892058074, -0.01431358139961958, -0.0006583480280824006, 0.06566712260246277, 0.006198197603225708, -0.07493703812360764, -0.002216341672465205, 0.04111392796039581, -0.019927503541111946, 0.006180684082210064, 0.04471230134367943, 0.04881853982806206, -0.019250784069299698, -0.0031121515203267336, -0.04967774823307991, -0.030942553654313087, 0.025442030280828476, -0.03229115903377533, 0.029829703271389008, -0.02125963382422924, -0.009366522543132305, -0.032233938574790955, -0.0541209913790226, -0.018244978040456772, -0.0152330556884408, -0.02155277505517006, -0.015969010069966316, 0.02901006117463112, 0.03528844937682152, 0.014958632178604603, 0.0005302953068166971, -0.015255428850650787, -0.02384646050632, 0.034172236919403076, 0.0730450376868248, 0.01360239740461111, 0.03292033448815346, 0.022661486640572548, -0.019526146352291107, 0.007316065486520529, -0.022128652781248093, 0.02700447291135788, -0.0021609708201140165, -0.007205455098301172, -0.025537144392728806, 0.01628253422677517, -0.02136177010834217, -0.057887766510248184, 0.014244700782001019, 0.003180120373144746, -0.007630918174982071, -0.05747085064649582, -0.09083909541368484, 0.022637205198407173, -0.01318399142473936, -0.027931056916713715, -0.04945606738328934, 0.032494865357875824, 0.03332985192537308, 0.0001627159072086215, -0.013353615067899227, -0.05317891389131546, 0.13625359535217285, 0.030140995979309082, 0.023425426334142685, 0.007477675564587116, 0.009968021884560585, 0.02787112072110176, 0.03201078251004219, -0.031628500670194626, 0.012034141458570957, -0.0033974796533584595, 0.038844648748636246, -0.03385086730122566, 0.040946803987026215, 0.022792426869273186, 0.011092927306890488, 0.04904424399137497, -0.05834154412150383, -0.016701212152838707, 0.032620321959257126, -0.06687865406274796, -0.06285097450017929, 0.00018682773225009441, -0.0004297254781704396, 0.01949404738843441, -0.005301614757627249, 0.018864406272768974, 0.026949241757392883, -0.045051995664834976, 0.0034008363727480173, -0.0068562934175133705, 0.04522203281521797, -0.000551953271497041, 0.03450990468263626, 0.0013836536090821028, -0.05932684242725372, 0.07882051169872284, 0.026381753385066986, -0.026015540584921837, 0.025120386853814125, 0.012345303781330585, -0.016295569017529488, -0.006837847642600536, 0.060611091554164886, -0.03946850076317787, 0.01576816849410534, 0.03031240403652191, -0.056699641048908234, -0.007439815904945135, 0.03366842865943909, -0.022094113752245903, 0.04420338571071625, -0.046621061861515045, 0.006993869319558144, -0.015344799496233463, -0.03277016431093216, 0.013039879500865936, -0.0005161187145859003, -0.03713145852088928, -0.021045366302132607, 0.01545620895922184, 0.04869956523180008, 0.01085480023175478, -0.010244250297546387, 0.011152992025017738, -0.017048751935362816, -0.0010011864360421896, 0.03512398153543472, 0.021182967349886894, 0.011258836835622787, -0.0347997210919857, -0.04388507828116417, -0.015763437375426292, -0.013188532553613186, -0.0552649162709713, 0.02597116120159626, 0.059167444705963135, -0.03981846198439598, 0.0459451749920845, -0.011279444210231304, -0.02469404973089695, -0.04367392510175705, -0.03480171784758568, -0.03152071312069893, -0.022386230528354645, 0.03529929742217064, 0.04698336496949196, -0.02116135135293007, -0.0385233499109745, -0.037933118641376495, 0.04605843871831894, 0.04877674579620361, 0.03401726856827736, -0.018356483429670334, 0.010462556034326553, -0.02062230557203293 ]
San Jose moves ahead with troubled sewer project By John Woolfolk | jwoolfolk@bayareanewsgroup.com | Bay Area News Group After its first foray left a tunneling machine stuck in muck and the city mired in lawsuits, it'll be a while before San Jose takes another shot at putting a sewer line under the Guadalupe River. The City Council this month unanimously approved a solution to what's become a multimillion-dollar mess. San Jose will use the $4.2 million remaining from $7 million the California Department of Transportation had committed to build a new sewer line beneath Highway 87. But the line for now will tie into existing pipes under the river; new pipes will be laid later at the city's expense. The project began with the 1998 upgrade of Highway 87 to a six-lane freeway between Julian Street and Highway 101. City officials asked Caltrans to pay for relocating the sewer line, fearful that the expanded highway would damage the existing pipes below. City officials say those pipes seem to be holding up fine for now, but the new agreement will let the city get at least part of the project completed to provide backup in case the old sewer line fails. "It's most critical because we are so close to the largest river in the county," said Michael O'Connell, a division manager in the city's Public Works Department. "Our goal is to eliminate any possibility of sanitary sewer overflow." Caltrans agreed to pay to replace the sewer line under the highway between Hedding Street and Interstate 880, at a cost originally estimated at less than $5 million. But three days after tunneling began in November 2005, river water flooded the digging equipment, trapping an 11-ton boring machine under the east bank. General contractor McGuire & Hester and subcontractor Nada Pacific sued the city, which sued back. The contractors, who were seeking more than $6 million in damages, claimed the city contract misrepresented soil and groundwater conditions. San Jose agreed in early 2008 to pay the contractors $3 million to settle the case. The city will share in any settlement or damages McGuire & Hester might recover in its ongoing lawsuit against the project design firm, RMC Water and Environment. With $2.8 million of the Caltrans money already wasted on the false start, city officials needed to decide how to proceed with — and pay for — the project. But with the state budget chronically short billions of dollars, Caltrans officials insisted they had no more money to give San Jose. Under the approved agreement, Caltrans will hand over the remaining millions it had committed toward the sewer project, and the city won't have to repay the state for the money already spent. City officials say the remaining Caltrans funding should largely cover the estimated cost of $3.8 million to $4.8 million for designing and building a new sewer under the highway. Caltrans spokeswoman Lauren Wonder said the state is in the process of cutting a check and that "once the city accepts the money, we are out of the picture." Replacing the line under the river would cost an additional $4 million to $4.5 million, city officials say, noting it would be in a different location than where the machine was stuck for more than two years. Public works officials plan to include funding for that in their capital improvement plan for 2012 through 2016. The existing lines under both the highway and river would remain to provide extra capacity and backup, O'Connell said. Contact John Woolfolk at 408-975-9346. John Woolfolk John Woolfolk is a reporter for the Bay Area News Group, based at The Mercury News. A native of New Orleans, he grew up near San Jose. He is a graduate of the UC Berkeley School of Journalism and has been a journalist since 1990, covering cities, counties, law enforcement, courts and other general news. He also has worked as an editor since 2013. Follow John Woolfolk @JohnWoolfolk1 More questions on REAL ID and a driver's license renewal: Roadshow Q: I got my new REAL ID driver's license in October and figured since my renewal was due in May, it would be good to get a new photo and fingerprint. I was wrong. My REAL ID came with my new picture yet had the same expiration date as my old license. Then a few days later, I got a... The National Archives said Saturday it made a mistake when it blurred images of anti-Trump signs used in an exhibit on women's suffrage.
[ -0.02669096738100052, 0.0341203399002552, 0.0051740319468081, 0.02180781215429306, -0.03392155095934868, -0.009492961689829826, -0.03259061649441719, 0.010718140751123428, 0.02968258410692215, 0.06208759546279907, 0.02929806336760521, -0.023498114198446274, 0.0010080717038363218, -0.036727141588926315, -0.034243736416101456, -0.003583793994039297, -0.0261259563267231, -0.030090784654021263, -0.0044350652024149895, 0.024547217413783073, -0.008108582347631454, 0.015979329124093056, -0.0444469228386879, -0.015293613076210022, -0.025442495942115784, 0.05555451288819313, 0.04906505346298218, -0.02326275035738945, 0.035646405071020126, 0.03420913964509964, -0.012647483497858047, -0.055118169635534286, 0.011977702379226685, -0.029760902747511864, -0.010842250660061836, -0.007872872985899448, 0.020973917096853256, -0.010002180002629757, 0.010012083686888218, -0.05238988250494003, 0.00002996107104991097, -0.028641417622566223, 0.01606067642569542, -0.047741539776325226, -0.01831268146634102, 0.006677641533315182, -0.017063893377780914, -0.02226715162396431, 0.016675857827067375, -0.04007231816649437, -0.018831918016076088, -0.012479998171329498, 0.03014230914413929, 0.0013793647522106767, 0.005353560671210289, 0.0023781461641192436, -0.028207531198859215, -0.009068864397704601, -0.03810713440179825, 0.029954854398965836, 0.033163875341415405, 0.0010169949382543564, -0.007057161070406437, -0.026473751291632652, 0.03477812930941582, 0.037659529596567154, -0.015380600467324257, -0.011966461315751076, 0.035016801208257675, 0.0012292353203520179, -0.01336450595408678, 0.039453644305467606, -0.017756570130586624, -0.02592199295759201, 0.006767134182155132, 0.017769232392311096, -0.015419350937008858, -0.012836206704378128, -0.01600734144449234, -0.009914562106132507, -0.023439686745405197, 0.06336032599210739, -0.0056435056030750275, 0.01967921108007431, -0.07683400809764862, 0.00034253683406859636, -0.031925372779369354, 0.0009777500526979566, 0.0037415609695017338, -0.001740077044814825, -0.022162990644574165, 0.053487058728933334, 0.029896238818764687, 0.008982508443295956, 0.030576050281524658, 0.036134589463472366, -0.07052405923604965, 0.014608630910515785, 0.004540251102298498, -0.010964023880660534, 0.016361966729164124, 0.02737543173134327, 0.003849256783723831, 0.05314481630921364, -0.036445003002882004, -0.007125923875719309, -0.0035040779039263725, -0.013731655664741993, -0.009918035939335823, -0.034180544316768646, 0.017562273889780045, -0.0016609523445367813, 0.012014373205602169, -0.019107230007648468, -0.048330750316381454, 0.03466693311929703, 0.005397475324571133, 0.03017818182706833, -0.043594807386398315, -0.01878097839653492, 0.023431815207004547, -0.014453970827162266, 0.05802498012781143, -0.03626704216003418, -0.0067703151144087315, -0.028326457366347313, -0.030650008469820023, 0.033884406089782715, -0.03972691297531128, 0.004006433300673962, -0.013139232061803341, -0.049432989209890366, -0.022514546290040016, 0.01786726340651512, 0.01753579080104828, 0.020857881754636765, 0.007566487416625023, 0.04094211012125015, 0.0379071906208992, -0.004844037350267172, 0.035691678524017334, 0.03440321236848831, -0.0011686448706313968, 0.08804290741682053, -0.002746970159932971, 0.04971722140908241, 0.006001718807965517, 0.00024613350979052484, -0.003958528861403465, 0.03319613263010979, -0.04368884488940239, 0.021051354706287384, 0.024246107786893845, 0.02279648184776306, -0.006532843224704266, 0.02733856998383999, -0.010644410736858845, -0.01694888435304165, 0.0430661141872406, 0.04947773739695549, -0.04338356480002403, 0.030307093635201454, 0.01436992734670639, 0.029544323682785034, -0.04891365021467209, 0.05120804160833359, -0.025281637907028198, -0.024779707193374634, -0.018160466104745865, -0.030038760975003242, 0.010074762627482414, -0.017805814743041992, -0.017951609566807747, 0.0002924027794506401, 0.029236191883683205, 0.03745264187455177, 0.030557550489902496, 0.018989482894539833, 0.039167966693639755, 0.01606641709804535, -0.01605841889977455, -0.015957040712237358, 0.005416464526206255, 0.05821515619754791, -0.002818233799189329, -0.021658655256032944, 0.007821595296263695, -0.02702300064265728, -0.05187845602631569, -0.019325045868754387, 0.0044738901779055595, 0.015787281095981598, -0.03549592196941376, 0.04714714735746384, 0.00484195351600647, 0.014195475727319717, -0.006769924890249968, -0.01740305870771408, 0.03788454458117485, -0.0397593230009079, -0.03132706135511398, 0.03947313874959946, -0.02504999190568924, 0.04719332605600357, -0.02640773355960846, -0.022302404046058655, 0.021433286368846893, 0.08629805594682693, -0.043508462607860565, -0.007248294074088335, 0.066642627120018, 0.017488451674580574, -0.031039731577038765, -0.0056152381002902985, 0.02346588298678398, -0.0202840156853199, 0.016588259488344193, 0.037407200783491135, 0.03716639429330826, -0.02201095037162304, 0.025654222816228867, 0.015619792975485325, 0.03853742778301239, 0.017583999782800674, -0.004940383601933718, 0.03170862793922424, 0.027392348274588585, 0.05353155732154846, -0.002382267266511917, -0.05505979806184769, 0.01556327659636736, 0.03521821275353432, 0.04149433597922325, 0.06470808386802673, 0.02980945073068142, -0.003205301705747843, 0.04854645952582359, 0.03777018189430237, -0.02542811632156372, 0.04354603961110115, 0.006578835193067789, 0.03593789041042328, 0.022216765210032463, 0.013776031322777271, -0.010435234755277634, 0.035354334861040115, -0.04126599431037903, -0.024037480354309082, -0.030615396797657013, 0.04482785239815712, -0.004734310787171125, 0.007130253128707409, 0.004630874842405319, 0.05096435546875, -0.005338186863809824, 0.017398979514837265, 0.039588071405887604, 0.05659247934818268, -0.04658161476254463, -0.0017314788419753313, 0.02304888144135475, 0.041125137358903885, -0.011129624210298061, -0.020091312006115913, 0.027495309710502625, 0.020919492468237877, -0.012194097973406315, 0.015301081351935863, 0.004398133605718613, -0.03549695014953613, -0.014698388986289501, -0.0462474599480629, -0.023002687841653824, -0.05725780129432678, -0.0699196308851242, -0.017730817198753357, 0.017375215888023376, -0.03546718880534172, -0.00506580201908946, 0.010860906913876534, -0.0369248129427433, -0.054778024554252625, 0.0028027480002492666, 0.04033100605010986, 0.03611622005701065, 0.03328340873122215, -0.0653291568160057, 0.04970679432153702, 0.01726716384291649, 0.04000963270664215, -0.027254117652773857, 0.0028704970609396696, -0.02349931187927723, -0.02099154330790043, 0.042796358466148376, -0.03395437076687813, 0.009247706271708012, -0.016411732882261276, -0.058186907321214676, -0.03917785733938217, -0.018084215000271797, -0.04377298057079315, -0.000290695606963709, -0.018604515120387077, -0.017411405220627785, 0.027544792741537094, 0.007919088937342167, -0.010500774718821049, 0.044080186635255814, 0.04419754445552826, -0.04366173967719078, 0.056467778980731964, 0.0019094421295449138, 0.03552030771970749, -0.05747794359922409, 0.05865048989653587, 0.02653803490102291, -0.016018269583582878, -0.02010411210358143, -0.0017567117465659976, -0.012135802768170834, 0.011150754988193512, -0.004385336302220821, -0.005426599178463221, -0.04486897587776184, 0.03763030469417572, 0.03688998520374298, -0.03282129764556885, -0.009819741360843182, -0.03271806985139847, -0.01710953749716282, -0.029547907412052155, -0.05238305777311325, 0.04108162596821785, 0.05438628047704697, 0.015621372498571873, -0.026025250554084778, -0.02145545743405819, -0.002826702082529664, 0.002818342996761203, 0.061213117092847824, -0.05448231101036072, 0.030988890677690506, 0.04228105768561363, 0.012746311724185944, -0.00103886635042727, 0.019165407866239548, -0.044226061552762985, -0.020122943446040154, -0.010986126959323883, -0.030353117734193802, -0.00544236833229661, 0.0076825362630188465, 0.02992730215191841, 0.008467434905469418, 0.02681470289826393, -0.040059253573417664, 0.017205994576215744, 0.024164754897356033, 0.02503511868417263, 0.02031421847641468, 0.00883579347282648, 0.011885864660143852, -0.039198603481054306, -0.04608649015426636, -0.07209574431180954, 0.026849117130041122, 0.018139144405722618, 0.06657674908638, -0.050165239721536636, 0.04181515425443649, -0.032034073024988174, -0.0656135082244873, 0.06576430052518845, -0.04219822585582733, -0.008958383463323116, 0.04604198411107063, -0.021544426679611206, 0.04583028331398964, -0.03944040834903717, 0.04232848808169365, -0.022467337548732758, 0.02698465809226036, 0.02346884459257126, 0.02658890187740326, 0.006517487578094006, -0.003106064395979047, -0.016136182472109795, -0.04110769182443619, -0.012835942208766937, 0.005583117250353098, -0.039074625819921494, 0.02041143923997879, -0.005608039442449808, -0.013833334669470787, -0.04341571033000946, 0.02463964931666851, 0.05441805347800255, 0.01699596457183361, 0.009773874655365944, 0.05556929111480713, 0.0006653983728028834, 0.03269101679325104, 0.04117908701300621, -0.02184569463133812, 0.021876944229006767, -0.024649962782859802, 0.03251826390624046, 0.038019441068172455, -0.025335201993584633, -0.011688869446516037, -0.04139101132750511, -0.016567809507250786, 0.043148837983608246, -0.030768996104598045, -0.031780388206243515, -0.007502642460167408, 0.04117288067936897, 0.0014558156253769994, 0.023401273414492607, -0.07144798338413239, -0.025973789393901825, -0.009073948487639427, 0.04787406697869301, 0.053513798862695694, -0.058243364095687866, 0.011664469726383686, -0.050347860902547836, 0.05073575675487518, 0.0370081290602684, 0.002502469578757882, -0.03415456786751747, 0.012612742371857166, -0.07364115118980408, 0.0013783854665234685, 0.03356020897626877, 0.027207372710108757, -0.013050573877990246, -0.010377432219684124, -0.025806859135627747, 0.018142350018024445, 0.06430789828300476, 0.025429025292396545, 0.0049703302793204784, -0.004289443604648113, 0.01909412443637848, 0.02743603102862835, 0.03985040634870529, -0.025120923295617104, -0.03150726854801178, 0.007425019517540932, -0.024151215329766273, -0.0007675156812183559, -0.01083877682685852, -0.03632570058107376, 0.007700517773628235, 0.005105533171445131, 0.0053939917124807835, 0.04038550332188606, -0.023260699585080147, -0.010980282910168171, -0.009950193576514721, 0.04004410654306412, -0.0415772944688797, -0.03844335675239563, 0.019232846796512604, 0.015715710818767548, -0.014703972265124321, 0.032138846814632416, 0.03825889900326729, 0.002847630064934492, 0.03492407500743866, 0.042583588510751724, -0.05383097380399704, 0.04608728736639023, -0.03920178860425949, 0.026975220069289207, -0.005358356051146984, -0.03493516892194748, 0.0020474360790103674, -0.024415740743279457, 0.015571612864732742, -0.012268022634088993, -0.014082388952374458, -0.020471520721912384, -0.038371648639440536, 0.0096870306879282, 0.010815308429300785, -0.02326793037354946, 0.022714700549840927, 0.024723472073674202, -0.01613505370914936, 0.0004288502677809447, -0.013252437114715576, 0.014957563020288944, 0.028210952877998352, -0.023682570084929466, -0.009221800602972507, 0.019183671101927757, 0.00775844044983387, 0.03544360399246216, -0.02192792482674122, -0.03797129541635513, -0.0038537951186299324, -0.04780319705605507, -0.04716885834932327, -0.0568263903260231, 0.030202077701687813, -0.051477570086717606, -0.012685097754001617, -0.051277000457048416, 0.004065184388309717, 0.005635535344481468, 0.009554559364914894, -0.0014618084533140063, -0.0014054940547794104, 0.0009028313215821981, 0.0008740074117667973, -0.03412267193198204, 0.021093863993883133, 0.020127849653363228, -0.049909621477127075, -0.014390883967280388, 0.016086330637335777, -0.010960048995912075, 0.04631597548723221, -0.01656929962337017, -0.010861094109714031, -0.02860306203365326, -0.036633916199207306, 0.02254258468747139, -0.0322658009827137, -0.031758036464452744, -0.048504289239645004, -0.050978753715753555, -0.011135628446936607, 0.03248656168580055, 0.018812933936715126, -0.01778651401400566, -0.005673176143318415, -0.0292018111795187, -0.0002574193349573761, -0.029956886544823647, -0.014147534035146236, -0.022002682089805603, -0.01597566157579422, -0.02248060517013073, 0.05243045091629028, -0.004429230932146311, 0.018895305693149567, -0.023203590884804726, 0.0049466779455542564, 0.008740698918700218, -0.030260656028985977, -0.04009842500090599, -0.05824332684278488, -0.00686220545321703, -0.020024100318551064, 0.01377509068697691, 0.00019741624419111758, -0.05417114123702049, 0.05528777092695236, -0.031209805980324745, 0.01205187477171421, -0.012624594382941723, 0.008154073730111122, -0.0036640814505517483, -0.0017954176291823387, 0.03050457313656807, -0.04171377792954445, 0.028243571519851685, -0.012097738683223724, 0.06096033751964569, 0.050845272839069366, -0.005913583096116781, -0.02370971255004406, -0.03681628406047821, -0.01583077944815159, -0.035066161304712296, 0.05891000106930733, -0.055436935275793076, -0.03039952740073204, -0.036009546369314194, -0.0084793446585536, 0.03137561306357384, 0.01875034160912037, 0.03817029297351837, 0.044767193496227264, -0.023261524736881256, 0.014258166775107384, -0.040003903210163116, 0.0450415275990963, 0.03216266632080078, -0.04334772005677223, -0.016842445358633995, 0.005492164753377438, -0.01325911469757557, 0.0031482644844800234, -0.050507690757513046, -0.04613647982478142, -0.027621226385235786, -0.03940212354063988, 0.05634818226099014, -0.005063953809440136, 0.03537968173623085, -0.012011821381747723, -0.0363210029900074, -0.07287558168172836, 0.03170269355177879, 0.016942275688052177, 0.01671007089316845, 0.025556009262800217, 0.008297077380120754, -0.025570478290319443, 0.038510676473379135, 0.011189469136297703, 0.010784676298499107, -0.05272003635764122, 0.06878355890512466, -0.01783846877515316, -0.053776420652866364, 0.03349960595369339, 0.05381700024008751, -0.03833997622132301, -0.044484179466962814, -0.005614399444311857, -0.018930889666080475, -0.0001900944480439648, -0.02070603519678116, 0.019730307161808014, -0.004363687243312597, 0.01267292071133852, -0.00030404338031075895, 0.048969198018312454, 0.012279677204787731, 0.05337134003639221, 0.006303050089627504, 0.04301539063453674, 0.0011613541282713413, -0.007094610016793013, 0.030125929042696953, 0.00927178654819727, -0.02174454554915428, -0.02683492936193943, -0.02016669325530529, 0.0057909185998141766, 0.0063330368138849735, 0.044012751430273056, -0.034183699637651443, 0.003291347064077854, 0.030034279450774193, 0.00011338430340401828, 0.05811548978090286, 0.003168758237734437, 0.012253109365701675, 0.04724467545747757, -0.0331706628203392, -0.04717579856514931, -0.029338084161281586, -0.007937364280223846, 0.005659029819071293, 0.04782724380493164, -0.07451160997152328, -0.003923163749277592, 0.01827114075422287, 0.02446073852479458, 0.023602399975061417, -0.04965842515230179, -0.05604669824242592, -0.018654238432645798, -0.011501963250339031, -0.02900100313127041, 0.0008886665455065668, -0.027684107422828674, 0.04884151741862297, -0.016558844596147537, -0.02313602901995182, -0.010565844364464283, 0.023117952048778534, -0.043207693845033646, 0.010335549712181091, -0.054061684757471085, 0.011889023706316948, -0.036551713943481445, -0.08127044886350632, -0.05729707330465317, 0.008341439999639988, -0.01920241490006447, -0.005741439759731293, 0.006070411764085293, 0.03578752279281616, -0.011067315936088562, -0.003793885698541999, 0.06643524765968323, 0.003497346071526408, 0.02324756607413292, -0.03062034584581852, -0.015208059921860695, 0.04113338887691498, -0.020071135833859444, 0.023020153865218163, 0.020134473219513893, -0.015181589871644974, 0.06025360897183418, -0.023095207288861275, -0.02238466404378414, -0.0022090028505772352, 0.018425026908516884, -0.00450246362015605, 0.020402345806360245, -0.045998070389032364, -0.04034571349620819, -0.014490269124507904, -0.03209610655903816, 0.025391023606061935, 0.02593298815190792, -0.000393321126466617, 0.010243312455713749, -0.019641326740384102, -0.008968956768512726, 0.04925597086548805, 0.004280747380107641, -0.00006497900176327676, 0.00532503379508853, 0.051836129277944565, 0.033607691526412964, 0.0048339893110096455, 0.022933347150683403, -0.017738502472639084, 0.042050089687108994, -0.01260632649064064, -0.0023682022001594305, 0.030644096434116364, -0.0218582171946764, 0.04650354012846947, -0.0026723030023276806, -0.036999523639678955, -0.04562656208872795, -0.016445482149720192, -0.02382914535701275, 0.026484206318855286, -0.017994441092014313, -0.011271652765572071, 0.013756856322288513, -0.03808830305933952, -0.05347171053290367, -0.00568909477442503, -0.07241596281528473, -0.022564085200428963, 0.027932047843933105, -0.006208550650626421, -0.03861880302429199, -0.006984390318393707, -0.033596791326999664, -0.018765956163406372, -0.02536003850400448, -0.014729506336152554, -0.01537683978676796, 0.005640695337206125, 0.02895307168364525, 0.03535156324505806, 0.003687528660520911, 0.004000318236649036, -0.0002760977949947119, 0.05775889381766319, -0.06984713673591614, -0.036017611622810364, 0.013427143916487694, -0.008789023384451866, 0.018438857048749924, -0.01833307556807995, -0.0016916220774874091, 0.034050341695547104, -0.01935776323080063, 0.007057673763483763, 0.007702027913182974, 0.027514789253473282, 0.011319415643811226, 0.047713153064250946, -0.014373289421200752, -0.004546713083982468, -0.020398899912834167, 0.05989880859851837, -0.02622467651963234, -0.02341017872095108, -0.02092546783387661, 0.03680615872144699, 0.01023948099464178, -0.001319038332439959, 0.013937462121248245, -0.0015198414912447333, 0.04135659337043762, -0.014186494052410126, 0.03475777059793472, -0.007958127185702324, 0.038942791521549225, 0.05165645480155945, 0.04451693966984749, -0.0058531444519758224, 0.04346221312880516, 0.04987729713320732, -0.026878491044044495, -0.008601522073149681, 0.038030873984098434, 0.010934590362012386, -0.011601249687373638, -0.010734756477177143, -0.05119575187563896, 0.01593155600130558, 0.014958721585571766, -0.027826160192489624, -0.019080875441432, -0.02248283661901951, 0.019130902364850044, 0.016438879072666168, -0.006490843370556831, 0.017717910930514336, -0.02106497995555401, 0.0061700595542788506, -0.027050791308283806, -0.050842054188251495, 0.014640332199633121, 0.02997901476919651, 0.004164267331361771, -0.017272118479013443, 0.012332620099186897, 0.0349019430577755, -0.02099335379898548, 0.034601371735334396, 0.023933319374918938, 0.03852411359548569, -0.03294873237609863, 0.011174102313816547, 0.013505474664270878, -0.023790862411260605, -0.02093413844704628, 0.0006732664769515395, -0.006491134408861399, -0.01062072068452835, -0.008134895004332066, -0.022759687155485153, 0.026262933388352394, -0.03883438929915428, -0.02305138297379017, -0.0513937845826149, 0.023581068962812424, -0.057704225182533264, -0.023460913449525833, 0.047358907759189606, -0.00824626162648201, -0.04491386562585831, 0.02923327498137951, 0.012229840271174908, 0.026822326704859734, 0.025363130494952202, 0.08926749974489212, -0.007470680400729179, 0.04026379436254501, 0.046505384147167206, -0.04699978232383728, -0.006809639744460583, 0.03539365530014038, -0.016020050272345543, -0.02551906369626522, -0.01057131215929985, -0.04254326969385147, -0.015141095034778118, -0.006029115524142981, -0.031707096844911575, -0.01094004139304161, 0.01920836977660656, -0.012643621303141117, -0.05209069699048996, -0.008298802189528942, 0.034921467304229736, -0.03750051185488701, -0.02063668519258499, 0.025830382481217384, 0.0494312047958374, -0.005267555359750986, -0.036473799496889114, -0.025687679648399353, -0.02417098544538021, 0.006543752737343311, -0.04885737970471382, 0.036394886672496796, -0.011381668969988823, -0.013368161395192146, -0.020955385640263557, -0.0037908980157226324, -0.021322332322597504, 0.011157447472214699, -0.028899159282445908, -0.06599950045347214, 0.02691863477230072, 0.035523369908332825, -0.0015354566276073456, 0.03407708555459976, -0.021236931905150414, 0.002922387095168233, 0.06251558661460876, 0.058360952883958817, 0.01435678731650114, 0.06246497854590416, -0.00808357261121273, -0.013394302688539028, 0.013488936237990856, -0.02247600629925728, 0.01541801169514656, 0.003422405803576112, -0.028580300509929657, -0.017628168687224388, 0.024551086127758026, -0.023700833320617676, -0.05452360957860947, -0.021074587479233742, 0.016115885227918625, 0.019912216812372208, -0.03634718805551529, -0.0465451218187809, -0.009917028248310089, -0.022329259663820267, -0.03582582622766495, -0.06278562545776367, 0.002589622512459755, 0.010082393884658813, 0.00546693429350853, -0.006384937092661858, -0.07318373769521713, 0.16459840536117554, 0.006250546779483557, 0.016733616590499878, -0.001909624901600182, 0.02656993642449379, 0.056361760944128036, 0.02129984088242054, 0.013088133186101913, -0.024035422131419182, -0.02236512303352356, 0.018176840618252754, -0.01632794179022312, 0.013049187138676643, 0.013797487132251263, 0.01425313949584961, 0.06837382167577744, -0.03961962088942528, 0.024509860202670097, 0.00383531185798347, -0.03685236722230911, -0.04873521998524666, 0.019625859335064888, 0.002642108825966716, 0.02151268534362316, -0.0022611902095377445, 0.050645411014556885, -0.019863847643136978, -0.009946662932634354, -0.003032573265954852, -0.047063980251550674, 0.023687321692705154, -0.013491650111973286, 0.025449302047491074, -0.03027338907122612, -0.03927532210946083, 0.026100778952240944, -0.03134467825293541, -0.01923382095992565, 0.0031254407949745655, 0.012407966889441013, -0.009106146171689034, 0.018416158854961395, 0.024554163217544556, -0.06358247995376587, -0.002199756447225809, 0.010030212812125683, -0.06866072863340378, 0.026257885619997978, 0.016278374940156937, -0.02300318330526352, 0.03671930730342865, 0.0038298359140753746, 0.055940382182598114, 0.00367775303311646, -0.00916613545268774, 0.008344712667167187, 0.016554338857531548, -0.00042565783951431513, -0.014004112221300602, 0.02198275364935398, 0.029465677216649055, 0.007380671799182892, -0.015542914159595966, 0.025946013629436493, -0.03603494167327881, -0.005700966808944941, 0.004114372190088034, -0.034118253737688065, 0.012223225086927414, -0.018342262133955956, -0.005819960497319698, 0.02111182175576687, 0.025902384892106056, -0.01913159154355526, 0.044203177094459534, 0.042362477630376816, -0.01563326269388199, 0.03856963664293289, 0.01752251200377941, 0.00816162396222353, -0.018523843958973885, -0.04618074372410774, 0.014063545502722263, 0.003520732978358865, 0.036541055887937546, 0.04904407262802124, -0.028775108978152275, -0.059188492596149445, -0.015334771946072578, 0.054532334208488464, 0.05407385528087616, 0.03296826034784317, -0.04533208906650543, -0.015207379125058651, -0.03177846595644951 ]
Resources for finding out about the history of your home, as well as architectural drawings of its facade. Links to the Metra Electric and CTA schedules, as well trip and route planners. How to contact our Alderman, State Representative, State Senator, Congresswoman, and Governor.
[ -0.003394397674128413, 0.009808262810111046, -0.03677854314446449, -0.030578022822737694, 0.004674956668168306, 0.01697937585413456, -0.013895940035581589, 0.0395943820476532, 0.038001492619514465, -0.005526045802980661, 0.01000336091965437, 0.00199538329616189, 0.01116368267685175, -0.04833526909351349, 0.0031020159367471933, 0.029038824141025543, -0.011592567898333073, -0.013664616271853447, 0.0008599755819886923, 0.008387204259634018, -0.024757521227002144, 0.05034473165869713, -0.036996908485889435, -0.04566695913672447, -0.0386013388633728, 0.0059803021140396595, 0.02346663549542427, -0.013835051096975803, 0.04034977778792381, 0.03992529958486557, -0.015153428539633751, -0.04232477396726608, 0.031741559505462646, -0.048135850578546524, -0.031229201704263687, -0.01977422460913658, 0.04681834205985069, -0.02448815107345581, -0.013932832516729832, -0.056139230728149414, -0.0036571763921529055, -0.025749238207936287, 0.013034477829933167, -0.049432918429374695, -0.04523511603474617, 0.012010587379336357, -0.02135154791176319, -0.04158052057027817, 0.01088042464107275, -0.05204688757658005, 0.005195811856538057, 0.001469750190153718, 0.016468022018671036, -0.0020220016594976187, 0.030519999563694, -0.014799866825342178, -0.010766854509711266, -0.030427681282162666, -0.032073650509119034, 0.026231901720166206, 0.02637605369091034, -0.01382579654455185, 0.01867552287876606, -0.051582422107458115, 0.025313472375273705, 0.03813767060637474, 0.013714040629565716, -0.025059517472982407, -0.005840080790221691, -0.025105884298682213, -0.02262943983078003, 0.004681830760091543, -0.007648511324077845, -0.022756515070796013, 0.014558580704033375, 0.014138620346784592, 0.014265263453125954, -0.007988806813955307, -0.004082879051566124, -0.016930386424064636, 0.0032290376257151365, 0.042563263326883316, 0.010869522579014301, 0.030731499195098877, -0.03380236029624939, -0.028638668358325958, -0.015187414363026619, -0.0056618209928274155, 0.01923304796218872, 0.010425200685858727, 0.026298802345991135, 0.06759213656187057, 0.036164816468954086, 0.005829220172017813, 0.05717025324702263, 0.04049929231405258, -0.05567527189850807, 0.04999547079205513, 0.01124504767358303, 0.008568414486944675, 0.025369875133037567, 0.03857235610485077, -0.010694026947021484, 0.03756680712103844, -0.03708396106958389, -0.020052801817655563, 0.0031326243188232183, -0.026037754490971565, 0.00731254369020462, -0.059695564210414886, -0.003014355432242155, -0.03975692763924599, 0.03175097331404686, -0.024835338816046715, 0.0021265100222080946, 0.06881675869226456, -0.0036139157600700855, 0.006830234080553055, -0.010571775957942009, 0.0247811172157526, 0.026470847427845, -0.018151981756091118, 0.023097679018974304, -0.04127994552254677, 0.012730445712804794, -0.005486534908413887, -0.04142392426729202, 0.06043820455670357, -0.01781081035733223, -0.01749325729906559, -0.011177812702953815, -0.05376143008470535, 0.03619690239429474, 0.03935834392905235, 0.01061594020575285, 0.018168646842241287, -0.0059711323119699955, 0.023643499240279198, 0.07002093642950058, -0.04641716554760933, 0.04134663939476013, 0.005683629773557186, 0.027643218636512756, 0.07679053395986557, 0.026793237775564194, 0.042468152940273285, -0.00428049499168992, -0.0053117889910936356, -0.03703715652227402, 0.011346254497766495, -0.03267046809196472, 0.0285491980612278, -0.016736043617129326, 0.010232212953269482, 0.021389255300164223, -0.0022228159941732883, 0.011916659772396088, 0.008545923046767712, 0.025644857436418533, 0.047536373138427734, -0.021227382123470306, 0.027667049318552017, -0.00721572432667017, 0.018732663244009018, -0.030070943757891655, 0.003747213864699006, -0.05103712156414986, -0.014969292096793652, 0.0008949441253207624, -0.020491939038038254, 0.011730393394827843, -0.025670306757092476, 0.005535776726901531, -0.011650792323052883, 0.024003861472010612, 0.03293325752019882, 0.029343916103243828, 0.028165459632873535, 0.03559695556759834, 0.047704946249723434, -0.022216062992811203, 0.0003458853461779654, 0.01897922344505787, 0.046893224120140076, 0.006829426623880863, -0.03186853229999542, 0.0028982970397919416, -0.030482947826385498, -0.03656866401433945, -0.047380026429891586, 0.027773283421993256, 0.013142297975718975, -0.0022137442138046026, 0.027979478240013123, 0.011160297319293022, 0.02758914977312088, -0.025784652680158615, -0.0018385982839390635, -0.005753996316343546, -0.0514276959002018, -0.03876280412077904, 0.027983523905277252, -0.0215242151170969, 0.03035522624850273, 0.0001775037671905011, -0.020819131284952164, 0.02220403589308262, 0.05050808563828468, -0.05145473778247833, 0.008916129358112812, 0.05293942615389824, -0.011816778220236301, -0.04730062559247017, -0.009837568737566471, 0.04548615217208862, 0.0011894560884684324, -0.013913958333432674, 0.04316951707005501, -0.019409077242016792, -0.028598099946975708, 0.02030850201845169, 0.008083081804215908, 0.04429043084383011, 0.05294083058834076, -0.0326702855527401, -0.002175873378291726, 0.006908928509801626, 0.03399374336004257, -0.030418138951063156, 0.00706497672945261, 0.01451937761157751, 0.06650976091623306, 0.033533576875925064, 0.04145653173327446, 0.04545559361577034, 0.039449870586395264, 0.026030536741018295, 0.04093139246106148, 0.016378140076994896, 0.022385533899068832, 0.020192977041006088, 0.030204007402062416, 0.027332844212651253, 0.04416443780064583, -0.0019431518157944083, -0.0016279539559036493, -0.04610602557659149, -0.001099364017136395, -0.029904229566454887, 0.01482966635376215, -0.026970012113451958, 0.025570131838321686, 0.015045484527945518, 0.010192782618105412, -0.02232441119849682, 0.007855135947465897, 0.03820819780230522, 0.06045478209853172, -0.03356665372848511, -0.006132856942713261, 0.027090322226285934, 0.021246088668704033, 0.015579456463456154, 0.014657111838459969, 0.040783610194921494, 0.031310662627220154, 0.015343860723078251, 0.025359928607940674, -0.024496590718626976, -0.06188097596168518, -0.04438668116927147, -0.053499702364206314, -0.040054529905319214, -0.024303944781422615, -0.056996721774339676, -0.00009240746294381097, 0.037894297391176224, -0.07565488666296005, 0.010552112944424152, -0.02315906248986721, -0.0021009391639381647, -0.030306601896882057, -0.007530463393777609, 0.032434526830911636, 0.04328938573598862, 0.023759182542562485, -0.0018216713797301054, 0.023204367607831955, 0.010261867195367813, 0.020214952528476715, -0.020793454721570015, -0.03368246927857399, -0.010493475012481213, 0.0014401365770027041, 0.02832997590303421, -0.014154748991131783, -0.014022639021277428, 0.0019709912594407797, -0.03328081965446472, -0.0772438570857048, -0.05111077427864075, 0.00257818098179996, -0.018911918625235558, 0.021540341898798943, -0.02056637406349182, 0.029364390298724174, 0.04088634252548218, -0.025970768183469772, 0.044644568115472794, 0.0536300428211689, 0.00850860308855772, 0.0634830966591835, 0.032997336238622665, 0.00017817536718212068, -0.03336638957262039, 0.06581244617700577, 0.05189106985926628, 0.0015662142541259527, -0.03256046399474144, -0.016287682577967644, -0.022966083139181137, -0.018902208656072617, 0.002771980594843626, -0.037352532148361206, -0.012506739236414433, 0.04813944920897484, 0.010115963406860828, -0.056550681591033936, -0.003508524503558874, -0.04528820514678955, -0.007418202236294746, -0.05039659142494202, -0.009113154374063015, 0.032385654747486115, 0.0009750215103849769, 0.04103440046310425, 0.0196356400847435, -0.01617181859910488, 0.020107127726078033, 0.0075473361648619175, 0.03509679064154625, -0.028337376192212105, 0.03951595723628998, 0.031134650111198425, -0.014610683545470238, -0.008098791353404522, 0.018918773159384727, -0.02112119272351265, 0.009874711744487286, 0.00956748891621828, -0.02642333135008812, 0.0017959213582798839, 0.027585163712501526, -0.011557412333786488, 0.01985039748251438, 0.05230304226279259, -0.04589088633656502, 0.01568022556602955, -0.011969809420406818, 0.031008319929242134, 0.020826680585741997, 0.026985837146639824, 0.0005085314041934907, -0.007537733763456345, -0.02289632521569729, -0.056193072348833084, 0.03346547856926918, -0.014931689016520977, 0.07656453549861908, -0.06448227167129517, 0.09082874655723572, -0.003590914187952876, -0.03209405764937401, 0.05649115517735481, -0.06514900177717209, -0.015849187970161438, 0.023878365755081177, -0.011186244897544384, 0.05130043253302574, -0.019038932397961617, -0.000816223444417119, -0.010240508243441582, 0.04029833897948265, 0.034954722970724106, 0.008973552845418453, 0.024582980200648308, -0.008101495914161205, -0.005692789331078529, -0.019322235137224197, 0.00848365668207407, 0.0063425516709685326, -0.03996739536523819, 0.0015844032168388367, -0.038342297077178955, -0.04690321907401085, -0.07731838524341583, 0.026508502662181854, 0.04333921894431114, 0.024887675419449806, -0.04208202660083771, 0.03950798884034157, 0.012700566090643406, 0.032196976244449615, 0.051791660487651825, -0.021497732028365135, 0.010867864824831486, -0.03344406932592392, 0.05112328380346298, 0.04445395618677139, 0.009451773017644882, -0.030886445194482803, -0.03568064793944359, -0.030989082530140877, 0.01729004830121994, 0.0011579855345189571, -0.008444100618362427, -0.05511702969670296, 0.007940088398754597, -0.020829983055591583, 0.03647223487496376, -0.044691793620586395, 0.004704114980995655, -0.00717963557690382, 0.037670597434043884, 0.028233380988240242, -0.009053513407707214, -0.005218983627855778, -0.01816081814467907, 0.03456541895866394, 0.05210324376821518, 0.012596925720572472, -0.060200035572052, -0.018724238499999046, -0.03517962247133255, -0.045211728662252426, 0.014621335081756115, 0.05148693919181824, -0.008842921815812588, -0.006935780867934227, -0.06897134333848953, 0.0363757461309433, 0.03952522948384285, 0.01829550229012966, 0.0025037527084350586, -0.024433530867099762, -0.019792746752500534, -0.036441903561353683, 0.021195579320192337, -0.008812693879008293, -0.009343101643025875, -0.00013806870265398175, -0.04015174135565758, 0.009105348028242588, 0.008310990408062935, -0.0199026670306921, -0.009863253682851791, 0.0342773012816906, 0.004712827503681183, 0.05301988124847412, -0.033852603286504745, 0.036507438868284225, -0.01550117414444685, 0.030400047078728676, -0.03742923215031624, -0.0435449555516243, 0.07462643086910248, -0.03218597546219826, -0.028448475524783134, 0.02540121227502823, 0.056153275072574615, -0.024102365598082542, 0.006414960138499737, -0.002332899486646056, -0.05237513780593872, -0.003797538112848997, -0.042164504528045654, 0.005801716353744268, -0.026173798367381096, -0.02126539871096611, 0.004581136628985405, -0.04529735818505287, 0.03199455887079239, -0.007026988081634045, -0.0037303445860743523, -0.047304995357990265, -0.04816579818725586, -0.016217868775129318, 0.009790204465389252, -0.03129243850708008, -0.003953192383050919, 0.017057128250598907, -0.024844706058502197, -0.006571032106876373, -0.029889481142163277, 0.01729574054479599, -0.0022908165119588375, 0.01029798574745655, 0.007797962054610252, 0.021542571485042572, 0.01364878285676241, 0.021742435172200203, -0.004121257457882166, -0.030441870912909508, -0.005093390587717295, -0.0271123219281435, -0.017153432592749596, -0.037305451929569244, 0.027724161744117737, -0.014099294319748878, 0.008459583856165409, -0.003860378172248602, -0.005499022547155619, -0.022175047546625137, 0.029073543846607208, 0.023635411635041237, 0.026351824402809143, 0.00930776260793209, 0.013169009238481522, -0.02723780646920204, 0.03373510763049126, 0.02594098262488842, -0.055017489939928055, -0.012240164913237095, 0.0019835736602544785, -0.0384150892496109, 0.03796696662902832, 0.05283399298787117, -0.018077149987220764, -0.0471118800342083, -0.0546715222299099, 0.001559385098516941, -0.05882606655359268, -0.04958660900592804, -0.03382069244980812, -0.030820688232779503, -0.0016510513378307223, 0.03827163577079773, 0.0327397957444191, -0.005762062501162291, 0.0246160589158535, -0.0206095352768898, 0.03127302601933479, -0.026986675336956978, -0.024413544684648514, -0.02800711803138256, -0.004927231464534998, 0.0004788576334249228, 0.03916433826088905, 0.012928460724651814, 0.023256825283169746, 0.006533329840749502, -0.0020877616479992867, -0.004548515193164349, -0.04268505796790123, -0.061162069439888, -0.06187289208173752, -0.025279467925429344, 0.024938635528087616, -0.00290913344360888, 0.04004712402820587, -0.016475576907396317, 0.04133245348930359, -0.031821005046367645, -0.00476474966853857, -0.0202131737023592, 0.018829597160220146, -0.037525393068790436, -0.013371584005653858, 0.03005177713930607, -0.028160804882645607, -0.005861050449311733, 0.011894968338310719, 0.025386370718479156, 0.010988428257405758, -0.01165703497827053, -0.02677505649626255, -0.04491773992776871, -0.06260871142148972, -0.04042917862534523, 0.032039824873209, -0.03336738422513008, -0.017787788063287735, -0.042421817779541016, -0.03374576196074486, 0.056714314967393875, -0.018435921519994736, 0.029590126127004623, 0.06272360682487488, -0.02175305411219597, 0.017410630360245705, -0.049086689949035645, 0.023418482393026352, 0.017135465517640114, -0.008068511262536049, -0.01592293195426464, -0.018623432144522667, -0.04152323305606842, 0.019013050943613052, -0.04248272255063057, -0.02197190932929516, -0.028805583715438843, -0.028386972844600677, 0.04986367002129555, -0.019315240904688835, 0.022481800988316536, 0.04091830179095268, -0.07508040964603424, -0.00714891916140914, 0.046231284737586975, 0.007269939407706261, 0.029518237337470055, 0.02091030217707157, -0.017991989850997925, -0.008956054225564003, 0.012461000122129917, 0.003512299619615078, 0.013636339455842972, -0.046763189136981964, 0.06045494228601456, 0.008831229992210865, -0.04821740463376045, -0.020184600725769997, 0.05270465090870857, -0.03225604072213173, -0.029799921438097954, -0.00028238672530278563, 0.00756794773042202, -0.007214569486677647, -0.027664346620440483, 0.020273223519325256, -0.004565522074699402, 0.026711400598287582, 0.013493125326931477, 0.026764893904328346, -0.011144031770527363, 0.025973966345191002, 0.04586143419146538, 0.03845789283514023, -0.00651617581024766, 0.004048554692417383, 0.004408383276313543, 0.020354581996798515, -0.02280266024172306, -0.036237385123968124, -0.009687336161732674, -0.007767375558614731, -0.010695838369429111, 0.05110161751508713, -0.030296459794044495, 0.013190118595957756, -0.001454669632948935, -0.0016484778607264161, 0.05744433403015137, 0.004594952799379826, 0.009534753859043121, 0.011702490970492363, -0.0221292395144701, -0.0512232668697834, -0.019273219630122185, 0.034148164093494415, 0.030065782368183136, 0.01918574795126915, -0.028897995129227638, 0.011865029111504555, 0.04573245346546173, -0.0024144479539245367, 0.018806178122758865, -0.09367190301418304, -0.027809349820017815, -0.055910639464855194, -0.03907289728522301, -0.007740180008113384, -0.012195471674203873, 0.009375004097819328, 0.012968206778168678, -0.039170559495687485, -0.05839484557509422, -0.004850860219448805, 0.026597727090120316, -0.01072589959949255, -0.0018891243962571025, -0.038489390164613724, 0.023264601826667786, -0.03459586575627327, -0.039388980716466904, -0.06364666670560837, 0.0038164397701621056, -0.004593348130583763, -0.003342403331771493, -0.02273564413189888, 0.007661661133170128, -0.010350462049245834, 0.044434547424316406, -0.0033069285564124584, 0.017490755766630173, -0.030957886949181557, -0.050441596657037735, -0.020076274871826172, 0.03055751323699951, -0.006596467457711697, 0.017624201253056526, 0.02052602730691433, -0.006759938783943653, 0.06810469925403595, -0.010416499339044094, -0.03559832274913788, -0.0032642220612615347, 0.012029309757053852, 0.010152101516723633, -0.0017155790701508522, -0.031148890033364296, -0.048403944820165634, -0.01108989305794239, -0.0584612712264061, 0.023811032995581627, 0.020342957228422165, 0.02240334078669548, -0.005055234767496586, 0.0056586842983961105, -0.01168887596577406, 0.04989759624004364, 0.003894613590091467, 0.017726045101881027, 0.0030046673491597176, 0.02028210461139679, 0.010787752456963062, -0.0058091129176318645, 0.022313833236694336, 0.04174061492085457, 0.01509892102330923, -0.025981049984693527, 0.019081873819231987, -0.011361354030668736, -0.02534252218902111, 0.034733861684799194, -0.016104139387607574, -0.007421265356242657, -0.047544024884700775, -0.006576763931661844, -0.009345294907689095, 0.040057748556137085, 0.010724174790084362, 0.015113291330635548, 0.01858115755021572, -0.02414710447192192, -0.04146299138665199, 0.03016558103263378, -0.0832202360033989, -0.031204039230942726, 0.04837576299905777, -0.04741189256310463, -0.0030736715998500586, -0.01949569769203663, -0.04027976095676422, -0.006668068468570709, -0.021108048036694527, -0.020129259675741196, -0.052605271339416504, 0.033754654228687286, -0.024567535147070885, 0.042069461196660995, -0.03580566123127937, 0.01783142238855362, 0.013294829055666924, 0.04187360778450966, -0.039333365857601166, -0.03744368627667427, 0.02745535597205162, 0.004529798869043589, 0.022780006751418114, -0.01016812864691019, 0.005787388887256384, 0.002710424130782485, -0.02567443810403347, 0.02300514280796051, 0.02394021302461624, 0.015751956030726433, -0.0020954611245542765, 0.025655552744865417, -0.001885492354631424, 0.01081078965216875, -0.021859781816601753, 0.050442878156900406, 0.005996270105242729, -0.02335665002465248, -0.0022416093852370977, 0.026167647913098335, 0.05138919875025749, 0.0009501137537881732, 0.021061759442090988, 0.007339212577790022, 0.05397656932473183, -0.018168166279792786, 0.00989905558526516, -0.01310785487294197, 0.035018306225538254, 0.0629681870341301, 0.02206009067595005, 0.03130711242556572, 0.034213751554489136, 0.050275880843400955, 0.019978538155555725, 0.008581834845244884, 0.012117234990000725, 0.008983771316707134, -0.005380048416554928, -0.03803826868534088, -0.002975323935970664, 0.02015373483300209, 0.03820100054144859, -0.021955259144306183, -0.009984459728002548, -0.05274435877799988, -0.005720885004848242, -0.02359626069664955, -0.008686617016792297, 0.07175878435373306, -0.018798140808939934, 0.0051257312297821045, 0.0009117953013628721, -0.04155522212386131, -0.003280558157712221, 0.04113878682255745, 0.027632232755422592, 0.001780804479494691, 0.03355276584625244, 0.0294545516371727, -0.003832868067547679, 0.05909816548228264, 0.011158986017107964, 0.004791346378624439, -0.0365682914853096, 0.02146289125084877, 0.0162033811211586, 0.0020340499468147755, -0.06061389297246933, 0.0038975297939032316, -0.004018454812467098, 0.04520749673247337, -0.003762132953852415, -0.005993526428937912, 0.04910770803689957, -0.06674250215291977, -0.06739909946918488, -0.08315972983837128, 0.03806661069393158, -0.02385530062019825, -0.016464894637465477, 0.05217716842889786, -0.0010146002750843763, -0.026317082345485687, 0.03939260169863701, -0.014628099277615547, 0.0264071524143219, 0.0009849750204011798, 0.0605258010327816, 0.014779850840568542, 0.042956314980983734, 0.06060382351279259, -0.039404913783073425, -0.007243607193231583, 0.04623224958777428, -0.010267849080264568, -0.03953867405653, -0.015048185363411903, -0.07070083916187286, -0.03294406086206436, -0.0441993810236454, -0.016789494082331657, -0.03014295920729637, 0.03703680634498596, -0.01958833821117878, -0.037216950207948685, -0.02709054760634899, 0.04431486874818802, -0.05484287440776825, 0.006662484724074602, 0.03645838424563408, 0.037762563675642014, -0.01912938989698887, -0.03981723263859749, -0.01611880213022232, -0.0009824448497965932, -0.011635775677859783, -0.017217082902789116, 0.033452555537223816, 0.0032050758600234985, -0.011398639529943466, -0.024362074211239815, -0.040530264377593994, -0.014565239660441875, 0.005101715214550495, -0.038728080689907074, -0.02593461237847805, 0.009849634021520615, 0.03924500569701195, -0.0001510648726252839, 0.01203277800232172, -0.02648603543639183, 0.028303341940045357, 0.029565664008259773, 0.04857530817389488, 0.009439253248274326, 0.04728216677904129, 0.046286895871162415, -0.004401962738484144, 0.02125859260559082, -0.022815173491835594, 0.014529735781252384, -0.02873331867158413, -0.02312244474887848, -0.017015865072607994, 0.014017892070114613, -0.029009556397795677, -0.07721871137619019, -0.007125464733690023, -0.004817643668502569, 0.004001349676400423, -0.013576768338680267, -0.03835924342274666, 0.0008208049111999571, -0.03381652384996414, 0.003341329051181674, -0.05446463078260422, 0.01048321183770895, 0.019593900069594383, 0.003932958468794823, 0.01212925836443901, -0.07719431072473526, 0.1488506942987442, 0.05152790993452072, 0.029792169108986855, 0.0140776876360178, 0.03565799072384834, 0.07367203384637833, 0.016370533034205437, 0.02632158063352108, -0.010588306933641434, -0.04242723807692528, 0.018863612785935402, -0.013766388408839703, 0.013604721985757351, 0.009530657902359962, 0.020398130640387535, 0.06587833911180496, -0.03980911523103714, -0.0035897556226700544, 0.010417373850941658, -0.025977274402976036, -0.02871396392583847, 0.0035056406632065773, -0.01921432465314865, 0.010868045501410961, 0.0029300458263605833, 0.014531312510371208, 0.05250757187604904, -0.060298286378383636, -0.0073007214814424515, -0.03989030793309212, 0.015996137633919716, -0.026203012093901634, 0.024177467450499535, -0.018000364303588867, -0.05513814836740494, 0.06369729340076447, -0.0007459758198820055, -0.06372259557247162, 0.014347035437822342, 0.04435019567608833, -0.03328067064285278, -0.018597295507788658, 0.032018695026636124, -0.032746508717536926, 0.03299775347113609, 0.006634058430790901, -0.024433327838778496, -0.00345899467356503, 0.014919860288500786, -0.02315298467874527, 0.05745274946093559, -0.0399666465818882, 0.0148409903049469, 0.009335195645689964, -0.012190118432044983, -0.007506722584366798, 0.019498512148857117, -0.034989774227142334, -0.028695663437247276, -0.0037057637237012386, 0.03469739481806755, 0.02585458941757679, -0.03496299311518669, -0.018162649124860764, -0.04849863052368164, 0.0151293920353055, 0.01449914276599884, 0.0003782743006013334, -0.0036049087066203356, 0.003974837716668844, -0.0039634802378714085, 0.004940780345350504, -0.0038904512766748667, -0.009894926100969315, 0.034069087356328964, 0.03520769625902176, -0.013792595826089382, 0.004853769671171904, 0.010588032193481922, -0.025832870975136757, -0.0009485422051511705, -0.03351595997810364, -0.030803406611084938, 0.01921236887574196, 0.029910027980804443, 0.04640352353453636, -0.06336209177970886, -0.05526282265782356, -0.034609418362379074, 0.058478109538555145, 0.025564689189195633, 0.01647069677710533, -0.014638317748904228, -0.010827207937836647, -0.025324104353785515 ]
Irishinutah.org: WordPress site for the Utah Hibernian Society. - Web Design, PHP, iOS & Android developers Salt Lake | Basebuild, Inc. Irishinutah.org: WordPress site for the Utah Hibernian Society. The Hibernian Society of Utah was formed to promote and preserve Irish history, culture and traditions within the State of Utah. We are a non-profit organization that strives to present a variety of events and activities throughout the year. The Society meets once a month from September through June and holds informal classes in Irish history, literature, music and culture on a monthly basis. Basebuild is a proud supporter of the Irish community and works to support the Utah Hibernian Society in a development of digital marketing capacity.
[ -0.033412184566259384, 0.008317215368151665, -0.03525135666131973, -0.004381151404231787, -0.0006635870086029172, 0.03874488174915314, -0.007640276104211807, 0.03226437419652939, 0.021416516974568367, -0.002082920866087079, 0.06216131150722504, 0.018275916576385498, 0.02280949428677559, -0.0225492175668478, -0.012792857363820076, -0.005969814956188202, -0.037884000688791275, -0.03850933164358139, -0.0064642527140676975, -0.00003005123471666593, -0.0022877405863255262, 0.01715967431664467, -0.04864499717950821, -0.037126291543245316, -0.014917111955583096, 0.0527259036898613, 0.028114423155784607, -0.004554698243737221, 0.0640706792473793, 0.05107932910323143, -0.012763164937496185, -0.06191105395555496, 0.016213582828640938, -0.06905309110879898, -0.01210346631705761, -0.030708331614732742, 0.052370913326740265, -0.03599659726023674, 0.00042559660505503416, -0.044673316180706024, 0.025146855041384697, 0.03715871647000313, 0.0004206786397844553, -0.0442686602473259, -0.048175204545259476, 0.019103962928056717, -0.034693703055381775, -0.0464133694767952, 0.020581189543008804, -0.0004437562602106482, 0.012796108610928059, -0.021529670804739, 0.0008331550634466112, 0.009352690540254116, 0.022132011130452156, 0.00865563377737999, -0.013935403898358345, -0.002286879112944007, -0.024964507669210434, 0.03661290183663368, 0.03929261863231659, 0.015931643545627594, 0.04121587425470352, -0.05341734364628792, 0.04217373952269554, 0.04202323406934738, -0.013521046377718449, -0.023292072117328644, 0.005402734503149986, -0.025398369878530502, -0.012821996584534645, 0.0010009800316765904, -0.025401609018445015, -0.009052437730133533, -0.006623372435569763, 0.02304878830909729, 0.0201154425740242, -0.008831121027469635, -0.013707069680094719, -0.027560008689761162, 0.016362177208065987, 0.05973796546459198, 0.038981784135103226, 0.003917274996638298, -0.06183510646224022, -0.016916325315833092, -0.004166048020124435, 0.011117481626570225, 0.008318081498146057, -0.008519121445715427, -0.0023792756255716085, 0.0667165219783783, 0.004021515138447285, 0.014107488095760345, 0.020855503156781197, 0.06267642974853516, -0.05695439502596855, 0.047178059816360474, 0.007820293307304382, 0.02440837025642395, 0.048928506672382355, -0.006511189974844456, -0.03115546517074108, 0.0352969728410244, -0.06669693440198898, -0.0275467149913311, 0.012143307365477085, -0.01082930900156498, 0.022159544751048088, -0.043488722294569016, 0.01769177056849003, -0.02350917086005211, 0.03619668632745743, -0.021093985065817833, -0.006255299784243107, -0.002721556928008795, -0.03387460485100746, 0.04039255529642105, -0.04356904700398445, 0.007049078121781349, 0.024472400546073914, -0.004957594908773899, 0.03015126660466194, -0.03140867501497269, -0.010238146409392357, -0.026213733479380608, 0.006455305963754654, 0.04570220038294792, -0.007611481938511133, -0.014285863377153873, 0.024172475561499596, -0.05994633585214615, -0.011107395403087139, 0.038867007941007614, -0.021747522056102753, 0.019183659926056862, 0.012392015196383, 0.058937035501003265, 0.055854540318250656, -0.04999854415655136, 0.03407097980380058, 0.0300433412194252, 0.01840590126812458, 0.0771181508898735, 0.01749369315803051, 0.011447420343756676, 0.0004750373191200197, -0.01585523411631584, -0.05106022208929062, 0.017992904409766197, 0.010607479140162468, 0.025200527161359787, 0.011095542460680008, 0.023115867748856544, 0.01679243892431259, -0.00997551716864109, -0.007505001034587622, 0.03524487093091011, 0.023023294284939766, 0.041950371116399765, -0.059419453144073486, 0.05027797073125839, -0.0033736280165612698, 0.054552216082811356, -0.018400607630610466, 0.022866174578666687, -0.02936738170683384, -0.007853635586798191, -0.023303130641579628, -0.0388159304857254, 0.018551956862211227, -0.004002339206635952, -0.04589933156967163, 0.021613875404000282, 0.007611023727804422, 0.02689877338707447, 0.02884672023355961, -0.013567734509706497, 0.04258452728390694, 0.039819132536649704, -0.014147449284791946, 0.01572268083691597, 0.035650890320539474, 0.0665976032614708, -0.00028823077445849776, -0.01933620497584343, -0.02444778010249138, -0.016546975821256638, -0.04924642667174339, -0.0301577877253294, -0.0011856529163196683, 0.008872502483427525, -0.02906855009496212, 0.05714305490255356, 0.01375752966850996, 0.014328320510685444, 0.0008710304391570389, -0.02784258872270584, -0.022085774689912796, -0.0589931383728981, -0.02970070391893387, 0.05355927348136902, -0.025994421914219856, 0.008075712248682976, 0.008838730864226818, -0.05398484691977501, 0.019752154126763344, 0.04832158237695694, -0.06258360296487808, -0.007432577200233936, 0.04589081555604935, 0.006226212717592716, -0.026952574029564857, 0.030619317665696144, -0.006076171062886715, 0.00868560653179884, -0.03712545707821846, 0.027897533029317856, -0.03295152634382248, -0.014331051148474216, -0.0033310058061033487, 0.04388841986656189, 0.024595122784376144, 0.040371183305978775, -0.025958353653550148, -0.01582690142095089, 0.03241369500756264, 0.04583711177110672, -0.06090342625975609, -0.018045350909233093, -0.006803004536777735, 0.04987959936261177, 0.0289587564766407, 0.032027650624513626, 0.03901730105280876, -0.008492601104080677, 0.019500356167554855, 0.07457052171230316, -0.01106292475014925, 0.025316279381513596, -0.0043875048868358135, 0.001009166007861495, 0.02055204287171364, 0.028981732204556465, -0.017464149743318558, -0.015996426343917847, 0.008975869975984097, 0.007633477449417114, -0.02530667930841446, 0.058070581406354904, -0.009392819367349148, 0.0394965261220932, 0.03159581497311592, 0.05258825421333313, -0.029052043333649635, -0.008535324595868587, 0.049687888473272324, 0.030926145613193512, -0.046949535608291626, 0.008853242732584476, -0.010758801363408566, 0.02052142471075058, -0.001174698700197041, 0.03116881474852562, 0.0056060925126075745, -0.0069006686098873615, 0.013885105028748512, 0.024163393303751945, -0.009147699922323227, -0.03461892157793045, -0.021846188232302666, -0.05933050811290741, -0.013761725276708603, -0.025187766179442406, -0.03874095529317856, 0.0013712699292227626, 0.041133057326078415, -0.056801337748765945, 0.011138040572404861, 0.01361769437789917, 0.004491583909839392, -0.005230319686233997, -0.005641940515488386, 0.0021930194925516844, 0.02416411228477955, 0.03401831537485123, -0.02940118871629238, 0.008023247122764587, -0.009338119067251682, 0.03126724064350128, -0.02727132849395275, 0.0038841459900140762, -0.002574500162154436, 0.009672874584794044, 0.030692756175994873, -0.018737517297267914, -0.0321807786822319, -0.0064165652729570866, -0.02365890145301819, -0.06644820421934128, 0.030776280909776688, -0.0100141242146492, -0.014143167994916439, 0.01426853146404028, -0.0420827679336071, 0.04026774689555168, 0.045854538679122925, -0.006496167276054621, 0.0687812939286232, 0.04733394831418991, -0.006573897786438465, 0.024946322664618492, 0.009047429077327251, 0.0012565547367557883, -0.046945758163928986, 0.06215967237949371, 0.024207808077335358, 0.020953815430402756, -0.044222064316272736, -0.021185386925935745, -0.0607166662812233, -0.015278649516403675, 0.006221410818397999, 0.002351169241592288, -0.010749167762696743, 0.03115088865160942, 0.015260337851941586, -0.0827801376581192, 0.00300868833437562, -0.04010689631104469, -0.0185595341026783, -0.046692103147506714, -0.03231704607605934, 0.051461782306432724, 0.002732019405812025, 0.015267632901668549, 0.02250451222062111, -0.013852281495928764, 0.02050129882991314, 0.0181872621178627, 0.01647607423365116, -0.03579699993133545, 0.008844146504998207, 0.04677874222397804, 0.018658308312296867, 0.005370759405195713, -0.01273101195693016, -0.024366436526179314, 0.022012876346707344, 0.0031753743533045053, 0.00488184904679656, 0.026544952765107155, 0.029439082369208336, -0.0006081921164877713, 0.056012894958257675, 0.04590366408228874, -0.026671277359128, -0.015399240888655186, 0.02034403756260872, 0.031151317059993744, 0.04744115099310875, 0.00138368911575526, 0.029895341023802757, -0.041402723640203476, -0.015390804037451744, -0.05553682893514633, 0.04821789264678955, 0.001158717437647283, 0.05305277928709984, -0.0855351984500885, 0.06128160282969475, -0.003536972450092435, -0.02719257026910782, 0.06348732858896255, -0.06053471937775612, -0.022858021780848503, 0.04498082026839256, -0.003951766062527895, 0.021213103085756302, -0.01266321912407875, 0.022805968299508095, -0.0021865854505449533, 0.011256691999733448, 0.03848066180944443, 0.0020228582434356213, 0.013228424824774265, -0.038304779678583145, -0.027686426416039467, -0.02200598455965519, 0.0031437298748642206, -0.025074457749724388, -0.045497722923755646, 0.018282147124409676, -0.020217036828398705, -0.03096333146095276, -0.07984694838523865, 0.04899296164512634, 0.020274624228477478, 0.06325729191303253, -0.0003320224932394922, 0.0403200127184391, -0.00104041351005435, 0.01635720208287239, 0.004613063298165798, -0.014926981180906296, 0.03588227555155754, -0.041507016867399216, 0.028995640575885773, 0.02049432136118412, -0.03377687931060791, -0.016652198508381844, -0.04028848931193352, -0.039281610399484634, 0.0077191246673464775, 0.014687303453683853, -0.025625934824347496, -0.05523424223065376, 0.006053284741938114, 0.00977905560284853, 0.027368947863578796, -0.039687830954790115, 0.01047846395522356, -0.016565999016165733, 0.05457146838307381, 0.006150522269308567, -0.031122049316763878, -0.003909893799573183, -0.03498482704162598, 0.030828258022665977, 0.04990490525960922, 0.024025408551096916, -0.044288624078035355, -0.0034692692570388317, -0.03301040455698967, -0.026387423276901245, 0.006901856511831284, 0.04724114015698433, 0.024445803835988045, 0.017002424225211143, -0.06568551808595657, 0.036085695028305054, 0.022944575175642967, 0.0039713019505143166, -0.006588634103536606, -0.017239997163414955, 0.00012683719978667796, -0.019195007160305977, 0.039353013038635254, -0.003740716027095914, -0.02562820352613926, 0.002703885780647397, -0.03736157342791557, -0.015429179184138775, -0.011512689292430878, -0.045324865728616714, -0.006415763404220343, 0.025366107001900673, -0.007409736048430204, 0.056124765425920486, -0.035750485956668854, 0.019735543057322502, -0.0006434631650336087, 0.044983211904764175, -0.02566305547952652, -0.041860245168209076, 0.07265830785036087, -0.02450275793671608, -0.033860184252262115, 0.019699228927493095, 0.02431006357073784, -0.031995564699172974, -0.008508059196174145, 0.022096430882811546, -0.03276447951793671, 0.031276971101760864, -0.03762197494506836, 0.0350072868168354, -0.006759466603398323, -0.0368509516119957, -0.003857944393530488, -0.029332797974348068, 0.01410744059830904, 0.009448585100471973, -0.025624249130487442, -0.04255751892924309, -0.08049768209457397, -0.01070775743573904, 0.013830513693392277, -0.03060276061296463, 0.004395222291350365, -0.002280173823237419, -0.01820874772965908, -0.022991562262177467, -0.010612278245389462, -0.0220950860530138, 0.003685639938339591, -0.009292522445321083, -0.0014686199137941003, 0.0208510160446167, 0.017516059800982475, 0.02386959083378315, -0.003352856496348977, -0.05337490886449814, -0.011014909483492374, -0.013462929055094719, -0.020460495725274086, -0.034726135432720184, 0.02087770588696003, -0.03503090888261795, -0.003390818601474166, -0.018087463453412056, -0.004389465320855379, -0.026503799483180046, 0.0261027030646801, 0.032708726823329926, -0.00444949883967638, 0.03653007745742798, 0.010606176219880581, -0.03964359685778618, 0.03554580733180046, 0.02859506942331791, -0.052435893565416336, -0.0511617511510849, -0.01226936373859644, 0.00959288515150547, 0.0451943539083004, 0.007611125707626343, 0.021906858310103416, -0.04047632962465286, -0.09019850939512253, 0.004388296511024237, -0.032549288123846054, -0.037539105862379074, -0.028435753658413887, -0.037364859133958817, -0.008492028340697289, 0.05426690727472305, 0.008314169943332672, 0.0032084686681628227, 0.012566297315061092, -0.01917088031768799, -0.005318440031260252, -0.015571823343634605, -0.011828134767711163, -0.016702234745025635, 0.004596673417836428, -0.009579704143106937, 0.05561326444149017, 0.009990070015192032, 0.029681788757443428, 0.02976807951927185, -0.01102490909397602, 0.016896329820156097, -0.003943542018532753, -0.054886344820261, -0.021332699805498123, -0.008541218936443329, -0.017095012590289116, -0.00437122629955411, -0.012482726015150547, -0.0491829514503479, 0.052733682096004486, -0.04444858431816101, -0.01781967654824257, -0.025225929915905, -0.010668588802218437, -0.0413619726896286, -0.013387983664870262, 0.03056775964796543, -0.04336131736636162, 0.02416161075234413, 0.006470592226833105, 0.04831138253211975, 0.016163500025868416, 0.007707839831709862, -0.02384762093424797, -0.02790917083621025, -0.030583396553993225, -0.043821558356285095, 0.011824522167444229, -0.025779640302062035, -0.006441429723054171, -0.049408264458179474, -0.019647618755698204, 0.039747755974531174, -0.0025360232684761286, 0.046623267233371735, 0.04877594858407974, -0.013692023232579231, 0.023810284212231636, -0.022289704531431198, 0.037199411541223526, 0.018889743834733963, 0.02061290293931961, 0.018484510481357574, -0.017830241471529007, -0.05126035213470459, 0.025640446692705154, -0.05796954408288002, -0.024150323122739792, -0.053276482969522476, -0.023579858243465424, 0.06678200513124466, -0.01250278577208519, 0.024240175262093544, -0.03750162199139595, -0.04867606982588768, -0.031306929886341095, 0.04983595013618469, 0.011692515574395657, 0.004418358206748962, 0.043357737362384796, 0.02454211562871933, -0.031847722828388214, 0.014329046942293644, -0.010449310764670372, -0.0019114065216854215, -0.03214898332953453, 0.048579901456832886, 0.014695881865918636, -0.03444031625986099, 0.017612358555197716, 0.050940074026584625, -0.06833057105541229, -0.015750233083963394, 0.016159767284989357, 0.007377526722848415, 0.014713828451931477, -0.01192864216864109, 0.003037071321159601, 0.006985055282711983, 0.01376902312040329, -0.023256758227944374, 0.026153845712542534, 0.0017512605991214514, 0.05546499416232109, -0.025300895795226097, 0.047003522515296936, -0.02201787568628788, -0.01919584721326828, 0.015096331015229225, -0.015371544286608696, -0.02918214537203312, -0.005411204416304827, -0.008067568764090538, -0.0017499763052910566, 0.03677232190966606, 0.04538046568632126, -0.012021981179714203, 0.022550417110323906, 0.025581179186701775, -0.006167026702314615, 0.04656590521335602, -0.01693209633231163, -0.03903091326355934, 0.0004293372039683163, -0.04560718685388565, -0.056753821671009064, -0.0365738607943058, 0.018065329641103745, -0.012073857709765434, 0.04468400031328201, -0.033736053854227066, 0.02341776341199875, 0.03382399305701256, 0.015040293335914612, 0.007116977591067553, -0.013078859075903893, -0.033662907779216766, -0.017531253397464752, -0.03635780140757561, -0.043505437672138214, 0.0009833844378590584, -0.007214400917291641, 0.02018021233379841, 0.007251816336065531, -0.05616099014878273, -0.02395303174853325, 0.0013463128125295043, -0.02291702665388584, 0.0019017386948689818, -0.04007343575358391, -0.005488459020853043, -0.026235824450850487, -0.04946542903780937, -0.029605822637677193, -0.028071166947484016, -0.012258347123861313, -0.02300081215798855, -0.016545232385396957, 0.03311537578701973, 0.00564801599830389, 0.027305690571665764, 0.018907535821199417, 0.007894959300756454, -0.02279496006667614, -0.01870168000459671, -0.009498445317149162, 0.019117208197712898, -0.02258537895977497, 0.03675929829478264, 0.005726364906877279, -0.0060908910818398, 0.02135923132300377, 0.01017339713871479, -0.036015503108501434, -0.006802739109843969, -0.01941661536693573, 0.011005997657775879, 0.009011170826852322, -0.04565404728055, -0.03114568442106247, 0.0317566841840744, -0.04138588532805443, 0.026638174429535866, 0.004732481669634581, 0.0035248934291303158, 0.0050509292632341385, -0.0020886510610580444, 0.00650797737762332, 0.0662711039185524, -0.01819068007171154, 0.026240302249789238, 0.007811421062797308, 0.024699551984667778, 0.03158468380570412, 0.0013594224583357573, 0.027072163298726082, 0.023105790838599205, -0.019044507294893265, -0.023078057914972305, 0.006841310765594244, -0.008846460841596127, -0.0016989749856293201, 0.06227807700634003, -0.024717163294553757, -0.007298991084098816, -0.06827092170715332, -0.02397277019917965, 0.01924624666571617, 0.041016653180122375, -0.015731055289506912, 0.00034993671579286456, 0.028586745262145996, -0.0009316634968854487, -0.03921375051140785, 0.03150704503059387, -0.04863879829645157, -0.023837804794311523, 0.02652297541499138, -0.04387703910470009, -0.0028575363103300333, -0.03364101052284241, -0.05448026582598686, 0.018737901002168655, -0.023698996752500534, -0.030937960371375084, -0.04098615422844887, 0.0220148004591465, -0.011648970656096935, 0.021085243672132492, -0.011360702104866505, -0.012483939528465271, 0.015368306078016758, 0.04868650063872337, -0.02489599399268627, -0.01723884977400303, 0.040024980902671814, 0.018491320312023163, 0.008915475569665432, 0.022250741720199585, 0.015621641650795937, 0.00719916308298707, -0.007565462030470371, 0.024090714752674103, -0.00984309520572424, 0.02956002578139305, 0.014986850321292877, 0.020332179963588715, -0.025893209502100945, 0.03285041078925133, -0.02041889913380146, 0.02594226971268654, -0.0008545125019736588, -0.029261844232678413, -0.04351884126663208, 0.04611685499548912, 0.04806867986917496, -0.007297436241060495, 0.047532275319099426, -0.01150883361697197, 0.06491284817457199, -0.016011307016015053, 0.015446326695382595, -0.015194190666079521, 0.052510134875774384, 0.043738193809986115, 0.03488532453775406, -0.025421451777219772, 0.04521302878856659, 0.023761102929711342, -0.011569171212613583, -0.005919407121837139, 0.04747123643755913, 0.03666951134800911, -0.029761191457509995, -0.00651333574205637, -0.02122952602803707, 0.011629501357674599, 0.01638314314186573, -0.006182556506246328, 0.01365616638213396, -0.04051230847835541, -0.003400054294615984, -0.034265026450157166, -0.028326740488409996, 0.0364498607814312, -0.025039387866854668, 0.026277972385287285, -0.0049347723834216595, -0.006660499144345522, -0.004198478069156408, 0.058742351830005646, -0.0023256191052496433, 0.03998382017016411, 0.02419433929026127, 0.0335216261446476, -0.02740795537829399, 0.039184410125017166, 0.007570028770714998, 0.01699826680123806, -0.030680164694786072, 0.02560959756374359, 0.011960308998823166, 0.022987794131040573, -0.03224581852555275, 0.00651930645108223, -0.0019982890225946903, 0.055116571485996246, -0.02326071262359619, 0.004607392009347677, 0.054927799850702286, -0.03339282423257828, -0.053937725722789764, -0.025857917964458466, 0.03664180263876915, -0.055099982768297195, -0.023716188967227936, 0.02551729418337345, 0.008502861484885216, -0.016547277569770813, 0.03471362590789795, -0.030714210122823715, 0.04436375945806503, 0.008483260869979858, 0.024785300716757774, -0.004465573467314243, 0.041624754667282104, 0.039960119873285294, -0.05914941430091858, 0.019017988815903664, 0.005623193923383951, 0.0009475398692302406, -0.021079592406749725, -0.05550641566514969, -0.03619426488876343, -0.011688164435327053, 0.013414349406957626, -0.030116649344563484, 0.00107775058131665, 0.03999808058142662, -0.007576814852654934, -0.05277986824512482, 0.014153127558529377, 0.02146059088408947, -0.04590566083788872, 0.008678797632455826, -0.00446326145902276, 0.024619264528155327, -0.019245246425271034, -0.03873882442712784, -0.010888312011957169, -0.01273352187126875, -0.009321524761617184, -0.04294062778353691, 0.01757967099547386, -0.0015229313867166638, -0.011346644721925259, -0.022063814103603363, -0.03696919605135918, -0.034261830151081085, -0.006634096149355173, -0.02691236324608326, -0.009318140335381031, 0.021805990487337112, 0.039602018892765045, -0.0012760520912706852, 0.035545408725738525, -0.024480339139699936, 0.017148010432720184, 0.03963402658700943, 0.07709985971450806, 0.0037701292894780636, 0.052682243287563324, 0.039455264806747437, -0.020046532154083252, 0.006195942871272564, -0.01162605918943882, 0.042736731469631195, -0.026665566489100456, -0.027275029569864273, -0.04668262228369713, 0.009191588498651981, -0.04872466251254082, -0.03133494034409523, 0.035568587481975555, 0.0236932672560215, 0.003173151984810829, -0.025157537311315536, -0.03423760458827019, -0.0029277445282787085, -0.047043513506650925, -0.03374825417995453, -0.08409220725297928, -0.004277426283806562, 0.0313887819647789, -0.018057363107800484, -0.006436591502279043, -0.04465721547603607, 0.1558055579662323, 0.05031782016158104, 0.029845740646123886, -0.00660468777641654, 0.0172738004475832, 0.04603144899010658, 0.054615624248981476, -0.007704626768827438, -0.008808585815131664, -0.04416770860552788, 0.02405799739062786, -0.025537829846143723, 0.030831526964902878, 0.009292512200772762, 0.021851150318980217, 0.049289315938949585, -0.013551455922424793, 0.04089575260877609, 0.011990799568593502, -0.05277465283870697, -0.05899900570511818, 0.001916957087814808, -0.02126033790409565, 0.007835647091269493, 0.02765066735446453, 0.0011140034766867757, 0.019342714920639992, -0.07917007058858871, -0.019218169152736664, 0.006875638384371996, 0.02684374712407589, -0.03517613187432289, 0.04325178638100624, 0.0027393302880227566, -0.046667784452438354, 0.06491295993328094, -0.0061378031969070435, -0.04950851947069168, 0.0018496396951377392, 0.026729397475719452, -0.038286663591861725, -0.019630059599876404, 0.05934658274054527, -0.045662879943847656, 0.004713182803243399, 0.015072223730385303, -0.03429867699742317, -0.010065512731671333, 0.03635869547724724, 0.007569904439151287, 0.04759868234395981, -0.04402908310294151, 0.027075137943029404, -0.0047042774967849255, -0.04952073469758034, 0.024675389751791954, -0.000284508423646912, -0.01717512309551239, -0.00807937327772379, -0.007797716185450554, 0.040624186396598816, 0.01602312922477722, -0.045135531574487686, -0.0013503555674105883, -0.0011433599283918738, 0.041525986045598984, 0.00071412866236642, 0.029913218691945076, -0.02402551844716072, -0.03535233438014984, -0.01877935603260994, -0.0027852554339915514, -0.002397344447672367, -0.023012731224298477, 0.018953323364257812, 0.03604011982679367, -0.05032522976398468, 0.02480531670153141, -0.007628112565726042, -0.01951748877763748, -0.03220302239060402, -0.051291149109601974, -0.011001217179000378, -0.010172730311751366, 0.03314311057329178, 0.0201960988342762, -0.02934057079255581, -0.02836625836789608, -0.01834704913198948, 0.05036269500851631, 0.046495500952005386, 0.06135163828730583, -0.033951763063669205, -0.03541272133588791, -0.02959960326552391 ]
White Bear Dance Center is an award winning recreational and competitive dance studio. We offer classes for 1 year through adult. Ballet, Pointe, Tap, Jazz, Lyrical/Contemporary, Acro, Hip Hop and Musical Theater classes create a well rounded program. We offer summer, Sept-May, and 6 Week Sessions multiple times a year. Our recreational have many performance opportunities at community events such as Marketfest and Manitou Days Parade. Both our 6 Week Programs - "Sparkle & Shine", and our Sept-May classes perform at our year end recital. We have 2 levels of competitive company with varying levels of time and financial commitment and audition requirements. These companies perform at competitions and at our year end recital. We are known for a family-friendly welcoming environment, excellent dance technique, and creativity. White Bear Dance Center is a 5600 square foot facility. It houses 5 air conditioned/heated dance studios equipped with floating wood floors with a vinyl composite dance surface, fully mirrored walls, and iPod friendly, state of art sound systems. We have several studios with closed circuit cameras with observation flat screen televisions for viewing. We have a large waiting area for students and parents with free WiFi, snack area, a spacious front desk, and our apparel boutique, Prestige Dancewear. A large, well lit parking lot, allows for easy pick-up and drop-off in a safe environment. Close to parks, shopping, and dining makes WBDC a very central location.
[ -0.02009882964193821, 0.03064674139022827, -0.02471986599266529, 0.0012581611517816782, -0.010434367693960667, 0.021311666816473007, -0.017670711502432823, 0.03708669915795326, -0.015087508596479893, 0.00032159723923541605, 0.024536257609725, 0.007121714763343334, 0.032707519829273224, -0.060996752232313156, 0.031016703695058823, -0.008366789668798447, -0.05676446482539177, -0.029539454728364944, -0.05832478404045105, -0.0012433405499905348, -0.020115351304411888, 0.01904108189046383, -0.06213568523526192, -0.006291745696216822, 0.0015389678301289678, 0.04497506469488144, 0.006891957018524408, 0.0018439438426867127, 0.042311858385801315, 0.02874308079481125, -0.0385415181517601, -0.044067759066820145, 0.038785599172115326, -0.06066181883215904, -0.02369622513651848, 0.013340922072529793, 0.03926572576165199, -0.007261469028890133, -0.03153906762599945, -0.040147047489881516, 0.008829009719192982, -0.009088335558772087, 0.01948140375316143, -0.025101572275161743, -0.057792242616415024, -0.008280586451292038, -0.03852970898151398, -0.03868163377046585, 0.03824269771575928, -0.052871327847242355, 0.011156382039189339, -0.011606266722083092, 0.00791680347174406, -0.00939865130931139, 0.008950723335146904, 0.016480356454849243, 0.023167284205555916, -0.009162699803709984, 0.005824191961437464, 0.03170616924762726, 0.008560454472899437, 0.004070190247148275, 0.025502275675535202, -0.07763894647359848, 0.03125923499464989, 0.03220895305275917, -0.0006846424075774848, -0.012568697333335876, 0.003955385182052851, -0.015603567473590374, -0.00275439047254622, -0.003983758855611086, -0.02106534317135811, -0.012124224565923214, 0.0030009823385626078, 0.005168352276086807, -0.014827609062194824, 0.008111467584967613, 0.011942042969167233, -0.004000561311841011, 0.027152860537171364, 0.05733146145939827, 0.025143511593341827, 0.04627058655023575, -0.06255477666854858, -0.022005222737789154, 0.023033084347844124, -0.005980889778584242, 0.02464147098362446, 0.012804102152585983, 0.00793517380952835, 0.08272353559732437, -0.004022323526442051, -0.003707403317093849, 0.04413739591836929, 0.047680504620075226, -0.06334234029054642, 0.028794031590223312, 0.009481755085289478, -0.023566223680973053, 0.011575325392186642, 0.021393829956650734, -0.005133571103215218, 0.04136195406317711, -0.0589294470846653, -0.01814732886850834, -0.01702376827597618, 0.0007989562582224607, -0.033656373620033264, -0.020301830023527145, -0.008398978039622307, -0.04475530609488487, -0.00036361580714583397, -0.008999441750347614, 0.006045049987733364, 0.047925278544425964, 0.02758706733584404, 0.05172842741012573, -0.03627239540219307, 0.023524973541498184, 0.028650280088186264, 0.026483507826924324, 0.03146515041589737, -0.018664447590708733, 0.03897516056895256, -0.033486466854810715, -0.04878002032637596, 0.047119613736867905, -0.024579809978604317, -0.029093781486153603, -0.004855963867157698, -0.05942416563630104, -0.022419005632400513, 0.011607200838625431, -0.014603743329644203, 0.030170077458024025, -0.010401456616818905, 0.02895776368677616, 0.03131139650940895, -0.050741732120513916, 0.04870719835162163, 0.03550134599208832, -0.00185576977673918, 0.0865212008357048, 0.01732235960662365, 0.01629766635596752, -0.025118116289377213, -0.01763337291777134, -0.033532120287418365, 0.034193214029073715, -0.023998918011784554, 0.037882957607507706, 0.03145085275173187, 0.027868051081895828, 0.0063112215138971806, -0.014793084934353828, -0.016886351630091667, 0.03351777791976929, 0.008471891283988953, 0.009181343950331211, -0.01083573792129755, 0.010557827539741993, -0.02498631738126278, 0.007555397227406502, -0.02456006407737732, 0.017916308715939522, 0.011498600244522095, 0.007057570852339268, -0.012976592406630516, -0.04522155597805977, 0.01701052114367485, 0.0030559434089809656, -0.00733483862131834, 0.006348744500428438, 0.026584791019558907, 0.04647737741470337, 0.0331418514251709, 0.00196323380805552, 0.02179487608373165, 0.03387165442109108, -0.048706017434597015, -0.013252568431198597, 0.01801658235490322, 0.04589413106441498, 0.029299775138497353, -0.010808903723955154, -0.019811401143670082, -0.03127332776784897, -0.05026699975132942, -0.004403646104037762, -0.005899118259549141, 0.041899990290403366, -0.02932516299188137, 0.023223774507641792, 0.014919554814696312, -0.003738114843145013, 0.008785859681665897, 0.004452637396752834, -0.03562122955918312, -0.07110752910375595, -0.010678249411284924, 0.040202319622039795, -0.047879304736852646, 0.023729855194687843, -0.008429255336523056, -0.01677350327372551, 0.005231280345469713, 0.04591386765241623, -0.024514930322766304, -0.010247286409139633, 0.045105498284101486, 0.006529010832309723, -0.011806943453848362, -0.02040686272084713, 0.008383026346564293, -0.00822228379547596, -0.03460056707262993, 0.03699817508459091, 0.004541096277534962, 0.014614480547606945, 0.009429186582565308, 0.034216515719890594, 0.03756803646683693, 0.06123117357492447, -0.014404725283384323, -0.016866233199834824, 0.006843788083642721, 0.03657399117946625, -0.032101552933454514, -0.02418818511068821, 0.014046872034668922, 0.04151611775159836, -0.011805801652371883, 0.035448551177978516, 0.03760458528995514, 0.01569906808435917, 0.0279595497995615, 0.06270579993724823, -0.008667263202369213, 0.01352665014564991, -0.002710002940148115, 0.008979753591120243, 0.017659222707152367, 0.025117559358477592, -0.013689336366951466, 0.031548433005809784, -0.03097698837518692, -0.005837014876306057, -0.026261722669005394, 0.019059255719184875, -0.028369126841425896, 0.019737867638468742, 0.007793654687702656, 0.06629391014575958, -0.03012039326131344, 0.0035041864030063152, 0.04092394933104515, 0.03185121715068817, -0.048045799136161804, -0.024649541825056076, -0.014613799750804901, 0.01608952321112156, 0.0023381111677736044, 0.03874354809522629, 0.020722225308418274, -0.001184673747047782, 0.0016790246590971947, 0.018772082403302193, -0.010997801087796688, -0.04471594840288162, -0.03423338383436203, -0.05783884599804878, -0.02942480519413948, -0.035396602004766464, -0.03540894389152527, -0.0017331570852547884, 0.04177108034491539, -0.0491732582449913, 0.06507266312837601, -0.006226179655641317, -0.029004152864217758, -0.04770180955529213, -0.002242080634459853, 0.044607918709516525, 0.013843761757016182, 0.05210057273507118, -0.039208341389894485, 0.014358162879943848, -0.006839429959654808, 0.011080015450716019, -0.030749717727303505, -0.009683855809271336, 0.010503389872610569, 0.0023135002702474594, 0.058033715933561325, -0.04088226705789566, -0.003233612747862935, -0.011010967195034027, -0.021615948528051376, -0.06365495920181274, 0.014181297272443771, 0.0019038378959521651, -0.003243709448724985, 0.002668697852641344, -0.07666388899087906, 0.06778976321220398, 0.019587622955441475, -0.0401608906686306, 0.06221054494380951, 0.04820924252271652, -0.02032640390098095, 0.06512720882892609, 0.022839922457933426, 0.020259305834770203, -0.031784962862730026, 0.03173178806900978, 0.03947210684418678, 0.012213069014251232, -0.033912334591150284, -0.013044295832514763, -0.003339540446177125, 0.02360440045595169, 0.011724494397640228, -0.005602628458291292, -0.056418195366859436, 0.04593405872583389, 0.02315693348646164, -0.0546223521232605, 0.02572818659245968, -0.050221994519233704, -0.045828912407159805, -0.04596998170018196, -0.02034749835729599, 0.033886466175317764, 0.03285723179578781, 0.013746361248195171, 0.015608355402946472, -0.028609484434127808, 0.009303158149123192, 0.04238893464207649, 0.0596502311527729, -0.03066624328494072, 0.05206046625971794, 0.03606533259153366, -0.019450735300779343, -0.0034530169796198606, 0.007682989351451397, -0.04210240766406059, -0.001111394725739956, 0.023598233237862587, -0.010449642315506935, -0.0032796727027744055, 0.024449855089187622, 0.025103550404310226, -0.0016825227066874504, 0.030080480501055717, -0.05715769901871681, 0.03314772993326187, -0.006226191762834787, 0.04469822719693184, 0.012230253778398037, -0.01792784221470356, 0.02062385529279709, -0.029041333124041557, -0.037460263818502426, -0.05049673467874527, 0.02884208783507347, 0.02842443808913231, 0.058416012674570084, -0.06430349498987198, 0.03403569385409355, -0.0037759696133434772, -0.016416525468230247, 0.021675532683730125, -0.029845457524061203, -0.025827188044786453, 0.029489189386367798, 0.020128926262259483, 0.012033487670123577, -0.03513152152299881, 0.03663527965545654, -0.032450731843709946, -0.0047039855271577835, 0.04456663876771927, 0.00813753716647625, 0.011248036287724972, 0.006970817688852549, -0.004213342443108559, -0.007531733717769384, -0.034212399274110794, -0.016806108877062798, -0.00628284364938736, 0.0078119514510035515, 0.005353985354304314, -0.03982565551996231, -0.04544252157211304, 0.04453857243061066, 0.017631659284234047, 0.016029667109251022, -0.04125072434544563, 0.01674877665936947, 0.04741615056991577, 0.008784687146544456, 0.02166912518441677, -0.019065411761403084, 0.0024913176894187927, -0.049807991832494736, 0.03392166644334793, 0.03753616288304329, -0.0049956063739955425, -0.028483474627137184, -0.04356524348258972, -0.05062656104564667, 0.023141976445913315, -0.014073517173528671, 0.003047873033210635, -0.03592521697282791, 0.028150945901870728, -0.011575576849281788, 0.034956105053424835, -0.03598787635564804, -0.020977217704057693, -0.040077466517686844, 0.04022582247853279, 0.053343504667282104, -0.05566474050283432, 0.006793861277401447, -0.0648949146270752, 0.03908373787999153, 0.050826285034418106, -0.04384780302643776, -0.018675154075026512, -0.02082965523004532, -0.02839837782084942, -0.033958327025175095, -0.002997689414769411, 0.03333147242665291, -0.00760298315435648, 0.0011303348001092672, -0.038607411086559296, 0.03446289151906967, 0.014107647351920605, -0.006661185063421726, -0.022318510338664055, 0.030829258263111115, -0.010379727929830551, -0.0026273292023688555, 0.05130322277545929, -0.009712507016956806, -0.0421297512948513, -0.007883965969085693, -0.05099056288599968, -0.01889035850763321, -0.014180264435708523, -0.0183066688477993, 0.00122215470764786, 0.018452785909175873, 0.019032256677746773, 0.04740575700998306, -0.005216800142079592, 0.024764202535152435, 0.007851413451135159, 0.05233244225382805, -0.0671021044254303, -0.015386948361992836, 0.03436357527971268, -0.013105839490890503, -0.009961740113794804, 0.032459333539009094, 0.05727076902985573, -0.033583562821149826, -0.0035039368085563183, 0.01192708034068346, -0.020359506830573082, 0.04592584818601608, -0.056988298892974854, 0.0063187978230416775, -0.028834592550992966, -0.024521585553884506, 0.017679423093795776, -0.028172381222248077, 0.05678633600473404, 0.02365374192595482, -0.005096096079796553, -0.05153374746441841, -0.0701352208852768, -0.03290317952632904, -0.0017522441921755672, -0.02151036262512207, 0.015542615205049515, 0.006576972082257271, -0.009305949322879314, 0.0002378702483838424, -0.029981477186083794, -0.006484379526227713, 0.02088097855448723, -0.024196846410632133, 0.037650588899850845, 0.0033288521226495504, 0.008107841946184635, -0.006075332872569561, -0.04532742500305176, -0.025545747950673103, -0.0031288114842027426, -0.006639990955591202, -0.029875515028834343, -0.02752118930220604, 0.025774119421839714, -0.04840528964996338, 0.0027810847386717796, -0.0272822268307209, 0.010580809786915779, -0.02167273871600628, 0.01792304217815399, 0.011640165001153946, 0.004106300417333841, 0.018092427402734756, 0.008699949830770493, -0.033981822431087494, 0.03568436950445175, 0.018507421016693115, -0.02287386544048786, 0.012057474814355373, 0.06040901690721512, -0.02447655238211155, 0.025594722479581833, 0.007453806698322296, -0.014968098141252995, -0.04336642101407051, -0.026794973760843277, 0.009550918824970722, -0.044206567108631134, -0.011027637869119644, -0.042842570692300797, -0.05248800292611122, 0.0004963295650668442, 0.019641637802124023, 0.016581250354647636, -0.0011809997959062457, 0.030748706310987473, -0.02642413228750229, -0.0007495664758607745, -0.05982682481408119, -0.023831626400351524, -0.008009222336113453, -0.011309640482068062, -0.01717275008559227, 0.03370686620473862, 0.01970330998301506, 0.032123323529958725, 0.02327732928097248, 0.007694846019148827, 0.013774245046079159, 0.0017586948815733194, -0.05806209519505501, -0.05520647019147873, 0.012698424980044365, 0.0057927886955440044, 0.030624454841017723, 0.01862027682363987, -0.018380537629127502, 0.06164127588272095, -0.040652498602867126, -0.019378013908863068, -0.024050218984484673, 0.005110716912895441, -0.005339374300092459, -0.010536388494074345, 0.05541989579796791, -0.017314624041318893, 0.01854352094233036, -0.015304981730878353, 0.06650638580322266, 0.011664249934256077, -0.00731068616732955, -0.04824281483888626, -0.030058829113841057, -0.032507866621017456, -0.05909702181816101, 0.03587007522583008, -0.020360497757792473, -0.020307594910264015, -0.0463397391140461, 0.002424122765660286, 0.034634772688150406, 0.007329848594963551, 0.06039571017026901, 0.02803235873579979, -0.009521660394966602, -0.014867852441966534, -0.010871919803321362, 0.03291492909193039, 0.03673236072063446, -0.015621216036379337, -0.03473557531833649, 0.0014271058607846498, -0.0045799370855093, -0.004999714437872171, -0.021704912185668945, -0.04329723119735718, -0.03561190888285637, -0.011649521999061108, 0.049287501722574234, -0.057522404938936234, 0.03882487118244171, -0.015678834170103073, -0.03132892772555351, -0.018904153257608414, 0.04729496315121651, -0.032130658626556396, 0.011372756212949753, 0.04115799441933632, 0.00045496682287193835, -0.003940592985600233, 0.022972572594881058, 0.014880784787237644, -0.012043722905218601, -0.0253736674785614, 0.07035491615533829, 0.008786560036242008, -0.05231037735939026, 0.021506724879145622, 0.05311237648129463, -0.039926160126924515, -0.05249414220452309, 0.01462320052087307, -0.009457387961447239, 0.0044624521397054195, -0.024444282054901123, 0.018376026302576065, -0.04282195493578911, 0.004133014939725399, 0.024964794516563416, 0.0335136279463768, 0.03485587239265442, 0.03417380154132843, 0.0037277122028172016, 0.03648553416132927, -0.02647176943719387, -0.02277701161801815, 0.014322465285658836, -0.01376770343631506, -0.047301750630140305, -0.03418855741620064, -0.019984718412160873, 0.0015193478902801871, -0.017220431938767433, 0.028001263737678528, 0.0073787737637758255, 0.01979338936507702, 0.0410921648144722, -0.031750213354825974, 0.06762838363647461, -0.03036130964756012, 0.002417272422462702, 0.009977612644433975, -0.04158145561814308, -0.04370790719985962, -0.01276978850364685, 0.032442059367895126, 0.02080252580344677, 0.026667192578315735, -0.06077123060822487, -0.0050718653947114944, 0.03413376212120056, -0.00804145261645317, -0.012547946535050869, -0.042975861579179764, -0.020715301856398582, -0.06278503686189651, -0.061663005501031876, -0.027265891432762146, -0.024804996326565742, 0.016998210921883583, 0.013484584167599678, 0.0042614745907485485, -0.04532540962100029, 0.004938911646604538, -0.00476866913959384, -0.016892191022634506, 0.01906457543373108, -0.03869185596704483, 0.02972412109375, -0.06261686235666275, -0.04075167328119278, -0.03479502350091934, 0.019075464457273483, -0.00941315945237875, 0.0003032555687241256, 0.0009209620184265077, -0.009970377199351788, -0.014385806396603584, 0.031946856528520584, -0.008478456176817417, 0.0050901020877063274, -0.011067540384829044, -0.057321835309267044, 0.0052103810012340546, 0.03167754411697388, 0.0015253197634592652, 0.0506332591176033, 0.04874258488416672, -0.01742200367152691, 0.022616222500801086, 0.014359042048454285, -0.05202017351984978, -0.003684597322717309, -0.0078110541217029095, -0.024582669138908386, 0.029002457857131958, -0.051953740417957306, 0.00978840608149767, -0.0072298371233046055, -0.04527885094285011, 0.011737093329429626, 0.006242384668439627, -0.01529071107506752, 0.034184765070676804, 0.00904744304716587, -0.006217106245458126, 0.053696468472480774, -0.015580834820866585, 0.023449238389730453, 0.008378645405173302, 0.03422127291560173, 0.019784463569521904, 0.01153820101171732, 0.008108965121209621, 0.0369846485555172, -0.0019593823235481977, -0.017354829236865044, 0.02502971515059471, -0.007944377139210701, -0.02341456338763237, 0.036103278398513794, -0.015811722725629807, -0.008723332546651363, -0.030121929943561554, -0.028954099863767624, -0.002335585653781891, 0.05902264267206192, -0.008588507771492004, -0.014299677684903145, 0.06842012703418732, -0.03979324549436569, -0.04762069135904312, 0.040175918489694595, -0.07205825299024582, -0.04590928554534912, 0.042559217661619186, -0.032766006886959076, -0.0016075532184913754, -0.01882600225508213, -0.03189975768327713, -0.015931567177176476, -0.004605947528034449, 0.001059583155438304, -0.03849618509411812, 0.007021183148026466, 0.003559419885277748, 0.00895772222429514, -0.018177347257733345, -0.009358784183859825, 0.027296926826238632, 0.03611794114112854, -0.046632058918476105, -0.049217332154512405, 0.017660195007920265, 0.024025512859225273, 0.029961857944726944, -0.0035839166957885027, 0.0240592323243618, 0.005503718741238117, -0.015568450093269348, 0.020726744085550308, -0.012151017785072327, 0.03504854813218117, -0.01976410113275051, 0.005305096041411161, 0.004174459259957075, -0.005772907752543688, -0.032692380249500275, 0.045194048434495926, -0.012307324446737766, -0.038844168186187744, -0.04833304136991501, 0.025656236335635185, 0.03677411749958992, -0.027938678860664368, 0.04841110110282898, 0.03900175914168358, 0.023637624457478523, 0.003471534000709653, 0.02154810167849064, -0.010627741925418377, 0.04524403065443039, 0.06375978142023087, 0.04040554165840149, 0.011246789246797562, 0.03566109016537666, 0.051505930721759796, 0.05276923626661301, -0.01254354789853096, 0.04747529700398445, 0.03934700787067413, -0.05586228519678116, -0.0038863830268383026, -0.038863878697156906, 0.01969613879919052, 0.015619728714227676, -0.00393202668055892, 0.017111141234636307, -0.0070619359612464905, 0.003168288618326187, -0.0070724948309361935, -0.059966154396533966, 0.04731029272079468, -0.02520062029361725, 0.013967880047857761, -0.021837225183844566, -0.008178003132343292, -0.01908414624631405, 0.07223755121231079, 0.006205117795616388, -0.004701842088252306, 0.03146331384778023, 0.029670415446162224, -0.002492166357114911, 0.0440448559820652, -0.0070578716695308685, -0.010192046873271465, -0.02674916386604309, 0.015414340421557426, -0.012787437997758389, 0.028340935707092285, -0.02831762284040451, 0.005717331077903509, -0.02442699670791626, 0.06099630892276764, -0.015191593207418919, -0.025959894061088562, 0.012558039277791977, -0.02032621204853058, -0.012082126922905445, -0.03672885149717331, 0.03411439433693886, -0.03140345960855484, -0.024505173787474632, 0.05387277528643608, -0.020235329866409302, -0.026209082454442978, 0.060215674340724945, -0.00917288102209568, 0.016419202089309692, 0.02381083555519581, 0.057741064578294754, -0.017299741506576538, 0.045556411147117615, 0.01476437970995903, -0.054409660398960114, 0.005426532123237848, 0.01860925927758217, -0.0035710514057427645, -0.04900187626481056, -0.049249403178691864, -0.021209411323070526, -0.032762620598077774, -0.029885347932577133, -0.00992328766733408, -0.020703507587313652, 0.05076589062809944, 0.010403011925518513, -0.04574347287416458, 0.032414961606264114, 0.02246294915676117, -0.044798918068408966, 0.02435595914721489, 0.025295061990618706, 0.03847423940896988, -0.0369739830493927, 0.001788375899195671, -0.02759486995637417, -0.02822275087237358, -0.0019015674479305744, -0.03489707410335541, 0.045644428580999374, -0.0011426906567066908, -0.006158891133964062, -0.032892193645238876, -0.062003735452890396, -0.00242768507450819, 0.013622598722577095, -0.051613129675388336, -0.04794221743941307, -0.0025717648677527905, 0.0401284284889698, 0.001829254673793912, 0.01566210761666298, -0.03134157136082649, -0.038359660655260086, 0.04328770563006401, 0.06194775924086571, -0.005286971107125282, 0.012284805998206139, 0.029055409133434296, -0.0013866722583770752, 0.018519196659326553, -0.023208092898130417, 0.045754075050354004, -0.017909564077854156, 0.00867103599011898, -0.02150074765086174, 0.02214900031685829, -0.012424444779753685, -0.04641176387667656, -0.004761278163641691, 0.023340608924627304, 0.01169953215867281, -0.05151849612593651, -0.06143002584576607, -0.015312676317989826, -0.042105261236429214, -0.0021564639173448086, -0.020946472883224487, 0.01776878908276558, 0.04235528036952019, -0.024900026619434357, 0.010350687429308891, -0.035058408975601196, 0.1353382021188736, 0.027335964143276215, 0.06324199587106705, -0.007548907771706581, 0.0486891083419323, 0.026437116786837578, 0.009614390321075916, -0.016521934419870377, 0.0020503539126366377, -0.04576408863067627, 0.01087489165365696, -0.018396809697151184, 0.05915546417236328, 0.02107965759932995, 0.021323563531041145, 0.06778888404369354, -0.003526196349412203, -0.002669315552338958, 0.01300029270350933, -0.06274312734603882, -0.05079503357410431, 0.026030685752630234, -0.002236024010926485, 0.03591790050268173, -0.03239883482456207, 0.0025854725390672684, 0.02595941722393036, -0.05124037340283394, -0.007414909545332193, -0.03536926209926605, 0.0031670930329710245, -0.015756074339151382, 0.038328614085912704, -0.0030396003276109695, -0.039150550961494446, 0.059396274387836456, 0.024158570915460587, -0.0012992265401408076, 0.008630339056253433, 0.021808644756674767, -0.01006051991134882, 0.0020750323310494423, 0.043396249413490295, -0.0452023446559906, 0.004755951464176178, 0.019681014120578766, -0.05056609958410263, -0.0188875962048769, 0.04470384865999222, -0.019641390070319176, 0.06433968991041183, 0.0014761298662051558, 0.036427102982997894, 0.021542726084589958, -0.04704911261796951, 0.0011113943764939904, 0.006706602405756712, -0.012282747775316238, -0.01813146099448204, 0.0006225959514267743, 0.01711844652891159, 0.02680654637515545, -0.028038397431373596, 0.012285415083169937, -0.031012658029794693, 0.008443418890237808, 0.04019912704825401, 0.03654659166932106, -0.03224863111972809, -0.04065398499369621, -0.00823502242565155, -0.022082030773162842, -0.011257595382630825, -0.024064194411039352, 0.03650198504328728, 0.0702073872089386, -0.03564203158020973, 0.044762369245290756, -0.01950087398290634, -0.026577487587928772, 0.0022463214118033648, -0.05071546882390976, -0.01098941545933485, -0.007429460529237986, 0.01742739789187908, 0.0168061014264822, -0.041535306721925735, -0.014355055056512356, -0.05244753509759903, 0.04242851957678795, 0.05367101728916168, 0.032930776476860046, 0.007279943209141493, 0.010058755055069923, -0.00834434200078249 ]
On May 8 this month, the world celebrated the 70th anniversary of V-E Day, the ending of World War II in Europe. On September 2, 2015 we will remember that final ending of the war that brutally dragged on a few more months in the Far East. Since I am going to be in Normandy, France next week for the 71st anniversary of D-Day, my thoughts drift to those brave souls who never came home to their families. And also those who left the Normandy shores with scars that would last a lifetime. My son and I will be there in proxy for my father-in-law who died four years at age 89. He came home blind, and would cheerfully, purposefully live the next almost seventy years in darkness. Although our world passed through unspeakable pain, death, and loss during the World War II years, I believe people rose to the occasion to do very difficult feats in those times. In many countries, they showed their mettle and courage--their strength of character. Maybe they did things they did not think they could ever do, but with sheer grit and dogged determination, they did it anyways. I salute them. But may it never happen again. May we remember those who have battled for us--by aspiring and living for peace. In the internationally acclaimed book about WW2 in Germany, The Book Thief by Markus Zusak, the narrator, who happens to be Death, states at the end: "I wanted to tell the book thief many things, about beauty and brutality. But what could I tell her about those things that she didn't already know? I wanted to explain that I am constantly overestimating and underestimating the human race--that rarely do I ever simply estimate it. I wanted to ask her how the same thing could be so ugly and so glorious, and its words so damning and brilliant. ...I am haunted by humans." Yes, humans constantly evade my predictions and estimations too. We humans are remarkable in our power to do inestimable good, and unfortunately, immense evil too. This next week when I am in Normandy, I will remember the fallen (the average age of the soldiers who landed on D-Day was 22), and all those who battled for what they believed in. As individuals and as a group, I am grateful for their service 71 years ago. However, in 1996 when I walked the beach of Normandy beach with my father-in-law on a breezy springtime day in May, he pointed up to the cliffs, and said, "It is so quiet here now, just listening to the seagulls and the ocean. I remember when I climbed to the top of those cliffs. As I mounted to the top of the cliff and looked back at the sea with all the ships, planes, jeeps, and parachutes, I thought to myself, 'If only Roosevelt, Churchill, and Hitler could have seen this view with me below, they never would have asked us to do it. '" As he gazed down the cliffs at the death that surrounded him, my father-in-law did not cower and cave to his responsibilities. He trudged on, like he would do for the rest of his life. Grandpa, I will be thinking of you--not only how you lived your life in battle, but how you tried to heal yourself and others after the war too. After spending two years in rehabilitation, and nurses saying they had never seen so much shrapnel in a body or being told you would never see again, you, instead, choose to live not only with dignity and independence, but with compassion and cheer. I can still see you with a twinkle of playfulness in your glass eyes when you would say, "I might not have sight, but I have insight." Love you, Grandpa--all the way to heaven and back! Grandpa is on the stand behind President Obama with the other Normandy veterans. He has his red cap on that has a patch with the Big Red One patch on it. Smith with his sister before he was blinded--just before he went to war. He aimed to be a doctor, but when he was blinded he got a master's degree in counseling. He would later became a national figure for the blind , advocating for inclusion in the classroom--long before it was an accepted norm. His aim to contribute and help never left him. When he left his parents to go to war, some of his last words to them were: "I will come home swinging both my arms and legs." It did not occur to him that he would never see their faces again. He married his college sweetheart, Sarah, after proving to her parents that he could support her as a counselor for the blind. On the Jersey shore with Sarah--always sharing a joke or a laugh. His beloved Sarah passed away from cancer not long after this picture. He lived the next 19 years without her. Again, with profound loss, he continued to live with humor and cheer. He could out pun anyone on the planet. Grandpa Shumway, as everyone called him, lived with our family for almost seven years when our kids were growing up. Living with a blind grandpa has lots of bonuses: wrestling on the floor with a University of Wyoming wrestling champ, accompanying him as he played the violin and harmonica, getting him to speak for World War II Days at school in the community, having him show you his glass and plastic eyes, giving "professional like" magic shows for birthday parties and Cub Scout events, playing a competitive game of Rook, and being your cheerleader. He would always say when given a choice to do something fun or go home (and a few people were tired and it was late), "Don't be a party pooper." Sometimes he told me, "With your voice, you should be on the radio." How could you not love him? A picture at the last family reunion. He had 41 grandchildren, and the ability to make everyone of them feel significant and important. They all knew he was one of their biggest fans. On top of Mt. Nebo, with Jerusalem, the Dead Sea, and the Jordan Valley behind us. As I stood alone on the mountain with my family, I felt like I knew Moses a little better, a would be Egyptian prince who reluctantly, meekly took on the challenge of bringing his people across the Red Sea to the Promised Land. He unknowingly began a journey that would last 40 years in remote, arid deserts. Mt. Nebo would be his final steps, before he would bid farewell to the people he had mentored and led across innumerable deserts and valleys. Despite the seemingly impossible, Moses tackled the job anyways. And for this reason, three major religions of the world esteem and revere him as a mighty prophet who performed miracles and brought about much good and deliverance--in a barren, forsaken place. Although he never entered the Promised Land, he rescued and shepherded many peoples so they could flourish someday. He nourished the belief that he was making others' lives better--even though he would never come down Mt. Nebo to cross the River Jordan. Coming to Jordan reminded me of a favorite scripture from Psalms 122:6, "Pray for the peace of Jerusalem: they shall prosper that love thee." It is interesting that Jerusalem means a place of peace, 'Shalom' means peace in Hebrew, and 'Salam' also means peace in Arabic. I do not think it is any coincidence. As I looked out on the windy crest of the mountain, I felt "the geography of hope," a term that Wallace Stegner, the American author, coined--meaning that a terrain of land can inspire hope and promise. I believe that eventually all the cousins will live in peace. I am sure Moses, the great prophet of the three main religions in Jerusalem, loved them all. 1) Take the first step into the unknown, and keep walking. Miracles will happen, and people, known and unknown, will come to your rescue. But just keep walking, even if the waters get deep. You will get to the other side of the shore. 2) As individuals, we are unique, and therefore, can never be duplicated. However, our jobs and purposes are not indispensable. Other people can be delegated to do the things we cannot do. There will be people like Joshua, who will come after us. We are all born into a story, a cast of characters, and the story will continue, going forward. We must prepare for the people in our story who are ahead of us--making their lives more enriched, safe, and happy. 3) Moses overcame his feelings of inadequacy and disbelief that he could accomplish difficult feats. He remembered his faith, the people who had mentored and taught him, and then trudged on. I took this picture of my three boys last October in the Red Sea. You could faintly see the Sinai in the background that day as they walked, swam toward it. The wide expansiveness of the Red Sea on that day reminded us of Moses' great miracle of separating the waters so the Israelites could get to safety. On the shores of the Egyptian side of the Red Sea. The valley that is located near Madaba, Jordan--before ascending to Mt. Nebo. A scene from behind the mountain, where Bedouin shepherds herded their sheep in Jordan. Peter having a reflective moment on top of Mt. Nebo, looking out from Hebron to the Jordan Valley. Some pilgrims from India on top of Mt. Nebo who are about to begin mass. I just had my first Mother's Day in Qatar, and I have to admit it's been wonderful to hear the Mother's Day wishes from around the world. One young man from Cameroon sweetly said to me, "Happy Mothering Day." I don't think he meant a play on words, but the phrase caught my attention. I know I am inordinately blessed to have birthed some amazing children who have given me more joy than I thought possible. I have loved my children completely, unabashedly, fiercely, and each has brought me on a unique journey of love--learning how to give and love in all different ways and emotions. But I have also found joy in loving others who may have another mother. I believe that we as humans underestimate how much we need a community--even if we are not related. I have been "mothered" or taken care of by so many people who have stepped up to welcome, invite, and love me--in many stages and ages of my life. I am sure sometimes it was inconvenient for them, but their words, notes, embraces still live on with me. One of the many "mothers" who I remember growing up was Josephine Kirkman, an elderly woman in our church. We even called her Grandma. She was a captivating storyteller and could laugh and joke with a child. But she imprinted herself on my young heart forever at my grandfather's funeral. Everyone else seemed to be engaged or disconsolate. Yet she spotted me with a tear dripping to the ground, and picked me up, hugging me to her bosom. I felt her big heart beat next to mine. I smelled her faint lavender perfume as I sobbed into her enveloping dress. She pulled me in tighter, and just held me until the tears did not flow anymore. If I close my eyes for a minute, I can still feel all that love she spilled on me that day. Being a mother and "mothering" others, meaning being another layer of kindness and attentiveness to another person, is "that kind of love that de-centers the self, and learning that your true riches are in another," says David Brooks, the NYT columnist. Although you may have never birthed a child, we can all reach down and scoop some love that is spilling over--waiting to be lapped up by someone who needs some cheer, comfort, and community. I know because I have raised six children, and I could have never have done it alone-ever. The villages I have lived in with my children in New York City, Beijing, Los Angeles, Baltimore, St. Louis, and now Doha have been more wonderful because there were people who cared and spilled the love. Sure, sometimes it got lonely a few times, but I had grown up in a loving community as a child, and I knew with some plotting and effort, it could work anywhere. I have loved being a mother to my children, but I have taken immense joy in loving and cheering others' children too. I miss all the children, many who are now adults, who were in my villages. This time of year when there are graduations, I think of them. I am proud of their achievements and who they are becoming. I may not be their mother, but I have loved being a part of their village--wherever that is in the world. Here is a youtube from my son's friends three years ago when we went on a one day trip. Making this video was how they amused themselves on the trip. Watching it makes me remember the good times we had together, and all the kids who have taught me so much. Being a part of this new Doha village has affirmed to me once again that it is possible to create and build a village anywhere--even in a compound with expats from all over the world living together. Anjoli Joshi, a new mother, wrote this about finding a community: "I refuse to shed tears in solitude. I will find a shoulder. I refuse to settle with smiles and looks. I will strike up a conversation, and learn about you and your children. I refuse to raise my son alone. I will be your eyes and ears, and you'll be mine. I refuse to experience the greatest joy of my life without another mother to share it with. I will rejoice in the sound of your baby's laughter and take pride in her accomplishments. I refuse to collapse in exhaustion each night. I will be more than a helping hand. I will be a voice of reassurance in moments of uncertainty, and a warm embrace in moments of loneliness. I refuse to walk alone. I will rediscover that lost village." I believe there is always enough love to spill, an ample supply in all of us--to nurture, affirm, and support our other fellow villagers. Maybe sometimes we have to excavate and dig deeper to get more love, but it will always be there if we look for it. "I close my eyes in order to see," said Paul Gaugin, the French Impressionist painter. Sometimes preconceived opinions and judgments need to be just closed, erased--making them completely disappear--never again to lift their ugly, monster heads. As a mother with a child with autism, I have to constantly check and monitor myself. Are there any biases I need to reconstruct or change as I try to view my son with more clarity and light? Can he do more than I am think he can? Am I "opening my sky" and perspective--so he can "open his sky"? My dear friend, Annagreth Bailey, who has a daughter with Down's Syndrome expresses it best: "I catch myself sometimes thinking that she can't do something, but then I have to tell myself, of course, she CAN!" She then continues, "As a mother, I have to work on that. I can only imagine how others limit her after looking at her.... I admit, it is hard work; it is so much easier to say 'you poor little thing,' and then sit back and please them at every corner. It takes a lot of effort and dedication to help them reach their potential." When Elias's art teacher asked early in the year if he could meet with him once a week after school for an hour, I never would have imagined the affect it would have on my son. His teacher wrote to me about his enthusiasm for Elias's work,"I am officially blown away by Elias's compete immersion in the moment and uninhibited creativity. He could really do something with his approach to abstraction, and who knows what else? Today in class he was calmer and more self-reliant than I have ever seen him." His art teacher sees exactly the way Gaugin described; Mr. Deerman closes his eyes so that he can see better visions of what his paintings and students can become. Now Elias also imagines himself as an artist who can produce beautiful paintings. There are people who even want to buy some of them. Last weekend we went to the student exhibition (which was ironically named Looking In) at the museum where many children were celebrated from different schools around Doha, Qatar. To see all of their bright eyes and lit up countenances was worth the trip alone. Being able to creatively express oneself is one of life's most stirring joys. It makes us feel more alive, more connected with the world. I take Gaugin's admonition very seriously of "closing our eyes in order to see" or "looking in," the name of the exhibition this year. I know because my blind father-in-law lived with us for almost seven years. After being blinded at age 22 a few weeks after D-Day in France, he said at the end of his life (almost 70 years in darkness), "I might not have sight, but I have insight." He would then smile, with that characteristic twinkle in his glass eyes, and I knew he really saw me--maybe not the color of my eyes or hair. But he saw me and everybody else he knew. Therefore, I too will close my eyes more frequently to really see and "look in"--to the person, the process, the view in front of me. Having a child with autism is like a window, I tell people. He has helped me to wash my windows more frequently so that I can view others with more clarity and compassion. Who would have ever known he would be featured in an art exhibition, let alone in Doha, Qatar? Sometimes we all just need to close our eyes so we can imagine and see things as they really are--casting away all those labels and assessments most everyone automatically presumes. Go make the world more beautiful, Elias! This is what Elias said about the preparation of his paintings, "When I was making the prints, I was pressing the design hard with my fingers. I wanted to make something beautiful. I saw cold and warm colors mixed together. Some of the colors were spicy, like Indian food." This is summary of what he saw in his print, "There were mountains and a forest. It was like a world map. with green grass and brown trees--even a desert, some snow, and an ocean. It reminded me of the Mississippi River where I used to go boating and see the cliffs. It looks like when you look down from an airplane, and see the world. I felt like I was THE best painter ever."
[ 0.012900235131382942, -0.004779395181685686, -0.02309565804898739, 0.03312328830361366, -0.028618223965168, -0.04401986300945282, -0.019363708794116974, 0.00782194547355175, 0.007382422685623169, -0.008612005971372128, -0.002912609139457345, -0.000545813178177923, 0.0011772197904065251, -0.008306541480123997, -0.0035636259708553553, -0.027693873271346092, -0.02301902323961258, -0.007180324289947748, -0.01641613245010376, -0.0038557962980121374, -0.007895281538367271, 0.022962957620620728, -0.05439770594239235, -0.026352666318416595, 0.012699984945356846, 0.027739593759179115, 0.05521056801080704, 0.008814098313450813, 0.05317027494311333, 0.05125074461102486, -0.003999578300863504, -0.019195977598428726, 0.0147281838580966, -0.08615513890981674, -0.005934786517173052, -0.032948561012744904, 0.036509573459625244, -0.05690927430987358, -0.011303231120109558, -0.023888612166047096, 0.006414720322936773, -0.03243158385157585, 0.052116163074970245, -0.031829651445150375, -0.05131405219435692, -0.023693183436989784, 0.0038290931843221188, -0.02457430213689804, 0.022704696282744408, -0.039214838296175, 0.017430156469345093, -0.012100422754883766, 0.031310249119997025, -0.010667509399354458, 0.029453597962856293, 0.02694631554186344, -0.0038782067131251097, 0.014486147090792656, 0.0069866301491856575, -0.0016728697810322046, 0.011601114645600319, 0.0046752323396503925, 0.0201231949031353, -0.06501719355583191, -0.0035626215394586325, -0.002382549922913313, -0.009813732467591763, 0.003924621269106865, 0.005984424613416195, 0.010344872251152992, -0.011277313344180584, -0.03240601718425751, -0.03575897961854935, -0.013305963948369026, -0.017262985929846764, -0.012974320910871029, 0.014349033124744892, 0.013542067259550095, 0.010656077414751053, -0.022792575880885124, 0.02006584219634533, 0.04760659858584404, -0.000994188478216529, 0.02422313019633293, -0.04686615988612175, -0.028734367340803146, 0.0022120012436062098, 0.027856502681970596, 0.013475135900080204, 0.005133489612489939, 0.015366511419415474, 0.06589289754629135, 0.020870542153716087, -0.02406635694205761, 0.03378250449895859, 0.049660149961709976, -0.022809257730841637, 0.016420403495430946, -0.02266828343272209, -0.0186966173350811, 0.03448386862874031, 0.018129682168364525, -0.027109330520033836, 0.037023551762104034, -0.05387376993894577, 0.004067369736731052, 0.012685217894613743, -0.01976575329899788, 0.02271789126098156, -0.0496467687189579, 0.012981198728084564, -0.012822392396628857, 0.01636047102510929, 0.027697354555130005, 0.020230093970894814, 0.025780702009797096, -0.028029941022396088, 0.022180451080203056, -0.053834397345781326, 0.031229674816131592, 0.002263024216517806, 0.010343330912292004, 0.021631965413689613, -0.02689569815993309, 0.013719437643885612, -0.03156904876232147, -0.03834381327033043, 0.02875218354165554, -0.03581450879573822, 0.001466860412620008, 0.018821468576788902, -0.043570537120103836, -0.01849967986345291, -0.005403328686952591, -0.02382359839975834, -0.003938540816307068, -0.02305639162659645, 0.0030005048029124737, -0.005032817367464304, -0.09454663097858429, 0.019756639376282692, 0.008152257651090622, 0.01692866161465645, 0.1036546602845192, 0.012343632988631725, 0.008174882270395756, -0.004506498109549284, 0.0077343229204416275, -0.026159444823861122, 0.0678815096616745, -0.030272141098976135, 0.004054556600749493, -0.013439590111374855, -0.014663991518318653, -0.01047468651086092, 0.007709760218858719, 0.007941407151520252, -0.008148271590471268, -0.007382421754300594, 0.0130141731351614, -0.008800415322184563, 0.010545904748141766, 0.010357240214943886, 0.027272159233689308, 0.02154419757425785, 0.02818259969353676, -0.0068475850857794285, -0.02376578003168106, -0.028782160952687263, -0.029909461736679077, 0.02563287690281868, -0.00922541506588459, -0.02331329509615898, 0.021592777222394943, 0.055205442011356354, 0.05552370846271515, 0.05958077684044838, -0.013383698649704456, 0.0431385301053524, 0.04934411868453026, -0.033188171684741974, -0.0016710838535800576, -0.008941796608269215, 0.0840008333325386, -0.005943344905972481, -0.008444069884717464, -0.004469835199415684, 0.0038593981880694628, -0.019859861582517624, -0.03750799968838692, 0.0003843442245852202, 0.02734925039112568, -0.012542923912405968, 0.02284218929708004, 0.025374209508299828, 0.025481997057795525, -0.017155898734927177, 0.01858348399400711, 0.00872982107102871, -0.04600220173597336, -0.025257356464862823, 0.03967353329062462, -0.03640067204833031, 0.03430338576436043, -0.007825521752238274, -0.0007227742462418973, 0.038093797862529755, 0.060240622609853745, -0.014782153069972992, 0.015291702002286911, 0.022388292476534843, -0.0027056836988776922, 0.015428990125656128, -0.013743202202022076, 0.024013426154851913, -0.0059350598603487015, -0.0212281234562397, 0.04422508552670479, -0.03779076784849167, -0.007434302940964699, -0.007036366034299135, 0.008108850568532944, 0.009240888059139252, 0.008571041747927666, 0.02284904383122921, -0.009423467330634594, -0.003978209104388952, 0.039497628808021545, -0.024850260466337204, -0.05180652067065239, -0.00619302736595273, 0.03930554538965225, 0.022719884291291237, 0.0762811228632927, 0.0378822460770607, -0.007062744349241257, 0.036681316792964935, 0.032780181616544724, -0.02279786393046379, 0.019179200753569603, 0.018624598160386086, -0.030189741402864456, 0.0498540885746479, 0.052046503871679306, -0.0377681665122509, 0.02310577966272831, -0.01984277367591858, -0.03492219001054764, 0.021923469379544258, 0.05419043451547623, -0.00995764508843422, 0.03419697284698486, 0.03930098935961723, 0.031155362725257874, -0.05471334606409073, 0.0003904554760083556, 0.027769507840275764, 0.04241843521595001, -0.01788395456969738, -0.020339347422122955, -0.018763115629553795, 0.04032760113477707, -0.003231262555345893, -0.0005917881499044597, 0.032265808433294296, 0.02080085128545761, 0.03248903527855873, 0.024683639407157898, -0.024110881611704826, -0.055038366466760635, -0.005168265663087368, -0.0753200501203537, -0.0676322877407074, -0.03959282487630844, -0.038203589618206024, 0.021616484969854355, 0.04554648697376251, -0.017990214750170708, -0.0024843798018991947, -0.010923152789473534, -0.00986503530293703, -0.0388491190969944, -0.014205943793058395, 0.039219845086336136, 0.016738785430788994, 0.02077755704522133, -0.026266057044267654, 0.06513781100511551, -0.011677196249365807, 0.031735602766275406, -0.0049944375641644, -0.038018036633729935, -0.009960873052477837, -0.030478887259960175, 0.015325353480875492, -0.026777377352118492, -0.013805471360683441, -0.009873257018625736, -0.045589521527290344, -0.040519919246435165, -0.006980277132242918, -0.007649140898138285, -0.02557806298136711, 0.014022613875567913, -0.03961516544222832, 0.04541991278529167, 0.021407324820756912, -0.05049334093928337, 0.03160585090517998, 0.04599243775010109, -0.05582255870103836, 0.0611688606441021, 0.03093058243393898, -0.011247296817600727, -0.046487629413604736, 0.07871101051568985, 0.05703632906079292, 0.008197052404284477, 0.007432578597217798, 0.003871277207508683, -0.01922317035496235, 0.023786934092640877, 0.014067314565181732, -0.017982719466090202, -0.026396872475743294, 0.0580129399895668, 0.01838097907602787, -0.06528930366039276, -0.010332146659493446, -0.02417869307100773, -0.0023655567783862352, 0.0062790815718472, -0.03524116054177284, 0.03886454552412033, 0.023719070479273796, 0.013491304591298103, -0.007103558164089918, -0.0331747941672802, -0.0020894391927868128, 0.026083331555128098, 0.03394204378128052, -0.03664639964699745, 0.013485955074429512, 0.03315633907914162, 0.00780271552503109, 0.020047953352332115, -0.008011232130229473, 0.00547057157382369, 0.0037293119821697474, 0.024679815396666527, 0.03138772025704384, 0.017043691128492355, 0.038273025304079056, 0.01456903200596571, 0.030518854036927223, 0.05676908791065216, -0.01989326812326908, -0.02457987330853939, 0.028304221108555794, 0.006939430721104145, 0.02468962036073208, 0.00003552146517904475, 0.01789105124771595, 0.015082062222063541, -0.04150914028286934, -0.037746261805295944, 0.034557804465293884, -0.008070409297943115, 0.053668729960918427, -0.04437853768467903, 0.06176513060927391, 0.0165559109300375, -0.02395401895046234, 0.0349290631711483, -0.06630532443523407, 0.024801936000585556, 0.07837723195552826, -0.010138485580682755, 0.03511938452720642, -0.03980250284075737, 0.01684289425611496, -0.035569291561841965, 0.005076003260910511, 0.05136461183428764, -0.03043840080499649, 0.02533915266394615, -0.0271895918995142, -0.020437121391296387, 0.016986554488539696, 0.010123481042683125, -0.028047408908605576, -0.042869046330451965, 0.0036234185099601746, -0.01355615071952343, -0.032513972371816635, -0.05340637266635895, 0.03510020673274994, -0.00600975938141346, 0.03420600667595863, -0.03377829119563103, -0.00417143851518631, 0.0024902198929339647, -0.007146185729652643, 0.05779857188463211, -0.009764933958649635, 0.004373687319457531, -0.06127091497182846, 0.038065072149038315, 0.03805016726255417, -0.06310312449932098, -0.0020579309202730656, 0.001159275765530765, 0.006585799623280764, 0.018739601597189903, 0.012591331265866756, -0.03370910510420799, -0.016561225056648254, 0.008839924819767475, 0.01697075180709362, 0.003993067890405655, -0.013474768027663231, 0.006858638022094965, 0.0006918981671333313, 0.029336055740714073, 0.009881885722279549, -0.060752131044864655, 0.016575245186686516, -0.03819367289543152, 0.047982096672058105, 0.030270351096987724, -0.008745668455958366, -0.06850415468215942, -0.034289635717868805, -0.040229082107543945, -0.03468262776732445, 0.00364555767737329, 0.011882667429745197, -0.01020071841776371, 0.03809640556573868, -0.0600329227745533, 0.0321989506483078, 0.057787880301475525, 0.012704359367489815, -0.0010373200057074428, 0.0009678148198872805, 0.027581529691815376, 0.010108938440680504, 0.04262211173772812, -0.005368486978113651, -0.01638375036418438, 0.019629254937171936, -0.06489723920822144, 0.019129034131765366, 0.002810887061059475, -0.003832432674244046, 0.020119458436965942, 0.0033292616717517376, -0.01858721859753132, 0.03154560178518295, -0.0054966458119452, -0.01900325156748295, 0.01584024168550968, 0.03922010958194733, -0.05217462405562401, 0.008683140389621258, 0.07173925638198853, 0.0005514540825970471, -0.043910782784223557, 0.03689635172486305, 0.025881363078951836, 0.02475426159799099, -0.0056238928809762, 0.014714549295604229, -0.040277283638715744, 0.03925160691142082, -0.04076506569981575, 0.01343505084514618, -0.03055509924888611, -0.030008140951395035, 0.008020726963877678, -0.009741238318383694, 0.024459844455122948, -0.006541652139276266, -0.046235330402851105, -0.047962408512830734, -0.05815334990620613, -0.01704242080450058, 0.014092804864048958, -0.012773491442203522, -0.01632949523627758, 0.017003316432237625, -0.005707930773496628, -0.016382476314902306, -0.03538832813501358, 0.031493354588747025, -0.0009005054016597569, -0.01309482753276825, 0.005518489982932806, -0.0008553247898817062, -0.000707957602571696, 0.01602300815284252, -0.012211564928293228, -0.01519922073930502, -0.005859815515577793, -0.00640720734372735, -0.027572618797421455, -0.04870492219924927, -0.02787533402442932, -0.02913067676126957, -0.023172007873654366, -0.003841737285256386, -0.030799711123108864, -0.014947711490094662, 0.05000796541571617, -0.0010324353352189064, 0.0069449241273105145, 0.027569971978664398, 0.013442990370094776, -0.011251562274992466, 0.05557342618703842, 0.01007995754480362, -0.033607058227062225, -0.0031046646181493998, 0.022420162335038185, -0.00959249958395958, 0.04471013695001602, -0.006533862091600895, -0.007592799142003059, -0.040836650878190994, -0.09229274839162827, -0.0192252304404974, -0.04725112393498421, -0.017512939870357513, -0.03748549520969391, -0.024170001968741417, -0.00910414382815361, 0.045672956854104996, -0.014593924395740032, -0.034176334738731384, -0.013711381703615189, -0.03684889152646065, -0.002056681551039219, -0.010998735204339027, -0.020421074703335762, -0.005937961861491203, -0.013037996366620064, -0.015496127307415009, 0.07243645191192627, -0.020935358479619026, 0.02953026443719864, 0.0034057835582643747, 0.004585202783346176, 0.008016777224838734, -0.0031998821068555117, -0.04448509216308594, -0.045914389193058014, 0.004147008527070284, -0.004396684933453798, 0.0025199807714670897, -0.010302956216037273, -0.022343434393405914, 0.046510111540555954, -0.027258211746811867, -0.0018491183873265982, -0.05510254576802254, -0.017004095017910004, -0.008466034196317196, -0.009847602806985378, 0.04090287536382675, -0.0089760422706604, 0.018914053216576576, -0.03676895052194595, 0.025840245187282562, 0.04451320692896843, -0.000020572195353452116, -0.01696433313190937, -0.013487874530255795, -0.09029519557952881, -0.0376352034509182, 0.04043620824813843, -0.026104208081960678, -0.009930121712386608, -0.02243153750896454, 0.004954304080456495, 0.058168865740299225, -0.014988330192863941, 0.038410041481256485, 0.042845021933317184, -0.020415842533111572, -0.015960441902279854, -0.02436782419681549, -0.013668054714798927, 0.02354910783469677, 0.0011704852804541588, 0.008471181616187096, -0.0069146654568612576, -0.0374620147049427, 0.01939714327454567, -0.03785562515258789, -0.018276697024703026, -0.0177227221429348, 0.007205809932202101, 0.056735776364803314, 0.0022871901746839285, 0.08753623813390732, -0.011234195902943611, -0.041507232934236526, -0.044422853738069534, 0.04428425058722496, 0.0007676914683543146, 0.015238188207149506, 0.042094629257917404, -0.004263569135218859, 0.0035033097956329584, 0.007450152654200792, -0.006908420007675886, 0.009366463869810104, -0.018009452149271965, 0.05938613414764404, -0.0017493055202066898, -0.03348229452967644, 0.021064547821879387, 0.039406515657901764, -0.06226595491170883, -0.04187159985303879, -0.013512087985873222, 0.015638312324881554, -0.0068185944110155106, -0.04804756119847298, 0.024338731542229652, -0.0008446100982837379, 0.03673820570111275, 0.025616994127631187, 0.05545147508382797, 0.020429451018571854, 0.0590691938996315, 0.009106715209782124, 0.026146570220589638, -0.03225959837436676, 0.02346302568912506, 0.008782757446169853, -0.03379244729876518, -0.031097466126084328, -0.059174057096242905, -0.029891623184084892, 0.002045536646619439, -0.02967180870473385, 0.03634870424866676, -0.00723851565271616, -0.013650672510266304, 0.024016575887799263, -0.0043171425350010395, 0.03748980909585953, 0.011106593534350395, -0.021435564383864403, 0.025750789791345596, -0.04394879937171936, -0.04039470851421356, -0.043477438390254974, 0.02730688452720642, -0.01808653026819229, 0.04741254076361656, -0.03917801007628441, -0.0008200759184546769, 0.02909901924431324, 0.020540867000818253, -0.03012760356068611, -0.050799816846847534, -0.0544341579079628, -0.05614430457353592, -0.0611976683139801, -0.03537539765238762, -0.019371405243873596, -0.012287192046642303, 0.023182816803455353, -0.00841720961034298, -0.027649542316794395, -0.020426791161298752, 0.010111149400472641, -0.005842286627739668, -0.004614739213138819, -0.035174448043107986, 0.03976853936910629, -0.016724975779652596, -0.042475856840610504, -0.01991373486816883, -0.013440211303532124, -0.013196264393627644, -0.017227787524461746, 0.005526158958673477, 0.01428337674587965, -0.01973547600209713, 0.03195466473698616, 0.03134256601333618, -0.011620636098086834, -0.024029426276683807, -0.061611901968717575, 0.026003427803516388, 0.06602033227682114, 0.006622417829930782, 0.026782702654600143, 0.021534649655222893, -0.009885489009320736, 0.022522887215018272, -0.0153939388692379, -0.018893109634518623, -0.004956992343068123, 0.008362147025763988, 0.018479643389582634, 0.014697296544909477, -0.034503255039453506, -0.014729838818311691, -0.021301990374922752, -0.04970843344926834, 0.022118883207440376, -0.02650575153529644, -0.004873484838753939, 0.01635449379682541, 0.000921736063901335, 0.008197493851184845, 0.031225552782416344, 0.01492791622877121, 0.062149778008461, -0.0027866216842085123, 0.025417668744921684, 0.02544957771897316, 0.01303313672542572, -0.015104229561984539, 0.017086181789636612, 0.03311559185385704, -0.0461474172770977, 0.010665067471563816, 0.010986793786287308, -0.033515483140945435, 0.032173458486795425, -0.024899451062083244, -0.05963557958602905, -0.0497003011405468, -0.008137315511703491, -0.03285111486911774, 0.021686865016818047, 0.008710474707186222, -0.004572774283587933, 0.01388740073889494, -0.023521549999713898, -0.06703387200832367, -0.005746967624872923, -0.08097673207521439, -0.0009804901201277971, 0.05237452685832977, -0.01745341159403324, 0.00030236723250709474, 0.01964915357530117, -0.04437047243118286, 0.0032572688069194555, -0.01364223100244999, -0.016416747123003006, -0.0034730667248368263, 0.03999730199575424, 0.0030385542195290327, 0.06273355334997177, -0.005689455661922693, 0.00507397623732686, 0.010210434906184673, 0.02770267426967621, -0.03854785114526749, -0.043871257454156876, -0.009408730082213879, 0.01900147832930088, 0.009972336702048779, -0.03365747630596161, -0.02682073786854744, -0.011348942294716835, 0.006858034059405327, -0.0142740523442626, 0.0005755478050559759, 0.013371437788009644, 0.015748128294944763, 0.0324188694357872, 0.06696578115224838, -0.012318998575210571, -0.013562561944127083, 0.034833382815122604, 0.017075924202799797, -0.013615984469652176, -0.02053076960146427, 0.058845438063144684, 0.03788680583238602, -0.01860765926539898, 0.055234190076589584, 0.028626950457692146, 0.04189208894968033, -0.03115280531346798, 0.013089271262288094, -0.018849004060029984, 0.04155949503183365, 0.022341158241033554, 0.024380959570407867, 0.005570751614868641, 0.03530756011605263, 0.04886196181178093, -0.011636572889983654, 0.013860228471457958, 0.026238681748509407, 0.039688028395175934, -0.054681167006492615, -0.002291801618412137, -0.036570869386196136, -0.020771754905581474, 0.009814356453716755, -0.0156959667801857, -0.0016269679181277752, -0.059151988476514816, -0.010268649086356163, -0.00509190559387207, -0.0017184900352731347, 0.06437945365905762, -0.0019640675745904446, 0.01685994677245617, 0.008699022233486176, 0.005412680096924305, 0.03707633540034294, 0.03282325714826584, -0.0030456692911684513, 0.012661411426961422, 0.0503709502518177, 0.0192312803119421, -0.031027676537632942, 0.034167688339948654, -0.0010229037143290043, -0.012412631884217262, -0.040805634111166, 0.011156739667057991, 0.01687236689031124, 0.002700108801946044, -0.034338608384132385, -0.0029522099066525698, -0.01030928548425436, 0.04074660688638687, -0.03884120658040047, -0.020874563604593277, 0.05199093371629715, -0.0431818850338459, 0.00517153088003397, -0.05684415623545647, 0.037628624588251114, -0.04998612776398659, -0.011272556148469448, 0.022839415818452835, 0.024584908038377762, -0.01287834718823433, 0.032464172691106796, 0.0026649783831089735, 0.05636902526021004, 0.03324640542268753, 0.048700835555791855, -0.032851044088602066, 0.00045190771925263107, 0.05065920203924179, -0.06864536553621292, -0.05643989518284798, 0.0053939130157232285, -0.0001570323365740478, -0.02914595790207386, -0.0024596110451966524, -0.02301209606230259, 0.011829933151602745, -0.023100752383470535, 0.0034280577674508095, 0.007265408523380756, 0.04329533874988556, 0.007063311990350485, -0.016644828021526337, 0.006378479301929474, 0.01466822624206543, -0.06082213670015335, 0.025172250345349312, 0.0038396401796489954, 0.022136999294161797, 0.026342371478676796, -0.004631076939404011, -0.02930503524839878, -0.030210070312023163, -0.015189286321401596, -0.057417888194322586, 0.0594090037047863, 0.0007502043736167252, -0.04183671623468399, -0.03716962784528732, -0.06399641185998917, 0.0038787354715168476, -0.006549243815243244, -0.023900294676423073, -0.03893043100833893, 0.0359070859849453, 0.04560532048344612, -0.004274093080312014, 0.02304944023489952, -0.015258388593792915, -0.005489880219101906, 0.06744314730167389, 0.04046228900551796, 0.011531920172274113, 0.01666487753391266, 0.019657351076602936, -0.018998779356479645, 0.02263350412249565, -0.03792967274785042, 0.0621892549097538, 0.0016682901186868548, -0.006726362276822329, -0.02631402760744095, 0.04196389392018318, -0.02113792672753334, -0.04897024482488632, 0.011603429913520813, 0.0032221749424934387, 0.00880793109536171, -0.03047390840947628, -0.08357083797454834, -0.003781392704695463, -0.012595058418810368, 0.006139668170362711, -0.03660004585981369, 0.03859095647931099, 0.015624483115971088, 0.0032565679866820574, -0.010834595188498497, -0.06832879036664963, 0.15931116044521332, 0.037141017615795135, 0.028783995658159256, 0.02897000126540661, 0.017306054010987282, 0.06379882991313934, 0.038475532084703445, 0.002611224539577961, -0.01378654595464468, -0.01940944232046604, 0.044394854456186295, 0.007693980820477009, 0.007528297137469053, -0.017140863463282585, 0.050024278461933136, 0.05109556019306183, -0.051297299563884735, 0.023145833984017372, 0.0017749153776094317, -0.04532031714916229, -0.05288016051054001, 0.05733896791934967, 0.011890964582562447, 0.0007984481635503471, -0.016653506085276604, 0.022330688312649727, 0.03870420530438423, -0.06729340553283691, -0.01965334266424179, -0.027982039377093315, 0.0005757868639193475, -0.039962876588106155, 0.03387787938117981, -0.04721415787935257, -0.02510003186762333, 0.057753559201955795, 0.011082502081990242, -0.030524766072630882, -0.002569702221080661, 0.016639022156596184, -0.0043089562095701694, 0.0020980569534003735, 0.005501302424818277, -0.021339159458875656, 0.029595455154776573, 0.04110372066497803, -0.05801282078027725, -0.016966650262475014, -0.0015972841065376997, -0.0369393490254879, 0.07437644153833389, -0.046809159219264984, 0.019823122769594193, -0.004182031843811274, -0.0281088687479496, 0.03926237300038338, 0.021431652829051018, -0.02401570789515972, -0.0033906882163137197, -0.00818727258592844, -0.004076716955751181, 0.0009310215245932341, -0.028555575758218765, -0.017978934571146965, -0.026788759976625443, 0.021435163915157318, 0.03925302252173424, -0.0005689630634151399, -0.030231336131691933, -0.03377468138933182, -0.013194306753575802, -0.028217919170856476, -0.041809581220149994, 0.0026630412321537733, 0.02117926813662052, 0.032892342656850815, -0.009230743162333965, 0.060599878430366516, -0.013572904281318188, -0.02591813914477825, -0.013298687525093555, -0.05549858510494232, -0.02941717952489853, -0.012381178326904774, 0.02377416379749775, 0.04308081418275833, -0.05647217854857445, -0.013390733860433102, -0.02407616376876831, 0.04579479247331619, 0.04991546645760536, 0.0025056006852537394, 0.005407081916928291, -0.008609546348452568, 0.0029295883141458035 ]
/** * Copyright (C) 2016 Hurence (support@hurence.com) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.hurence.logisland.stream.spark.structured.provider import java.sql.Timestamp import java.util import java.util.Collections import com.hurence.logisland.annotation.documentation.CapabilityDescription import com.hurence.logisland.annotation.lifecycle.OnEnabled import com.hurence.logisland.component.{InitializationException, PropertyDescriptor} import com.hurence.logisland.controller.{AbstractControllerService, ControllerServiceInitializationContext} import com.hurence.logisland.record.{FieldDictionary, FieldType, Record, StandardRecord} import com.hurence.logisland.stream.StreamContext import com.hurence.logisland.stream.StreamProperties._ import com.hurence.logisland.util.spark.ControllerServiceLookupSink import org.apache.spark.broadcast.Broadcast import org.apache.spark.sql.streaming.DataStreamWriter import org.apache.spark.sql.{Dataset, SparkSession} @CapabilityDescription("Provide a ways to use Mqtt a input or output in StructuredStream streams") class MQTTStructuredStreamProviderService extends AbstractControllerService with StructuredStreamProviderService { var brokerUrl = "" var persistence = "" var clientId = "" var QoS = 0 var username = "" var password = "" var cleanSession = true var connectionTimeout = 5000 var keepAlive = 30000 var mqttVersion = "3.1.1" var topic = "" @OnEnabled @throws[InitializationException] override def init(context: ControllerServiceInitializationContext): Unit = { super.init(context) this.synchronized { try { // Define the MQTT parameters, broker list must be specified brokerUrl = context.getPropertyValue(MQTT_BROKER_URL).asString persistence = context.getPropertyValue(MQTT_PERSISTENCE).asString clientId = context.getPropertyValue(MQTT_CLIENTID).asString QoS = context.getPropertyValue(MQTT_QOS).asInteger().intValue() username = context.getPropertyValue(MQTT_USERNAME).asString password = context.getPropertyValue(MQTT_PASSWORD).asString cleanSession = context.getPropertyValue(MQTT_CLEAN_SESSION).asBoolean().booleanValue() connectionTimeout = context.getPropertyValue(MQTT_CONNECTION_TIMEOUT).asInteger().intValue() keepAlive = context.getPropertyValue(MQTT_KEEP_ALIVE).asInteger().intValue() mqttVersion = context.getPropertyValue(MQTT_VERSION).asString topic = context.getPropertyValue(MQTT_TOPIC).asString } catch { case e: Exception => throw new InitializationException(e) } } } /** * Allows subclasses to register which property descriptor objects are * supported. * * @return PropertyDescriptor objects this processor currently supports */ override def getSupportedPropertyDescriptors() = { val descriptors: util.List[PropertyDescriptor] = new util.ArrayList[PropertyDescriptor] descriptors.add(MQTT_BROKER_URL) descriptors.add(MQTT_CLEAN_SESSION) descriptors.add(MQTT_CLIENTID) descriptors.add(MQTT_CONNECTION_TIMEOUT) descriptors.add(MQTT_KEEP_ALIVE) descriptors.add(MQTT_PASSWORD) descriptors.add(MQTT_PERSISTENCE) descriptors.add(MQTT_VERSION) descriptors.add(MQTT_USERNAME) descriptors.add(MQTT_QOS) descriptors.add(MQTT_TOPIC) Collections.unmodifiableList(descriptors) } /** * create a streaming DataFrame that represents data received * * @param spark * @param streamContext * @return DataFrame currently loaded */ override def read(spark: SparkSession, streamContext: StreamContext) = { import spark.implicits._ implicit val recordEncoder = org.apache.spark.sql.Encoders.kryo[Record] getLogger.info("connecting to MQTT") spark.readStream .format("com.hurence.logisland.util.mqtt.MQTTStreamSourceProvider") .option("topic", topic) .option("persistence", persistence) .option("clientId", clientId) .option("QoS", QoS) .option("username", username) .option("password", password) .option("cleanSession", cleanSession) .option("connectionTimeout", connectionTimeout) .option("keepAlive", keepAlive) .option("mqttVersion", mqttVersion) .load(brokerUrl) .as[(String, Array[Byte], Timestamp)] .map(r => { new StandardRecord("kura_metric") .setTime(r._3) .setField(FieldDictionary.RECORD_VALUE, FieldType.BYTES, r._2) .setField(FieldDictionary.RECORD_NAME, FieldType.STRING, r._1) }) } /** * create a streaming DataFrame that represents data received * * @param streamContext * @return DataFrame currently loaded */ override def write(df: Dataset[Record], controllerServiceLookupSink: Broadcast[ControllerServiceLookupSink], streamContext: StreamContext): DataStreamWriter[_] = { // Create DataFrame representing the stream of input lines from connection to mqtt server df.writeStream .format("org.apache.bahir.sql.streaming.mqtt.MQTTStreamSourceProvider") .option("topic", topic) .option("persistence", persistence) .option("clientId", clientId) .option("QoS", QoS) .option("username", username) .option("password", password) .option("cleanSession", cleanSession) .option("connectionTimeout", connectionTimeout) .option("keepAlive", keepAlive) .option("mqttVersion", mqttVersion) } }
[ 0.0074682654812932014, -0.008155148476362228, -0.006353917997330427, 0.002218926325440407, -0.012613371014595032, -0.00002431243410683237, -0.02909388579428196, -0.001998837338760495, 0.024465477094054222, 0.02603628672659397, 0.01917869970202446, -0.001217370037920773, 0.03536051884293556, -0.05048253759741783, -0.010960917919874191, -0.020314831286668777, -0.03821757808327675, -0.03599594533443451, -0.04474462568759918, 0.010924551635980606, 0.0035154849756509066, 0.021815428510308266, -0.09044776111841202, -0.04657592996954918, -0.022127531468868256, 0.05341572314500809, 0.0054585887119174, -0.013025345280766487, 0.06956406682729721, 0.055339206010103226, -0.003600610187277198, -0.025240764021873474, 0.012799386866390705, -0.07247564941644669, 0.005870087072253227, -0.00600309856235981, 0.04416538029909134, 0.006002482958137989, -0.043509021401405334, -0.0206275787204504, 0.02605392225086689, -0.021602490916848183, 0.04175306484103203, -0.05255114287137985, -0.03297552093863487, -0.02090739645063877, -0.006047059316188097, -0.010553554631769657, 0.001509988447651267, -0.0008216574788093567, -0.0007498720078729093, -0.006837944965809584, 0.020403549075126648, 0.011113368906080723, -0.012432483956217766, 0.012940913438796997, 0.004436869639903307, -0.025152500718832016, -0.07302999496459961, 0.026338618248701096, 0.020656974986195564, 0.012566039338707924, 0.01914842799305916, -0.07688803970813751, 0.049688760191202164, 0.023426741361618042, -0.0066454485058784485, -0.012852055951952934, 0.015314570628106594, -0.045399319380521774, -0.03102874383330345, 0.003439792199060321, -0.03813446685671806, -0.04169755429029465, 0.008725318126380444, 0.029318107292056084, -0.008066394366323948, -0.02189265377819538, -0.0034914284478873014, 0.021826371550559998, -0.0048803770914673805, 0.03585340455174446, 0.009133726358413696, 0.015249855816364288, -0.04380132630467415, -0.028599506244063377, 0.0031853700056672096, -0.0009033413371071219, -0.0028041014447808266, 0.0023532279301434755, -0.023188451305031776, 0.07662957161664963, 0.007012832909822464, 0.010759487748146057, 0.02620607428252697, 0.05635076016187668, -0.04296870157122612, 0.04587135463953018, 0.003977225627750158, 0.022049907594919205, 0.044666580855846405, 0.014068401418626308, -0.018892843276262283, 0.049744464457035065, -0.026277979835867882, -0.022636648267507553, 0.006496236193925142, 0.010519548319280148, -0.04789058119058609, -0.02482982538640499, -0.011132875457406044, -0.02005922608077526, 0.03135848417878151, -0.009284544736146927, -0.008947016671299934, 0.03459249064326286, -0.00037870611413381994, 0.037669453769922256, -0.03138923645019531, -0.01422599796205759, 0.03288368880748749, -0.011427302844822407, 0.03859695792198181, -0.04651134833693504, 0.0355740524828434, -0.052072253078222275, -0.004408822860568762, 0.05866483598947525, -0.025948721915483475, -0.022272972390055656, 0.023199617862701416, -0.03086867555975914, -0.007402184884995222, 0.03042195551097393, 0.0012745566200464964, 0.02884187363088131, 0.014465254731476307, 0.038019485771656036, 0.0246152114123106, -0.055175893008708954, 0.02582516148686409, -0.004005212336778641, -0.007128037512302399, 0.1220136359333992, -0.0052063725888729095, 0.022694604471325874, 0.020734524354338646, 0.004535560496151447, -0.06131678447127342, 0.011317589320242405, -0.04076128080487251, 0.025072043761610985, 0.02944544330239296, 0.03222475200891495, -0.017537331208586693, -0.009629537351429462, -0.02231879159808159, 0.012546928599476814, 0.022715281695127487, 0.0027372408658266068, -0.011235942132771015, 0.028364302590489388, -0.01749885268509388, 0.029999367892742157, -0.00749439001083374, 0.04889202490448952, -0.041402723640203476, -0.017888974398374557, -0.009901762008666992, -0.033888570964336395, 0.00714695081114769, -0.008113856427371502, -0.02151607908308506, 0.00015047384658828378, 0.04249068722128868, 0.026593392714858055, 0.03745008632540703, -0.016892652958631516, 0.020870612934231758, 0.051774416118860245, -0.02918296493589878, 0.016940001398324966, -0.0009268326102755964, 0.06903636455535889, 0.016094906255602837, 0.012144889682531357, 0.023447368294000626, -0.027477558702230453, -0.0420243963599205, -0.03614353761076927, 0.01456848718225956, 0.024363070726394653, -0.03469865769147873, 0.022008119150996208, 0.009498994797468185, -0.0044982112012803555, -0.04793526232242584, -0.006820205133408308, -0.0337115153670311, -0.024570466950535774, -0.03742990270256996, 0.04362844303250313, -0.0196753591299057, 0.021734053269028664, -0.0002506338933017105, -0.05313735082745552, 0.01804625615477562, 0.06540721654891968, -0.05291314423084259, 0.007422002498060465, 0.04556433856487274, 0.009781567379832268, -0.015668435022234917, -0.025266418233513832, 0.006180283147841692, -0.011239550076425076, -0.01075314823538065, 0.0646888017654419, -0.00984144676476717, -0.005383736919611692, 0.002650289563462138, -0.009256030432879925, 0.03234834596514702, 0.02822994627058506, -0.03016919270157814, -0.0047087217681109905, 0.003827257314696908, 0.028634965419769287, -0.0378807969391346, -0.01374965999275446, -0.002977637806907296, 0.049906324595212936, 0.027148758992552757, 0.06299237161874771, 0.028170710429549217, 0.011299552395939827, 0.035991620272397995, 0.038662105798721313, 0.013712622225284576, 0.013538503088057041, -0.023946551606059074, 0.025601034983992577, 0.009350820444524288, 0.029570244252681732, 0.021269751712679863, 0.003734621684998274, -0.02032853476703167, -0.0249475110322237, -0.00812576524913311, 0.016925793141126633, -0.04276972636580467, 0.025641687214374542, 0.014275886118412018, 0.0389675609767437, -0.028477076441049576, -0.011134534142911434, 0.025272127240896225, 0.05640614777803421, -0.007158664055168629, -0.0032883037347346544, 0.004645198583602905, 0.022707441821694374, -0.006562910974025726, 0.012512637302279472, 0.02699310891330242, 0.027097906917333603, 0.027589615434408188, 0.03003857471048832, 0.011323477141559124, -0.03634461387991905, -0.03550878167152405, -0.052656035870313644, -0.027555067092180252, -0.017161959782242775, -0.06965065747499466, 0.001660031033679843, 0.010880806483328342, -0.04446157440543175, 0.019210588186979294, 0.0002344123349757865, -0.005332701373845339, -0.015238082967698574, -0.005653608124703169, 0.051746245473623276, 0.027988282963633537, 0.020631391555070877, -0.03660444915294647, 0.008044390939176083, 0.00432720547541976, 0.01670883223414421, -0.033668290823698044, -0.021323034539818764, 0.004964026622474194, 0.029105979949235916, 0.008470763452351093, -0.036088909953832626, -0.005902587436139584, -0.011820760555565357, -0.03051765449345112, -0.02712664194405079, -0.017299743369221687, -0.006517462432384491, 0.005363020580261946, -0.007020352408289909, -0.03653338551521301, 0.03282102197408676, 0.02993069775402546, -0.03304343298077583, 0.06508208066225052, 0.029450206086039543, -0.021216368302702904, 0.0182956513017416, -0.012297696433961391, 0.016999876126646996, -0.04815240576863289, 0.05346864461898804, 0.055751148611307144, -0.011502975597977638, -0.03256671130657196, -0.023029698058962822, -0.011683155782520771, 0.023382099345326424, -0.02158423513174057, -0.007005233783274889, -0.021851103752851486, 0.044263262301683426, 0.025604089722037315, -0.06770297139883041, 0.0016911624697968364, -0.02323722466826439, -0.02110396884381771, -0.024394618347287178, -0.05955127254128456, 0.04275897890329361, 0.022263238206505775, 0.01726921834051609, 0.014198020100593567, -0.02732240967452526, -0.0049328492023050785, -0.017795627936720848, 0.030347000807523727, -0.03369076922535896, 0.023021025583148003, 0.06450522691011429, 0.016662897542119026, 0.023373611271381378, 0.031613387167453766, -0.012369269505143166, 0.021580956876277924, -0.00575581518933177, -0.04004744812846184, 0.003352516796439886, 0.028840109705924988, 0.02557489089667797, -0.007645351346582174, 0.05386544018983841, -0.03322657570242882, -0.008846303448081017, 0.025589099153876305, 0.016198374330997467, 0.051374491304159164, 0.021676022559404373, -0.0025132487062364817, -0.02786830998957157, -0.03552844002842903, -0.06906339526176453, 0.01609904319047928, 0.029823293909430504, 0.09628581255674362, -0.09489314258098602, 0.061502471566200256, 0.017224367707967758, -0.045469772070646286, 0.05365784093737602, -0.04710714891552925, -0.017739037051796913, 0.043729059398174286, -0.017293523997068405, 0.021085184067487717, -0.03512349724769592, 0.013415968045592308, -0.007811580318957567, 0.009728599339723587, 0.04626937583088875, 0.054846666753292084, 0.03228425979614258, -0.02484210394322872, -0.015938445925712585, -0.02458684705197811, -0.010579872876405716, -0.018891489133238792, 0.001841488410718739, 0.01423044316470623, 0.004589406307786703, -0.02338748425245285, -0.046199169009923935, 0.023765498772263527, 0.039875853806734085, 0.028706423938274384, 0.0024492195807397366, 0.04913998022675514, 0.009611121378839016, 0.032422058284282684, 0.057169366627931595, 0.00045279518235474825, -0.001061045448295772, -0.0612514391541481, 0.02637217566370964, 0.015134970657527447, -0.008292623795568943, -0.022595785558223724, -0.03967992588877678, -0.03126126527786255, 0.019106565043330193, 0.03161141276359558, -0.01531266700476408, -0.033442944288253784, 0.0163723211735487, 0.011454662308096886, 0.0270331222563982, -0.004801597446203232, -0.03180631622672081, -0.02433120086789131, 0.04339052364230156, 0.03677532449364662, -0.06491769105195999, -0.019411372020840645, -0.03681664168834686, 0.0253339484333992, 0.05195756256580353, -0.010450144298374653, -0.04116441309452057, -0.0188361257314682, -0.009450486861169338, -0.04169103130698204, 0.0013469868572428823, 0.03466726839542389, -0.012344497255980968, 0.025729425251483917, -0.0271319393068552, 0.029065877199172974, 0.037565842270851135, 0.01114933006465435, -0.026172686368227005, 0.00997881218791008, 0.01701667159795761, -0.00833854265511036, 0.02822769060730934, -0.027343928813934326, -0.005463221110403538, 0.029395585879683495, -0.06004723161458969, 0.0038810940459370613, -0.025210725143551826, -0.030767960473895073, -0.02309405244886875, 0.013662104494869709, 0.008691076189279556, 0.048747844994068146, -0.010509070008993149, 0.02503391169011593, -0.00808569137006998, 0.012198710814118385, 0.0014729384565725923, -0.05672546103596687, 0.04700399562716484, -0.01416596956551075, -0.03743666782975197, 0.03704824298620224, 0.04333015903830528, -0.00032330810790881515, 0.020031247287988663, 0.018533866852521896, -0.04329119995236397, 0.01915328949689865, -0.03335532546043396, -0.0023016026243567467, -0.02610822208225727, -0.016103586181998253, 0.0052274782210588455, -0.04537154734134674, 0.04777662828564644, 0.012895694933831692, -0.01689232513308525, -0.028568247333168983, -0.05964259058237076, 0.003969321493059397, 0.003039277857169509, -0.05131683126091957, 0.02586902119219303, -0.016998305916786194, -0.018854210153222084, -0.009524951688945293, 0.007638159207999706, -0.010378696955740452, -0.02024667151272297, 0.002215651096776128, 0.013222342357039452, 0.0200416948646307, -0.008141028694808483, 0.044962625950574875, -0.01781081221997738, -0.04160020872950554, 0.0049306657165288925, 0.005254565272480249, -0.007209883537143469, -0.04785265028476715, 0.009936703369021416, -0.025682004168629646, -0.0052818129770457745, -0.019294461235404015, 0.013913331553339958, -0.019993919879198074, 0.005676969885826111, 0.0013684428995475173, 0.016628693789243698, 0.01623220182955265, -0.0024900860153138638, -0.041766807436943054, 0.02219332568347454, 0.028703026473522186, -0.056677062064409256, -0.03848227486014366, 0.020736610516905785, 0.0014820998767390847, 0.058734141290187836, 0.012596351094543934, -0.0018873416120186448, -0.03614047169685364, -0.061493758112192154, -0.0029191847424954176, -0.02702067792415619, -0.014533198438584805, -0.04161963611841202, -0.023353593423962593, -0.009656133130192757, 0.03684256598353386, 0.03647399693727493, -0.03016970492899418, -0.004523662384599447, -0.006332945078611374, 0.03762742131948471, -0.04136118292808533, -0.020939873531460762, -0.02657453529536724, 0.02426987886428833, -0.010137218981981277, 0.05898730456829071, -0.007850063033401966, 0.010470368899405003, 0.008292417973279953, 0.0009171891724690795, 0.006471083965152502, 0.020247841253876686, -0.06647805124521255, -0.044061578810214996, 0.013729116879403591, 0.003594401990994811, -0.007679610047489405, 0.027434973046183586, -0.01831730082631111, 0.025838512927293777, -0.03578998148441315, -0.005917092319577932, -0.0033359096851199865, -0.025683484971523285, -0.025160493329167366, -0.0010841834591701627, 0.03559369593858719, -0.041786979883909225, 0.027584796771407127, -0.015561078675091267, 0.05949711054563522, 0.02093806304037571, -0.015478748828172684, -0.060614656656980515, -0.035228658467531204, -0.07448276877403259, -0.056449972093105316, 0.03540463000535965, -0.04216989502310753, -0.02988472767174244, -0.014753245748579502, -0.018823837861418724, 0.04823356121778488, -0.01763751544058323, 0.03652448579668999, 0.057195648550987244, 0.013419171795248985, -0.011437671259045601, -0.01849456876516342, 0.04645245894789696, 0.02442156709730625, -0.03506997227668762, 0.03563410043716431, -0.0044297585263848305, -0.01681130938231945, -0.015472428873181343, -0.044581279158592224, -0.03694954141974449, -0.04425245523452759, 0.005091531202197075, 0.05749456211924553, -0.020374959334731102, 0.024006472900509834, 0.011249623261392117, -0.045696791261434555, -0.0701509490609169, 0.031242744997143745, -0.012270756997168064, 0.015286631882190704, 0.05411626026034355, -0.0021347065921872854, 0.004639544989913702, 0.007657203823328018, -0.020961282774806023, 0.034895461052656174, -0.03235255554318428, 0.06185644865036011, -0.021736547350883484, -0.036282140761613846, 0.005616308189928532, 0.05521048977971077, -0.05411291494965553, -0.06287723779678345, -0.02434995397925377, -0.00810844637453556, -0.0057518756948411465, -0.03456392139196396, 0.007718260865658522, -0.006887742783874273, 0.0025969399139285088, 0.002039776649326086, 0.0097074955701828, 0.003097518114373088, 0.02599426917731762, 0.014229065738618374, 0.037163153290748596, -0.014453258365392685, 0.02834518440067768, 0.05526455119252205, 0.004632996395230293, -0.0011893308255821466, -0.03216935694217682, 0.015789145603775978, -0.012368838302791119, -0.0013737675035372376, 0.05056276544928551, -0.014610981568694115, 0.013743693940341473, 0.009970542043447495, 0.0065594203770160675, 0.04167536646127701, -0.022802088409662247, -0.00967638473957777, 0.026260804384946823, -0.028830615803599358, -0.07346170395612717, -0.014870206825435162, 0.018358737230300903, 0.004397613927721977, 0.04267092049121857, -0.05902524292469025, 0.01798645220696926, 0.048970796167850494, 0.00006214716995600611, 0.000625312328338623, -0.06852809339761734, -0.046382755041122437, -0.05777096375823021, -0.015182845294475555, -0.04082159698009491, 0.013211328536272049, -0.04940300062298775, 0.011644512414932251, 0.01987650990486145, -0.04627366364002228, 0.01794787123799324, 0.030100390315055847, 0.003833547467365861, 0.00950645562261343, -0.03648922219872475, 0.005404564086347818, -0.05006898194551468, -0.03722003102302551, -0.05621720105409622, -0.014364264905452728, 0.033007994294166565, 0.018086975440382957, -0.026813097298145294, 0.014543545432388783, -0.029608532786369324, 0.024637321010231972, -0.005030872765928507, 0.03098081424832344, -0.008261796087026596, -0.04452241212129593, 0.009753591381013393, 0.005107290577143431, -0.0031700024846941233, 0.03358905762434006, 0.033581916242837906, -0.029821718111634254, 0.013950314372777939, 0.006314495578408241, -0.02323736995458603, -0.05307670682668686, 0.014715206809341908, 0.005171049851924181, -0.001100356923416257, -0.057028878480196, -0.03313164412975311, 0.010580024681985378, -0.043790221214294434, 0.012200670316815376, -0.015839962288737297, 0.020202292129397392, -0.012502847239375114, -0.002417766721919179, 0.0035165147855877876, 0.04881145805120468, -0.040452830493450165, 0.041494548320770264, -0.018854720517992973, 0.010438397526741028, 0.015180148184299469, -0.004314487334340811, 0.03316514566540718, 0.015437491238117218, -0.002615052741020918, -0.023978082463145256, 0.03744190186262131, -0.01574471779167652, -0.008811138570308685, 0.0545634888112545, -0.029934702441096306, -0.006604344584047794, -0.018383221700787544, -0.01598859392106533, 0.010228174738585949, 0.04979149252176285, 0.0055467658676207066, 0.007442952133715153, 0.021487347781658173, -0.04664704576134682, -0.01567649282515049, 0.02230250835418701, -0.08436698466539383, -0.07446981221437454, 0.07261679321527481, -0.05035123974084854, 0.013635287061333656, -0.017600450664758682, -0.04128234088420868, -0.008555706590414047, -0.008294668979942799, -0.014197304844856262, -0.007094743195921183, 0.030742859467864037, 0.011834939010441303, 0.05584254860877991, -0.00517676305025816, 0.0017021888634189963, 0.009156369604170322, 0.04676651582121849, -0.04711862653493881, -0.049207109957933426, -0.010472869500517845, 0.04158419743180275, 0.012528052553534508, 0.0017076635267585516, -0.018423646688461304, -0.002285016467794776, 0.0076828040182590485, 0.03544184938073158, -0.002010780619457364, 0.0015681091463193297, -0.002752195345237851, 0.02318604476749897, -0.03146948292851448, 0.010984915308654308, -0.04787830635905266, 0.014269004575908184, 0.003231729380786419, -0.009145442396402359, -0.029685962945222855, 0.057016581296920776, 0.03200669586658478, 0.0017065958818420768, 0.0449354387819767, 0.01056681014597416, 0.031000617891550064, -0.011705384589731693, 0.001968165161088109, -0.010859941132366657, 0.04136054590344429, 0.051679983735084534, 0.07161691784858704, -0.011559254489839077, 0.031976353377103806, 0.02769562043249607, -0.010681348852813244, -0.0002732106077019125, 0.030562929809093475, 0.02346683107316494, -0.03115604817867279, 0.02317715995013714, -0.00784770492464304, 0.003991694655269384, 0.010988463647663593, -0.010705829598009586, 0.019911181181669235, -0.016925200819969177, -0.0027760379016399384, -0.03177882358431816, -0.011197700165212154, 0.04127931594848633, 0.0030196215957403183, 0.009594284929335117, -0.009704172611236572, -0.0005257043521851301, 0.020480193197727203, 0.03685038909316063, -0.0075249457731842995, -0.013784424401819706, 0.04217641055583954, 0.030201800167560577, 0.013492788188159466, 0.01786770299077034, 0.015404406934976578, 0.017882728949189186, -0.04177865758538246, 0.015402719378471375, 0.003475666046142578, 0.019636062905192375, -0.03214874491095543, -0.009546924382448196, -0.04459424316883087, 0.038916926831007004, -0.010627917014062405, -0.015226876363158226, 0.03621247410774231, -0.0389806404709816, -0.02249511331319809, -0.0404311940073967, 0.013460155576467514, -0.033990006893873215, -0.012730448506772518, 0.03109215758740902, -0.006410763133317232, -0.03434187173843384, 0.042552363127470016, -0.016636570915579796, 0.040851205587387085, -0.008927791379392147, 0.054377876222133636, -0.007850359193980694, 0.059723615646362305, 0.05452980473637581, -0.024458453059196472, -0.01835477352142334, 0.03789401799440384, -0.02583642490208149, -0.03333494812250137, -0.031792834401130676, -0.06152903288602829, -0.008344177156686783, -0.025717640295624733, -0.03991421312093735, -0.026964154094457626, 0.03892694041132927, -0.011809618212282658, -0.04278640076518059, 0.03009372390806675, 0.04352797940373421, -0.06259457767009735, -0.006601165980100632, 0.021636253222823143, 0.042464062571525574, -0.017000727355480194, -0.015956023707985878, -0.022091981023550034, -0.04400751367211342, 0.007692573592066765, -0.05151909217238426, 0.04121106117963791, 0.0009548614034429193, -0.02265116572380066, -0.021502848714590073, -0.04490622878074646, -0.01640288345515728, -0.013012445531785488, -0.019756658002734184, -0.013771116733551025, 0.04186530038714409, 0.06498353183269501, 0.02873018942773342, 0.011698071844875813, -0.014045508578419685, -0.024335410445928574, 0.026928436011075974, 0.06515062600374222, -0.02077290415763855, 0.08513717353343964, 0.03723976016044617, -0.01309086475521326, 0.022269539535045624, -0.04911073297262192, 0.023150397464632988, -0.018594693392515182, -0.018086880445480347, -0.020071880891919136, 0.0031048294622451067, -0.044570665806531906, -0.04240802302956581, 0.008694780990481377, 0.010777730494737625, 0.02507915534079075, 0.0025100931525230408, -0.06896574050188065, -0.006634511053562164, -0.04623030498623848, -0.017953133210539818, -0.05855531990528107, -0.0069804685190320015, 0.012100494466722012, -0.025365330278873444, 0.023927975445985794, -0.06041327118873596, 0.16015245020389557, 0.051960498094558716, 0.04147680476307869, -0.013165641576051712, 0.020181575790047646, 0.048454880714416504, 0.03754531964659691, -0.02038176916539669, 0.031373076140880585, -0.019875790923833847, 0.01396610401570797, -0.00800432451069355, 0.01863844133913517, 0.026791991665959358, 0.0046279532834887505, 0.07150593400001526, -0.050419922918081284, 0.000968830194324255, 0.02391795627772808, -0.04761338606476784, -0.0637984350323677, 0.029469601809978485, 0.013149159029126167, 0.04854714125394821, 0.008543018251657486, 0.000749679864384234, 0.029464654624462128, -0.04208958148956299, -0.026501711457967758, 0.002791714621707797, 0.01517412718385458, -0.03932236507534981, 0.024854421615600586, 0.0053831664845347404, -0.017817944288253784, 0.05141061916947365, 0.025764450430870056, -0.0003624668752308935, -0.0035197234246879816, 0.02207254059612751, -0.023308133706450462, -0.0014883207622915506, 0.012521394528448582, -0.0523819662630558, 0.008253378793597221, 0.0003370810009073466, -0.024021508172154427, 0.009850705042481422, 0.021814566105604172, -0.043911561369895935, 0.034104324877262115, -0.027007075026631355, 0.020694809034466743, -0.02870313636958599, -0.034715503454208374, -0.0013904121005907655, 0.004619138315320015, -0.028375178575515747, -0.01633203960955143, -0.011721259914338589, 0.03514794260263443, 0.013739836402237415, -0.02148187905550003, 0.031231442466378212, -0.045084238052368164, -0.014232858084142208, 0.007430027239024639, -0.010283777490258217, -0.0012114685960114002, -0.02246234193444252, -0.010949310846626759, 0.026714449748396873, 0.016668256372213364, -0.03901215270161629, 0.04101358726620674, 0.06472503393888474, -0.019410379230976105, 0.040994759649038315, 0.030224494636058807, -0.003114256775006652, -0.0049750241450965405, -0.016833465546369553, 0.0061571975238621235, -0.012370498850941658, 0.0189523808658123, 0.042549267411231995, -0.04194813594222069, -0.03850489854812622, -0.026177052408456802, 0.030584191903471947, 0.04053829610347748, 0.035013798624277115, -0.007289518602192402, 0.008779492229223251, 0.008967206813395023 ]
Areas of action Smart City Darmstadt Portrait of the city BITKOM COMPETITION INTRODUCING THE CITY OF DARMSTADT This is where science, culture, entrepreneurial spirit and diverse industries meet cosmopolitan and tech-savvy people. Innovation is something of an institution in Darmstadt, and digitalisation for the benefit of citizens started long ago. With the development of electrical engineering, Darmstadt is the cradle of digitalisation. THE CITY WITH MANY SIDES Hier treffen Wissenschaft, Kultur, Gründergeist und vielseitige Industrien auf weltoffene und technikaffine Menschen. Innovation hat in Darmstadt Tradition und die Digitalisierung zum Nutzen der Bürger:innen schon lange begonnen. Mit der Entwicklung der Elektrotechnik steht in Darmstadt die Wiege der Digitalisierung. A proud heritage that is constantly being developed by a unique IT cluster. Germany and Europe are just a 'click' away from the Frankfurt airport hub. In Darmstadt, the European Space Operations Centre (ESOC) and the EUMETSAT satellite control centre (EUMETSAT) open the door to space travel and satellite control – technology that enables a multitude of digital developments for the present and the future. THE INNOVATIVE SWARM CITY Darmstadt is growing and is remaining young: almost 162,000 people live on 12,200 hectares. Their average age is 40.5 years, with 42.4 per cent of Darmstadt residents aged between 18 and 45. There are more births than deaths and the migration balance is positive. 11,000 new citizens move to Darmstadt every year, and the trend continues to rise. The high proportion of young people classifies Darmstadt in the jargon of urban planners as one of the few swarm cities (German: Schwarmstadt) in Germany. The population is tech-savvy, international and multicultural and particularly open to the application of IT innovations. Darmstadt is equipped with an advanced IT infrastructure. Every household has at least DSL, and 97 per cent also has coax cable network connections. The infrastructure in the vicinity of the city has also been well developed. Free 'DA-WIFI' is available throughout the city centre for citizens, visitors and tourists, as well as at the main railway station and already in the districts of Arheilgen, Eberstadt and Wixhausen. The DARZ data centre in Darmstadt is energy-efficient and modernly connected directly to the world's largest internet node, De-CIX. In 2015, it won the Deutsche Rechenzentrumspreis and offers many companies the opportunity to provide cloud services. Darmstadt's universities are connected via their own fibre-optic network, and schools have been using a shared infrastructure for many years. Darmstadt is Germany's first science city. With the award ceremony in 1997, the Hessian Ministry of the Interior honoured the national and international importance of scientific institutions. Around 44,000 students are studying at the Technical University, Darmstadt University of Applied Sciences and the Evangelische Hochschule. The city's most important research institutions include three Fraunhofer Institutes, ATHENE, the leading centre for digital security, the Institute for Applied Ecology, and the GSI Helmholtz Centre for Heavy Ion Research, where the chemical element 'darmstadtium' was discovered. The centre is being expanded to become the FAIR international particle accelerator centre. Nine EU member states are involved. The facility promises insights into the structure of matter and the evolution of the universe. More than 30 other research and development institutions are world-renowned. THE OPEN-MINDED CITY OF CULTURE Darmstadt has many green spaces, easy access to recreational areas, the Odenwald and the Bergstraße are right on your doorstep. The world-famous centre and world cultural heritage of Jugendstil at the Mathildenhöhe, the diverse cultural offerings of a renowned three-speciality state theatre, the Hessische Landesmuseum, the largest inner-city music festival in Germany and a diverse music and art scene all provide a good feeling for life. Darmstadt residents are active, cosmopolitan people with a distinct welcoming culture. THE ECONOMIC CITY Around 8,000 companies are based in Darmstadt, the largest of which are: Merck, Deutsche Telekom, Evonik Industries, Entega and Döhler. The leading industries are chemicals, pharmaceuticals, biotech, hair cosmetics, information and communication technology, mechanical engineering, electrical engineering, mechatronics and space technology. Darmstadt benefits from the close integration of research, development, industry and the entire Rhine-Main-Neckar economic region. Ideally accessible transport routes, the proximity to the international airport and the financial metropolis of Frankfurt round off the numerous advantages of this location.
[ -0.031621746718883514, 0.011284002102911472, -0.034843895584344864, 0.006143070757389069, -0.030715733766555786, 0.00714859738945961, -0.00037425843765959144, -0.007596489507704973, 0.014834441244602203, 0.020766986533999443, 0.010783831588923931, 0.015863269567489624, 0.020897414535284042, -0.023601209744811058, -0.005258685443550348, -0.008394850417971611, -0.02194708026945591, -0.02563280612230301, -0.005730480886995792, -0.007199182640761137, -0.00018473181989975274, 0.009186374954879284, -0.049450524151325226, -0.06812617927789688, -0.05966778099536896, 0.057977233082056046, 0.03667943552136421, 0.0030450718477368355, 0.06244148313999176, 0.04811803251504898, -0.013444308191537857, -0.05077897012233734, 0.024066705256700516, -0.04372857138514519, -0.045703787356615067, -0.04514550790190697, 0.026204317808151245, -0.03204504773020744, -0.010828415863215923, -0.06485094130039215, 0.0038270261138677597, -0.005352231673896313, 0.03138509765267372, -0.06908220797777176, -0.015245286747813225, 0.008522488176822662, 0.007502503227442503, -0.03529714047908783, 0.020569851621985435, -0.03806592896580696, -0.010744891129434109, 0.02142961695790291, -0.009733570739626884, 0.020633641630411148, -0.008866926655173302, -0.0040852781385183334, 0.015259750187397003, -0.0007819861057214439, -0.015499718487262726, 0.01809147372841835, -0.008631010539829731, -0.010902529582381248, 0.05103228986263275, -0.03380541875958443, 0.03537357598543167, 0.010053066536784172, -0.00013735501852352172, -0.011255800724029541, 0.020893851295113564, -0.04337584599852562, -0.010933187790215015, -0.03059259243309498, -0.0046491376124322414, -0.04510879889130592, -0.018329450860619545, 0.010458463802933693, -0.016323696821928024, 0.00292427116073668, -0.036286935210227966, -0.028624439612030983, 0.010486043989658356, 0.03813641890883446, -0.02012399211525917, 0.03268507868051529, -0.04426446557044983, -0.029302826151251793, -0.0021800720132887363, -0.01320542674511671, -0.032967839390039444, 0.01777493581175804, 0.027442310005426407, 0.057029832154512405, 0.016335010528564453, -0.0009164436487480998, 0.03210252895951271, 0.04930496588349342, -0.03541436791419983, 0.01646505296230316, -0.03980747610330582, 0.010586924850940704, 0.05340664088726044, 0.03602243587374687, -0.008380899205803871, 0.058683544397354126, -0.04864449054002762, -0.0011006927816197276, -0.004799033515155315, -0.0005151666118763387, 0.020191924646496773, -0.0395105816423893, -0.005781340878456831, -0.007562719751149416, 0.009894066490232944, -0.0016595732886344194, 0.002754007000476122, 0.04146873205900192, -0.0021539360750466585, 0.01746637001633644, 0.0024891451466828585, 0.039454635232686996, -0.017230676487088203, 0.023937635123729706, 0.04599984735250473, 0.0169680193066597, -0.005591782741248608, -0.03266584500670433, -0.028705118224024773, 0.04920410364866257, -0.02087141014635563, -0.04456609487533569, -0.01079554483294487, -0.052400145679712296, -0.03301704674959183, 0.020450005307793617, -0.0015712904278188944, 0.027355540543794632, 0.0168460663408041, 0.03245878592133522, 0.014458762481808662, -0.011484592221677303, 0.04892280697822571, 0.01292870007455349, 0.02475782297551632, 0.10306531190872192, 0.0045344410464167595, 0.0341758131980896, -0.001639334368519485, 0.01087488979101181, -0.03673116862773895, -0.008943742141127586, -0.03186381235718727, -0.008515259250998497, -0.005264026578515768, 0.04037726670503616, -0.015882212668657303, -0.024358166381716728, -0.012822837568819523, 0.032122544944286346, -0.0009722895338200033, 0.03653975948691368, -0.012484814040362835, 0.02924846112728119, 0.017839588224887848, 0.0315873846411705, -0.009607965126633644, 0.019333064556121826, -0.022109560668468475, 0.016316233202815056, -0.015331401489675045, -0.010109157301485538, 0.01993291638791561, 0.009696165099740028, -0.001451006275601685, 0.016230469569563866, 0.009368469007313251, 0.04580727592110634, 0.041666626930236816, -0.011972548440098763, 0.03714375197887421, 0.030863631516695023, -0.024888021871447563, -0.009052560664713383, 0.0019723987206816673, 0.07074513286352158, 0.012648453004658222, 0.012094849720597267, 0.0029510576277971268, -0.019542932510375977, -0.026563748717308044, -0.023686634376645088, 0.00557914050295949, 0.04352232441306114, -0.046544987708330154, 0.033471181988716125, 0.0009541008621454239, 0.0070922113955020905, 0.0005384134710766375, -0.01163000613451004, -0.0009317219955846667, -0.06146503984928131, -0.03152766823768616, 0.0496220737695694, -0.024075880646705627, -0.002978813135996461, 0.004494634922593832, -0.010632338933646679, 0.001884742989204824, 0.05751660838723183, -0.04038719832897186, 0.009941375814378262, 0.04455314204096794, -0.01055215485394001, -0.015052207745611668, -0.0016869313549250364, 0.046730250120162964, -0.008155222982168198, 0.00516428193077445, 0.038384195417165756, 0.007943685166537762, -0.023441335186362267, 0.0010397954611107707, 0.0035102488473057747, 0.038073278963565826, 0.026047518476843834, -0.04295818507671356, 0.0170600526034832, -0.020225226879119873, 0.06219736114144325, -0.011141972616314888, -0.009342479519546032, 0.007078421302139759, 0.01891714707016945, 0.015639182180166245, 0.0712086483836174, 0.03257713466882706, 0.00045458218664862216, 0.028390079736709595, 0.04254645109176636, -0.014433532021939754, 0.003107971977442503, 0.028730466961860657, 0.030093517154455185, 0.07245177775621414, 0.030748950317502022, -0.010917356237769127, 0.01234294194728136, -0.00948380772024393, -0.00011982812429778278, -0.023394599556922913, 0.03204692527651787, -0.03920606151223183, 0.00187014474067837, 0.02245936542749405, 0.019196389243006706, -0.028696617111563683, 0.025864729657769203, 0.010091893374919891, 0.06508391350507736, -0.021492447704076767, -0.013629701919853687, 0.005067532882094383, 0.017163362354040146, 0.005112604703754187, 0.0031162051018327475, 0.056859660893678665, 0.031618308275938034, 0.0013059150660410523, 0.021737802773714066, -0.0362226776778698, -0.03909634053707123, -0.064002126455307, -0.05033509433269501, -0.06615668535232544, -0.022261882200837135, -0.08134852349758148, -0.008323573507368565, 0.026594532653689384, -0.035574741661548615, 0.0549209825694561, 0.004334017168730497, -0.00909595750272274, -0.03536715358495712, -0.011631847359240055, 0.05726861208677292, 0.04069698974490166, 0.04732576012611389, -0.029130158945918083, 0.05959903076291084, -0.030320629477500916, 0.02787095122039318, -0.027742190286517143, 0.006239168345928192, -0.033951979130506516, -0.01032136008143425, 0.025473130866885185, 0.012612349353730679, -0.021183883771300316, 0.013955604285001755, -0.02994074672460556, -0.03462311252951622, -0.003724089590832591, 0.01854596845805645, -0.02007756009697914, 0.007074954453855753, -0.016481278464198112, 0.03855966031551361, 0.016482913866639137, -0.028820766136050224, 0.04556499794125557, 0.06821145117282867, -0.039717938750982285, 0.045282088220119476, 0.0005047867307439446, 0.022607605904340744, -0.05948236957192421, 0.05257665738463402, 0.07350917905569077, -0.01108539942651987, -0.017867039889097214, -0.00043576155439950526, -0.01573021523654461, 0.017139796167612076, 0.02923787571489811, -0.02515626698732376, -0.0394088476896286, 0.03335593268275261, 0.0028323628939688206, -0.061209581792354584, 0.02284330502152443, -0.03690100461244583, -0.03309161588549614, -0.03188787400722504, -0.02300882153213024, 0.020144397392868996, 0.04235241189599037, 0.013279600068926811, -0.0012320971582084894, -0.033501628786325455, 0.00852918066084385, 0.02140769362449646, 0.01714525744318962, -0.04516812041401863, 0.02887248806655407, 0.04631859064102173, 0.0068406276404857635, 0.036035604774951935, 0.03048716112971306, -0.02130853943526745, 0.03636652231216431, -0.011548318900167942, 0.014434744603931904, 0.022661445662379265, 0.02996564283967018, -0.007062589284032583, 0.026165902614593506, 0.05813301354646683, -0.041931021958589554, 0.001737255952320993, 0.014652951620519161, -0.0023710154928267, 0.02662358433008194, 0.010251934640109539, 0.008885042741894722, 0.009612278081476688, -0.061602428555488586, -0.044846534729003906, 0.02746313437819481, 0.017334353178739548, 0.040329743176698685, -0.07160836458206177, 0.029142314568161964, -0.004594058729708195, -0.04792053997516632, 0.05119025334715843, -0.045605890452861786, -0.0002887711743824184, 0.05221978947520256, 0.011604147963225842, 0.06186969205737114, -0.04758412763476372, 0.015707876533269882, -0.005279988050460815, -0.001755091012455523, 0.021955251693725586, 0.01236911304295063, 0.028738563880324364, -0.0284810122102499, 0.0037564043886959553, -0.024139106273651123, -0.028289061039686203, 0.008689985610544682, -0.03410794213414192, -0.004548348020762205, -0.007582126185297966, -0.04035491123795509, -0.07658687978982925, 0.04302940517663956, 0.025472290813922882, 0.06423027813434601, -0.05610347539186478, 0.048467256128787994, 0.027673672884702682, 0.034756336361169815, 0.04236116632819176, -0.017155181616544724, 0.021733807399868965, -0.02522377483546734, 0.06402738392353058, 0.018339501693844795, -0.00844696443527937, -0.01720304973423481, -0.027213267982006073, 0.01317398902028799, 0.015029367059469223, -0.003001393983140588, -0.008403528481721878, -0.036760322749614716, 0.007269660476595163, 0.01624264009296894, 0.03856922313570976, -0.023990770801901817, 0.005982016678899527, -0.0418771393597126, 0.020521828904747963, 0.00512391421943903, -0.02814776450395584, -0.004846983123570681, -0.041938647627830505, 0.04301130771636963, 0.05893762782216072, -0.02818317897617817, -0.04472295939922333, -0.024971311911940575, -0.02032700926065445, 0.0015029220376163721, 0.007713794708251953, 0.04076394811272621, -0.0002526730240788311, -0.022348951548337936, -0.030166681855916977, 0.02326473407447338, 0.02505989745259285, -0.007425202522426844, -0.011900555342435837, -0.03220738098025322, 0.0019027572125196457, 0.006107985507696867, 0.032307177782058716, -0.04118236154317856, -0.03312595933675766, 0.006436705123633146, -0.03422203287482262, 0.013092723675072193, -0.012389294803142548, 0.014865794219076633, -0.00033516157418489456, -0.011164722964167595, 0.012550224550068378, 0.02578354813158512, -0.0037926335353404284, 0.008669611997902393, -0.013556655496358871, 0.03645258769392967, -0.05208848789334297, -0.039525702595710754, 0.049296580255031586, -0.03977889195084572, -0.020150015130639076, 0.003960755188018084, 0.040914688259363174, -0.019180696457624435, -0.0007831264520063996, 0.02536885440349579, -0.040995340794324875, 0.029362400993704796, -0.036326855421066284, 0.009218964725732803, 0.007795199751853943, -0.02647201344370842, -0.012524052523076534, -0.029336797073483467, 0.005937450099736452, 0.01658414863049984, -0.04154186695814133, -0.040943510830402374, -0.04677671194076538, -0.005113881081342697, 0.02457577921450138, 0.005846094805747271, 0.025163600221276283, 0.007919151335954666, -0.0024932241067290306, 0.0024323072284460068, 0.008252117782831192, 0.006329041440039873, 0.008395357057452202, -0.017279762774705887, 0.042941685765981674, 0.025127239525318146, 0.007560148369520903, 0.03375504910945892, 0.0033469919580966234, -0.05716637894511223, -0.020034102723002434, -0.0008310370030812919, -0.02396230958402157, -0.04567801207304001, 0.01415515597909689, -0.006720191333442926, -0.0060011171735823154, -0.00782798696309328, -0.012772606685757637, -0.02073756232857704, 0.024621566757559776, 0.02017415314912796, 0.020250707864761353, -0.00425767945125699, 0.020562438294291496, -0.03293256461620331, 0.04362133890390396, 0.01974962092936039, -0.05312064290046692, -0.018616337329149246, 0.052255772054195404, -0.017176643013954163, 0.046050772070884705, 0.010029524564743042, -0.01420610398054123, -0.04192328453063965, -0.07333969324827194, -0.020561836659908295, -0.0634714812040329, -0.02488729916512966, -0.0438808910548687, -0.027069207280874252, -0.05616665631532669, 0.00405805604532361, 0.019041992723941803, -0.03560715913772583, 0.015049724839627743, -0.026290616020560265, 0.0007866115774959326, -0.030340272933244705, -0.0408211313188076, -0.041839227080345154, 0.0027271127328276634, 0.007592889945954084, 0.05007621645927429, -0.0014668373623862863, -0.014311525039374828, -0.011054929345846176, 0.024985918775200844, 0.01082486193627119, -0.01184132881462574, -0.06898453086614609, -0.058722175657749176, -0.015967674553394318, -0.013808744959533215, -0.009627260267734528, -0.008805111050605774, -0.050734009593725204, 0.0569562166929245, -0.03621433302760124, -0.02275301143527031, -0.04558166116476059, -0.012917333282530308, -0.0047109671868383884, 0.0076594422571361065, 0.06126851588487625, 0.001473278971388936, 0.04309476912021637, 0.0064782435074448586, 0.0389559306204319, 0.02513733133673668, 0.003933289088308811, -0.05802077800035477, -0.015598207712173462, -0.03645531088113785, -0.0477568544447422, 0.02121705375611782, -0.034164123237133026, -0.030929425731301308, -0.02623344026505947, -0.026464354246854782, 0.030012335628271103, 0.0035025025717914104, 0.01819014549255371, 0.0535942018032074, 0.025292405858635902, -0.0033399839885532856, -0.019836297258734703, 0.04355309531092644, 0.030972827225923538, -0.019626712426543236, -0.014448515139520168, 0.01213111076503992, -0.015553406439721584, -0.007205368019640446, -0.05123721808195114, -0.059191130101680756, -0.039288461208343506, 0.00011576255201362073, 0.0535409152507782, -0.036717917770147324, 0.04887503385543823, -0.011007745750248432, -0.04267170652747154, -0.024226101115345955, 0.03511975705623627, 0.0004949230351485312, 0.012903078459203243, 0.04449271783232689, 0.011577856726944447, 0.018852481618523598, 0.019394556060433388, 0.013485615141689777, -0.0012004217132925987, -0.038862407207489014, 0.04286041855812073, -0.012077778577804565, -0.039775628596544266, 0.012672686018049717, 0.05874546989798546, -0.03007342480123043, -0.026207968592643738, -0.00039944035233929753, 0.0011923707788810134, 0.0013677541865035892, -0.0679595097899437, 0.035897254943847656, -0.006498435512185097, -0.021702906116843224, -0.0007902128854766488, 0.03504297509789467, -0.012030094861984253, 0.05573882907629013, 0.0017423968529328704, 0.03185490518808365, -0.0047704363241791725, 0.026569552719593048, 0.01766432635486126, -0.01149781234562397, -0.032895199954509735, -0.05640333890914917, -0.027028556913137436, 0.016756823286414146, -0.024496659636497498, 0.05763291195034981, -0.031638145446777344, 0.02474377118051052, 0.026603631675243378, 0.0055693150497972965, 0.056444063782691956, -0.005674608983099461, 0.005705137737095356, 0.030661556869745255, -0.02777688391506672, -0.04972352832555771, -0.036461204290390015, 0.016116337850689888, -0.00020298104209359735, 0.052560802549123764, -0.036929499357938766, 0.00027162928017787635, 0.07349012792110443, -0.0009541672188788652, 0.015133582055568695, -0.056855179369449615, -0.029331911355257034, -0.06399864703416824, -0.04896243289113045, -0.04269421473145485, -0.010384735651314259, 0.0015941413585096598, 0.006751761306077242, 0.005493517499417067, -0.03207721188664436, -0.00926432479172945, 0.006443681661039591, -0.009201058186590672, -0.017417851835489273, -0.037155281752347946, 0.026110202074050903, -0.05484045296907425, -0.03672686219215393, -0.04882494732737541, 0.0014480757527053356, -0.021014859899878502, 0.013593561016023159, -0.03648143261671066, 0.015167469158768654, -0.017146719619631767, 0.03143124282360077, -0.007807296235114336, 0.03109174408018589, -0.03550169989466667, -0.07517969608306885, -0.022134969010949135, 0.04616677388548851, -0.02359461970627308, 0.04002675786614418, 0.011419507674872875, 0.005045609548687935, 0.023922733962535858, -0.04091401398181915, -0.015727629885077477, -0.008205513469874859, 0.00706767663359642, -0.0019468502141535282, -0.037744250148534775, -0.03196381404995918, -0.051254723221063614, 0.0021663610823452473, -0.03324577212333679, 0.0021678998600691557, -0.03165442869067192, 0.011533757671713829, -0.0017532948404550552, 0.0069702849723398685, 0.011847010813653469, 0.053508445620536804, -0.005199290346354246, 0.02304750680923462, -0.013235261663794518, 0.016328871250152588, 0.00009051535744220018, -0.044818758964538574, 0.028011243790388107, 0.025755425915122032, -0.002068595727905631, -0.045039430260658264, -0.0074122934602200985, 0.019556302577257156, -0.021680915728211403, 0.01588195189833641, -0.015963293612003326, -0.041891951113939285, -0.022705262526869774, -0.018625356256961823, 0.02009536139667034, 0.048675354570150375, 0.005229341331869364, 0.023889465257525444, 0.027238959446549416, -0.02931327559053898, -0.0375223308801651, 0.004112201742827892, -0.07376707345247269, -0.03461715951561928, 0.03332509100437164, -0.031842224299907684, -0.016431206837296486, 0.017485523596405983, -0.06567379087209702, 0.010800778865814209, -0.01641489379107952, -0.014584376476705074, 0.024538744240999222, 0.0071361977607011795, 0.02301691472530365, 0.03448808938264847, -0.01943608932197094, -0.008555741980671883, -0.004870423581451178, 0.048311006277799606, -0.03322649374604225, -0.042221974581480026, 0.027630047872662544, 0.05200141295790672, -0.01321895606815815, -0.03552721440792084, -0.011555907316505909, 0.019495749846100807, -0.002213227329775691, -0.006827082019299269, 0.009171159006655216, 0.04059908911585808, -0.01995704136788845, 0.020419612526893616, 0.03002586029469967, 0.010782239027321339, -0.02059122920036316, 0.054104119539260864, 0.0065191262401640415, -0.017312930896878242, -0.02253197319805622, 0.06642261147499084, 0.03915562853217125, -0.02044542133808136, 0.0494060292840004, 0.022755634039640427, 0.03268831595778465, -0.014963984489440918, 0.0043775830417871475, -0.010711485520005226, 0.04218233749270439, 0.01194256916642189, 0.025164451450109482, 0.004604408051818609, 0.00921886507421732, 0.055379558354616165, 0.009199200198054314, -0.012623726390302181, 0.036242298781871796, 0.011024202220141888, -0.011638564988970757, 0.020151667296886444, -0.04015165939927101, 0.020786672830581665, -0.0046984669752418995, -0.011074940674006939, 0.028142329305410385, -0.01992480643093586, -0.009139405563473701, 0.006757753435522318, -0.02065623551607132, 0.07437924295663834, -0.017926882952451706, -0.026444733142852783, 0.006845980416983366, -0.006100961472839117, -0.003228394780308008, 0.021010342985391617, 0.024214375764131546, -0.006922426633536816, 0.039974916726350784, 0.03800708428025246, -0.0004034713201690465, 0.03377361223101616, 0.014080170542001724, 0.0052544488571584225, -0.027949078008532524, 0.04687179997563362, 0.006297774612903595, -0.015301701612770557, -0.02512297034263611, 0.014649510383605957, -0.02051960490643978, 0.05038876086473465, -0.03638787567615509, -0.04749763011932373, 0.02756497822701931, -0.04542684555053711, -0.02485065720975399, -0.06311076879501343, 0.03418319672346115, -0.029284553602337837, -0.0027280079666525126, 0.026967011392116547, -0.004636725410819054, -0.05309830605983734, 0.06669288128614426, -0.012895547784864902, 0.014441406354308128, 0.027629269286990166, 0.05819002538919449, -0.0072707743383944035, 0.040037333965301514, 0.06813161075115204, -0.024627147242426872, 0.005801703780889511, 0.04276217892765999, -0.01691008359193802, -0.01785029098391533, -0.024443956092000008, -0.048336200416088104, -0.009374434128403664, -0.012728664092719555, -0.015842320397496223, 0.0008019980159588158, 0.053747229278087616, 0.0004296339175198227, -0.04039391130208969, -0.013343640603125095, 0.038999009877443314, -0.0422004796564579, -0.0028508983086794615, 0.010248531587421894, 0.04210638999938965, 0.015783466398715973, -0.009032915346324444, 0.005579175427556038, -0.02211907133460045, -0.011097848415374756, -0.05359337106347084, 0.04454152658581734, -0.025783520191907883, -0.006557757500559092, -0.030050382018089294, -0.05089931562542915, -0.001865939237177372, 0.014690333977341652, -0.03658333420753479, -0.023933280259370804, 0.03217292204499245, 0.04832682013511658, 0.0038537392392754555, 0.008347922004759312, -0.029105115681886673, -0.006775067187845707, 0.04359530285000801, 0.07413079589605331, 0.009914232417941093, 0.03820071741938591, 0.03735016658902168, 0.013142544776201248, 0.026333892717957497, -0.028434883803129196, 0.03298444673418999, -0.04316824674606323, -0.022039413452148438, -0.03671494126319885, 0.00002597188540676143, -0.000025436218493268825, -0.06068497523665428, 0.019088812172412872, -0.00956648774445057, -0.006044847425073385, 0.003284911625087261, -0.06183416396379471, 0.02190004661679268, -0.06102999299764633, -0.002409271663054824, -0.05424484983086586, 0.009375316090881824, -0.001003062934614718, -0.02060861885547638, 0.006095550488680601, -0.0725572481751442, 0.16403555870056152, 0.03937804326415062, 0.025824319571256638, -0.003949178382754326, 0.009720070287585258, 0.06708336621522903, 0.015242887660861015, -0.03787166625261307, 0.00551860686391592, -0.042867373675107956, 0.02127741277217865, -0.014994398690760136, 0.0029684838373214006, -0.010234140790998936, 0.025535907596349716, 0.06886633485555649, -0.043364688754081726, 0.005405930336564779, 0.006910763215273619, -0.03273648023605347, -0.06765563786029816, 0.02347613126039505, 0.0030342598911374807, -0.020593242719769478, -0.003546071005985141, 0.0381256565451622, 0.018624398857355118, -0.03748072683811188, -0.003136247396469116, -0.035701047629117966, 0.02030692994594574, -0.03452764078974724, 0.020232688635587692, -0.006514131557196379, -0.05655641108751297, 0.06063949316740036, -0.009627776220440865, -0.012086362577974796, -0.007624213118106127, 0.041096895933151245, -0.016631802543997765, -0.012507090345025063, 0.06372685730457306, -0.013702992349863052, 0.016891712322831154, 0.033989839255809784, -0.013722449541091919, -0.0037886695936322212, 0.033469058573246, -0.04279438033699989, 0.05886130779981613, -0.042530354112386703, 0.0430363267660141, 0.02218073233962059, -0.02432837523519993, 0.006496240850538015, 0.010819579474627972, -0.03500416874885559, 0.0015017810510471463, 0.017200985923409462, 0.029501786455512047, -0.01468205638229847, -0.02053900621831417, -0.006515126209706068, -0.04081807658076286, -0.008467492647469044, 0.025966454297304153, 0.01406470313668251, -0.015227586962282658, -0.0013329442590475082, -0.024689430370926857, -0.005093960091471672, -0.001579194562509656, -0.015557243488729, 0.03176366910338402, 0.04470396414399147, -0.020282132551074028, 0.05116333067417145, -0.026547903195023537, -0.034729380160570145, 0.006159348413348198, -0.01986045017838478, 0.005013196729123592, -0.006551206111907959, 0.03507048264145851, 0.04677489027380943, -0.030886415392160416, -0.052646566182374954, -0.022014113143086433, 0.04738040268421173, 0.05489924177527428, 0.02771054022014141, -0.036823295056819916, -0.022761140018701553, 0.007353071589022875 ]
Reports, results and presentations We are the largest gas and oil producer in the Dutch sector of the North Sea. We have interests and capabilities in the gas pipeline business. Who we are What we do Where we operate Investors Media Careers Supply ChainContact us Who we areOur visionOur leadershipGovernanceResponsibility Our investors What we doExploreDevelopProduce Where we operateNorwayUKThe NetherlandsGermanyNorth AfricaAsia Pacific InvestorsReports, results and presentationsFinancial calendar MediaNews and press releasesPublications CareersAvailable jobs ResponsibilityEnvironmentEthics and complianceHealth and safetyCommunity relations 0.0kboepd Daily average production of total production 0mmboe 2P reserves Operations in the Netherlands Active in the region since 1964, Neptune is the largest offshore oil and gas producer on the Dutch continental shelf. In 2018, our fields in the Netherlands made up six per cent of the Group's total 2P reserves. Neptune operates 26 production licences and maintains a large infrastructure of 32 offshore facilities including four major treatment hubs. Our numerous projects span the entire value chain, from near-field exploration, HPHT development, maintenance to decommissioning. We engage in significant drilling and well activity: two jack-up drilling units are planned for 2019. Pipeline design, installation and operations are key areas of expertise. The company's pipeline services include offshore installation, inspections and maintenance of platform-based and subsea installations. Neptune Energy Netherlands has minority shareholdings in Noordgastransport B.V. (18.57%) and NOGAT B.V. (15%). The Netherlands operated production portfolio is classified into four main areas, each of them linked to a main treatment and/or compression complex. Neptune Energy Netherlands December 2018 (period 15 February to 31 December) 12 months to December 2018 12 months to December 2017 Total production (mmboe) 9.1 10.3 11.8 Dry gas production (kboepd) 26.1 26.0 29.0 Liquid production (kbpd) Total production (kboepd) 28.3 28.3 32.3 Explore our assets Partner-operated Assets in The Netherlands Pipeline assets in the Netherlands Development project assets in the Netherlands Operated assets in the Netherlands Partner-operated assets in the Netherlands L10 Area The L10-A complex manages a large amount of the gas produced by the Dutch continental shelf. G Blocks Our gas-producing operations on the eastern side of the Dutch continental shelf focus on optimising production and exploration. DEK Area Field development, exploration and cross-border third-party opportunities on the western side of the Dutch North Sea sector. FLQ Cluster A diverse, extended area in the eastern part of the Dutch North Sea sector including oil production, HPHT development, and infill drilling. K6-D A gas-producing satellite platform in the K6 Block central complex. D12-A A satellite gas platform in the D Block in the Dutch sector of the North Sea. F16-A A seven-storey gas and condensate production platform on the Dutch continental shelf. The 264 km NOGAT pipeline system transports gas to an onshore processing plant at Den Helder. Noordgastransport The 470 km NGT network transports natural gas onshore from the Dutch continental shelf to the Uithuizen processing station. Abandonment and decommissioning Disused oil and gas installations are decommissioned in line with national and international regulations. There is a strong emphasis on reuse and recycling. REMIT is an EU regulation on wholesale energy market integrity and transparency. It has been in force since 2011 and is an important mechanism for preventing market abuse. Under REMIT, all market participants are required to provide effective and timely public disclosure of any inside information in their possession. REMIT disclosures are available here: Lex de Groot Managing Director, Netherlands Lex de Groot has 30 years' experience in the upstream oil and gas sector in various roles, focusing mainly on the Dutch continental shelf. Lex has a proven track record of identifying and pursuing opportunities that enable growth and value creation. He sees it as his task to continue to optimise business efficiencies within a culture where safety is the top priority. Neptune Energy Nederland B.V. Neptune Energy is an independent oil and gas exploration and production company with a regional focus on the North Sea, Europe, North Africa and Asia Pacific. It aims to develop its operational capability, international reach and scale to become the world's leading independent E&P company. Joep Sweyen Head of Communication and Public Affairs © Copyright Neptune Energy 2020
[ 0.0007397131994366646, -0.002570546232163906, -0.040347207337617874, 0.007559529971331358, -0.03039199486374855, -0.017237571999430656, -0.011109880171716213, 0.03925904631614685, 0.03904879093170166, 0.022084049880504608, 0.02422119304537773, 0.004069496411830187, 0.0071512265130877495, -0.030276790261268616, -0.02365104667842388, -0.008965807035565376, -0.014012121595442295, -0.028158344328403473, -0.04717394709587097, -0.012143539264798164, -0.004915211815387011, -0.01721913367509842, -0.04321790114045143, -0.018914414569735527, -0.02680458314716816, 0.04133996739983559, 0.009107442572712898, 0.005094772204756737, 0.06660196185112, 0.03875797241926193, -0.03163928538560867, -0.03502468764781952, 0.021103262901306152, -0.05153685435652733, -0.0026571559719741344, -0.017130060121417046, 0.03072322905063629, -0.0034257052466273308, -0.015617767348885536, -0.05819890648126602, 0.027377471327781677, -0.024325737729668617, 0.051641497761011124, -0.01220106054097414, -0.032424796372652054, 0.014041098766028881, -0.0366017110645771, -0.034468673169612885, -0.012177775613963604, -0.01672257110476494, 0.008554995059967041, 0.019500939175486565, 0.024280445650219917, -0.01045584212988615, 0.004136682953685522, -0.007986209355294704, 0.012482698075473309, 0.004828724078834057, -0.030654937028884888, 0.036151766777038574, 0.03719693422317505, -0.01630266010761261, 0.02223581075668335, -0.061769112944602966, 0.02593851648271084, 0.01564876362681389, -0.02797718346118927, -0.01449699979275465, 0.024914346635341644, -0.008051642216742039, -0.028196200728416443, -0.007045826409012079, -0.021837692707777023, -0.013608832843601704, 0.0033162024337798357, 0.005763642489910126, 0.0037554956506937742, 0.017514536157250404, 0.000309686700347811, 0.0027304200921207666, 0.0332210548222065, 0.05648747459053993, -0.015102599747478962, 0.03292936086654663, -0.06612107157707214, -0.00907963141798973, -0.015313041396439075, 0.02228040248155594, 0.005258102901279926, 0.015459515154361725, -0.0008604506147094071, 0.04867247864603996, -0.030604658648371696, 0.0066090296022593975, 0.01893335022032261, 0.06285782158374786, -0.03406675159931183, 0.03561147302389145, -0.003575287526473403, 0.008997593075037003, 0.048833925276994705, 0.04549247771501541, -0.03307725116610527, 0.0508577935397625, -0.026246679946780205, -0.0018223702209070325, 0.005624440498650074, -0.0012010129867121577, -0.0017459136433899403, -0.03889164701104164, 0.009688061662018299, -0.020156176760792732, 0.02289821393787861, -0.01727338880300522, 0.010101381689310074, 0.03644237294793129, -0.014360827393829823, 0.011313005350530148, -0.028757460415363312, 0.015643421560525894, -0.0037076682783663273, -0.0036090773064643145, 0.05267807096242905, 0.014522092416882515, 0.023328633978962898, -0.03314811363816261, -0.027986912056803703, 0.037456512451171875, -0.04221317172050476, -0.034902699291706085, -0.019625619053840637, -0.05063338205218315, -0.01171199046075344, 0.012884370051324368, 0.01051294058561325, 0.018776243552565575, 0.025501878932118416, 0.03529597073793411, 0.010993527248501778, -0.0694488063454628, 0.02816721983253956, 0.019961519166827202, 0.0012287140125408769, 0.08767027407884598, -0.009984674863517284, 0.06769929826259613, 0.00244583236053586, -0.028329484164714813, -0.02441607601940632, 0.037564631551504135, -0.03200707584619522, 0.021918155252933502, -0.0035769969690591097, 0.032158296555280685, 0.010650853626430035, -0.011863185092806816, -0.019273852929472923, 0.007814668118953705, 0.024242887273430824, 0.005386935081332922, -0.052395276725292206, -0.015728402882814407, 0.00711981812492013, 0.059224773198366165, -0.032795410603284836, 0.0381213016808033, -0.0011028643930330873, -0.0014667498180642724, -0.03295042738318443, -0.032762303948402405, 0.020489588379859924, -0.0017475247150287032, -0.020329182967543602, 0.004163458943367004, 0.0013930361019447446, 0.06253498792648315, 0.0389866940677166, -0.005547430366277695, 0.05182553827762604, 0.0314616933465004, -0.010885405354201794, -0.025114936754107475, -0.021024540066719055, 0.07514301687479019, -0.0030896165408194065, 0.003036370500922203, -0.014928275719285011, -0.01169124711304903, -0.047631192952394485, -0.023551926016807556, -0.0013771909289062023, 0.037046946585178375, -0.028978809714317322, 0.03289145603775978, -0.024170437827706337, 0.007101664785295725, 0.00047693937085568905, -0.00291135860607028, -0.020133791491389275, -0.03640512377023697, -0.01882651075720787, 0.062172263860702515, -0.03892313316464424, 0.003835594980046153, -0.006906469352543354, -0.011850125156342983, 0.018507258966565132, 0.06215474754571915, -0.04443155229091644, -0.011160897091031075, 0.08311109989881516, 0.017483219504356384, -0.0022684845607727766, -0.029587220400571823, 0.00007895280577940866, 0.008260572329163551, -0.0143410824239254, 0.04150376841425896, -0.0035374045837670565, -0.0145876444876194, 0.04240461438894272, 0.012369194068014622, 0.03436875715851784, 0.03920622169971466, 0.019990840926766396, 0.00564150745049119, 0.011318524368107319, 0.05496486648917198, -0.04189201444387436, -0.011206765659153461, -0.00947301834821701, 0.04194817319512367, 0.021589230746030807, 0.0648331567645073, 0.042524293065071106, 0.02741977944970131, 0.05389048531651497, 0.04501510411500931, -0.020679784938693047, 0.02535351552069187, -0.000882586813531816, 0.012431340292096138, 0.02451689913868904, 0.011532772332429886, 0.025046899914741516, 0.029116077348589897, -0.03170735016465187, -0.021795742213726044, -0.013140738941729069, 0.05591432377696037, -0.01197234820574522, 0.04347572103142738, 0.02942565456032753, 0.03927420452237129, -0.037197571247816086, 0.02455805614590645, 0.010431267321109772, 0.035346031188964844, -0.028239626437425613, -0.006822025869041681, 0.03698965534567833, -0.00015179350157268345, -0.05233018100261688, 0.0016355214174836874, 0.03905710205435753, 0.027966445311903954, -0.004920576699078083, 0.024199841544032097, -0.012332245707511902, -0.03800452500581741, -0.05612405762076378, -0.06708252429962158, -0.042210325598716736, -0.02331448905169964, -0.0692521184682846, -0.004388188477605581, 0.04896658658981323, -0.052555881440639496, 0.01621430180966854, 0.011153457686305046, -0.02496875263750553, -0.024387259036302567, -0.013875342905521393, 0.04895884171128273, 0.006296222563832998, 0.015234430320560932, -0.03989056125283241, 0.059154145419597626, -0.018679983913898468, 0.005888193845748901, -0.03862381353974342, 0.007777627557516098, -0.005234341602772474, -0.016763215884566307, 0.025882387533783913, -0.017647452652454376, 0.0033796746283769608, -0.008459851145744324, -0.03343454748392105, -0.02774936519563198, -0.005977073684334755, -0.017225949093699455, 0.011984162963926792, 0.03222842141985893, -0.024311598390340805, 0.08246713131666183, 0.028582287952303886, -0.0036968819331377745, 0.031245211139321327, 0.042624060064554214, -0.03060171566903591, 0.03825690969824791, 0.03781641274690628, 0.024987343698740005, -0.028020024299621582, 0.06292261183261871, 0.05506559833884239, 0.019564032554626465, -0.04474524036049843, -0.022323327139019966, -0.020592326298356056, 0.010517675429582596, 0.03250781446695328, -0.018638279289007187, -0.01677875407040119, 0.047980088740587234, 0.02809777855873108, -0.07434719800949097, 0.02302180789411068, -0.011101886630058289, -0.04297313839197159, -0.019893556833267212, -0.06227372959256172, 0.011339989490807056, 0.01146671175956726, 0.02811831794679165, -0.027166206389665604, -0.027469363063573837, -0.007570234127342701, 0.016525231301784515, 0.03849975764751434, -0.03911074995994568, 0.005733601748943329, 0.02083558775484562, -0.046944618225097656, 0.0111610172316432, 0.015155395492911339, -0.023670921102166176, -0.0004803071788046509, -0.013139292597770691, -0.011781006120145321, 0.0030986459460109472, 0.06758017092943192, 0.007196260150521994, 0.0005277437740005553, 0.05414161831140518, -0.003585637081414461, -0.0030267294496297836, -0.001730508403852582, 0.05224280431866646, 0.04208192229270935, 0.007886734791100025, 0.0183599591255188, -0.014225060120224953, -0.035836514085531235, -0.05797664448618889, 0.024281837046146393, -0.005695413798093796, 0.05164559558033943, -0.04634709656238556, 0.06822338700294495, 0.008162164129316807, -0.03131783381104469, 0.0347721092402935, -0.05433807894587517, 0.0002107294712914154, 0.050482798367738724, -0.022056322544813156, 0.028988467529416084, -0.03018457442522049, 0.001820222707465291, -0.019260969012975693, 0.006928273010998964, 0.0026470099110156298, 0.010994614101946354, 0.044368572533130646, -0.008796901442110538, -0.008435909636318684, -0.015610926784574986, -0.03169429302215576, -0.0020466565620154142, -0.014966234564781189, 0.015277923084795475, 0.006273364648222923, -0.07945173978805542, -0.037299223244190216, 0.029827339574694633, 0.009711825288832188, 0.026699664071202278, -0.01867472194135189, 0.04419514164328575, 0.023111140355467796, -0.004412365145981312, 0.038170091807842255, -0.014849396422505379, 0.002298496663570404, -0.022786563262343407, 0.045192621648311615, 0.019825005903840065, -0.020552625879645348, -0.0008494823123328388, -0.04688773304224014, -0.05789552256464958, -0.003570619970560074, -0.021106133237481117, -0.027327366173267365, -0.011642907746136189, 0.028008291497826576, -0.011460126377642155, 0.008493502624332905, 0.000877469836268574, -0.0200808048248291, -0.008137175813317299, 0.03750902786850929, 0.04822229966521263, -0.062071293592453, 0.010520342737436295, -0.012575150467455387, 0.03984364867210388, 0.045827001333236694, -0.022820569574832916, -0.033935412764549255, -0.035090118646621704, -0.03691217303276062, -0.03247290477156639, 0.0045823934487998486, 0.04645300656557083, -0.00425756024196744, -0.014107639901340008, -0.03284476324915886, 0.03393236920237541, 0.02395571582019329, 0.01909639686346054, -0.014856241643428802, 0.006408412475138903, 0.027963096275925636, 0.022959783673286438, 0.0383937694132328, -0.01529072504490614, -0.007444760296493769, 0.023953521624207497, -0.043182335793972015, 0.01230535563081503, 0.002255774335935712, -0.004422140773385763, 0.005130198318511248, 0.016903026029467583, -0.012534926645457745, 0.0342436358332634, -0.0002944653097074479, -0.018850628286600113, 0.006471863482147455, 0.04931024834513664, -0.06179581210017204, -0.04352498799562454, 0.0494074784219265, 0.009317578747868538, -0.02841108851134777, 0.04002471640706062, 0.04810727760195732, -0.017782535403966904, 0.020743353292346, 0.014936545863747597, -0.042166296392679214, 0.012470993213355541, -0.011533725075423717, 0.006895064376294613, -0.011819502338767052, -0.04668278619647026, 0.016120655462145805, -0.00423436239361763, 0.050058767199516296, -0.004763172473758459, -0.027022896334528923, -0.0343848317861557, -0.056387510150671005, -0.009488491341471672, 0.02904685027897358, -0.014803356491029263, 0.03003840148448944, 0.006305923219770193, -0.013447767123579979, -0.00844342540949583, -0.03658360615372658, -0.00655067153275013, -0.011859472841024399, 0.004382839426398277, 0.014288981445133686, 0.02776562049984932, 0.00642608804628253, 0.012525414116680622, -0.0019145752303302288, -0.03618448227643967, 0.007427085191011429, -0.020698243752121925, -0.028537601232528687, -0.043742768466472626, 0.05180031433701515, -0.023125948384404182, 0.0059526278637349606, -0.02284909598529339, 0.006726386491209269, 0.010241137817502022, 0.01759009063243866, -0.010424872860312462, -0.015942830592393875, -0.01310538500547409, -0.00038889283314347267, -0.01099981740117073, 0.054664477705955505, 0.029224921017885208, -0.04222571849822998, -0.022364119067788124, 0.03545018658041954, -0.03864985704421997, 0.055766768753528595, -0.011963874101638794, -0.03442482277750969, -0.041477590799331665, -0.07055026292800903, -0.005690619815140963, -0.04936602711677551, -0.015936611220240593, -0.030607471242547035, -0.021907147020101547, -0.042122092097997665, 0.037259362637996674, 0.026194145902991295, -0.03204672783613205, 0.009857965633273125, -0.035738199949264526, 0.018954019993543625, -0.028440263122320175, -0.026702310889959335, 0.00023823941592127085, -0.020566459745168686, -0.018000870943069458, 0.060386545956134796, -0.009855917654931545, 0.005758131388574839, -0.0007931991713121533, -0.0013859608443453908, 0.010724620893597603, 0.01673835515975952, -0.03254488483071327, -0.053902074694633484, 0.022178202867507935, 0.015360286459326744, 0.012375697493553162, -0.01290650200098753, -0.030991604551672935, 0.04601355642080307, -0.04773600399494171, -0.008679255843162537, -0.02269735373556614, -0.026582982391119003, -0.027142705395817757, -0.015620656311511993, 0.052900902926921844, -0.031347353011369705, 0.02519829384982586, -0.007772213313728571, 0.044989898800849915, 0.05397995188832283, -0.024728816002607346, -0.03340088203549385, -0.04796895384788513, -0.02823703922331333, -0.03402058407664299, 0.0230124332010746, -0.03895997256040573, -0.039932478219270706, -0.005453834775835276, -0.01649792306125164, 0.03132614865899086, -0.004614924546331167, 0.0709017887711525, 0.05475526675581932, -0.005744600668549538, -0.005685773678123951, -0.007638971786946058, 0.003777592210099101, 0.03587644547224045, -0.02650393359363079, 0.004665732849389315, -0.008934417739510536, -0.015821287408471107, -0.0007716728141531348, -0.07967434823513031, -0.028757035732269287, -0.056403905153274536, -0.018751177936792374, 0.05602116882801056, -0.0476568378508091, 0.021898219361901283, -0.01930498331785202, -0.04608156159520149, -0.04835138097405434, 0.0502144880592823, -0.000162596843438223, 0.02752523496747017, 0.07000292092561722, 0.011717402376234531, 0.0038231471553444862, 0.015298042446374893, -0.016945116221904755, 0.0016132354503497481, -0.07014064490795135, 0.060210682451725006, -0.023840678855776787, -0.02167036198079586, 0.012234251946210861, 0.04411529377102852, -0.042641427367925644, -0.03473596274852753, 0.02931962162256241, -0.0013104170793667436, 0.012288917787373066, -0.033545494079589844, 0.02467736043035984, -0.016258515417575836, 0.012125504203140736, -0.0014430141309276223, 0.03589216247200966, 0.0003792945353779942, 0.05310696363449097, 0.0023120746482163668, 0.04924949258565903, -0.0406048558652401, 0.02399553544819355, 0.040287550538778305, -0.015550509095191956, -0.03589346259832382, -0.03697626292705536, -0.037615373730659485, 0.02668098546564579, 0.002614558907225728, 0.037286072969436646, -0.009303594008088112, 0.01971713826060295, 0.025542126968503, -0.004075013101100922, 0.03065551072359085, 0.02616223692893982, -0.0024182137567549944, 0.04277902841567993, -0.043428439646959305, -0.060197535902261734, -0.031801242381334305, 0.02307743951678276, 0.021802257746458054, 0.04899749159812927, -0.03507131710648537, -0.006737770512700081, 0.03256149962544441, -0.01716027781367302, -0.01618822105228901, -0.046931199729442596, -0.026148738339543343, -0.043092649430036545, -0.028110109269618988, -0.047905344516038895, -0.018700730055570602, 0.004216594621539116, -0.006746490951627493, -0.004269265104085207, -0.03094925545156002, 0.017538081854581833, -0.00461152195930481, -0.020948100835084915, -0.012257017195224762, -0.03808099403977394, 0.024835146963596344, -0.03603401407599449, -0.03949384391307831, -0.04776353761553764, -0.001668152050115168, 0.0194231066852808, 0.0022019315510988235, -0.023639585822820663, 0.019231706857681274, 0.0032733152620494366, -0.008079418912529945, 0.009419218637049198, 0.021785669028759003, -0.013809196650981903, -0.053736716508865356, -0.04506835341453552, 0.034928660839796066, 0.00013702573778573424, 0.03391025960445404, 0.031822167336940765, -0.01335058081895113, 0.03894127532839775, 0.03246014565229416, -0.028379440307617188, -0.004118785727769136, -0.0017339695477858186, 0.03095182403922081, 0.012584201991558075, -0.02174985036253929, -0.03185855969786644, 0.006227460689842701, -0.023524370044469833, 0.028046678751707077, 0.009745548479259014, 0.05154333636164665, -0.011448262259364128, -0.003369962563738227, -0.012930790893733501, 0.06935573369264603, -0.004425178747624159, 0.014400982297956944, 0.021743733435869217, 0.02689579874277115, 0.033312708139419556, -0.02330104634165764, 0.049603093415498734, 0.008951010182499886, 0.007901348173618317, -0.06276707351207733, 0.03517996147274971, 0.01874929666519165, 0.013306992128491402, 0.014635996893048286, -0.03139691799879074, -0.05075845122337341, -0.04051979258656502, -0.03838566690683365, -0.019720060750842094, 0.06502620875835419, -0.002232152735814452, 0.0032319955062121153, -0.0016061753267422318, -0.018503163009881973, -0.030720558017492294, 0.016897866502404213, -0.06498974561691284, -0.018008960410952568, 0.028848716989159584, -0.011086823418736458, 0.025399811565876007, -0.019515788182616234, -0.037321146577596664, 0.010783364996314049, -0.01860412023961544, -0.007563129533082247, -0.05065140128135681, 0.01342068426311016, 0.003068310907110572, 0.047585394233465195, -0.019733937457203865, -0.004166610538959503, 0.013380533084273338, 0.03336669132113457, -0.0667441263794899, -0.04251442477107048, -0.012160991318523884, 0.026341665536165237, 0.0182951632887125, -0.003515867283567786, -0.01440309826284647, -0.007878161035478115, 0.0002823731047101319, 0.007780915126204491, 0.005136619322001934, 0.039154745638370514, 0.014310249127447605, 0.028627142310142517, 0.012112085707485676, -0.025120722129940987, -0.06342309713363647, 0.04334913566708565, -0.007242355030030012, -0.013892857357859612, -0.03886336833238602, 0.023052463307976723, 0.06060145050287247, -0.021319027990102768, 0.022511666640639305, -0.008390977047383785, 0.047627098858356476, -0.010697091929614544, 0.010226979851722717, 0.029122721403837204, 0.062114715576171875, 0.046253230422735214, 0.02374809980392456, 0.010383674874901772, -0.004418931435793638, 0.08008275926113129, 0.0014404426328837872, -0.018019845709204674, 0.03792804479598999, 0.0334058478474617, -0.025305069983005524, 0.013692924752831459, -0.015372032299637794, 0.020373474806547165, 0.03226141631603241, -0.01643778197467327, 0.0015007798792794347, -0.03084382973611355, -0.02093714475631714, 0.003262910293415189, -0.008000444620847702, 0.048922594636678696, -0.03523607924580574, 0.028060413897037506, -0.022977149114012718, -0.022858506068587303, 0.014463629573583603, 0.029019493609666824, 0.017573662102222443, 0.03145289421081543, 0.04211033880710602, 0.023730706423521042, -0.0161075908690691, 0.04329754039645195, 0.017881574109196663, 0.030147621408104897, -0.0237102247774601, -0.00019479801994748414, 0.009393131360411644, -0.004661930724978447, -0.040001947432756424, 0.0031984811648726463, -0.054976124316453934, 0.030736831948161125, -0.05880128964781761, -0.04015481472015381, 0.011282028630375862, -0.040192749351263046, -0.021645138040184975, -0.06608356535434723, 0.041414350271224976, -0.059459056705236435, 0.004882313311100006, 0.02433137036859989, -0.008655260317027569, -0.025945354253053665, 0.041794631630182266, 0.00008957060344982892, 0.030057081952691078, 0.037639033049345016, 0.058278441429138184, -0.010147150605916977, 0.04230000823736191, 0.020433636382222176, -0.011259271763265133, -0.005356044974178076, 0.01927931047976017, -0.02143782004714012, -0.004119717516005039, 0.0050931693986058235, -0.04158157855272293, -0.03481920808553696, -0.007063792087137699, -0.04209209978580475, -0.008768345229327679, 0.036273762583732605, -0.01161693874746561, -0.04913414269685745, -0.02410747855901718, 0.02505677007138729, -0.019309284165501595, -0.0009652944863773882, 0.004458547569811344, 0.043575167655944824, 0.014113164506852627, -0.03868947923183441, -0.03130078688263893, -0.013811127282679081, -0.012081163935363293, -0.013386626727879047, 0.011259039863944054, -0.010379600338637829, -0.0062840785831213, -0.03685756400227547, -0.0647224485874176, -0.019832829013466835, -0.023366563022136688, -0.03339078649878502, -0.05927650257945061, 0.01993863470852375, 0.025569379329681396, 0.05275444686412811, -0.002599315717816353, -0.045684460550546646, -0.02468196302652359, 0.020865678787231445, 0.05852285772562027, -0.01479053869843483, 0.03328210860490799, 0.018815042451024055, 0.017966965213418007, -0.004360606428235769, -0.0448974147439003, 0.020424071699380875, -0.00578111270442605, -0.025050288066267967, 0.021583642810583115, 0.0004813745617866516, -0.029108798131346703, -0.07062174379825592, 0.050216447561979294, 0.053714510053396225, 0.021051030606031418, -0.014405329711735249, -0.06311896443367004, 0.013408864848315716, -0.07260629534721375, -0.015639346092939377, -0.03242248669266701, 0.003548769513145089, 0.010090544819831848, -0.022346803918480873, 0.010197548195719719, -0.05226343870162964, 0.13343459367752075, 0.03734969347715378, 0.00905341561883688, -0.007389954291284084, 0.02083875611424446, 0.04648013412952423, 0.02569178305566311, -0.02180248312652111, 0.0013629415770992637, -0.03207051753997803, 0.04260115697979927, -0.00588498217985034, 0.01278721448034048, -0.03136194497346878, 0.012279700487852097, 0.06657186895608902, -0.04437876120209694, -0.007645514793694019, 0.04133559390902519, -0.06573707610368729, -0.028813974931836128, 0.008691870607435703, 0.003998556639999151, 0.016017675399780273, -0.019979622215032578, 0.018364857882261276, -0.00028055088478140533, -0.0525079183280468, -0.0067360117100179195, -0.037318289279937744, -0.020504457876086235, -0.05365932732820511, 0.05550399795174599, -0.008140241727232933, -0.0402347706258297, 0.0634714812040329, -0.010475262999534607, -0.016311774030327797, 0.020701900124549866, 0.020347444340586662, -0.02484780363738537, 0.025007251650094986, 0.03965558484196663, -0.05068591237068176, -0.006322351284325123, 0.02421100251376629, -0.05588309466838837, 0.015383115038275719, 0.0434778593480587, -0.029186293482780457, 0.0437331348657608, -0.04452130198478699, 0.018323782831430435, -0.02583291195333004, -0.028185486793518066, 0.009434321895241737, -0.03012188710272312, -0.020180370658636093, -0.0038793354760855436, 0.02845906652510166, 0.0483584851026535, -0.010698880068957806, -0.01232045330107212, 0.031744152307510376, -0.009816930629312992, 0.016542019322514534, 0.00870796199887991, 0.00869749952107668, -0.0072245108895003796, -0.029618091881275177, -0.023780131712555885, -0.0017171645304188132, 0.0017674171831458807, -0.04834069311618805, 0.04549669846892357, 0.050102151930332184, -0.0029652488883584738, 0.036734890192747116, -0.0018928807694464922, -0.012041800655424595, -0.0058278888463974, -0.026630640029907227, 0.005882621742784977, -0.006046241149306297, 0.03852352499961853, 0.06791049987077713, -0.026857968419790268, -0.04785339906811714, -0.04235439375042915, 0.060482949018478394, 0.05808554217219353, 0.032292332500219345, -0.05505244433879852, -0.019210457801818848, 0.011009112000465393 ]
Use of WP All Import, the WordPress Importer, and similar plugins to import XML files, CSV files, WXR files, and images is a common task for developers and sites with content that changes frequently. However, it is also common for timeouts and website performance issues to occur while these imports are being processed. In this article, we'll discuss steps you can take to work your way through a challenging import process. Please note that we cannot guarantee that every import process will run successfully on our platform. If the import cannot be run successfully at Kinsta we recommend performing the import in a local development environment and then importing the updated database or table to your website database. Why Do Imports Cause Timeouts and Performance Issues? PHP timeouts occur if a single PHP process runs for longer than the max_execution_time or max_input_time set in the PHP configuration. When this happens a 502 server error is usually displayed. HTTP timeouts occur when the connection between your browser and the web server is held open for too long. When this happens a 504 gateway timeout error is usually displayed. It is common for website performance to also be slower when a large import is running. This is because PHP and MySQL are busy handling the import process. This causes regular traffic to the site to have to wait until PHP and MySQL are available to generate the page requested. If you run into a PHP timeout the max_execution_time and max_input_time may need to be elevated. On our platform, these values are set to 300 seconds (5 minutes) by default. The maximum PHP timeout values available on our platform are based on your current hosting plan. Starter and Pro plans: 300 seconds is the highest value we can support. Business plans: We can temporarily elevate the timeout to 600 seconds (10 minutes). Enterprise plans: We can elevate the value to 600 seconds (10 minutes) permanently or temporarily to 1800 seconds (30 minutes). A temporary increase in the timeout duration would be appropriate if you need the timeout duration elevated for less than 4 hours in order to complete a one-time import process. If you expect to need the elevated timeout value for a longer period of time or on a recurring basis you will need to upgrade to an Enterprise plan. We do not allow timeouts to be set to longer than 600 seconds on any plan on a permanent basis. Our experience has been that sites that require longer timeout durations on a permanent basis will experience significant stability issues during these long-running processes. Rather than sacrificing website stability, if you have recurring processes that require longer timeouts the best solution is to work with a developer to adjust the long-running process rather than to keep increasing the timeout duration. If you'd like to request a temporary or permanent increase in the PHP timeout settings please open a support ticket. HTTP timeouts typically occur after 60 seconds for sites hosted at Kinsta. Due to the design of our infrastructure, we are unable to increase the HTTP timeout duration. If the process is timing out while the import file is being uploaded switch to a faster internet connection and retry the process. If you are using a tool with support for WP-CLI, such as the WordPress Importer plugin, you can run the import directly on the server and bypass the HTTP connection entirely. Please note that running an import over SSH is a change to the content of your website is not within the scope of what our support team is here to assist you with. In addition, if you are not familiar with SSH you will either need to learn how to use this powerful tool or work with a developer to process the import over SSH. Schedule the import activity for a time of low traffic to minimize the impact on your site's visitors. Upgrade to a plan with more PHP workers on your live site. If the performance issues are due to PHP being unavailable to handle more requests upgrading temporarily to a plan with more PHP workers will mean PHP has more capacity to handle both traffic to the site and the import. Upgrading a plan will not help if you're trying to run an import on a staging site. Our staging environment has a constant set of PHP workers and will not be affected by plan upgrades. Upgrading plans to gain access to more PHP workers will not help in all cases. If your site is running slowly because the database (MySQL) is busy inserting content into the database then adding additional PHP workers is unlikely to speed up the performance of your site. If you've worked through the prior suggestions in this article, are still running into issues, and would like assistance, the next step would be to reach out to our support team. However, before opening a conversation with our support team please gather as much information as possible. Start the import and time how long it takes for the process to fail. If the process fails after 1 minute you are likely running into an HTTP timeout. If it fails after 5 minutes you are likely running into a PHP timeout. If it fails at some other point you are likely running into some other limit or error and not actually seeing a timeout. Check the error logs at the time that the import failed and see if an error was recorded at the time of the failure. Take a screenshot of the error message or error page you are observing. Write a concise description of the type of file you are trying to import, how the file was created, what it contains, the tools used to create the file and run the import, and the error you are experiencing. Once you have gathered this information open a ticket with Kinsta's support team. However, please note that we cannot guarantee that we will be able to assist you in getting every import to run successfully. If running the import in Kinsta's environment is not possible the next step would be to develop a new workflow for the import process where the import is run in a local development environment. Please note that a developer will need to be involved in this process to ensure no data is lost and that your site database is not damaged. In general, the process would be to set up a copy of your site in a local development environment where you can control all of the timeout limits. Then complete the import in that local environment. Once the import is complete, export a copy of the database or the updated database tables from your local environment. Then create a backup of your live website, drop the database (or affected tables) from your live website, and import the database or tables exported from your local environment.
[ 0.0013586762361228466, 0.02261102758347988, -0.011530366726219654, 0.0283671822398901, -0.005342717748135328, 0.00017742865020409226, 0.007768712472170591, 0.023596584796905518, 0.01965288445353508, 0.057767774909734726, 0.008708297275006771, 0.030285118147730827, 0.010583414696156979, -0.05777861177921295, -0.015874478965997696, 0.03579534962773323, -0.010195094160735607, -0.02752785012125969, -0.026470964774489403, 0.0059807817451655865, 0.00532680144533515, 0.01210424117743969, -0.05810874328017235, -0.018171051517128944, -0.021650098264217377, 0.056287046521902084, 0.015836022794246674, -0.005488911643624306, 0.06824231147766113, 0.06417641788721085, -0.036735378205776215, -0.04022216796875, 0.01767648197710514, -0.04084998369216919, -0.019515126943588257, -0.005727897863835096, 0.03637199476361275, -0.019672252237796783, -0.026532329618930817, -0.05115221440792084, 0.0035906166303902864, -0.026281004771590233, 0.004851272329688072, -0.028517603874206543, -0.039043162018060684, 0.020386068150401115, -0.018183153122663498, 0.014051978476345539, 0.02971344254910946, -0.019966069608926773, 0.025850284844636917, 0.012105214409530163, 0.008614670485258102, 0.02746054157614708, -0.006214110646396875, 0.014480545185506344, 0.0167812742292881, -0.0050939228385686874, -0.03736695274710655, 0.0195961594581604, 0.028070857748389244, -0.009530669078230858, 0.01932678371667862, -0.04529479146003723, 0.04728299751877785, 0.045262228697538376, 0.0019768013153225183, -0.03153042867779732, 0.038289181888103485, -0.006623478606343269, -0.008982772007584572, 0.020618554204702377, -0.0016537078190594912, -0.014177901670336723, 0.011339233256876469, 0.018355319276452065, -0.013203378766775131, 0.013986578211188316, -0.00403650151565671, 0.036202482879161835, 0.021597586572170258, 0.05016164481639862, 0.013550620526075363, -0.006892884150147438, -0.050332553684711456, -0.018756307661533356, -0.0028067680541425943, 0.0013212579069659114, 0.00922719482332468, 0.004661922343075275, -0.03033767268061638, 0.041506197303533554, 0.012390256859362125, -0.017137840390205383, 0.023156287148594856, 0.04854176193475723, -0.02925398014485836, 0.030671758577227592, -0.017208408564329147, -0.013135405257344246, 0.021579265594482422, 0.03501236066222191, -0.01326773501932621, 0.02611527591943741, -0.042959585785865784, -0.01938655599951744, 0.016902508214116096, -0.012767908163368702, -0.03832260146737099, -0.006219976115971804, 0.01152593083679676, -0.002130872802808881, 0.004634849261492491, -0.004886053968220949, -0.00591792818158865, 0.03655073419213295, -0.010520228184759617, 0.03095700405538082, -0.04110654443502426, 0.009180723689496517, 0.025071464478969574, 0.02432435005903244, 0.028370395302772522, -0.007989714853465557, 0.024455446749925613, -0.07103241980075836, -0.04878143593668938, 0.03667356073856354, 0.003061857307329774, 0.0014091810444369912, -0.018906135112047195, -0.01781887374818325, 0.007704767864197493, 0.02479415014386177, -0.007689580321311951, 0.04471820965409279, 0.013866906985640526, 0.01597781293094158, 0.05558382347226143, -0.0494360476732254, 0.011971401050686836, 0.0035073852632194757, 0.021013427525758743, 0.08109311014413834, 0.0006538213929161429, 0.01292030792683363, 0.015530087053775787, -0.01821456104516983, -0.04492177069187164, 0.031755365431308746, -0.044256702065467834, 0.023374343290925026, -0.024616368114948273, 0.020810725167393684, 0.017253931611776352, -0.03203475847840309, -0.0011361181968823075, 0.018719853833317757, 0.06330851465463638, 0.025950200855731964, -0.016624094918370247, 0.05211164057254791, 0.016463395208120346, 0.03811629116535187, -0.011505186557769775, 0.020160306245088577, -0.04453688859939575, -0.021765241399407387, -0.010005191899836063, -0.0383513867855072, 0.023959888145327568, -0.017551762983202934, 0.003051743609830737, 0.013124119490385056, 0.046149738132953644, 0.04031384363770485, 0.02126895636320114, -0.018819056451320648, 0.018117394298315048, 0.05533473938703537, -0.04310688376426697, -0.0012936501298099756, 0.032098520547151566, 0.0590902715921402, 0.03021445870399475, 0.006224180571734905, 0.0009652350563555956, -0.025976568460464478, -0.03018433041870594, -0.03781042993068695, 0.002475365297868848, -0.00039236899465322495, -0.013548296876251698, 0.02554379031062126, 0.004477059934288263, -0.009013903327286243, -0.032774411141872406, -0.004175114445388317, 0.005183991976082325, -0.05115129426121712, -0.03046967089176178, 0.04791882261633873, -0.027755292132496834, 0.033654771745204926, 0.0018653153674677014, -0.03493673354387283, 0.01098085567355156, 0.047938551753759384, -0.06021199747920036, -0.0075075384229421616, 0.04721885547041893, 0.00620264932513237, -0.03100593574345112, -0.018828831613063812, -0.01889599673449993, -0.03726785257458687, -0.0440780408680439, 0.05036879703402519, -0.01538142841309309, 0.0012044130126014352, 0.01966266706585884, 0.005852063186466694, 0.0420902818441391, 0.00670912628993392, 0.017995085567235947, 0.007602016907185316, 0.007072407752275467, 0.05071868747472763, -0.0038282820023596287, 0.007984769530594349, 0.0028481758199632168, 0.05432566627860069, 0.007512341253459454, 0.06760554760694504, 0.05520643666386604, 0.013518834486603737, 0.04851645231246948, 0.06977392733097076, -0.007168112322688103, 0.03344506397843361, 0.0070090945810079575, 0.0442434661090374, 0.016525819897651672, 0.03125573322176933, -0.006517642643302679, 0.02595965377986431, -0.028206631541252136, -0.008988050743937492, -0.01399726141244173, 0.020164471119642258, -0.014246244914829731, 0.05532747879624367, 0.05033307895064354, 0.027088947594165802, -0.02555154636502266, 0.0032734149135649204, 0.03078782930970192, 0.055798307061195374, -0.03192894533276558, -0.004874043632298708, -0.004033782985061407, 0.03183828294277191, -0.01770061068236828, -0.016306072473526, 0.014447733759880066, 0.018849631771445274, -0.0245361328125, 0.008845500648021698, 0.004861833527684212, -0.03310747444629669, -0.023115411400794983, -0.02106163650751114, -0.044414326548576355, -0.01617463491857052, -0.03450803831219673, -0.0009109880193136632, 0.006276826374232769, -0.03433819115161896, 0.027411675080657005, 0.0028884797357022762, -0.007180106360465288, -0.005800432991236448, 0.005709780380129814, 0.04406340420246124, 0.025457274168729782, 0.04691918194293976, -0.022085145115852356, -0.006347073242068291, -0.005432546138763428, 0.04481047764420509, -0.04439600929617882, -0.004702799022197723, -0.002030330477282405, -0.010740401223301888, 0.03938714787364006, -0.004285692702978849, 0.003624025732278824, 0.016044868156313896, -0.02984224073588848, -0.05208549648523331, 0.0020741720218211412, -0.019586049020290375, -0.007185608148574829, -0.010329173877835274, -0.024108096957206726, 0.02072528563439846, 0.015892598778009415, -0.016307005658745766, 0.06174610182642937, 0.0287665706127882, -0.043910689651966095, 0.028535470366477966, 0.012069598771631718, 0.032989490777254105, -0.06764812767505646, 0.043190307915210724, 0.04601290449500084, 0.009934667497873306, -0.01145155169069767, -0.0150231858715415, -0.03728260099887848, 0.011746040545403957, 0.0542878657579422, -0.010472850874066353, -0.037575241178274155, 0.03186095133423805, 0.009894018992781639, -0.0723344087600708, 0.047024812549352646, -0.06121426448225975, -0.009979971684515476, -0.04200087860226631, -0.04169047251343727, -0.004738037008792162, 0.02990315668284893, 0.021587563678622246, -0.014866810292005539, -0.007128337398171425, -0.03820889815688133, 0.043713491410017014, 0.030198445543646812, -0.039979711174964905, -0.0015085602644830942, 0.030017955228686333, 0.002218022244051099, 0.0034184998366981745, 0.04334701597690582, -0.05366303771734238, 0.0075840638019144535, 0.006559695582836866, -0.011761926114559174, 0.009734832681715488, 0.029741447418928146, 0.017781591042876244, 0.005997400730848312, 0.05070212483406067, -0.06082620844244957, 0.007371221203356981, 0.003903256030753255, 0.029451951384544373, 0.04226689413189888, 0.0002491106279194355, 0.008514204993844032, -0.01176312193274498, -0.04438864439725876, -0.05551549047231674, 0.030873296782374382, 0.0317804291844368, 0.06762058287858963, -0.06683749705553055, 0.06643476337194443, -0.01843213103711605, -0.03106573224067688, 0.03931930661201477, -0.05064346268773079, 0.0030946119222790003, 0.0646381825208664, -0.004413836169987917, 0.023149149492383003, -0.051024604588747025, -0.0006786530138924718, -0.02159488946199417, -0.011371990665793419, 0.05191372334957123, -0.011796046048402786, 0.02307070977985859, -0.0031286815647035837, -0.022764138877391815, -0.01399304997175932, -0.026100581511855125, 0.00003979937537224032, -0.0032107753213495016, -0.00197428441606462, -0.011733731254935265, -0.039149485528469086, -0.07708822190761566, 0.01041838712990284, 0.031227096915245056, 0.01780022494494915, -0.02832631580531597, 0.05528074502944946, 0.0018377552041783929, 0.013469378463923931, 0.031752146780490875, 0.016778845340013504, -0.0026485591661185026, -0.04715090990066528, 0.05316658318042755, 0.035643093287944794, -0.007471492048352957, -0.028660032898187637, -0.05381857976317406, -0.010797101072967052, 0.035075996071100235, 0.003728841431438923, -0.009777722880244255, -0.04142250493168831, 0.0016387932701036334, -0.0017162410076707602, 0.020322948694229126, -0.04752058535814285, -0.03613898903131485, -0.01597386971116066, 0.02816328965127468, 0.014639453031122684, -0.05036647617816925, -0.028403285890817642, -0.043871667236089706, 0.008775566704571247, 0.021905817091464996, -0.005382413975894451, -0.05415733531117439, -0.012162350118160248, -0.03874552249908447, -0.043614909052848816, 0.030596211552619934, 0.06521803140640259, -0.008094378747045994, 0.033725690096616745, -0.037132978439331055, 0.020991558209061623, 0.03526711463928223, -0.007808455731719732, -0.02477465383708477, 0.011794477701187134, 0.040224652737379074, 0.006803335156291723, 0.020761987194418907, 0.012770232744514942, -0.00010337939602322876, 0.010782705619931221, -0.04629643261432648, 0.030626121908426285, -0.015425529330968857, 0.0009642771910876036, -0.014505605213344097, 0.005662485025823116, -0.0022028228268027306, 0.053094182163476944, 0.012233511544764042, 0.01971287652850151, -0.005791806615889072, 0.0295804962515831, -0.03819545730948448, -0.04385732486844063, 0.024314992129802704, -0.0005691102705895901, -0.041048821061849594, 0.05168747156858444, 0.02679927460849285, -0.03492654487490654, 0.02744714729487896, 0.050601039081811905, -0.027414102107286453, 0.033652447164058685, -0.022197721526026726, 0.017341097816824913, 0.002326624933630228, -0.0346965529024601, -0.0030983383767306805, -0.06677357107400894, 0.04060965031385422, 0.010880568064749241, -0.05704803764820099, -0.022416824474930763, -0.0538468137383461, -0.007672246545553207, -0.0028306564781814814, -0.028989601880311966, 0.028635486960411072, 0.008742207661271095, -0.033913757652044296, -0.008316234685480595, -0.02129068598151207, -0.03808799386024475, 0.0070062195882201195, 0.017454467713832855, 0.012605742551386356, -0.0006216358160600066, -0.011031015776097775, -0.016848517581820488, -0.018647413700819016, -0.024985812604427338, 0.009905645623803139, -0.005013548769056797, -0.021111100912094116, -0.04505755379796028, -0.0025316039100289345, -0.017617210745811462, -0.018974969163537025, -0.05256153643131256, 0.009282099083065987, -0.033074792474508286, 0.03249421343207359, 0.019343281164765358, 0.005292596761137247, 0.008287113159894943, 0.01724921725690365, -0.02782883308827877, 0.015975764021277428, 0.004839641507714987, -0.06390684843063354, -0.037700869143009186, 0.04803548753261566, -0.01595417968928814, 0.06996282935142517, -0.00956118106842041, -0.05076584964990616, -0.06118261069059372, -0.05629291385412216, 0.007105759344995022, -0.04448441416025162, -0.023109400644898415, -0.02131662890315056, -0.057559140026569366, -0.04235410690307617, 0.0439336858689785, 0.01937112770974636, -0.020791834220290184, -0.004930013790726662, -0.027680523693561554, 0.03365552797913551, -0.053500957787036896, -0.0020209013018757105, -0.0030243550427258015, -0.018116598948836327, -0.008920116350054741, 0.05738719552755356, -0.009292198345065117, 0.02468799613416195, 0.0031384823378175497, 0.010720700956881046, 0.03175495192408562, 0.012263906188309193, -0.05020400509238243, -0.04483216628432274, 0.0010404358617961407, -0.0009456836269237101, 0.000032603049476165324, 0.001272567082196474, -0.031231053173542023, 0.04916773736476898, -0.06797316670417786, 0.03357507288455963, -0.017339223995804787, -0.005966853816062212, -0.03339029476046562, 0.003191904164850712, 0.04512542858719826, -0.013848834671080112, -0.007928035221993923, -0.02009034901857376, 0.04952077195048332, 0.03361368179321289, 0.007852485403418541, -0.037429314106702805, -0.007553852628916502, -0.05294739827513695, -0.031173374503850937, 0.01298706978559494, -0.04440132901072502, -0.015522587113082409, -0.025347067043185234, -0.0026563892606645823, 0.03145482391119003, 0.0006812918581999838, 0.0320434495806694, 0.053959283977746964, 0.0025238380767405033, -0.007334043271839619, -0.00936039723455906, 0.016922736540436745, 0.02419377490878105, -0.014261514879763126, 0.0430857315659523, -0.007843025028705597, -0.027684543281793594, -0.02088930644094944, -0.035455454140901566, -0.0319405198097229, -0.038603462278842926, -0.024640578776597977, 0.08414339274168015, -0.02264499105513096, 0.028487011790275574, 0.0022252185735851526, -0.050031889230012894, -0.051242388784885406, 0.03952901437878609, 0.017568042501807213, 0.005254145245999098, 0.03957991302013397, -0.012116089463233948, -0.011335532180964947, 0.012916797772049904, -0.03885183110833168, 0.013822388835251331, -0.03566182404756546, 0.08267306536436081, -0.0022482438944280148, -0.03764334321022034, 0.047627273947000504, 0.06112375855445862, -0.04092537984251976, -0.09707755595445633, -0.014741378836333752, -0.014202624559402466, 0.033985644578933716, -0.03231014683842659, -0.004085995256900787, -0.030949681997299194, -0.0008751724380999804, -0.010280893184244633, 0.028017636388540268, -0.011199039407074451, 0.03873547911643982, 0.03294462710618973, 0.04438766837120056, -0.023236041888594627, 0.026973782107234, 0.02741718664765358, -0.008378355763852596, -0.010256411507725716, -0.023690499365329742, -0.02036261186003685, 0.007775124628096819, 0.016284650191664696, 0.0822761058807373, -0.0012089833617210388, 0.0073788585141301155, 0.027295051142573357, -0.0009833021322265267, 0.014220014214515686, -0.0037031040992587805, 0.014760167337954044, 0.019136706367135048, -0.03721624240279198, -0.04682280123233795, -0.028028396889567375, 0.03542003780603409, 0.008789625018835068, 0.03439325839281082, -0.030998609960079193, 0.037592168897390366, 0.029964864253997803, -0.011079306714236736, 0.006150470580905676, -0.0917062759399414, -0.03393479064106941, -0.057508084923028946, -0.03961073234677315, -0.015377216972410679, -0.00798481423407793, -0.014737365767359734, 0.020374014973640442, -0.01990382932126522, -0.04340806230902672, -0.030879290774464607, 0.00833537895232439, -0.010339764878153801, -0.028127064928412437, -0.04424845799803734, 0.04190540686249733, -0.07146993279457092, -0.07877325266599655, -0.05685160681605339, -0.00900461245328188, -0.019140802323818207, -0.0010293873492628336, -0.006367445923388004, -0.005179093685001135, -0.019887618720531464, 0.022069115191698074, -0.021901443600654602, 0.03345906734466553, -0.0016611532773822546, -0.04001014679670334, 0.018125398084521294, 0.01692149043083191, -0.02450822852551937, 0.0365879163146019, 0.05934359133243561, -0.025750719010829926, 0.025189032778143883, 0.008076132275164127, 0.011391056701540947, -0.03172406554222107, 0.009912582114338875, 0.01258737314492464, 0.0026410126592963934, -0.06884026527404785, -0.0004346404457464814, -0.0017468531150370836, -0.03629791736602783, 0.009064419195055962, -0.01039193756878376, -0.0065701548010110855, -0.019721556454896927, -0.01404942199587822, -0.013919594697654247, 0.06774517893791199, -0.009217253886163235, 0.022864660248160362, -0.02076181024312973, 0.015525497496128082, 0.04125455394387245, -0.02624380961060524, 0.016443148255348206, 0.04470820352435112, 0.00733823562040925, -0.02544606290757656, 0.015636926516890526, -0.010213175788521767, -0.014599744230508804, 0.020992890000343323, -0.016504773870110512, -0.034143686294555664, -0.050166793167591095, -0.016827363520860672, 0.03143136575818062, 0.08497598767280579, 0.02547663077712059, 0.014475562609732151, 0.022351732477545738, -0.02997474931180477, -0.03571739047765732, -0.012831216678023338, -0.08281385153532028, -0.04020678251981735, 0.013496555387973785, -0.0499572679400444, -0.016199186444282532, -0.016143886372447014, -0.05069897323846817, -0.0004375885473564267, -0.011271624825894833, -0.03626934066414833, 0.0025196734350174665, 0.023163221776485443, -0.00423788744956255, 0.0070013077929615974, -0.0012865987373515964, 0.005527907982468605, 0.020275471732020378, 0.0375821590423584, -0.04123133420944214, -0.01101821381598711, 0.00033563096076250076, 0.034637048840522766, 0.00723967095836997, -0.0006472209934145212, -0.024510443210601807, 0.014182326383888721, 0.011068666353821754, 0.010945816524326801, 0.020756760612130165, 0.0005918393726460636, -0.002978741656988859, 0.016341356560587883, -0.017606306821107864, -0.003288421081379056, -0.04324249550700188, 0.022308174520730972, -0.014098918065428734, -0.004434602800756693, -0.03456161171197891, 0.03152905032038689, 0.03928341343998909, -0.0008210273808799684, 0.04084661975502968, 0.025948897004127502, 0.04393496364355087, -0.002694502240046859, 0.01539139449596405, 0.011937317438423634, 0.031746674329042435, 0.020826399326324463, 0.055075813084840775, -0.005299974232912064, 0.023393122479319572, 0.045828528702259064, 0.016457945108413696, -0.016446169465780258, 0.03159008175134659, 0.02176842838525772, -0.02226627990603447, 0.010049146600067616, 0.008341461420059204, -0.03169919550418854, 0.0038012266159057617, -0.045627694576978683, 0.002995735267177224, -0.016893809661269188, 0.0005981787689961493, -0.02010100893676281, -0.027728727087378502, 0.06027601659297943, -0.010067778639495373, -0.01141287386417389, 0.009998434223234653, -0.04100138694047928, 0.001119239954277873, 0.02998456545174122, 0.01363680511713028, 0.0040198080241680145, 0.026943739503622055, 0.01705213077366352, 0.018421119078993797, 0.04464423283934593, 0.008825737051665783, 0.016822507604956627, -0.035566817969083786, -0.019667653366923332, -0.024879518896341324, -0.001169063150882721, -0.026675518602132797, 0.021948035806417465, -0.03538959100842476, 0.022695321589708328, -0.033506449311971664, 0.013854186050593853, 0.04101444035768509, -0.03371889889240265, -0.02397991716861725, -0.021354150027036667, 0.046176109462976456, -0.051601823419332504, -0.021180979907512665, 0.03613933548331261, 0.013225370086729527, -0.03688925504684448, -0.00164031854365021, -0.00984342023730278, 0.022690335288643837, -0.0029465474653989077, 0.0737454816699028, 0.0023004652466624975, 0.04187905788421631, 0.037156060338020325, -0.0323837511241436, -0.011684679426252842, 0.03818201646208763, 0.0009727322030812502, -0.047649990767240524, -0.024185597896575928, -0.03946511447429657, -0.0012119290186092257, -0.007634231820702553, -0.0489322654902935, -0.0035398986656218767, 0.03438663110136986, -0.00600266782566905, -0.03468625992536545, -0.0043942891061306, 0.020549723878502846, -0.06914617866277695, -0.022949548438191414, 0.015629682689905167, 0.0380806140601635, -0.0008171706576831639, -0.03579547256231308, -0.013606219552457333, -0.03234279900789261, 0.024098685011267662, -0.0325954370200634, 0.020585069432854652, -0.016472645103931427, -0.01564977318048477, -0.03017697110772133, -0.04156368970870972, -0.03872660920023918, 0.02033107727766037, -0.05364738404750824, -0.03828003257513046, 0.06100847199559212, 0.0425117053091526, 0.022455865517258644, 0.023038366809487343, -0.017251938581466675, 0.021876735612750053, 0.04458700865507126, 0.08979324996471405, 0.023425128310918808, 0.0564841590821743, 0.02790570817887783, -0.025977088138461113, 0.001527512213215232, -0.03693775087594986, 0.03391643241047859, -0.01629408448934555, -0.007924757897853851, -0.018927549943327904, 0.017779912799596786, -0.033518288284540176, -0.03995300829410553, -0.016811197623610497, 0.04814547300338745, -0.021041838452219963, -0.0599309466779232, -0.03690651059150696, -0.008667705580592155, -0.07407096773386002, -0.005605233367532492, -0.03729896992444992, 0.011421551927924156, 0.017055032774806023, -0.015364314429461956, -0.007637154310941696, -0.04998081177473068, 0.15324005484580994, 0.04835103452205658, 0.036111053079366684, -0.000539255328476429, 0.020278338342905045, 0.04105224832892418, 0.02008877322077751, -0.021076979115605354, -0.0032937172800302505, -0.0524422712624073, 0.026600375771522522, -0.024912018328905106, 0.024395069107413292, 0.038777150213718414, 0.011873913928866386, 0.0735420510172844, -0.03314372897148132, 0.001778241479769349, 0.019708819687366486, -0.07158077508211136, -0.035084910690784454, 0.02116146683692932, 0.0021079019643366337, 0.012701239436864853, -0.011244717054069042, 0.019145891070365906, 0.028030408546328545, -0.04802525043487549, -0.015411373227834702, -0.006116543430835009, 0.04698849096894264, -0.026466192677617073, 0.04259936511516571, -0.0021769420709460974, -0.027458177879452705, 0.033550798892974854, -0.007256652694195509, 0.011041058227419853, -0.00908662285655737, 0.019425949081778526, -0.011273529380559921, -0.013018880970776081, 0.03316222503781319, -0.04788139462471008, 0.013482559472322464, 0.03030666708946228, -0.02314761094748974, 0.035810068249702454, 0.027336562052369118, -0.01822180487215519, 0.03687283769249916, -0.03054649755358696, 0.02626812644302845, -0.022683577612042427, -0.04048094525933266, -0.010226047597825527, -0.023471122607588768, -0.03581227362155914, -0.0052793980576097965, 0.036285486072301865, 0.009594088420271873, 0.020983854308724403, -0.0020735266152769327, 0.014732643030583858, -0.03132547438144684, 0.020323259755969048, 0.009844690561294556, 0.010974938981235027, -0.005647195503115654, -0.02488960325717926, 0.006036747712641954, -0.014418761245906353, -0.0039756521582603455, -0.045663297176361084, -0.0006843010778538883, 0.06327518820762634, -0.020823471248149872, 0.053843241184949875, -0.005728849675506353, -0.03852449357509613, -0.038095612078905106, -0.028897760435938835, 0.007082568947225809, -0.021605923771858215, 0.006646265275776386, 0.06270980089902878, -0.04996307194232941, -0.006565806921571493, -0.00489276135340333, 0.05357488989830017, 0.06419877707958221, 0.040158845484256744, -0.030848411843180656, -0.019416198134422302, -0.012601429596543312 ]
\section*{\label{sec:intro}Introduction} "Logic-In-Memory" (LIM) architectures have recently emerged as an alternative to Von Neumann architectures, where the constant shuttle of data between logic and memory units leads to a critical rise in energy consumption and delay when downscaling. This has led to the search for novel technologies that combine memory and logic functionalities. Recently, magnetic skyrmions have been proposed as the building block of such logic-in-memory technologies. Magnetic skyrmions are local chiral whirling of the magnetization. Their small lateral dimensions, down to the nanometer size and topological stability grant them particle-like properties, which, combined with the possibility to be manipulated via electrical currents, can be exploited to code data and achieve computation at the nanoscale. These textures appear promising for logic-in-memory applications since they intrinsically merge high density non-volatile storage and logic capabilities. However, while a number of memory and logic concepts have been proposed based on skyrmions~\cite{song2021logic,gnoli2021skyrmion,zhang2020stochastic,chauwin2019skyrmion,zhang2019skyrmion,he2017current,xing2016skyrmion,zhang2015magnetic,luo2018reconfigurable,yan2021logic16,mankalale2019skylogic,Fattouhi2021PhysRevApplied}, several major issues have hindered their technological advancement. In the first concepts of the skyrmion racetrack~\cite{fert_skyrmions_2013}, data was encoded through the distance between neighboring skyrmions and the memory operation relies on the synchronous shift of skyrmion trains, where the skyrmion interdistance remains constant. However, the latter can be easily perturbed by thermal activation or small variation in the skyrmion velocities, induced for instance by local changes in the magnetic properties in the material or process variations. Different pathways have been proposed to solve this issue such as double lanes~\cite{muller_magnetic_2017} or local gate control~\cite{kang2016complementary}. However, these solutions appear difficult to implement. For instance, local gate control requires numerous gate contacts leading to increased periphery area, limited density and increasing complexity. Regarding skyrmion based logic, the fundamental building blocks need to fulfill a set of criteria, including cascading, fan-out, logic level restoration, immunity to noise, mitigation of potential loss of information, and input-to-output isolation. However, concepts proposed so far required complex operations and faced serious limitations. These include skyrmion-charge inter-conversion which limits the advantage of a full skyrmionic signal~\cite{mankalale2019skylogic,xing2016skyrmion,he2017current,yan2021logic16}, large skyrmion circuits requiring complex synchronization of data~\cite{chauwin2019skyrmion}, multiple gate voltages with complex implementation~\cite{zhang2020stochastic,zhang2019skyrmion}, etc. In addition, several proposals do not fulfill the aforementioned basic requirements of logic, namely cascading, input and clock synchronization, etc \dots Thus, there is currently no concept for a full skyrmionic computer, incorporating logic, memory and interconnects using exclusively magnetic signals without the need for intermediate conversion to charge signals. \begin{figure*}[!htb] \includegraphics[width=0.9\linewidth]{Fig1_nucleatev8.pdf \caption{\label{fig:nucleate}(a) Schematic of a skyrmion generator with regions of different anisotropy values. Current can be sent in-between $C_1-C_2$ or $C_2-C_3$. (b) Energy as the skyrmion moves between two bit cells $R_2$ and $R_3$. $E_{\rm 0}$ is the energy of the skyrmions inside the bit cell. The anisotropy fields are indicated in the different regions. (c) Protocol for data encoding: a skyrmion is first nucleated in the low anisotropy region (row 1) by sending current between $C_1-C_2$ (J=15 MA/m$^2$ for 0.3 ns) and then pushed ("fired") to the 80nm cells (row 2) which work as memory bits ($J=35\rm ~MA/cm^{2}$ for $0.55\rm~ns$). A shift operation is carried out by sending current between $C_2-C_3$ (row 3) ($J=15\rm~MA/cm^{2}$ for $0.9\rm~ns$). We show only the top layer magnetization of the SAF as the bottom layer is magnetized symmetrically opposite to the top layer due to strong RKKY coupling. (d) Full 8-bit skyrmion data encoding of an 8-bit binary number ``10001011" using operations given in (c). Note that the data is encoded starting first from the least significant digit.} \end{figure*} Besides the aforementioned limitations, moving skyrmions are subject to the skyrmion Hall effect (skHE), namely a motion transverse to the driving force. To address this problem, topological spin textures with vanishing topological charges and thus skHE have been proposed as alternatives of skyrmions~\cite{zhang2016antiferromagnetic,jin2016dynamics,2018_SciRep_KolesnikovSamardakOgnev,sisodia_droplet_PRB_2021,dohi2019formation,legrand2020room,juge_skyrmions_2021,saf_zhang2016magnetic}. Of particular interest are skyrmions in synthetic antiferromagnets (SAF), which have been recently demonstrated to be stable at room temperature~\cite{dohi2019formation,legrand2020room,juge_skyrmions_2021}. These skyrmions are resilient against external stray magnetic fields and possess velocities which are much higher than their ferromagnetic counterparts, making them good candidates for elementary building blocks in storage and logic. In addition to using magnetic configurations with zero topological charge, skHE can also be suppressed with different confinement techniques~\cite{indent3d_pathak,albisetti2016NatNano_nanopatterning,albisetti2017AIPnanopatterning,guang2020creating,juge2021helium,domainwallconfinement}. In particular, we have shown that skyrmion channels can be defined by a local modification of the magnetic properties using light ion irradiation. This can be exploited to guide the skyrmion dynamics and suppress the skyrmion Hall effect~\cite{juge2021helium}. This technique can also be leveraged for a reliable control of the skyrmion position in racetracks as well as guide their motion in complex geometries to achieve logic operations. In this work, using micromagnetic simulations, we propose a Logic-In-Memory (LIM) device based on SAF skyrmions which leverages skyrmion confinement using local variation of the anisotropy. It combines two main innovations: Firstly, a novel concept of racetrack shift register where the skyrmion position is defined by low anisotropy dots and moved reliably using current induced spin-orbit torques. This provides an elegant solution to the longstanding issue of reliability of data retention and shift operation in racetracks. We develop elementary protocols for basic ``nucleate" and ``shift" operations on a train of skyrmions. Secondly, a compact Full Adder logic gate extendable to n-bit FA by cascading is designed. The designed FA can be re-programmed to perform different logic operations (e.g. NOT, BUFFER, AND, OR, XOR, NXOR, NAND). Our proposal allows a simple and intuitive synchronization scheme which in turn enables us to seamlessly cascade logic design to implement large-scale networks without any additional electronic circuitry. The designed logic architecture can also tolerate deviations in the amplitude or width of the current pulses which may arise from the electrical part of the design. \section*{\label{sec:nucleation}Skyrmion Nucleation and Confinement} As shown in our previous work~\cite{juge2021helium}, it is possible to artificially create an energy barrier for a skyrmion using focused He$^+$ ion-irradiation which locally modifies the material properties (anisotropy and Dzyaloshinskii-Moriya interaction (DMI)) of the ferromagnet. Using this feature, we can engineer regions of different anisotropy values specifically tuned for two different tasks, namely nucleation and confinement of skyrmions. For the micromagnetic simulations, a SAF structure is assumed composed of two Co layers with a thickness of 0.9nm antiferromagnetically coupled by RKKY interaction and separated by a thin spacer [see Appendix.~\ref{sec:methods} for details regarding the micromagnetic model and parameters]. The magnetic parameters for the irradiated and non-irradiated areas are close to the ones of the Pt/Co/MgO stacks measured experimentally in Ref.~\cite{juge2021helium}. The He$^+$ ion irradiation leads to a decrease of the perpendicular magnetic anisotropy as well as the DMI. In Fig.~\ref{fig:nucleate}(a), we show the schematic of a skyrmion generator device coupled with a memory (bit) cell which can physically confine and hold a skyrmion inside of it. There are three different regions of anisotropy. The larger $\rm150 nm$ square-shaped cell ($R_1$) with a very small effective anisotropy of $B_{\rm K,eff}=5\rm mT$ is used to nucleate the skyrmion. The anisotropy of this region is intentionally kept smaller to reduce the current density required to nucleate the skyrmion. The second region is composed of the $\rm80 nm$ bit cells ($R_2$ and $R_3$) with $B_{\rm K,eff}=100\rm mT$, which are surrounded by high anisotropy regions of $B_{\rm K,eff}=165\rm mT$. These act as a barrier for the skyrmion, effectively trapping the skyrmion inside the bit cells. In Fig.~\ref{fig:nucleate}(b), we show the energy of the skyrmion as a function of its position $x$ as it passes from region $R_2$ to $R_3$. The energy is highest in the middle of regions $R_2$ and $R_3$. The energy barrier is $\sim33k_BT$ providing reasonable stability to the device against thermal noise. More information on the calculation and optimization of the energy barrier is given in Appendix.~\ref{sec:barrier}. To nucleate and shift the skyrmions, three separate contacts $C_1$, $C_2$ and $C_3$ are used (Fig.~\ref{fig:nucleate}(a)). To nucleate a skyrmion in $R_1$ (first panel of Fig.~\ref{fig:nucleate}(c)), a short ($0.3\rm~ns$) current pulse ($J=15\rm ~MA/cm^{2}$) is first injected in between contacts $C_1-C_2$. A second current pulse with a higher current density ($J=35\rm ~MA/cm^{2}$ for $0.55\rm~ns$) allows the skyrmion to overcome the barrier and move from $R_1$ towards $R_2$. Simultaneously, due to the high current density, another skyrmion nucleates in the region $R_1$. This whole operation can thus be dubbed as ``fire+nucleate" as one skyrmion is nucleated and another skyrmion is simultaneously fired (panel 2 of Fig.~\ref{fig:nucleate}(c)). Once nucleated, the shift operation is performed by injecting a current between contacts $C_2$ and $C_3$ such that the skyrmions move between $R_2-R_3$ without influencing the nucleation region $R_1$ (third row panel in Fig.~\ref{fig:nucleate}(c)). Overall, to encode a full data stream, the following protocol is adopted: 1.) Nucleate in region $R_1$, 2.) If Bit 1 is required, use ``fire+nucleate" followed by ``shift" 3.) If Bit 0 is required, use only ``shift". We show in Fig.~\ref{fig:nucleate}(d) and in video SV1 the encoding of an 8-bit binary number ``10001011" in a racetrack composed of 9 cells using this protocol. After nucleation, the skyrmion train shifts synchronously along the cell track when injecting the current pulses. Thus, our proposed racetrack design based on confinement cells and current induced tunneling provides large bit stability and natural synchronization of the bit train, solving an important issue of initial skyrmion racetrack design. \begin{figure*}[!htb] \includegraphics[width=0.7\linewidth]{Fig2_onebit_figure_v4.pdf \caption{\label{fig:1bit}Design and operation of a 1-bit Full-Adder (FA) based on irradiated SAF. (a) shows the schematic of the FA and the current pulses which are designed to move the skyrmions from their respective bits on the left to the middle region where the operation takes place and then to the output bits on the right. The current pulses $J_1$ and $J_2$ have an amplitude and duration of $J_1=15\rm~MA/cm^{2}$ and $t_1=0.8\rm~ns$ and $J_2=5\rm~MA/cm^{2}$ and $t_2=0.9\rm~ns$. (b)-(f) show the micromagnetic simulation of the 1-bit FA gate for various test cases. Snapshot of the magnetization at different times are overlayed to show the complete trajectories of the skyrmions (black solid curves). (g) Serial FA operation on a stream of $C_{in}$, $A$ and $B$ inputs. } \end{figure*} \section*{\label{sec:1BitFA}Full Adder Design} A Compact full Adder (FA) logic gate can also be designed using anisotropy energy barriers in irradiated SAF stacks. A Full Adder is considered as the basic unit in Arithmetic Logic Unit (ALUs) performing bitwise addition of two binary numbers. It has three inputs, $A$, $B$ and $carry-in~(C_{\rm in})$ and produces two outputs, $Sum$ and $carry-out~(C_{\rm out})$. The logic gate is divided into three parts (see Figure.~\ref{fig:1bit}(a)). The left part of the device is made of three bit cells, which are the inputs $A$, $B$ and $C_{\rm in}$. Similarly, at the right-hand side of the logic gate, three other bit cells hold the two outputs $Sum$ and $C_{\rm out}$ of the FA. The middle region of the design represents the part of the device which performs the logic operation. All three regions and the individual bit cells are separated from each other by anisotropy energy barriers. We show the operation of the designed Full Adder gate in Figs.~\ref{fig:1bit}(b)-(f) and in video SV2: The skyrmions which are present inside the bit cells inputs $A$, $B$ and $C_{\rm in}$ on the left region are pushed inside the middle region after passing over the energy barrier by sending a current pulse uniformly through the device ($J_1=15\rm~MA/cm^{2}$). When skyrmions are inside the middle region, different possibilities arise depending on the total number of skyrmions inside the middle region. For only one skyrmion [Figs.~\ref{fig:1bit}(b)-(c)], the most stable state for the skyrmion is to stay at the center of the middle region. However, when there are two skyrmions [Figs.~\ref{fig:1bit}(d)-(e)], they repel each other and would stay near the top and bottom edge of the middle region to minimize their mutual interaction. When the total number of skyrmions in the middle region is three [Figs.~\ref{fig:1bit}(f)], the skyrmions will maximize the individual distances between them and will acquire a position at the top, middle and bottom parts. To achieve the relaxation of the interacting skyrmions in the middle part, two pulses with smaller amplitude $J_2=5\rm~MA.cm^{-2}$ are then injected. The skyrmions are then pushed into the rightmost region by sending a current pulse with a larger amplitude $J_1$. At the output end, the middle cell will only have a skyrmion if the total number of skyrmions on the input side is either one or three. This represents the $Sum$ output of the Full Adder. Similarly, the top and bottom outputs will only have a skyrmion if the total number of input skyrmions is either two or three. This is the same as the $C_{\rm out}$ (carry-out) output of the Full Adder. We thus achieve an entire full adder operation with a single logic gate. We have specifically designed our FA logic gate in Fig.~\ref{fig:1bit}(a) keeping in mind an easy integration with racetrack storage such as the one in Fig.~\ref{fig:nucleate}(a). Using this architecture, the FA logic gate can be easily extended to perform logic operations with a continuous stream of data to serially compute $Sum$ and $C_{\rm out}$ outputs for each input set of data bits. Such an operation is shown in Fig.~\ref{fig:1bit}(g), where we show serial 1-bit FA calculation on streams of input $A$, $B$ and $C_{\rm in}$ [see also video SV3]. The current pulses, in general, follow the same protocol and can be easily extended to perform $n$ operations, where $n$ is the total number of bits in the bit-stream.\footnote{The only modification needed in the current pulses is the merging of $J_1$ pulse of outgoing operation with the $J_1$ pulse of incoming operation as both of these operations can be carried out simultaneously without affecting the logic operation.} \begin{figure*} \includegraphics[width=\linewidth]{Fig3_full_3bit_v10.pdf \caption{\label{fig:3bit}(a) Design of a 3-bit Full-Adder (FA) by cascading three 1-bit FAs. Additional components have been added to synchronize inputs application and the entire operation (b) shows the micromagnetic simulation for the case of (101+111=1100). The current pulses used to perform the logic operation are exactly the same as the 1-bit FA operation repeated 3-times. (c) and (d) show the design and operation of an FA where the carry-bit can be sent back using current of negative polarity with density $J=-10\rm~MA/cm^{2}$ for $t=3.2\rm~ns$ followed by an off-pulse ($J=0\rm~MA/cm^{2}$) of $1\rm ~ns$. (e) Operation of a 3-bits FA using the modified FA shown in (c). The operation corresponds to the case (011+111=1010). (f)-(h) shows the comparison of both approaches for 3-bits addition in terms of device area, energy consumption and operation time, respectively. } \end{figure*} \section*{\label{sec:3bitFA}Full Adder Multi-bit operation} One limitation of the FA gate is that it only operates on 1-bit inputs. For instance, the actual operation on the bitstreams shown in Fig.~\ref{fig:1bit}(g) is a 1-bit FA operation done serially on each arriving set of input bits, since the carry-bit ($C_{\rm out}$) is not taken forward in each successive computation. We show here that $N$-bit FA gates can be easily designed by properly cascading 1-bit FA gates. As an example, we present in Fig.~\ref{fig:3bit}(a) the design of a 3-bit FA gate composed of three cascaded FA gates where the carry bit from each computation is used in the next computation. The bottom $C_{\rm out}$ from the FA1 is connected to the top bit cell of FA2, such that the output $C_{\rm out}$ from FA1 operation is used as one of the inputs of FA2 operation. To ensure that the two other inputs of FA2 reach at the same time as the output $C_{\rm out}$ of FA1, we add some delay gates Sync-In (green boxes) before FA2. These synchronization gates can be cascaded to vary the delay time and provide on-demand synchronization between various segments of logic operations. Similar gates are also added to synchronize the outputs (Sync-Out, black). In Fig.~\ref{fig:3bit}(b) and video SV4, we show the operation of a 3-bit FA using cascaded 1-bit FAs. The calculation performed is ($a_3~a_2~a_1$) + ($b_3~b_2~b_1$) = ($c_4~c_3~c_2~c_1$), where ($a_3~a_2~a_1$)=(101) and ($b_3~b_2~b_1$)=(111). The expected output is ($c_4~c_3~c_2~c_1$)=(1100) which is correctly obtained by bit cells $c_4$, $c_3$, $c_2$ and $c_1$ shown by dotted yellow boxes. The design of Fig.~\ref{fig:3bit}(a) is very promising for fast n-bit FA operation and for further modifications using cascading and synchronization. However, a more compact and low power design can be implemented by directly computing the n-bits FA operation using streams of skyrmions in two racetracks and a single FA gate. This would be similar to the operation of FA shown in Fig.~\ref{fig:1bit}(g), however, with bit-streams replaced with $N$-bit numbers. For this purpose, we modify our FA design to include another region of different anisotropy value as shown in Fig.~\ref{fig:3bit}(c). This new region (light blue) which covers the area joining the input bits to middle region and the area to the left of top $C_{\rm out}$ bit has an anisotropy in-between the anisotropy of the regular bit cells and the barrier region. This enables us to send a negative polarity current pulse which is enough to move only the $C_{\rm out}$ bit while keeping the other skyrmions at their respective places. This pulse is shown alongside in Fig.~\ref{fig:3bit}(c) [highlighted part]. In Fig.~\ref{fig:3bit}(d), we show how the $C_{\rm out}$ bit is moved back to the input end by this current pulse of negative polarity. During the entire operation, none of the other skyrmions are affected. Using this, we can now compute the addition operation of two $N$-bit numbers by successively sending them through the top and bottom inputs of the FA (middle input is left empty). The design and operation for a 3-bit FA using this strategy is shown in Fig.~\ref{fig:3bit}(e) and video SV5. It may be noted that we need to add an empty bit between each successive bit as no operation can take place during the movement of $C_{\rm out}$ bit using negative polarity current. The snapshots in Fig.~\ref{fig:3bit}(e) correspond to the initial and final stage of the addition operation ($a_3~a_2~a_1$) + ($b_3~b_2~b_1$) = ($c_4~c_3~c_2~c_1$), where, ($a_3~a_2~a_1$)=(011), ($b_3~b_2~b_1$)=(111) and the expected output is ($c_4~c_3~c_2~c_1$)=(1010) which is correctly computed with our implementation. The inputs and outputs are shown in dotted yellow boxes. \begin{figure*}[!htb] \includegraphics[width=0.7\linewidth]{Fig4_nand_v2.pdf \caption{\label{fig:nand}Different logic gate designs derived from the FA. (a) shows a NOT/COPY gate design. Some input bits have been fixed to either "0" or "1". Similarly, (b) and (c) show XOR/AND and NXOR/OR gates derived from FA. (d) shows a universal NAND gate designed by cascading AND and NOT gates, both of which are modified versions of FA. (e) shows the operation of NAND for both inputs as 1. } \end{figure*} The performance of the two methods for $N$-bit FA computation described above can be compared on the basis of three important characteristic metrics: (i) Device Area, (ii) Energy consumption and (iii) Operation time. In Fig.~\ref{fig:3bit}(f), we show the variation of the device area with the number of bits ($N$). For the cascaded FA shown in Fig.~\ref{fig:3bit}(a), both dimensions in the $x-y$ plane increase linearly with $N$ leading to an `$\mathcal{O}\rm~(N^2)$ variation of device area. However, since only one FA gate is needed for the alternative approach (without cascading) shown in Figs.~\ref{fig:3bit}(c)-(e), the device area remains the same as `$N$' increases. Note that in Fig.~\ref{fig:3bit}(e), the increase in the length along x-axis is not included in the calculation as the extended regions are considered as a part of the racetrack storage rather than logic. In Fig.~\ref{fig:3bit}(g), we show the total energy consumption of the FA logic gate as a function of number of bits. For a 1-bit operation, the energy of the operation is $9\rm~fJ$. In the case of cascaded FA operation, the energy dramatically increases with the number of bits as $\mathcal{O}\rm~(N^3)$ due to linear increase in operation time and quadratic increase in the device area. However, when using the FA design shown in Fig.~\ref{fig:3bit}(c)-(e), the total energy only increases linearly with the number of bits. For a 32-bit operation, the total energy consumption is $\sim0.8~\rm pJ$ which is more than two orders lower than the cascaded FA operation. However, this design suffers from a larger operation time compared to cascaded FA gate since each operation is delayed by $4.2\rm~ns$ to move the carry-out bit back to the input position [Fig.~\ref{fig:3bit}(h)]. Due to the Joule dissipation in the metallic conductors, the proposed device consumes 1-2 orders of magnitude more energy for individual logic operations compared to state-of-art CMOS full adder~\cite{energycomp}. However, owing to its intrinsic logic-in-memory approach, a large gain in energy and delay is expected at the device level, since it minimizes the energy dissipated in interconnects and the stand-by power. Note that the speed of both designs can be further increased by using skyrmions with higher velocity ($>1000\rm m/s$ is expected for SAF~\cite{tomasello2017performance} which is 6 times the maximum velocity of skyrmions in this work). \section*{\label{sec:derivative}Re-programming FA logic} Full adder logic gates can be easily modified in order to build a number of basic logic functions, which in turn can be combined to perform complex logic operations. The output of the full adder gate is given as: \(Sum=C_{\rm in}\oplus (A \oplus B)\) ; \(C_{\rm out}= AB+BC_{\rm in}+AC_{\rm in}\). By fixing one or more of the inputs, different logic gates can be achieved. Note that the inputs of a FA logic gate are all interchangeable, so it does not matter which of the inputs are fixed. Figures~\ref{fig:nand}(a)-(c) show the modified FA gates which can perform COPY, NOT, AND, XOR, OR and XNOR operations. The universal NAND gate can also be designed by cascading two modified FA gates [Fig.~\ref{fig:nand}(d)]. The first gate is modified by setting one of the inputs to ``0" such that the $C_{\rm out}$ represents the output of an AND gate. The second FA gate is modified to perform an inversion operation by setting two of the inputs to ``0'' and ``1''. The operation of this gate for a test case of $A=1$ and $B=1$ is shown in Fig.~\ref{fig:nand}(e). The output $\overline{A.B}=0$ corresponding to the NAND gate is highlighted. It may be noted that we also obtain AND and XOR outputs along with the NAND output. \section*{\label{sec:FAtolerance}Electrical Tolerances and failure mechanisms} \begin{figure}[!htb] \includegraphics[width=\linewidth]{Fig5_tolerance_figv4.pdf \caption{\label{fig:tolerance}(a) Current pulses used for FA operation in Fig.~\ref{fig:1bit}. (b) Acceptable change (\%) in different parameter values in the current pulse. (c) Test case with inputs (0,1,1) for FA operation with random anisotropy grains.} \end{figure} For practical application of our design, it is important to probe its tolerance against variations in the current amplitude or pulse width. In Fig.~\ref{fig:tolerance}(a), we show the set of pulses used for the 1-bit Full Adder operation. There are two different current density values used in the circuit : $J_1=15\rm~MA/ cm^{2}$ and $J_2=5\rm~MA /cm^{2}$ with pulse widths of $t_1=0.8\rm~ns$ and $t_2=0.9\rm~ns$, respectively. There is also an off-pulse of width $t_0=0.5\rm~ns$. We individually vary each of these parameters by fixing other parameters at their reference values. We also try to vary $J_1$, $J_2$ or $t_0$, $t_1$ and $t_2$, simultaneously. The results are shown in Fig.~\ref{fig:tolerance}(b) depicting the acceptable level of variation for each case for which the logic operations are executed without any errors. Note that these results are also valid for the NAND as well as other derived logic gates. These tolerance values provide valuable input for further modeling with large-scale electrical circuit designing tools. We also performed simulations to check the robustness of device against variations in anisotropy. We varied the effective anisotropy field of the barrier region and found that the Full Adder works correctly for the range of values $\rm 155mT-167mT$. Further, we also perform simulations by adding grains of size $\rm 15nm$ with random $0.5\%$ variation of anisotropy constant (equivalent to $\sim5\%-8\%$ change in effective anisotropy field), similar to previous works~\cite{juge2018magnetic,gross_skyrmion_2018} and show that the Full Adder works correctly. The motion of skyrmions for a test case with inputs (0,1,1) is shown in Fig.~\ref{fig:tolerance}(c). However, we note that a stronger anisotropy variation may lead to incorrect operations. In our device, this happens as the skyrmions are stabilized for the parameter values which are close to in-plane to out-of-plane transition regime. Therefore, a small change in the anisotropy constant rapidly changes the skyrmion energy and hence its trajectory. A possible strategy to mitigate this is to use higher anisotropy thin films as the pristine sample and then irradiating them to obtain the tracks/barriers with the same anisotropy difference as used in this work. An important part of the logic gate design involves device testing against a possible failure during operation. To investigate this point, we include thermal noise corresponding to $\rm T=350~K$ in our simulations \footnote{As we are already doing simulations with experimental parameters extracted at T=300K, we only include thermal noise corresponding to T=50K to avoid overestimating the effect of temperature}. We simulate 20 instances for each of the possible 8 test cases for the Full Adder (total 160 attempts). Despite high thermal noise, the Full Adder worked correctly for $\sim85\%$ of the total attempts. For the cases in which it failed, three different failure mechanisms were found. The first one is caused by the annihilation of input skyrmions during the operation. We predict that a stronger RKKY coupling could counter the thermal noise and improve the overall stability of the SAF skyrmions. The second failure mechanism is due to the presence of skyrmions at the wrong output after the operation has ended. This happens when the skyrmion diffusion due to thermal noise significantly perturbs the intended trajectory of the skyrmions. Higher Gilbert damping is expected to minimize this effect. However, the trade-off will be an increased energy consumption as higher current densities will be required to move the skyrmions. The third possibility is a skyrmion getting stuck in between two bit cells. This occurs when the skyrmion finds a local minima in between two memory bits. Our barrier has already been optimized to avoid this situation [see Appendix.~\ref{sec:barrier}], however, further optimization is needed to comply with high-temperature conditions. This will involve increasing the difference of anisotropy between the low and high anisotropy regions which will increase the barrier height. \section*{\label{sec:future}Conclusion} To conclude, we proposed a logic-in-memory device based on skyrmion confinement and channeling by anisotropy energy barriers in synthetic antiferromagnets. We first designed a racetrack shift register memory based on skyrmions confined by anisotropy energy barriers as memory bits, allowing reliable data storage with large stability and robust synchronous shift operations on skyrmion train. This design naturally solves the stability and synchronization issues of the initial racetrack concept without introducing additional gates or complex geometries. We then combine our racetrack storage with a newly designed 1-bit Full Adder (FA) gate extendable to $N$-bits FA by cascading. The designed FA is reprogrammable and can also be used to perform AND/OR/NOT/NAND/XOR/NXOR operations. The device is expected to perform well even with some fluctuations in the amplitude/width of the injected current pulses and in presence of thermal noise. The simplicity and compactness of the design combined with the minimal use of electrical circuitry brings the proposed device to the same level as the current technological capabilities of fabrication/manufacturing processes, thus providing an important advance for the development of skyrmion-based logic-in-memory technology. \begin{acknowledgments} The authors acknowledge financial support from the French national research agency (ANR) (Grant Nos. ANR-15-CE24-0015-01 and ANR-17-CE24-0045) and the American defense advanced research project agency (DARPA) TEE program (Grant No. MIPR HR0011831554). This work has been partially supported by MIAI@Grenoble Alpes, (ANR-19-P3IA-0003). \end{acknowledgments}
[ 0.005557163152843714, 0.006460210308432579, 0.00909599382430315, -0.019076930359005928, 0.005970411002635956, 0.009899945929646492, 0.049065425992012024, 0.0009851243812590837, -0.01017504557967186, 0.05369996652007103, 0.028408745303750038, 0.017531292513012886, 0.006769773084670305, -0.06472356617450714, -0.009565475396811962, -0.0065957335755229, -0.03497719392180443, -0.0416884571313858, -0.02881244197487831, -0.006440927740186453, -0.015990490093827248, -0.014372248202562332, -0.0603722408413887, -0.03431788831949234, -0.035683151334524155, 0.03563910350203514, 0.04062340036034584, -0.011986211873590946, 0.06006455421447754, 0.06729274988174438, -0.011028829962015152, -0.05501801148056984, 0.04186851531267166, -0.040966276079416275, -0.04506177455186844, -0.021150965243577957, 0.015067489817738533, -0.024400494992733, 0.004434253089129925, -0.05262050777673721, 0.028269140049815178, -0.028284480795264244, 0.04265722632408142, -0.04656479135155678, -0.06928495317697525, -0.023229898884892464, -0.004309007432311773, -0.029955614358186722, -0.01113173458725214, -0.061501841992139816, 0.008789584040641785, -0.0024098975118249655, 0.036138392984867096, 0.0056956494227051735, 0.004553180653601885, 0.0189167782664299, 0.006851831451058388, -0.010334830731153488, -0.03825867548584938, -0.0018094256520271301, 0.00711344089359045, -0.01741521619260311, 0.034020449966192245, -0.0811207965016365, 0.02973182685673237, 0.005266979802399874, -0.01714419201016426, 0.018707549199461937, 0.004370486829429865, -0.023529188707470894, -0.01879018358886242, 0.008733979426324368, -0.02227676473557949, -0.04593749716877937, -0.019800785928964615, 0.024378253147006035, -0.017455261200666428, -0.002259975764900446, -0.037693627178668976, -0.021940968930721283, 0.011711254715919495, 0.02737189643085003, -0.015582687221467495, 0.04751696065068245, -0.021470455452799797, -0.024370264261960983, 0.01619262620806694, -0.0022687341552227736, 0.0080481618642807, -0.0021095434203743935, 0.02046874724328518, 0.0543159618973732, 0.032907042652368546, 0.028485914692282677, 0.022445393726229668, 0.04923853650689125, -0.02802526205778122, 0.03485161066055298, 0.003576569724828005, -0.014130412600934505, 0.02170858159661293, 0.06157185137271881, -0.017063859850168228, 0.0743941143155098, -0.06625229120254517, -0.02653449960052967, -0.02147422917187214, 0.042345549911260605, 0.004483593627810478, -0.039200253784656525, 0.002189800376072526, 0.00243162689730525, 0.018361324444413185, 0.015426335856318474, 0.0009044937323778868, 0.0643092691898346, -0.0020372977014631033, 0.0408659502863884, -0.02920386753976345, 0.01056697592139244, -0.0008642197935841978, -0.02549029141664505, 0.028429914265871048, 0.011151871643960476, -0.004691991023719311, -0.044111136347055435, 0.006842660252004862, 0.02272665873169899, -0.010352745652198792, -0.025417815893888474, 0.007826914079487324, -0.022472618147730827, 0.019367273896932602, 0.028540488332509995, 0.0001498735073255375, 0.021261729300022125, -0.010902045294642448, 0.033790938556194305, 0.049718137830495834, -0.0468498058617115, 0.03924485668540001, -0.011599995195865631, 0.01765635423362255, 0.082334965467453, 0.016279535368084908, 0.038545072078704834, 0.008001879788935184, -0.015059545636177063, -0.018823085352778435, -0.022037316113710403, -0.030991442501544952, 0.018233174458146095, 0.05021119862794876, 0.054222021251916885, 0.00932723842561245, -0.00007972479943418875, -0.041108861565589905, 0.02946462109684944, -0.013650558888912201, 0.010213063098490238, -0.0014493857743218541, 0.014491885900497437, 0.013688569888472557, 0.025577658787369728, -0.0055450755171477795, 0.03175051882863045, -0.03089536912739277, -0.029750313609838486, 0.0008111173519864678, -0.052851494401693344, 0.01714765653014183, -0.00658755237236619, -0.011652029119431973, -0.012840870767831802, 0.014155464246869087, 0.046401817351579666, 0.03337990492582321, 0.023143351078033447, 0.03150507062673569, 0.021197345107793808, -0.032415714114904404, 0.019966861233115196, 0.027197781950235367, 0.026695577427744865, 0.011346089653670788, 0.002972859423607588, -0.003251595888286829, -0.01938168704509735, -0.002158940536901355, -0.008728614076972008, -0.00245803059078753, 0.0059128934517502785, -0.003995898179709911, 0.015562792308628559, -0.01671453006565571, 0.014768010936677456, -0.017232494428753853, 0.00014549035404343158, 0.012232786975800991, -0.05390387773513794, -0.013951516710221767, 0.05585315823554993, -0.04374803975224495, 0.0061092618852853775, -0.04196402058005333, 0.016567889600992203, 0.028907878324389458, 0.06114950776100159, -0.05808485671877861, -0.015802469104528427, -0.025787489488720894, 0.0007031328277662396, -0.002929887268692255, 0.013244184665381908, -0.004046386573463678, 0.032769251614809036, -0.032003819942474365, 0.027056481689214706, 0.011541128158569336, -0.028751149773597717, 0.022966202348470688, 0.009518221020698547, 0.02066616714000702, 0.028998425230383873, -0.026637990027666092, 0.003286553081125021, 0.057385239750146866, 0.040335699915885925, 0.05411910638213158, 0.03372448682785034, -0.015246057882905006, 0.05444927513599396, 0.011945311911404133, 0.040586091578006744, 0.02758864499628544, 0.031093789264559746, 0.023547504097223282, 0.041043803095817566, -0.004138941410928965, 0.009224988520145416, -0.021050365641713142, 0.0005747709656134248, 0.04902937263250351, 0.029968583956360817, 0.02363426238298416, 0.009861014783382416, 0.017505187541246414, -0.02715994045138359, -0.048763301223516464, 0.03419780731201172, -0.005031347740441561, 0.01740388385951519, 0.011069602333009243, 0.0008703990024514496, -0.040529731661081314, -0.006227381993085146, 0.026424596086144447, 0.04841916263103485, -0.031898483633995056, -0.021882567554712296, 0.028907518833875656, 0.02854565903544426, -0.0018569480162113905, -0.0059211840853095055, 0.03520715981721878, 0.06778311729431152, 0.03009158931672573, 0.017466643825173378, -0.02153841033577919, -0.019739612936973572, -0.06221337988972664, -0.06408951431512833, -0.0571117103099823, -0.012497445568442345, -0.07693507522344589, -0.021445374935865402, 0.0734892189502716, -0.04099804162979126, 0.07221893966197968, -0.01767350174486637, -0.0019412654219195247, -0.008398267440497875, 0.0006517536821775138, 0.04873450845479965, 0.0740792453289032, 0.06766694784164429, -0.06371194869279861, 0.045120060443878174, 0.013001149520277977, 0.056244056671857834, -0.050631217658519745, -0.008503466844558716, -0.02541041187942028, -0.033980369567871094, 0.038716789335012436, -0.012925962917506695, 0.014026559889316559, -0.02685759775340557, -0.04134736210107803, -0.045362044125795364, -0.002168563660234213, 0.020938584581017494, -0.028310319408774376, 0.008887727744877338, -0.046847324818372726, 0.04541255533695221, 0.038963060826063156, -0.0644514188170433, 0.051531530916690826, 0.03307217359542847, -0.046131912618875504, 0.04614797607064247, 0.016102788969874382, 0.016860177740454674, -0.047263000160455704, 0.03815488889813423, 0.05148937553167343, 0.002817647997289896, 0.004252142272889614, -0.014678041450679302, -0.011186986230313778, 0.007458002306520939, 0.02202575094997883, -0.023128608241677284, -0.04123149439692497, 0.05480240285396576, 0.01019956823438406, -0.06621573865413666, 0.03669474273920059, -0.07699276506900787, -0.01033308357000351, -0.025802776217460632, -0.02219303697347641, 0.06594408303499222, -0.00962764397263527, -0.00012472481466829777, -0.007164096925407648, -0.0178536344319582, -0.02026018686592579, 0.030402041971683502, 0.03674608841538429, -0.016523897647857666, 0.013784688897430897, 0.04095659404993057, 0.011272432282567024, 0.015553699806332588, 0.029531018808484077, -0.030109941959381104, -0.01934763416647911, 0.006531680002808571, -0.009468620643019676, 0.010140519589185715, 0.04870585724711418, 0.009512584656476974, 0.02205929346382618, 0.03384622558951378, -0.03584956005215645, -0.01892516016960144, 0.01912860758602619, 0.024691468104720116, 0.05407090485095978, 0.04198545590043068, -0.02156244032084942, -0.0004021426721010357, -0.049226727336645126, -0.020790312439203262, 0.01141132041811943, 0.013833675533533096, 0.041110504418611526, -0.034651853144168854, 0.03954409435391426, 0.027285750955343246, -0.0367145761847496, 0.05926625803112984, -0.04537932947278023, -0.014837336726486683, 0.017548182979226112, 0.016038890928030014, 0.06037072464823723, -0.035914063453674316, 0.002688812091946602, -0.008660404942929745, 0.012380137108266354, 0.04118619114160538, -0.007082309108227491, 0.03691482171416283, -0.013327484019100666, 0.0007168230367824435, -0.012777878902852535, -0.010821748524904251, 0.01564544253051281, -0.0008032639161683619, -0.04092707112431526, 0.010068477131426334, -0.01702992059290409, -0.0335724763572216, 0.036927372217178345, 0.015237873420119286, 0.026067029684782028, -0.041780516505241394, 0.04023854807019234, 0.013836702331900597, 0.03083898313343525, 0.05830167606472969, -0.032730232924222946, 0.001551839872263372, -0.047307055443525314, 0.022240981459617615, 0.007537506520748138, -0.013186464086174965, -0.03027409315109253, -0.0037519230972975492, -0.06248457729816437, 0.027088766917586327, 0.013634717091917992, -0.03111264854669571, -0.012891490943729877, 0.051588233560323715, 0.016402143985033035, 0.02446395345032215, -0.038973618298769, -0.017756836488842964, -0.016999706625938416, 0.017545437440276146, 0.047468118369579315, -0.07329665124416351, -0.0015582474879920483, -0.031674232333898544, 0.03100154921412468, 0.07113426923751831, -0.01861436851322651, -0.035277288407087326, -0.03672643378376961, 0.017914103344082832, -0.02969154715538025, 0.010596118867397308, 0.05568366125226021, 0.0058328378945589066, 0.016086122021079063, -0.03342031314969063, 0.012895730324089527, 0.04528016597032547, -0.002266813302412629, -0.011305421590805054, -0.01367170363664627, -0.0029011836741119623, -0.01199873723089695, 0.03265002369880676, -0.024037016555666924, -0.01715920865535736, 0.021584896370768547, -0.03586311265826225, 0.037463266402482986, -0.02626475878059864, -0.01797422021627426, 0.012135779485106468, -0.012108789756894112, 0.009150379337370396, 0.016099583357572556, -0.03713613003492355, 0.001057879300788045, -0.006564009934663773, 0.006553127896040678, -0.03900844231247902, -0.0334668792784214, 0.0461994968354702, 0.004467712715268135, -0.018284384161233902, 0.02307099476456642, 0.03630931302905083, -0.015451602637767792, 0.014126746915280819, -0.0076461113058030605, -0.035364262759685516, 0.0325227826833725, -0.007099691778421402, 0.032323308289051056, -0.036833059042692184, -0.04306963086128235, -0.026450950652360916, -0.03736664354801178, 0.04770088195800781, 0.01923287659883499, 0.008075607009232044, -0.02721567638218403, -0.043182652443647385, -0.0023146900348365307, 0.022781310603022575, -0.01424685213714838, -0.0010784142650663853, 0.003243832616135478, -0.01318949181586504, -0.004648594185709953, 0.00742104509845376, 0.007866200059652328, -0.00245619285851717, -0.03741880878806114, 0.005124077200889587, 0.01966567151248455, 0.027263658121228218, 0.007511818315833807, -0.0020240359008312225, -0.029065802693367004, 0.05413373187184334, -0.01068054512143135, -0.01616189070045948, -0.030071638524532318, -0.010821046307682991, -0.0421539731323719, -0.02103414013981819, -0.0421045646071434, -0.006773890927433968, -0.008616970852017403, -0.0011278475867584348, 0.02567547932267189, 0.023252272978425026, 0.003328419290482998, -0.006250317208468914, -0.0548190176486969, 0.05200354754924774, 0.012751471251249313, -0.041981037706136703, -0.010573025792837143, 0.04051385819911957, -0.018124962225556374, 0.013320119120180607, -0.011730902828276157, -0.006425207015126944, -0.06302352994680405, -0.04007205739617348, 0.01798875816166401, -0.03575563803315163, -0.003096841275691986, -0.022991403937339783, -0.015890495851635933, -0.00743439607322216, 0.01210082322359085, -0.017089348286390305, -0.030947918072342873, -0.0025978684425354004, -0.03363647311925888, -0.00854254700243473, -0.04389529302716255, -0.011854597367346287, -0.03055012784898281, -0.04278608039021492, 0.0057031032629311085, 0.037422291934490204, -0.04252232238650322, 0.01508346851915121, -0.0178972315043211, 0.038879819214344025, 0.009196904487907887, 0.01864617131650448, -0.06770127266645432, -0.04092351719737053, -0.006507786922156811, 0.0029122906271368265, -0.006672297604382038, 0.00499953655526042, -0.056088726967573166, 0.03811892494559288, -0.044524602591991425, -0.0008173983660526574, -0.012739124707877636, 0.018951162695884705, -0.010401912033557892, -0.033211953938007355, 0.03500407561659813, -0.014662506990134716, 0.029098069295287132, -0.023162059485912323, 0.055794887244701385, 0.05156051740050316, 0.033573396503925323, -0.016284802928566933, -0.0313328318297863, -0.06698397547006607, -0.06670402735471725, 0.04860201105475426, -0.03974983096122742, 0.0011189942015334964, -0.0017429811414331198, -0.012956853955984116, 0.040978435426950455, -0.01859264075756073, 0.010615884326398373, 0.07521943747997284, 0.03234109655022621, -0.018773043528199196, -0.01727968081831932, 0.007810872048139572, 0.030375054106116295, -0.03559819981455803, 0.010440421290695667, -0.02622961439192295, -0.0327744260430336, 0.005647069774568081, -0.03782334551215172, -0.06136207655072212, -0.03998271003365517, -0.00044899655040353537, 0.054700467735528946, -0.002570080105215311, 0.03272338584065437, -0.036479588598012924, -0.019560638815164566, -0.049216218292713165, 0.042839281260967255, -0.02590753324329853, 0.019896546378731728, 0.06758098304271698, -0.001216260134242475, 0.017243681475520134, -0.0016156575875356793, 0.0022402750328183174, -0.026646409183740616, -0.020936572924256325, 0.062027860432863235, 0.007863538339734077, -0.037590332329273224, 0.021713685244321823, 0.025316042825579643, -0.07187210768461227, -0.06310519576072693, -0.015311753377318382, 0.0005304396036081016, 0.008617068640887737, -0.06165492162108421, 0.01736976020038128, -0.022470029070973396, -0.009937189519405365, -0.0204456839710474, 0.021848537027835846, 0.018165970221161842, 0.0335942842066288, 0.02235368825495243, 0.030836110934615135, -0.05235149711370468, -0.014334036968648434, 0.05485520884394646, -0.012368003837764263, -0.03427088260650635, -0.04416706785559654, -0.0581279955804348, -0.019433148205280304, -0.016396064311265945, 0.026316188275814056, -0.013323609717190266, 0.02667420729994774, 0.020477253943681717, -0.0032354940194636583, 0.0480811670422554, 0.0061106435023248196, 0.012243577279150486, 0.008131555281579494, -0.013633371330797672, -0.05945784971117973, -0.03368523344397545, 0.02683873288333416, -0.011532273143529892, 0.00602687057107687, -0.047257646918296814, 0.013015471398830414, 0.01563527062535286, 0.011591016314923763, -0.039100877940654755, -0.05719223618507385, -0.03497792407870293, -0.06824741512537003, -0.04106016829609871, -0.011855782009661198, -0.037016719579696655, -0.03475206345319748, 0.009660754352807999, 0.012203613296151161, -0.02163051627576351, -0.021439651027321815, -0.00030207750387489796, -0.034397710114717484, -0.0280284620821476, 0.01805175095796585, -0.016986265778541565, -0.0596703477203846, -0.022101204842329025, -0.029629668220877647, -0.006082181353121996, -0.036418478935956955, 0.0072615561075508595, -0.03710247203707695, -0.0027399214450269938, -0.024635473266243935, 0.014699690975248814, -0.013607049360871315, 0.007056725677102804, -0.0320884995162487, -0.041913509368896484, -0.003594635520130396, 0.021082324907183647, -0.008328532800078392, 0.017507731914520264, 0.04054335132241249, 0.005228866823017597, 0.048800088465213776, -0.008963825181126595, -0.01642494462430477, -0.02025693841278553, 0.0011276953155174851, -0.024643417447805405, -0.00809661764651537, -0.041799988597631454, -0.018745845183730125, -0.005200187209993601, -0.03201151639223099, 0.0064285919070243835, -0.010631486773490906, 0.0074327061884105206, 0.008395242504775524, -0.02419152297079563, 0.02035568095743656, 0.04965868964791298, -0.008925890550017357, 0.03659356012940407, -0.024378670379519463, 0.01959230564534664, 0.036488693207502365, 0.0021836920641362667, -0.005875980481505394, 0.04012422636151314, 0.04426960647106171, -0.02637930028140545, 0.007258183788508177, 0.006634306162595749, -0.017949257045984268, 0.028769345954060555, -0.03298985958099365, -0.013710114173591137, -0.03135666623711586, -0.003258248558267951, 0.007928886450827122, 0.04647176340222359, 0.010042006149888039, -0.009170455858111382, 0.03771991282701492, -0.054166827350854874, -0.07687309384346008, 0.02277534082531929, -0.037714749574661255, -0.012452382594347, 0.01681056246161461, -0.03988431766629219, -0.008047303184866905, -0.00863451324403286, -0.03152386471629143, -0.004507613368332386, 0.0034127654507756233, 0.025333860889077187, -0.028291810303926468, 0.02728072740137577, 0.0199505016207695, 0.033866193145513535, -0.054197363555431366, -0.009448721073567867, -0.010579145513474941, 0.04911600053310394, -0.06430774182081223, -0.05388534814119339, -0.020045680925250053, 0.009665400721132755, -0.019742757081985474, -0.0037342743016779423, -0.023726120591163635, 0.006356051657348871, 0.006164622958749533, 0.013005907647311687, -0.012771207839250565, 0.02256212942302227, 0.002723920624703169, 0.058413855731487274, 0.017856480553746223, -0.005881014280021191, -0.009117143228650093, 0.029207367449998856, 0.0059761470183730125, -0.03207126259803772, -0.012306933291256428, 0.03715290129184723, 0.028895186260342598, -0.016714943572878838, 0.044413771480321884, 0.008271613158285618, 0.047999992966651917, -0.017486780881881714, 0.026464270427823067, -0.011642614379525185, 0.021849676966667175, 0.04284670948982239, 0.033129218965768814, -0.004289611242711544, 0.0393822006881237, 0.04427023604512215, -0.002022388158366084, 0.0029383781366050243, 0.032346177846193314, 0.022823406383395195, -0.026136459782719612, -0.0136034544557333, -0.03248076140880585, 0.03866825997829437, -0.0215678121894598, 0.02559676393866539, 0.00783566851168871, -0.018168708309531212, -0.017711369320750237, -0.011848559603095055, -0.037319593131542206, 0.034880511462688446, -0.017306072637438774, 0.0019513494335114956, -0.02221192792057991, 0.00404605595394969, 0.0027444977313280106, 0.043324459344148636, -0.01281878724694252, -0.004978293552994728, 0.031480900943279266, 0.046079088002443314, -0.0003449541109148413, 0.028589166700839996, 0.03224167227745056, 0.023505738005042076, -0.01757466048002243, 0.007088856305927038, 0.04295407980680466, 0.003750099102035165, -0.006797937210649252, -0.022875279188156128, -0.043478116393089294, 0.04778319597244263, -0.06802518665790558, -0.03176238387823105, -0.00045338450581766665, -0.026712557300925255, -0.012523210607469082, -0.05217482149600983, 0.05204399675130844, -0.03399800509214401, 0.005247358698397875, 0.05617605522274971, 0.008408286608755589, -0.008741473779082298, 0.05754498019814491, -0.015056531876325607, 0.04939960315823555, 0.01805719919502735, 0.04234004020690918, -0.011108633130788803, 0.05313163995742798, 0.07386542111635208, -0.052185989916324615, 0.010268567129969597, 0.027504224330186844, -0.005682721268385649, -0.05375586822628975, 0.011212981306016445, -0.05333763733506203, -0.01670442521572113, 0.0026323057245463133, 0.02386762574315071, 0.009540007449686527, 0.03482287749648094, -0.03808623179793358, -0.03675887733697891, 0.026510238647460938, 0.033764246851205826, -0.06127071753144264, 0.012754138559103012, 0.0116360392421484, 0.00094556191470474, 0.008149904198944569, -0.0236203633248806, -0.022899415343999863, -0.004799542482942343, -0.016241488978266716, -0.028945673257112503, 0.02773740142583847, -0.03574856370687485, -0.007628618739545345, -0.01903514750301838, -0.05122576281428337, -0.007584023755043745, -0.020599564537405968, -0.04465165734291077, -0.0197805967181921, 0.05287785828113556, 0.046998195350170135, 0.009918089024722576, 0.006494766101241112, -0.017598317936062813, 0.02312636934220791, 0.03562547639012337, 0.04545504227280617, 0.00610415730625391, 0.0503595732152462, 0.047682564705610275, 0.015162026509642601, 0.017526470124721527, 0.007885553874075413, 0.044378455728292465, -0.031156232580542564, -0.017812782898545265, -0.046247538179159164, 0.03885108232498169, -0.03376803174614906, -0.03134283050894737, 0.008905284106731415, 0.02151820808649063, 0.004288161173462868, -0.016884202137589455, -0.07544872909784317, -0.017660202458500862, -0.031055256724357605, -0.007108412683010101, -0.04775660112500191, 0.025861352682113647, 0.026922287419438362, -0.027160881087183952, 0.013200810179114342, -0.02130858786404133, 0.14733760058879852, 0.04958980157971382, 0.02757944166660309, 0.023652343079447746, 0.009637943468987942, 0.05762966722249985, 0.034730348736047745, -0.011881600134074688, 0.010444823652505875, -0.02629181556403637, 0.041975922882556915, 0.0034830300137400627, 0.028008924797177315, -0.00023041277017910033, 0.02541857585310936, 0.05509733408689499, -0.03998357802629471, 0.015917565673589706, 0.004732835106551647, -0.05419394001364708, -0.02778870053589344, 0.03235885500907898, 0.0017710516694933176, -0.021154917776584625, -0.010941708460450172, 0.020988404750823975, 0.01602112501859665, -0.056162312626838684, -0.04456787928938866, -0.023771286010742188, 0.0037904432974755764, -0.003921596333384514, 0.03420618548989296, -0.004389803856611252, -0.044023334980010986, 0.034937769174575806, 0.011708445847034454, -0.007310757413506508, 0.022457674145698547, 0.02970454841852188, -0.009980003349483013, -0.026560695841908455, 0.002417453331872821, -0.001309985644184053, -0.007966732606291771, 0.03858645632863045, -0.017303520813584328, 0.04712824150919914, 0.03649194538593292, -0.0309844259172678, 0.06492526084184647, -0.015984468162059784, -0.007409038953483105, -0.0011889562010765076, -0.039073601365089417, 0.024083295837044716, -0.022959239780902863, -0.021003246307373047, -0.023008791729807854, 0.008252071216702461, 0.04513822868466377, 0.006502058357000351, -0.04510441794991493, -0.020697660744190216, -0.032510656863451004, 0.029773619025945663, 0.019575344398617744, 0.006879133637994528, -0.01656384766101837, -0.023854633793234825, -0.024063941091299057, -0.005603848025202751, -0.0355813093483448, 0.005506516899913549, 0.031803254038095474, 0.02432163804769516, -0.03526502847671509, 0.03397149220108986, 0.005976326763629913, -0.012381043285131454, 0.013853810727596283, -0.0274773221462965, -0.02901548705995083, 0.0011069057509303093, 0.01632082834839821, 0.037049997597932816, -0.021860647946596146, -0.02622413821518421, -0.05916297808289528, 0.034664321690797806, 0.06143926829099655, 0.04783337563276291, -0.012426081113517284, -0.019665176048874855, -0.012624957598745823 ]
Truthdiggers of the Week: Anonymous Our picks for this week's Truthdiggers are a little unusual in that we don't really know who they are — at least not specifically. But we do know them by their collective, if faceless, alias: Anonymous. And more important, we know them by the artful and provocative acts of cyberpunkery they keep pulling off despite crackdowns and arrests. Anonymous is composed of a team of skilled hackers who are clearly also quite publicity savvy, able to perform feats of culture-jamming both online and off without tipping into silly territory or taking cheap shots at symbols of authority just for the sake of a good prank. (All the same, their pranks tend to be good.) But this week, the highly coveted Truthdigger honor goes to the members of this rogue network — the ranks of which were at least temporarily thinned earlier in the week by a coordinated Interpol sting — for their work in "exposing the global trade in intelligence," as The Guardian put it. More to the point, Anonymous teamed up with WikiLeaks to pass along some 5.5 million emails, news of which began hitting the wires last Sunday, lifted from the servers of the Texas-based private intelligence firm Stratfor. Here's more on that hack-and-leak operation. WikiLeaks said the documents contained details of the inner workings of the private intelligence agency, links between government and private intelligence, and commentary on WikiLeaks itself. "The material contains privileged information about the US government's attacks against Julian Assange and WikiLeaks and Stratfor's own attempts to subvert WikiLeaks," the whistleblower website said. "There are more than 4,000 emails mentioning WikiLeaks or Julian Assange. The emails also expose the revolving door that operates in private intelligence companies in the United States." The email cache is said to contain information on measures taken to track activist and NGO activity for large companies, through media monitoring, and information on the financial sector. The hacking attack on Stratfor is subject to an FBI investigation. Several alleged members of Anonymous have been arrested by authorities in the US and UK as part of investigations. Although some disagree, such as The Christian Science Monitor's Dan Murphy, WikiLeaks' Julian Assange broke down the significance of the Stratfor project thusly. WikiLeaks founder Julian Assange told Reuters: "Here we have a private intelligence firm, relying on informants from the U.S. government, foreign intelligence agencies with questionable reputations and journalists." "What is of grave concern is that the targets of this scrutiny are, among others, activist organizations fighting for a just cause." Good thing there's this group to act as a countervailing force. We'll look forward to further meddling by Anonymous in the international corporate arena in the future. Meanwhile, read and watch more about its other campaigns here, here and here. #anonymous#hack#hacktivism#julian assange#occupy wall street#scientology#spying#stratfor#wikileaks Arizona Secretary of State Confirms Election Fraud During Primary Vote Emma Niles / Truthdig 2015 in Review: Truthdig's Books of the Year VIDEO: News of Anonymous' Online Campaign Against the KKK Takes a Turn (Updated) Befriending the Saudis Highlights U.S. Hypocrisy on Human Rights Sonali Kolhatkar / Truthdig Hacker, Hoaxer, Whistleblower, Spy Peter Richardson / Truthdig 'Sabu' Tells Charlie Rose How He Went From Anonymous Hactivist to FBI Informant Donald Kaufman / Truthdig
[ -0.01435984019190073, -0.025925813242793083, -0.042463093996047974, 0.02249906025826931, -0.01041347999125719, 0.009550060145556927, -0.026984451338648796, 0.017524629831314087, -0.01140629407018423, 0.02654878795146942, 0.05590800195932388, -0.007494861260056496, 0.008914737962186337, -0.027963535860180855, -0.04810434579849243, -0.04335830360651016, -0.020636877045035362, 0.0038549136370420456, 0.03287234529852867, -0.039398059248924255, 0.035804860293865204, -0.005390063859522343, -0.046825189143419266, -0.004988949745893478, -0.00942536722868681, -0.00004857374369748868, 0.03366149961948395, 0.003781470935791731, 0.06704968959093094, 0.07617424428462982, 0.004413963295519352, -0.016846543177962303, 0.02443080209195614, -0.0806698128581047, -0.006726015359163284, -0.018119020387530327, 0.04091370850801468, -0.032154060900211334, -0.04993518069386482, -0.045787930488586426, -0.010445941239595413, -0.0156853087246418, 0.025605419650673866, -0.048694267868995667, -0.021471090614795685, -0.021509775891900063, -0.019745035097002983, 0.0037212108727544546, 0.004925154149532318, -0.0232904814183712, 0.018509987741708755, -0.0030280626378953457, 0.05047769844532013, 0.010059723630547523, 0.0035577877424657345, -0.007035804446786642, 0.01955355517566204, 0.008207147940993309, 0.009626482613384724, 0.008781732991337776, 0.023712128400802612, -0.0095088891685009, 0.041773755103349686, -0.0758838951587677, 0.018646808341145515, 0.010937938466668129, -0.006562481168657541, -0.030892690643668175, 0.00870837364345789, -0.009000931866466999, -0.010051325894892216, 0.003034073393791914, -0.035962872207164764, -0.02056761458516121, -0.009033311158418655, -0.006893537472933531, 0.003648533718660474, 0.015632683411240578, -0.02923070825636387, 0.006782225798815489, 0.011488174088299274, 0.05491466447710991, -0.03551947697997093, 0.042683862149715424, -0.03227868303656578, -0.010890558362007141, 0.015483644790947437, 0.020925305783748627, 0.017239335924386978, -0.0037531319539994, 0.027817130088806152, 0.031756240874528885, -0.02182736061513424, -0.02161496877670288, 0.04425559565424919, 0.030808690935373306, -0.035998906940221786, 0.043848346918821335, -0.008081285282969475, -0.026896851137280464, 0.05900304764509201, 0.022650444880127907, -0.026209382340312004, 0.05972793325781822, -0.014896856620907784, 0.014285523444414139, 0.0008693644194863737, -0.04098132252693176, 0.0017319428734481335, -0.02273562178015709, -0.009075597859919071, -0.007629200350493193, 0.03821730241179466, 0.006702594459056854, -0.010379064828157425, 0.014781089499592781, 0.005511066410690546, 0.039397504180669785, -0.04150394722819328, -0.008283957839012146, -0.02162591554224491, -0.021671663969755173, 0.034579046070575714, -0.011893874034285545, 0.03174479305744171, -0.033906854689121246, -0.025580085813999176, 0.027854839339852333, -0.040317367762327194, -0.010631358250975609, 0.001109632314182818, -0.04228692129254341, -0.010320065543055534, 0.003073733765631914, -0.02895214594900608, 0.01094143744558096, -0.0005677138105966151, 0.018031224608421326, 0.012308700941503048, -0.05970512703061104, 0.022465378046035767, -0.0130236204713583, 0.007256130687892437, 0.10412255674600601, -0.030973205342888832, 0.029866743832826614, -0.0075698490254580975, 0.004239718895405531, -0.016328131780028343, 0.04756638780236244, -0.015719285234808922, -0.0031028734520077705, -0.0006950813112780452, 0.018258538097143173, -0.03544461727142334, -0.01684635505080223, -0.036732010543346405, 0.03485047444701195, 0.03342779353260994, 0.03847990930080414, -0.007364116609096527, 0.03048362396657467, -0.015990598127245903, 0.04670233651995659, -0.013189902529120445, 0.04390348494052887, -0.03102082572877407, -0.03416680917143822, 0.007841741666197777, -0.03433460742235184, 0.01814555749297142, -0.03880633786320686, -0.028912175446748734, 0.008932809345424175, 0.024397658184170723, 0.028976494446396828, 0.010795199312269688, -0.011352908797562122, 0.06868394464254379, 0.05714471638202667, -0.04513906314969063, 0.009177666157484055, -0.0161439199000597, 0.09538627415895462, -0.00892972107976675, 0.00329809682443738, 0.016879528760910034, -0.025061409920454025, -0.030266189947724342, -0.026118552312254906, -0.011937852017581463, 0.03694264218211174, -0.04194061830639839, 0.011451304890215397, 0.03146754950284958, -0.009026112966239452, -0.03987271338701248, 0.016822533681988716, 0.03468094393610954, -0.05771585926413536, -0.011825894005596638, 0.056941017508506775, -0.0046899025328457355, 0.021161450073122978, -0.03305289149284363, -0.0022912565618753433, 0.057585570961236954, 0.08935403823852539, -0.0361068956553936, -0.017538990825414658, 0.079203300178051, 0.0011211455566808581, 0.0022947618272155523, -0.04178103804588318, 0.0024736104533076286, -0.010654320009052753, -0.046375028789043427, 0.05875646322965622, -0.021663803607225418, -0.011762523092329502, 0.008707684464752674, 0.035711366683244705, 0.0030540316365659237, 0.025131845846772194, 0.0006493380642496049, -0.006278990302234888, 0.00333051523193717, 0.06284430623054504, -0.03166447952389717, -0.0036126088816672564, -0.001829706015996635, 0.041028715670108795, 0.013512699864804745, 0.040925346314907074, 0.01694146730005741, -0.006148195825517178, 0.0470036119222641, 0.04048634693026543, -0.0025987757835537195, 0.03537688031792641, -0.027848808094859123, 0.018372731283307076, 0.030864490196108818, 0.01898823492228985, 0.010836527682840824, 0.03432423621416092, -0.013918418437242508, 0.0010233006905764341, -0.03946665674448013, 0.05059363692998886, -0.024258822202682495, 0.05864183232188225, 0.029520513489842415, 0.019057990983128548, -0.06097955256700516, 0.0006073559052310884, 0.05488208308815956, 0.041851598769426346, -0.028244638815522194, 0.002846447518095374, -0.011449999175965786, 0.011672114953398705, -0.020550396293401718, 0.020763501524925232, 0.019809136167168617, 0.025309395045042038, -0.013339300639927387, 0.05143740028142929, -0.018060708418488503, -0.03488155081868172, -0.03313392773270607, -0.04509740322828293, -0.05052708834409714, -0.08121128380298615, -0.06127818301320076, -0.003604581579566002, 0.013700250536203384, -0.034010935574769974, 0.023062689229846, -0.03556321561336517, -0.0033379967790097, -0.003214592579752207, -0.015845097601413727, 0.01520847249776125, 0.004112818278372288, 0.01917327754199505, -0.04389060661196709, 0.04844016209244728, 0.0009767169831320643, 0.017551381140947342, -0.013028034009039402, -0.007930882275104523, -0.010432261973619461, -0.02786446362733841, 0.036153875291347504, 0.0011222297325730324, -0.0014782333746552467, -0.03752771392464638, -0.0420374758541584, -0.04429974779486656, 0.01476084440946579, -0.009494543075561523, 0.017853787168860435, 0.017954474315047264, -0.04180236905813217, 0.029282744973897934, 0.033822957426309586, -0.036728598177433014, 0.07433750480413437, 0.045518264174461365, -0.02659481205046177, 0.043249454349279404, 0.018788157030940056, 0.02601359412074089, -0.05326297879219055, 0.08051954954862595, 0.03379077836871147, -0.007089386228471994, -0.01609267294406891, 0.0037604146637022495, -0.04951046407222748, 0.00583941163495183, -0.0000831089200801216, -0.03667929768562317, -0.04103602096438408, 0.028914786875247955, 0.020479025319218636, -0.07792099565267563, 0.04212939366698265, -0.024806901812553406, -0.05036881938576698, 0.008940526284277439, -0.023833751678466797, 0.012688719667494297, 0.029737703502178192, 0.027707615867257118, -0.01754266768693924, -0.03734438121318817, -0.02063760533928871, 0.011739110574126244, 0.0077792685478925705, -0.038199685513973236, 0.014258730225265026, 0.024520691484212875, -0.011691568419337273, 0.014691464602947235, 0.02676948346197605, -0.005952767562121153, -0.01957937888801098, 0.011001125909388065, 0.02338222786784172, 0.011118942871689796, 0.009844554588198662, 0.03248895704746246, 0.015837155282497406, 0.04958512261509895, -0.030684102326631546, 0.00719273928552866, 0.02316596731543541, -0.008747583255171776, 0.034482456743717194, 0.020367179065942764, -0.0029017243068665266, -0.014039730653166771, -0.04823638126254082, -0.04913853108882904, -0.01684826985001564, 0.009129888378083706, 0.05570176616311073, -0.024342982098460197, 0.046775832772254944, -0.011924470774829388, -0.03193354979157448, 0.05200432613492012, -0.05324402078986168, -0.0054709347896277905, 0.03782288357615471, 0.004634548909962177, 0.031991537660360336, -0.04772080481052399, -0.008727177046239376, -0.03812012821435928, 0.026375669986009598, 0.027684390544891357, -0.015037383884191513, 0.014551584608852863, -0.03392123430967331, -0.025026999413967133, -0.0070919133722782135, -0.019308986142277718, -0.021363383159041405, -0.031371813267469406, -0.011819501407444477, 0.021976303309202194, -0.06470304727554321, -0.05958428606390953, 0.03980356082320213, 0.026278292760252953, 0.060584377497434616, -0.010060714557766914, 0.04828713834285736, 0.024857139214873314, 0.02703062817454338, 0.0647314116358757, -0.012941060587763786, 0.02240406535565853, -0.036066554486751556, 0.05934220552444458, 0.0023836279287934303, -0.040696728974580765, 0.00822999607771635, 0.005941224284470081, -0.02172120474278927, 0.017453046515583992, -0.00010511845903238282, -0.041807785630226135, -0.014616206288337708, 0.006352532655000687, 0.026438133791089058, 0.02700478956103325, -0.04401528462767601, -0.048095621168613434, -0.007922622375190258, 0.012556464411318302, 0.028446918353438377, -0.037005070596933365, 0.0031361973378807306, -0.013660728000104427, 0.03657495230436325, 0.03197130560874939, -0.01339926477521658, -0.05892373248934746, -0.07247980684041977, -0.05659310147166252, -0.055024247616529465, 0.00036303294473327696, 0.03803692385554314, 0.010431402362883091, 0.0047695389948785305, -0.039504002779722214, 0.02598477713763714, 0.015797415748238564, 0.01642409898340702, -0.021857643499970436, -0.001663033850491047, -0.008425507694482803, 0.005645748693495989, 0.025535890832543373, -0.01518595963716507, -0.03359248861670494, 0.029320692643523216, -0.05729425325989723, 0.007331871427595615, -0.02831978350877762, -0.020754924044013023, 0.002353828400373459, 0.01479650940746069, -0.012076013721525669, 0.033094365149736404, 0.00835798867046833, -0.016784535720944405, 0.013712862506508827, 0.04320426657795906, -0.04301217570900917, -0.03423778712749481, 0.05196341127157211, 0.0202752985060215, -0.039326637983322144, 0.02174030989408493, 0.02909111976623535, 0.010859409347176552, 0.0033332151360809803, 0.014181693084537983, -0.04841897636651993, 0.019394543021917343, -0.05408807843923569, 0.001047439523972571, -0.006378416903316975, -0.03531511127948761, 0.004055771045386791, -0.025014521554112434, 0.050448428839445114, 0.013770495541393757, -0.006631871219724417, -0.03347167372703552, -0.04407573118805885, -0.0024123908951878548, 0.015147682279348373, -0.006969075184315443, -0.002129277912899852, -0.011480842716991901, 0.0009889989160001278, -0.006430508568882942, -0.01645611971616745, 0.004151899833232164, 0.02841504104435444, -0.029582461342215538, -0.018307311460375786, 0.0031321453861892223, 0.021143639460206032, 0.023807337507605553, -0.004586727358400822, -0.06104214861989021, 0.004120962228626013, -0.0069318353198468685, -0.0384308286011219, -0.042805563658475876, -0.010801151394844055, -0.011816362850368023, -0.006545522715896368, -0.01201326958835125, -0.0038514318875968456, -0.015344567596912384, 0.017042921856045723, -0.029376020655035973, -0.005393523722887039, 0.01630854234099388, -0.005848206114023924, -0.023512033745646477, 0.04782036319375038, 0.03653035685420036, -0.04773338884115219, 0.01445024088025093, 0.04364289715886116, -0.00647297129034996, 0.010932373814284801, 0.00896780751645565, -0.030936894938349724, -0.04179089143872261, -0.033774349838495255, 0.00044256230466999114, -0.05185067653656006, -0.007805013097822666, -0.05506663769483566, -0.006556442938745022, -0.018275026232004166, 0.0784681960940361, -0.02526876889169216, -0.0005131165962666273, 0.007775053847581148, -0.027016494423151016, -0.0016937776235863566, -0.005564252380281687, 0.012563641183078289, -0.003650351893156767, -0.052172545343637466, 0.0019581392407417297, 0.06453537195920944, -0.006851067300885916, 0.009971896186470985, 0.015153381042182446, 0.018149157986044884, 0.03219292685389519, -0.0022857654839754105, -0.0601683147251606, -0.029147036373615265, 0.010557318106293678, -0.020855411887168884, 0.010829297825694084, -0.006291385740041733, -0.057200971990823746, 0.043109260499477386, -0.030567485839128494, -0.019964728504419327, -0.028066005557775497, -0.011609057895839214, -0.013258228078484535, 0.00784364528954029, 0.06728847324848175, -0.037698160856962204, 0.045253936201334, -0.00990308914333582, 0.023273909464478493, 0.07294903695583344, 0.0008714179275557399, -0.011532776057720184, -0.009623204357922077, -0.027298452332615852, -0.06448367983102798, 0.035221636295318604, -0.020392952486872673, 0.004687529522925615, -0.014223717153072357, -0.020125748589634895, 0.027896136045455933, -0.016925787553191185, 0.029206035658717155, 0.04328132048249245, -0.0075325011275708675, -0.03163902461528778, -0.03112967498600483, 0.012376156635582447, 0.03520653396844864, -0.017135312780737877, 0.0028322336729615927, -0.03720448911190033, -0.01813984103500843, 0.012031357735395432, -0.020214349031448364, -0.014617261476814747, -0.029526585713028908, -0.023565353825688362, 0.06885427981615067, -0.03501807525753975, 0.02480197697877884, -0.027539175003767014, -0.023902568966150284, -0.053449731320142746, 0.0341174453496933, -0.0053141457028687, 0.028176655992865562, 0.0411575622856617, 0.022459043189883232, -0.0031872394029051065, 0.02955944463610649, 0.03855866566300392, -0.014741339720785618, -0.032554350793361664, 0.05559013783931732, 0.001271711429581046, -0.03720918297767639, 0.03706882894039154, 0.04488220065832138, -0.04791373759508133, -0.018338624387979507, -0.016829637810587883, -0.0008515363442711532, 0.003741982625797391, -0.03539889305830002, -0.020450245589017868, -0.020997339859604836, 0.0023513478226959705, -0.02203645370900631, 0.06299499422311783, 0.020738894119858742, 0.03756081685423851, 0.02306838147342205, 0.02174927294254303, -0.048609163612127304, 0.05048434063792229, 0.04698022082448006, -0.021938897669315338, -0.049314748495817184, -0.04222571477293968, -0.0006647950503975153, 0.010129790753126144, 0.015351335518062115, 0.041479554027318954, -0.005046024918556213, 0.020890865474939346, 0.014962962828576565, -0.01815430261194706, 0.04950090870261192, -0.0024298320058733225, -0.016579918563365936, 0.026826338842511177, -0.018525956198573112, -0.05996137484908104, -0.02547982707619667, 0.015690967440605164, -0.02491540089249611, 0.04806465283036232, -0.03247644379734993, 0.014941863715648651, 0.036684539169073105, 0.011196780949831009, -0.028187472373247147, -0.05537163466215134, -0.02269744500517845, -0.00874900259077549, -0.049946706742048264, -0.027563074603676796, -0.011296401731669903, -0.008031506091356277, 0.023039888590574265, -0.012533936649560928, -0.002920503029599786, -0.03548219054937363, -0.018449172377586365, -0.022510472685098648, 0.029453828930854797, -0.04647352918982506, 0.00784600991755724, -0.023861022666096687, -0.04796118289232254, -0.038478732109069824, -0.007769750896841288, -0.041373156011104584, -0.026030482724308968, -0.009323226287961006, 0.035646986216306686, 0.010200285352766514, 0.031134845688939095, 0.019340479746460915, 0.009350684471428394, -0.03997211903333664, -0.04421616345643997, -0.020477576181292534, 0.04918486252427101, -0.0007653339998796582, 0.0187150239944458, 0.019606666639447212, -0.022525152191519737, 0.017999611794948578, -0.014252450317144394, -0.015534748323261738, 0.01078553032130003, 0.023008638992905617, -0.0049005975015461445, 0.03475359082221985, -0.03690313175320625, -0.029575524851679802, -0.03508270904421806, -0.021213531494140625, 0.008334540762007236, -0.03374536335468292, -0.002681439509615302, 0.0270919818431139, -0.04002685472369194, 0.015036853961646557, 0.027174705639481544, 0.007196381688117981, 0.031240001320838928, 0.031760022044181824, 0.04478048160672188, 0.002865091199055314, 0.00849082414060831, 0.03685366362333298, -0.00570956664159894, 0.00959670078009367, -0.02550976350903511, -0.022110063582658768, 0.01282551046460867, 0.006233470048755407, 0.028740089386701584, -0.01052845362573862, -0.06410633027553558, -0.05556092411279678, -0.0067398883402347565, 0.013757574371993542, 0.04224725440144539, 0.0036875742953270674, 0.03250112757086754, 0.0186529029160738, -0.008374028839170933, -0.03856635093688965, 0.01010486762970686, -0.06743831932544708, -0.0002354897587792948, 0.056947484612464905, 0.000573309080209583, 0.013796546496450901, -0.016014371067285538, -0.040670715272426605, -0.016591763123869896, 0.003018143819645047, 0.011790653690695763, -0.015800226479768753, 0.030704740434885025, -0.0066548665054142475, 0.03900304064154625, 0.019337741658091545, 0.008026809431612492, -0.019250040873885155, 0.021993838250637054, -0.040731243789196014, -0.06298714876174927, 0.011380703188478947, 0.055734846740961075, -0.006634264253079891, -0.013936348259449005, -0.004719784017652273, -0.0005494978977367282, 0.01963145099580288, -0.020410209894180298, 0.0318172350525856, 0.027661003172397614, -0.0027154944837093353, 0.036864105612039566, 0.011196513660252094, 0.043127600103616714, -0.0037643974646925926, 0.03163435310125351, 0.007929529994726181, -0.014853544533252716, -0.01893358677625656, 0.029799308627843857, 0.0031833802349865437, -0.01560722291469574, 0.04910244792699814, 0.016019156202673912, 0.05570671707391739, -0.013599558733403683, 0.03967330977320671, -0.037426143884658813, 0.07157142460346222, 0.014401533640921116, 0.03380296006798744, -0.020117487758398056, 0.03452653810381889, 0.05600129812955856, -0.013485241681337357, 0.004819737281650305, 0.011813964694738388, 0.030559783801436424, -0.03727252408862114, -0.018734846264123917, -0.042388916015625, 0.0035741268657147884, 0.008728574961423874, -0.022057686001062393, 0.020178483799099922, -0.02389996498823166, -0.0030563881155103445, -0.026081951335072517, -0.009435409680008888, 0.08713078498840332, -0.04126935824751854, 0.030225487425923347, 0.0011695598950609565, -0.005376799497753382, -0.005001546815037727, 0.05283118784427643, -0.013148732483386993, -0.01931586302816868, 0.029831117019057274, 0.02164815366268158, -0.06617292761802673, 0.037868794053792953, 0.03898562118411064, -0.0020650585647672415, -0.025870677083730698, 0.01011713221669197, 0.021129185333848, 0.0192231647670269, -0.004338381811976433, -0.0017550515476614237, -0.04856523871421814, 0.016486627981066704, -0.038033146411180496, -0.017206499353051186, 0.04142162203788757, -0.036759089678525925, -0.00483570946380496, -0.046073757112026215, 0.0435970313847065, -0.04044562205672264, -0.020060651004314423, 0.015553825534880161, -0.018137741833925247, -0.000739293871447444, 0.020010286942124367, 0.03452429920434952, 0.03865406662225723, 0.010905761271715164, 0.07208885252475739, -0.0010706543689593673, 0.037094198167324066, 0.036492276936769485, -0.010805709287524223, -0.013498094864189625, -0.005222871899604797, 0.017277751117944717, -0.04123096540570259, -0.024220207706093788, -0.03528369963169098, 0.029637204483151436, -0.018050789833068848, 0.010950511321425438, -0.006857866887003183, 0.022226007655262947, 0.03415733948349953, -0.021030563861131668, 0.009294304996728897, 0.04188869521021843, -0.05603419244289398, -0.0032578036189079285, 0.018653785809874535, 0.03734036907553673, -0.003779368009418249, -0.0016250874614343047, 0.008906524628400803, -0.06518656015396118, -0.006047267001122236, -0.03324452042579651, 0.056699614971876144, -0.0057008517906069756, -0.028506705537438393, -0.020283909514546394, -0.05658980831503868, -0.025036687031388283, -0.02194942906498909, -0.03449711576104164, -0.040953557938337326, 0.04634905979037285, 0.06161434203386307, 0.009350031614303589, 0.009511496871709824, -0.005473226774483919, 0.008258435875177383, 0.05829750746488571, 0.05586358159780502, -0.009945559315383434, 0.05552668869495392, 0.04466461017727852, 0.0026070941239595413, 0.026881033554673195, -0.0017518087988719344, 0.02438874915242195, -0.036714278161525726, -0.025563262403011322, -0.042143482714891434, 0.003419353626668453, -0.006036703009158373, -0.05273924767971039, 0.034885283559560776, 0.0501239188015461, 0.030342647805809975, -0.047132458537817, -0.06856343150138855, 0.008329243399202824, -0.06440983712673187, 0.0004962408565916121, -0.02091287076473236, 0.027971090748906136, 0.0012367669260129333, 0.0108659528195858, 0.006262258626520634, -0.0691092237830162, 0.14739415049552917, 0.03519009053707123, 0.004133616574108601, -0.00500606931746006, 0.0342072956264019, 0.05537232756614685, 0.020978905260562897, -0.018066084012389183, 0.016639651730656624, -0.04114461690187454, 0.04297870397567749, -0.03694658353924751, 0.02934575453400612, 0.007427803706377745, 0.027209948748350143, 0.06257210671901703, -0.028232278302311897, -0.021439457312226295, -0.0002913767530117184, -0.05919506400823593, -0.04368656501173973, 0.01666749268770218, 0.005606514867395163, 0.03012930601835251, -0.025947922840714455, 0.030857151374220848, 0.06150677055120468, -0.02591778337955475, 0.002262416761368513, -0.024554315954446793, 0.009052683599293232, -0.01772117242217064, 0.039922017604112625, -0.0319930762052536, -0.03456778824329376, 0.03831977769732475, -0.015188835561275482, -0.030167244374752045, 0.02624163217842579, 0.025356929749250412, 0.011170251294970512, 0.011919834651052952, 0.04330553859472275, -0.04959901049733162, 0.0007554925978183746, 0.013705849647521973, -0.050329383462667465, -0.011508467607200146, 0.030781788751482964, -0.031182287260890007, 0.06634975224733353, -0.02996402606368065, 0.03575330227613449, -0.034715909510850906, -0.03840257227420807, 0.019348077476024628, 0.02482936717569828, -0.0296463780105114, 0.011107298545539379, 0.009614451788365841, 0.004762956406921148, 0.007101403549313545, -0.010057494044303894, -0.005816214252263308, -0.030301053076982498, 0.025879455730319023, 0.017977317795157433, -0.0029205777682363987, -0.00887336116284132, -0.017270609736442566, -0.05314575880765915, -0.013447464443743229, -0.04204156994819641, -0.009693481028079987, 0.00865188054740429, 0.0026285205967724323, 0.00841719750314951, 0.027824927121400833, 0.0023562232963740826, -0.0005152452504262328, -0.004754094406962395, -0.04962555319070816, -0.024662693962454796, -0.0005615580012090504, 0.026641687378287315, 0.019455481320619583, -0.03216789290308952, -0.02226806990802288, -0.027073610574007034, 0.048066191375255585, 0.04216484725475311, -0.025479454547166824, -0.02488456666469574, -0.01654936745762825, 0.009827043861150742 ]
The handful of Marines who share their stories from Iraq and Afghanistan are haunted by what they saw and participated in. For one veteran of the Baghdad invasion, torment over the deaths of Iraqi civilians leads him to seek out their surviving relatives. Another, suffering from survivor's guilt, recalls watching a friend burn to death. Lives turn inward; marriages falter. The compulsory extension of tours of duty has exposed contemporary soldiers to unprecedented levels of combat, but the film shows too that mental health problems for returning troops are nothing new. With a snippet from John Huston's long-suppressed 1946 documentary "Let There Be Light," Donahue nods to a short-lived psychiatric treatment program for returning World War II soldiers, one that attempted to break through the stigma against seeking help. The film argues for a dedicated Behavioral Health Corps for the armed forces, and highlights private programs whose healing solutions aren't based on prescription pads. With the same clarity and fluency he brought to far sunnier material in "Casting By," Donahue pinpoints the devastating intersection of personal trauma and institutional neglect in an age of perpetual war.
[ 0.014547542668879032, -0.042814843356609344, -0.011669451370835304, 0.0439954549074173, -0.02340291440486908, -0.06905510276556015, -0.041059460490942, 0.018018949776887894, 0.011602634564042091, 0.0030528006609529257, 0.010365166701376438, 0.0001230750058311969, 0.00001654266998230014, -0.03419513627886772, 0.013552888296544552, -0.004705675877630711, -0.007804151624441147, 0.00014563075092155486, -0.037268828600645065, -0.002849860582500696, -0.011274839751422405, 0.010114269331097603, -0.04133765026926994, -0.020130867138504982, -0.005335729103535414, 0.025605229660868645, 0.01890997588634491, -0.01757875643670559, 0.03616002947092056, 0.04088025912642479, -0.007181741297245026, -0.03148658946156502, 0.028644774109125137, -0.06810157746076584, -0.006441719364374876, -0.01701732538640499, 0.017117833718657494, -0.06089138239622116, -0.02169293351471424, -0.034757111221551895, 0.017109233886003494, -0.03586811572313309, 0.055842719972133636, -0.032186828553676605, -0.06926564872264862, 0.012470770627260208, -0.007965260185301304, -0.049417659640312195, 0.020624125376343727, -0.02283322438597679, -0.016307037323713303, -0.02232583798468113, 0.024397309869527817, 0.011603940278291702, -0.00037994570448063314, 0.02408900484442711, 0.015218901447951794, 0.007585715968161821, 0.0002229183301096782, 0.016264313831925392, -0.00015932480164337903, -0.010182453319430351, -0.008288235403597355, -0.044513095170259476, 0.007634159177541733, 0.017442595213651657, 0.0205242782831192, 0.007719573564827442, 0.048840221017599106, 0.02301563136279583, -0.03411046043038368, -0.034808725118637085, -0.018722357228398323, -0.020775670185685158, 0.018242737278342247, -0.0236809179186821, -0.019079765304923058, -0.012612986378371716, -0.0021746393758803606, -0.008623623289167881, 0.04824802279472351, 0.036235909909009933, 0.015499459579586983, 0.025987017899751663, -0.04138500615954399, -0.007084082346409559, 0.0014488277956843376, 0.019173162057995796, 0.013464611954987049, -0.0006419091951102018, 0.01661481149494648, 0.049275293946266174, 0.01443609781563282, -0.007907280698418617, 0.02030361443758011, 0.024281935766339302, -0.01704988442361355, 0.03269750624895096, 0.01274882536381483, -0.013325678184628487, 0.0336485281586647, 0.03759944811463356, -0.01936347410082817, 0.03206897899508476, -0.020442551001906395, -0.020077887922525406, 0.013517932966351509, -0.02893836796283722, -0.028672365471720695, -0.04968240484595299, 0.008523060940206051, -0.023826297372579575, -0.011243593879044056, -0.00010641411790857092, -0.011482106521725655, 0.03496681526303291, 0.004314541816711426, 0.04290737584233284, -0.04660295695066452, 0.057484764605760574, 0.03052426688373089, 0.009297799319028854, 0.027423620223999023, -0.03447602316737175, 0.041179358959198, -0.02869473770260811, -0.036909736692905426, 0.051190607249736786, -0.023180238902568817, -0.027334064245224, -0.0036834150087088346, -0.06689979881048203, 0.03631608933210373, 0.01041101012378931, -0.018131820484995842, -0.01079326868057251, 0.011824198067188263, -0.012755579315125942, 0.020900797098875046, -0.051378630101680756, 0.022249136120080948, 0.017185881733894348, 0.010707080364227295, 0.08351052552461624, 0.02922532521188259, 0.041234340518713, -0.019692437723279, 0.00920043420046568, -0.03005741536617279, 0.03526270017027855, -0.03951616212725639, 0.019793236628174782, 0.004068246576935053, -0.0004562237299978733, 0.001777177327312529, -0.0027821804396808147, -0.009918831288814545, 0.030486036092042923, 0.0036148293875157833, 0.03340156748890877, -0.01524585671722889, -0.01949990727007389, -0.007440473884344101, 0.02598160319030285, 0.0037637155037373304, 0.04981962963938713, -0.03242270275950432, -0.030059047043323517, -0.015383119694888592, -0.023507418110966682, 0.024753369390964508, 0.017342688515782356, -0.013342292979359627, 0.014038024470210075, 0.024518946185708046, 0.05198228359222412, 0.07681931555271149, 0.0015113640110939741, 0.046399373561143875, 0.0034186935517936945, -0.05006423220038414, -0.0010882305214181542, -0.0027750544250011444, 0.06752857565879822, 0.013795064762234688, -0.017269650474190712, -0.009872718714177608, -0.0413171611726284, -0.06267371028661728, -0.022755378857254982, -0.018970970064401627, 0.03255508467555046, -0.028958668932318687, 0.016086101531982422, 0.03970584273338318, 0.023332344368100166, -0.015171817503869534, -0.02482737973332405, -0.004967633634805679, -0.01938723959028721, -0.04755706340074539, 0.03510431572794914, -0.06514736264944077, 0.026288151741027832, -0.013797715306282043, 0.015382996760308743, 0.06698693335056305, 0.07661446183919907, -0.02084013633430004, -0.013567280024290085, 0.05246797949075699, 0.020148983225226402, -0.007919417694211006, -0.0376976914703846, 0.01087279710918665, -0.013636664487421513, -0.028368733823299408, 0.040534812957048416, -0.03965604677796364, -0.004726865794509649, -0.015117575414478779, 0.003790633985772729, 0.014209138229489326, 0.02862907387316227, -0.014573649503290653, -0.017345966771245003, 0.004988283850252628, 0.046122293919324875, -0.03129448741674423, -0.031754832714796066, -0.014996306039392948, 0.009080219082534313, 0.017650440335273743, 0.05533096566796303, 0.03240412846207619, 0.012604589574038982, 0.05306052044034004, 0.04759044945240021, -0.005394189618527889, 0.0027523641474545, 0.024865824729204178, -0.012060443870723248, 0.07407703995704651, 0.036069657653570175, -0.03724425286054611, -0.009680171497166157, -0.032914597541093826, -0.039080481976270676, -0.01004062406718731, 0.03134340047836304, 0.006063126493245363, 0.04385234788060188, 0.03358373045921326, 0.017570950090885162, -0.03982003778219223, -0.005778323393315077, 0.051601920276880264, 0.05535701662302017, -0.01673770882189274, -0.006437085103243589, -0.0036353885661810637, 0.03212515637278557, 0.015164201147854328, -0.00038965590647421777, 0.05487055331468582, 0.022059762850403786, 0.010615420527756214, 0.02569778449833393, 0.007294144947081804, -0.05115566402673721, -0.008644649758934975, -0.0727950781583786, -0.04064660519361496, -0.027485786005854607, -0.04127812013030052, 0.0414811410009861, 0.03974626213312149, -0.02592645399272442, 0.013120947405695915, 0.027543794363737106, -0.027615193277597427, -0.038461294025182724, -0.014259310439229012, 0.04480304196476936, -0.0018336258362978697, -0.0010012300917878747, -0.05184931308031082, 0.04348765313625336, -0.015010899864137173, 0.032817237079143524, 0.007532983087003231, -0.02031252533197403, -0.004087711684405804, -0.025661541149020195, 0.023850973695516586, -0.0355522446334362, -0.031200379133224487, -0.020609555765986443, -0.06928528100252151, -0.05240362882614136, 0.020748913288116455, -0.013592849485576153, -0.008449122309684753, 0.003339245682582259, -0.034987397491931915, 0.03831984102725983, 0.02173011563718319, -0.025492828339338303, 0.028429580852389336, 0.030288105830550194, -0.03552129492163658, 0.06422844529151917, 0.01708996668457985, 0.041878797113895416, -0.04616377502679825, 0.06514329463243484, 0.06608950346708298, 0.01592189446091652, -0.019060546532273293, -0.013507002964615822, -0.030066128820180893, 0.009528381749987602, 0.016094105318188667, -0.023492584004998207, -0.05785931646823883, 0.03559796139597893, 0.049315858632326126, -0.04527973756194115, 0.02263866923749447, -0.05461902543902397, -0.04093891754746437, 0.010181623511016369, -0.04822881892323494, 0.04024811461567879, 0.003236308926716447, 0.04714389145374298, -0.011724788695573807, -0.03601895272731781, -0.006943941581994295, 0.035391323268413544, 0.05592770129442215, -0.02266649156808853, -0.014240321703255177, 0.013887985609471798, -0.004640094470232725, 0.032222844660282135, 0.004466785117983818, -0.016758041456341743, 0.022445162758231163, 0.012644454836845398, 0.013000023551285267, 0.01026151329278946, 0.017229588702321053, 0.008674271404743195, 0.018457842990756035, 0.05846942588686943, -0.019602736458182335, -0.009673303924500942, -0.004269559867680073, -0.016861556097865105, 0.028078719973564148, -0.005719351582229137, -0.022981470450758934, 0.022424815222620964, -0.03342577815055847, -0.06468746811151505, 0.019770996645092964, 0.007769293617457151, 0.053644176572561264, -0.04886441305279732, 0.08240102976560593, -0.01088071707636118, -0.030993647873401642, 0.03770344704389572, -0.04112940654158592, -0.0024306762497872114, 0.04948153346776962, -0.04902144521474838, 0.034754589200019836, -0.07547949999570847, -0.018505942076444626, 0.0005134259117767215, 0.05241795629262924, 0.03450095281004906, -0.02155313454568386, 0.011254992336034775, -0.05324714258313179, -0.015225308947265148, -0.011190114542841911, -0.025701330974698067, -0.02176404558122158, -0.0035463327076286077, -0.012708201073110104, -0.017459964379668236, -0.05233408883213997, -0.04767997935414314, 0.0044875480234622955, 0.024646487087011337, 0.03604193404316902, -0.02334577776491642, 0.050741419196128845, -0.009843139909207821, 0.015423277392983437, 0.0636046901345253, 0.013577577657997608, -0.017542976886034012, -0.021219445392489433, 0.02219059132039547, 0.016632311046123505, -0.0357540138065815, -0.002671475987881422, 0.00238673179410398, -0.02707003802061081, 0.057219479233026505, 0.010484048165380955, -0.01808038540184498, -0.03655384108424187, 0.05691919103264809, 0.01832219772040844, 0.013321365229785442, -0.0004813186533283442, 0.003666474251076579, 0.009056227281689644, 0.02089887112379074, 0.013565613888204098, -0.04813208431005478, 0.013980609364807606, -0.026399847120046616, 0.06573861837387085, 0.01916293427348137, 0.0033273750450462103, -0.06919769942760468, -0.021558938547968864, -0.032301485538482666, -0.045338716357946396, 0.01992092840373516, 0.0017873281612992287, 0.022634297609329224, 0.023171186447143555, -0.002182524651288986, 0.029369208961725235, 0.02942986600100994, -0.0007970836013555527, 0.004612098913639784, -0.011507563292980194, 0.029058625921607018, 0.02460285648703575, 0.019045786932110786, -0.003607937367632985, -0.04636905714869499, 0.012443885207176208, -0.046922218054533005, 0.005984087008982897, 0.029532719403505325, -0.02699272893369198, 0.046684630215168, 0.01630115881562233, -0.006632712669670582, 0.013913361355662346, -0.013809490017592907, -0.006752154789865017, -0.014460712671279907, 0.050753798335790634, -0.03927937522530556, -0.013984410092234612, 0.03584738448262215, 0.00690454849973321, -0.01783081702888012, 0.025262052193284035, 0.01573779433965683, -0.004038901999592781, 0.01595328003168106, -0.0011746620293706656, -0.05012938752770424, 0.03157522529363632, -0.04210909828543663, 0.028475875034928322, -0.021450364962220192, -0.039265140891075134, 0.006889738142490387, -0.02095661871135235, 0.023279324173927307, -0.028354818001389503, 0.008326117880642414, -0.05511128902435303, -0.04052058979868889, -0.02416328713297844, 0.018518943339586258, 0.01389750000089407, -0.017829731106758118, 0.01520808320492506, -0.028015613555908203, -0.03507411107420921, -0.015489298850297928, -0.004515808075666428, -0.01658657006919384, -0.031132811680436134, -0.027024706825613976, -0.018309079110622406, 0.005831771995872259, 0.020560385659337044, -0.019452497363090515, -0.045121029019355774, -0.012616327032446861, 0.01921938918530941, -0.024855779483914375, -0.023107241839170456, -0.011163135059177876, -0.02632206492125988, -0.00686409417539835, -0.04646705090999603, 0.004996346775442362, -0.0341554656624794, 0.03852901607751846, 0.03216716647148132, -0.00018294209439773113, -0.00398454861715436, -0.015299645252525806, -0.007428692188113928, 0.03623354807496071, -0.0024125948548316956, -0.024624453857541084, -0.00869069155305624, 0.000397680327296257, -0.033026404678821564, 0.031106604263186455, -0.0325198657810688, -0.02547384798526764, -0.047633323818445206, -0.05762867256999016, 0.026072759181261063, -0.028637902811169624, -0.031313568353652954, -0.024315228685736656, -0.02902977541089058, 0.010222557000815868, 0.023904185742139816, 0.03657684475183487, -0.022486042231321335, -0.018461432307958603, -0.01978011056780815, -0.0007828937377780676, 0.01342458464205265, -0.023572245612740517, 0.006034827325493097, -0.03070930950343609, -0.011545145884156227, 0.08127233386039734, 0.0031039188615977764, 0.031202146783471107, -0.0168769434094429, -0.00333447870798409, 0.018231960013508797, 0.00580580672249198, -0.02778162807226181, -0.03935211896896362, -0.016348693519830704, -0.05027049034833908, 0.025922320783138275, 0.011088118888437748, -0.024152718484401703, 0.042184486985206604, -0.03342678025364876, -0.007137017790228128, -0.03593040257692337, -0.008246385492384434, -0.014577394351363182, -0.00277240970171988, 0.05396594852209091, -0.018466373905539513, 0.010126195847988129, -0.02917511947453022, 0.05904565006494522, 0.057350918650627136, 0.013736560940742493, -0.02512063831090927, -0.0164678655564785, -0.01321866363286972, -0.05178152397274971, 0.021288659423589706, -0.029903916642069817, -0.01674509420990944, -0.004446323961019516, -0.013988072052598, 0.06352047622203827, -0.02736668474972248, 0.03888562321662903, 0.048902712762355804, -0.03475085273385048, -0.047478072345256805, -0.04848894104361534, 0.02629989944398403, 0.03424758091568947, 0.001281693228520453, -0.012938302010297775, -0.015557645820081234, -0.029354561120271683, -0.011354397051036358, -0.02683916874229908, 0.013174273073673248, -0.039699018001556396, -0.022520894184708595, 0.05789404734969139, -0.024127058684825897, 0.053383681923151016, 0.031670693308115005, -0.021358685567975044, -0.041483063250780106, 0.039203375577926636, 0.02343553863465786, 0.02317487820982933, 0.04145560413599014, 0.0056388601660728455, -0.026679212227463722, 0.00018495367839932442, 0.019534718245267868, 0.009471059776842594, -0.03205850347876549, 0.06276097148656845, -0.02829495631158352, -0.07741037011146545, 0.03026934154331684, 0.020027386024594307, -0.05425415560603142, -0.04233941808342934, -0.005842822603881359, 0.030261781066656113, 0.004564161412417889, -0.060128580778837204, -0.017714092507958412, -0.017143845558166504, 0.008898722939193249, 0.00585596077144146, 0.03172619640827179, 0.002279718639329076, 0.0364312119781971, 0.011550999246537685, -0.009675761684775352, -0.046731650829315186, 0.04999692738056183, 0.010505646467208862, -0.0004148413136135787, -0.05781066045165062, -0.02711646631360054, -0.016189007088541985, -0.02524258755147457, 0.0030648522078990936, 0.036681804805994034, -0.006760984659194946, 0.008530444465577602, 0.03568817675113678, -0.0026776124723255634, 0.05323350057005882, 0.023095419630408287, -0.011233044788241386, -0.00746616255491972, -0.03552771359682083, -0.04694541543722153, -0.01317610964179039, 0.027439411729574203, 0.014430033974349499, 0.04383496195077896, -0.0326652005314827, 0.0015576471341773868, 0.03645480424165726, 0.02658906579017639, 0.004675248172134161, -0.05642404034733772, -0.06254467368125916, -0.05147777497768402, -0.061680957674980164, 0.017777813598513603, -0.0069326963275671005, -0.01910248212516308, 0.0023661607410758734, 0.015896709635853767, -0.040602315217256546, 0.002498229732736945, -0.013369998894631863, -0.03082680143415928, -0.009675874374806881, -0.02321438491344452, 0.033226098865270615, -0.013776399195194244, -0.010560523718595505, -0.027980169281363487, -0.009500192478299141, 0.01833387464284897, 0.0011029442539438605, -0.02368740551173687, 0.03816300630569458, -0.03730524703860283, 0.02007262036204338, 0.010885430499911308, 0.008184799924492836, 0.0009517942671664059, -0.05013291910290718, 0.037683598697185516, 0.06656663864850998, -0.012051476165652275, 0.03784047067165375, 0.035634491592645645, -0.03645874187350273, 0.024304233491420746, 0.012252982705831528, -0.015483646653592587, -0.027548285201191902, 0.03546483814716339, -0.003657609224319458, 0.021767642349004745, -0.039835311472415924, -0.01202792301774025, -0.011842303909361362, -0.00901935063302517, 0.040011003613471985, 0.0022837503347545862, 0.00462524127215147, -0.009248674847185612, -0.016839053481817245, 0.03315289691090584, 0.0371323861181736, 0.00007786916103214025, 0.035092055797576904, -0.004947654902935028, 0.03299136832356453, 0.0374738834798336, 0.020026247948408127, 0.02672239951789379, 0.00031015294371172786, 0.02144351415336132, -0.04533221572637558, -0.005520353093743324, -0.0041781035251915455, -0.007481871172785759, 0.03590772673487663, -0.058767493814229965, -0.049418166279792786, -0.002533566439524293, -0.01438487134873867, -0.011577467434108257, 0.04214103892445564, -0.01318631786853075, 0.004131790716201067, 0.0356576070189476, -0.04700889438390732, -0.046951357275247574, -0.0353059284389019, -0.0656748116016388, -0.009919855743646622, 0.04901111498475075, -0.036938685923814774, -0.016605880111455917, -0.01711066998541355, -0.03588736057281494, 0.014047352597117424, -0.01669657602906227, -0.007138554938137531, -0.028950098901987076, 0.04394183307886124, -0.01717841997742653, 0.05680903419852257, -0.014624967239797115, 0.0007516471669077873, 0.03563150018453598, 0.02254384569823742, -0.05738626420497894, -0.041717030107975006, -0.00853160209953785, 0.017344726249575615, 0.009040080942213535, -0.0035114316269755363, -0.007209399249404669, -0.018836338073015213, -0.024008886888623238, 0.005899024661630392, 0.016827255487442017, -0.0006236007902771235, 0.03300699591636658, 0.03930801525712013, 0.04871927574276924, -0.01732989028096199, -0.017702683806419373, 0.012507257051765919, 0.004128389526158571, -0.02918892726302147, -0.051913950592279434, 0.04571007937192917, 0.051263272762298584, -0.0231931172311306, 0.032990265637636185, 0.011499308049678802, 0.02547834813594818, -0.042775750160217285, 0.033601243048906326, 0.010348689742386341, 0.034784555435180664, 0.04650698974728584, 0.024406837299466133, -0.0001938658970175311, 0.026769110932946205, 0.011615223251283169, 0.002352505922317505, -0.0014319627080112696, 0.0364723764359951, 0.020070472732186317, -0.03853321075439453, -0.025273522362113, -0.03926124796271324, 0.007690625265240669, 0.027708282694220543, -0.004103414248675108, 0.014715044759213924, -0.050187848508358, -0.009884249418973923, -0.012378722429275513, -0.009135161526501179, 0.07609608769416809, -0.013171776197850704, 0.010930377058684826, 0.005210517439991236, -0.01707947626709938, 0.0029787318781018257, 0.06476765125989914, 0.004093213938176632, 0.04567774012684822, 0.03380686044692993, 0.024420496076345444, -0.042782798409461975, 0.04314013943076134, 0.008502821438014507, -0.007105554454028606, -0.03889765217900276, 0.004136212170124054, 0.04526910185813904, -0.016672253608703613, -0.02469564974308014, -0.002972983056679368, -0.038861941546201706, 0.014596854336559772, -0.012917828746140003, -0.02035110630095005, 0.03281169384717941, -0.03454401716589928, -0.013100705109536648, -0.04056185483932495, 0.057629358023405075, -0.07026416063308716, -0.022749803960323334, 0.017964977771043777, 0.02498736046254635, 0.015586672350764275, 0.03411836922168732, -0.00481618195772171, 0.0787300392985344, -0.02870561182498932, 0.057061873376369476, 0.007792318239808083, 0.02517835423350334, 0.07629840821027756, -0.06274044513702393, -0.03982780501246452, 0.02351534366607666, 0.02076142467558384, -0.05276470258831978, -0.020934754982590675, -0.03461580350995064, -0.0156986303627491, -0.042757466435432434, -0.001170925796031952, 0.010001652874052525, 0.03701853007078171, 0.004164891317486763, -0.029321840032935143, 0.010922619141638279, 0.014792023226618767, -0.0367567241191864, 0.0025161104276776314, 0.003961899783462286, 0.018675697967410088, 0.03561519458889961, 0.00586999487131834, -0.052958037704229355, -0.026451783254742622, 0.016513966023921967, -0.027136361226439476, 0.06815602630376816, -0.007374323904514313, -0.005351599305868149, -0.03712247312068939, -0.022565772756934166, -0.012816403061151505, 0.0038913998287171125, -0.026353981345891953, -0.023333994671702385, 0.053141530603170395, 0.05074552074074745, 0.003140605753287673, 0.017867829650640488, -0.03736913576722145, -0.032342251390218735, 0.051102980971336365, 0.04815677925944328, 0.0060167196206748486, 0.07671809196472168, 0.029208557680249214, -0.025028258562088013, 0.01486008707433939, -0.012167838402092457, 0.04126876965165138, -0.0016473322175443172, -0.014015167020261288, -0.014627057127654552, 0.00546703115105629, -0.003218273399397731, -0.04298815131187439, 0.028929077088832855, 0.010232754051685333, 0.015034561976790428, -0.012112629599869251, -0.08171851187944412, -0.020899463444948196, -0.0131551343947649, 0.0051722656935453415, -0.05642278119921684, 0.004522206261754036, -0.0047358241863548756, -0.0028442409820854664, -0.020235629752278328, -0.04108012095093727, 0.1753450483083725, 0.05172248184680939, 0.03794633597135544, -0.007450023200362921, -0.011339356191456318, 0.0628751590847969, 0.014306499622762203, 0.0013992589665576816, 0.008335447870194912, -0.0394168421626091, 0.03273140266537666, 0.00283799902535975, 0.021692071110010147, 0.026645531877875328, 0.030801786109805107, 0.048699066042900085, -0.0313742533326149, 0.003729266580194235, 0.01595209538936615, -0.046478062868118286, -0.038332514464855194, 0.03476858511567116, 0.009342527016997337, 0.01852823980152607, -0.027082277461886406, -0.004841723013669252, 0.04966606944799423, -0.03310377523303032, -0.010937133803963661, -0.016874240711331367, -0.00850987620651722, -0.039131730794906616, 0.026471290737390518, -0.056170228868722916, -0.019076034426689148, 0.04159083962440491, 0.01302673202008009, -0.04007093235850334, 0.012834119610488415, -0.004191491287201643, -0.058432359248399734, 0.01812209188938141, 0.0063662161119282246, -0.016455113887786865, -0.01810801401734352, 0.041533585637807846, -0.04501664265990257, -0.0030465025920420885, 0.014570293016731739, -0.019146641716361046, 0.07771507650613785, -0.0663905069231987, 0.027193943038582802, -0.00004398844612296671, -0.00907817855477333, 0.013487166725099087, 0.02444743551313877, -0.003322513308376074, -0.017800480127334595, 0.012556451372802258, 0.03171417489647865, 0.023642247542738914, 0.0032419846393167973, -0.002680585253983736, 0.031523991376161575, 0.01978982612490654, 0.019924599677324295, -0.00945413950830698, -0.00005840132143930532, -0.025320066139101982, -0.031823787838220596, 0.007039095275104046, -0.006325246766209602, -0.020952053368091583, 0.024774644523859024, 0.015624716877937317, 0.00919265951961279, 0.017968475818634033, -0.011046069674193859, -0.02586550824344158, -0.04035528004169464, -0.060015659779310226, 0.0008894785423763096, 0.005320449825376272, 0.011720757931470871, 0.026409601792693138, -0.017533523961901665, -0.027237623929977417, -0.06668795645236969, 0.02790139801800251, 0.033747706562280655, 0.022199846804142, -0.011155765503644943, 0.03468063846230507, 0.0030182760674506426 ]
*please make your reservation by all means until the day before the arrival date if you want to leave your luggage here from 11:00 to 16:00 because the entrance door is closed this period. Also, you have to pay an additional 200 yen when you want to leave your luggage before 16:00. ●There's no cancellation fee up to 8 days before arrival. ●The dormitory room may have the movement of the room by a day when there are the reservations of all dormitory room. A newly-built guest house opened on August 1, 2011. The first guesthouse with a bar space in Sendai. Conveniently located 15 minutes from the JR Sendai station by taxi, and 5 minutes from the Nigatake Station on the Senseki Line by foot. JR Tohoku Main Line, Higashi Sendai Station Get on the Tohoku Main line, and get off at the Higashi Sendai station (1 station, about 5 minutes). This is a wonderful hostel. The people are very friendly and the place is nice and clean. They offer a set meal dinner every night for ¥700 that focuses on fresh and local foods and is always delicious. They also have beer and liquor for sale, but let you bring in your own if you prefer. I definitely recommend this hostel to anyone staying in Sendai. I had so much fun staying at Umebachi! Every night pretty much all the guests and the staff gathered in the common area and just hanged out. The dinner they offer is also very delicious! Thank you! Staff are just lovely! They serve dinner for 700 yen with all the guests and friends of the staff which allows for great cultural exchanges. Be warned that most guests staying here are japanese (as is the staff) so it can be a bit difficult if you don't know some basic japanese phrases. The staff are really friendly and make the effort to talk to you in English. They make dinner every night which you can have for the good price of 700 yen, and if you do not want what they are making do not let that stop you from joining them with the chatter and laughter of the place. We loved our time there and real want to go back. It can be tricky to find if you use GPS google maps as it will take you in circles away from the location. It was pretty laid back I was only here a single night to crash but staff was really nice. Not far from the Rakuten Baseball Stadium if you're looking to watch a game. Very friendly staff, free breakfast and available dinner were very good. Slightly difficult to find, but got there eventually! Unfortunately, some of the other guests were a tad noisy, which slightly spoiled my stay. Be warned, most of the guests are Japanese, so if you don't speak the language you may have a hard time. Uncomfortable bedding situation, also overpriced for what you get. Breakfast is a couple pieces of bread, and after not sleeping all night because of guests waking up early and the hard beds, I was refused to be given breakfast after being 45 mins late to it. You can stay for free in Sendai with Kodo, much better stay, find him on Couchsurfer!
[ -0.015136961825191975, 0.00648506497964263, 0.00016022748604882509, -0.004100303165614605, -0.016310598701238632, 0.014528302475810051, -0.002637445228174329, 0.03736850991845131, 0.012275625951588154, 0.010637043975293636, 0.04796069860458374, 0.020683562383055687, 0.014130545780062675, -0.05912415683269501, -0.03163382038474083, -0.018450284376740456, -0.03420707583427429, -0.03479800000786781, -0.02440699189901352, -0.013872564770281315, 0.013762814924120903, -0.003839686280116439, -0.04677949845790863, -0.017669036984443665, -0.02268160879611969, 0.03795758634805679, 0.021205637603998184, -0.012304302304983139, 0.04252508282661438, 0.04337213560938835, -0.015166728757321835, -0.01583254709839821, 0.05156147852540016, -0.02544463984668255, -0.009957103058695793, -0.03385372459888458, 0.03182300552725792, -0.024942977353930473, -0.013986133970320225, -0.03207673877477646, 0.00816875696182251, -0.0208127424120903, 0.04892241582274437, -0.0019464503275230527, -0.042732737958431244, -0.003013372654095292, -0.038993000984191895, -0.012833981774747372, 0.026058075949549675, -0.04164576902985573, 0.024926111102104187, -0.007791046053171158, 0.035904135555028915, 0.02387380413711071, -0.009505919180810452, -0.01186368241906166, -0.028783967718482018, -0.04142498970031738, -0.02471551112830639, 0.03884636238217354, 0.012956486083567142, -0.021415209397673607, 0.024271776899695396, -0.05852024629712105, 0.014479688368737698, 0.021688634529709816, 0.005807759705930948, -0.024269454181194305, 0.008345185779035091, -0.011988312937319279, 0.008604977279901505, 0.0032321992330253124, -0.03006923757493496, -0.008378189988434315, -0.010815284214913845, 0.007102292962372303, 0.008725867606699467, -0.006687792018055916, -0.01419406570494175, 0.012890724465250969, 0.012761076912283897, 0.008350427262485027, 0.015926560387015343, 0.018585436046123505, -0.06019182503223419, -0.026573380455374718, 0.01293169055134058, -0.004683749750256538, 0.019530050456523895, 0.0021695184987038374, -0.010449342429637909, 0.04223037511110306, 0.028166377916932106, -0.023768913000822067, 0.05699697881937027, 0.02573247067630291, -0.05415342003107071, 0.03608980029821396, 0.012563902884721756, -0.004269874654710293, 0.020398063585162163, 0.009965113364160061, -0.02592090517282486, 0.03536676615476608, -0.023629605770111084, -0.012027634307742119, 0.003676840802654624, -0.011558955535292625, -0.02140791155397892, -0.024440711364150047, 0.008702004328370094, -0.04661847651004791, 0.0016182772815227509, -0.01639576442539692, -0.012272108346223831, 0.05566825717687607, -0.018580881878733635, 0.007409278303384781, -0.043712224811315536, 0.01603592000901699, 0.03443010896444321, -0.0010298271663486958, 0.04146716743707657, 0.008189200423657894, 0.03064240887761116, -0.030824482440948486, -0.01650778017938137, 0.06549696624279022, -0.02977888286113739, -0.02794642373919487, 0.03230750560760498, -0.0317373163998127, -0.034210819751024246, 0.023829404264688492, -0.01086460892111063, 0.0012093997793272138, -0.018215976655483246, 0.02739623747766018, 0.035078782588243484, -0.06330838054418564, 0.04950888827443123, 0.017010625451803207, 0.00988010410219431, 0.11984475702047348, 0.004377853125333786, 0.01430847030133009, -0.012793849222362041, 0.0027314017061144114, -0.022372672334313393, 0.02326616272330284, -0.02801358699798584, 0.018489638343453407, -0.004517459310591221, 0.022146379575133324, 0.013826138339936733, 0.011125098913908005, -0.00949062593281269, 0.02987159788608551, -0.008587425574660301, 0.031017258763313293, 0.002450120635330677, 0.01705748960375786, -0.03357131406664848, 0.03210749104619026, 0.009997565299272537, 0.048771414905786514, -0.046131741255521774, 0.01073607336729765, 0.021140888333320618, -0.04557103291153908, -0.0207177996635437, 0.007659961935132742, -0.0034223555121570826, 0.03223469480872154, 0.014781642705202103, 0.05641411989927292, 0.031409867107868195, 0.001380402478389442, 0.042188312858343124, 0.015793178230524063, -0.06777285039424896, 0.0016385961789637804, -0.014525544829666615, 0.03985109180212021, 0.03641589358448982, 0.0007336707203648984, 0.03185056149959564, -0.03580060601234436, -0.02522418648004532, -0.011893398128449917, 0.004146504681557417, 0.0249580517411232, -0.0384686104953289, 0.04127829149365425, 0.013617629185318947, 0.026889322325587273, -0.03869450464844704, -0.0038393244612962008, -0.006140582263469696, -0.050014860928058624, -0.021827109158039093, 0.050879351794719696, -0.02005866728723049, 0.05553637817502022, 0.01535790879279375, -0.056618642061948776, 0.022347481921315193, 0.05910906940698624, -0.023475494235754013, 0.017616599798202515, 0.02794533781707287, 0.02163098007440567, -0.03232395276427269, -0.0066377646289765835, 0.005982196889817715, -0.006963767576962709, -0.029498741030693054, 0.04306422173976898, -0.025323955342173576, 0.011852665804326534, -0.00034760998096317053, 0.005202939733862877, -0.0027865529991686344, 0.026112593710422516, -0.014469054527580738, 0.014426225796341896, -0.006951506249606609, 0.03353176638484001, -0.0007973301107995212, 0.00013210657925810665, -0.024058237671852112, 0.033076513558626175, 0.041304461658000946, 0.07395780086517334, 0.04471985995769501, -0.010796681977808475, 0.046425607055425644, 0.042354099452495575, -0.00602547824382782, 0.00896918773651123, -0.007214183919131756, -0.005774090997874737, 0.036548878997564316, 0.02733812853693962, -0.01828046515583992, 0.01153926458209753, -0.0171628650277853, -0.028129050508141518, -0.023469170555472374, 0.026512717828154564, -0.00978051032871008, 0.031725749373435974, 0.016640743240714073, 0.043856181204319, -0.01785813458263874, -0.010975257493555546, 0.029683556407690048, 0.05446409061551094, -0.016070133075118065, -0.024815576151013374, -0.004144994542002678, -0.008326771669089794, -0.028663592413067818, 0.003903568722307682, 0.03095226362347603, 0.0469001941382885, -0.014161447994410992, -0.002144478727132082, 0.013857257552444935, -0.039098966866731644, -0.015516340732574463, -0.03595052286982536, -0.0390474908053875, -0.040930118411779404, -0.03972763940691948, -0.02677782252430916, 0.06578108668327332, -0.03665584698319435, 0.03840680792927742, 0.00653421925380826, -0.016266880556941032, -0.018450777977705002, -0.01825556345283985, 0.06270796805620193, 0.026083815842866898, 0.04228353500366211, -0.025158435106277466, 0.026114771142601967, -0.007356636226177216, 0.023832906037569046, -0.049227289855480194, -0.01945778913795948, -0.005155534949153662, -0.008164582774043083, 0.032913148403167725, 0.002291604410856962, -0.021796509623527527, 0.021158521994948387, -0.04321989044547081, -0.04849201813340187, 0.01258664671331644, 0.00018277230265084654, -0.004072943236678839, -0.014430531300604343, -0.03759554773569107, 0.056071095168590546, 0.0192645825445652, 0.0038490083534270525, 0.0446489192545414, 0.041283126920461655, -0.026204373687505722, 0.024293243885040283, 0.005343708675354719, -0.0024525951594114304, -0.04474833607673645, 0.035146646201610565, 0.039544880390167236, 0.0038915977347642183, -0.026451699435710907, -0.0290147066116333, -0.04584537073969841, -0.004872635006904602, 0.015634331852197647, -0.01099083200097084, -0.0008231078973039985, 0.022802995517849922, 0.012108519673347473, -0.061454057693481445, 0.048785269260406494, -0.06424921751022339, -0.03368936851620674, -0.018548090010881424, -0.024402078241109848, 0.028730938211083412, 0.012165232561528683, 0.05317703261971474, -0.014254014939069748, -0.04433099552989006, 0.021418966352939606, 0.018747001886367798, 0.06518620997667313, -0.02018372155725956, 0.023264599964022636, 0.023121986538171768, -0.02639906480908394, 0.014216238632798195, 0.02988537959754467, -0.04676889628171921, -0.02956484444439411, -0.0037530886474996805, -0.0112278051674366, 0.025346873328089714, 0.008261609822511673, 0.039349012076854706, 0.010847989469766617, 0.06763366609811783, -0.02541046403348446, 0.0025962651707232, -0.0059331865049898624, 0.03860024735331535, -0.0006397665711119771, 0.012286090292036533, 0.02197631075978279, -0.01805402897298336, 0.004733365029096603, -0.044752780348062515, 0.030627572908997536, 0.024746045470237732, 0.045376893132925034, -0.06497414410114288, 0.07256665080785751, -0.015803655609488487, -0.0439104363322258, 0.0245051346719265, -0.05325261130928993, -0.019341394305229187, 0.055238254368305206, -0.002504285890609026, 0.006670152768492699, -0.020843543112277985, 0.0030838532838970423, -0.02476576156914234, 0.01683715730905533, 0.015450185164809227, -0.009920932352542877, 0.021510588005185127, -0.036855652928352356, -0.02470477670431137, -0.01977630890905857, -0.01513619814068079, -0.0121417585760355, 0.002079735742881894, 0.012503262609243393, -0.004334716126322746, -0.05220538750290871, -0.04127233847975731, 0.025083938613533974, 0.032644834369421005, 0.055711835622787476, -0.030780911445617676, 0.027968397364020348, 0.03984082117676735, 0.016954330727458, 0.02693326771259308, -0.004522504284977913, -0.0018787013832479715, -0.022944578900933266, 0.04554718732833862, 0.01930656097829342, -0.014558852650225163, -0.04598625749349594, -0.03194582834839821, -0.03175453096628189, 0.011974412947893143, -0.010645002126693726, -0.00044786036596633494, -0.05043181777000427, 0.026017170399427414, -0.017248088493943214, 0.022138433530926704, -0.024071531370282173, -0.010222985409200191, -0.001815128605812788, 0.050951581448316574, 0.038419097661972046, -0.04220154881477356, -0.0068531339056789875, -0.05415942519903183, 0.05374690517783165, 0.0634697750210762, -0.013066878542304039, -0.08343162387609482, -0.024079693481326103, -0.006938548758625984, -0.03368175029754639, 0.012371997348964214, 0.07295212149620056, -0.01896956004202366, -0.013921032659709454, -0.03262164443731308, 0.03918337821960449, 0.052782971411943436, -0.005831054411828518, 0.010149417445063591, -0.026772987097501755, 0.003259928897023201, -0.009270072914659977, 0.028095729649066925, -0.02993086725473404, -0.04702857509255409, 0.012608233839273453, -0.05406874418258667, -0.0003437864070292562, -0.018840916454792023, -0.01807221956551075, 0.019161028787493706, 0.0008222227334044874, 0.026358546689152718, 0.043850190937519073, -0.020999889820814133, 0.00180098379496485, -0.01743393950164318, 0.024651844054460526, -0.021152904257178307, -0.04175431281328201, 0.02716086432337761, 0.002175083849579096, -0.04282079637050629, 0.01683318242430687, 0.034272681921720505, -0.027548132464289665, -0.010542494244873524, 0.05337759479880333, -0.029933571815490723, 0.03932109475135803, -0.03240222483873367, 0.04016406834125519, 0.011283794417977333, -0.02216818742454052, 0.05230378732085228, -0.041251491755247116, 0.03654353693127632, 0.025905564427375793, -0.006586561910808086, -0.022536246106028557, -0.05233586207032204, -0.0012298689689487219, -0.004276444669812918, -0.016585668548941612, 0.024263625964522362, 0.023591434583067894, -0.02306847833096981, -0.013721583411097527, 0.01714480109512806, 0.005329705309122801, -0.0035399182233959436, -0.018421415239572525, 0.0178937166929245, -0.002281832741573453, 0.014682503417134285, 0.007622031960636377, 0.0025046051014214754, -0.013197575695812702, 0.015210856683552265, -0.006483279634267092, -0.037333376705646515, -0.05139969661831856, -0.004575406201183796, -0.01098194345831871, -0.012340603396296501, -0.022169018164277077, 0.007724020630121231, -0.016854070127010345, -0.005498189479112625, 0.030527787283062935, 0.018666114658117294, 0.026940548792481422, -0.012731337919831276, -0.03137390315532684, 0.03402058780193329, 0.03232767432928085, -0.04053127393126488, -0.0083810118958354, -0.004489555489271879, -0.018146665766835213, 0.03257342427968979, 0.007561773527413607, -0.02211058884859085, -0.06509388983249664, -0.0877174660563469, 0.007939494214951992, -0.0397394560277462, -0.03358127549290657, -0.06362200528383255, -0.04228862375020981, -0.0470997579395771, 0.008849646896123886, 0.01810350827872753, -0.00019182541291229427, 0.012316062115132809, -0.03902437537908554, 0.018773356452584267, -0.0151121336966753, -0.005205772817134857, -0.026033395901322365, 0.017767759039998055, -0.015317704528570175, 0.04920365661382675, 0.004306752700358629, 0.038012467324733734, 0.015804821625351906, 0.020413706079125404, 0.012330404482781887, -0.02649063430726528, -0.055374715477228165, -0.05827627703547478, -0.015488599427044392, -0.0010488841217011213, -0.024411283433437347, 0.008061297237873077, -0.03217582777142525, 0.06767167150974274, -0.04730478301644325, -0.008087900467216969, -0.043247781693935394, -0.01190569531172514, -0.015958331525325775, 0.026822350919246674, 0.04699449986219406, -0.012450731359422207, 0.013121838681399822, -0.01668848656117916, 0.07049205899238586, 0.0377902127802372, -0.012761469930410385, -0.011942973360419273, -0.05560789257287979, -0.06087922304868698, -0.0409272238612175, 0.060385506600141525, -0.03925419971346855, -0.014437832869589329, -0.02572733163833618, 0.03268664702773094, 0.03971697762608528, -0.005886389408260584, 0.022234952077269554, 0.07876382023096085, -0.03880873695015907, 0.009986186400055885, -0.04274556413292885, 0.054292138665914536, 0.011994291096925735, 0.000374526105588302, -0.004049491602927446, -0.03595719859004021, -0.00901771243661642, 0.02532992511987686, -0.021393300965428352, -0.037073396146297455, -0.0664014145731926, -0.011430731974542141, 0.044181302189826965, -0.016439298167824745, 0.04240395873785019, 0.0023620815481990576, -0.06782054901123047, -0.019527263939380646, 0.047832805663347244, 0.02863883040845394, -0.026081059128046036, 0.04591130092740059, -0.020351553335785866, -0.015544588677585125, 0.006060619372874498, -0.00212325481697917, 0.0018700340297073126, -0.04367007315158844, 0.07016804069280624, 0.004005546681582928, -0.05375102907419205, 0.0048448555171489716, 0.04607006162405014, -0.04373520612716675, -0.03073270432651043, 0.0011201348388567567, 0.010003211908042431, 0.00041492944001220167, -0.028189562261104584, -0.0050577945075929165, -0.011452911421656609, -0.004640449304133654, 0.02369786612689495, 0.021072160452604294, 0.0038479012437164783, 0.027099400758743286, 0.023887140676379204, 0.02657877467572689, -0.030000589787960052, 0.011295176111161709, 0.02645721100270748, 0.01128849945962429, -0.02021992951631546, -0.023533161729574203, -0.02880430594086647, -0.008128541521728039, 0.006012586876749992, 0.03522201254963875, -0.02962477132678032, 0.005057404283434153, 0.024681037291884422, 0.001817804528400302, 0.08083061128854752, 0.019372018054127693, 0.008994019590318203, 0.0090551245957613, -0.02931799367070198, -0.055773407220840454, -0.029200298711657524, 0.012320250272750854, -0.018393022939562798, 0.028850052505731583, -0.0006554630817845464, 0.01795871928334236, 0.026461750268936157, 0.0073679368942976, 0.004289028234779835, -0.07266610860824585, -0.007790591102093458, -0.0341794490814209, -0.034105002880096436, -0.046631380915641785, -0.012098172679543495, 0.01869259402155876, 0.016701404005289078, 0.0031894235871732235, -0.04790015146136284, 0.007091429550200701, 0.01908150687813759, 0.004285219591110945, 0.01716078445315361, -0.01899026520550251, 0.011033467017114162, -0.05182530730962753, -0.07599663734436035, -0.022326121106743813, 0.001185305416584015, 0.006288825999945402, 0.004238951951265335, -0.018510108813643456, 0.03127673640847206, -0.03267952799797058, 0.01189107820391655, 0.016398563981056213, 0.0358639657497406, 0.0089693833142519, -0.035335540771484375, 0.018414504826068878, 0.029565146192908287, 0.042133454233407974, 0.014516107738018036, -0.0012218179181218147, -0.002877894090488553, 0.016674350947141647, -0.015032398514449596, -0.018044516444206238, -0.020386993885040283, -0.01758802868425846, 0.037713080644607544, -0.010836941190063953, -0.035421520471572876, -0.008245466277003288, 0.009479928761720657, -0.041225679218769073, 0.01759897544980049, -0.02269548736512661, -0.020426789298653603, 0.015713345259428024, -0.012167106382548809, 0.011133109219372272, 0.08022814989089966, 0.0016866863006725907, 0.04193529114127159, -0.00786209013313055, 0.0220814011991024, 0.008605506271123886, 0.0018887229962274432, 0.006234424654394388, 0.018549038097262383, 0.029456404969096184, -0.02773384563624859, -0.004680771380662918, 0.010530653409659863, -0.02632339857518673, 0.0604289174079895, -0.046431321650743484, -0.04582125321030617, -0.03560268133878708, -0.01396113820374012, -0.002518625231459737, 0.029143178835511208, 0.022936610504984856, -0.0106368288397789, 0.044948991388082504, -0.03934299200773239, -0.04374299198389053, -0.0005531577626243234, -0.06528690457344055, -0.030782828107476234, 0.017983168363571167, -0.030230659991502762, -0.02015826851129532, -0.03349510207772255, -0.031372327357530594, 0.03694818913936615, -0.0018384705763310194, -0.006166852079331875, -0.008051134645938873, 0.017037581652402878, 0.007280356250703335, 0.05726878345012665, -0.02192041464149952, -0.0146029032766819, 0.02150934375822544, 0.04414400830864906, -0.022342421114444733, -0.04840634763240814, 0.037899795919656754, 0.014558058232069016, 0.0020899882074445486, -0.018791163340210915, -0.004015668760985136, 0.03282582759857178, 0.007730097509920597, -0.019948482513427734, 0.004612283781170845, 0.022608349099755287, -0.01999390684068203, 0.026591826230287552, -0.008993959985673428, -0.0232559647411108, -0.035168178379535675, 0.0098112178966403, -0.0019006984075531363, -0.041530728340148926, -0.02861584909260273, 0.03321317583322525, 0.03693768382072449, -0.012472078204154968, 0.05101155489683151, -0.0053237322717905045, 0.047219786792993546, -0.025061294436454773, 0.032397154718637466, -0.011909282766282558, 0.004567116033285856, 0.04195274040102959, 0.010955811478197575, -0.011787986382842064, 0.057625722140073776, 0.03276193514466286, 0.0019066686509177089, -0.006448912434279919, 0.06853346526622772, 0.003945964388549328, -0.052733685821294785, 0.0033752783201634884, -0.01920071244239807, 0.014025751501321793, -0.009558521211147308, -0.023394685238599777, 0.00022430974058806896, -0.02748158574104309, -0.003526891814544797, -0.02679496444761753, -0.020581530407071114, 0.03916251286864281, -0.021591557189822197, 0.047477882355451584, -0.01505472045391798, -0.015453596599400043, -0.005647436715662479, 0.020910829305648804, -0.006152804475277662, -0.002052064286544919, 0.028056900948286057, 0.011157534085214138, -0.0159665085375309, 0.049602217972278595, 0.002462304662913084, 0.021613117307424545, -0.034392379224300385, 0.011731871403753757, 0.0038885516114532948, -0.028941743075847626, -0.022684048861265182, -0.02301572449505329, -0.0459519661962986, 0.023683486506342888, -0.03630412369966507, -0.0061032394878566265, 0.017774242907762527, -0.04869861155748367, -0.00468344334512949, -0.05568939074873924, -0.006730192340910435, -0.0639340803027153, -0.0009925176855176687, 0.02450304850935936, 0.01610122248530388, -0.005802977830171585, 0.05869395658373833, 0.0005518383695743978, 0.030677547678351402, 0.022154133766889572, 0.035889480262994766, -0.0023627846967428923, 0.012757434509694576, 0.05985412746667862, -0.05879689380526543, -0.03694131225347519, 0.00557320611551404, -0.0023987244348973036, -0.051251478493213654, -0.03192963823676109, -0.023977188393473625, -0.008407903835177422, -0.02815844863653183, -0.01907568797469139, -0.021554656326770782, 0.040437962859869, -0.011937654577195644, -0.051581621170043945, 0.014589632861316204, -0.007176967803388834, -0.05647529289126396, 0.02576988749206066, 0.025085365399718285, 0.061665210872888565, -0.03942621126770973, -0.029350757598876953, -0.04784173145890236, -0.03063894249498844, -0.024502791464328766, -0.05037275701761246, 0.009395578876137733, -0.01592855341732502, -0.020108722150325775, -0.055614668875932693, -0.021139957010746002, -0.01149772573262453, 0.0023716147989034653, -0.04292478412389755, -0.03914320468902588, 0.04880925640463829, 0.058009885251522064, -0.012623614631593227, 0.018989505246281624, -0.03572969138622284, 0.0008040792308747768, 0.04600349813699722, 0.08905931562185287, 0.012020545080304146, 0.028281906619668007, 0.016408829018473625, -0.006215602625161409, 0.03268606588244438, -0.022688526660203934, 0.03441494703292847, -0.0004604184359777719, -0.005601215176284313, 0.012878021225333214, 0.0032112961634993553, -0.017775194719433784, -0.05275272950530052, 0.014987844042479992, 0.011442268267273903, 0.007250052876770496, 0.010822233743965626, -0.08094694465398788, -0.04509285092353821, -0.053673237562179565, 0.013449141755700111, -0.03641139343380928, 0.0460854098200798, 0.03551594540476799, -0.002482249867171049, -0.02628565952181816, -0.0756516084074974, 0.14919139444828033, 0.05656703934073448, 0.02901053987443447, -0.001578252762556076, 0.009094759821891785, 0.06025245040655136, 0.007693099789321423, -0.008939096704125404, -0.0006412985967472196, -0.013828829862177372, 0.05362435802817345, -0.0112600177526474, 0.039438605308532715, 0.025168156251311302, 0.006471657194197178, 0.050729162991046906, -0.025705037638545036, 0.037326596677303314, 0.020400363951921463, -0.03874141350388527, -0.0433921255171299, -0.008322864770889282, 0.03048405423760414, 0.0393681637942791, -0.004496790003031492, 0.04963931441307068, 0.011736894026398659, -0.056060273200273514, -0.03201514109969139, -0.038798246532678604, 0.02744629979133606, -0.04447878897190094, 0.04612986743450165, 0.03664354234933853, -0.04741007834672928, 0.046189919114112854, 0.030290892347693443, -0.03497921675443649, -0.0032202890142798424, -0.011502706445753574, -0.027548400685191154, -0.006923221051692963, 0.05525914579629898, -0.04898525029420853, 0.045901063829660416, 0.027321644127368927, -0.03707626461982727, 0.015031038783490658, 0.02708657830953598, -0.0669105276465416, 0.060311947017908096, -0.006034398917108774, 0.02566888928413391, -0.000017545988157507963, -0.046809613704681396, -0.007279376033693552, 0.04456278309226036, -0.023651069030165672, 0.002328039612621069, 0.004472511354833841, 0.04937577247619629, 0.01890956237912178, -0.03367101401090622, -0.025100436061620712, -0.031198415905237198, 0.05044199526309967, -0.0022040095645934343, 0.037194397300481796, -0.01750929281115532, -0.009251047857105732, -0.007864689454436302, -0.0006812391220591962, -0.003348212456330657, -0.015261158347129822, 0.04491458833217621, 0.045283399522304535, -0.02721412479877472, 0.012866185978055, 0.03343574330210686, -0.009081600233912468, 0.0008264356292784214, -0.04027758911252022, -0.01932517997920513, 0.005479311104863882, 0.041713304817676544, 0.06677157431840897, -0.044929154217243195, -0.05467551201581955, -0.03220798820257187, 0.06408213078975677, 0.05266987159848213, 0.041433464735746384, -0.027877382934093475, 0.007445256691426039, -0.017438717186450958 ]
A much requested topic, and one that can be quite challenging....even for the fashion obsessed like me, is how to build a stylish yet appropriate work wardrobe. This is certainly a topic that will become a weekly installment. It is simply too much to cover in one post. So, let's get started! I think the basis for a great work wardrobe starts with a few staples. The first of which is a fabulous black sheath dress. (Or, if you're anything like me, a few different classic black sheaths.) It's always great to have these basic to fall back on when you just don't feel like pulling it all together. I am not, however, suggesting that you throw on that black dress with black pumps and a cardigan. That is not eye-catching enough for you, lovely reader! Instead merely use it as a base on which to layer something with a little flair. If your dress is the appropriate length (to the knee if you are on the taller side or right above the knee if you're on the petite side), then you have creative license to add some excitement! Start out with a great motorcycle jacket, statement necklace and some not-so-basic black pumps. Contrasting the classic with something unexpected is the first key to keeping your work wardrobe exciting!
[ 0.008564988151192665, -0.0012380894040688872, -0.02567681297659874, -0.013455737382173538, -0.029383867979049683, 0.00990438461303711, -0.0015932874521240592, 0.024021916091442108, 0.03593948110938072, 0.029648277908563614, 0.03256351873278618, 0.028119733557105064, 0.04220827668905258, -0.02031344175338745, 0.012667338363826275, 0.011674081906676292, -0.015025624074041843, -0.029070697724819183, -0.01105522457510233, 0.026478257030248642, -0.013479432091116905, -0.008502812124788761, -0.091392882168293, -0.015127342194318771, -0.020087700337171555, 0.04573708772659302, 0.01718945801258087, -0.03838132694363594, 0.0600423589348793, 0.0752042829990387, -0.02848847024142742, -0.013489222154021263, 0.025894807651638985, -0.06435967981815338, -0.039939191192388535, -0.026394831016659737, 0.03870285302400589, -0.0385272316634655, -0.043305542320013046, -0.018640650436282158, 0.006604327354580164, -0.02552209235727787, 0.01590876281261444, -0.04579954594373703, -0.02611091546714306, -0.0072156572714447975, 0.01968642696738243, -0.024050265550613403, 0.02490009367465973, -0.050445958971977234, 0.025613900274038315, -0.013026900589466095, -0.027405524626374245, 0.02241983264684677, 0.020846741273999214, 0.0464152954518795, -0.004482015501707792, -0.0070473384112119675, -0.0032519667875021696, 0.021527808159589767, -0.007967797107994556, 0.004347743932157755, 0.02820497378706932, -0.06188630312681198, 0.01920436881482601, 0.03846396505832672, -0.01452851016074419, -0.0012348946183919907, -0.014463959261775017, -0.012248479761183262, -0.009021617472171783, 0.01579195074737072, 0.006486259866505861, 0.009888363070786, -0.0105950478464365, 0.007361934520304203, 0.0090088602155447, 0.020357424393296242, -0.001321657095104456, 0.004598754923790693, 0.020367516204714775, 0.06689032167196274, -0.017673103138804436, 0.02214157022535801, -0.06744148582220078, 0.014603419229388237, -0.03765019774436951, 0.026207925751805305, 0.011441925540566444, -0.0069635906256735325, 0.025610802695155144, 0.03876469284296036, -0.013005991466343403, 0.003859110875055194, 0.04322505742311478, 0.0502031184732914, -0.034469082951545715, -0.0003344359574839473, 0.010538364760577679, 0.026564015075564384, -0.0068109105341136456, 0.025248825550079346, 0.0058401585556566715, 0.031870756298303604, -0.028702637180685997, 0.003660712856799364, 0.020162442699074745, -0.05666608735918999, -0.011368406936526299, -0.02065199241042137, -0.004335600882768631, -0.036386534571647644, 0.024598492309451103, 0.020734647288918495, -0.0023457857314497232, 0.03448697179555893, 0.03244096413254738, 0.03533123806118965, -0.031287264078855515, 0.018681881949305534, 0.011760933324694633, 0.007745715323835611, 0.030773838981986046, -0.028685258701443672, -0.004677061457186937, -0.027589062228798866, -0.040399618446826935, 0.0638485699892044, -0.02585255354642868, 0.010503299534320831, -0.019059211015701294, -0.029657641425728798, 0.012827225029468536, 0.02562798373401165, -0.01176314614713192, 0.004902621731162071, -0.02535487711429596, 0.05212532728910446, 0.00500986073166132, -0.0605512410402298, 0.04701119288802147, 0.020833954215049744, 0.015137477777898312, 0.06557685881853104, 0.041335348039865494, 0.03481760993599892, 0.019236797466874123, -0.001648521050810814, -0.043623801320791245, 0.03694000840187073, -0.0031263157725334167, 0.033371370285749435, -0.018715305253863335, 0.007156511768698692, -0.012761499732732773, -0.017369773238897324, 0.009408391080796719, -0.022842049598693848, 0.03232341259717941, 0.04625566676259041, -0.03597103804349899, 0.010356713086366653, -0.012099380604922771, 0.032870855182409286, -0.01784832775592804, 0.02280275523662567, -0.0326150543987751, 0.0036657596938312054, -0.011326340958476067, -0.04946262389421463, -0.015674257650971413, 0.0016663335263729095, -0.004606655333191156, 0.009833145886659622, 0.02607220597565174, 0.04227880388498306, 0.02104443870484829, -0.0035773394629359245, 0.02198411151766777, 0.05177156999707222, -0.037465695291757584, 0.003566392930224538, -0.007933557033538818, 0.07328806072473526, 0.017881907522678375, -0.0207305196672678, 0.012223657220602036, -0.018923338502645493, -0.0475553497672081, -0.035005588084459305, -0.010921486653387547, 0.008755767717957497, -0.02448263019323349, 0.029755849391222, 0.01671540178358555, 0.0005823310348205268, -0.013973494991660118, -0.00750122731551528, -0.002473097527399659, -0.04940393939614296, -0.023714393377304077, 0.05625493451952934, -0.033551935106515884, 0.03932133689522743, 0.0004762242315337062, -0.024646513164043427, 0.023546067997813225, 0.04887385293841362, -0.04358082264661789, -0.013666126877069473, 0.028232717886567116, 0.026649221777915955, -0.005749781150370836, -0.010898645967245102, -0.014438565820455551, -0.009106089361011982, -0.030524378642439842, 0.03875049203634262, -0.03319206461310387, -0.004775673616677523, 0.003802461549639702, 0.0032137162052094936, 0.03820374608039856, 0.0366479828953743, -0.021602913737297058, 0.0006842723814770579, 0.018933158367872238, 0.053827013820409775, 0.009498541243374348, 0.016761761158704758, -0.019471529871225357, 0.05941816791892052, 0.04235037416219711, 0.03158332034945488, 0.04713229462504387, 0.027927173301577568, 0.04015710577368736, 0.0397673137485981, 0.005608879961073399, 0.0348392054438591, -0.0005018532392568886, -0.0028461706824600697, 0.011915409937500954, 0.0430353507399559, -0.024784861132502556, 0.03064531832933426, -0.0030111996456980705, -0.0148600609973073, -0.008433196693658829, 0.011938515119254589, -0.02192692831158638, 0.020182056352496147, 0.028229260817170143, 0.03779859468340874, -0.04306410253047943, -0.006716351956129074, 0.029560238122940063, 0.06936172395944595, 0.007322503719478846, 0.0024232526775449514, 0.014442321844398975, 0.03318113461136818, -0.02305212989449501, 0.031532928347587585, 0.039277948439121246, 0.013556906953454018, 0.029865654185414314, 0.03536566346883774, -0.012396461330354214, -0.012688914313912392, -0.049325812608003616, -0.035957153886556625, -0.05063815414905548, -0.007489275187253952, -0.011097886599600315, 0.005156159400939941, 0.04190889373421669, -0.04000173881649971, 0.03208928927779198, -0.017276380211114883, -0.024125967174768448, -0.020659249275922775, -0.02922174707055092, 0.0395369753241539, 0.01674817129969597, 0.02073146216571331, -0.03486260399222374, 0.014816231094300747, 0.00357148633338511, 0.0638427883386612, -0.040638621896505356, -0.03557760640978813, 0.010830501094460487, 0.0032079932279884815, 0.03506184741854668, -0.00004436324525158852, -0.011949921026825905, -0.006897141691297293, -0.0500713549554348, -0.06580345332622528, -0.008066199719905853, 0.0003588105028029531, -0.019069191068410873, -0.02353600226342678, -0.03871637210249901, 0.035060107707977295, 0.028820455074310303, -0.026426132768392563, 0.04974266141653061, 0.026487037539482117, -0.036701954901218414, 0.043959520757198334, 0.03096574731171131, 0.007050237152725458, -0.043779220432043076, 0.06589382141828537, 0.05657696723937988, -0.020755810663104057, -0.02279600501060486, 0.005457885563373566, -0.05659712478518486, -0.002386183477938175, 0.027995923534035683, -0.015180962160229683, -0.016034649685025215, 0.049808401614427567, -0.004457205068320036, -0.07567880302667618, 0.014098911546170712, -0.05397263541817665, -0.050109878182411194, -0.06042630225419998, -0.037801433354616165, 0.012426517903804779, 0.018405873328447342, 0.022475916892290115, -0.002393730916082859, -0.021464291960000992, 0.02215602993965149, 0.020317645743489265, 0.03020336851477623, -0.005148663651198149, 0.0481710359454155, 0.03854817524552345, -0.019942710176110268, 0.0257221981883049, 0.014308435842394829, -0.04168612137436867, -0.004941848106682301, 0.013260153122246265, 0.037656307220458984, 0.028948351740837097, 0.05486411601305008, 0.03746506944298744, 0.020969072356820107, 0.048920273780822754, -0.036202799528837204, 0.002838666783645749, -0.008749500848352909, -0.0027175017166882753, 0.00941142626106739, 0.014806262217462063, 0.014525932259857655, -0.04106929153203964, -0.052586544305086136, -0.06948534399271011, 0.013487400487065315, -0.008974502794444561, 0.05089039355516434, -0.04470648989081383, 0.06347660720348358, 0.0025555798783898354, -0.0280162300914526, 0.04951082170009613, -0.0721932128071785, 0.015016649849712849, 0.05243883281946182, 0.009515748359262943, 0.03481317311525345, -0.030141403898596764, 0.0052588339895009995, -0.04035203158855438, 0.032440993934869766, 0.037066295742988586, -0.013691897504031658, 0.020370852202177048, -0.015041692182421684, -0.0037909767124801874, -0.004304267931729555, -0.017736108973622322, -0.022451547905802727, 0.027522962540388107, 0.03108960948884487, -0.016989978030323982, -0.0767979547381401, -0.04999819025397301, 0.021440070122480392, 0.04374285787343979, 0.03160886839032173, 0.02840493619441986, 0.0027945260517299175, 0.01937495917081833, 0.007266907952725887, 0.010799984447658062, -0.013553042896091938, 0.01096315123140812, -0.03030383586883545, 0.022726500406861305, 0.017777927219867706, -0.008287128061056137, -0.022248703986406326, -0.04319441691040993, -0.013962105847895145, 0.043628301471471786, -0.004328825045377016, -0.020326480269432068, -0.032832469791173935, 0.007393491920083761, 0.02634369023144245, 0.021051472052931786, -0.038139306008815765, -0.039803922176361084, -0.007124864496290684, 0.0008337387116625905, -0.0011035503121092916, -0.006143429782241583, -0.007531012408435345, -0.012386521324515343, 0.014479847624897957, 0.025840865448117256, -0.04117339849472046, -0.0675235390663147, -0.011571737006306648, -0.022768165916204453, -0.06119858846068382, -0.0027854666113853455, 0.03333637863397598, -0.018004916608333588, 0.03643001988530159, -0.05529337376356125, 0.03143221139907837, 0.026787908747792244, -0.017331309616565704, -0.006447803694754839, 0.00821305625140667, 0.010434417054057121, 0.010790095664560795, 0.06171610951423645, -0.006532588507980108, -0.032950010150671005, 0.027584202587604523, -0.08779669553041458, 0.017133798450231552, 0.013409322127699852, -0.005766307469457388, -0.0029993338976055384, 0.0005554933450184762, 0.036215975880622864, 0.0393080860376358, -0.004890103358775377, 0.011401936411857605, -0.036671992391347885, 0.033458322286605835, -0.03055291436612606, -0.023177923634648323, 0.07563978433609009, -0.02165183238685131, -0.041361093521118164, 0.04677519574761391, 0.04663415625691414, 0.0020716055296361446, -0.014840804040431976, 0.025729719549417496, -0.0659501850605011, 0.02910596877336502, -0.031399767845869064, -0.003428482683375478, -0.0183920506387949, -0.021323738619685173, 0.002965722233057022, -0.02111290954053402, 0.01895514503121376, 0.02505079284310341, -0.003243157174438238, -0.03155037388205528, -0.04864905774593353, -0.015854425728321075, -0.0023869758006185293, -0.005208420567214489, 0.0014351315330713987, 0.0238516703248024, -0.005363670643419027, -0.041132986545562744, -0.022372646257281303, 0.026802610605955124, -0.006899483967572451, -0.0225913617759943, 0.01496006641536951, -0.015873566269874573, 0.018882811069488525, -0.005163487046957016, -0.000454109424026683, -0.031974658370018005, -0.024217236787080765, 0.008544559590518475, -0.011904780752956867, -0.03446449339389801, -0.02135179005563259, -0.023643162101507187, -0.0151214012876153, -0.014246327802538872, -0.0016080114291980863, 0.0009541572071611881, 0.011001850478351116, 0.03490211069583893, 0.04036834090948105, -0.017329461872577667, 0.03921996057033539, -0.027896590530872345, 0.04256463423371315, 0.02536500059068203, -0.04291406646370888, -0.00456786435097456, 0.07465805113315582, 0.008008499629795551, 0.038819704204797745, -0.007092506159096956, -0.0008576583350077271, -0.06502320617437363, -0.04212545230984688, -0.016114918515086174, -0.03961964324116707, -0.038245443254709244, -0.03320502117276192, -0.023788802325725555, 0.002997618168592453, 0.038018468767404556, -0.020705655217170715, -0.013144274242222309, -0.012460115365684032, -0.05811566859483719, 0.02781263366341591, -0.059544358402490616, -0.04599359259009361, -0.019701234996318817, -0.018355412408709526, -0.02292039804160595, 0.027397871017456055, -0.011875738389790058, 0.049486733973026276, 0.00066925905412063, 0.015516124665737152, 0.025677500292658806, -0.02968078851699829, -0.0275174081325531, -0.04974636435508728, 0.008090450428426266, 0.00438324362039566, 0.00022696213272865862, 0.02486298978328705, -0.029558973386883736, 0.05492948740720749, -0.028581934049725533, 0.0011536083184182644, -0.020416952669620514, -0.022191008552908897, -0.01231092307716608, -0.007988965138792992, 0.06132729724049568, -0.05421823635697365, -0.011156031861901283, -0.04128934442996979, 0.020550169050693512, 0.040426407009363174, -0.0206308513879776, 0.002289078664034605, -0.03328774496912956, -0.04538922756910324, -0.03915640711784363, 0.03244921192526817, -0.025238076224923134, -0.0003248785506002605, -0.05178970843553543, 0.008366188034415245, 0.05088194087147713, -0.02476436458528042, 0.023056557402014732, 0.06246020644903183, -0.03762655332684517, 0.02980746515095234, -0.03215301036834717, -0.008951298892498016, 0.037289369851350784, -0.019874393939971924, 0.014736814424395561, -0.03876848518848419, -0.03419117629528046, 0.0177729744464159, -0.049120862036943436, -0.02225230447947979, -0.025448767468333244, 0.022167179733514786, 0.0505203902721405, -0.022837013006210327, 0.05890258774161339, -0.011846456676721573, -0.04977608472108841, -0.03850463405251503, 0.051365114748477936, 0.014017765410244465, 0.009350040927529335, 0.04180354252457619, 0.025534365326166153, -0.03199562430381775, 0.022320715710520744, -0.022041132673621178, -0.024955207481980324, -0.04444020241498947, 0.07814743369817734, 0.01546549703925848, -0.02816826105117798, 0.032294321805238724, 0.03653865307569504, -0.05399626865983009, -0.04238905757665634, 0.0017557144165039062, 0.004915766883641481, 0.01022949069738388, -0.04039760306477547, 0.009694697335362434, -0.012332182377576828, 0.017223043367266655, 0.04842567816376686, 0.0407622866332531, -0.024385442957282066, 0.03391329199075699, 0.012905405834317207, 0.035493843257427216, -0.0619359090924263, -0.0031463142950087786, 0.02837456576526165, -0.029215987771749496, -0.019613342359662056, -0.013331546448171139, -0.03145918250083923, -0.007166706956923008, -0.011694563552737236, 0.04449455440044403, 0.0022459193132817745, -0.007601449266076088, 0.02520579844713211, -0.027262229472398758, 0.04558039456605911, -0.02687627635896206, 0.008715324103832245, 0.04289844259619713, -0.034710485488176346, -0.038672078400850296, -0.050948601216077805, 0.004370030015707016, -0.018718834966421127, 0.03542458266019821, -0.04716825857758522, -0.027524158358573914, 0.06546837836503983, -0.01025568787008524, -0.017508860677480698, -0.041303083300590515, -0.04290725663304329, -0.06609640270471573, -0.04538746178150177, -0.02353922836482525, -0.023371916264295578, 0.022621460258960724, 0.026578491553664207, 0.034646954387426376, -0.016110047698020935, -0.021587586030364037, -0.0027151380199939013, -0.044134803116321564, 0.006132847163826227, -0.017458640038967133, 0.01709575764834881, -0.02193566970527172, -0.07588440924882889, -0.03738275542855263, 0.02704375423491001, -0.058056943118572235, -0.014793436974287033, -0.02168663777410984, 0.008322318084537983, 0.0032341359183192253, 0.03349261358380318, 0.030296048149466515, 0.01577129401266575, -0.04053126275539398, -0.04513813927769661, 0.0086419228464365, 0.0349627248942852, 0.00120834750123322, 0.011460306122899055, 0.019985150545835495, -0.026593094691634178, 0.024094706401228905, 0.02307066135108471, -0.019337207078933716, -0.022024080157279968, 0.011426107957959175, -0.0032195334788411856, -0.0021513758692890406, -0.05917886644601822, -0.04016585275530815, -0.038882773369550705, -0.03420496731996536, 0.025643059983849525, -0.0011205266928300261, -0.006738719996064901, 0.015834150835871696, -0.028921354562044144, -0.021832706406712532, 0.0474516935646534, -0.0011515713995322585, 0.05165847763419151, 0.025334056466817856, 0.004972668830305338, 0.047247353941202164, -0.014511823654174805, -0.009051059372723103, 0.025712523609399796, 0.0029635499231517315, 0.005797199904918671, 0.012533231638371944, 0.009093916974961758, -0.01065214816480875, 0.026475438848137856, -0.04753235727548599, -0.050073858350515366, -0.03619222342967987, -0.015578044578433037, -0.023114338517189026, 0.035566627979278564, 0.020281411707401276, -0.010537385009229183, 0.010799979791045189, -0.029452716931700706, -0.04075905680656433, 0.017152925953269005, -0.075106680393219, -0.027857065200805664, 0.034319858998060226, -0.015009407885372639, 0.01824038289487362, -0.010108647868037224, -0.03541284054517746, 0.021660005673766136, -0.02848030999302864, 0.014200739562511444, -0.05646883323788643, 0.0017142270226031542, -0.00781256053596735, -0.00740424869582057, -0.018124226480722427, -0.003814184572547674, 0.049321599304676056, 0.0507366843521595, -0.03893601894378662, -0.06665169447660446, 0.0023023029789328575, -0.027887972071766853, 0.00877858605235815, -0.018302669748663902, 0.0013642043340951204, 0.014037355780601501, -0.0010081406217068434, 0.004015517886728048, 0.0029249826911836863, 0.0458669550716877, -0.00961716566234827, 0.013041270896792412, 0.024560293182730675, 0.002239921363070607, -0.051754895597696304, 0.05190601944923401, 0.014749214984476566, -0.027874011546373367, 0.006839181296527386, 0.002903813263401389, 0.026188522577285767, 0.007887818850576878, 0.03746641054749489, -0.003133438527584076, 0.04242663457989693, -0.031290266662836075, -0.017043670639395714, -0.014716966077685356, 0.008557962253689766, -0.003759130835533142, 0.04543386027216911, -0.02120223641395569, 0.0375068262219429, 0.0665932223200798, 0.04511294513940811, 0.02410849742591381, 0.041346002370119095, 0.031881313771009445, -0.03178124874830246, -0.006501473486423492, -0.009573862887918949, -0.010873651131987572, -0.005757592618465424, 0.01628994382917881, -0.017745809629559517, -0.02551300637423992, -0.004726224113255739, -0.005312655121088028, -0.026173820719122887, 0.0554308146238327, -0.024966774508357048, 0.021513231098651886, -0.018817398697137833, -0.03462134674191475, 0.019069798290729523, 0.046404872089624405, 0.013324527069926262, 0.04166737571358681, 0.010066742077469826, 0.01684265211224556, -0.03182759881019592, 0.05371430888772011, 0.028689904138445854, -0.009434753097593784, 0.013299843296408653, -0.007983549498021603, 0.03582978993654251, -0.022925380617380142, -0.03613525256514549, 0.010669764131307602, -0.020349998027086258, 0.0473274402320385, -0.056720439344644547, -0.02023584209382534, 0.06539017707109451, -0.013465795665979385, 0.0124442083761096, -0.03845630958676338, 0.05874690040946007, -0.012458444572985172, 0.011996998451650143, 0.010271361097693443, 0.010299433954060078, -0.035365354269742966, 0.05104915052652359, 0.003997331950813532, 0.06746219098567963, 0.030824817717075348, 0.04184441640973091, -0.029812226071953773, 0.046075381338596344, 0.03394307568669319, -0.014396251179277897, -0.01527719758450985, 0.02463846281170845, 0.00299293315038085, -0.04936882480978966, 0.0022052910644561052, -0.019971512258052826, -0.037959881126880646, -0.016225188970565796, 0.020652947947382927, 0.02702018804848194, 0.03930162265896797, -0.005800190381705761, 0.004813191015273333, -0.017549335956573486, 0.01810605078935623, -0.033875733613967896, -0.004963594023138285, 0.023162923753261566, 0.062181778252124786, -0.001333354040980339, -0.026130851358175278, -0.028791368007659912, -0.0116427568718791, -0.017309395596385002, -0.048477161675691605, 0.03105483390390873, -0.0024381913244724274, -0.035811521112918854, -0.03742516413331032, -0.054944608360528946, 0.00471408199518919, -0.0006927564973011613, -0.034798238426446915, -0.05879872292280197, 0.024694286286830902, 0.022862501442432404, 0.00832310225814581, -0.02781860902905464, -0.02778143435716629, 0.013756226748228073, 0.03317808732390404, 0.06504383683204651, -0.028467874974012375, 0.07991985976696014, 0.0412398986518383, -0.03150301054120064, 0.015384003520011902, -0.04883824661374092, 0.02649102360010147, -0.014096667058765888, 0.013193748891353607, -0.038630448281764984, 0.030932001769542694, 0.004265307914465666, -0.03684823960065842, 0.014268347062170506, 0.014680701307952404, -0.0016258948016911745, -0.03892891854047775, -0.04830245301127434, -0.018992340192198753, -0.04995666816830635, 0.007876376621425152, -0.03075113520026207, 0.042900338768959045, -0.002076004631817341, -0.0007993109175004065, -0.008598658256232738, -0.048431217670440674, 0.12516553699970245, 0.02649594657123089, 0.03489944711327553, -0.005331573076546192, 0.028130045160651207, 0.059528451412916183, 0.015275334939360619, 0.013405749574303627, 0.011713524349033833, -0.0509665422141552, 0.031397949904203415, -0.006718645803630352, 0.012478180229663849, 0.006769880652427673, 0.02190256305038929, 0.08240623027086258, -0.031017864122986794, 0.012162386439740658, 0.02677280269563198, -0.04179220646619797, -0.0953468605875969, 0.06088126078248024, 0.04251442849636078, 0.03750289976596832, -0.0010868649696931243, -0.009474319405853748, -0.007636887487024069, -0.032582953572273254, -0.005367831327021122, -0.03385462611913681, 0.023591961711645126, -0.033093858510255814, 0.03221594914793968, -0.029034016653895378, -0.016951698809862137, 0.03863377496600151, 0.009837478399276733, -0.009182277135550976, 0.0033769020810723305, 0.015098689123988152, -0.027772977948188782, -0.033971481025218964, 0.015392064116895199, -0.03319783881306648, -0.019671011716127396, 0.04795682057738304, -0.023761069402098656, -0.005668398458510637, -0.0269827451556921, -0.03737040236592293, 0.06131843850016594, -0.03004261665046215, 0.023144302889704704, -0.00444762734696269, -0.031181711703538895, 0.048233870416879654, -0.006239786744117737, -0.024398405104875565, -0.00701906019821763, -0.0009582024649716914, 0.024211963638663292, -0.0076655917800962925, -0.028745515272021294, -0.004589999094605446, -0.022788554430007935, -0.028862636536359787, 0.017257023602724075, -0.0021277631167322397, 0.008764347061514854, -0.025728194043040276, -0.02574910596013069, -0.026101484894752502, 0.008519292809069157, -0.04962659627199173, 0.06815572082996368, 0.009565972723066807, -0.02195911481976509, 0.026607971638441086, 0.027672849595546722, -0.018169119954109192, -0.0014578825794160366, -0.018902508541941643, -0.009102698415517807, -0.013832022435963154, 0.014762777835130692, 0.05041728541254997, -0.02999281883239746, -0.042946409434080124, -0.010292540304362774, 0.05634038522839546, 0.0321088582277298, 0.05437994748353958, 0.004958656616508961, -0.0029617934487760067, -0.013286287896335125 ]
The beautiful fall weather is quickly fading here, but it is much warmer than Boston was, and for that I am grateful. The semester is coming to an end, five weeks left if you're counting, which means the holidays are hot on our trail! Miraculously, each month this year has brought more and more epic adventure and awesomeness than the previous, making 2011 quite a doozy. I honestly have no idea where the semester disappeared to but I registered for Spring 2012 classes this morning… must be about that time. Mid July we submitted a paper topic to present at a national technology conference for NASPA, with the goal of getting practice with presentation writing and shooting to have a presentation accepted in 2012 or 2013. Needless to say, I honestly didn't think it would get accepted and much to my surprise, I got an email a month later saying we were going to be one of the presentations to be featured throughout the three day conference. What an awesome opportunity to share what we're doing with technology on our campus! Once the shock had passed, it was time to gear up and crank out a rocking presentation. There's no sense doing something if it isn't going to be done correctly. Go with the flow – As the worrier of the group, I found plenty of ways to nitpick about things that were beyond my control, so it was nice once we arrived at the conference to just go with it. I was confident that I had done my homework, and who knows better about our tech projects than me? I was the expert and this was my arena so why not relax and take it all in? Embrace the learning – I'll admit it, I was slightly disappointed that only seven people showed up for our presentation; however, the positive responses and great questions convinced me that we are doing something amazing at the University of Nevada. It was pretty awesome to be presenting three unique ways in which we were using technology to impact our student's engagement! Incorporate changes – There were many great speakers during the conference, and one of them placed a heavy emphasis on the pursuit of community. It's our job to drive student engagement by utilizing the "cool stuff" to pique their interest. It's almost not even fair having a job that awesome, but additionally it provides a wonderful opportunity to improve our method of creating agency and buy-in from our students. What better way to impact their time here than to have them involved and active on campus? Create a true sense of community and the rest will take care of itself! Make the most of the opportunity – I'm sorry but anytime I get flown 2000 miles across the country for work, I'm going to cash in on some sweet vacation time. Having never been to Boston, it seemed like a very appropriate decision. Three days spent in one of the most historical cities in America was freaking awesome, even more so because I'm a Revolutionary War history buff. It was quite the opportunity to both present at a conference AND explore New England. Icing on the cake – The real crowning moment of the entire adventure was finding out that not only did we kill our presentation but that the same one was accepted to the NASPA National Convention in Phoenix for March 2012!! Talk about exciting! It's one thing to present at a conference of 170 people, it's another to present at a conference with over 1000 presentation submissions, and ours was one of only a few selected. Never in a million years did I dream we'd be presenting in Phoenix, and now we'll be heading down there to again rock the NASPA conference and show the U.S. what is going on in Nevada. It's just been a year full of ridiculous adventures, and this is another layer in the cake. Going to be awesome! Baby steps? I think not… – In what seems to be an usual occurrence of events, we have gone from being presentation noobs to presenting at the national convention in one fell swoop. Seems like kind of a big deal. It's quite overwhelming, really, and I don't know what we've gotten ourselves into, but I know it's going to be fantastic. Thinking back on my racing experiences, this is not that dissimilar to my shift from a half marathon to a full, or from an Olympic triathlon to a half Iron. I ran 13 miles to get my feet wet and prepare for 26.2, and I've spent years racing 30 miles so that I could bump it up to 70.3 and compete with the bad-asses. Our Rhode Island presentation was just the warm up round for the big leagues, and our initiation into a new and exciting realm. And so October has failed to disappoint or be boring, and in turn resulted in many new experiences, a wonderful break from the Reno Reality, and has setup the last two months of the year to be equally awesome. What was your first professional breakthrough? My first professional breakthrough was when I presented a paper at an inter-national convention of about 1200 people. I presented a paper on how to organize and run a regional conference (Seven Steps for Sponsoring Successful Seminars and Symposiums. The presentation was packed with useful OTJ tips on how to organize and run such a conference and had a 40-page handout of checklists (which I still have today). I not only won the Outstanding Paper Award out of 5-6 dozen, but it the first-ever Outstanding Paper Award granted by that association. You can bet that this honor is STILL listed on my resume. I don't take credit for it because it wasn't that terrific; I give glory to God for the grace shown me. It sure taught me to get and stay involved in my profession which I did that for 30 years or so. The business connections have been great especially when I needed a job—many people knew my name and some of what I was capable of doing. The other advantage was making friends with many people from all over the world and learning much about people, what it means to be on a Board of Directors and all kinds of other lessons. So, young man, I urge you to get involved with some local professional association that has national- or international- connections. It will pay off many-fold. Awesome story! What a success, especially to get the first of an award :-) What a great way to spread your name and make a place for yourself in your industry.
[ 0.009350930340588093, -0.004549513105303049, -0.0402437299489975, 0.00000572760154682328, -0.016842586919665337, 0.0028388367500156164, -0.011529623530805111, 0.021980954334139824, 0.04474974051117897, 0.022874630987644196, 0.026471847668290138, 0.026524800807237625, 0.024135127663612366, -0.03142648935317993, 0.000016430962205049582, -0.018855372443795204, -0.03898818790912628, -0.03884550929069519, -0.007489059120416641, 0.017510663717985153, -0.017622891813516617, 0.035523246973752975, -0.04335771128535271, -0.05130432918667793, -0.001095588319003582, 0.01664603129029274, 0.02286521904170513, -0.018380600959062576, 0.078881174325943, 0.04626290500164032, -0.0009076791466213763, -0.03603479638695717, 0.011465034447610378, -0.051557160913944244, -0.02969200722873211, -0.034916121512651443, 0.031154315918684006, -0.01557736936956644, -0.014902684837579727, -0.037142761051654816, 0.0031868424266576767, 0.01292119175195694, 0.0539831705391407, -0.03864556923508644, -0.04296715557575226, -0.004647437948733568, 0.0011228533694520593, -0.02849476970732212, 0.051639724522829056, -0.03715556487441063, 0.02288086712360382, -0.0027016070671379566, -0.018417350947856903, -0.013165468350052834, 0.01710139960050583, -0.007345111109316349, -0.029409773647785187, -0.007024277932941914, -0.014844720251858234, 0.027915557846426964, 0.012345805764198303, 0.013769147917628288, 0.04266681894659996, -0.07198972254991531, 0.027692915871739388, 0.021454432979226112, -0.0024456093087792397, -0.02095603756606579, -0.0018125338247045875, 0.00991501659154892, -0.025032442063093185, 0.0028802284505218267, -0.0167325958609581, 0.0022684165742248297, -0.015922287479043007, 0.0029409725684672594, -0.008211194537580013, 0.0013295889366418123, -0.03636525943875313, -0.009921007789671421, -0.004156867507845163, 0.05213257670402527, -0.022438907995820045, 0.013981939293444157, -0.035873476415872574, -0.02072090283036232, 0.009229193441569805, 0.010641545057296753, 0.03691534698009491, -0.006184338591992855, -0.0006037391722202301, 0.05723514035344124, -0.004377402830868959, -0.004159838892519474, 0.058343417942523956, 0.03897232562303543, -0.026769794523715973, 0.015506863594055176, 0.013726453296840191, -0.0062532080337405205, 0.04831553250551224, 0.04088442772626877, -0.021579811349511147, 0.04086611047387123, -0.0569140650331974, 0.0021925836335867643, 0.017186744138598442, -0.05104648694396019, 0.0009094597189687192, -0.06407327950000763, -0.005788144655525684, -0.01887546293437481, 0.021412700414657593, 0.009264703840017319, -0.02103864587843418, 0.05218438059091568, 0.017653198912739754, 0.06174761429429054, -0.03389203920960426, 0.02025805413722992, 0.01326352171599865, 0.008198076859116554, 0.0005423406255431473, -0.009679155424237251, 0.00040788110345602036, -0.02801746502518654, -0.011822707019746304, 0.05813472345471382, -0.016715988516807556, -0.008414612151682377, -0.013752826489508152, -0.05854206532239914, -0.05923512950539589, 0.020867908373475075, -0.029506396502256393, 0.03780372440814972, -0.006607026793062687, 0.04308980330824852, 0.018999116495251656, -0.08738371729850769, 0.03889617696404457, 0.025633350014686584, 0.032062828540802, 0.10021108388900757, 0.01656031794846058, 0.031709641218185425, -0.006349590606987476, 0.0036494494415819645, -0.017338603734970093, 0.021554118022322655, -0.01894199289381504, 0.02539660781621933, -0.008184968493878841, 0.02665603905916214, -0.026059448719024658, -0.005543728359043598, 0.03537306934595108, 0.019454102963209152, 0.001399793429300189, 0.0381927564740181, -0.0022926353849470615, 0.039606574922800064, -0.02395309880375862, 0.016683464869856834, 0.006887922529131174, 0.03231705352663994, -0.023249594494700432, -0.033222876489162445, -0.00598153518512845, -0.04363324120640755, 0.025766711682081223, 0.0031952583231031895, -0.024465546011924744, 0.0117381252348423, 0.03463501110672951, 0.04576364532113075, 0.03273468837141991, 0.0010357174323871732, 0.04248230904340744, 0.0253717340528965, -0.05050162598490715, -0.007465486414730549, -0.0019643213599920273, 0.05651643127202988, 0.005843974184244871, 0.0022360857110470533, 0.010755782015621662, -0.021493718028068542, -0.02884121611714363, -0.045106783509254456, 0.0004277002008166164, 0.038310032337903976, -0.029343275353312492, 0.012867555022239685, 0.02184964343905449, 0.01688462123274803, -0.02596718817949295, -0.007272053975611925, -0.02272903360426426, -0.0633251816034317, -0.04405921697616577, 0.05086864158511162, -0.021416202187538147, 0.01708388328552246, -0.04361898452043533, -0.018026132136583328, 0.027494210749864578, 0.06450088322162628, -0.01963881030678749, 0.0014423398533836007, -0.0009023555321618915, 0.020069768652319908, -0.011573774740099907, -0.022176023572683334, 0.01947282999753952, -0.04700670763850212, -0.0072542340494692326, 0.042122334241867065, -0.005119121167808771, -0.0015853189397603273, 0.009268024936318398, 0.014527271501719952, 0.05587882176041603, 0.007904254831373692, 0.012175838463008404, 0.02439459227025509, 0.017854927107691765, 0.04668967425823212, -0.028419872745871544, -0.012197165749967098, -0.038840483874082565, 0.04394328594207764, 0.007030189037322998, 0.05841841921210289, 0.06904098391532898, 0.029777828603982925, 0.03667236864566803, 0.04490208253264427, -0.029185395687818527, -0.003300463082268834, -0.008431998081505299, -0.01131430920213461, 0.0404740646481514, 0.022530322894454002, -0.01589144580066204, 0.00352922803722322, -0.02751079946756363, -0.02468290366232395, 0.0016963602975010872, 0.022492390125989914, -0.0394604429602623, 0.014367399737238884, 0.03454246744513512, 0.03154449164867401, -0.018993418663740158, -0.0005663015181198716, 0.025188986212015152, 0.05863138660788536, -0.03855707496404648, 0.0012108171358704567, 0.0023789142724126577, 0.022322796285152435, -0.011562788859009743, 0.011010213755071163, 0.04443845525383949, 0.015280554071068764, -0.014727238565683365, 0.01772780902683735, -0.03277614712715149, -0.03965161740779877, -0.06350193917751312, -0.060371991246938705, -0.057802166789770126, -0.0212220661342144, -0.03323763236403465, 0.00004862091736868024, 0.017960112541913986, -0.04661397263407707, 0.03973038122057915, -0.009152192622423172, -0.0010248582111671567, -0.03908805549144745, -0.005601811688393354, 0.05776330828666687, 0.02915540337562561, 0.03221828490495682, -0.04538930952548981, 0.051426008343696594, -0.02488798275589943, 0.031067777425050735, -0.05249128118157387, -0.0080595463514328, -0.005782760679721832, 0.004256618209183216, 0.02353755384683609, -0.01900099776685238, 0.0008930087788030505, -0.02420244738459587, -0.08999288827180862, -0.04409492015838623, 0.012121026404201984, 0.01580416038632393, -0.00369053496979177, 0.0005992579972371459, -0.04547564685344696, 0.042479563504457474, 0.009278039447963238, -0.040032342076301575, 0.06903709471225739, 0.021725961938500404, -0.04755222797393799, 0.06660930067300797, 0.015220345929265022, -0.0036749427672475576, -0.03957340866327286, 0.040933720767498016, 0.040244609117507935, 0.0104957465082407, -0.024722687900066376, 0.006301448680460453, -0.025892367586493492, -0.014283471740782261, 0.018361002206802368, -0.02558780461549759, -0.03370945528149605, 0.03279392793774605, 0.035267848521471024, -0.08076454699039459, 0.021324945613741875, -0.029516691341996193, -0.030416052788496017, -0.057335689663887024, -0.051596272736787796, 0.03042624145746231, 0.044603053480386734, 0.02376485988497734, -0.021229542791843414, -0.007945353165268898, 0.007471845485270023, 0.035329669713974, 0.04643400385975838, -0.008354373276233673, 0.0197298601269722, 0.05379536747932434, -0.01144931185990572, 0.016535669565200806, -0.01444702222943306, -0.05499647557735443, -0.008995436131954193, 0.013341262005269527, -0.014288908801972866, 0.01455341000109911, 0.021914778277277946, 0.006704031955450773, 0.043420519679784775, 0.0440262146294117, -0.05968988686800003, -0.011413914151489735, 0.003698767628520727, 0.005322479642927647, -0.005348770879209042, 0.029247142374515533, 0.012358734384179115, -0.03765568509697914, -0.04944587126374245, -0.037921324372291565, 0.0301235169172287, 0.012291712686419487, 0.0476636104285717, -0.049282655119895935, 0.04684756323695183, 0.008789867162704468, -0.03402955085039139, 0.05159803107380867, -0.059648193418979645, -0.019740793853998184, 0.04438947141170502, -0.02015048637986183, 0.011962560936808586, -0.03175707906484604, -0.025184500962495804, -0.009704849682748318, 0.02477445639669895, 0.06999465078115463, 0.007843122817575932, 0.016539812088012695, -0.018251389265060425, -0.010996504686772823, 0.00239355955272913, 0.002570111071690917, 0.021191587671637535, -0.021013371646404266, 0.0037390191573649645, -0.007526084315031767, -0.025876203551888466, -0.041773270815610886, 0.05181325227022171, 0.01257946528494358, 0.03522505238652229, -0.019245047122240067, 0.03554091975092888, 0.004449460655450821, 0.007444445509463549, 0.003152224700897932, -0.005862967576831579, -0.007252223324030638, -0.04868653416633606, 0.01825054921209812, 0.00017080701945815235, -0.03411504253745079, -0.021387962624430656, -0.009451278485357761, -0.012502809055149555, 0.033121272921562195, -0.0005136380204930902, -0.007997839711606503, -0.04082178696990013, 0.031752318143844604, 0.009329150430858135, 0.0579964853823185, -0.06297703087329865, -0.027186475694179535, -0.04497291147708893, 0.042937878519296646, -0.024241449311375618, -0.052505556493997574, 0.020362060517072678, -0.04617349058389664, 0.059734705835580826, 0.025090457871556282, -0.004753389395773411, -0.0433330275118351, 0.010284633375704288, -0.01477502565830946, -0.04220803827047348, 0.03467874228954315, 0.010746845975518227, 0.007482313085347414, 0.0010490402346476912, -0.04572231322526932, 0.02104928344488144, -0.003998900763690472, -0.01978323794901371, -0.05428994819521904, -0.0009431702201254666, 0.014900029636919498, 0.019479164853692055, 0.027300072833895683, -0.010269440710544586, -0.025389576330780983, 0.030983982607722282, -0.04484657943248749, 0.0010117822093889117, 0.0014995788224041462, -0.007152053993195295, 0.009236372075974941, -0.013206064701080322, 0.026731137186288834, 0.043310388922691345, -0.04081471264362335, 0.013336854055523872, -0.04883458465337753, 0.056665435433387756, -0.02818295918405056, -0.04062420129776001, 0.052806202322244644, -0.001463139895349741, -0.055812135338783264, 0.031627196818590164, 0.05939898639917374, -0.024676049128174782, -0.005788234528154135, 0.01651807129383087, -0.026626525446772575, 0.02573692798614502, -0.039307545870542526, -0.006171475630253553, -0.010139125399291515, -0.0417863130569458, 0.04074239730834961, -0.013253169134259224, 0.005425362382084131, 0.019255533814430237, -0.0346536785364151, -0.05537144094705582, -0.043986279517412186, -0.022349577397108078, 0.019774002954363823, -0.006878734100610018, 0.023848772048950195, 0.015990540385246277, 0.009527502581477165, -0.013844757340848446, -0.008458610624074936, 0.01091857347637415, 0.011281447485089302, -0.020331289619207382, 0.00883098691701889, -0.009746621362864971, 0.02076607570052147, 0.004405520390719175, -0.029674386605620384, -0.05599265173077583, -0.014290961436927319, 0.010318262502551079, -0.025564227253198624, -0.054344542324543, -0.0016214860370382667, -0.02673029527068138, -0.03324808552861214, -0.016839588060975075, -0.013420959003269672, -0.03578612208366394, 0.025717349722981453, 0.04045991227030754, 0.024338459596037865, 0.01314458530396223, 0.0035966967698186636, -0.05296610668301582, 0.05439404398202896, 0.0226186141371727, -0.051995664834976196, -0.04716521129012108, 0.013222791254520416, -0.03543652221560478, 0.049362096935510635, -0.001229665707796812, -0.033376798033714294, -0.04321696236729622, -0.029598712921142578, -0.014441625215113163, -0.016670383512973785, -0.018264509737491608, -0.05635363608598709, -0.013105076737701893, -0.006422168575227261, 0.0009199141641147435, 0.004244515672326088, 0.0030515643302351236, 0.024384163320064545, -0.06386630982160568, 0.02769285999238491, -0.026893436908721924, -0.015096714720129967, 0.007657528854906559, 0.00866328552365303, -0.0016192335169762373, 0.057703692466020584, 0.008030794560909271, 0.013066745363175869, 0.011784003116190434, 0.01428066473454237, 0.018359262496232986, -0.005730926059186459, -0.04453791305422783, -0.0379851795732975, -0.001101046334952116, -0.006043045781552792, 0.006310999393463135, 0.02075946144759655, -0.015338841825723648, 0.03167460113763809, -0.03971504792571068, -0.012072499841451645, -0.04243672639131546, -0.0035096292849630117, -0.020429207012057304, -0.02901623398065567, 0.058038197457790375, -0.037496279925107956, -0.007816080003976822, -0.05312480032444, 0.05007793381810188, 0.05085434392094612, -0.035963673144578934, -0.035249724984169006, -0.01848677732050419, -0.045917950570583344, -0.024803396314382553, 0.012569817714393139, -0.028600309044122696, 0.014100289903581142, -0.04328914359211922, -0.0139724500477314, 0.05404843017458916, -0.004626767709851265, 0.06777097284793854, 0.04321340471506119, 0.033461399376392365, 0.0008973372168838978, -0.01628725416958332, 0.020619874820113182, 0.05089640989899635, 0.010705182328820229, 0.00601226044818759, -0.023621663451194763, -0.018134577199816704, 0.007249047048389912, -0.06338737905025482, 0.001130040967836976, -0.03333059325814247, -0.018452027812600136, 0.05621533840894699, -0.01814073882997036, 0.04372275993227959, 0.01246163621544838, -0.03937520831823349, -0.03721807897090912, 0.02525191381573677, -0.0006788529572077096, 0.00939472857862711, 0.027925193309783936, 0.039619870483875275, -0.0058478182181715965, 0.01295746210962534, -0.036906808614730835, -0.014109816402196884, -0.02440369687974453, 0.059657976031303406, 0.00870439875870943, -0.03557226434350014, 0.01705402322113514, 0.04923750460147858, -0.04762323200702667, -0.05213271826505661, 0.016604814678430557, 0.0035131529439240694, -0.00010774948168545961, -0.050779957324266434, -0.005298933479934931, -0.014962115325033665, 0.004224336240440607, 0.012310697697103024, 0.03497963026165962, -0.016012560576200485, -0.0003085533680859953, 0.009606958366930485, 0.030789300799369812, -0.03929556906223297, 0.0330081544816494, 0.038885898888111115, -0.03021005541086197, -0.020551366731524467, -0.024654069915413857, -0.002547414042055607, -0.0018736269557848573, -0.013252552598714828, 0.04758866876363754, -0.01806573197245598, -0.015145399607717991, 0.019587138667702675, -0.03136029839515686, 0.03978484496474266, -0.0017117597162723541, -0.017143355682492256, 0.029318897053599358, -0.054130248725414276, -0.0644579753279686, -0.015357648022472858, 0.015804020687937737, -0.014762446284294128, 0.024076996371150017, -0.040609654039144516, -0.0016558290226384997, 0.031217260286211967, -0.005486520938575268, 0.022115273401141167, -0.05213746428489685, -0.031745582818984985, -0.04665558040142059, -0.027502238750457764, -0.02111002244055271, -0.0019631118047982454, -0.01119388546794653, 0.0016817108262330294, 0.02498730830848217, -0.01345779001712799, -0.028707820922136307, 0.03047989122569561, -0.02484533004462719, 0.005611995235085487, -0.03187175840139389, 0.034355681389570236, -0.04036764055490494, -0.060739610344171524, -0.024777093902230263, 0.022166090086102486, 0.02118024416267872, 0.004904282279312611, -0.029470782727003098, 0.022068621590733528, 0.01202923059463501, 0.03655243292450905, 0.02547227032482624, -0.006073568016290665, -0.04013616964221001, -0.04061698913574219, 0.010575582273304462, 0.03138425573706627, 0.01708151586353779, 0.045908138155937195, -0.0026051942259073257, -0.017142418771982193, 0.03729534149169922, -0.011200116015970707, -0.017969390377402306, -0.032382894307374954, 0.029315514490008354, 0.007872043177485466, -0.0007211390766315162, -0.01634233072400093, -0.017896058037877083, -0.00421963119879365, -0.027019860222935677, 0.0008345284732058644, 0.026332959532737732, 0.01054372638463974, 0.005800844170153141, -0.018050283193588257, 0.012149998918175697, 0.07538526505231857, 0.04030664637684822, 0.044598288834095, -0.005876900628209114, 0.02704480104148388, 0.03243699669837952, 0.0047310334630310535, 0.01710410602390766, 0.022727103903889656, 0.009196226485073566, -0.030071444809436798, 0.023548856377601624, 0.01518197264522314, -0.04029172658920288, 0.0326126292347908, -0.016258254647254944, -0.015029078349471092, -0.05581854283809662, 0.016457535326480865, -0.017855912446975708, 0.06963086873292923, 0.010807710699737072, -0.010035027749836445, 0.014097894541919231, -0.03026544861495495, -0.010180676355957985, 0.02123608998954296, -0.06331119686365128, -0.005965749267488718, 0.017237428575754166, -0.012476823292672634, -0.03959490731358528, 0.011621540412306786, -0.01622660458087921, 0.00395728787407279, 0.005968641489744186, -0.016116630285978317, -0.046043314039707184, 0.020951874554157257, -0.005631374195218086, 0.03978952392935753, -0.01813947968184948, -0.013257398270070553, -0.004617830738425255, 0.041131071746349335, -0.008374620229005814, -0.027131114155054092, 0.030500253662467003, 0.04553667828440666, 0.009449334815144539, -0.020808426663279533, -0.027508947998285294, 0.028639690950512886, -0.0018306870479136705, 0.020488271489739418, 0.015408558771014214, 0.01961040124297142, -0.022151734679937363, 0.005499725695699453, 0.01677168719470501, 0.015826327726244926, -0.04258882254362106, 0.013540862128138542, 0.018523339182138443, -0.022952675819396973, -0.016592252999544144, 0.0587327666580677, 0.047130148857831955, -0.01588861458003521, 0.0473112016916275, 0.01424337550997734, 0.06664720922708511, 0.004327043425291777, 0.003448673291131854, -0.01616598665714264, 0.04497333616018295, 0.011589274741709232, 0.03541814908385277, 0.01336854137480259, 0.05020143836736679, 0.041477713733911514, 0.0034647644497454166, 0.025219522416591644, 0.040814612060785294, 0.01473073661327362, -0.04940823093056679, -0.008583024144172668, -0.010436181910336018, 0.004264331888407469, -0.009696842171251774, -0.022409707307815552, 0.014211723580956459, -0.06612979620695114, -0.013586819171905518, -0.050758928060531616, -0.019400835037231445, 0.03849600628018379, -0.03801029175519943, 0.008904815651476383, -0.007226904388517141, -0.016336722299456596, -0.022302350029349327, 0.04077215492725372, 0.003340579802170396, 0.01104533951729536, 0.04427323862910271, 0.030280599370598793, -0.01804148033261299, 0.051044609397649765, 0.015067478641867638, 0.017607955262064934, -0.013786344788968563, 0.015984155237674713, 0.011545908637344837, 0.019296539947390556, -0.025948135182261467, 0.010593779385089874, -0.00988238025456667, 0.03356223180890083, -0.022573240101337433, -0.06706691533327103, 0.05048198625445366, -0.043092261999845505, -0.00300009036436677, -0.05109912529587746, 0.0498138964176178, -0.03409602865576744, -0.028951862826943398, 0.03221331909298897, 0.007294623181223869, -0.03149082511663437, 0.0502900592982769, -0.002513687824830413, 0.05085115507245064, 0.015299234539270401, 0.032726507633924484, -0.029479386284947395, 0.050073929131031036, 0.05908253788948059, -0.02573266811668873, -0.015284903347492218, 0.02206176519393921, -0.0018325620330870152, -0.026859061792492867, -0.001800580183044076, -0.05074544623494148, -0.010871460661292076, -0.01246584951877594, -0.011655117385089397, 0.0023943951819092035, 0.05270695313811302, -0.022451801225543022, -0.01579936407506466, -0.008978930301964283, 0.014379380270838737, -0.0559752956032753, -0.009380267933011055, -0.009347794577479362, 0.011744668707251549, -0.012329909019172192, -0.000247466959990561, -0.012543405406177044, -0.03510579094290733, 0.0052729081362485886, -0.01958121359348297, 0.05261703580617905, -0.009125894866883755, -0.03213175758719444, -0.04664261266589165, -0.039769772440195084, -0.007602212484925985, -0.008208784274756908, -0.03295736387372017, -0.03737371042370796, 0.039469748735427856, 0.02384554222226143, 0.00804622657597065, 0.012036874890327454, -0.021955791860818863, -0.033336251974105835, 0.015031401067972183, 0.058869875967502594, 0.010691829957067966, 0.03481455519795418, 0.025088666006922722, 0.025645621120929718, 0.044243816286325455, -0.046093884855508804, 0.031882401555776596, -0.022787874564528465, 0.009989938698709011, -0.020220663398504257, 0.01794487237930298, -0.05563637241721153, -0.048298127949237823, 0.006572434678673744, 0.013718860223889351, 0.013296887278556824, -0.0072598946280777454, -0.056231383234262466, -0.010160630568861961, -0.045842673629522324, -0.0019644247367978096, -0.05590835586190224, 0.029354635626077652, 0.03351294621825218, 0.0061537423171103, -0.052123963832855225, -0.04936448484659195, 0.17190741002559662, 0.044723525643348694, 0.052182719111442566, 0.008776500821113586, 0.01622827723622322, 0.05803978070616722, 0.03136714547872543, -0.008716980926692486, 0.003902917494997382, -0.03923259302973747, 0.02481522411108017, -0.013172755017876625, 0.01988833397626877, 0.03589329868555069, 0.03472503647208214, 0.03381161019206047, -0.007723257876932621, 0.010513204149901867, 0.014529687352478504, -0.05006584897637367, -0.05531273037195206, 0.010185608640313148, 0.01154585275799036, 0.03664993494749069, -0.001935174805112183, 0.04310676455497742, -0.002191662322729826, -0.040295954793691635, -0.008093714714050293, 0.007357829250395298, 0.018311327323317528, 0.004614104051142931, 0.055934689939022064, -0.0435490757226944, -0.04207012429833412, 0.07090801000595093, 0.025709118694067, -0.06595386564731598, -0.013600773178040981, 0.031129004433751106, -0.010815989226102829, 0.0015797805972397327, 0.021533584222197533, -0.049093715846538544, 0.029040422290563583, 0.03269760683178902, -0.019809285178780556, 0.007574070245027542, 0.006236667279154062, -0.0451737716794014, 0.06963834166526794, -0.04701250419020653, 0.011487068608403206, 0.006077451165765524, -0.03587860241532326, 0.024033576250076294, 0.020869655534625053, -0.018676895648241043, -0.01375651266425848, 0.002335986355319619, 0.028059428557753563, 0.0006972377886995673, -0.016788523644208908, -0.00921668577939272, -0.03722195699810982, 0.006140933372080326, 0.015205871313810349, -0.007322358433157206, -0.020759863778948784, -0.03297046571969986, -0.01856449991464615, 0.02384401112794876, -0.022616973146796227, -0.014750528149306774, 0.04220980033278465, 0.04211457073688507, -0.030754951760172844, 0.055721089243888855, 0.006931384094059467, -0.0022934069857001305, 0.006081949919462204, -0.032717540860176086, -0.02545776031911373, -0.013562526553869247, 0.007162400986999273, 0.06266968697309494, -0.041443947702646255, -0.031108809635043144, -0.04993068054318428, 0.04735850542783737, 0.04300535097718239, 0.02115560881793499, -0.015234366990625858, -0.004019272979348898, -0.009965290315449238 ]
Q: Save data as text file from spark to hdfs I processed data using pySpark and sqlContext using the following query: (sqlContext.sql("select LastUpdate,Count(1) as Count" from temp_t) .rdd.coalesce(1).saveAsTextFile("/apps/hive/warehouse/Count")) It is stored in the following format: Row(LastUpdate=u'2016-03-14 12:27:55.01', Count=1) Row(LastUpdate=u'2016-02-18 11:56:54.613', Count=1) Row(LastUpdate=u'2016-04-13 13:53:32.697', Count=1) Row(LastUpdate=u'2016-02-22 17:43:37.257', Count=5) But I want to store the data in a Hive table as LastUpdate Count 2016-03-14 12:27:55.01 1 . . . . Here is how I create the table in Hive: CREATE TABLE Data_Count(LastUpdate string, Count int ) ROW FORMAT DELIMITED fields terminated by '|'; I tried many options but was not successful. Please help me on this. A: Why not load the data into Hive itself, without going through the process of saving the file and then loading it to hive. from datetime import datetime, date, time, timedelta hiveCtx = HiveContext(sc) #Create sample data currTime = datetime.now() currRow = Row(LastUpdate=currTime) delta = timedelta(days=1) futureTime = currTime + delta futureRow = Row(LastUpdate=futureTime) lst = [currRow, currRow, futureRow, futureRow, futureRow] #parallelize the list and convert to dataframe myRdd = sc.parallelize(lst) df = myRdd.toDF() df.registerTempTable("temp_t") aggRDD = hiveCtx.sql("select LastUpdate,Count(1) as Count from temp_t group by LastUpdate") aggRDD.saveAsTable("Data_Count") A: You created a table, now you need to fill it with the data you generated. This could be ran from a Spark HiveContext, I believe LOAD DATA INPATH '/apps/hive/warehouse/Count' INTO TABLE Data_Count Alternatively, you may want to build a table over the data CREATE EXTERNAL TABLE IF NOT Exists Data_Count( LastUpdate DATE, Count INT ) ROW FORMAT DELIMITED FIELDS TERMINATED BY '|' STORED AS TEXTFILE LOCATION '/apps/hive/warehouse/Count';
[ -0.003048331243917346, 0.0010971263982355595, 0.008852406404912472, -0.011299132369458675, -0.012539653107523918, 0.012484855018556118, 0.019268834963440895, 0.014230773784220219, 0.033697377890348434, 0.034662630409002304, -0.014851393178105354, -0.022401217371225357, 0.015124117955565453, -0.028242168948054314, -0.009665592573583126, -0.007806816138327122, -0.007491361815482378, -0.03286979719996452, -0.008743091486394405, 0.02027859538793564, -0.0036616206634789705, 0.042280811816453934, -0.06607187539339066, -0.0437612421810627, -0.038126036524772644, 0.040222786366939545, 0.010965594090521336, 0.00018743574037216604, 0.04830510914325714, 0.04931192845106125, -0.030869239941239357, -0.020167138427495956, 0.003856100607663393, -0.0643836110830307, 0.007614781614392996, -0.0005540173151530325, 0.06581693142652512, 0.0003402541915420443, -0.039308130741119385, -0.018665077164769173, 0.01948368549346924, -0.008914598263800144, 0.050604984164237976, -0.05067010596394539, -0.06596189737319946, -0.02253763936460018, -0.01762227527797222, 0.0013340706937015057, 0.006232029292732477, -0.026829876005649567, 0.0002797067863866687, -0.010482209734618664, 0.03409767150878906, -0.004342635627835989, -0.000611062569078058, 0.01474418118596077, 0.015994204208254814, 0.010688237845897675, -0.04245702922344208, 0.023132123053073883, 0.015612096525728703, 0.004610094707459211, 0.04774104431271553, -0.011382422409951687, 0.008181609213352203, 0.010343066416680813, -0.02156871370971203, -0.033095791935920715, 0.011263673193752766, -0.04918284714221954, -0.03816261515021324, -0.01040070690214634, -0.03909187763929367, -0.020154668018221855, -0.01884130947291851, 0.0096589932218194, -0.0034453095868229866, -0.03478420898318291, 0.013509721495211124, 0.023835139349102974, 0.011006881482899189, 0.0446043387055397, 0.013551007024943829, 0.015543662011623383, -0.023403743281960487, -0.04575159028172493, 0.030265718698501587, -0.008642195723950863, 0.042075544595718384, 0.00011127896141260862, -0.03324483335018158, 0.042033787816762924, 0.008068486116826534, 0.018825996667146683, 0.027219649404287338, 0.07094750553369522, -0.020053094252943993, 0.04933695122599602, 0.017413882538676262, 0.02266768366098404, 0.025379924103617668, 0.047833822667598724, -0.010347987525165081, 0.050575535744428635, 0.015468114987015724, -0.007455560378730297, 0.01651669107377529, -0.0024139415472745895, -0.014438506215810776, -0.0026521659456193447, 0.008808264508843422, -0.04164397716522217, 0.046685751527547836, -0.004070876631885767, 0.0074381218291819096, 0.06898374855518341, 0.00574138481169939, 0.03163093701004982, -0.007260162383317947, -0.03229137882590294, 0.015135650523006916, -0.001563747995533049, 0.04515034332871437, -0.054434265941381454, -0.01798606663942337, -0.06528956443071365, -0.01971125788986683, 0.05705421417951584, -0.013797750696539879, -0.026395365595817566, 0.01398771908134222, -0.03865979611873627, -0.005832655355334282, 0.009875784628093243, 0.013481199741363525, 0.0009948761435225606, 0.0182512104511261, 0.012837748974561691, 0.04096081852912903, -0.04335187003016472, 0.04354799911379814, 0.005464472807943821, -0.002084511099383235, 0.1030186116695404, 0.02067342773079872, 0.024232488125562668, 0.020593468099832535, -0.005003134720027447, -0.06571391224861145, 0.06552481651306152, -0.033271852880716324, 0.022011926397681236, 0.021874893456697464, 0.008778667077422142, -0.007989943027496338, 0.0053075337782502174, -0.025671828538179398, 0.0032028185669332743, 0.0029014351312071085, 0.022230759263038635, -0.0193758737295866, -0.01623636484146118, -0.020855864509940147, 0.010100595653057098, 0.006149033550173044, 0.035116150975227356, -0.03622957691550255, 0.0015316142234951258, -0.03237629309296608, -0.047444652765989304, 0.030030732974410057, -0.015947891399264336, -0.012639284133911133, 0.012838645838201046, 0.0558319091796875, 0.019730770960450172, 0.032957736402750015, -0.026462014764547348, 0.04220861941576004, 0.03845246136188507, -0.04822280630469322, 0.018422532826662064, -0.006609741598367691, 0.04245765134692192, 0.034381765872240067, 0.007460309658199549, 0.003965173847973347, -0.007172886282205582, -0.0025314532686024904, -0.03707890585064888, 0.009989304468035698, 0.05652599409222603, -0.028591366484761238, 0.03848125413060188, 0.0028038378804922104, -0.020202968269586563, -0.05292930826544762, -0.009385292418301105, -0.03681548684835434, -0.013221911154687405, -0.014696713536977768, 0.04045690968632698, -0.002224137308076024, 0.0003943041374441236, -0.007584956008940935, -0.0031462868209928274, 0.021830474957823753, 0.05468355119228363, -0.026829034090042114, -0.010997997596859932, 0.03725483641028404, -0.02707618847489357, -0.002196323126554489, -0.006652918644249439, 0.02090461365878582, -0.008066459558904171, -0.05690159276127815, 0.06587124615907669, -0.004715294577181339, -0.031113700941205025, -0.009873063303530216, -0.0017389542190358043, 0.03309256583452225, 0.02924361266195774, -0.0051774499006569386, 0.0050802226178348064, 0.02468520775437355, 0.02574281394481659, 0.0169268436729908, 0.021427491679787636, 0.035372041165828705, 0.04822678118944168, 0.03326096758246422, 0.04588772729039192, 0.032840795814991, -0.02280917391180992, 0.047443799674510956, 0.024419274181127548, -0.01616530865430832, 0.033729325979948044, -0.021116459742188454, 0.009698974899947643, 0.0034508071839809418, 0.025764163583517075, 0.006070985458791256, 0.018696626648306847, -0.03096802718937397, -0.028957294300198555, -0.02779942937195301, 0.053883932530879974, -0.052951887249946594, 0.02411331981420517, 0.00892813690006733, 0.012304051779210567, -0.04539055377244949, -0.0291422288864851, 0.04325271025300026, 0.02664029598236084, -0.03334801644086838, -0.02592281810939312, 0.005987606011331081, 0.031114965677261353, -0.01649286225438118, 0.027559073641896248, 0.01551035325974226, 0.026376571506261826, -0.007775541860610247, 0.01122746430337429, 0.03156815469264984, -0.018026728183031082, -0.03182961419224739, -0.05593961477279663, -0.024719838052988052, -0.02725030481815338, -0.07215780019760132, 0.004180939868092537, 0.042180683463811874, -0.043288704007864, 0.02355218678712845, -0.010390814393758774, 0.016292216256260872, -0.0493413545191288, -0.010955773293972015, 0.035074666142463684, 0.024677395820617676, 0.01933758333325386, -0.04079277440905571, 0.0012133978307247162, 0.0030794148333370686, 0.047100212424993515, -0.030714526772499084, -0.03043133206665516, 0.014522490091621876, 0.007066934369504452, 0.029343489557504654, -0.026080871000885963, -0.0078044128604233265, -0.01256194245070219, -0.010852448642253876, -0.05744830146431923, -0.03019525110721588, 0.033055033534765244, -0.03309106081724167, -0.028035033494234085, -0.00531617971137166, 0.04519039765000343, 0.03197002783417702, -0.0503009557723999, 0.04613163694739342, 0.0495636872947216, -0.02535340189933777, 0.006690674461424351, 0.030227703973650932, 0.004281917586922646, -0.04675823077559471, 0.04137462377548218, 0.049486011266708374, -0.026213066652417183, -0.03160804882645607, -0.026081159710884094, -0.025232933461666107, 0.008429582230746746, -0.004318754654377699, -0.029057489708065987, -0.03722894564270973, 0.030933210626244545, -0.010986199602484703, -0.04664791002869606, 0.009306296706199646, -0.03843776881694794, -0.0183731522411108, -0.023717036470770836, -0.024446753785014153, 0.04299236834049225, -0.008059447631239891, 0.02728653885424137, -0.015492231585085392, -0.01513709593564272, 0.0354158841073513, 0.03849015757441521, 0.03506254404783249, -0.028001680970191956, -0.011663299985229969, 0.06844096630811691, 0.014976725913584232, 0.007057796698063612, 0.04755992442369461, -0.01862638257443905, 0.00004376423021312803, 0.004925084766000509, -0.022411787882447243, -0.006483063101768494, 0.052943360060453415, 0.031008491292595863, 0.018706245347857475, 0.05924912169575691, -0.04227304458618164, -0.003008976113051176, 0.019801555201411247, -0.0019055070588365197, 0.05732416361570358, -0.0014200545847415924, -0.006254874635487795, 0.0005828843568451703, -0.023265434429049492, -0.06019632890820503, 0.02669193223118782, 0.01464419811964035, 0.06876631081104279, -0.04893636703491211, 0.08129484951496124, 0.00875350646674633, 0.0005006174324080348, 0.05492484197020531, -0.04689064994454384, -0.00624843267723918, 0.05813101306557655, -0.01825910247862339, 0.05291411280632019, -0.04783512279391289, -0.0086955726146698, 0.0030800665263086557, 0.023147791624069214, 0.02836507558822632, 0.034641820937395096, 0.06839337944984436, -0.00828313548117876, 0.018079515546560287, -0.03343331441283226, 0.022149279713630676, -0.0005516356904990971, -0.03143267333507538, 0.011543233878910542, -0.01749616302549839, -0.03368331491947174, -0.05590900406241417, 0.02122638188302517, 0.041872669011354446, 0.04231542348861694, -0.031314417719841, 0.04223976284265518, -0.0005041273543611169, 0.027465492486953735, 0.039171360433101654, 0.01728779822587967, 0.019894741475582123, -0.03753593936562538, 0.011726409196853638, 0.03906983882188797, -0.004496268928050995, -0.01946883089840412, -0.030098266899585724, -0.049067236483097076, 0.00783889926970005, 0.023314308375120163, -0.00111242791172117, -0.009451107122004032, 0.028942881152033806, -0.001282121054828167, 0.032712001353502274, -0.02582971379160881, -0.008931195363402367, -0.0010426471708342433, 0.018395641818642616, -0.0004973714239895344, -0.04710020124912262, -0.0028348485939204693, -0.047601643949747086, 0.00668520200997591, 0.03882945701479912, 0.0024907037150114775, -0.0598665252327919, -0.050018422305583954, -0.004350711591541767, -0.03155972436070442, 0.021203428506851196, 0.055037833750247955, -0.015570621937513351, 0.023841390386223793, -0.07865340262651443, 0.02996795065701008, 0.017709653824567795, 0.009837721474468708, -0.02398070879280567, -0.012183530256152153, 0.024628620594739914, -0.007261418737471104, 0.029295900836586952, -0.02090788260102272, -0.006167201790958643, -0.005588768515735865, -0.046515416353940964, 0.01105375587940216, -0.023748010396957397, -0.01870778761804104, 0.02331756241619587, -0.03207206726074219, 0.009796708822250366, 0.031136712059378624, -0.015972811728715897, -0.0018298004288226366, -0.015945201739668846, 0.0217282734811306, -0.02863343618810177, -0.05652221664786339, 0.06965942680835724, -0.008920177817344666, -0.034157779067754745, 0.04818293824791908, 0.051538921892642975, -0.0032526294235140085, 0.020901797339320183, 0.01449591014534235, -0.018775690346956253, 0.04023797810077667, -0.05217646062374115, 0.03318411856889725, -0.04152192175388336, -0.0029356947634369135, -0.024388935416936874, -0.024180306121706963, 0.05504612624645233, 0.026325872167944908, -0.00027190044056624174, -0.032849978655576706, -0.09100274741649628, -0.00823324266821146, 0.001724206143990159, -0.043714653700590134, 0.026843233034014702, -0.007073697168380022, -0.034816205501556396, -0.037417154759168625, -0.0069443522952497005, -0.024694863706827164, 0.008344527333974838, 0.0370965413749218, -0.01097335945814848, -0.00917929969727993, 0.013911346904933453, 0.006440453696995974, -0.003781722392886877, -0.052068132907152176, 0.007347961887717247, 0.010320452973246574, -0.024522146210074425, -0.044129494577646255, -0.02010866068303585, 0.013190722092986107, -0.04084932059049606, -0.02670132741332054, -0.005069558043032885, -0.0378204770386219, 0.0074722352437675, -0.007102576084434986, 0.030344361439347267, 0.020134693011641502, -0.011402650736272335, -0.023351406678557396, 0.03951355069875717, 0.0343259796500206, -0.060430943965911865, -0.030201029032468796, 0.0345173105597496, -0.012261541560292244, 0.044242825359106064, 0.011411871761083603, -0.01603396236896515, -0.054838940501213074, -0.06268728524446487, 0.018201058730483055, -0.0073302811942994595, -0.00763957854360342, -0.03065345250070095, -0.060929570347070694, -0.031659457832574844, 0.028470324352383614, 0.04181365296244621, -0.042173951864242554, 0.01419923361390829, -0.04400553181767464, 0.0019150321604683995, -0.03202187642455101, -0.020036695525050163, -0.030342238023877144, 0.003138876985758543, -0.0039873383939266205, 0.04923699051141739, -0.05612286180257797, 0.02579883299767971, 0.02887609601020813, -0.0037399756256490946, 0.012885535135865211, 0.002163269091397524, -0.045963771641254425, -0.012403888627886772, 0.012575040571391582, 0.0012152512790635228, -0.010175270028412342, 0.012543296441435814, -0.06577486544847488, 0.02513037621974945, -0.039325565099716187, -0.01564851403236389, -0.011837420053780079, -0.025281935930252075, -0.006504420191049576, 0.020542049780488014, 0.051022231578826904, -0.03758656233549118, -0.0012354697100818157, -0.0257575623691082, 0.0435665138065815, 0.01877976581454277, 0.025762854143977165, -0.019915975630283356, -0.010889722034335136, -0.07207770645618439, -0.05839413404464722, 0.02243923582136631, -0.03310210630297661, -0.02999025024473667, -0.008038406260311604, -0.00908693578094244, 0.03638633340597153, -0.017147520557045937, 0.033144623041152954, 0.09250758588314056, 0.012653461657464504, 0.005604758393019438, 0.024590207263827324, 0.01313418336212635, 0.027867458760738373, -0.028549781069159508, 0.0018125275382772088, 0.010196133516728878, -0.06263580918312073, 0.005341669078916311, -0.043129630386829376, -0.05233527719974518, -0.029151160269975662, -0.012637495063245296, 0.06649775803089142, -0.04726603999733925, 0.04355090484023094, 0.036985576152801514, -0.04611514136195183, -0.03662491217255592, 0.03622772917151451, -0.010632532648742199, -0.009291681461036205, 0.058733101934194565, 0.007369908969849348, 0.007096447516232729, 0.017603734508156776, 0.003943765535950661, 0.018494615331292152, -0.0338648296892643, 0.062237925827503204, -0.005582864861935377, -0.029025983065366745, 0.023178616538643837, 0.043406497687101364, -0.07416378706693649, -0.05357110872864723, -0.021528281271457672, -0.003287087194621563, 0.005667196586728096, -0.04806859418749809, 0.01248371135443449, -0.011660474352538586, -0.027529941871762276, -0.010962354950606823, 0.036223914474248886, 0.011798580177128315, 0.024124858900904655, 0.004334825091063976, 0.03131621703505516, -0.038970980793237686, 0.01452329196035862, 0.04236466437578201, -0.00168015924282372, 0.009909054264426231, -0.0455770418047905, -0.001868365565314889, -0.009693640284240246, 0.012673381716012955, 0.030757546424865723, 0.009913884103298187, 0.027085991576313972, 0.006578102707862854, 0.009611510671675205, 0.040878165513277054, -0.007762715686112642, -0.0033102508168667555, -0.015234498307108879, -0.009586266241967678, -0.05656484514474869, -0.017366323620080948, 0.019325358793139458, 0.015098928473889828, 0.019283361732959747, -0.05899115279316902, 0.005018169526010752, 0.041815660893917084, -0.012902464717626572, -0.013021942228078842, -0.0716605931520462, -0.007967698387801647, -0.04690190404653549, -0.03811728209257126, -0.04849381372332573, -0.03319314494729042, -0.037530817091464996, 0.034379106014966965, 0.014347849413752556, -0.05751578137278557, -0.024640584364533424, 0.019473783671855927, -0.034086503088474274, 0.022310785949230194, -0.04231494292616844, -0.023443982005119324, -0.03970564901828766, -0.01198236271739006, -0.0675421953201294, 0.014951634220778942, 0.011779054068028927, 0.008047740906476974, -0.020137520506978035, -0.0005312601570039988, -0.032870057970285416, 0.018046578392386436, 0.023577705025672913, 0.01073908805847168, -0.033219411969184875, -0.022772081196308136, -0.013548887334764004, -0.0016433137934654951, -0.012377411127090454, 0.019532635807991028, 0.03805685415863991, -0.008951684460043907, -0.00044826738303527236, 0.032531701028347015, -0.01540729496628046, -0.02861197479069233, 0.03217080980539322, 0.03722796216607094, -0.03011060692369938, -0.041651949286460876, -0.027756059542298317, 0.017632776871323586, -0.05855611339211464, 0.0010372126707807183, 0.009527016431093216, -0.001258961157873273, -0.009651250205934048, -0.006294747814536095, -0.01527601107954979, 0.04838864132761955, -0.027282612398266792, 0.024675335735082626, 0.0041875774040818214, 0.003668162040412426, 0.0086100734770298, -0.002143855206668377, 0.001771734794601798, -0.0010639819083735347, 0.0013478024629876018, -0.010466628707945347, 0.024197334423661232, -0.030323736369609833, 0.0014537203824147582, 0.04941094294190407, -0.01018955186009407, -0.012329612858593464, -0.013546230271458626, -0.003225980792194605, 0.021577535197138786, 0.0535782054066658, -0.0004287850169930607, -0.004720001947134733, 0.022542955353856087, -0.05588808283209801, -0.0447169691324234, 0.0033177018631249666, -0.06048215925693512, -0.053933486342430115, 0.06634459644556046, -0.023367343470454216, -0.010349470190703869, -0.010545768775045872, -0.024262582883238792, -0.0051691108383238316, 0.02593271993100643, -0.014205998741090298, -0.018556911498308182, -0.004610133357346058, -0.0009946976788342, 0.019486071541905403, -0.0029893394093960524, -0.008146943524479866, 0.0017917456571012735, 0.0329497754573822, -0.032612767070531845, -0.004066385328769684, 0.0017445894191041589, 0.04359503090381622, 0.023652836680412292, 0.009314034134149551, 0.004674338735640049, -0.014415870420634747, -0.003398091299459338, 0.014786623418331146, 0.0204082690179348, 0.004451557993888855, 0.016945527866482735, 0.00023663401952944696, -0.025239208713173866, -0.000045621636672876775, -0.033720530569553375, 0.04509580135345459, 0.009784662164747715, -0.017360812053084373, -0.03612696751952171, 0.06165694445371628, 0.016393711790442467, 0.01689370535314083, 0.05666092783212662, 0.03026226907968521, 0.018923960626125336, 0.0038152881897985935, -0.013211319223046303, -0.019773956388235092, 0.0436328686773777, 0.050487030297517776, 0.02776375226676464, -0.011106175370514393, 0.03656275197863579, 0.03581986948847771, 0.023186378180980682, -0.015199301764369011, 0.036852166056632996, 0.047186996787786484, -0.027434155344963074, 0.01932157762348652, -0.023054039105772972, -0.023287510499358177, -0.02176019549369812, -0.0014410080621019006, 0.020447181537747383, -0.006522672716528177, -0.007796424441039562, -0.04557206854224205, -0.03395271301269531, 0.027190597727894783, 0.010941916145384312, -0.028239943087100983, -0.000797014799900353, 0.010954393073916435, -0.0022850120440125465, 0.031103556975722313, -0.023297246545553207, -0.015006904490292072, 0.04550253599882126, 0.04319596290588379, 0.020995547994971275, 0.044499658048152924, 0.018169689923524857, 0.02773343212902546, -0.03426356241106987, 0.03495599329471588, -0.010339531116187572, 0.041776154190301895, -0.0526387058198452, 0.009518838487565517, -0.0501897931098938, 0.03085893578827381, -0.017616191878914833, -0.0017415588954463601, 0.0368809811770916, -0.034131549298763275, -0.055679406970739365, -0.047153979539871216, 0.0270460844039917, -0.05014605075120926, 0.030742613598704338, 0.047326721251010895, -0.006967006716877222, -0.008213270455598831, 0.022770551964640617, 0.018834872171282768, 0.03414158895611763, -0.026609279215335846, 0.06606904417276382, 0.025667548179626465, 0.033103395253419876, 0.07304495573043823, -0.015353352762758732, -0.0219910629093647, 0.0224896389991045, 0.000032560430554440245, -0.03176017850637436, -0.02065928652882576, -0.03324391320347786, 0.00679856026545167, -0.004332834389060736, -0.027026260271668434, -0.003251059679314494, 0.018629003316164017, -0.02160169556736946, -0.03590718284249306, 0.02394680492579937, 0.03227230906486511, -0.050685588270425797, 0.01778397150337696, 0.0011898888042196631, 0.025311192497611046, -0.011963590048253536, -0.03848662227392197, -0.012678837403655052, -0.05006417632102966, 0.026961565017700195, 0.005381877534091473, 0.02265998162329197, 0.022902395576238632, -0.06702759861946106, -0.02552272565662861, -0.036552008241415024, -0.02570459246635437, -0.00387989217415452, -0.025516405701637268, -0.03150328993797302, 0.03808201104402542, 0.05106876417994499, 0.034994278103113174, -0.0047915964387357235, -0.0440409779548645, -0.014513258822262287, 0.026605714112520218, 0.07644583284854889, 0.022921733558177948, 0.056217215955257416, 0.03285400941967964, -0.007550628390163183, 0.019638093188405037, -0.022220326587557793, 0.03356540575623512, -0.006461948622018099, -0.03645050898194313, -0.007316500414162874, -0.005972329992800951, -0.024532679468393326, -0.08326172828674316, -0.022413797676563263, 0.011857390403747559, 0.007542033214122057, -0.042888227850198746, -0.04159524291753769, 0.005041436292231083, -0.01781449280679226, -0.01304010022431612, -0.054045453667640686, 0.02105293609201908, 0.01277149748057127, -0.02923835813999176, 0.009385067969560623, -0.07229220122098923, 0.1421784907579422, 0.0673145204782486, 0.046663396060466766, -0.03723178431391716, 0.011444304138422012, 0.059827156364917755, 0.04066640883684158, -0.011623063124716282, -0.019301680848002434, -0.052652861922979355, 0.028406571596860886, -0.027923505753278732, 0.002839045599102974, 0.029913779348134995, 0.000706006190739572, 0.04889960214495659, -0.04570714756846428, 0.004858912900090218, 0.04092070087790489, -0.059282153844833374, -0.07264786213636398, 0.019296642392873764, 0.006168576423078775, 0.05556371062994003, 0.010165423154830933, 0.003964496310800314, 0.048690635710954666, -0.0375947542488575, -0.019836321473121643, 0.017239892855286598, 0.022704511880874634, -0.04018579423427582, 0.02029990218579769, -0.0177703108638525, -0.03194361925125122, 0.04109520465135574, 0.015364858321845531, -0.015654077753424644, 0.00481226434931159, 0.020234273746609688, -0.004476562608033419, 0.00951039046049118, 0.01179609913378954, -0.053063202649354935, -0.003557705320417881, 0.020590003579854965, -0.011795214377343655, 0.03891294077038765, 0.02576308511197567, -0.04895200952887535, 0.034886233508586884, -0.04846339672803879, 0.01415931060910225, -0.03512001037597656, -0.04316967725753784, -0.022239429876208305, 0.0035281144082546234, -0.04328232631087303, -0.021878691390156746, 0.016885172575712204, 0.02028108946979046, 0.020207025110721588, 0.0012017469853162766, 0.02310275286436081, -0.018774257972836494, -0.009451952762901783, -0.012562553398311138, 0.014812621288001537, -0.00471492251381278, -0.01684005931019783, -0.017017439007759094, -0.011591757647693157, 0.00790384504944086, -0.047184985131025314, 0.006188517902046442, 0.03858404606580734, -0.02202056720852852, 0.021313752979040146, 0.02751111425459385, -0.004579968750476837, 0.016017261892557144, -0.022235166281461716, -0.0025224420242011547, -0.04219631478190422, 0.0037874619010835886, 0.05949919670820236, -0.025331828743219376, -0.02854866161942482, 0.005653454922139645, 0.025178343057632446, 0.055951785296201706, 0.03406644985079765, -0.005433973390609026, 0.020566975697875023, -0.016262073069810867 ]
The kind of books I like Click here to read my reviews of Sleeping Dogs by Ed Gorman, Somebody Owes Me Money by Donald Westlake, Dirty Money by Richard Stark (Westlake) and Zero Cool by John Lange (Michael Crichton). Lessons learned from trenches: Part 11 Writing Again In 2002 I also started writing again, and the first thing I worked on after this 5-year break was a short crime story, More Than a Scam. This could be the first and only Nigerian-email scam story, and the way it came about was after getting yet another scam email, I posted on a yahoo hardboiled writers group that it would be an interesting topic for people in the group to write stories about. No one took me up on that, so I decided to do it. At first I was planning to do the same as my fictional writer in the story---trade emails with these scam artist and write up the exchange as a story. Instead, I went a different direction and wrote a noirish crime story with my protagonist having his own ulterior motives for participating in this scam. I knew it was a good story when I was done, and it ended up making honorable mention in the 2003 Best American Mystery Stories anthology, with Otto Penzler mentioning to my agent at the time that he was disappointed the story wasn't selected by his editor for that volume as one of the top 20. By nature I'm driven to create things. That's the reason I spent over 20 years as a software developer, why I started Hardluck Stories, and why I write. Back in 2002 one of the things I tried creating was a Yahoo group to match short crime fiction to publications. The way this would work is writers would post a one-paragraph description of the story they were trying to sell, as well as a bio, and editors would contact them off-list. I think I called this group the Short Mystery Fiction Warehouse. It seemed like a good idea, but none of the paying magazines participated, only non-paying web-zines. Some stories ended up being placed through this, but it didn't work out the way I had hoped and after a short time I shut it down. At the time I knew More Than a Scam would have a good shot with both AHMM and EQMM, two magazines I wanted to break in to, but I wanted to support this fiction warehouse concept so I made the story available through it, and a web-zine Mysterical-E ended up asking for it. The people I dealt with at Mysterical-E were professional and treated my story well, but it was a mistake not trying for the higher markets first. These days if a web-zine or low-paying market that I respect asks me for a story, I'll provide one to help support them, but whenever you have a story that's a good fit for a top market, always submit to them first. Always. With the reaction More Than a Scam was receiving I thought I hit upon a formula for success—choose a topical theme. Well, maybe for short stories, but it doesn't quite work out well for novels, as I'll be discussing in a future lessons from the trenches. taking this week off I sent off my third book (Killer) to Serpent's Tail yesterday, and am celebrating by taking off today to get a Maine lobster roll up in Kennebunkport, among other things. Lessons learned in the trenches will be back next week. In the meantime, feel free to leave any questions that I can answer about running a web-zine, breaking into publishing with dark crime fiction, or anything else writing-related, and I'll see what I can come up with. 11,000 gallons of gasoline on fire This happened a few miles from my home last Saturday. Posted by Dave Zeltserman at 5:50 PM 1 comment: Lessons learned from the trenches: Part 10 Hardluck In the early 90s I was working for Digital Equipment Corporation (once over 130,000 employees, now no longer exists), and during a trip to Palo Alto a friend of mine working for their Western Research Lab showed me a demo of an early Internet browser (xmosaic) when at that point the Wide World Web consisted of six demo web sites. I'd like to say that I thought of then someday starting a crime fiction web-site, but my thoughts were more business oriented—I considered at that time buying a Cisco router, a workstation, and starting what would've been one of the first ISPs and dedicating it to field service personnel, something that would allow them to access technical manuals anywhere they had access to the Internet. If I had done that I'd be very wealthy right now, but I chickened out. But a few years later as the web became more popular I started thinking of building a crime fiction web-site, and in 2002 I started Hardluck Stories. The name originated from my novel, Fast Lane, where early on I have a street pimp named Rude complaining to celebrity detective, Johnny Lane, about his newspaper column which details his PI exploits: "Maybe I should talk to your editor. If he's going to publish crap like 'Fast Lane', maybe he'd be interested in something good. Something real. The Rude Streets, stories of the Hardluck." Originally Hardluck was a site to promote hardboiled and noir books. Each book on the site had links to an author-written essay about the book—why the writer wrote it, what inspired it, etc., and a short story by the author. This concept would allow readers to discover new writers by reading these essays and short stories. I had a dozen or so authors participating in this, but it didn't take off the way I had hoped, and eventually the site mutated to a quarterly hardboiled/noir fiction web-zine whose six-year run has just ended. My reasons for starting Hardluck were varied—it was partly to help me promote my self-published book, partly to give myself a creative outlet since I wasn't having much luck at that time finding a publisher for my books, and partly to help out newer writers like myself. What differentiated Hardluck from the other web-zines and publications, at least at that time, was that I was going to be using a different guest editor for each issue. I had several reasons I wanted to do this: 1) so that the web-zine wouldn't become cliquish, which I was noticing with some of the crime fiction web-zines back then—I wanted to make sure mine would be fair and not just me publishing friends 2) I wanted to keep the web-zine fresh and introduce ideas that I might not have thought of myself 3) I had gotten to know Vicki Hendricks through her guest-editing an issue of PlotsWithGuns and picking one of my stories, and I wanted to create the same type of situation for other guest editors and newer writers. I think it was due to this constant injection of new ideas from my guest editors and fairness in selecting submissions that caused Hardluck to increasingly get better submissions, to where in my opinion Hardluck was consistently putting out one of the highest quality short crime collections I've seen either on the web or in print. In some ways starting Hardluck contributed to my first book escaping the stench of self-publishing and ending up with Point Blank Press. In a lot of ways this is one of those space-time continuum thingies that they'd have on Star Trek and other sci-fi shows. While I was doing this I got to know another frustrated noir writer—Allan Guthrie, and I ended up publishing his first short story, as well as the two of us showing each other our unsold novels and other works and trading ideas about them. That first publication of Al's story triggered others, and the next thing I knew he was starting up what became Point Blank Press with JT Lindroos, and the first book Al commissioned was In His Shadow, which wisely had it's name changed to Fast Lane. So I published Al's first story and he published my first book—while I had sold the Italian rights to In His Shadow first to Meridiano Zero, Point Blank beat them to the punch by publishing their version several months before the Italian version was out. Lessons learned from the trenches: Part 9 In 2001 the computer networking startup I was working at was bought by Lucent Corporation, and it looked like I was going to make a lot of money. It didn't happen—by the time we could sell our options Lucent stock had tanked and I wasn't thinking clearly enough to buy call options to lock in my gains, but the experience did make me think about what I wanted to do with the rest of my life, and it came back to writing. I had two books, In His Shadow (Fast Lane) and Bad Thoughts stored away, both of which I thought could be published. Around this time iUniverse and MWA had set up an arrangement where MWA members could have there books self-published free with iUniverse under their Mystery and Suspense Press imprint. I had convinced myself that the publishing world was a private club closed to me, that it was pointless sending my books out again, but if I sacrificed one of my books to self-publishing, I'd be able to get enough positive blurbs and comments on it that I would be able to find interest for my other book. This was wrong thinking on my part—once again the publishing world had changed from '97 to '01. There were more legitimate small presses I could've considered, plus some excellent UK houses like Serpent's Tail and No Exit Press which I had never tried, as well as some of the NY houses being more open to darker material than they were a few years earlier. I decided that of my two books, Bad Thoughts was the better of the two, so I joined MWA as a full member since I was eligible from my New Mystery and Hardboiled sales, and I had In His Shadow self-published with iUniverse under the MWA program. I had no expectation of sales—my sole reason was to use the book as a kind of resume to get Bad Thoughts sold, and while some good things came out of it, it was a mistake. I don't want this to become a debate over self-publishing, I know with some people it's pretty much like debating religion. I'm simply going to state my observations after having gone through it, as well as my sentiment that no serious writer should ever take this step, but beyond that I'm not going to enter into any debate over self-publishing. Here are a few general observations before going into more specifics: Most bookstores obviously won't sell these books except possibly under consignment basis. The reason for this—outside of the general opinion that most self-published books are crap—because of the no return policy PODs typically have, as well as the low discounting. Major newspapers will not review self-published books. All you do is open yourself up to frustration trying—I had a reviewer at the Rocky Mountain News who liked In His Shadow and submitted a good review for it, only to have her editor pull it because of their policies on self-published books. The reason major papers won't review self-published books, outside of the general opinion that they're all crap—they're not going to be in bookstores, so why review them? Most legitimately published writers look at self-published books as crap, as well as most of the industry, and you're going to be looked at as a joke or pathetic going this route. A first-time writer only has a chance to be a first-time writer once. The industry treats first-time writers specially—both with reviews, awards and attention, and I can't think of a bigger waste for a writer than to throw away this opportunity by self-publishing. I self-published In His Shadow in '02, and have no complaints with iUniverse—they did everything that they were supposed to, in fact, they even did a little more by getting the book reviewed by Publishers Weekly. Again, I never looked at this book as published, just as a 263-page resume, and I started sending out letters to see if I could get some people to take a look at it, and found a few very generous people in the industry who were willing to—Gary Lovisi, who published my second story, Next Time, in Hardboiled, Bill Crider, who I appeared with in New Mystery #2, and Vicki Hendricks, who selected a noir story of mine when she guest-edited an issue of PlotsWitGuns. All three of them ended up liking the book and writing me very generous blurbs. With those blurbs in hand, I bought a small ad in Mystery Scene, which ended up getting Jeff Gelb contacting me, asking if I could send him a copy, which got me an invite to his Hot Blood 12 anthology, and my first anthology sale. Jeff also ended up recommending the book to Joe Hartlaub at BookReporter.com, where I ended up with a very nice review. I actually ended up with a lot of good reviews on the web and in a couple of small newspapers—as well as a mixed review from PW. All this led to my book being discussed on the Rara Avis hardboiled/noir fiction discussion list, which led to Luca Conti, who was translating for the Italian publishing house, Meridiano Zero, buying a copy, recommending it to his publisher, and me selling the rights to them. So there you have it, that's how I ended up selling to the Italian rights of my first book before ever selling the English. This led to more stuff which I'll talk about in future lessons learned, but it was still a mistake self-publishing, and I would've been much better served either finding a small press for In His Shadow or writing more books until I could break into a NY house. In my general observations above, I used the word crap a lot—that is not necessarily my view on self-published books—I've been there, I under the frustration and temptation to do it, but you're kidding yourself if you think that's not the way most people (authors, editors, reviewers, bookstores) view self-published books. Shortly after I started getting blurbs and reviews for In His Shadow I had someone from iUniverse call me about a program he was trying to start up to get the worthwhile books they print (can't call it publishing!) into chain bookstores, as well as more attention. He was calling me to let me know that he was trying to get In His Shadow in this new program, and that I should be patient and not try to find a legitimate publisher for it. During our phone call, he mentioned out of the 1000s of books that they print, maybe 100 of them deserved to be published. This alone should tell you how small the odds are on having any self-published book looked at seriously. With the small buzz I was getting for In His Shadows--over a dozen positive reviews, print ads, blurbs, discussions on Rara Avis, PW Weekly review, how many copies of In His Shadow did I end up selling? Maybe 200. And the book still haunts me like a bad case of herpes--after canceling the contract once I sold it to Point Blank Press in 2003 (published under the new name, Fast Lane), the book still shows up on amazon.com.
[ 0.004211640451103449, -0.0026766774244606495, -0.013851439580321312, -0.001557120238430798, -0.027366045862436295, -0.02451312728226185, -0.033059488981962204, 0.0026492702309042215, -0.012099534273147583, 0.03259332850575447, 0.040895067155361176, 0.04127120599150658, 0.015545709989964962, -0.03646388277411461, -0.03394116461277008, -0.017319072037935257, -0.009643114171922207, -0.032904934138059616, -0.0023548046592622995, 0.003668245393782854, 0.02316383086144924, 0.00792602077126503, -0.047444090247154236, -0.02686670795083046, -0.028734829276800156, 0.05035010725259781, 0.022984905168414116, 0.0009121140465140343, 0.062425605952739716, 0.0495062880218029, 0.004827902652323246, -0.007839500904083252, 0.0395255908370018, -0.06172690540552139, -0.042832229286432266, -0.009110716171562672, 0.046529654413461685, -0.024876385927200317, -0.012134390883147717, -0.055022019892930984, 0.013355563394725323, -0.026928545907139778, 0.004409230779856443, -0.03527482599020004, -0.03391255438327789, 0.00178226747084409, -0.028896646574139595, -0.026260405778884888, 0.028035705909132957, -0.0741812065243721, 0.026094580069184303, 0.01830381527543068, 0.043033454567193985, -0.010073206387460232, 0.020043283700942993, -0.0015499666333198547, 0.0013223111163824797, 0.005649765953421593, 0.0056498050689697266, 0.027287064120173454, 0.032727207988500595, -0.008885478600859642, 0.028193997219204903, -0.06682392954826355, 0.0387466661632061, 0.018721766769886017, 0.000311739684548229, 0.015663405880331993, 0.012665673159062862, -0.0034211091697216034, -0.000669420522172004, -0.02359575405716896, -0.03394882753491402, -0.00707672443240881, -0.004778471775352955, -0.028438596054911613, 0.018357254564762115, -0.011423509567975998, -0.005932454019784927, 0.005522734019905329, 0.003290522377938032, 0.061393335461616516, 0.006650314666330814, 0.028670256957411766, -0.06744268536567688, -0.0017791837453842163, -0.003592223860323429, 0.018218498677015305, 0.004033053759485483, -0.0009688872960396111, 0.02923230081796646, 0.061116453260183334, 0.03212253004312515, -0.01167566329240799, 0.016179244965314865, 0.03196338564157486, -0.0040227980352938175, 0.05306464061141014, 0.0023654059041291475, -0.003634875873103738, 0.043883685022592545, 0.012842539697885513, -0.006460465025156736, 0.044044528156518936, -0.042553212493658066, -0.009397934190928936, 0.011127057485282421, -0.01018007006496191, -0.004117120988667011, -0.000863893365021795, -0.01745687611401081, -0.0330861359834671, 0.03741777688264847, 0.0015733103500679135, -0.035914886742830276, 0.02610946074128151, 0.02382725477218628, 0.04309265315532684, -0.03277813643217087, 0.02436663582921028, 0.014893575571477413, 0.013883378356695175, 0.01726496033370495, -0.02234695479273796, -0.0012205211678519845, -0.05072278156876564, -0.03980172798037529, 0.06860420852899551, -0.037642594426870346, -0.015539477579295635, 0.008411116898059845, -0.03857037425041199, -0.03008502535521984, -0.002835252322256565, -0.028192192316055298, 0.01992087811231613, 0.0004695164680015296, 0.017949072644114494, 0.023916220292448997, -0.05628581345081329, 0.03389216586947441, 0.013344762846827507, 0.004239900503307581, 0.10157137364149094, -0.00946411769837141, 0.010680188424885273, -0.011112912558019161, -0.0012721243547275662, -0.031103843823075294, 0.05953296646475792, -0.06911811977624893, -0.016072938218712807, 0.020219385623931885, 0.023667924106121063, 0.015941865742206573, -0.017005441710352898, -0.0056591457687318325, 0.004154577385634184, 0.006983208004385233, 0.014738162979483604, -0.010562753304839134, -0.003038994735106826, 0.02191496640443802, 0.04456767067313194, -0.0007500894134864211, 0.03766414523124695, -0.012974183075129986, -0.02351517789065838, -0.03294992446899414, -0.024669168516993523, 0.004663854371756315, 0.0019050806295126677, -0.019261501729488373, 0.03478831797838211, 0.019768482074141502, 0.027419932186603546, 0.025742311030626297, -0.018274391070008278, 0.058193325996398926, 0.04504638910293579, -0.041897233575582504, 0.023139964789152145, 0.017039071768522263, 0.0878574475646019, 0.009046312421560287, -0.01004854217171669, 0.0163956880569458, -0.018312619999051094, -0.036570727825164795, -0.027577195316553116, -0.015736060217022896, 0.044805027544498444, -0.027453454211354256, 0.037193525582551956, 0.014578844420611858, -0.007545702625066042, -0.004712848924100399, -0.02313442900776863, 0.005408666096627712, -0.05864156782627106, -0.021466482430696487, 0.037555694580078125, -0.03290680795907974, 0.02904558554291725, -0.021693315356969833, -0.03590664640069008, 0.024246875196695328, 0.055559221655130386, -0.021832965314388275, 0.0033139027655124664, 0.03199293836951256, 0.008514813147485256, -0.005288098938763142, -0.04751487821340561, -0.0061100381426513195, 0.007275794632732868, -0.06384027749300003, 0.022712022066116333, -0.033557891845703125, -0.01032557338476181, 0.021851900964975357, -0.008469384163618088, 0.037707336246967316, 0.060932379215955734, 0.02086763270199299, -0.004687598906457424, -0.0001990182645386085, 0.03569577634334564, -0.03836718201637268, -0.03023380972445011, -0.01419073436409235, 0.039482347667217255, 0.03723657876253128, 0.037312936037778854, 0.05178387835621834, 0.00546514755114913, 0.0699802115559578, 0.053120993077754974, -0.01644878089427948, 0.04467873275279999, -0.009076936170458794, 0.02102578431367874, 0.025655511766672134, 0.03248948976397514, -0.005966532975435257, 0.012037382461130619, -0.02443797141313553, -0.02579127997159958, -0.031471941620111465, 0.029301097616553307, -0.014556803740561008, 0.03193065524101257, 0.016907203942537308, 0.03622965142130852, -0.017114169895648956, -0.01939762383699417, 0.024565454572439194, 0.044960472732782364, -0.019304335117340088, -0.010073848068714142, 0.01198506634682417, 0.015282544307410717, 0.0017263240879401565, 0.03082847036421299, 0.026545707136392593, -0.003026444697752595, -0.014064277522265911, 0.020415939390659332, -0.02863076515495777, -0.04221326857805252, -0.03925541415810585, -0.08651939034461975, -0.06651885062456131, -0.027180224657058716, -0.038418468087911606, 0.029509980231523514, 0.022739693522453308, -0.03393052890896797, 0.0007769615622237325, 0.007735937833786011, 0.001335865119472146, -0.02997635304927826, -0.003943647723644972, 0.028060954064130783, 0.018936842679977417, 0.023295573890209198, -0.05480344966053963, 0.06416846811771393, -0.020961927250027657, 0.046152301132678986, 0.005400349851697683, -0.022891804575920105, -0.01288610976189375, 0.0013248103205114603, 0.027525216341018677, 0.013033783994615078, 0.0011618154821917415, -0.005655184388160706, -0.048122018575668335, -0.05175991356372833, -0.006734114605933428, -0.008884672075510025, -0.022370025515556335, 0.0027888547629117966, -0.019107630476355553, 0.0543145015835762, 0.02892165631055832, -0.04776103049516678, 0.004002738278359175, 0.03445544093847275, -0.019984019920229912, 0.036626920104026794, 0.020088402554392815, 0.014445983804762363, -0.03059013932943344, 0.03532242774963379, 0.043982427567243576, -0.007275663316249847, -0.010257948189973831, -0.02847912721335888, -0.007567156106233597, 0.003147267969325185, 0.03501024842262268, -0.0036118512507528067, -0.01919003389775753, 0.03868378326296806, 0.04355420544743538, -0.07460732012987137, 0.033651985228061676, -0.05887326970696449, -0.03327205777168274, -0.024262994527816772, -0.029226062819361687, 0.026425382122397423, 0.013892022892832756, 0.027964064851403236, 0.0033070817589759827, -0.039976585656404495, -0.009726595133543015, 0.01082936767488718, 0.03131996840238571, -0.019484641030430794, 0.02029438316822052, 0.012782695703208447, 0.016464611515402794, 0.012061945162713528, 0.032116129994392395, -0.019174808636307716, 0.00004682090730057098, -0.0013111046282574534, 0.019077258184552193, 0.02232782170176506, 0.032081812620162964, 0.0029203593730926514, 0.007874163798987865, 0.060513630509376526, -0.023702846840023994, -0.018468283116817474, 0.03527373820543289, 0.0018849356565624475, 0.03629724681377411, 0.052984341979026794, -0.004904000088572502, -0.022185802459716797, -0.031534794718027115, -0.0489225797355175, 0.012012146413326263, 0.018399927765130997, 0.050834354013204575, -0.04116426780819893, 0.0737459659576416, -0.037926316261291504, -0.045130301266908646, 0.03270523250102997, -0.03787887468934059, -0.006206537131220102, 0.02366851083934307, -0.013955182395875454, 0.0537707544863224, -0.04560656473040581, 0.004568272270262241, -0.00818004459142685, 0.020506979897618294, 0.04331829026341438, -0.008129344321787357, 0.013289293274283409, -0.0218120776116848, -0.05182269588112831, -0.020591329783201218, 0.000363260944141075, -0.044736597687006, -0.007082780823111534, 0.025905700400471687, -0.026852121576666832, -0.045873012393713, -0.05764561891555786, 0.05928827449679375, 0.04875924438238144, 0.05537262558937073, 0.011743912473320961, 0.03520060330629349, 0.0019847648218274117, 0.01548314094543457, 0.03716495260596275, -0.006719192489981651, 0.026124533265829086, -0.03464247286319733, 0.028454851359128952, -0.007870161905884743, -0.026590267196297646, -0.009995715692639351, -0.018413783982396126, -0.011713310144841671, 0.03519727662205696, -0.015491435304284096, -0.01624710112810135, -0.03299838304519653, 0.04287555068731308, 0.014287003315985203, 0.011368134059011936, -0.059969570487737656, 0.005989374592900276, 0.004963067825883627, 0.04774745553731918, 0.035666126757860184, -0.044057831168174744, -0.00813054759055376, -0.007924829609692097, 0.0313914455473423, 0.0018804874271154404, 0.024144649505615234, -0.0679498016834259, -0.004187619313597679, -0.07751723378896713, -0.04814476892352104, 0.004500809125602245, 0.00823558121919632, 0.001623746007680893, 0.01524585485458374, -0.02156384475529194, 0.030497843399643898, 0.0195136908441782, 0.01357493456453085, -0.0015028711641207337, 0.005068235099315643, 0.0285180676728487, -0.015078606083989143, 0.01989242620766163, -0.01803332194685936, -0.04015638306736946, -0.010486215353012085, -0.06570158898830414, 0.018604837357997894, 0.01529732160270214, -0.02270066924393177, 0.003579823998734355, 0.01383437030017376, 0.001084507443010807, 0.05102240666747093, -0.016307715326547623, 0.03100053034722805, -0.029524605721235275, 0.039690885692834854, -0.03860291838645935, -0.02959977090358734, 0.04295624420046806, 0.02883521467447281, -0.017514685168862343, 0.005781638436019421, 0.05001797154545784, 0.015016636811196804, -0.004364522639662027, -0.004442088305950165, -0.04920613393187523, 0.020117642357945442, -0.04868040233850479, 0.010228607803583145, -0.025421231985092163, -0.00983536709100008, 0.004599789623171091, -0.04045473039150238, 0.02748417854309082, 0.0017015953781083226, 0.019235974177718163, -0.05085355415940285, -0.08283580839633942, -0.042106784880161285, -0.01233854703605175, -0.042197152972221375, 0.015322856605052948, 0.015403853729367256, -0.019456086680293083, -0.024404319003224373, -0.007755671627819538, -0.005565522704273462, 0.024325625970959663, -0.01824364624917507, -0.02226894535124302, 0.01244326587766409, 0.033498600125312805, 0.02016500197350979, -0.03816966339945793, -0.011900295503437519, 0.0023633961100131273, 0.0060156467370688915, -0.020850960165262222, -0.030636103823781013, 0.0072844019159674644, -0.03439741209149361, 0.0016989271389320493, -0.00661625899374485, 0.016385355964303017, -0.02684776857495308, 0.010845794342458248, 0.03634703531861305, 0.016714192926883698, -0.011311410926282406, 0.005600233096629381, -0.05656817927956581, 0.05809485539793968, 0.02661001682281494, -0.028214747086167336, -0.01868794672191143, 0.04860854148864746, -0.00996683444827795, 0.060305602848529816, 0.0029982994310557842, -0.0026533673517405987, -0.07528436183929443, -0.05971689149737358, -0.015292110852897167, -0.0595872662961483, -0.03489919751882553, -0.04481358081102371, 0.007386582903563976, -0.024791479110717773, 0.053291887044906616, 0.021001646295189857, -0.020501889288425446, 0.01768336445093155, -0.04289308935403824, 0.015497695654630661, -0.01810591295361519, -0.03257778659462929, -0.010914956219494343, -0.01647290028631687, -0.0012201536446809769, 0.08324253559112549, -0.0007510277209803462, 0.0370975024998188, -0.00969751924276352, 0.025701390579342842, 0.03352167457342148, -0.006410640198737383, -0.05721516162157059, -0.04270847141742706, -0.003529001260176301, -0.012762274593114853, 0.010883169248700142, 0.013528076000511646, -0.050149139016866684, 0.05373659357428551, -0.058515939861536026, 0.0019924351945519447, -0.02052496187388897, -0.024306580424308777, 0.0030120708979666233, 0.01709176041185856, 0.03766835108399391, -0.045032843947410583, -0.017183000221848488, -0.029904328286647797, 0.0654778853058815, 0.04953671246767044, -0.02086363174021244, -0.043206922709941864, -0.03251593932509422, -0.02815845236182213, -0.04863731935620308, 0.039223384112119675, -0.03933350741863251, -0.01912381686270237, -0.06477784365415573, 0.016781222075223923, 0.0258635226637125, -0.04043656215071678, 0.033590979874134064, 0.03874877095222473, -0.012692349031567574, -0.02354186214506626, -0.009592064656317234, 0.013303318992257118, 0.06355436891317368, -0.024223515763878822, 0.0239366814494133, 0.01144041121006012, -0.06757104396820068, -0.0037762399297207594, -0.03031693398952484, -0.03981563821434975, -0.05038752034306526, -0.010658894665539265, 0.04345735162496567, -0.043059587478637695, 0.06206711754202843, -0.02611919492483139, -0.04146056994795799, -0.04171714931726456, 0.014221791177988052, -0.011504688300192356, 0.018538698554039, 0.03060641698539257, -0.00126892130356282, 0.0005360819050110877, -0.0016252553323283792, -0.004567440133541822, 0.01749381609261036, -0.030840856954455376, 0.05616925656795502, -0.012447779066860676, -0.01735593192279339, 0.017103077843785286, 0.06393476575613022, -0.048867445439100266, -0.021936267614364624, -0.0008413306204602122, -0.002691466361284256, -0.012985914014279842, -0.04392657056450844, -0.003873264417052269, -0.01956377550959587, -0.02505210041999817, 0.01653599925339222, 0.07505468279123306, -0.014582051895558834, 0.04010337218642235, -0.009763184003531933, 0.008865868672728539, -0.06795266270637512, 0.03682783618569374, 0.010844557546079159, 0.0015200963243842125, -0.025143323466181755, -0.04181365668773651, -0.00772104924544692, 0.01952192187309265, 0.0015771205071359873, 0.04984511062502861, -0.030052028596401215, -0.001564635313116014, 0.03931887820363045, -0.015973681584000587, 0.06285704672336578, 0.010490023531019688, -0.006940437946468592, 0.00728489039465785, -0.04261312633752823, -0.03652911260724068, -0.050902266055345535, 0.01813530921936035, 0.003145764581859112, 0.028449619188904762, -0.0850980207324028, 0.015949374064803123, 0.03353138640522957, 0.017894990742206573, 0.02240223065018654, -0.0671224445104599, -0.057370685040950775, -0.040756095200777054, -0.02322417125105858, -0.020157016813755035, -0.010048302821815014, -0.009355765767395496, 0.01358538307249546, 0.017110593616962433, -0.01566198654472828, -0.03260548412799835, 0.0026824306696653366, -0.051141735166311264, 0.018956610932946205, -0.018916262313723564, 0.04372481629252434, -0.013751941733062267, -0.060429830104112625, -0.013183115050196648, 0.03293309733271599, -0.0392947718501091, -0.020183224231004715, 0.006776649504899979, 0.03710117191076279, 0.0016053394647315145, 0.02022182010114193, 0.012253697030246258, -0.007059197407215834, -0.012460902333259583, -0.03082471713423729, -0.0220059584826231, 0.03915730118751526, -0.039577335119247437, 0.05650674179196358, 0.00489454809576273, -0.03222605213522911, 0.03229094669222832, -0.02102770283818245, -0.01851624995470047, 0.008402745239436626, 0.0013304102467373013, 0.0012173091527074575, 0.016516318544745445, -0.034344691783189774, -0.019567226991057396, 0.0007568765431642532, -0.024490412324666977, 0.014036261476576328, 0.0022125663235783577, -0.019589828327298164, -0.013663645833730698, -0.00954495556652546, 0.015571954660117626, 0.03521015867590904, -0.01778579130768776, 0.04769546911120415, -0.003942128270864487, 0.06368452310562134, 0.03200525417923927, -0.0009308104636147618, 0.019277336075901985, 0.014630258083343506, 0.010413287207484245, -0.044888850301504135, 0.006377081386744976, 0.011257008649408817, 0.014960363507270813, 0.014926916919648647, -0.01640413887798786, -0.03598351031541824, -0.041852861642837524, 0.000569106312468648, -0.004568696953356266, 0.028483448550105095, 0.0059831109829247, 0.0008726301020942628, 0.013664815574884415, -0.04224555566906929, -0.054399747401475906, 0.04422280564904213, -0.0460309274494648, -0.020954620093107224, 0.02587229013442993, 0.020608577877283096, 0.006210856605321169, -0.03200205788016319, -0.04685438796877861, -0.03650224953889847, -0.003525718115270138, 0.004712824244052172, -0.015177401714026928, 0.01760413497686386, 0.005665916018188, 0.037503041326999664, -0.0005595138063654304, 0.010455780662596226, 0.010004246607422829, 0.03197237849235535, -0.03788071125745773, -0.02566690929234028, 0.02118377946317196, 0.025572409853339195, -0.018158162012696266, -0.03300277143716812, -0.010763785801827908, -0.00005227174187893979, -0.01982393115758896, 0.0003614982415456325, 0.0029729825910180807, 0.02747955545783043, 0.026273692026734352, 0.053928062319755554, 0.021801380440592766, 0.00964212603867054, -0.003445630893111229, 0.03580080345273018, 0.01766091212630272, -0.02137703262269497, -0.017776712775230408, 0.018136851489543915, 0.03297213464975357, -0.006435003597289324, 0.05075354874134064, 0.017190786078572273, 0.02517431043088436, 0.0020674308761954308, 0.015209967270493507, -0.045392267405986786, 0.04030768200755119, 0.03276096284389496, 0.04232722148299217, -0.013260540552437305, 0.026068158447742462, 0.05126387998461723, -0.008646727539598942, 0.01614781655371189, 0.020970091223716736, 0.027004696428775787, -0.04450633376836777, -0.0026652102824300528, -0.01871328055858612, -0.011454739607870579, 0.012562590651214123, -0.03710298240184784, -0.00540113914757967, -0.05928206071257591, 0.011762822046875954, -0.0170894842594862, -0.013322882354259491, 0.060725659132003784, -0.014502697624266148, -0.007660323288291693, -0.0148732028901577, -0.01221893448382616, -0.007474448531866074, 0.05045618861913681, -0.014564774930477142, 0.013272183947265148, 0.07203296571969986, 0.03384877368807793, -0.02282910794019699, 0.0323060117661953, 0.01239491906017065, 0.014192930422723293, -0.026843242347240448, -0.006601543165743351, 0.02599899098277092, 0.009493430145084858, -0.021843209862709045, 0.009095920249819756, -0.03386341780424118, 0.023748937994241714, -0.026417503133416176, -0.019747354090213776, 0.03746992349624634, -0.04953160136938095, -0.004834572784602642, -0.018600860610604286, 0.010285724885761738, -0.03920576721429825, -0.0010071626165881753, 0.030646685510873795, -0.017349738627672195, -0.030687084421515465, 0.013364871963858604, 0.041045743972063065, 0.04410020262002945, 0.011974354274570942, 0.04183431342244148, -0.02744884602725506, 0.03278404846787453, 0.06270161271095276, -0.026068303734064102, -0.01317590568214655, 0.030260687693953514, -0.013911686837673187, -0.0403069332242012, 0.012591962702572346, -0.07818208634853363, 0.0032833688892424107, -0.002937976038083434, -0.011194433085620403, 0.012640186585485935, 0.039745185524225235, 0.0027395100332796574, -0.015199976973235607, 0.0031604464165866375, 0.02559785731136799, -0.04535932466387749, 0.04176558554172516, 0.012307087890803814, 0.03616160899400711, -0.00136457325424999, -0.01839279569685459, -0.020005064085125923, -0.040708787739276886, 0.03546537831425667, -0.04208819940686226, 0.05300125852227211, 0.006370598915964365, -0.03646739199757576, -0.032997678965330124, -0.036566462367773056, -0.039179664105176926, -0.0094826128333807, -0.05507684871554375, -0.05848367512226105, 0.03849249705672264, 0.028992177918553352, 0.003256465308368206, 0.012617343105375767, -0.001532848342321813, -0.005610171239823103, 0.07585172355175018, 0.06885487586259842, -0.0008106531458906829, 0.04096994921565056, 0.05148473009467125, -0.004926718305796385, 0.014529782347381115, -0.04727419838309288, 0.03007669746875763, 0.002056396333500743, -0.036391641944646835, -0.05629830062389374, 0.020911339670419693, -0.014818300493061543, -0.08183469623327255, 0.017602834850549698, 0.06647846847772598, 0.018396593630313873, -0.042461931705474854, -0.05423372983932495, 0.0002688906679395586, -0.011841139756143093, -0.004011709243059158, -0.03411410376429558, 0.05131112411618233, -0.004860386252403259, -0.001909038401208818, -0.017382944002747536, -0.051204368472099304, 0.15625594556331635, 0.04920002445578575, 0.043420806527137756, 0.005712294951081276, 0.02047198824584484, 0.04692225158214569, 0.017944583669304848, 0.009447979740798473, -0.027356348931789398, -0.05628408491611481, 0.036390237510204315, -0.0263815950602293, 0.014349195174872875, 0.01818147487938404, 0.027009006589651108, 0.04866223409771919, -0.03605733439326286, -0.012462316080927849, -0.006704811472445726, -0.040818363428115845, -0.029229450970888138, 0.032468974590301514, 0.004139182157814503, 0.017870400100946426, -0.012842482887208462, 0.018156688660383224, 0.03386235982179642, -0.03975798934698105, -0.004913865122944117, -0.02103523723781109, -0.0048814695328474045, -0.04312252998352051, 0.03787451609969139, -0.0342303104698658, -0.043139759451150894, 0.052243705838918686, 0.006041943561285734, -0.017258569598197937, 0.011948873288929462, -0.00026493193581700325, -0.03531777113676071, 0.020466526970267296, 0.02385946363210678, -0.03791177645325661, 0.01510280929505825, 0.05499178543686867, -0.03324108570814133, 0.03717069327831268, 0.00514973932877183, -0.040346696972846985, 0.02374751679599285, -0.030448000878095627, 0.025555159896612167, -0.01195567473769188, -0.028745627030730247, 0.011731724254786968, 0.0162331722676754, 0.0036223421338945627, -0.016232501715421677, -0.024526679888367653, 0.03325047716498375, 0.011763928458094597, -0.01903623715043068, 0.0003537586017046124, 0.0006683045066893101, -0.004877396393567324, 0.03291652351617813, 0.018961193040013313, 0.002011979231610894, -0.024499952793121338, -0.031002899631857872, 0.016403021290898323, -0.02720622718334198, -0.026496412232518196, 0.0056229038164019585, 0.022825051099061966, -0.00064565718639642, 0.04148320108652115, 0.024629972875118256, -0.02054533362388611, -0.027523785829544067, -0.04877645522356033, -0.05018382519483566, -0.0006276321364566684, -0.003393605351448059, 0.0310082845389843, -0.04506819695234299, -0.01176119688898325, -0.020386531949043274, 0.042726460844278336, 0.019068604335188866, 0.009338822215795517, 0.014009011909365654, 0.00984429195523262, -0.007841348648071289 ]
Frances Sternhagen This biography of a living person needs additional citations for verification. Please help by adding reliable sources. Contentious material about living persons that is unsourced or poorly sourced must be removed immediately, especially if potentially libelous or harmful. Find sources: "Frances Sternhagen" – news · newspapers · books · scholar · JSTOR (March 2013) (Learn how and when to remove this template message) Sternhagen in 1962 (1930-01-13) January 13, 1930 (age 92) Washington, D.C., U.S. Actress, former teacher Thomas Carlin Frances Hussey Sternhagen (born January 13, 1930[1]) is an American actress; she has appeared on- and off-Broadway, in movies, and on TV since the 1950s.[2] 2 Stage career 3 Film roles 4 Television roles 5 Voice acting Sternhagen was born in Washington, D.C., the daughter and only child of John M. Sternhagen, a U.S. Tax Court judge, and Gertrude (née Hussey) Sternhagen.[citation needed] Sternhagen was educated at the Madeira and Potomac schools in McLean, Virginia. At Vassar College, she was elected head of the Drama Club "after silencing a giggling college crowd at a campus dining hall with her interpretation of a scene from Richard II, playing none other than Richard himself". She attended the Catholic University of America as a grad student, where she met Thomas Carlin, her future husband, to whom she was married from 1956 until his death in 1991; the couple had six children.[3] She also studied at the Perry Mansfield School of the Theatre, and at New York City's Neighborhood Playhouse.[2] Stage career[edit] Sternhagen started her career teaching acting, singing, and dancing to school children at the Milton Academy in Massachusetts, and she first performed in 1948 at a Bryn Mawr summer theater in The Glass Menagerie and Angel Street.[2] She went on to work at Washington's Arena Stage from 1953–54, then made her Broadway debut in 1955 as Miss T. Muse in The Skin of Our Teeth.[4] The same year, she had her off-Broadway debut in Thieves' Carnival, and her TV debut in The Great Bank Robbery on Omnibus (CBS). By the following year, she had won her first Obie Award for "Distinguished Performance (Actress)" in The Admirable Bashville (1955–56).[5] She has won two Tony Awards, for Best Supporting Actress (Dramatic): in 1974 for the original Broadway production of Neil Simon's The Good Doctor[6] (which also won her a Drama Desk Award for Outstanding Featured Actress in a Play);[citation needed] and in 1995 for the revival of The Heiress. She has been nominated for Tony Awards five other times, including for her roles in the original Broadway casts of Equus (1975) and On Golden Pond (1979), as well as for Lorraine Hansberry's The Sign in Sidney Brustein's Window (1972), the musical Angel (1978), which was based on Thomas Wolfe's Look Homeward, Angel, and the 2002 revival of Paul Osborn's Morning's at Seven.[6] She portrayed the title character in 1988's Pulitzer prize-winning drama Driving Miss Daisy, which was originated by Dana Ivey at Playwrights Horizons in New York. Sternhagen took over the role after the show moved to the John Houseman Theatre and played it for more than two years. Her off-Broadway awards include two nominations for the Drama Desk Award for Outstanding Actress in a Play in 1998, for a revival of Eugene O'Neill's Long Day's Journey into Night (which starred her own son, Paul Carlin, as her character's son, Jamie Tyrone) for the Irish Repertory Theatre[7] and in 2005, for the World War I drama Echoes of the War.[2] She also won Distinguished Performance Obie Awards for The Room and A Slight Ache (1964–65). In 1998, she won the Dramatists Guild Fund's Madge Evans & Sidney Kingsley Award for Excellence in Theater.[citation needed] Sternhagen appeared as the Daughter in the original 1971 Broadway production of Edward Albee's All Over with Colleen Dewhurst and Jessica Tandy. In the summer of 2005, she starred in the Broadway production of Steel Magnolias along with Marsha Mason, Delta Burke, Christine Ebersole, Lily Rabe, and Rebecca Gayheart. She also starred in the 2005 revival of Edward Albee's Seascape, produced by Lincoln Center Theater at the Booth Theater on Broadway. In 2013, Sternhagen was awarded the Obie Award for Lifetime Achievement.[8] She is included in the New Rochelle Walk of Fame. Film roles[edit] Sternhagen made her film debut in Up the Down Staircase (1967), which starred Sandy Dennis.[9] She has worked periodically in Hollywood since then. She had character roles in the 1971 Paddy Chayefsky's The Hospital, in Two People (1973), and Billy Wilder's Fedora (1978). She appeared in Starting Over (1979); opposite Sean Connery in Outland (1981); and in Michael J. Fox's Bright Lights, Big City (1988). She played Farrah Fawcett's mother in See You in the Morning (1989), Richard Farnsworth's wife in Misery (1990), Lillian in Doc Hollywood (1991) and John Lithgow's psychiatrist in Raising Cain (1992). Sternhagen starred in Frank Darabont's 2007 science-fiction horror film The Mist. She also appeared in the family films Dolphin Tale (2011) and And So It Goes (2014) (her last acting appearance to date). Television roles[edit] She may be best known to TV audiences as Esther Clavin, mother of John Ratzenberger's Boston postman character Cliff Clavin, on the long-running series Cheers, for which she received two Emmy Award nominations. She also played Millicent Carter on ER; Bunny MacDougal, mother of Trey, Charlotte's first husband on Sex and the City (another Emmy Award nomination); Willie Rae Johnson (mother of Brenda Leigh Johnson (played by Kyra Sedgwick) on The Closer; and Law & Order, among other network dramas and sitcoms. She worked for many years in soap operas such as Another World, The Secret Storm, Love of Life and played two roles on One Life to Live. She recorded a voice-over for a May 2002 episode of The Simpsons ("The Frying Game"). She is also recognized as Mrs. Marsh from a series of television commercials for Colgate toothpaste that aired in the 1970s. In summer 2006, she finished her 24th Broadway role.[10] Sternhagen appeared in 12 episodes of the program. Voice acting[edit] She read as the title character in the Stephen King novel Dolores Claiborne in a 1995 audiobook recording. She also voiced characters in 13 episodes of CBS Radio Mystery Theater in the 1970s and 1980s.[citation needed] Filmography[edit] 1967 Up the Down Staircase Charlotte Wolf 1967 The Tiger Makes Out Lady On Bus 1971 The Hospital Mrs. Cushing 1973 Two People Mrs. McCluskey 1978 Fedora Miss Balfour 1979 Starting Over Marva Potter 1981 Outland Dr. Marian Lazarus Saturn Award for Best Supporting Actress 1983 Independence Day Carla Taylor 1983 Romantic Comedy Blanche Dailey 1986 Resting Place Eudora McCallister 1988 Bright Lights, Big City Clara Tillinghast 1989 Communion Dr. Janet Duffy 1989 See You in the Morning Neenie 1990 Sibling Rivalry Rose Turner 1990 Misery Deputy Virginia Nominated—Saturn Award for Best Supporting Actress 1991 Doc Hollywood Lillian 1991 Walking the Dog Antique Dealer Short film 1992 Raising Cain Dr. Lynn Waldheim Nominated—Saturn Award for Best Supporting Actress 1998 It All Came True Amy 2000 Midnight Gospel Ruth Short film 2001 Landfall Emily Thornton 2001 The Rising Place Ruth Wilder 2002 Highway Mrs. Murray 2007 The Mist Irene Reppler 2009 Julie & Julia Irma Rombauer 2011 Dolphin Tale Gloria Forrest 2014 And So It Goes Claire 1956 Westinghouse Studio One Betty Episode: "The Arena" 1957 Westinghouse Studio One Mary Episode: "My Mother and How She Undid Me" 1957 Goodyear Television Playhouse Elizabeth Barnes Episode: "The House" 1959 Play of the Week Eva Episode: "Thieves Carnival" 1961 Play of the Week Unknown Episode: "In a Garden" 1962 The Broadway of Lerner and Loewe Theatre-Goer TV movie 1962 The Nurses Mrs. Harris Episode: "The Lady Made of Stone" 1964 The Defenders Louise Kiley Episode: "May Day! May Day!" 1964 Profiles in Courage Miss Koeller Episode: "Mary S. McDowell" 1967 NET Playhouse Unknown Episode: "Infancy and Childhood" 1967 Hallmark Hall of Fame Abigail Episode: "Soldier in Love" 1967–1968 Love of Life Toni Prentiss Davis TV series 1970 The Doctors Phyllis Corrigan TV series 1971 NET Playhouse Unknown Segment: "Foul!" 1971 Another World Jane Overstreet TV series 1972 Great Performances Wilma Atkins Episode: "The Rimers of Eldritch" 1974 The Secret Storm Jessie Reddin TV series 1974 Great Performances Paulina Episode: "Enemies" 1977 The Andros Targets Mrs. Mason Episode: "In the Event of My Death" 1978 Who'll Save Our Children? Nellie Henderson TV movie 1980 Mother and Daughter: The Loving War Mrs. Lloyd TV movie 1980 The Man That Corrupted Hadleyburg Mary Richards TV short 1983 Prototype Dorothy Forrester TV movie 1984 The Dining Room Various TV movie 1985 Spencer Millie Sprague 7 episodes 1986–1993 Cheers Esther Clavin 7 episodes Nominated—Primetime Emmy Award for Outstanding Guest Actress in a Comedy Series Nominated—Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series 1987 At Mother's Request Berenice Bradshaw TV movie 1987 Once Again Unknown TV movie 1990 Follow Your Heart Cloe Sixbury TV movie 1991 American Experience (voice) Episode: "Coney Island" 1991 The Days and Nights of Molly Dodd Dora Episode: "Here's a High Dive Into a Shallow Pool" 1991 Golden Years Gina Williams 7 episodes 1991 Law & Order Margaret Langdon Episode: "The Serpent's Tooth" 1992 She Woke Up Noelle TV movie 1992 Tales from the Crypt Effie Gluckman Episode: "None But the Lonely Heart" 1993 Labor of Love: The Arlette Schweitzer Story Mary Rafferty TV movie 1994 Vault of Horror I Unknown TV movie 1994 The Road Home Charlotte Babineaux 6 episodes 1994 Reunion Tobie Yates TV movie 1995 The Outer Limits Jean Anderson Episode: "The Choice" 1997 Law & Order Estelle Muller Episode: "Legacy" 1997–2003 ER Millicent Carter 19 episodes 1998 The Con Hadabelle TV movie 1998 To Live Again Constance Holmes TV movie 2000–2002 Sex and the City Bunny MacDougal 10 episodes 2002 The Laramie Project Marge Murray TV movie Nominated—Satellite Award for Best Supporting Actress – Series, Miniseries or Television Film 2002 The Simpsons Mrs. Bellamy (voice) Episode: "The Frying Game" 2004 Becker Naomi Episode: "Subway Story" 2006–2012 The Closer Willie Ray Johnson 15 episodes 2012 Parenthood Blanche Braverman Episode: "Road Trip" 1955 The Skin of Our Teeth Miss T. Muse 1955 The Carefree Tree Widow Yang 1960 Viva Madison Avenue! Dee Jones 1962 Great Day in the Morning Alice McAnany 1965–1966 The Right Honourable Gentleman Mrs. Ashton Dilke 1967 A Doll's House Nora 1967–1969 You Know I Can't Hear You When the Water's Running Harriet / Edith / Muriel (standby) 1968–1969 The Cocktail Party Lavinia Chamberlayne 1969 Cock-A-Doodle Dandy Loreleen 1970 Blood Red Roses Various (standby) 1971 The Playboy of the Western World Widow Quin 1971 All Over The Daughter / The Mistress (standby) 1971 Mary Stuart Mary Stuart / Queen Elizabeth (understudy) 1972 The Sign in Sidney Brustein's Window Mavis Parodus Bryson 1972 Enemies Paulina 1973–1974 The Good Doctor Performer 1974–1977 Equus Dora Strang 1978 Angel Eliza Gant 1979–1980 On Golden Pond Ethel Thayer 1981 The Father Laura 1981–1982 Grown Ups Helen 1983–1984 You Can't Take It with You Unknown 1985 Home Front Maurine 1993 A Perfect Ganesh Margaret 1995 The Heiress Lavinia Penniman 1999 The Exact Center of the Universe Unknown 2002 Morning's at Seven Ida Bolton 2005 Steel Magnolias Clairee 2005–2006 Seascape Nancy 2013 The Madrid Rose ^ "UPI Almanac for Wednesday, Jan. 13, 2021". United Press International. January 13, 2021. Archived from the original on February 27, 2021. Retrieved February 27, 2021. …actor Frances Sternhagen in 1930 (age 91)… ^ a b c d Joy, Cara."Frances Sternhagen in Talks to Join Company of Broadway Magnolias", Broadway.com, November 22, 2004. ^ Profile, mcall.com; accessed October 6, 2021. ^ "Frances Sternhagen". Internet Broadway Database. The Broadway League. Archived from the original on May 28, 2019. Retrieved May 28, 2019. ^ "1950s". Obie Awards. Village Voice and American Theatre Wing. Retrieved May 28, 2019. ^ a b "("Frances Sternhagen" search results)". Tony Awards. Tony Award Productions. Retrieved May 28, 2019. ^ Lefkowitz, David."Brian Murray & Frances Sternhagen Take Irish Journey, Mar. 22" Archived September 30, 2007, at the Wayback Machine Playbill.com, March 22, 1998 ^ "2013 Obie Awards". Obie Awards. Village Voice and American Theatre Wing. Archived from the original on May 28, 2019. Retrieved May 28, 2019. ^ "Frances Sternhagen Credits" hollywood.com; accessed August 27, 2011. ^ Terrace, Vincent (2011). Encyclopedia of Television Shows, 1925 through 2010 (2nd ed.). Jefferson, N.C.: McFarland & Company, Inc., Publishers. p. 195. ISBN 978-0-7864-6477-7. Wikimedia Commons has media related to Frances Sternhagen. Frances Sternhagen at the Internet Broadway Database Frances Sternhagen at the Internet Off-Broadway Database Frances Sternhagen at IMDb Awards for Frances Sternhagen Drama Desk Award for Outstanding Featured Actress in a Play Frances Sternhagen (1975) Rachel Roberts (1976) Rosemary De Angelis (1977) Eileen Atkins (1978) Pamela Reed (1979) Lois de Banzie (1980) Swoosie Kurtz (1981) Amanda Plummer (1982) Judith Ivey (1983) Christine Baranski (1984) Joanna Gleason (1986) Mary Alice (1987) Christine Estabrook (1988) Tovah Feldshuh (1989) Frances Conroy (1990) Irene Worth (1991) Madeline Kahn (1993) Jane Adams (1994) Tara Fitzgerald (1995) Elaine Stritch (1996) Dana Ivey (1997) Allison Janney (1998) Anna Friel (1999) Marylouise Burke (2000) Viola Davis (2001) Katie Finneran (2002) Lynn Redgrave (2003) Audra McDonald (2004) Adriane Lenox (2005) Frances de la Tour (2006) Martha Plimpton (2007) Linda Lavin (2008) Angela Lansbury (2009) Edie Falco (2011) Judith Light (2012) Celia Keenan-Bolger (2014) Annaleigh Ashford (2015) Saycon Sengbloh (2016) Cynthia Nixon (2017) Jamie Brewer (2018) Lois Smith (2020) Drama League's Distinguished Performance Award Katharine Cornell (1935) Helen Hayes (1936) Maurice Evans (1937) Cedric Hardwicke (1938) Raymond Massey (1939) Paul Muni (1940) Paul Lukas (1941) Judith Evelyn (1942) Alfred Lunt (1943) Lynn Fontanne (1944) Mady Christians (1945) Louis Calhern (1946) Ingrid Bergman (1947) Judith Anderson (1948) Robert Morley (1949) Grace George (1950) Claude Rains (1951) Julie Harris (1952) Shirley Booth (1953) Josephine Hull (1954) Viveca Lindfors (1955) David Wayne (1956) Eli Wallach (1957) Ralph Bellamy (1958) Cyril Ritchard (1959) Jessica Tandy (1960) Hume Cronyn (1961) Paul Scofield (1962) Charles Boyer (1963) Alec Guinness (1964) John Gielgud (1965) Richard Kiley (1966) Rosemary Harris (1967) Zoe Caldwell (1968) Alec McCowen (1969) James Stewart (1970) Anthony Quayle (1971) Eileen Atkins / Claire Bloom (1972) Alan Bates (1973) Christopher Plummer (1974) John Wood (1975) Eva Le Gallienne (1976) Tom Courtenay (1977) Frank Langella (1978) Roy Scheider (1980) Ian McKellen (1981) Milo O'Shea (1982) Edward Herrmann / Kate Nelligan (1983) Jeremy Irons (1984) Derek Jacobi (1985) Bernadette Peters (1986) James Earl Jones (1987) John Lithgow (1988) Pauline Collins (1989) Robert Morse (1990) Stockard Channing (1991) Glenn Close (1992) Stephen Rea (1993) Sam Waterston (1994) Cherry Jones (1995) Uta Hagen (1996) Charles Durning / Bebe Neuwirth (1997) Brian Stokes Mitchell (1998) Kathleen Chalfant (1999) Eileen Heckart (2000) Mary-Louise Parker / Gary Sinise (2001) Liam Neeson (2002) Harvey Fierstein (2003) Hugh Jackman (2004) Norbert Leo Butz (2005) Christine Ebersole (2006) Liev Schreiber (2007) Patti LuPone (2008) Geoffrey Rush (2009) Alfred Molina (2010) Mark Rylance (2011) Nathan Lane (2013) Neil Patrick Harris (2014) Chita Rivera (2015) Lin-Manuel Miranda (2016) Ben Platt (2017) Glenda Jackson (2018) Bryan Cranston (2019) Danny Burstein (2020) Saturn Award for Best Supporting Actress Ida Lupino (1974/75) Bette Davis (1976) Susan Tyrrell (1977) Dyan Cannon (1978) Veronica Cartwright (1979) Eve Brent (1980) Zelda Rubinstein (1982) Candy Clark (1983) Polly Holliday (1984) Anne Ramsey (1985) Jenette Goldstein (1986) Sylvia Sidney (1988) Whoopi Goldberg (1989/90) Mercedes Ruehl (1991) Isabella Rossellini (1992) Mia Sara (1994) Bonnie Hunt (1995) Alice Krige (1996) Gloria Stuart (1997) Joan Allen (1998) Patricia Clarkson (1999) Rebecca Romijn-Stamos (2000) Fionnula Flanagan (2001) Samantha Morton (2002) Ellen DeGeneres (2003) Daryl Hannah (2004) Summer Glau (2005) Famke Janssen (2006) Marcia Gay Harden (2007) Tilda Swinton (2008) Sigourney Weaver (2009) Mila Kunis (2010) Emily Blunt (2011) Anne Hathaway (2012) Scarlett Johansson (2013) Rene Russo (2014) Jessica Chastain (2015) Danai Gurira (2017) Zendaya (2018/2019) Ana de Armas (2019/2020) Tony Award for Best Performance by a Featured Actress in a Play Patricia Neal (1947) Maureen Stapleton (1951) Marian Winters (1952) Beatrice Straight (1953) Jo Van Fleet (1954) Patricia Jessel (1955) Una Merkel (1956) Peggy Cass (1957) Anne Bancroft (1958) Julie Newmar (1959) Anne Revere (1960) Colleen Dewhurst (1961) Elizabeth Ashley (1962) Sandy Dennis (1963) Barbara Loden (1964) Alice Ghostley (1965) Marian Seldes (1967) Zena Walker (1968) Jane Alexander (1969) Blythe Danner (1970) Rae Allen (1971) Elizabeth Wilson (1972) Leora Dana (1973) Rita Moreno (1975) Shirley Knight (1976) Trazana Beverley (1977) Ann Wedgeworth (1978) Joan Hickson (1979) Dinah Manoff (1980) L. Scott Caldwell (1988) Margaret Tyzack (1990) Bríd Brennan (1992) Debra Monk (1993) Lynne Thigpen (1997) Anna Manahan (1998) Elizabeth Franz (1999) Blair Brown (2000) Michele Pawk (2003) Jennifer Ehle (2007) Rondi Reed (2008) Ellen Barkin (2011) Sophie Okonedo (2014) Jayne Houdyshell (2016) Laurie Metcalf (2018) Retrieved from "https://en.wikipedia.org/w/index.php?title=Frances_Sternhagen&oldid=1066554787" American film actresses American stage actresses American television actresses American people of German descent Drama Desk Award winners Catholic University of America alumni Obie Award recipients Tony Award winners Vassar College alumni Madeira School alumni Actresses from Virginia Actresses from Washington, D.C. Actresses from New Rochelle, New York BLP articles lacking sources from March 2013 All BLP articles lacking sources Articles with unsourced statements from September 2021 Articles with unsourced statements from May 2019 Articles with IBDb links Internet Off-Broadway Database person ID same as Wikidata
[ -0.026060746982693672, -0.028217162936925888, 0.017660079523921013, -0.009852904826402664, -0.034594785422086716, -0.021437449380755424, -0.02829098515212536, 0.01488783210515976, -0.04424142464995384, -0.008679972030222416, 0.025146810337901115, -0.01876549795269966, 0.030854854732751846, -0.04334329068660736, -0.001995860831812024, -0.042721476405858994, -0.02973460964858532, -0.02125607617199421, -0.010299266315996647, 0.0018123472109436989, -0.006469062063843012, 0.017940033227205276, -0.04851545765995979, -0.029857195913791656, 0.0032854469027370214, 0.05539177730679512, 0.049592845141887665, 0.011762004345655441, 0.050574176013469696, 0.05753057077527046, 0.007220424711704254, -0.06131787970662117, 0.029653968289494514, -0.034503672271966934, -0.024974392727017403, -0.046412233263254166, 0.05464155226945877, -0.02694917470216751, -0.011576583608984947, -0.07545354217290878, -0.01015512365847826, -0.04222888872027397, 0.04366646334528923, -0.02840886078774929, -0.03975562006235123, 0.0017591211944818497, 0.023232320323586464, -0.027558796107769012, 0.007596762850880623, -0.0027434048242866993, 0.004498753696680069, -0.026155607774853706, 0.029985368251800537, 0.011511440388858318, 0.005794523283839226, -0.0016560190124437213, 0.01810905896127224, -0.024003464728593826, -0.016893990337848663, -0.0021716903429478407, 0.031843401491642, -0.007758836727589369, 0.030940888449549675, -0.04608788713812828, 0.02962053194642067, 0.018097586929798126, -0.0003322733682580292, -0.012881179340183735, 0.018877631053328514, -0.00863353256136179, 0.03946295753121376, -0.014290391467511654, -0.027364252135157585, -0.03462586924433708, 0.02216227538883686, -0.018878823146224022, -0.010563574731349945, 0.0046986788511276245, 0.023100659251213074, 0.0023705961648374796, 0.012290005572140217, 0.04240328073501587, 0.037916433066129684, 0.047191161662340164, -0.0418676994740963, -0.006256064400076866, 0.004276965279132128, 0.0384771004319191, -0.008097355253994465, -0.01454450748860836, 0.02525126188993454, 0.046229664236307144, 0.027480099350214005, -0.01759655587375164, 0.021424897015094757, 0.04015420749783516, -0.038492776453495026, 0.013860532082617283, 0.02415769174695015, -0.0007593633490614593, 0.0005394102772697806, 0.0038120171520859003, -0.04732581973075867, 0.04021792113780975, -0.03147349879145622, -0.022595545276999474, -0.0018639484187588096, 0.0051705786027014256, 0.0013587920693680644, -0.034910671412944794, 0.006622252985835075, -0.01981102116405964, 0.02881043031811714, -0.0004285029135644436, -0.01197364367544651, 0.03589886426925659, -0.015616877935826778, 0.030552929267287254, -0.04517323523759842, 0.011009613052010536, 0.009104251861572266, 0.0023143149446696043, 0.03329283744096756, -0.038635753095149994, 0.012451807968318462, -0.00846290122717619, -0.042329639196395874, 0.038669049739837646, -0.03271164745092392, -0.02361794374883175, 0.014199022203683853, -0.03550635278224945, -0.03602428734302521, 0.000013880003280064557, 0.009753357619047165, 0.055883150547742844, -0.026746854186058044, 0.008702581748366356, -0.005098918918520212, -0.08364428579807281, 0.06978801637887955, 0.026784244924783707, -0.006538676097989082, 0.09280995279550552, 0.01134908851236105, 0.027527378872036934, -0.02990199252963066, -0.005923426244407892, -0.018086588010191917, 0.003228157525882125, -0.03250707685947418, -0.0007563260151073337, -0.019200587645173073, 0.021559199318289757, -0.015109473839402199, 0.03918657451868057, -0.011834545060992241, 0.0025096323806792498, 0.006320534739643335, 0.016721827909350395, -0.04035074636340141, -0.023930296301841736, -0.001221986603923142, 0.04123811796307564, 0.011764568276703358, 0.01006696093827486, 0.011310388334095478, -0.01847875863313675, -0.00212385063059628, -0.04014919698238373, 0.047644250094890594, 0.005391094367951155, -0.04141855984926224, 0.004334284923970699, 0.014845335856080055, 0.022017642855644226, 0.029755190014839172, -0.013011869043111801, 0.024975495412945747, 0.028442388400435448, -0.044750556349754333, 0.011819775216281414, 0.0015415853122249246, 0.03603408858180046, -0.015146417543292046, -0.035315897315740585, -0.002545442432165146, -0.029791828244924545, -0.06583524495363235, -0.018767820671200752, -0.0052408785559237, 0.020904475823044777, -0.012620806694030762, 0.0022894232533872128, 0.041460756212472916, 0.03306518495082855, -0.006104077212512493, -0.032447777688503265, -0.0006159396725706756, -0.043780628591775894, -0.008815399371087551, 0.05052884668111801, -0.02581232599914074, 0.010009126737713814, 0.003769969567656517, -0.025719137862324715, 0.03049384243786335, 0.05664772540330887, -0.06244024261832237, -0.010296602733433247, 0.02412993088364601, 0.024333136156201363, 0.0003720472741406411, -0.023116642609238625, -0.005518881604075432, 0.003613596549257636, -0.020899470895528793, 0.04683656245470047, -0.004348609130829573, -0.0097093116492033, 0.029766865074634552, 0.031225407496094704, 0.017005180940032005, 0.06583405286073685, 0.003963316325098276, -0.011604654602706432, 0.020159121602773666, 0.05028035491704941, -0.0037072268314659595, -0.009430869482457638, 0.012201382778584957, 0.04562589153647423, 0.026768239215016365, 0.05693015828728676, 0.024004409089684486, 0.044513039290905, 0.052472103387117386, 0.024473395198583603, -0.00782843865454197, 0.009009714238345623, 0.007446542847901583, -0.020873146131634712, 0.06013684719800949, 0.04279797151684761, -0.012484138831496239, 0.05090147629380226, -0.034402135759592056, -0.02100580744445324, 0.010517649352550507, 0.005533828865736723, -0.013103345409035683, 0.06577107310295105, 0.016413399949669838, 0.05516171082854271, -0.024013042449951172, 0.028046704828739166, 0.026456698775291443, 0.03683944419026375, -0.024048425257205963, -0.0005704185459762812, -0.021866772323846817, 0.01707535982131958, -0.018306786194443703, 0.018149636685848236, -0.0004886144888587296, 0.01695779152214527, 0.022311853244900703, 0.052430275827646255, -0.032641537487506866, -0.06652526557445526, 0.0018102132016792893, -0.05604742467403412, -0.06725398451089859, -0.021815180778503418, -0.026890313252806664, -0.004091991111636162, 0.06698767840862274, -0.023589249700307846, 0.015084858983755112, -0.01280984003096819, -0.003129629185423255, -0.03740043193101883, -0.037709832191467285, 0.05786433070898056, 0.02802794985473156, 0.00543553289026022, -0.002787844045087695, 0.01826639287173748, 0.020203998312354088, 0.02598438784480095, -0.04492476209998131, -0.022746052592992783, -0.012401762418448925, 0.013835201039910316, 0.050220899283885956, -0.014902877621352673, -0.03175554797053337, -0.02532353810966015, -0.05009159818291664, -0.03828895092010498, 0.003740001004189253, -0.010542476549744606, 0.026472777128219604, 0.010698205791413784, -0.03420506790280342, 0.05945989862084389, 0.0017525620060041547, -0.07955650240182877, 0.03985567018389702, 0.020194508135318756, -0.031177913770079613, 0.039079856127500534, 0.02019401453435421, -0.024785540997982025, -0.02621506340801716, 0.06244045868515968, 0.030168214812874794, 0.014787739142775536, -0.030088109895586967, -0.013895106501877308, -0.0022230707108974457, -0.0003409215423744172, 0.008336697705090046, -0.024952968582510948, -0.06598759442567825, 0.04656565189361572, 0.005260150879621506, -0.06662793457508087, 0.02522323466837406, -0.03548000007867813, -0.011892516165971756, -0.01581905595958233, -0.047580815851688385, 0.038740865886211395, 0.04550600424408913, -0.00666388962417841, -0.023570451885461807, -0.012880307622253895, 0.01925080642104149, -0.0017206186894327402, 0.02109864167869091, -0.031277887523174286, -0.00030803674599155784, 0.01794051006436348, -0.018633686006069183, 0.00425965478643775, -0.008676371537148952, -0.02727542258799076, 0.004362442065030336, 0.011451775208115578, 0.024135367944836617, -0.008115611970424652, 0.02401646599173546, 0.013851460069417953, -0.0014783624792471528, 0.0391671285033226, -0.021676303818821907, 0.014432569034397602, -0.0028615884948521852, 0.033156950026750565, 0.028425130993127823, 0.029262635856866837, 0.030993761494755745, -0.034957557916641235, -0.04278021678328514, -0.056270916014909744, 0.036168623715639114, 0.006440675351768732, 0.061267316341400146, -0.06201449781656265, 0.05725709721446037, -0.021008489653468132, -0.01610662415623665, 0.010564656928181648, -0.06245579198002815, 0.00982439611107111, 0.03316272422671318, 0.012539523653686047, 0.022251315414905548, -0.03746150806546211, 0.023954732343554497, -0.0064390432089567184, -0.003036055713891983, 0.03920009359717369, -0.03464958071708679, 0.01419768575578928, -0.022606996819376945, -0.050482116639614105, -0.015738986432552338, -0.008507187478244305, -0.002414127578958869, -0.03283947706222534, 0.022115133702754974, -0.006609826814383268, -0.043922316282987595, -0.04423537105321884, 0.03379392996430397, 0.035140980035066605, 0.03533755987882614, -0.0318356417119503, 0.02639477327466011, 0.003918719943612814, 0.025643114000558853, 0.06807119399309158, -0.018220948055386543, -0.0008155130781233311, -0.06659761816263199, 0.04980398714542389, 0.008130096830427647, -0.018704812973737717, -0.020545482635498047, -0.025740502402186394, 0.0012379884719848633, 0.03388034552335739, 0.03709787502884865, -0.039283111691474915, -0.025248708203434944, 0.002908577909693122, -0.00004228465331834741, 0.011367584578692913, -0.03233993798494339, -0.00002813405080814846, -0.0008060107938945293, 0.06609609723091125, 0.04324569180607796, -0.04708380252122879, 0.015498720109462738, -0.05699924752116203, 0.06263211369514465, 0.055090874433517456, 0.007830050773918629, -0.04418570548295975, -0.015039488673210144, -0.05226120725274086, -0.01250503584742546, -0.0001605305733392015, 0.010123394429683685, 0.005715171340852976, 0.019755057990550995, -0.026007937267422676, 0.04571200907230377, 0.023869115859270096, 0.007832225412130356, 0.006505684927105904, 0.00297905714251101, 0.02083704248070717, 0.009149488992989063, 0.024114392697811127, 0.009105954319238663, -0.04384007304906845, 0.03080408275127411, -0.04578303545713425, -0.0021503521129488945, 0.015094546601176262, -0.02880336344242096, -0.014592142775654793, 0.017416397109627724, 0.024062233045697212, 0.042863622307777405, -0.042092595249414444, 0.009183455258607864, -0.002171117579564452, 0.05948704481124878, -0.0406569205224514, -0.03170692175626755, 0.056715842336416245, 0.013030583038926125, -0.015092498622834682, 0.006359387654811144, 0.04414958879351616, -0.013377332128584385, -0.0037622537929564714, 0.04060780256986618, -0.03711581230163574, 0.03044978901743889, -0.028202766552567482, -0.006708329077810049, -0.050807006657123566, -0.04376823082566261, 0.03672507032752037, -0.021471843123435974, 0.033742696046829224, -0.0048910691402852535, -0.014131427742540836, -0.02206534892320633, -0.03632703796029091, -0.0038763987831771374, -0.04851438105106354, -0.03096252866089344, -0.0044881971552968025, 0.0003623045631684363, -0.004293567501008511, -0.01209427509456873, -0.01251969113945961, -0.01654999703168869, 0.009937591850757599, -0.03778574615716934, -0.01150763500481844, 0.014133114367723465, 0.0024885833263397217, 0.015117275528609753, -0.0006292115431278944, -0.004774574190378189, 0.0045458911918103695, -0.007787926122546196, -0.04636526480317116, -0.04537556692957878, 0.004220518749207258, -0.03241735324263573, -0.013616940937936306, -0.008999173529446125, -0.020379353314638138, -0.001976432278752327, 0.058805301785469055, 0.02758253924548626, 0.014105279929935932, 0.010819557122886181, -0.01675659418106079, -0.03133834898471832, 0.06551067531108856, 0.01368099357932806, -0.02301868423819542, -0.01871955767273903, 0.06554272770881653, -0.018872521817684174, 0.054573457688093185, 0.03376421332359314, -0.009045182727277279, -0.05651139095425606, -0.022277535870671272, 0.008328232914209366, -0.020319275557994843, -0.047473110258579254, -0.060545727610588074, -0.0021300569642335176, -0.03042646497488022, 0.019339408725500107, -0.017333809286355972, -0.006064034067094326, 0.035612866282463074, -0.04664785787463188, -0.020843880251049995, -0.011486475355923176, -0.041397884488105774, -0.05521479249000549, -0.015618367120623589, -0.004631210584193468, 0.060455478727817535, -0.009168293327093124, 0.024324193596839905, 0.01654336042702198, 0.009833039715886116, 0.031236663460731506, -0.023228608071804047, -0.047734640538692474, -0.05548296868801117, -0.012220908887684345, 0.0008864944102242589, -0.00727484468370676, 0.0485650934278965, -0.02676967903971672, 0.0737483948469162, -0.04752263054251671, -0.015749650076031685, 0.0011096947127953172, 0.00028880132595077157, 0.007838058285415173, -0.03468770533800125, 0.03231038525700569, -0.029620880261063576, 0.01516182254999876, -0.04410548880696297, 0.030349981039762497, 0.022254833951592445, 0.004314905032515526, -0.015591283328831196, -0.021404825150966644, -0.02649465948343277, -0.03741240128874779, 0.027715366333723068, -0.013215353712439537, 0.005962341092526913, -0.03912004083395004, -0.023168031126260757, 0.06789185851812363, 0.008066515438258648, 0.06525558978319168, 0.036642253398895264, -0.033014293760061264, -0.008726824074983597, -0.023418264463543892, 0.01921030879020691, 0.02575146220624447, -0.014505171217024326, -0.0249687097966671, -0.023866912350058556, -0.04376012831926346, -0.0025844101328402758, -0.026692373678088188, -0.03452590852975845, -0.055204834789037704, 0.001061575603671372, 0.061219047755002975, -0.012072794139385223, 0.02200024388730526, -0.03936861827969551, -0.04615131765604019, -0.05313711240887642, 0.059361569583415985, -0.05629110336303711, 0.03785983473062515, 0.015932943671941757, 0.0036464089062064886, 0.0017147501930594444, -0.013747261837124825, -0.010778401046991348, -0.03498886525630951, -0.01352780219167471, 0.04226209968328476, -0.021851709112524986, -0.0022811160888522863, 0.025439344346523285, 0.06352919340133667, -0.06159758195281029, -0.0183727964758873, -0.010730737820267677, -0.024584440514445305, -0.024644020944833755, -0.030007289722561836, -0.0046766153536736965, 0.018412122502923012, -0.012159592472016811, 0.01394726987928152, 0.06227890029549599, -0.002102217171341181, 0.02611670270562172, 0.0026849955320358276, 0.034913014620542526, -0.028082972392439842, 0.001863167155534029, 0.017915120348334312, 0.0037137214094400406, -0.021031005308032036, -0.03132723271846771, -0.008150003850460052, 0.01758100651204586, 0.02231171354651451, 0.016292160376906395, -0.023168783634901047, -0.01720273680984974, 0.06471483409404755, -0.03115941770374775, 0.03711237758398056, -0.03335512429475784, -0.010786301456391811, 0.00936807133257389, -0.015761984512209892, -0.049482278525829315, -0.06026139855384827, 0.02467549964785576, 0.012255212292075157, 0.03599518910050392, -0.08590127527713776, -0.0068242959678173065, 0.05140835419297218, 0.012554362416267395, 0.016596561297774315, -0.03970642015337944, -0.02966710925102234, -0.029319170862436295, -0.04101672023534775, -0.03756306320428848, 0.031058654189109802, 0.009188997559249401, 0.019162220880389214, 0.014575514942407608, -0.014307071454823017, -0.00861340295523405, -0.011973599903285503, -0.04665018245577812, 0.030388006940484047, -0.021930409595370293, -0.011956494301557541, -0.025841454043984413, -0.04765505716204643, -0.02442251890897751, 0.0012718263315036893, -0.0010879209730774164, -0.015510155819356441, -0.029848627746105194, 0.022478066384792328, -0.000959229888394475, -0.009464127011597157, 0.013137873262166977, 0.009469850920140743, 0.01399745512753725, -0.015563848428428173, -0.018153464421629906, 0.02913004159927368, 0.007709810975939035, 0.033304363489151, 0.014226256869733334, -0.0400245226919651, 0.03313043713569641, -0.007138886488974094, -0.03270368650555611, -0.0002274986036354676, 0.0003995047591160983, -0.016022592782974243, 0.015068566426634789, -0.028083229437470436, -0.013897622004151344, -0.02070482075214386, -0.05983161926269531, 0.04079563915729523, -0.007559551857411861, 0.02805144153535366, 0.0040899706073105335, 0.0024370017927139997, 0.03830144926905632, 0.033480849117040634, -0.03332709148526192, 0.027863536030054092, -0.011859336867928505, 0.024502389132976532, 0.017261892557144165, 0.014392377808690071, -0.0026983509305864573, 0.011605887673795223, 0.048305775970220566, -0.01907625049352646, -0.016861123964190483, -0.00017343788931611925, -0.01888873428106308, 0.040356215089559555, -0.05497097596526146, -0.03259168192744255, -0.045313943177461624, -0.009928925894200802, -0.01599304936826229, 0.024889780208468437, 0.020514870062470436, -0.02917223423719406, 0.026686163619160652, -0.05096816644072533, -0.05900312215089798, 0.012173986062407494, -0.04172205179929733, -0.009713560342788696, 0.051157210022211075, -0.0043456521816551685, 0.031938761472702026, -0.04035082086920738, -0.0523856095969677, -0.0008188569918274879, 0.021542731672525406, 0.005080839619040489, -0.006486840546131134, 0.04238908365368843, -0.0002874489582609385, 0.02256256714463234, 0.0005856272764503956, 0.005575008224695921, 0.0229466762393713, 0.025179896503686905, -0.017849091440439224, -0.0483720563352108, 0.011185946874320507, 0.01846971921622753, 0.003453844226896763, -0.01707763411104679, -0.007088599260896444, 0.0025208815932273865, 0.007214769721031189, 0.0020496314391493797, 0.012567386962473392, 0.00729605695232749, 0.03497423604130745, 0.019126957282423973, -0.009061496704816818, -0.00044522437383420765, -0.019447145983576775, 0.008567780256271362, 0.007204435300081968, -0.021505005657672882, -0.01936994679272175, 0.040771614760160446, 0.0315389446914196, -0.008503994904458523, 0.0637434720993042, 0.006642656866461039, 0.06636525690555573, -0.024384640157222748, 0.017722342163324356, -0.023272842168807983, 0.06722474843263626, -0.002604363951832056, 0.013744902797043324, 0.029999513179063797, 0.014415412209928036, 0.05711136385798454, 0.015640579164028168, -0.010832101106643677, 0.05302916467189789, 0.036341745406389236, -0.030892739072442055, -0.009828891605138779, -0.012731068767607212, 0.01806739531457424, 0.02343677543103695, -0.0195402130484581, 0.01618851348757744, -0.021819308400154114, 0.008825700730085373, -0.037599071860313416, -0.013366498053073883, 0.05329245328903198, -0.017813649028539658, -0.0009279781952500343, 0.00817213673144579, -0.021670876070857048, 0.00023006652190815657, 0.05689528211951256, 0.029960989952087402, 0.03777120262384415, 0.060030486434698105, 0.024681875482201576, 0.0166657492518425, 0.037049248814582825, 0.01788046583533287, -0.03080170229077339, -0.009027250111103058, 0.02534107305109501, 0.03536037355661392, -0.006846917327493429, -0.010532636195421219, 0.01994720846414566, -0.024778613820672035, 0.039473261684179306, -0.04224272072315216, -0.011418234556913376, 0.05711711198091507, -0.04254963994026184, -0.04058447852730751, -0.011200309731066227, 0.03420644626021385, -0.01610925793647766, -0.01879023015499115, 0.037099096924066544, 0.01847837120294571, -0.014091890305280685, 0.061187636107206345, 0.009823883883655071, 0.06744233518838882, 0.0016142039094120264, 0.03306209668517113, 0.005185363814234734, 0.0375816635787487, 0.07031451910734177, -0.021500011906027794, 0.006469337269663811, 0.00007574442133773118, -0.0515722818672657, -0.04008962959051132, -0.01864064298570156, -0.035447098314762115, 0.002542787929996848, -0.03998316824436188, 0.0031663014087826014, -0.01697046495974064, 0.039446305483579636, -1.383032071089474e-7, -0.05496495962142944, -0.011612055823206902, 0.027939094230532646, -0.03750372305512428, 0.02625931054353714, 0.018816163763403893, 0.04354754835367203, -0.0057558538392186165, -0.0077040111646056175, -0.020772039890289307, -0.04790573567152023, 0.017069725319743156, -0.02719813399016857, 0.04873703047633171, -0.021116122603416443, -0.028073398396372795, -0.04926423728466034, -0.06531307101249695, -0.04082058370113373, 0.00889845471829176, -0.03792471066117287, -0.04144773632287979, 0.019903380423784256, 0.04411634802818298, -0.006280297879129648, 0.02397901378571987, -0.0379321463406086, 0.010966460220515728, 0.02686396986246109, 0.06197809427976608, -0.02446531504392624, 0.03721093386411667, 0.0007690928177908063, -0.007170553784817457, 0.030241936445236206, -0.010845476761460304, 0.02335200645029545, -0.018964532762765884, -0.004012987017631531, -0.02993878535926342, -0.014602319337427616, -0.024023639038205147, -0.04090370610356331, 0.047589242458343506, 0.007813251577317715, 0.021837908774614334, -0.01728287898004055, -0.10462184250354767, 0.013104923069477081, -0.04645948484539986, -0.02240416780114174, -0.05184907838702202, 0.022195063531398773, 0.008751236833631992, -0.007619546260684729, -0.029467370361089706, -0.05132909491658211, 0.17439693212509155, 0.052848782390356064, 0.04858780652284622, -0.00674856873229146, 0.022582389414310455, 0.04586855694651604, 0.03208618611097336, -0.006703513674438, -0.012979703024029732, -0.017617713660001755, 0.05524127930402756, 0.02291777916252613, 0.02230384573340416, -0.003664584830403328, 0.03326704725623131, 0.04847407713532448, -0.024177148938179016, 0.012683606706559658, 0.028774479404091835, -0.04462116211652756, -0.03132905066013336, 0.020512690767645836, -0.0202370323240757, 0.01695406809449196, -0.016231898218393326, 0.023366082459688187, 0.04433868080377579, -0.042083099484443665, -0.0370759591460228, -0.025541353970766068, 0.028287364169955254, -0.026375656947493553, 0.03417523205280304, 0.012898389250040054, -0.019807802513241768, 0.04620096832513809, 0.021571196615695953, -0.024922503158450127, 0.0291509460657835, 0.03947914391756058, -0.027053747326135635, 0.019901873543858528, 0.041275426745414734, -0.04743658006191254, -0.0036582613829523325, -0.017669623717665672, -0.06536194682121277, -0.007599032949656248, 0.015717357397079468, -0.03969905152916908, 0.07622719556093216, -0.0363692082464695, 0.033333901315927505, -0.0363711453974247, 0.01258012279868126, 0.009257329627871513, 0.0023382927756756544, -0.04162953421473503, 0.0038391719572246075, -0.03416132926940918, 0.04437897726893425, -0.0060590519569814205, -0.035234492272138596, 0.029336992651224136, -0.011667054146528244, 0.014951551333069801, 0.000862713495735079, 0.021507859230041504, -0.054159361869096756, -0.017453325912356377, -0.028319666162133217, -0.013718890026211739, -0.007403758354485035, 0.004500371403992176, 0.015946311876177788, 0.022718196734786034, -0.021399229764938354, 0.05659473314881325, -0.021060267463326454, 0.0011028432054445148, -0.010094664059579372, -0.04770757630467415, 0.004466326907277107, -0.007922377437353134, 0.03219851851463318, 0.022408895194530487, -0.04374297335743904, -0.035273581743240356, -0.028145350515842438, 0.052596479654312134, 0.0009068857179954648, 0.0009090832318179309, 0.011567750945687294, 0.012175941839814186, -0.023684155195951462 ]
Chicka Chicka Boom Boom and other books they know by heart. Teachers, these Chicka trees were inspired by students at South Daytona Elementary. Check out my Chicka Chicka Boom Boom Pinterest Board for other Chicka ideas.
[ -0.0027325882110744715, 0.003569267690181732, -0.013653555884957314, -0.013532690703868866, 0.0062150778248906136, 0.005371455103158951, -0.01894749142229557, 0.03903794288635254, 0.01313643716275692, 0.026807935908436775, 0.005195455625653267, 0.01968497969210148, 0.0011450843885540962, -0.018478328362107277, 0.0178007073700428, -0.02413799799978733, -0.005858655087649822, -0.006895088125020266, -0.01507352665066719, -0.00859888270497322, 0.009086206555366516, 0.03132259473204613, -0.06357972323894501, -0.018908046185970306, -0.007269140332937241, 0.012498301453888416, 0.04730596765875816, -0.007107459008693695, 0.06038820743560791, 0.04183781519532204, -0.03041180409491062, -0.048420101404190063, 0.04103997349739075, -0.07823874056339264, -0.03141135722398758, -0.020557142794132233, 0.041551560163497925, -0.029661471024155617, -0.010827122256159782, -0.04241751506924629, 0.0011652283137664199, -0.01446614135056734, 0.03535691648721695, -0.026219358667731285, -0.022633815184235573, 0.00018975348211824894, -0.03900451213121414, -0.0160977765917778, 0.04701117426156998, -0.02535993792116642, 0.021487008780241013, -0.013980269432067871, -0.0068200998939573765, 0.010891088284552097, 0.004684972111135721, 0.01272551529109478, -0.00534451100975275, -0.04457918927073479, -0.012696785852313042, 0.05536409094929695, 0.0010163827100768685, 0.019127650186419487, 0.03328318893909454, -0.06870174407958984, -0.004498113878071308, -0.006801775190979242, -0.009054498746991158, -0.018797554075717926, -0.007407811935991049, -0.0203982163220644, 0.009192566387355328, 0.007418393157422543, 0.013255049474537373, -0.02744031883776188, -0.004449066706001759, -0.010831581428647041, -0.005628240294754505, -0.0004926943802274764, -0.04183521121740341, 0.006419450510293245, 0.01726922206580639, 0.06680557876825333, 0.002415223279967904, 0.009614755399525166, -0.043045904487371445, -0.052900202572345734, 0.002912490162998438, -0.004571998026221991, 0.01911461353302002, 0.015232531353831291, 0.0045122504234313965, 0.04915701225399971, 0.001688510412350297, 0.005092453211545944, 0.05980999395251274, 0.030004194006323814, -0.0313311442732811, 0.03324272111058235, 0.006609631702303886, 0.019054554402828217, 0.04965515807271004, 0.01693979650735855, 0.0021092426031827927, 0.008413834497332573, -0.0439177006483078, -0.016830703243613243, 0.030837832018733025, 0.0011819296050816774, -0.014131548814475536, -0.052712563425302505, -0.007942556403577328, 0.003530364017933607, 0.014973518438637257, 0.0025067611131817102, 0.002973861526697874, 0.02348770759999752, 0.0207804124802351, 0.0675528347492218, -0.026768574491143227, 0.02417195774614811, -0.004058951046317816, 0.0380379818379879, 0.004999916534870863, -0.02165854722261429, 0.00388156296685338, -0.014766057021915913, -0.04137519747018814, 0.05122138932347298, -0.02383158914744854, 0.0018077410059049726, -0.0007451171986758709, -0.049746930599212646, 0.0016561102820560336, 0.02443290315568447, -0.00138726900331676, 0.03476684167981148, -0.01989397592842579, 0.048199787735939026, 0.01350915152579546, -0.06905804574489594, 0.02643689699470997, 0.03424252197146416, 0.010509239509701729, 0.0936613604426384, 0.018785174936056137, 0.008457250893115997, 0.018425140529870987, -0.022129420191049576, -0.07335412502288818, 0.03223935887217522, -0.013873912394046783, 0.018553975969552994, 0.004862627480179071, 0.013832908123731613, -0.00797357875853777, 0.009907146915793419, -0.00986678060144186, 0.020287087187170982, 0.026312192901968956, 0.03578733280301094, -0.0345589853823185, -0.005195971578359604, -0.015223708003759384, 0.0665215477347374, -0.021287016570568085, 0.04975844919681549, -0.016633782535791397, -0.010832970961928368, -0.013385316357016563, -0.04484427720308304, 0.009297034703195095, 0.0019120029173791409, -0.000737157475668937, 0.03234781697392464, 0.014039764180779457, 0.046481676399707794, 0.053838834166526794, 0.002902641426771879, 0.035098809748888016, 0.02532997541129589, -0.031938258558511734, 0.00244843284599483, 0.02192898653447628, 0.06314093619585037, -0.000997294788248837, -0.01870098151266575, -0.02327912300825119, -0.028075292706489563, -0.028809113427996635, -0.006068894639611244, -0.004736179951578379, 0.02107573114335537, -0.031355228275060654, -0.00352337583899498, 0.0030132236424833536, 0.012278887443244457, -0.02492448501288891, -0.04531342536211014, -0.008321895264089108, -0.048389822244644165, -0.044483914971351624, 0.03075811080634594, -0.010030725970864296, -0.00993036013096571, -0.006403194274753332, -0.018897391855716705, -0.005312296096235514, 0.04287851229310036, -0.059843629598617554, -0.003664320334792137, 0.022516565397381783, 0.0243961401283741, 0.0015406097518280149, 0.0024000508710741997, 0.004910341929644346, 0.002200819319114089, -0.03133025020360947, 0.031242934986948967, -0.02847914583981037, -0.02466527558863163, 0.007133800070732832, 0.012532182037830353, 0.05164435878396034, 0.029696965590119362, 0.0029904930852353573, 0.0029345250222831964, 0.018903080374002457, 0.04689883068203926, -0.012393703684210777, -0.0005716480081900954, -0.01868182048201561, 0.040188681334257126, 0.029243087396025658, 0.05726011097431183, 0.05230918526649475, 0.029033780097961426, 0.01995771750807762, 0.018612956628203392, 0.020845435559749603, 0.00046255881898105145, -0.0033442401327192783, -0.02054191194474697, 0.0202367901802063, 0.03329618647694588, 0.009731496684253216, 0.03418387100100517, 0.015779059380292892, 0.01881171576678753, 0.012435146607458591, 0.0153459832072258, -0.03491174429655075, 0.05844981595873833, -0.004993881098926067, 0.027980277314782143, 0.0008262417977675796, 0.025896381586790085, 0.03226935863494873, 0.04914277791976929, -0.03345746919512749, -0.027892140671610832, -0.004084350541234016, 0.012142258696258068, 0.009212562814354897, -0.0010869262041524053, 0.031601786613464355, 0.002894534496590495, 0.0075072031468153, 0.03634696453809738, -0.031361665576696396, -0.04918483644723892, -0.04838496074080467, -0.05414249375462532, -0.06465946137905121, -0.03862970322370529, -0.01799272745847702, 0.016734197735786438, 0.023249683901667595, -0.04820770397782326, 0.013185884803533554, -0.015045844949781895, -0.022583406418561935, -0.003064761171117425, -0.01592087745666504, 0.023185739293694496, 0.033215995877981186, 0.053172942250967026, -0.03058716468513012, 0.0261828675866127, -0.01802111603319645, 0.03025910258293152, -0.020305171608924866, 0.017169011756777763, 0.0037361762952059507, -0.016142847016453743, 0.029858317226171494, 0.009095503017306328, 0.006680607330054045, -0.009231005795300007, -0.01168427150696516, -0.04653354361653328, 0.006726499181240797, 0.024466434493660927, -0.009547188878059387, -0.0038466784171760082, -0.06551598012447357, 0.061471614986658096, 0.03504684567451477, -0.05455074831843376, 0.04506244882941246, 0.06591086834669113, -0.027650194242596626, 0.06712593883275986, 0.025150945410132408, 0.01432167086750269, -0.04616362601518631, 0.03850740194320679, 0.034743648022413254, 0.020803302526474, -0.06564277410507202, -0.0018710301956161857, -0.05736934021115303, 0.028723567724227905, 0.019618771970272064, -0.01820916309952736, -0.052686262875795364, 0.04078035429120064, -0.009756513871252537, -0.05897647514939308, 0.00677095539867878, -0.033949509263038635, -0.035018354654312134, -0.0279812291264534, -0.03620545566082001, 0.04586223140358925, 0.04709948971867561, 0.029866233468055725, 0.005532157141715288, -0.019623681902885437, -0.02069004438817501, 0.022411443293094635, 0.016094712540507317, -0.010063118301331997, 0.030069945380091667, 0.07006485760211945, 0.02123408578336239, 0.011023667640984058, 0.008882629685103893, 0.0024183806963264942, -0.033015377819538116, 0.00921105220913887, 0.017392590641975403, -0.007193724624812603, 0.04761411249637604, -0.008552622981369495, 0.012137659825384617, 0.06383279711008072, -0.030150633305311203, 0.018135374411940575, 0.021183069795370102, 0.01833588443696499, -0.020727084949612617, 0.017442649230360985, 0.05509232357144356, -0.024504179134964943, -0.029184158891439438, -0.0498066246509552, 0.02347838133573532, -0.004870019853115082, 0.04682927951216698, -0.08658741414546967, 0.07053735107183456, -0.009588855318725109, -0.021517328917980194, 0.03469030559062958, -0.04863632842898369, -0.012548701837658882, 0.021227402612566948, -0.03510843962430954, 0.039440494030714035, -0.03462592139840126, 0.008910789154469967, 0.0037899059243500233, 0.035429514944553375, 0.01933884806931019, 0.009154895320534706, 0.0009282808168791234, -0.004265077877789736, -0.03803415223956108, 0.021455761045217514, -0.011482207104563713, -0.015614456497132778, -0.039290107786655426, 0.005237407982349396, -0.0076943314634263515, -0.0523211807012558, -0.06858211755752563, 0.024333931505680084, 0.03223356232047081, 0.03240860626101494, -0.010091315023601055, -0.0025915843434631824, 0.010438135825097561, 0.037497833371162415, 0.016040390357375145, -0.03478911891579628, 0.03701752796769142, -0.058163926005363464, 0.00401437608525157, 0.05322005972266197, -0.033060263842344284, -0.028282415121793747, -0.028997519984841347, -0.03206035867333412, 0.05042266100645065, -0.020762836560606956, 0.00360176432877779, -0.03423784673213959, 0.02082866244018078, -0.007157373707741499, 0.021693453192710876, -0.05903136730194092, -0.010876815766096115, -0.021854590624570847, 0.006566157564520836, 0.006044669542461634, -0.04388388618826866, -0.015103057026863098, -0.04920123144984245, 0.05346129462122917, 0.023431193083524704, -0.006178333889693022, -0.05186421424150467, -0.0316690169274807, -0.021546561270952225, -0.03506423905491829, -0.007864228449761868, 0.03171228617429733, -0.006522614974528551, 0.015019862912595272, -0.06564653664827347, 0.0405244417488575, 0.044197071343660355, -0.019322704523801804, -0.016861572861671448, 0.02419140189886093, 0.012421653605997562, 0.009983948431909084, 0.02499471604824066, -0.016066374257206917, -0.043675508350133896, 0.023413019254803658, -0.06697013974189758, -0.002123399870470166, 0.0011410146253183484, -0.01036038901656866, 0.006545677315443754, 0.014491012319922447, 0.016298014670610428, 0.006729958578944206, -0.04094087332487106, 0.00360163114964962, 0.016800900921225548, 0.05711327865719795, -0.006410710047930479, -0.028321417048573494, 0.049365460872650146, -0.015613201074302197, -0.030480364337563515, 0.0289772842079401, 0.054070137441158295, -0.017830880358815193, -0.0007757081766612828, 0.0016704428708180785, -0.03822711855173111, 0.039580103009939194, -0.01943429931998253, 0.03381112217903137, -0.026294032111763954, -0.024940531700849533, 0.011977221816778183, -0.012296080589294434, 0.03872208297252655, -0.025977270677685738, -0.003938857465982437, -0.04015639051795006, -0.0374656617641449, -0.034861937165260315, -0.008247106336057186, -0.02977214753627777, 0.019374767318367958, 0.021956119686365128, -0.05143400654196739, -0.015174183063209057, -0.008454173803329468, 0.019761454313993454, 0.00033956312108784914, -0.006420902907848358, 0.01763300783932209, 0.016070902347564697, 0.03620859980583191, 0.04472341015934944, -0.0025482752826064825, -0.03811505809426308, -0.02676529437303543, 0.0011940941913053393, -0.009584818966686726, -0.044505853205919266, 0.020053712651133537, -0.042613107711076736, -0.014873044565320015, -0.005285667721182108, 0.00610401900485158, -0.01287704985588789, 0.0025198510847985744, 0.028387486934661865, 0.007275210693478584, -0.012503515928983688, 0.005817942321300507, -0.026420360431075096, 0.051373183727264404, 0.018427828326821327, -0.02623271942138672, -0.02965623326599598, 0.05407869443297386, -0.016055339947342873, 0.03481212630867958, 0.017149100080132484, -0.006384099833667278, -0.056147679686546326, -0.04297694191336632, 0.010434084571897984, -0.05070454627275467, 0.0001781040773494169, -0.017560482025146484, -0.010719156824052334, -0.004414870869368315, 0.03772394359111786, -0.01943034864962101, -0.025921735912561417, -0.0031172435265034437, -0.023005027323961258, -0.028049573302268982, -0.01847115531563759, -0.03664166107773781, -0.03695753589272499, 0.007820596918463707, -0.018525028601288795, 0.019405273720622063, 0.0053402879275381565, 0.006012639030814171, 0.02495565265417099, -0.0076677231118083, 0.01964566297829151, -0.04261866584420204, -0.05877223610877991, -0.021563855931162834, -0.02631734311580658, -0.019958313554525375, 0.000838819716591388, 0.05009974166750908, -0.030026044696569443, 0.05343422293663025, -0.05170493572950363, -0.01626066118478775, -0.028232252225279808, -0.02593575231730938, -0.02147262915968895, 0.01760009676218033, 0.03736742585897446, -0.00307533354498446, 0.0011337462347000837, -0.04166607931256294, 0.033210210502147675, 0.017098985612392426, -0.015699397772550583, -0.010772688314318657, -0.06075330078601837, -0.05027023330330849, -0.04170519858598709, 0.049871064722537994, -0.049639180302619934, -0.0006997755845077336, -0.05252857133746147, 0.011685878969728947, 0.04110622778534889, -0.035658009350299835, 0.05581330135464668, 0.06031569465994835, -0.010303896851837635, -0.020909585058689117, -0.03327115252614021, 0.007146304938942194, 0.021942973136901855, -0.022166430950164795, 0.0005276884185150266, 0.013566813431680202, -0.023170074447989464, -0.00022279724362306297, -0.04364277794957161, -0.03401506319642067, -0.035083968192338943, -0.014904086478054523, 0.0687384083867073, -0.04471079632639885, 0.03879685327410698, -0.007750306744128466, -0.025206483900547028, -0.02879401482641697, 0.04781743884086609, 0.0018680318025872111, 0.01350647583603859, 0.03980367258191109, 0.0013266036985442042, -0.01539580337703228, 0.026226619258522987, 0.013345591723918915, -0.013709788210690022, -0.031791336834430695, 0.06975486129522324, -0.011958873830735683, -0.056077100336551666, -0.002927804831415415, 0.05607641860842705, -0.0427110381424427, -0.03396786376833916, 0.007883523590862751, 0.019470466300845146, -0.0027945623733103275, -0.0030830628238618374, 0.00194349919911474, 0.012716533616185188, -0.016724668443202972, 0.011016731150448322, 0.02943367324769497, -0.03827371075749397, 0.027287084609270096, 0.004411919042468071, 0.00690724141895771, -0.03206418454647064, 0.051034115254879, 0.015461322851479053, 0.003571132430806756, -0.029417475685477257, -0.015408257953822613, 0.01911024935543537, -0.005813751835376024, -0.02929743379354477, 0.03577107936143875, -0.041334863752126694, -0.0195145346224308, 0.007840902544558048, -0.02335890382528305, 0.035109829157590866, 0.019489388912916183, -0.023568084463477135, -0.005480778403580189, -0.04855182394385338, -0.04542014002799988, -0.060433078557252884, 0.00376413157209754, -0.008137586526572704, 0.014417859725654125, -0.05520443245768547, 0.005190763622522354, 0.0004004815418738872, 0.01733839511871338, -0.02314876578748226, -0.045853156596422195, -0.037726350128650665, -0.04304632917046547, -0.05619528517127037, -0.01074308156967163, -0.01044231466948986, 0.01809006743133068, 0.044848088175058365, 0.04434144124388695, -0.022483784705400467, 0.027368204668164253, 0.014878354966640472, -0.03180341795086861, 0.032222598791122437, -0.020094580948352814, 0.028875313699245453, -0.035817280411720276, -0.039787523448467255, -0.04087303206324577, 0.00851953960955143, -0.013305433094501495, -0.05594939738512039, -0.036787550896406174, 0.0432252362370491, -0.0007827607914805412, 0.053713567554950714, 0.024567289277911186, -0.010553717613220215, -0.028450358659029007, -0.03308022767305374, -0.011915111914277077, 0.03494342416524887, -0.03701699152588844, 0.02268851548433304, 0.011531565338373184, -0.04517504945397377, 0.04469502717256546, -0.02437444217503071, -0.033076025545597076, -0.0312698557972908, 0.00844147615134716, -0.0032931349705904722, 0.0085816141217947, -0.03420441597700119, -0.014447132125496864, 0.01111427042633295, -0.036554012447595596, -0.012359948828816414, -0.00028675771318376064, 0.04745575785636902, 0.0043677096255123615, 0.0001578443916514516, -0.00426792586222291, 0.06075499579310417, 0.0042956252582371235, 0.005489069037139416, -0.014279653318226337, 0.01996595785021782, 0.020744679495692253, 0.044326890259981155, 0.030236264690756798, 0.010757165029644966, 0.012736734002828598, -0.045386239886283875, 0.00594377052038908, -0.014718500897288322, -0.023992368951439857, 0.02121833525598049, -0.02411961555480957, -0.018971990793943405, -0.03295990452170372, 0.03550775721669197, 0.004296007100492716, 0.0421963669359684, -0.008202381432056427, -0.04918200150132179, 0.009808824397623539, -0.06278271228075027, -0.03402935713529587, 0.012986942194402218, -0.06780234724283218, -0.024433787912130356, 0.04214019700884819, 0.01800065115094185, -0.00917311292141676, 0.01058768481016159, -0.03236570954322815, 0.001010951935313642, -0.04217500612139702, 0.005453023128211498, -0.037427060306072235, 0.027204932644963264, -0.04106084629893303, 0.021294934675097466, -0.010899443179368973, 0.008362040854990482, 0.016441918909549713, 0.057113274931907654, -0.041328828781843185, -0.039092496037483215, 0.03494821861386299, 0.02554144710302353, 0.019858427345752716, 0.007578043267130852, -0.0000336752891598735, -0.008725699037313461, -0.012586419470608234, 0.0358208492398262, -0.009573952294886112, 0.02817978337407112, 0.005945728160440922, 0.014921554364264011, 0.004762825556099415, -0.0032051715534180403, -0.014575868844985962, 0.038918834179639816, 0.006185504142194986, -0.0143961813300848, -0.016887415200471878, 0.054822444915771484, 0.030897079035639763, 0.0032177790999412537, 0.04354177415370941, 0.014403696171939373, 0.044165778905153275, 0.008506043814122677, 0.017218589782714844, -0.020272089168429375, 0.04185696318745613, 0.04050769656896591, 0.05436815321445465, -0.004871393088251352, 0.013578339479863644, 0.06741418689489365, -0.006019205320626497, 0.022069238126277924, 0.010229784063994884, 0.02292090281844139, -0.017360033467411995, -0.02108992077410221, -0.018949372693896294, 0.015783632174134254, 0.020350256934762, -0.025792991742491722, -0.017102183774113655, -0.027275314554572105, -0.019411588087677956, -0.016149504110217094, -0.0004909848212264478, 0.04145123064517975, -0.021616924554109573, 0.0029677841812372208, 0.01064294669777155, -0.01753978803753853, 0.016190435737371445, 0.025332454591989517, -0.013878257013857365, 0.01833496056497097, 0.02920626662671566, 0.04368632659316063, -0.023752283304929733, 0.0413658581674099, 0.007052777335047722, 0.010293475352227688, -0.02926202490925789, 0.019018538296222687, -0.004498680587857962, 0.0023407640401273966, -0.06426391005516052, 0.0037566423416137695, -0.05543328821659088, 0.05815064534544945, -0.02667062357068062, -0.021879229694604874, 0.04488490894436836, -0.01894357055425644, -0.034016698598861694, -0.05143846571445465, 0.025365354493260384, -0.03918170556426048, 0.03103165328502655, 0.029634976759552956, -0.01220053993165493, -0.033597126603126526, 0.037143293768167496, 0.01776750572025776, 0.03506260737776756, 0.045007336884737015, 0.045503173023462296, -0.018212711438536644, 0.030033212155103683, 0.05026569217443466, -0.01300851721316576, 0.014755942858755589, 0.02607821486890316, -0.020413555204868317, -0.0319862887263298, -0.0260359738022089, -0.028521262109279633, 0.021339118480682373, -0.0002481088740751147, 0.006961046252399683, 0.022883694618940353, 0.025744570419192314, 0.010848328471183777, -0.018802110105752945, -0.005694884806871414, 0.027862954884767532, -0.0564245730638504, 0.01137714833021164, 0.014448745176196098, 0.01849142462015152, -0.024903692305088043, -0.015377369709312916, -0.03125535696744919, -0.01692485436797142, 0.009451213292777538, -0.047358687967061996, 0.07136469334363937, -0.036505620926618576, -0.03393308073282242, -0.033041149377822876, -0.0399041511118412, -0.0332934744656086, 0.021372295916080475, -0.020605558529496193, -0.05984429270029068, 0.017219780012965202, 0.039901211857795715, -0.006897841580212116, -0.01040426455438137, -0.02621169202029705, 0.007006077095866203, 0.036374207586050034, 0.06786645203828812, -0.010429676622152328, 0.041256312280893326, 0.0486193411052227, -0.028692979365587234, 0.03243226557970047, -0.04811998829245567, 0.01883026584982872, -0.024946825578808784, -0.009725905023515224, -0.03278135135769844, 0.024807540699839592, -0.01616808772087097, -0.10214921087026596, 0.022552626207470894, -0.005489063449203968, 0.015225186944007874, -0.038719866424798965, -0.07471966743469238, 0.00128448405303061, -0.021366599947214127, -0.013240852393209934, -0.019739633426070213, 0.04005410894751549, 0.01984657347202301, -0.028313063085079193, -0.015868084505200386, -0.05915667116641998, 0.16908983886241913, 0.05493198707699776, 0.00800757110118866, 0.012513610534369946, 0.050601232796907425, 0.04037347063422203, 0.05610649660229683, 0.001817400916479528, -0.009925623424351215, -0.03494866192340851, 0.015700919553637505, -0.0257993396371603, 0.027494492009282112, 0.028370579704642296, 0.0269927978515625, 0.0795464813709259, -0.04235384985804558, 0.029662782326340675, 0.01971321925520897, -0.03377240151166916, -0.05742768570780754, 0.02121613919734955, 0.024175018072128296, 0.02906668186187744, 0.0016072727739810944, -0.019821906462311745, -0.0073515623807907104, -0.05667593330144882, 0.008626983501017094, -0.021164758130908012, 0.029552053660154343, -0.04418341442942619, 0.05864059552550316, -0.020262636244297028, -0.04310140386223793, 0.04298222437500954, 0.012974738143384457, -0.03316798433661461, 0.03567742928862572, 0.0021024602465331554, -0.04606878012418747, 0.0018864218145608902, 0.05517305061221123, -0.023110561072826385, 0.009130514226853848, 0.04036959633231163, -0.03459810093045235, 0.0019044970395043492, 0.005442740395665169, -0.029767228290438652, 0.06271346658468246, -0.049148961901664734, 0.02543485537171364, 0.0008185385959222913, -0.01932435669004917, 0.008165664970874786, 0.02345208451151848, -0.01763291470706463, -0.0391630120575428, 0.02833021618425846, 0.036929741501808167, 0.0004463546210899949, -0.024684030562639236, 0.03908403217792511, -0.05952707678079605, -0.0014122050488367677, 0.03495039418339729, -0.007934595458209515, 0.006846062373369932, -0.011476685293018818, 0.01098739542067051, -0.032807040959596634, -0.002460711868479848, -0.037999533116817474, 0.05508630722761154, 0.0030834274366497993, -0.02717316709458828, 0.01707443781197071, 0.03302853927016258, -0.007926622405648232, 0.009686126373708248, -0.0650164932012558, -0.019337644800543785, -0.008233295753598213, 0.0051950993947684765, 0.04287626966834068, -0.04813379794359207, -0.029557224363088608, -0.035614822059869766, 0.07163378596305847, 0.05861276388168335, 0.025488000363111496, 0.022875726222991943, 0.0039335377514362335, -0.008781775832176208 ]
Hayden and I have officially been engaged for two weeks and it's been the best two weeks ever! We had a little engagement party with our family and friends and they brought us so many adorable gifts that I wanted to share them and a few other ideas I have with y'all! Especially if they got engaged in a special or unique place, I think this is such an adorable gift idea! A subscription box for brides- why didn't I think of that?! This is the CUTEST box ever and so much fun for new brides. Super high quality stuff and the since it's a monthly subscription, it's the gift that keeps on giving! Grab a gift card to your favorite restaurant or their favorite restaurant and for the chance for them to continue the celebration!
[ -0.023549027740955353, 0.03722621500492096, -0.032417021691799164, -0.006645255256444216, -0.06654226779937744, 0.02142878994345665, 0.0301860012114048, 0.06803103536367416, 0.038227956742048264, -0.026400182396173477, 0.016181733459234238, 0.021886024624109268, 0.031100157648324966, 0.002775966888293624, -0.013367866165935993, -0.009494408965110779, -0.029282843694090843, -0.0531163327395916, -0.00965118408203125, 0.010208080522716045, -0.021728215739130974, 0.048257485032081604, -0.06863534450531006, -0.011876830831170082, 0.010237261652946472, 0.04245755821466446, 0.026213420554995537, -0.014919182285666466, 0.075865238904953, 0.056278765201568604, -0.01508533675223589, -0.009118327870965004, 0.010779298841953278, -0.0643484815955162, -0.02033769153058529, -0.016669921576976776, 0.001976210391148925, 0.0006225216784514487, -0.03714596852660179, -0.07764507830142975, -0.016120249405503273, -0.010402048006653786, 0.049382828176021576, -0.0011746420059353113, -0.04740504175424576, -0.004653438460081816, 0.017990000545978546, -0.024645043537020683, 0.016320282593369484, -0.051874998956918716, 0.020482739433646202, -0.024867603555321693, -0.0290396586060524, 0.007314508315175772, 0.033910997211933136, 0.028859203681349754, -0.026824625208973885, -0.02747689187526703, 0.012317735701799393, 0.029228970408439636, -0.0018334495835006237, -0.005897582974284887, 0.005170064512640238, -0.05919044092297554, 0.034097667783498764, 0.025009457021951675, -0.0277234073728323, -0.032769348472356796, -0.0030778637155890465, -0.014570290222764015, 0.009915226139128208, -0.01662590354681015, -0.0009815932717174292, -0.01976913772523403, -0.020724575966596603, -0.006571880076080561, -0.01965797320008278, 0.024222739040851593, -0.02117381989955902, -0.01199401542544365, 0.024912767112255096, 0.03473278507590294, -0.006301688030362129, -0.0004521763476077467, -0.04039308428764343, -0.021519286558032036, 0.019960934296250343, 0.026519672945141792, 0.024688435718417168, -0.008830602280795574, -0.010402414947748184, 0.04992422088980675, 0.00012758260709233582, 0.0035473660100251436, 0.0697401762008667, 0.025529570877552032, -0.04882923141121864, 0.02677435614168644, -0.00024081158335320652, 0.011401103809475899, 0.016349652782082558, 0.016206666827201843, 0.01696045510470867, 0.032018229365348816, -0.048203710466623306, 0.013580305501818657, 0.011766979470849037, -0.00395728275179863, -0.015754425898194313, -0.03654804080724716, -0.001951243495568633, -0.038775015622377396, 0.027658265084028244, 0.0034378934651613235, -0.014305135235190392, 0.07608657330274582, 0.010494428686797619, 0.05055179446935654, -0.02711716666817665, -0.003033270826563239, 0.002411875408142805, 0.024540318176150322, 0.007661097217351198, -0.04556218162178993, 0.02102554403245449, -0.05956157669425011, -0.008502502925693989, 0.04453393816947937, -0.024710234254598618, 0.0027218488976359367, -0.014350694604218006, -0.04766475781798363, -0.007241191808134317, 0.018947744742035866, -0.041098158806562424, 0.02222173847258091, -0.01929590292274952, 0.02811083197593689, 0.025021284818649292, -0.08431393653154373, 0.050523318350315094, 0.02036452852189541, 0.01801403798162937, 0.06749268621206284, 0.014804401434957981, 0.02917010337114334, -0.007536869961768389, -0.010000057518482208, -0.03899633511900902, -0.005479006562381983, -0.00818873755633831, 0.03687707707285881, -0.005475515965372324, 0.02606828324496746, -0.001612938824109733, -0.020453505218029022, 0.02658015303313732, 0.002735437359660864, 0.019876601174473763, 0.010085830464959145, 0.018661731854081154, 0.011491990648210049, -0.02893933095037937, 0.041365526616573334, -0.02392510697245598, 0.018265394493937492, -0.013367262668907642, -0.020174672827124596, -0.020102163776755333, -0.028406426310539246, 0.009503780864179134, -0.0022847598884254694, -0.008446229621767998, 0.011333612725138664, 0.02634633705019951, 0.038276780396699905, 0.03978351503610611, -0.025057978928089142, 0.039979491382837296, 0.027384735643863678, -0.03956782445311546, 0.030186520889401436, -0.004439458716660738, 0.033608950674533844, 0.012720798142254353, 0.011982815340161324, 0.019070036709308624, -0.03530227765440941, -0.046652309596538544, -0.04211185500025749, -0.017541350796818733, 0.020415281876921654, -0.029708776623010635, 0.029798083007335663, 0.028438320383429527, 0.014027726836502552, -0.006879108026623726, 0.008990076370537281, 0.00288491602987051, -0.048763882368803024, -0.03660905733704567, 0.043557148426771164, -0.03565823659300804, 0.03604959324002266, 0.00209607370197773, -0.02740371786057949, 0.02015782706439495, 0.06743351370096207, -0.03105110488831997, -0.029767118394374847, -0.0009368454338982701, 0.03208822011947632, -0.008922846987843513, -0.023080088198184967, 0.0037840488366782665, 0.014070185832679272, -0.031067032366991043, 0.025250516831874847, -0.0197866503149271, -0.009090452454984188, 0.016312897205352783, 0.00988143589347601, 0.042460910975933075, 0.021953696385025978, -0.02720274217426777, -0.008397093042731285, 0.02697831764817238, 0.05121706798672676, -0.01707850582897663, -0.01591937057673931, -0.027946965768933296, 0.055492255836725235, 0.03285534679889679, 0.06283076107501984, 0.0632421150803566, 0.015100281685590744, 0.016681814566254616, 0.010220753028988838, -0.0316949337720871, 0.030897945165634155, -0.007105608005076647, -0.03655886650085449, 0.013605375774204731, 0.04916725307703018, -0.02115696482360363, -0.015658916905522346, 0.008340138010680676, 0.0023853250313550234, -0.011382914148271084, 0.048343997448682785, -0.02438339963555336, 0.04801330342888832, 0.021110989153385162, 0.04597288370132446, -0.011112352833151817, 0.019720111042261124, 0.04239530861377716, 0.07804275304079056, -0.012801749631762505, 0.012523798272013664, 0.0028867416549474, 0.011146685108542442, -0.04060888662934303, 0.01740741916000843, 0.03603625297546387, 0.024920327588915825, 0.021643327549099922, -0.005311452317982912, -0.043377432972192764, -0.03862835839390755, -0.038525063544511795, -0.0726766362786293, -0.031542565673589706, -0.03483884409070015, -0.012389784678816795, 0.0021039261482656, 0.0591069832444191, -0.06489913165569305, 0.04803794249892235, -0.022579556331038475, -0.03041154146194458, -0.012514332309365273, 0.003792038420215249, 0.041308823972940445, 0.031489983201026917, 0.047363221645355225, -0.06586702167987823, 0.03818037360906601, 0.025113986805081367, 0.035565804690122604, -0.010975240729749203, -0.024587303400039673, 0.005898173898458481, 0.005889202002435923, 0.023572484031319618, -0.00996765960007906, -0.01103221159428358, -0.0010864128125831485, -0.03566642478108406, -0.04627901315689087, -0.0030130501836538315, 0.0335034541785717, 0.020176691934466362, 0.023700572550296783, -0.06434471160173416, 0.0261924359947443, 0.001454194774851203, -0.01481438335031271, 0.03404765948653221, 0.033519383519887924, -0.0450064092874527, 0.03620145097374916, 0.02432299219071865, -0.005733564496040344, -0.03470994159579277, 0.03969896584749222, 0.04974335804581642, 0.03536655753850937, -0.03559624403715134, -0.0034782537259161472, -0.0411650724709034, 0.0164111889898777, -0.011124416254460812, 0.0011400412768125534, -0.05070609226822853, 0.039107006043195724, -0.003349840175360441, -0.07103131711483002, 0.0124081801623106, -0.044309407472610474, -0.022375039756298065, -0.047258153557777405, -0.03617972135543823, 0.013900265097618103, 0.020877154543995857, 0.02572321891784668, -0.02816953882575035, -0.025976404547691345, 0.00351012428291142, 0.022262118756771088, 0.05726563557982445, -0.04497294872999191, 0.02385629154741764, 0.05362531170248985, -0.0164727084338665, -0.001623939722776413, 0.01929115504026413, -0.045625653117895126, -0.0361807644367218, 0.024521933868527412, 0.027769315987825394, -0.0068553779274225235, 0.010255868546664715, 0.001356113818474114, 0.03679092973470688, 0.06909360736608505, -0.05491878464818001, -0.008769942447543144, 0.025689104571938515, 0.022180568426847458, -0.017237044870853424, 0.029432374984025955, 0.033140163868665695, -0.04093954339623451, -0.04759969562292099, -0.046891383826732635, 0.03335591033101082, -0.008444126695394516, 0.02814994379878044, -0.05598444119095802, 0.03140183910727501, 0.013298978097736835, -0.028216153383255005, 0.04535540193319321, -0.044688016176223755, 0.013514972291886806, 0.030798083171248436, 0.021398432552814484, 0.02813919633626938, -0.017813151702284813, -0.00017467902216594666, -0.026025526225566864, 0.01473130751401186, 0.047059156000614166, -0.025254076346755028, 0.022739822044968605, -0.01593901216983795, -0.023408163338899612, 0.012480463832616806, -0.00046986309462226927, -0.002864391775801778, 0.0049368166364729404, -0.02106250263750553, -0.009203164838254452, -0.03612551465630531, -0.040961358696222305, 0.012904496863484383, 0.007888741791248322, 0.04628942906856537, 0.004908740520477295, 0.02578667923808098, 0.013685126788914204, 0.015170345082879066, 0.02714078314602375, -0.013862420804798603, 0.029104139655828476, -0.04061306640505791, 0.05882653966546059, 0.019676340743899345, -0.03034687228500843, -0.017697876319289207, 0.004080161917954683, -0.05653757229447365, 0.0431138351559639, -0.008549096994102001, -0.01935405470430851, -0.06363179534673691, 0.04325203597545624, -0.013084886595606804, 0.033573634922504425, -0.02888871170580387, -0.008617598563432693, -0.014904982410371304, 0.005127329844981432, 0.008832542225718498, -0.05863654240965843, -0.004557382315397263, -0.030753780156373978, 0.025565020740032196, 0.012153072282671928, -0.0006781944539397955, -0.024497060105204582, -0.0047624437138438225, -0.0007301252335309982, -0.025630449876189232, 0.003244224702939391, 0.01003342680633068, 0.02555074356496334, 0.002686072373762727, -0.04873888939619064, 0.05573654919862747, 0.046745240688323975, -0.006248509977012873, -0.016643157228827477, -0.0027545003686100245, 0.019153250381350517, 0.009652002714574337, 0.03671823441982269, 0.021531017497181892, -0.040141064673662186, 0.016302907839417458, -0.054700180888175964, -0.005763909313827753, 0.01947982795536518, 0.009809738025069237, -0.0011803507804870605, 0.002437104471027851, 0.06633129715919495, 0.002387479180470109, -0.009526137262582779, 0.009005295112729073, -0.0008661040919832885, 0.04084714502096176, -0.021681178361177444, -0.04039277136325836, 0.04282010346651077, -0.0059966156259179115, -0.040399644523859024, -0.0032351838890463114, 0.05854203924536705, -0.012168936431407928, -0.009179039858281612, 0.05072217807173729, -0.06073499843478203, 0.04844510555267334, -0.045450542122125626, -0.00756459916010499, 0.004622139967978001, -0.019636135548353195, 0.03980322554707527, -0.05287487804889679, 0.012258621864020824, 0.0035222971346229315, -0.018724709749221802, -0.0510086715221405, -0.05511650815606117, -0.01681358553469181, 0.011039284989237785, 0.002069374080747366, 0.01640045829117298, 0.012971518561244011, -0.011093482375144958, -0.030265072360634804, -0.01303180493414402, 0.0009594024741090834, 0.0070291366428136826, -0.025015395134687424, 0.025650454685091972, -0.01733161136507988, 0.027161337435245514, 0.027040036395192146, 0.013862593099474907, 0.0027061409782618284, 0.015725402161478996, 0.006981199607253075, -0.019316084682941437, -0.0584208220243454, -0.0007749074138700962, -0.0652957409620285, -0.03851403668522835, -0.014635390602052212, 0.021574730053544044, -0.025701284408569336, -0.0052244942635297775, 0.033605366945266724, 0.041872818022966385, 0.02417583204805851, 0.006939415354281664, -0.041293609887361526, 0.029078789055347443, 0.03731975704431534, -0.031242912635207176, -0.04302707314491272, 0.04073050618171692, -0.024457406252622604, 0.04780574515461922, -0.01768548972904682, -0.028869353234767914, -0.0525234192609787, -0.04140102490782738, -0.02417946606874466, -0.03336956724524498, -0.03308498486876488, -0.0725863054394722, -0.04760299623012543, -0.010163074359297752, 0.03937622532248497, -0.009730429388582706, -0.024444224312901497, 0.0024065428879112005, -0.042734548449516296, 0.0034055053256452084, -0.023070383816957474, -0.02541719377040863, -0.0276628490537405, 0.021116431802511215, -0.026900647208094597, 0.04240620508790016, -0.02624908648431301, 0.01895710825920105, -0.02397608384490013, 0.03806163743138313, -0.003540760837495327, -0.006376519799232483, -0.04536934942007065, -0.03514464944601059, -0.007206099573522806, -0.0010560720693320036, 0.020507875829935074, 0.021812250837683678, -0.04491296410560608, 0.031762246042490005, -0.060446597635746, -0.01632659137248993, -0.02875649929046631, -0.025836944580078125, 0.010159776546061039, -0.03610116243362427, 0.04872628301382065, -0.021485991775989532, -0.004537876695394516, -0.04838486760854721, 0.025227122008800507, 0.04341725632548332, -0.0018997672013938427, -0.030657095834612846, -0.036752212792634964, -0.09847117960453033, -0.05554739385843277, 0.03195824846625328, -0.018889864906668663, -0.00767719279974699, -0.04969639331102371, -0.007757522631436586, 0.029421666637063026, -0.017811326310038567, 0.021443232893943787, 0.06435044854879379, -0.012565040960907936, 0.012483819387853146, -0.0368792861700058, 0.011881636455655098, 0.03226875513792038, 0.018755057826638222, 0.007043099496513605, -0.036299481987953186, -0.03874928876757622, 0.017634989693760872, -0.03667452931404114, -0.034553900361061096, -0.04928571358323097, 0.015275255776941776, 0.08022735267877579, -0.025746414437890053, 0.035570837557315826, -0.019704921171069145, -0.027232462540268898, -0.04010099172592163, 0.06162049621343613, 0.02452656626701355, -0.024833668023347855, 0.025334330275654793, 0.026409225538372993, -0.02810712531208992, -0.0009019411518238485, -0.010658074170351028, -0.025554286316037178, -0.03925104811787605, 0.04734465479850769, 0.0076291002333164215, -0.0390169583261013, 0.022066211327910423, 0.05677786469459534, -0.05352674797177315, -0.04603169113397598, 0.015013843774795532, -0.011299616657197475, 0.00608202675357461, -0.030578434467315674, -0.000401434488594532, 0.0058802333660423756, -0.004178767558187246, 0.04168470948934555, 0.034097399562597275, -0.01868576370179653, 0.055240560322999954, 0.024928059428930283, 0.05706280097365379, -0.029225779697299004, 0.017647117376327515, 0.03602254390716553, 0.006388412788510323, -0.040859099477529526, -0.039769768714904785, -0.013379066251218319, -0.009926743805408478, -0.004895759280771017, 0.04382934793829918, -0.0184882003813982, -0.001226919237524271, 0.05195290595293045, -0.0034867161884903908, 0.04504954069852829, -0.015558400191366673, 0.004402914084494114, 0.04815587028861046, -0.04040802642703056, -0.053789012134075165, -0.030902057886123657, 0.018138380721211433, -0.03336212784051895, 0.03032584860920906, -0.038075048476457596, 0.0142246438190341, 0.04573308303952217, 0.003086624899879098, -0.016723504289984703, -0.0398031547665596, -0.017846275120973587, -0.016504991799592972, -0.06457116454839706, -0.03864225000143051, -0.010190400294959545, 0.005364201497286558, 0.019163668155670166, 0.02439279295504093, -0.025217369198799133, -0.013497988693416119, 0.034801967442035675, -0.033214978873729706, 0.0050511970184743404, -0.0174956563860178, 0.04224143177270889, -0.04275646060705185, -0.06032288074493408, -0.04561973363161087, -0.005296015180647373, -0.03366153687238693, -0.005460020620375872, -0.004602993372827768, -0.006311897654086351, -0.010174773633480072, 0.059180453419685364, 0.04201022535562515, 0.012465243227779865, -0.020586542785167694, -0.06575728207826614, 0.028421180322766304, 0.030314991250634193, 0.004628401715308428, 0.020908599719405174, -0.01998654380440712, -0.05939364433288574, 0.03697223588824272, 0.01184737216681242, -0.017342137172818184, -0.02132793702185154, 0.006412823218852282, -0.027007950469851494, 0.016971882432699203, -0.037535231560468674, -0.021110879257321358, -0.002821835223585367, -0.026123717427253723, 0.0005079802358523011, -0.013695437461137772, 0.02414054423570633, 0.011908061802387238, 0.008113950490951538, -0.04408441483974457, 0.044079601764678955, 0.012671543285250664, 0.03574284538626671, -0.0029953662306070328, 0.03144408389925957, 0.038896866142749786, -0.020732669159770012, 0.020402219146490097, 0.05126025900244713, 0.012414217926561832, -0.029239825904369354, 0.0013657473027706146, -0.014674165286123753, -0.024820132181048393, 0.042760081589221954, -0.010850618593394756, -0.03931952640414238, -0.06537309288978577, 0.010420906357467175, 0.013816737569868565, 0.02974788099527359, -0.012881781905889511, -0.01840219274163246, 0.020540853962302208, 0.010156342759728432, -0.02029704488813877, -0.002871684730052948, -0.05663865804672241, -0.0505031980574131, 0.04814308509230614, -0.017563048750162125, -0.01140238530933857, -0.01913800835609436, -0.03640244901180267, 0.024362660944461823, -0.009063231758773327, -0.005208886694163084, -0.06457316130399704, 0.012002389878034592, -0.029211418703198433, 0.04581448435783386, 0.026835322380065918, -0.01606983318924904, 0.014717214740812778, 0.044043611735105515, -0.027730243280529976, -0.05329159274697304, 0.026842551305890083, 0.047256726771593094, -0.00005756501559517346, -0.01758449710905552, -0.0012943046167492867, 0.03613434359431267, 0.022651156410574913, 0.0065957228653132915, 0.008540254086256027, 0.03136000409722328, 0.002099384553730488, 0.014353121630847454, 0.0157330259680748, 0.0038661202415823936, -0.03781034052371979, 0.03595061972737312, -0.014010886661708355, -0.018565990030765533, -0.04121057689189911, 0.029302356764674187, 0.014391019009053707, 0.006828797981142998, 0.0326995812356472, 0.016922052949666977, 0.035247836261987686, -0.02318165823817253, 0.029226500540971756, -0.02641800232231617, 0.018762314692139626, 0.021003978326916695, 0.021409515291452408, 0.015070324763655663, 0.03604431077837944, 0.028783384710550308, -0.013687564991414547, 0.00025973698939196765, 0.029695305973291397, 0.0072117336094379425, -0.014725448563694954, -0.006554753985255957, 0.0016606934368610382, 0.0007695558597333729, 0.012250227853655815, -0.0009123609634116292, -0.0015771108446642756, -0.033690810203552246, 0.02521499991416931, 0.006750002969056368, -0.03665152192115784, 0.03630080074071884, -0.02524472586810589, 0.02133992314338684, -0.02175774797797203, -0.023723190650343895, 0.017733747139573097, 0.03194485232234001, 0.003649043384939432, 0.02122923918068409, 0.03894796594977379, 0.022781146690249443, 0.013011094182729721, 0.05017172172665596, 0.009891255758702755, 0.013612407259643078, 0.0034797247499227524, 0.012031287886202335, -0.01752588339149952, 0.015507015399634838, -0.017059326171875, 0.025211462751030922, -0.024934066459536552, 0.03135218098759651, -0.00696380203589797, -0.022938111796975136, 0.0339331179857254, -0.03178660571575165, -0.006587281823158264, -0.04208305478096008, 0.04720328375697136, -0.006567367352545261, -0.010662641376256943, 0.008371436037123203, -0.015047404915094376, -0.02951909601688385, 0.04409889504313469, 0.03064941242337227, 0.049547478556632996, 0.013605929911136627, 0.04768294841051102, -0.03285151347517967, 0.030974436551332474, 0.040814004838466644, -0.03591325134038925, 0.0008603082969784737, -0.006437747739255428, 0.009918604977428913, -0.04940200597047806, 0.008352814242243767, -0.05086000636219978, 0.0000699097290635109, -0.029719755053520203, -0.020429445430636406, 0.0074173882603645325, 0.03478622063994408, -0.01943678967654705, -0.059890035539865494, -0.004136272706091404, 0.04049792140722275, -0.034221261739730835, 0.043889664113521576, 0.00997855607420206, 0.04142968729138374, -0.0179312601685524, 0.0032111669424921274, -0.02136136032640934, -0.019026804715394974, 0.010599572211503983, -0.03531114384531975, 0.026789266616106033, 0.0025930795818567276, -0.026722535490989685, -0.05662572383880615, -0.06017616391181946, -0.0074987998232245445, 0.015984144061803818, -0.04128456860780716, -0.024082139134407043, 0.02239830605685711, 0.0435771718621254, 0.011499166488647461, 0.0016096371691673994, -0.03167107328772545, -0.001763698528520763, 0.016294067725539207, 0.07843411713838577, -0.012483859434723854, 0.051474861800670624, 0.04186630994081497, -0.0038970052264630795, 0.005339865107089281, -0.027897905558347702, 0.054772138595581055, -0.02128022536635399, 0.04352536424994469, -0.04229908436536789, 0.048140786588191986, 0.007527026813477278, -0.045403800904750824, -0.0025784478057175875, 0.01347015518695116, -0.0064443787559866905, -0.040831390768289566, -0.06988965719938278, 0.02476518042385578, -0.04827878251671791, -0.018275659531354904, -0.036195237189531326, 0.0037005089689046144, 0.021629147231578827, 0.011804475449025631, -0.03218647837638855, -0.07536868751049042, 0.13434143364429474, 0.046272046864032745, 0.04128022491931915, 0.03626290336251259, 0.047339364886283875, 0.04197928309440613, 0.021383946761488914, -0.002068683970719576, 0.026247365400195122, -0.04738568142056465, 0.017474805936217308, -0.044251490384340286, 0.049294762313365936, -0.005137982312589884, 0.057927753776311874, 0.058891408145427704, -0.027025744318962097, 0.006559472531080246, 0.020723387598991394, -0.03456250950694084, -0.07770990580320358, 0.016374627128243446, 0.04127976670861244, 0.016794927418231964, 0.014542524702847004, -0.026016971096396446, -0.01631808839738369, -0.026594344526529312, -0.010555032640695572, -0.015884069725871086, 0.035185910761356354, -0.004986710846424103, 0.03603600710630417, -0.00770725728943944, -0.048545241355895996, 0.04226529598236084, 0.004265114665031433, -0.03299400582909584, 0.01045967172831297, 0.017166052013635635, -0.01020121295005083, -0.00007190506585175171, 0.04908009618520737, -0.03894176334142685, 0.04733644798398018, 0.038686659187078476, -0.025870665907859802, 0.022555343806743622, -0.01226159930229187, -0.03415141627192497, 0.04430028051137924, -0.015519232489168644, 0.012404308654367924, -0.0042648278176784515, -0.05005808174610138, 0.023977171629667282, 0.014345796778798103, -0.014588873833417892, -0.03045767918229103, 0.013423287309706211, 0.03366152197122574, 0.006647641304880381, -0.017610181123018265, -0.012540778145194054, -0.022054562345147133, 0.00934302993118763, 0.01662474498152733, 0.029607582837343216, -0.0013485344825312495, -0.025332972407341003, -0.014003144577145576, -0.01660086214542389, -0.01501883752644062, -0.03538082540035248, 0.05037211626768112, -0.006886743940412998, -0.02603004314005375, 0.025171825662255287, 0.015400760807096958, -0.03228631615638733, -0.01060149073600769, -0.03871087357401848, -0.02665153704583645, -0.004166255705058575, 0.006934335920959711, 0.06759102642536163, -0.02951495721936226, -0.02907709963619709, -0.022167662158608437, 0.05737527459859848, 0.04109667241573334, 0.01997491903603077, 0.012649566866457462, 0.012072348967194557, -0.0011943663703277707 ]
THE GOLDMAN STATE Darby Patterson's New Novel Is Just One of her Artworks "Renaissance" is a fine name for that period in Europe's history (roughly the 15th and 16thcenturies, give or take a week or two). But it's too often used as an adjective for someone who's adept in several categories of creativity—just as "genius" is the operative term in Hollywood for just about everyone who can string together a sentence, splice together some film and amass enough investors to churn out a hit movie. Meet the (Mis)Calculating NYC Mayor Bill de Blasio! Please pardon today's detour from The Golden State and join me for a cyber junket to my birthplace, whose nickname is The Empire State. And while I usually dispatch these columns from my home in Sacramento, The Big Tomato, today we're going to zoom in on New York City, The Big Apple. TV News Reporter/Anchor Leticia Ordaz Writes a "Breezy" Children's Book I've always wondered why "Go fly a kite!" was considered a putdown, either in childhood or thereafter. To me, it sounded more like someone suggesting you do something whimsical, energetic and out in the fresh air. To recap, where some heard "Scram" I heard "Have a nice day." Andrew Rogerson's Clients Value His Valuations This past March, just as the world was beginning its pandemic shutdown, Andrew Rogerson still was able to help one of his clients sell a medical-supply manufacturing business for $3.1 million. "I get a success fee when that happens," he says. And if the company wouldn't have sold despite Rogerson's best efforts? "Oh sometimes I get a thank-you note," he says in his deadpan, Aussie accent, which somehow can make a situation sound funny rather than frustrating. Joe Thompson "Crisp"-ly Delivers Meals to Frontline Workers and the Infirm Financed in part by generous customers of his Crisp Catering business and currently shuttered Gold Rush Grille restaurant, Joe Thompson has been delivering meals to local hospital workers, First Responders and other front-line workers during the coronavirus pandemic. He also takes meals to people who are very ill or immobile or both—and says when he's allowed to reopen his restaurant, "We'll still get those meals to these people. I'm not going to abandon them when our governor says it's business-as-usual again." Dr. Carl Shin Takes Pains to Relieve Yours "I almost don't care what causes your pain," Dr. Carl Shin is telling and kind of surprising me—until he completes the thought. "My job is to help you recover from it. So let's do that instead of dwelling on what caused it to happen." Longtime Conservatory Owner Offers the Sound of Music—Remotely Add Tanya Végváry to the list of entrepreneurs whose business might actually have improved because of the pandemic shutdown. Végváry is a piano teacher and the founding owner of the Sacramento Piano Conservatory/School of Music, a handsome building that sits incongruously in the middle of one of the capital region's unmistakable industrial zones. In its immaculate classrooms, approximately 200 students, ranging in age from post-toddler to post-career, take piano lessons and learn to play a number of other musical instruments from Végváry and nine other instructors. Driven to Celebrate a Birthday I first asked Kim Elizabeth Hyland to go steady with me on August 9, 1966. We had walked to a little park near her family home on a warm afternoon. Kim was barefoot and wore a lightweight shift. I had on my standard Southern California Summer Guy outfit: a JC Penney TownCraft T-shirt®; Madras-patterned shorts which had fashionably bled their way through several washings and now looked as though someone had sprayed an abstract painting on my thighs; and a pair of suitably roughed-up Converse tennis shoes, giving me the unintended look of a suburban dad in his teens on his way to buy some weekend-gardening tools at Sears. How Accurate Are Those Hair Salon and Restaurant Thermometers? Somewhere between my home and my haircutter, I evidently contracted hypothermia. How else to explain why, when my longtime stylist and friend Sherry Ngai, owner of Shapes for Hair, took my temperature at her salon and it was 94.5 degrees? (This was before beginning the process of trimming my hair, of course—something Ngai does every six or seven weeks, involving the deployment of shampoo, ointments and garden tools.) Miriam Revesz: New Filmmaker Debuts with a Five-Minute Masterwork It's tempting to write about my encountering two fawns the other afternoon when I go to chat with Miriam Revesz, who just completed her first film, "Voices from the Invisible." Fawn Number One stands in the middle of the long driveway that leads to the Revesz family home, a pebble's skim from the American River (if you have a very good arm). The deer seems as curious about me as I am about it. But it quickly tires of me and scampers off to more pressing matters. Get a reminder in your mailbox every time a new column appears. We will not share or sell your email address. Copyright © 2019 – 2021 Goldman Communications, Inc. | Site design by Ligon Media | Portrait photo courtesy Sacramento Business Journal | Privacy
[ 0.004302508197724819, -0.008373875170946121, -0.012647241353988647, 0.003139337059110403, 0.011537509970366955, -0.02644522115588188, -0.00017768614634405822, 0.012391936033964157, 0.002720941323786974, 0.013095873408019543, 0.027032824233174324, -0.020204640924930573, 0.006505520083010197, -0.04082323610782623, -0.01983766444027424, -0.005164037458598614, -0.029097341001033783, 0.004423683509230614, -0.02457331493496895, 0.009186066687107086, 0.010340404696762562, 0.009272024035453796, -0.0560590885579586, -0.04257800430059433, 0.011328951455652714, 0.03526056185364723, 0.04873180016875267, 0.02039855159819126, 0.053250279277563095, 0.05423850566148758, 0.003853318514302373, -0.03783734142780304, 0.006716000381857157, -0.0364711657166481, -0.021575752645730972, -0.006190926767885685, 0.02976333536207676, -0.035873569548130035, -0.024742333218455315, -0.03711230680346489, -0.0001180550898425281, -0.049336906522512436, 0.02051672711968422, -0.016495652496814728, -0.01851806230843067, 0.021239813417196274, -0.030065666884183884, -0.042458366602659225, 0.04579939320683479, -0.057000111788511276, -0.0009541155304759741, 0.0031720069237053394, 0.041477952152490616, 0.007664332166314125, 0.015668001025915146, -0.017997773364186287, -0.023897286504507065, 0.026561325415968895, -0.023208655416965485, 0.04173769801855087, 0.03822716698050499, -0.027076639235019684, 0.0484701544046402, -0.057020410895347595, 0.010938404127955437, 0.018340907990932465, 0.02870417945086956, -0.006913111545145512, 0.0059599317610263824, -0.029319757595658302, -0.014857722446322441, -0.0018372127087786794, -0.029131652787327766, -0.01763330027461052, -0.02766983024775982, -0.022268159314990044, -0.018267959356307983, 0.007013056892901659, 0.005247766617685556, 0.00017857526836451143, 0.028060536831617355, 0.022086696699261665, -0.0009775198996067047, 0.0061118085868656635, -0.061556149274110794, -0.014264429919421673, -0.00681433267891407, 0.018623504787683487, 0.022129902616143227, 0.009808958508074284, 0.02925540879368782, 0.03512260690331459, 0.017811087891459465, -0.02598608285188675, 0.049320485442876816, 0.0860455185174942, -0.03462519869208336, 0.04127057269215584, 0.022363770753145218, 0.011594842188060284, 0.026518618687987328, 0.017976049333810806, 0.009100313298404217, 0.043006494641304016, -0.02971719577908516, -0.0030744958203285933, 0.020583683624863625, -0.018925942480564117, 0.0012000232236459851, -0.006376306060701609, -0.009291663765907288, -0.02760474383831024, -0.005789864342659712, -0.018321296200156212, -0.03771018981933594, 0.06855565309524536, 0.004366419278085232, 0.04176357388496399, -0.054276902228593826, 0.06421086192131042, -0.021502111107110977, -0.012763818725943565, 0.01828102581202984, -0.018187763169407845, 0.02860376052558422, -0.025725243613123894, -0.057563599199056625, 0.04876932501792908, -0.03290606662631035, 0.0013397731818258762, 0.009554857388138771, -0.048058804124593735, -0.0278615802526474, -0.018577437847852707, -0.022548217326402664, 0.044683024287223816, -0.009416108019649982, 0.02241644449532032, 0.015728604048490524, -0.04959388077259064, 0.03780154511332512, 0.018459996208548546, 0.018313970416784286, 0.09522367268800735, 0.00531688891351223, 0.011860879138112068, -0.002615987788885832, -0.019475536420941353, -0.041520778089761734, 0.04539497196674347, -0.04472903534770012, -0.006190541200339794, -0.0008966529276221991, 0.03059934265911579, -0.022461220622062683, -0.0069153523072600365, -0.01637108623981476, 0.004071924835443497, 0.021897578611969948, 0.04662042483687401, -0.03639362379908562, -0.006715879775583744, 0.021965336054563522, 0.05414627119898796, 0.007391073275357485, 0.03534245118498802, -0.008183794096112251, -0.00887366384267807, -0.026849379763007164, -0.028653742745518684, 0.0023173531517386436, 0.013563539832830429, -0.011980591341853142, 0.022302083671092987, 0.033337291330099106, 0.031214876100420952, 0.017732253298163414, -0.02989777736365795, 0.026450863108038902, 0.03598521649837494, -0.05005801469087601, 0.017231741920113564, -0.006335644982755184, 0.06357553601264954, 0.017173323780298233, -0.019197698682546616, -0.013528716750442982, -0.04322565719485283, -0.04367044195532799, -0.016958067193627357, -0.016747044399380684, 0.023417409509420395, -0.0184596236795187, 0.03586121276021004, 0.02003890462219715, 0.02600179612636566, 0.003852301277220249, -0.03986692428588867, 0.014072912745177746, -0.045365653932094574, -0.043243009597063065, 0.04995144531130791, -0.02495870180428028, 0.011656943708658218, -0.03306013345718384, -0.006826619151979685, 0.02956852875649929, 0.05771550536155701, -0.067449651658535, -0.003636860754340887, 0.01901836320757866, -0.0031266557052731514, -0.018697213381528854, -0.03340201824903488, -0.01340821199119091, -0.02066468447446823, -0.03086848556995392, 0.04465945437550545, 0.012109541334211826, -0.019694866612553596, 0.030162617564201355, 0.007515106815844774, 0.028247669339179993, 0.02402915246784687, 0.0023325730580836535, 0.0028618182986974716, 0.017841527238488197, 0.06407097727060318, -0.021050825715065002, -0.04404870793223381, -0.007596964947879314, 0.046795230358839035, 0.011611148715019226, 0.06583624333143234, 0.020723961293697357, 0.020403092727065086, 0.055498212575912476, 0.03615494444966316, -0.012093249708414078, 0.01441778801381588, 0.0006391888600774109, 0.01192860770970583, 0.03284606337547302, 0.011263690888881683, -0.010455740615725517, 0.04601182043552399, -0.018260354176163673, 0.012760811485350132, -0.01994890719652176, 0.05313277989625931, -0.0011996019165962934, 0.015864841639995575, 0.042287081480026245, 0.029433539137244225, -0.035307567566633224, 0.02202572301030159, 0.02555125579237938, 0.06652400642633438, -0.009575541131198406, -0.03332420811057091, -0.0032032006420195103, 0.02816053107380867, -0.0051990654319524765, -0.021599415689706802, 0.028405699878931046, 0.020760640501976013, -0.027998974546790123, 0.030443083494901657, -0.023414678871631622, -0.026908837258815765, -0.00555744394659996, -0.07421305775642395, -0.021630236878991127, -0.027562256902456284, -0.06005929782986641, 0.0028882690239697695, 0.030275821685791016, -0.029419763013720512, 0.03409459814429283, -0.004156655631959438, -0.006760925520211458, -0.02996756322681904, -0.006201242096722126, 0.0386488176882267, 0.0553104504942894, 0.04460901767015457, -0.051934126764535904, 0.028315315023064613, -0.010290665552020073, 0.024243932217359543, -0.03338557854294777, -0.020837979391217232, -0.001159057836048305, 0.0219310000538826, 0.03143130615353584, -0.025888701900839806, -0.0034775380045175552, 0.0022311534266918898, -0.037269607186317444, -0.03945891559123993, -0.006364466156810522, 0.028130436316132545, 0.0292116180062294, 0.006171234883368015, -0.01384204812347889, 0.04621308669447899, 0.01536566298455, -0.0565456822514534, 0.044684842228889465, -0.0062522487714886665, -0.03169499710202217, 0.054124437272548676, 0.006956169847398996, 0.0095607228577137, -0.034329261630773544, 0.03412302955985069, 0.031492963433265686, 0.000022678672394249588, -0.03493508696556091, -0.0038032715674489737, -0.005609923508018255, 0.018175210803747177, 0.02222534641623497, -0.019369663670659065, -0.03758946433663368, 0.011761176399886608, -0.011093826033174992, -0.07444345206022263, 0.04875586926937103, -0.05491937696933746, -0.020353756844997406, -0.023328393697738647, -0.04248136281967163, 0.018563760444521904, 0.029379524290561676, 0.002022972097620368, 0.0027157317381352186, -0.012956211343407631, -0.016151312738656998, -0.0021573177073150873, 0.0320979468524456, -0.04100488871335983, 0.02741781249642372, 0.022384587675333023, 0.007034757640212774, 0.030501047149300575, 0.04152258485555649, -0.026328951120376587, 0.0024252189323306084, 0.002550274832174182, 0.010428732261061668, 0.0020260419696569443, 0.025258932262659073, 0.01821749098598957, 0.057300467044115067, 0.042948633432388306, -0.004901627078652382, 0.003989761229604483, -0.00045292609138414264, 0.019064243882894516, 0.03258384391665459, 0.00895856786519289, 0.008957337588071823, -0.012189190834760666, -0.05587794631719589, -0.05991939455270767, 0.017649289220571518, -0.001448446768335998, 0.057810720056295395, -0.05117474123835564, 0.043390948325395584, -0.011213385500013828, -0.060394663363695145, 0.059844814240932465, -0.06802774220705032, -0.00936767179518938, 0.02783658355474472, -0.006729353219270706, 0.03109702840447426, -0.05130802467465401, 0.020123867318034172, -0.03977648541331291, 0.018570344895124435, 0.03282853215932846, 0.014645171351730824, 0.03058376908302307, -0.02224894054234028, -0.015568625181913376, -0.010333184152841568, -0.036186907440423965, -0.007639715448021889, -0.01189513597637415, 0.0028067040257155895, -0.015019277110695839, -0.014089446514844894, -0.050569530576467514, 0.035583436489105225, -0.000004118739980185637, 0.05837463587522507, -0.012832004576921463, 0.05647320672869682, 0.005912715569138527, 0.03458264842629433, 0.05140938237309456, 0.007490506395697594, 0.01793058030307293, -0.04577198997139931, 0.033838603645563126, 0.02417081408202648, -0.020130623131990433, -0.01136162132024765, -0.036932047456502914, 0.006114967167377472, 0.021039171144366264, -0.008506882935762405, -0.010315402410924435, -0.016854073852300644, 0.03657960891723633, 0.01159032341092825, 0.04044449329376221, -0.05904771015048027, -0.010901554487645626, -0.003941727336496115, 0.027805417776107788, 0.015769626945257187, -0.07892977446317673, -0.028850017115473747, -0.03962884470820427, 0.04507586359977722, 0.04649028927087784, -0.008390292525291443, -0.059300974011421204, -0.029374148696660995, -0.027606133371591568, -0.04354122653603554, 0.01137063093483448, 0.04712714999914169, -0.006837553810328245, 0.021997857838869095, -0.03904988616704941, 0.02923736162483692, 0.03447718545794487, 0.020066218450665474, 0.004294685088098049, 0.0020779878832399845, 0.027465302497148514, -0.01991066336631775, 0.05492280423641205, -0.016259778290987015, -0.04016272351145744, 0.042016178369522095, -0.05266309157013893, 0.020502271130681038, 0.02306835539638996, -0.028158001601696014, -0.02526816353201866, 0.03526531904935837, -0.007731399964541197, 0.02737046405673027, -0.015816472470760345, 0.012637114152312279, -0.008102776482701302, 0.058121148496866226, -0.0148527342826128, -0.03473305329680443, 0.027481546625494957, -0.014092626981437206, -0.014977396465837955, 0.018268700689077377, 0.03944389522075653, 0.006788174621760845, 0.004435433074831963, -0.005135760176926851, -0.06108576059341431, 0.04694296792149544, -0.019350789487361908, 0.026197826489806175, 0.0109397042542696, -0.021044867113232613, -0.01278761588037014, -0.02545337937772274, 0.03201238811016083, 0.006066359579563141, -0.011201358400285244, -0.029078779742121696, -0.08465542644262314, 0.006005525588989258, 0.028068281710147858, -0.026072146371006966, -0.003532963804900646, 0.009432658553123474, -0.025051085278391838, -0.01316587720066309, 0.0009994915453717113, -0.024206511676311493, 0.006529937032610178, -0.036449965089559555, 0.02010687254369259, -0.0025513952132314444, 0.03419620543718338, 0.02253829315304756, -0.010224803350865841, -0.029909418895840645, 0.011509829200804234, -0.016382303088903427, -0.02257748506963253, -0.08077207207679749, -0.008918254636228085, -0.004084800835698843, 0.022214584052562714, -0.0174675602465868, 0.0036761995870620012, -0.013688693754374981, 0.03212328255176544, 0.03836534917354584, -0.011762795969843864, -0.005123684648424387, 0.023607401177287102, -0.020138997584581375, 0.06055038422346115, 0.006573521066457033, -0.026699887588620186, -0.014227823354303837, 0.07087159156799316, -0.021870190277695656, 0.03242504224181175, -0.039013974368572235, -0.0315236859023571, -0.017700836062431335, -0.05395113304257393, -0.027986792847514153, -0.0440615750849247, -0.042514629662036896, -0.02527701109647751, -0.014079663902521133, -0.039236754179000854, 0.058368295431137085, 0.0180974081158638, 0.017212683334946632, 0.025259187445044518, -0.056860897690057755, -0.0076859742403030396, -0.03445364534854889, -0.011170187965035439, -0.018004417419433594, -0.00011548904876690358, -0.0034737084060907364, 0.05843385308980942, -0.006061261519789696, 0.033271681517362595, 0.003575607668608427, -0.003379381960257888, 0.014754102565348148, -0.0177005585283041, -0.05463806539773941, -0.05340214818716049, -0.013024111278355122, -0.015454508364200592, 0.05360335111618042, -0.004741394426673651, -0.053917791694402695, 0.05178908631205559, -0.0445469431579113, 0.003986984491348267, -0.04492058604955673, -0.028684278950095177, -0.015460677444934845, -0.013101179152727127, 0.04882707819342613, -0.038338977843523026, 0.009843799285590649, -0.02605731226503849, 0.057861246168613434, 0.054175183176994324, -0.0073471516370773315, -0.04983946308493614, -0.039400797337293625, -0.04725208133459091, -0.06379640102386475, 0.02084740623831749, -0.04254865646362305, -0.017545007169246674, -0.024172227829694748, -0.030916037037968636, 0.04162845388054848, 0.0036588299553841352, 0.0364491268992424, 0.040301740169525146, 0.0026405679527670145, -0.007192968390882015, -0.029207289218902588, 0.006321712397038937, 0.04310470074415207, -0.011518142186105251, -0.0013624586863443255, -0.027796167880296707, -0.039692796766757965, 0.012899529188871384, -0.06184858828783035, -0.025633636862039566, -0.02793304994702339, -0.029511375352740288, 0.04320342466235161, -0.03440360724925995, 0.03490894287824631, -0.022717157378792763, -0.03416449949145317, -0.03993232175707817, 0.05301142856478691, 0.023580532521009445, 0.020313605666160583, 0.044591858983039856, -0.019874034449458122, -0.027684858068823814, 0.005386666394770145, 0.024286633357405663, -0.01145901158452034, -0.03078458644449711, 0.06024795025587082, -0.01802690699696541, -0.029476413503289223, 0.029077593237161636, 0.042935822159051895, -0.047402746975421906, -0.023339832201600075, 0.009747699834406376, -0.011045181192457676, 0.020937368273735046, -0.034850843250751495, 0.016689099371433258, -0.0022821100428700447, -0.025985103100538254, 0.004783668555319309, 0.04410634562373161, -0.035704195499420166, 0.05059850215911865, 0.014512697234749794, 0.024474026635289192, -0.022819828242063522, 0.018538089469075203, -0.00531189888715744, 0.007077307906001806, -0.023932838812470436, -0.050351858139038086, -0.012359404936432838, 0.016703182831406593, -0.005160505883395672, 0.05349636822938919, -0.00793386995792389, 0.0008280486799776554, 0.017639284953475, 0.0021900609135627747, 0.04000512883067131, -0.01175433024764061, -0.013387448154389858, 0.027227118611335754, -0.03449629247188568, -0.038420241326093674, -0.034509140998125076, 0.02276536449790001, -0.014086821116507053, 0.02540021575987339, -0.0677139088511467, -0.00448580039665103, 0.060262423008680344, -0.010862729512155056, 0.01701890490949154, -0.05422724410891533, -0.0597597174346447, -0.04971614107489586, -0.0497712567448616, -0.04510699212551117, -0.018750006332993507, 0.014885863289237022, 0.04940976947546005, 0.020312005653977394, -0.037164442241191864, -0.01429538894444704, -0.0018721590749919415, -0.03867137059569359, -0.0002552297664806247, -0.030682509765028954, 0.019468504935503006, 0.0030676904134452343, -0.015751419588923454, -0.03094017319381237, 0.01304350234568119, -0.04936027154326439, -0.0015147209633141756, 0.004580394830554724, 0.01046000886708498, -0.00478047551587224, 0.030469126999378204, 0.011166682466864586, -0.015335085801780224, 0.012205038219690323, -0.050333961844444275, -0.0015433826483786106, 0.042170193046331406, -0.027638202533125877, 0.019828015938401222, 0.026397205889225006, -0.054115477949380875, 0.02040180005133152, -0.024606436491012573, -0.02907341718673706, -0.011275962926447392, -0.007596397772431374, 0.0033821824472397566, -0.0007002331549301744, -0.03118995949625969, -0.042690619826316833, -0.024748943746089935, -0.04776939004659653, 0.00701509602367878, -0.017955128103494644, 0.004786236677318811, -0.003240511054173112, -0.035343483090400696, 0.011868071742355824, 0.06008275970816612, -0.034676749259233475, 0.05783860757946968, -0.014731002040207386, 0.01801099255681038, 0.024344030767679214, -0.0008800292853266001, 0.012572770938277245, 0.011602808721363544, 0.028747839853167534, -0.035464849323034286, -0.04236679896712303, -0.0033374454360455275, 0.007492226082831621, 0.032983019948005676, 0.002744208322837949, -0.041343748569488525, -0.05973949655890465, -0.011408221907913685, -0.03405267372727394, 0.052977222949266434, 0.04096202924847603, 0.007552193012088537, 0.030035482719540596, -0.055580031126737595, -0.056880366057157516, -0.00679409597069025, -0.06278236955404282, -0.009558945894241333, 0.01540185883641243, -0.002354417694732547, 0.03726282715797424, -0.01880318485200405, -0.04244120419025421, -0.023185554891824722, -0.026068413630127907, -0.006681154947727919, -0.03300165757536888, 0.02534305490553379, 0.00911764707416296, 0.030300073325634003, 0.0062387739308178425, -0.025222958996891975, 0.006283551454544067, 0.03947322443127632, -0.03582727164030075, -0.041801903396844864, -0.002911446848884225, 0.010626294650137424, -0.0030721528455615044, -0.011817308142781258, -0.00190991279669106, 0.010043948888778687, -0.007731793913990259, 0.012672066688537598, 0.025197846814990044, 0.039949681609869, 0.017217470332980156, 0.050755634903907776, 0.005004179198294878, 0.010641312226653099, -0.01610257476568222, 0.051073674112558365, -0.004721115808933973, -0.01379189919680357, -0.011744988150894642, 0.022457031533122063, 0.03677045553922653, 0.0044784992933273315, 0.04033612459897995, 0.008937390521168709, 0.03500363230705261, -0.015695199370384216, 0.027395250275731087, -0.03350333496928215, 0.032448507845401764, 0.03771035000681877, 0.03593803197145462, 0.01080501452088356, 0.01960824429988861, 0.059444647282361984, -0.009574451483786106, 0.011748002842068672, 0.04172525182366371, 0.05383192002773285, -0.058004800230264664, -0.01065799593925476, -0.018073681741952896, 0.014321686699986458, -0.028269072994589806, -0.007030079141259193, 0.015240243636071682, -0.012931025587022305, 0.0057314722798764706, -0.038345612585544586, -0.013994701206684113, 0.055874280631542206, -0.018277937546372414, 0.0026582416612654924, -0.03160852938890457, -0.00900113396346569, -0.017117474228143692, 0.05728469416499138, -0.011670812033116817, 0.019391905516386032, 0.028096450492739677, -0.002698758617043495, -0.017399054020643234, 0.02329559251666069, 0.019568385556340218, 0.011503343470394611, -0.03313586860895157, -0.0023974874056875706, 0.02738143317401409, 0.012417333200573921, 0.007791873533278704, 0.04422810301184654, -0.029728366062045097, 0.023474007844924927, -0.03067447617650032, 0.012531155720353127, 0.030585717409849167, -0.045440685003995895, -0.0013900621561333537, -0.03366697207093239, 0.029731178656220436, -0.03447016328573227, 0.005424605216830969, 0.00915155466645956, -0.009117727167904377, -0.014199836179614067, 0.04348836839199066, 0.017987418919801712, 0.042872872203588486, 0.028478877618908882, 0.05074875429272652, -0.010945780202746391, 0.05221177265048027, 0.06623250246047974, -0.023560406640172005, -0.0006201934884302318, 0.019192388281226158, -0.00827770959585905, -0.03205602988600731, -0.004067190922796726, -0.07638897001743317, -0.01017649658024311, -0.007439078763127327, 0.0006163297221064568, -0.008392452262341976, 0.0422510989010334, 0.017277691513299942, -0.02865082584321499, -0.008641042746603489, 0.043070316314697266, -0.01108988095074892, 0.00011507822637213394, 0.010670301504433155, 0.04675430804491043, -0.034107506275177, -0.029044199734926224, -0.021383317187428474, -0.04252723604440689, 0.004453401081264019, -0.04043803736567497, 0.040530383586883545, 0.005268098786473274, -0.043429046869277954, -0.0395670160651207, -0.053719911724328995, -0.017214486375451088, -0.037016913294792175, -0.05159341171383858, -0.05491526797413826, 0.039310358464717865, 0.0487879253923893, -0.020398110151290894, 0.00008374695607926697, -0.004911708179861307, 0.0023010449949651957, 0.03432814031839371, 0.07790475338697433, -0.010230984538793564, 0.015917450189590454, 0.03689708933234215, -0.0021386174485087395, 0.04423381760716438, -0.01470919419080019, 0.044439949095249176, -0.016257641837000847, -0.009880234487354755, -0.02611151710152626, 0.054873209446668625, 0.0025262460112571716, -0.04073894023895264, 0.02562306821346283, 0.014583383686840534, 0.020581068471074104, -0.0550764724612236, -0.07733041048049927, -0.02895807847380638, -0.030257759615778923, -0.027707787230610847, -0.029800590127706528, 0.030203817412257195, 0.0000686926141497679, 0.0034819068387150764, 0.013683394528925419, -0.042454641312360764, 0.1744348257780075, 0.051267046481370926, 0.015104844234883785, -0.04609325900673866, 0.030277317389845848, 0.04119884967803955, 0.04182941094040871, -0.004143991973251104, -0.0006457160925492644, -0.047307081520557404, 0.02851179614663124, 0.007047535385936499, 0.018014341592788696, 0.01997891068458557, 0.01697489805519581, 0.051242537796497345, -0.041208382695913315, -0.024220013990998268, 0.005343316122889519, -0.03269081562757492, -0.061111196875572205, 0.017071576789021492, 0.01783742941915989, 0.0227587278932333, -0.01072566770017147, 0.015279331244528294, 0.03620706498622894, -0.0559409037232399, 0.00708649680018425, -0.00940359104424715, 0.013356933370232582, -0.05846276506781578, 0.039987243711948395, -0.02643803134560585, -0.05946129187941551, 0.023842010647058487, 0.0034699400421231985, 0.0032259852159768343, -0.009701197035610676, 0.01770961657166481, -0.026063235476613045, -0.0059811389073729515, 0.02965673990547657, -0.04206625744700432, 0.00297303288243711, 0.01698557659983635, -0.02359357289969921, 0.034169260412454605, 0.010624042712152004, -0.030070742592215538, 0.03961556777358055, 0.0024945104960352182, 0.043611541390419006, 0.013593335635960102, -0.002198733389377594, 0.03993259370326996, 0.03905612975358963, -0.012660162523388863, -0.007583355065435171, -0.02524719573557377, 0.038914743810892105, 0.004413278307765722, -0.013850850984454155, -0.01812613196671009, -0.021699095144867897, -0.004539606161415577, 0.035838160663843155, 0.005240590777248144, -0.018799951300024986, -0.03930458799004555, -0.03454812988638878, 0.020926449447870255, -0.003050105646252632, -0.02127000130712986, 0.022236201912164688, 0.04236084595322609, -0.017842726781964302, 0.04531322792172432, -0.012468205764889717, -0.010333200916647911, -0.00833723321557045, -0.03251443803310394, -0.016846338286995888, 0.0016114689642563462, 0.018741536885499954, 0.06461533904075623, -0.03655032441020012, -0.032533347606658936, 0.0008558363188058138, 0.05223849415779114, 0.046148911118507385, 0.018327340483665466, -0.013987863436341286, 0.003219478065147996, -0.01787211373448372 ]
perth modern school sports hall The design of the proposed sports hall was envisaged as a delicate shell structure, guided by the height parameters above playing surface. The east and west elevations draw influence from the illusionary works by Howard Taylor (a prominent WA artist and former student of the school) to appropriate the building scale to that of the inhabitants entering the main entry, located on the southern side of the building. The interior continues Taylors perspectival influence, through varied stained plywood lining that wraps around the interior at low level. Above the plywood lining, on the walls and ceiling, the proposed shade cloth lining creates a uniform volume allowing the games to be the focus for players and spectators. The interior spatial quality is intended to elicit a unique character of activity and wonderment, similar to interiors from existing buildings on campus such as the existing gymnasium and Hall. Heritage Consultant- Philip Griffiths Architects
[ -0.020895225927233696, -0.007413268554955721, -0.009157043881714344, -0.03133140504360199, -0.008537247776985168, -0.011551043018698692, 0.0018985939677804708, 0.03412534296512604, -0.019189663231372833, 0.0158349871635437, 0.028233366087079048, 0.013927007094025612, 0.03138529509305954, -0.014243188314139843, 0.004454329144209623, 0.015489225275814533, -0.002197928261011839, -0.02973254770040512, -0.023924624547362328, 0.028058664873242378, 0.0038404588121920824, 0.029841981828212738, -0.10593945533037186, -0.04910381883382797, -0.011454635299742222, 0.05907588079571724, 0.015740852802991867, 0.009335562586784363, 0.04384515807032585, 0.030527226626873016, -0.021063877269625664, 0.006799695082008839, 0.05541833117604256, -0.06641389429569244, -0.04187820851802826, -0.02084514871239662, 0.03251317888498306, -0.05377758666872978, -0.012661944143474102, -0.05321420356631279, 0.022352879866957664, -0.02983107976615429, -0.0014555533416569233, -0.041394125670194626, -0.03522547334432602, -0.007013882510364056, -0.006384056992828846, -0.037032533437013626, 0.02729220688343048, -0.005818568170070648, 0.009397828951478004, -0.0367063470184803, 0.023515207692980766, -0.008725199848413467, 0.023786496371030807, 0.01725303754210472, 0.021920492872595787, 0.005442740395665169, -0.027323052287101746, 0.01826273463666439, 0.03817692771553993, 0.012947015464305878, 0.005543302744626999, -0.04548132047057152, 0.033771812915802, 0.019218331202864647, 0.027689527720212936, -0.020519670099020004, 0.017757918685674667, -0.042184021323919296, -0.006135503761470318, 0.005778633523732424, -0.04859992861747742, 0.00553959421813488, -0.02151276357471943, 0.03465477004647255, -0.028148990124464035, -0.0056133088655769825, 0.003617670852690935, 0.0006064196932129562, 0.03827517107129097, 0.05215343087911606, -0.020353367552161217, 0.007066694553941488, -0.057859741151332855, -0.0140986992046237, -0.008228298276662827, 0.015807099640369415, 0.00036583110340870917, 0.025373786687850952, 0.019185559824109077, 0.06383145600557327, 0.017295604571700096, -0.008998757228255272, 0.030937813222408295, 0.02671894244849682, -0.0390566922724247, 0.031574707478284836, 0.0009769164025783539, 0.009727280586957932, 0.03701375797390938, 0.03598276525735855, 0.009984467178583145, 0.030322574079036713, -0.03239214047789574, 0.011671948246657848, -0.004237405024468899, 0.006438452750444412, 0.007204660680145025, -0.022737443447113037, 0.01298897061496973, -0.02054232731461525, -0.01148917991667986, 0.003418298438191414, -0.007186848670244217, 0.03489808738231659, 0.02501780353486538, 0.03540012612938881, -0.05493775010108948, 0.026936329901218414, 0.03550765663385391, 0.03656451776623726, 0.030483219772577286, 0.0016403893241658807, -0.006287591531872749, -0.046193379908800125, -0.028558818623423576, 0.031413737684488297, -0.01434013620018959, -0.044778164476156235, 0.004372602328658104, -0.04152759537100792, -0.03340262919664383, 0.00813453271985054, -0.013612938113510609, 0.0172568466514349, -0.005046061240136623, 0.025696421042084694, 0.019475100561976433, -0.06599684804677963, 0.04720856249332428, 0.032855238765478134, 0.008928826078772545, 0.10367073118686676, -0.01846754364669323, 0.02971629612147808, -0.0027217422612011433, -0.015701673924922943, -0.07080856710672379, -0.020477477461099625, -0.027186432853341103, -0.0032902464736253023, -0.022848060354590416, 0.0232972651720047, 0.00919932872056961, -0.01760917529463768, -0.012293180450797081, 0.02480269782245159, 0.011954542249441147, 0.026859095320105553, -0.04741128534078598, 0.016065891832113266, -0.01871851272881031, 0.058540455996990204, -0.004320836625993252, 0.026608727872371674, -0.0357753187417984, 0.0026760112959891558, -0.003496742807328701, -0.029693637043237686, 0.0003445537877269089, 0.006869188509881496, 0.01065058447420597, 0.018014030531048775, 0.006955663673579693, 0.05625024437904358, 0.051489874720573425, 0.009127384051680565, 0.024985354393720627, 0.06176931783556938, -0.05984601378440857, -0.049730122089385986, 0.037733107805252075, 0.06270680576562881, -0.016750583425164223, -0.019652927294373512, -0.024902284145355225, -0.034462686628103256, -0.03022916428744793, -0.01605968549847603, 0.012213925831019878, 0.03257434815168381, -0.05112540349364281, 0.00677606463432312, 0.0034050617832690477, 0.007301078177988529, -0.008630753494799137, -0.02439763769507408, -0.02920452505350113, -0.0438348725438118, -0.01161274965852499, 0.036821939051151276, -0.03105289489030838, 0.01907726190984249, 0.014772048220038414, -0.014990693889558315, 0.032084785401821136, 0.04923555627465248, -0.0514499768614769, 0.008376562967896461, 0.021452371031045914, 0.0059407479129731655, -0.01671116054058075, -0.014398488216102123, 0.0034866619389504194, -0.0258627962321043, -0.025350330397486687, 0.0317133404314518, 0.00044301178422756493, -0.014884760603308678, -0.00027890369528904557, 0.024726100265979767, 0.023148220032453537, 0.030476998537778854, 0.016813835129141808, 0.0209183506667614, 0.0010987273417413235, 0.03801430016756058, 0.014856061898171902, -0.03461605682969093, -0.022195806726813316, 0.049152374267578125, 0.022092018276453018, 0.052167970687150955, 0.058644138276576996, 0.02560478262603283, -0.008542751893401146, 0.03308771923184395, 0.0024354797787964344, 0.011746341362595558, 0.020474057644605637, -0.0011776991887018085, 0.02447095513343811, 0.04216199368238449, -0.0045707933604717255, 0.02833607979118824, -0.004586446564644575, 0.012401968240737915, 0.012917672283947468, -0.019747933372855186, -0.0032877433113753796, 0.03827158361673355, 0.043056655675172806, 0.026669075712561607, -0.018275434151291847, 0.044252630323171616, 0.0377567857503891, 0.04870160296559334, -0.021589094772934914, -0.00870840810239315, 0.015998968854546547, 0.016796592622995377, 0.0006398918339982629, -0.0005477804807014763, 0.02300797402858734, 0.012091508135199547, 0.03220715373754501, -0.008788539096713066, -0.017566531896591187, -0.03947216644883156, -0.035757698118686676, -0.0629693865776062, -0.0614977590739727, -0.017689883708953857, -0.029486997053027153, -0.002797852735966444, 0.015422984957695007, -0.04184196889400482, 0.04795050993561745, 0.005832672119140625, -0.012476366944611073, -0.05326094105839729, 0.009607486426830292, 0.04158316180109978, 0.03415866196155548, 0.02640443854033947, -0.011764759197831154, 0.0215471014380455, -0.032935068011283875, 0.0013831680407747626, -0.0440991148352623, -0.012137356214225292, -0.013358731754124165, -0.029847219586372375, 0.05177308991551399, -0.0391862653195858, 0.006828965153545141, -0.009798452258110046, -0.06627393513917923, -0.07299760729074478, -0.025283154100179672, 0.0294890645891428, 0.01278728898614645, -0.029339056462049484, -0.04693474620580673, 0.08290664106607437, 0.010858298279345036, -0.038880202919244766, 0.02240435965359211, 0.040900811553001404, -0.04131527990102768, 0.03024054318666458, 0.00554247759282589, 0.011945025995373726, -0.05179879814386368, 0.04701213538646698, 0.0344548374414444, 0.003392556682229042, -0.023913957178592682, -0.038838230073451996, -0.0328107550740242, -0.005408642813563347, 0.028505848720669746, -0.03273460268974304, -0.011892984621226788, 0.04401608183979988, 0.04452497512102127, -0.0522945299744606, 0.04041781648993492, -0.020562004297971725, -0.024281898513436317, -0.06156594306230545, -0.06142857298254967, 0.025805648416280746, 0.011503491550683975, 0.040217407047748566, 0.02700192853808403, -0.02108309231698513, 0.00778013514354825, -0.0022804623004049063, 0.0679955780506134, -0.03056143969297409, 0.028109483420848846, 0.0475655272603035, -0.017808768898248672, 0.024378826841711998, -0.014568806625902653, -0.018637483939528465, -0.01885778084397316, -0.010587558150291443, 0.023937992751598358, 0.008631057105958462, 0.003065471537411213, 0.028806759044528008, -0.009414379484951496, 0.02896907739341259, -0.053428053855895996, 0.025237536057829857, 0.001295327441766858, 0.024391740560531616, 0.024492520838975906, 0.0031680967658758163, 0.022367198020219803, -0.020299280062317848, -0.07032646983861923, -0.056143566966056824, 0.01902942731976509, 0.02463863417506218, 0.06499432772397995, -0.037437327206134796, 0.06285397708415985, -0.014561965130269527, -0.01255181897431612, 0.04570699855685234, -0.017180444672703743, 0.005354417022317648, 0.05648356303572655, 0.010533698834478855, 0.026273660361766815, -0.04413091763854027, 0.004421291407197714, -0.007434781175106764, -0.033615633845329285, 0.03679700940847397, 0.017488712444901466, -0.007392119616270065, -0.022464929148554802, -0.020399749279022217, 0.002785421209409833, -0.02277127094566822, -0.03016546741127968, -0.029708685353398323, 0.01546137873083353, -0.0022049788385629654, -0.038246333599090576, -0.04790151119232178, 0.0272519588470459, 0.039359528571367264, 0.025180209428071976, -0.018444521352648735, 0.018827077001333237, -0.006552857346832752, 0.026001937687397003, 0.026820946484804153, -0.03534843027591705, 0.0031277230009436607, -0.05494426563382149, 0.027015188708901405, 0.03524764999747276, -0.03311540186405182, -0.04629632830619812, -0.012995087541639805, -0.022137150168418884, 0.02624579891562462, 0.007614501286298037, 0.003511858871206641, -0.022812634706497192, 0.006860685534775257, -0.008570154197514057, 0.03523614630103111, -0.020033948123455048, -0.010010773316025734, 0.03522014617919922, 0.05968177318572998, 0.04515661671757698, -0.05921019986271858, 0.0003031704982277006, -0.06990194320678711, 0.02778773196041584, 0.014423594810068607, -0.05166115611791611, -0.0295253898948431, -0.03784570470452309, -0.014633896760642529, -0.019854916259646416, 0.014597825706005096, 0.0408252477645874, 0.018294593319296837, 0.01128609199076891, -0.05518083646893501, 0.05194408819079399, 0.032274167984724045, -0.006874364335089922, -0.02876381017267704, -0.00947392825037241, 0.02525663934648037, 0.01796179823577404, 0.04329724237322807, -0.02925172448158264, 0.009763093665242195, -0.0028743974398821592, -0.054600659757852554, 0.0005081771523691714, -0.008208568207919598, -0.013625501655042171, 0.00804594811052084, 0.04608072713017464, -0.005790870636701584, 0.052526142448186874, 0.001327964011579752, -0.00013437503366731107, 0.0032048916909843683, 0.028851507231593132, -0.07492666691541672, -0.011951646767556667, 0.05157298594713211, 0.002142741344869137, -0.03600921854376793, 0.05469243600964546, 0.03949548676609993, -0.014583311975002289, -0.0006076301797293127, 0.034934114664793015, -0.036745648831129074, 0.048739396035671234, -0.04464123398065567, 0.021747902035713196, -0.0313241183757782, -0.033797428011894226, -0.01190273929387331, 0.005585365928709507, 0.04915011301636696, 0.023102562874555588, -0.034002821892499924, -0.03266386687755585, -0.04770209267735481, -0.029265252873301506, 0.0013989852741360664, -0.021107640117406845, 0.02393488958477974, -0.024524403735995293, 0.0003517002041917294, 0.021852683275938034, -0.05151243135333061, 0.00779446866363287, 0.011712819337844849, 0.016845904290676117, 0.018674494698643684, -0.018138736486434937, -0.009343990124762058, -0.017825037240982056, 0.02581203170120716, -0.04889889433979988, -0.02958625927567482, -0.015371551737189293, -0.0219742339104414, -0.06392986327409744, 0.01625886745750904, -0.039559196680784225, -0.015183831565082073, -0.00009232060983777046, -0.0011941909324377775, -0.0022768510971218348, 0.03208443149924278, 0.025182707235217094, 0.043303824961185455, 0.024374745786190033, 0.011899583972990513, -0.021166715770959854, 0.054090917110443115, 0.020432034507393837, -0.022007469087839127, -0.01802714169025421, 0.03981463983654976, 0.020965687930583954, 0.06336895376443863, -0.003155093640089035, -0.019242070615291595, -0.03216192126274109, -0.051481109112501144, 0.009667431004345417, -0.04460800066590309, -0.00011850531154777855, -0.055059853941202164, -0.0203452967107296, -0.015168759971857071, 0.03264356777071953, -0.011412559077143669, 0.01178368553519249, -0.007800687570124865, -0.051019471138715744, -0.005480512045323849, -0.03678228333592415, -0.004010894801467657, -0.047612302005290985, -0.02622879296541214, 0.012792601250112057, 0.05356450751423836, 0.019786478951573372, 0.0282630305737257, 0.041112396866083145, 0.010917602106928825, 0.019386272877454758, -0.017855117097496986, -0.06420218199491501, -0.04852234944701195, -0.004437468014657497, -0.008539671078324318, 0.011389863677322865, 0.016589084640145302, 0.003938158508390188, 0.02792152762413025, -0.029526691883802414, 0.007573529612272978, -0.019061988219618797, -0.010746303014457226, -0.010840320959687233, -0.018546247854828835, 0.06441071629524231, -0.04282062128186226, 0.009078006260097027, -0.022422773763537407, 0.026791833341121674, 0.030111227184534073, -0.009694661013782024, -0.019475789740681648, -0.023796379566192627, -0.01779826730489731, -0.022762881591916084, 0.05057978630065918, -0.03097182884812355, -0.022096144035458565, -0.04174097999930382, 0.009910685010254383, 0.038452573120594025, 0.0054364134557545185, 0.06236990913748741, 0.05173889175057411, -0.03063931129872799, 0.026692595332860947, -0.0075104860588908195, 0.001294284942559898, 0.007532200776040554, -0.02581533044576645, -0.011882353574037552, -0.0022420226596295834, -0.03304800018668175, 0.018200645223259926, -0.04478621110320091, -0.05504200980067253, -0.044772740453481674, -0.0354728065431118, 0.08050978183746338, -0.022477226331830025, 0.03094090335071087, 0.03817020729184151, -0.048274386674165726, -0.027141977101564407, 0.01404695026576519, 0.011823932640254498, 0.01894146017730236, 0.02573453262448311, 0.00017281260807067156, 0.005547886248677969, -0.0033383783884346485, 0.014999776147305965, -0.03438275679945946, -0.051560208201408386, 0.08784255385398865, 0.012833167798817158, -0.01796213909983635, -0.003277843352407217, 0.06803451478481293, -0.05132737383246422, -0.05155947059392929, -0.033806055784225464, 0.002264999086037278, 0.02612421102821827, -0.04208310320973396, 0.001984161324799061, -0.029921259731054306, -0.006892660167068243, 0.015016059391200542, 0.026519669219851494, 0.012007038109004498, 0.042842965573072433, -0.009521065279841423, 0.00575671810656786, -0.03768712654709816, 0.022007538005709648, 0.008286316879093647, -0.006320422515273094, -0.023745933547616005, -0.016066372394561768, -0.015432234853506088, 0.008617479354143143, -0.0021013705991208553, 0.04029142111539841, 0.013739312998950481, -0.005349811166524887, 0.020591234788298607, -0.029906870797276497, 0.038298070430755615, 0.003589217085391283, -0.0070282164961099625, -0.004413642454892397, -0.027417464181780815, -0.03245745971798897, -0.029719363898038864, 0.01724150963127613, 0.015843970701098442, 0.022395022213459015, -0.048349861055612564, 0.021610373631119728, 0.01088764239102602, 0.020120546221733093, 0.017074458301067352, -0.044628534466028214, -0.040216635912656784, -0.0373966284096241, -0.06427984684705734, -0.021695660427212715, -0.01616569794714451, 0.016567010432481766, 0.020863814279437065, -0.010718980804085732, -0.003525531617924571, -0.021609820425510406, 0.025430932641029358, -0.040527697652578354, 0.036663711071014404, -0.01832447201013565, 0.014976633712649345, -0.01980132982134819, -0.0365695096552372, -0.03778602182865143, -0.024189822375774384, -0.011335143819451332, -0.011279772035777569, -0.02938801608979702, 0.033153608441352844, -0.010285431519150734, 0.01345501933246851, -0.034617505967617035, 0.024580657482147217, -0.0077695162035524845, -0.04447184130549431, -0.03987177461385727, 0.0301077701151371, -0.001050367602147162, 0.023803791031241417, 0.0006227815756574273, -0.011540510691702366, 0.030100803822278976, -0.030426036566495895, -0.05512435361742973, -0.016329193487763405, 0.012606040574610233, -0.0018026322359219193, -0.024700641632080078, -0.02577051892876625, -0.012102006003260612, -0.009776505641639233, -0.023950936272740364, 0.03806551173329353, 0.01181947160512209, 0.01576126553118229, 0.019985845312476158, -0.03791395202279091, 0.0020226293709129095, 0.08112175017595291, -0.03272965922951698, 0.022347871214151382, 0.011006789281964302, 0.04420723393559456, 0.039939034730196, 0.03222963586449623, 0.018863651901483536, 0.03359578549861908, 0.03763609007000923, -0.05925651639699936, -0.0030081828590482473, 0.013854965567588806, -0.03207823634147644, 0.027374669909477234, 0.014362435787916183, -0.0223297830671072, -0.027149749919772148, 0.006435245741158724, 0.014431866817176342, 0.014603356830775738, -0.013991848565638065, -0.01981804147362709, 0.02144773304462433, -0.0438188798725605, -0.023195905610919, 0.0045852335169911385, -0.058883048593997955, -0.05139752849936485, 0.02926352433860302, -0.01182496640831232, 0.0072086346335709095, -0.0035857101902365685, -0.03562226518988609, -0.017642706632614136, -0.03657381981611252, -0.033591799437999725, -0.015492436476051807, 0.043428562581539154, -0.0014820144278928638, 0.003180886385962367, -0.023004524409770966, -0.036855023354291916, 0.022400379180908203, 0.04771466553211212, -0.0352821983397007, -0.06880850344896317, 0.01730346865952015, 0.013200909830629826, -0.0138253727927804, 0.004107702989131212, -0.016498519107699394, -0.004492437932640314, 0.0017609705682843924, -0.007309602107852697, 0.012954548932611942, 0.0026052198372781277, -0.02522088773548603, 0.024172969162464142, 0.007176321465522051, -0.015298503451049328, -0.0037539757322520018, 0.026771798729896545, 0.01300074439495802, -0.04620714485645294, -0.01942688785493374, 0.028464168310165405, 0.013339018449187279, -0.016151802614331245, 0.05892254784703255, -0.01880379393696785, 0.07452699542045593, -0.009503323584794998, -0.013746924698352814, -0.0047672707587480545, 0.021044302731752396, 0.06261757761240005, 0.017943810671567917, -0.00005373808016884141, 0.030271653085947037, 0.06910151988267899, 0.010292639955878258, 0.038721147924661636, 0.04914647713303566, 0.00906294770538807, -0.029302936047315598, -0.004290154669433832, 0.010622460395097733, 0.017246969044208527, 0.02257719077169895, -0.0403943732380867, 0.019727645441889763, -0.02901642769575119, -0.016172626987099648, -0.01646514981985092, -0.00931459292769432, 0.07449109852313995, -0.017894940450787544, -0.013898718170821667, -0.001139192027039826, -0.03677232190966606, 0.016162283718585968, 0.04648889601230621, 0.019849061965942383, 0.027317164465785027, 0.03416735678911209, 0.023837732151150703, -0.005446991883218288, 0.05770434811711311, -0.001804371364414692, -0.012017128057777882, -0.002312206430360675, 0.005036008544266224, 0.009682041592895985, -0.019408347085118294, -0.05438658595085144, -0.022315839305520058, -0.016130050644278526, 0.005902536679059267, -0.03655070438981056, -0.015193469822406769, 0.021798130124807358, -0.056106243282556534, -0.006501555442810059, -0.03542224317789078, 0.02447611652314663, -0.04354427009820938, 0.0002621728926897049, 0.02492937445640564, -0.0001263235171791166, -0.04939311370253563, 0.07652724534273148, -0.0034993707668036222, 0.044153206050395966, 0.02494896575808525, 0.04706599563360214, 0.02322046458721161, 0.007384434342384338, 0.0836077556014061, -0.02365150675177574, -0.004805689211934805, 0.02885168232023716, -0.004896633792668581, -0.020973915234208107, -0.020581694319844246, -0.03282930701971054, -0.006320125423371792, -0.025582075119018555, -0.01414808351546526, 0.0005296986200846732, 0.04481909051537514, 0.005557131953537464, -0.042252883315086365, 0.010124840773642063, 0.05077718570828438, -0.047148920595645905, 0.009439577348530293, -0.009042720310389996, 0.03472030162811279, 0.004427776206284761, 0.010017350316047668, -0.03693636134266853, -0.019324587658047676, -0.026186073198914528, -0.03546524792909622, 0.019799668341875076, -0.024458695203065872, -0.03288194164633751, -0.02139984630048275, -0.03638428449630737, -0.03537741303443909, 0.05225984752178192, -0.05849640071392059, -0.052965667098760605, 0.03385471552610397, 0.01316564716398716, 0.006771013140678406, 0.014037876389920712, -0.029779119417071342, -0.015494170598685741, 0.04745512455701828, 0.03425653651356697, 0.002064745407551527, 0.041470009833574295, 0.025133851915597916, -0.029567928984761238, 0.015960652381181717, -0.013441919349133968, 0.0522863008081913, -0.0332832857966423, -0.022298771888017654, -0.013578242622315884, 0.0184070635586977, -0.006623118184506893, -0.059623364359140396, 0.0055110338144004345, 0.00020124157890677452, 0.008096443489193916, -0.029410528019070625, -0.054998550564050674, 0.005565408617258072, -0.036797527223825455, -0.03327198699116707, -0.03949427604675293, 0.03609443083405495, 0.027533406391739845, 0.01807471178472042, -0.008432462811470032, -0.07017135620117188, 0.167128786444664, 0.052241869270801544, 0.025198156014084816, 0.0071570733562111855, 0.018478460609912872, 0.07852813601493835, -0.001851644366979599, -0.008758616633713245, -0.03941429406404495, -0.028881346806883812, 0.038708657026290894, 0.007359820418059826, 0.029187561944127083, 0.010537141002714634, 0.02823847532272339, 0.06740548461675644, -0.023499203845858574, 0.023039642721414566, 0.03045378439128399, -0.055981311947107315, -0.03899933770298958, 0.05394750460982323, 0.010822450742125511, -0.007562452927231789, 0.0019466389203444123, 0.01907096803188324, 0.020377108827233315, -0.0535048246383667, -0.009813142009079456, -0.02648301236331463, 0.002650602487847209, -0.00632978230714798, 0.03574277088046074, -0.02788645401597023, -0.04183904081583023, 0.05246010795235634, -0.008815167471766472, -0.031946681439876556, 0.018809905275702477, 0.023862332105636597, -0.027613874524831772, -0.022124316543340683, 0.015268271788954735, -0.049461040645837784, 0.0007337270653806627, 0.03490771725773811, -0.06341072916984558, 0.003534990595653653, 0.011122106574475765, -0.028156381100416183, 0.05168180912733078, 0.0026434394530951977, 0.024318808689713478, 0.0019054776057600975, -0.012176714837551117, -0.006735503673553467, 0.003645935095846653, -0.0122881680727005, 0.00466900086030364, 0.007241713348776102, 0.011009668931365013, -0.003139630425721407, -0.008664817549288273, -0.010683479718863964, -0.01390588004142046, 0.011153856292366982, 0.03635672852396965, 0.01690218411386013, 0.008466217666864395, -0.014611713588237762, -0.005405563395470381, -0.0009478689753450453, 0.00043941865442320704, -0.010992517694830894, 0.02252837084233761, 0.037258923053741455, -0.02019263431429863, 0.04666893184185028, 0.011557113379240036, -0.021169044077396393, 0.005317664239555597, -0.027973853051662445, -0.004964704159647226, -0.012784326449036598, 0.018654923886060715, 0.01657811366021633, -0.073848195374012, -0.06385853886604309, -0.03783874586224556, 0.06713608652353287, 0.038617391139268875, 0.05676265060901642, -0.008365774527192116, 0.0017328178510069847, -0.010717758908867836 ]
UK RnB/Soul singer-songwriter Link Lewis has just unveiled his brand new single Am I In, a captivating piece of Contemporary R&B. I am really enjoying this slow-jam and how his smooth vocals flow effortlessly over the infectious instrumental. Am I In is a mellow piece packed with smoky beats, velvety vocals and a great mix of jazzy sax paired with atmospheric electronica and mellow beats. It's a great song for a chillout weekend and you can stream it below! I'm sure plenty of people will find Am I In relatable. It's about attraction and curiosity, that difficult decision - deciding whether to cross the line of friendship to see if a deeper connection exists. I'm really happy I could bring the sax into this song. I think it really adds a groove and atmosphere to the sound. I'm a multi-instrumentalist so it's cool to get all of the instruments I play in a single track. I love layering my vocals in the studio and playing around with different harmonies. I've been listening to a lot of Lauryn Hill and D'angelo so it's kind of hard not to take inspiration from them vocally.
[ 0.01430941466242075, 0.0012680556392297149, -0.02221437357366085, -0.0043473937548696995, -0.005767523311078548, -0.013331814669072628, -0.018474387004971504, 0.020779695361852646, 0.015206295996904373, 0.0214824415743351, 0.03445926308631897, 0.015511125326156616, 0.015882039442658424, -0.05608281493186951, -0.014540959149599075, -0.0019026456866413355, -0.04016764089465141, -0.016223711892962456, -0.006435532588511705, 0.01875760219991207, -0.016832835972309113, 0.029880452901124954, -0.0866987407207489, -0.012905212119221687, -0.014740345068275928, 0.0473158173263073, 0.004548488650470972, 0.0040125055238604546, 0.04029695317149162, 0.05616877228021622, -0.009619074873626232, -0.0425325445830822, 0.028927959501743317, -0.04379047825932503, -0.04827817901968956, -0.01392647810280323, 0.02693229727447033, 0.0010623940033838153, -0.00714018614962697, -0.07007932662963867, 0.0020095333456993103, -0.01655762828886509, 0.009386519901454449, -0.03484657034277916, -0.053879015147686005, -0.016160910949110985, -0.01978747732937336, -0.04153074696660042, 0.02621908113360405, -0.024934029206633568, -0.0034503478091210127, 0.001305137062445283, -0.00003648215715656988, -0.0033291971776634455, 0.036738209426403046, 0.015011289156973362, 0.0046923463232815266, 0.0016492399154230952, -0.03009811043739319, 0.000818538130261004, 0.006189465522766113, -0.012510057538747787, 0.01788146048784256, -0.05166328698396683, 0.0008035661303438246, 0.026633815839886665, 0.004249018616974354, -0.02151717245578766, 0.02409209869801998, -0.05031542852520943, -0.014843492768704891, -0.007519798818975687, -0.025745907798409462, -0.014481905847787857, 0.006282298360019922, 0.013108189217746258, -0.05256785452365875, -0.00255484483204782, 0.009156395681202412, 0.0007885977393016219, 0.017471520230174065, 0.05206052213907242, -0.0029845256358385086, 0.0013083916855975986, -0.043526556342840195, -0.007860706187784672, -0.007146457210183144, 0.03922821581363678, -0.010458235628902912, 0.0003151446289848536, 0.02926376834511757, 0.05705616623163223, 0.026156732812523842, -0.005990580189973116, 0.04387907311320305, 0.04187456890940666, -0.02667149342596531, 0.031284578144550323, 0.0031174493487924337, 0.01400415226817131, 0.03246030956506729, 0.01950475573539734, 0.005038007628172636, 0.04400327056646347, -0.04420607164502144, -0.028656942769885063, 0.009663325734436512, -0.0006625003879889846, -0.00827406533062458, -0.02985122986137867, 0.007372114807367325, -0.047481074929237366, -0.0001581007381901145, 0.027581239119172096, -0.015835875645279884, 0.04998151212930679, 0.018373975530266762, 0.05096583813428879, -0.03772720322012901, 0.0035660916473716497, 0.005635238718241453, 0.03166765347123146, 0.03349395841360092, -0.01744745671749115, 0.03367437422275543, -0.06087695434689522, -0.057550098747015, 0.04838183522224426, -0.043141379952430725, -0.032342541962862015, -0.0009324726997874677, -0.05154363811016083, 0.018457774072885513, 0.032207369804382324, -0.0075563425198197365, 0.03716430813074112, -0.006941056344658136, 0.04763214290142059, 0.023994147777557373, -0.06459971517324448, 0.02795020118355751, 0.03943280503153801, 0.003237750381231308, 0.10188756138086319, -0.00518896384164691, 0.047207701951265335, -0.005173245444893837, -0.004799004644155502, -0.03060184419155121, 0.014802590943872929, -0.013879119418561459, 0.05449477955698967, 0.014701680280268192, 0.04256186634302139, -0.03921205550432205, 0.005545943509787321, -0.006463158875703812, 0.010515584610402584, 0.0016582817770540714, 0.04583399370312691, -0.018916627392172813, 0.02321714349091053, 0.008851923979818821, 0.050377633422613144, -0.001121112029068172, 0.021907666698098183, -0.016967786476016045, 0.001373950974084437, 0.0039098975248634815, -0.03329693526029587, 0.01262348797172308, 0.019810166209936142, 0.000838270119857043, 0.02259937673807144, 0.007553671486675739, 0.050335031002759933, 0.03447772189974785, -0.03198842704296112, 0.04149169474840164, 0.01082990225404501, -0.051390573382377625, -0.01532756071537733, 0.011665391735732555, 0.0790976732969284, 0.00858343206346035, 0.01432612631469965, 0.004096494521945715, -0.029413701966404915, -0.0757102221250534, 0.004533865489065647, -0.004534065257757902, 0.040005873888731, -0.049370963126420975, 0.023141490295529366, 0.0013232664205133915, 0.012435903772711754, -0.003227394074201584, -0.017765330150723457, -0.03307761624455452, -0.04497407004237175, -0.01725207082927227, 0.03917741775512695, -0.059662140905857086, 0.06395671516656876, -0.016195746138691902, -0.030105944722890854, 0.03177829086780548, 0.05431133508682251, -0.03605335205793381, -0.00017932050104718655, 0.010797022841870785, 0.002298288280144334, -0.02478325553238392, -0.03872618079185486, -0.017829490825533867, 0.003771267831325531, -0.011311603710055351, 0.04372787848114967, -0.00012428306217771024, -0.0008135614916682243, -0.0016222537960857153, 0.021207021549344063, 0.04772856831550598, 0.056629978120326996, 0.019715629518032074, -0.024571964517235756, -0.0014093001373112202, 0.047949496656656265, -0.013724739663302898, 0.00764042790979147, -0.041148096323013306, 0.06303918361663818, 0.021762752905488014, 0.06683114916086197, 0.03580528497695923, 0.038652703166007996, 0.03501178324222565, 0.05461372807621956, 0.022323962301015854, 0.02201172523200512, 0.0011835024924948812, 0.017276255413889885, 0.051893413066864014, 0.054552894085645676, -0.024416282773017883, -0.0046069747768342495, 0.0053222752176225185, 0.011809254996478558, -0.0017810274148359895, 0.03601202741265297, -0.004484078846871853, 0.01845431886613369, 0.06750597804784775, 0.035226140171289444, -0.03087002970278263, 0.000591700489167124, 0.056704990565776825, 0.04943818971514702, -0.053924888372421265, 0.000012942758075951133, 0.023635247722268105, 0.009529762901365757, -0.02012241818010807, 0.002310766139999032, 0.04524494335055351, 0.002027649898082018, -0.005489860195666552, 0.019216375425457954, -0.016735099256038666, -0.040385324507951736, -0.04445962235331535, -0.033699195832014084, -0.04490935057401657, -0.02609202452003956, -0.027006492018699646, 0.0022203903645277023, 0.03483137860894203, -0.01763245277106762, 0.03391646966338158, -0.006643938831984997, 0.0010402231710031629, -0.03906985744833946, -0.04596514254808426, 0.02888515405356884, 0.03589943051338196, 0.030021989718079567, -0.04746096208691597, 0.02165920101106167, 0.010295567102730274, 0.050525352358818054, -0.032286904752254486, -0.0223845262080431, -0.007800813764333725, -0.012623906135559082, 0.020399030297994614, -0.015214134007692337, -0.012180608697235584, -0.013507230207324028, -0.05561431124806404, -0.010666204616427422, 0.060118455439805984, 0.025230327621102333, -0.028806203976273537, -0.004955325275659561, -0.06555323302745819, 0.04724994674324989, 0.022495782002806664, -0.019921425729990005, 0.03818497061729431, 0.03993625193834305, -0.051610399037599564, 0.0548257976770401, 0.010394247248768806, -0.004720658529549837, -0.026781918480992317, 0.025140317156910896, 0.07047688215970993, 0.02018333226442337, -0.0009252898162230849, 0.014859627932310104, -0.04220523685216904, 0.024739429354667664, 0.014733107760548592, -0.015255391597747803, -0.037096548825502396, 0.036604415625333786, 0.0459345281124115, -0.1044018492102623, 0.044745855033397675, -0.06330310553312302, -0.04689421132206917, -0.02584877796471119, -0.011561877094209194, 0.030370943248271942, 0.015622043050825596, 0.035704612731933594, 0.024391325190663338, -0.00433775782585144, -0.006137270946055651, 0.01781708560883999, 0.043594349175691605, -0.029868118464946747, 0.014787837862968445, 0.029439445585012436, -0.02728152461349964, 0.016207804903388023, -0.010367974638938904, -0.032056473195552826, -0.005316311959177256, 0.010064753703773022, -0.03259756788611412, -0.002058776095509529, 0.018865423277020454, -0.00536623178049922, 0.016987457871437073, 0.05206071212887764, -0.048636261373758316, -0.01872977428138256, 0.01869441755115986, 0.012742779217660427, 0.023722628131508827, 0.019668614491820335, 0.009659625589847565, -0.02704646624624729, -0.02877725288271904, -0.0665111094713211, 0.03174064680933952, 0.036712516099214554, 0.054283034056425095, -0.04391341656446457, 0.04691226780414581, -0.014006492681801319, -0.003968394361436367, 0.04736858233809471, -0.060000866651535034, -0.005736426450312138, 0.037725552916526794, -0.03353254124522209, -0.0018294089240953326, -0.051820795983076096, 0.023933129385113716, -0.02301357313990593, 0.02059364877641201, 0.04696081578731537, -0.006999082397669554, 0.02257874608039856, -0.04431777074933052, -0.03741203993558884, 0.004730353597551584, -0.014734376221895218, -0.011523593217134476, -0.010563679039478302, 0.010800950229167938, -0.03307962417602539, -0.0357745997607708, -0.04721793159842491, 0.054818812757730484, 0.01566247083246708, 0.04177168011665344, -0.016115853562951088, 0.035605691373348236, 0.00963296927511692, 0.0403418131172657, 0.007050435524433851, 0.010997121222317219, 0.045416198670864105, -0.04663628339767456, 0.03430797532200813, 0.00028440047753974795, -0.05195801705121994, 0.013314064592123032, 0.021043352782726288, -0.04982179403305054, 0.031511340290308, 0.0007817658479325473, -0.03451959416270256, -0.04270683601498604, -0.0010716073447838426, -0.030745944008231163, 0.01654825173318386, -0.030998894944787025, -0.035595543682575226, -0.03659777715802193, 0.02802260033786297, 0.02535822056233883, -0.05414394289255142, 0.019098840653896332, -0.024294529110193253, 0.040234796702861786, 0.03890508413314819, -0.021827902644872665, -0.04044037684798241, -0.03556805104017258, -0.01602793298661709, -0.034293513745069504, 0.011225063353776932, 0.03543480485677719, -0.00768232299014926, 0.021787308156490326, -0.053730543702840805, 0.036352626979351044, 0.024522211402654648, 0.0016549371648579836, -0.024715296924114227, 0.03216787800192833, 0.003861379576846957, -0.00555413356050849, 0.05302426591515541, 0.007451868616044521, -0.018490616232156754, -0.005004401318728924, -0.05628708004951477, 0.021879011765122414, 0.027111176401376724, -0.011310894973576069, 0.04147762432694435, 0.0066735888831317425, 0.02740548737347126, 0.03668064996600151, 0.0022530073765665293, 0.007303756196051836, 0.0008366082329303026, 0.05067905783653259, -0.0072089554741978645, -0.058281078934669495, 0.034309979528188705, -0.0027060804422944784, -0.004073851741850376, 0.03043726645410061, 0.05227324366569519, -0.033719502389431, 0.016291428357362747, 0.026498552411794662, -0.03769022598862648, 0.041630517691373825, -0.029931582510471344, 0.004537813365459442, -0.02537252940237522, -0.03061629645526409, 0.013321132399141788, -0.04447015002369881, 0.004756144247949123, 0.004969901405274868, -0.003245537867769599, -0.0358625128865242, -0.03614426776766777, -0.024111172184348106, -0.051925431936979294, 0.007164560724049807, 0.014151408337056637, -0.012526591308414936, 0.004517834167927504, 0.02198619581758976, -0.007253123447299004, -0.0009598211036063731, -0.011026808992028236, -0.04751628637313843, 0.008744015358388424, -0.026543257758021355, 0.0035953735932707787, 0.01300313975661993, -0.030974840745329857, -0.04567988961935043, -0.02478477731347084, 0.027871768921613693, -0.022684982046484947, -0.05705033615231514, -0.011162113398313522, -0.020090628415346146, -0.014558265917003155, 0.0029562651179730892, 0.023557793349027634, -0.019270779564976692, 0.007562760729342699, 0.03797398880124092, 0.016664225608110428, -0.005697339307516813, 0.013997289352118969, -0.04013790190219879, 0.045520614832639694, 0.022061150521039963, -0.04626110941171646, -0.004783153999596834, 0.040573157370090485, -0.0004591004690155387, 0.07533852010965347, -0.011971007101237774, -0.02449902333319187, -0.05374611169099808, -0.009022206999361515, 0.019937243312597275, -0.03842770680785179, 0.0003453300450928509, -0.027086714282631874, -0.008880875073373318, -0.0356803797185421, 0.06467980146408081, -0.002697903662919998, 0.0005330152926035225, -0.018701519817113876, -0.045844487845897675, 0.042823709547519684, -0.02581937052309513, -0.0014086910523474216, -0.04382464289665222, 0.018357202410697937, -0.005506452172994614, 0.024921884760260582, -0.02059137262403965, 0.01799815148115158, 0.000855548249091953, 0.004344431683421135, 0.049758877605199814, -0.034822314977645874, -0.04143068566918373, -0.04588710889220238, 0.020741112530231476, 0.006401911843568087, -0.011540304869413376, 0.03610692173242569, -0.037006959319114685, 0.03653300553560257, -0.03886134922504425, 0.014103932306170464, -0.02534388191998005, -0.01968974433839321, -0.00980557594448328, -0.016621248796582222, 0.05342000350356102, -0.021142911165952682, 0.0029253449756652117, 0.0021878485567867756, 0.05369695648550987, 0.038266852498054504, -0.0008437770884484053, -0.053358547389507294, -0.016012657433748245, -0.04881518706679344, -0.04670552909374237, 0.009889857843518257, -0.03444049507379532, -0.015311585739254951, -0.03939425200223923, 0.014131004922091961, 0.03679715096950531, 0.006746449042111635, 0.03520401194691658, 0.03294918313622475, 0.011712304316461086, -0.024475449696183205, -0.04255446419119835, 0.02452787011861801, 0.03386015072464943, -0.009878699667751789, 0.01734691485762596, -0.027593284845352173, -0.024957677349448204, 0.00333761190995574, -0.04377668723464012, -0.04213639721274376, -0.05920024961233139, -0.02810002863407135, 0.08197018504142761, -0.04180165380239487, 0.046831708401441574, -0.01470270473510027, -0.03395954146981239, -0.039484575390815735, 0.035013262182474136, 0.008341078646481037, 0.013768704608082771, 0.04265584424138069, 0.028261680155992508, 0.0033346361014992, -0.004774308297783136, -0.011000164784491062, -0.01765909045934677, -0.056251443922519684, 0.03880733251571655, -0.012859643436968327, -0.04053980112075806, 0.04169340059161186, 0.042683206498622894, -0.07365943491458893, -0.06666020303964615, -0.02964959479868412, -0.02663756161928177, 0.0030528672505170107, -0.020841196179389954, -0.0000989066538750194, -0.043726131319999695, -0.011038897559046745, -0.014851568266749382, 0.018585437908768654, -0.009800507687032223, 0.02879817597568035, -0.02359187602996826, 0.014416568912565708, -0.05286122113466263, 0.00005822005550726317, 0.042047083377838135, -0.004837824031710625, -0.00978289544582367, -0.03688057139515877, 0.001421188935637474, -0.0070432922802865505, 0.017392462119460106, 0.04973655194044113, -0.03236350044608116, 0.04870859161019325, 0.04323117807507515, -0.01638244092464447, 0.02672071009874344, -0.01261875219643116, -0.005327945575118065, 0.0022622537799179554, -0.03244214504957199, -0.061318740248680115, -0.03693681210279465, 0.012538958340883255, 0.03000088781118393, 0.0607803575694561, -0.05469566211104393, -0.0012454744428396225, 0.01857435144484043, 0.0032961356919258833, 0.010075169615447521, -0.030501065775752068, -0.043066397309303284, -0.06545662879943848, -0.05555834248661995, -0.023084670305252075, -0.01262897439301014, -0.02919204905629158, 0.019914770498871803, 0.04280691221356392, -0.041932251304388046, 0.005881879478693008, -0.008049865253269672, -0.027816593647003174, 0.0036494312807917595, -0.03541291132569313, 0.02292032726109028, -0.042541541159152985, -0.0072653768584132195, -0.0157817080616951, 0.0035993410274386406, -0.021851081401109695, -0.0353567972779274, -0.0015209702542051673, 0.015177885070443153, 0.01867217943072319, 0.044155705720186234, -0.008092798292636871, -0.009968290105462074, 0.00043716010986827314, -0.007332860957831144, -0.0008705750806257129, 0.041182711720466614, -0.0007268213084898889, 0.03540218248963356, 0.0224496778100729, 0.01025388389825821, 0.04587367922067642, 0.0002636746212374419, -0.05269994959235191, -0.02854248322546482, -0.00783432088792324, 0.02102183736860752, 0.0033834860660135746, -0.0029705881606787443, -0.0417553149163723, -0.02722877822816372, -0.011402378790080547, 0.00527690164744854, -0.00002892827797040809, -0.013103343546390533, 0.009888985194265842, -0.009813294745981693, 0.004670815542340279, 0.051594555377960205, -0.02339804172515869, 0.04369354993104935, -0.005734517704695463, 0.020929306745529175, 0.016965249553322792, -0.019211195409297943, 0.01766427792608738, 0.010518158785998821, 0.023787060752511024, -0.03883877396583557, -0.02942195162177086, 0.011818740516901016, -0.019015930593013763, 0.021864600479602814, -0.017341626808047295, -0.03569452092051506, -0.05784390866756439, -0.0056847999803721905, 0.02892482280731201, 0.033255480229854584, -0.00931026041507721, 0.016554534435272217, 0.008507865481078625, -0.03719710558652878, -0.049062181264162064, 0.009818514809012413, -0.07018264383077621, -0.03552202507853508, 0.04762520641088486, 0.008465821854770184, -0.016253244131803513, -0.025477774441242218, -0.01796138472855091, 0.017554964870214462, 0.0030625201761722565, -0.0004442189820110798, -0.03451879322528839, 0.008867521770298481, 0.023004118353128433, 0.011767242103815079, -0.008594158105552197, 0.008723700419068336, 0.007588537409901619, 0.019476445391774178, -0.051441729068756104, -0.07709331810474396, 0.0060829161666333675, 0.035153210163116455, 0.024793533608317375, -0.007104762829840183, 0.01091441698372364, -0.003038250608369708, 0.009389769285917282, 0.00925873126834631, 0.011254426091909409, 0.02758723869919777, 0.02326352521777153, 0.0035324536729604006, 0.01730465702712536, 0.02052183635532856, -0.05293416231870651, 0.04323187470436096, 0.005916873924434185, -0.04804530367255211, 0.01797535829246044, 0.014948789961636066, 0.010248086415231228, -0.008255520835518837, 0.029149942100048065, 0.009231910109519958, 0.060153547674417496, -0.0011376520851626992, 0.006890848278999329, 0.010945900343358517, 0.042611874639987946, 0.06436434388160706, 0.031472016125917435, -0.00857371836900711, 0.0332905538380146, 0.04791243001818657, -0.017674773931503296, 0.017147541046142578, 0.05634845793247223, 0.03598187863826752, -0.013570471666753292, -0.016831042245030403, -0.02227592095732689, 0.03609422594308853, 0.01964022032916546, -0.01853686198592186, 0.011007723398506641, -0.031363338232040405, -0.007348529063165188, -0.01793447695672512, -0.022498570382595062, 0.0487111397087574, -0.015539857558906078, 0.023142103105783463, -0.028880642727017403, -0.022941408678889275, -0.030777832493185997, 0.05160675197839737, -0.006346709560602903, 0.022586314007639885, 0.041216425597667694, 0.013641717843711376, -0.009767348878085613, 0.04472930729389191, 0.028044162318110466, -0.0031042098999023438, -0.027512038126587868, 0.011819078586995602, 0.03792216256260872, -0.00979017186909914, -0.02154262736439705, 0.027572564780712128, -0.04230266064405441, 0.022402824833989143, -0.055646929889917374, 0.0014679997693747282, 0.04814007133245468, -0.029690125957131386, -0.040412869304418564, -0.04968629777431488, 0.04717891290783882, -0.008213670924305916, 0.009067792445421219, 0.046612732112407684, -0.03217912092804909, -0.03399267420172691, 0.05610985681414604, 0.011317397467792034, 0.024434130638837814, 0.010422304272651672, 0.04593265801668167, -0.021688982844352722, 0.01570073701441288, 0.046872999519109726, -0.03533416986465454, -0.02446354739367962, 0.03175830841064453, -0.012294751591980457, -0.04318005219101906, 0.008665759116411209, -0.05313071608543396, -0.030720138922333717, -0.015967676416039467, -0.0055750575847923756, 0.0023841436486691236, 0.04076630622148514, -0.019928958266973495, -0.04297662153840065, 0.02096005715429783, 0.03410976380109787, -0.022914396598935127, 0.046306904405355453, 0.015875741839408875, 0.05195454880595207, -0.01731288805603981, -0.022816766053438187, -0.02451486885547638, -0.01012485008686781, 0.007810624316334724, -0.02758704125881195, 0.039221059530973434, -0.02345583215355873, -0.0426412858068943, -0.022209124639630318, -0.0327308364212513, -0.03118029795587063, 0.010656597092747688, -0.03165505453944206, -0.04592663422226906, -0.0025946260429918766, 0.058787524700164795, 0.019146090373396873, -0.008390671573579311, -0.04804439842700958, -0.009858427569270134, 0.009980607777833939, 0.055548008531332016, -0.02247791178524494, 0.04392371326684952, 0.03494395315647125, -0.0272318497300148, 0.014660345390439034, -0.015345947816967964, 0.01899649389088154, -0.008840059861540794, -0.011760583147406578, -0.024431953206658363, 0.046062976121902466, -0.040842391550540924, -0.04596816748380661, 0.03639952093362808, 0.0018346417928114533, 0.014728693291544914, -0.04556407406926155, -0.051378294825553894, -0.019212348386645317, -0.041669923812150955, -0.009998495690524578, -0.04308003559708595, 0.009260695427656174, -0.0017377109033986926, -0.011491728946566582, 0.023464418947696686, -0.04806393012404442, 0.15577633678913116, 0.02940390072762966, 0.028406498953700066, -0.008636931888759136, -0.005224739667028189, 0.027956614270806313, 0.022555988281965256, -0.00959814339876175, 0.025632038712501526, -0.03317510336637497, 0.017619004473090172, 0.014151106588542461, 0.020274808630347252, -0.0018406754825264215, 0.03795977681875229, 0.061756208539009094, 0.012903798371553421, 0.012570047751069069, 0.03547219559550285, -0.09307433664798737, -0.044606007635593414, 0.007739271968603134, 0.019553231075406075, 0.0006885611219331622, 0.005013683810830116, 0.025744633749127388, 0.020983530208468437, -0.04257907718420029, -0.005280691664665937, -0.018227357417345047, 0.01976628042757511, -0.015600325539708138, 0.06453956663608551, -0.0319894477725029, -0.034597333520650864, 0.04614958539605141, 0.0026038787327706814, -0.014727628789842129, 0.004376417025923729, 0.012405958957970142, -0.001541093341074884, -0.017530962824821472, 0.017387621104717255, -0.041236549615859985, 0.01902352087199688, 0.04409988597035408, -0.03264516219496727, 0.04133095219731331, -0.004445874132215977, -0.03221333026885986, 0.05964862182736397, -0.026566073298454285, 0.006173126399517059, -0.013958943076431751, -0.027388745918869972, 0.007572527974843979, -0.008177063427865505, -0.009373816661536694, -0.0031864624470472336, -0.002221636474132538, 0.0058555761352181435, -0.006739297416061163, -0.024152949452400208, -0.00015296983474399894, -0.030629105865955353, -0.0033254351001232862, 0.03203236684203148, 0.007566745858639479, 0.002407344523817301, -0.030191002413630486, -0.058905456215143204, -0.016360385343432426, 0.005597226321697235, -0.03353068232536316, 0.017414676025509834, 0.030816666781902313, -0.03387787938117981, 0.041356489062309265, -0.002065033419057727, -0.01322829071432352, -0.014795576222240925, -0.0027730234432965517, -0.0024145140778273344, -0.011188213713467121, 0.01750028319656849, 0.032153937965631485, -0.03202848508954048, -0.05233794450759888, -0.03721257671713829, 0.03560379520058632, 0.0539008304476738, -0.000994647154584527, -0.010569489561021328, -0.02096121571958065, -0.012591322883963585 ]
Our comprehensive terms and conditions can be found below. Different conditions apply to consumers and business customers. The detailed terms and conditions can be downloaded via the links at the bottom of this page. It can always happen that a product does not meet your expectations. If it concerns an online order, we follow the law distance selling and you have 14 days to change your mind. This reflection period starts from the moment the product is in your possession. Within the cooling-off period you can return the products or indicate that you cancel the order (this is called revocation). This can be done by informing us in writing (for example by mail or e-mail). After revocation you have 14 days to return the product (s). To qualify for the return of an order, the product must be returned with all delivered accessories, in the original condition and with - as far as reasonably possible - undamaged packaging. If this is not the case, a partial allowance will be calculated, the amount of which will depend on the state of the product. For example, you can take a water block out of the box and view it. If you place it on a video card or processor, we can no longer sell the water block as new. We will deduct the depreciation resulting from this with the amount to be repaid. • If the product is returned to us within the 14 day cooling off period, you will receive the shipping costs that you have paid to us within 14 days. If the initial purchase consisted of several products and you do not return all products, you will not be reimbursed for the shipping costs. • Any costs and the risk of returning products are at the expense of the sender. • For a product that appears to be defective immediately after purchase and is returned within 14 days, we will refund the shipping costs (without additional services) in accordance with the standard PostNL rates. • You will receive the purchase price, including any shipping costs for the forwarding, when you have dissolved the purchase, as soon as possible from us, but no later than 14 days. A number of products can not be exchanged or returned. • Open (broken seal), installed or registered software, DVDs, games, gift cards and vouchers. • Items that have been put into use and have such user traces that it can no longer be repaired and can be sold as a new product. • Items that can not be returned for hygienic reasons, such as in-ear headsets and earplugs (if opened, broken seal). • Items which, after delivery, are irrevocably mixed with other items (for example, when a product got in contact with (cooling) liquid). • Items specially tailored and/or ordered for you. • If you have not yet done so, we ask you to contact our customer service by e-mail if the product is delivered incorrectly and / or guarantee. • For an adequate processing, we request that you state your order number and product range. • The return is at the risk of the sender. • Ensure a thorough overpack. • Only return products if they are complete. • Ensure that you sufficiently frank your shipment. If you wish, you can use the European withdrawal form for cancellation. You will also find this form attached to our General Terms and Conditions (see link at the bottom of this page). However, a business customer is not covered by the Distance Selling Act. This means that you are not entitled to compensation for shipping costs in relation to the consumer unless it concerns a defective product within the 14 days cooling-off period. This reflection period starts from the moment the product is in your possession. In addition, products that are incomplete, damaged or specially ordered for you are not eligible for exchange or refund. For example, you can take a water block out of the box and view it. If you place it on a video card or processor, we can no longer sell the water block as new. The product has actually been put into use. • In the case of a product that appears to be defective immediately after purchase and is returned within 14 days, we will refund the shipping costs (without additional services) in accordance with the standard PostNL rates. • You will receive the purchase amount, excluding any shipping costs for the forwarding, back to your account or account within 5 working days. • Open (broken seal), installed or registered software, DVDs and games. • Opened consumables such as ink and toners. • Gift vouchers, vouchers or value checks. • Items specially tailored for you. • Items that have been specially ordered. • For an adequate processing we ask you to state your order number and product codes. • The return shipment is at the risk of the sender.
[ -0.025719445198774338, -0.00472140870988369, -0.022045383229851723, -0.0047406647354364395, -0.025994597002863884, 0.009107505902647972, 0.010949468240141869, 0.008761121891438961, 0.012314761988818645, 0.054835785180330276, 0.03173590451478958, 0.03553864732384682, -0.007593532558530569, -0.03366728127002716, -0.007704785093665123, 0.000648025656118989, -0.051288146525621414, -0.05729929357767105, -0.031920164823532104, 0.0005078138201497495, -0.000846118840854615, 0.002260936889797449, -0.0361766442656517, -0.027322852984070778, -0.02704458124935627, 0.02919401228427887, -0.019146699458360672, -0.004690514411777258, 0.09114384651184082, 0.06347233057022095, -0.031565628945827484, -0.05076692998409271, 0.04043351858854294, -0.03497033938765526, -0.01876704767346382, -0.01348390243947506, 0.025006601586937904, -0.024047035723924637, -0.012284251861274242, -0.033248402178287506, 0.030590297654271126, -0.006022143177688122, 0.015194281004369259, -0.020039571449160576, -0.010159575380384922, -0.022183150053024292, -0.035003501921892166, -0.02453351952135563, 0.03675680235028267, -0.032920412719249725, 0.028167350217700005, -0.017046794295310974, 0.0033245438244193792, -0.02308342233300209, 0.00826890766620636, -0.0022273478098213673, 0.0002493092615623027, -0.00805503036826849, -0.030770882964134216, 0.05513779819011688, -0.013911755755543709, -0.0006562189082615077, 0.036389611661434174, -0.054350581020116806, 0.037309568375349045, 0.02787371724843979, -0.018003089353442192, -0.008350097574293613, 0.00006029785072314553, -0.006516064051538706, 0.008933763019740582, 0.005571783520281315, 0.0067369393073022366, -0.03159434348344803, 0.03966183215379715, 0.030119115486741066, 0.01045860443264246, 0.009420087561011314, -0.027041012421250343, 0.006071628071367741, 0.0444517657160759, 0.03324199840426445, 0.022865980863571167, 0.0031962122302502394, -0.06529263406991959, -0.020252559334039688, -0.001681591384112835, 0.0153732905164361, 0.0011482253903523088, -0.022092586383223534, -0.014575104229152203, 0.04875863716006279, 0.011392307467758656, -0.01081510167568922, 0.024300750344991684, 0.03908674791455269, -0.04698624834418297, 0.03719361871480942, -0.011842508800327778, -0.014861955307424068, 0.05269131809473038, 0.015707124024629593, -0.00989072397351265, 0.047739848494529724, -0.046626027673482895, -0.0019084328087046742, 0.003379687201231718, -0.010815191082656384, -0.03812739998102188, -0.03923674300312996, 0.007409512531012297, -0.0073418989777565, 0.00372315663844347, -0.023048559203743935, -0.00631147064268589, 0.03250541538000107, -0.012274162843823433, 0.029383007436990738, -0.020901383832097054, 0.015909984707832336, 0.07081393152475357, 0.03969802334904671, 0.06097819656133652, -0.0013970093568786979, 0.03692176938056946, -0.04590456932783127, 0.011036837473511696, 0.023040693253278732, -0.004751808010041714, -0.05772697180509567, 0.006977202836424112, -0.017539307475090027, 0.0005433097830973566, 0.022835347801446915, 0.02102222852408886, 0.033711034804582596, -0.016072869300842285, 0.030698830261826515, 0.02817434072494507, -0.029398776590824127, 0.0520901083946228, 0.0312938429415226, 0.01887189969420433, 0.06933782994747162, 0.003365086857229471, 0.028637094423174858, 0.026304040104150772, 0.00733646284788847, -0.056593287736177444, 0.030421679839491844, -0.04755707085132599, 0.028300492092967033, 0.005666944198310375, 0.02575138956308365, 0.028402958065271378, -0.007770470343530178, -0.0008681692997924984, -0.024469295516610146, 0.013924096710979939, 0.027499033138155937, -0.0016954297898337245, 0.009242339991033077, -0.023504363372921944, 0.027420159429311752, -0.011841803789138794, 0.016865583136677742, -0.04195854067802429, -0.00591242453083396, 0.001855397131294012, -0.02404102496802807, 0.005663118790835142, -0.027124272659420967, -0.0010720964055508375, 0.01647832617163658, 0.026975994929671288, 0.041124600917100906, 0.050539810210466385, -0.018575595691800117, 0.04751244932413101, 0.019650455564260483, -0.02996242418885231, 0.014589158818125725, 0.015959475189447403, 0.050037797540426254, 0.02992336079478264, -0.01355347316712141, -0.002126301173120737, -0.022009817883372307, -0.05537204444408417, -0.041632018983364105, -0.01574237085878849, 0.008605081588029861, -0.026114802807569504, 0.04122660309076309, -0.02510162629187107, -0.008466132916510105, -0.002239905996248126, 0.012859194539487362, -0.012695102952420712, -0.06872900575399399, -0.016700202599167824, 0.02296561375260353, -0.060821421444416046, 0.05015632510185242, 0.02997475117444992, -0.020062657073140144, 0.02834184281527996, 0.046136971563100815, -0.04590260982513428, 0.0011120509589090943, -0.019661644473671913, 0.01738813705742359, -0.025810405611991882, -0.03208482638001442, -0.003558915574103594, -0.030904868617653847, -0.03467998281121254, 0.03798988461494446, -0.04462551698088646, 0.025726616382598877, 0.022392382845282555, -0.0006770342006348073, 0.013741894625127316, 0.060540180653333664, -0.0034632785245776176, -0.02001919411122799, 0.01566404104232788, 0.04025762900710106, 0.004168931394815445, 0.023302653804421425, -0.03579387813806534, 0.05109953135251999, 0.016474252566695213, 0.04840708151459694, 0.057904768735170364, 0.012477997690439224, 0.042232610285282135, 0.0461544506251812, 0.007160241715610027, 0.024159010499715805, -0.0016577584901824594, 0.002958686789497733, 0.03669692203402519, 0.011948378756642342, 0.0025018868036568165, 0.029919713735580444, -0.004618583247065544, -0.007456526625901461, -0.031076043844223022, 0.04163911193609238, -0.005952480249106884, 0.055165424942970276, 0.017820782959461212, 0.0274430513381958, -0.023280421271920204, -0.015270846895873547, 0.03423550724983215, 0.04570614546537399, -0.023135261610150337, 0.0019937409088015556, 0.026562998071312904, 0.028562204912304878, -0.018107833340764046, -0.00480672437697649, 0.009647554717957973, 0.009574631229043007, 0.032929468899965286, 0.014872093684971333, -0.01920085959136486, -0.01477422658354044, -0.02844036929309368, -0.05148479342460632, -0.04189727082848549, -0.02779940702021122, -0.04082401841878891, -0.027361810207366943, 0.05706052482128143, -0.03915143758058548, 0.044920217245817184, -0.031124666333198547, -0.03288756310939789, -0.04823004826903343, 0.020842252299189568, 0.032996371388435364, 0.015866262838244438, 0.0583224892616272, -0.05562135949730873, 0.03589826449751854, -0.005225272383540869, 0.029940171167254448, 0.003078153356909752, 0.025786230340600014, -0.002496931469067931, -0.02557172067463398, 0.030093401670455933, 0.013126039877533913, -0.008607763797044754, 0.035060618072748184, -0.07252097129821777, -0.05081500485539436, -0.006217815913259983, -0.00033476256066933274, 0.00846800021827221, 0.023675160482525826, -0.03330003097653389, 0.05586802214384079, 0.03237137570977211, -0.00771539518609643, 0.04110272601246834, 0.027936620637774467, -0.07492439448833466, 0.007412726525217295, 0.023535747081041336, 0.03352944925427437, -0.07009340822696686, 0.0431022010743618, 0.04294803738594055, -0.0007935297326184809, -0.018954146653413773, 0.0027715025935322046, -0.04295264929533005, 0.01762321963906288, 0.040933798998594284, 0.007660871837288141, -0.027149083092808723, 0.024688920006155968, 0.020546408370137215, -0.07518508285284042, 0.03664334863424301, -0.04194764420390129, -0.011659784242510796, -0.04125645011663437, -0.05550920218229294, -0.0013574498007073998, 0.03583022952079773, 0.04730404168367386, 0.026157919317483902, -0.05755315721035004, -0.01545160636305809, 0.01684330403804779, 0.05785418674349785, -0.0013478528708219528, -0.007177621591836214, 0.03633841872215271, 0.013866984285414219, 0.045758672058582306, 0.06842973083257675, -0.0202335175126791, 0.021403802558779716, 0.041545409709215164, 0.017406444996595383, 0.009827198460698128, 0.01566033810377121, 0.019367441534996033, 0.03093484602868557, 0.05208907276391983, -0.04074569419026375, -0.0047151572071015835, -0.007406143471598625, 0.04101628065109253, 0.04655703157186508, 0.010706349276006222, 0.006856430321931839, -0.013664972968399525, -0.039434388279914856, -0.03177955001592636, 0.05432182550430298, 0.014607482589781284, 0.058991193771362305, -0.05086791142821312, 0.035236772149801254, 0.013321174308657646, -0.02541603334248066, 0.020285386592149734, -0.06004394590854645, -0.001178290694952011, 0.02909674495458603, -0.03950967639684677, 0.06406711786985397, -0.03954286500811577, 0.014266984537243843, -0.0020311286207288504, -0.02419481985270977, -0.011058339849114418, -0.004514748230576515, 0.0014104448491707444, -0.04184413328766823, 0.019244037568569183, -0.022713905200362206, -0.03192590922117233, 0.005363938398659229, -0.05068492144346237, -0.01378830149769783, 0.00119983300101012, -0.04187244176864624, -0.04972352460026741, 0.0042529962956905365, 0.00883110798895359, 0.04584376886487007, -0.013466023840010166, 0.03487009182572365, 0.04412771761417389, 0.009965818375349045, 0.0036627650260925293, -0.007062041200697422, -0.005871263332664967, -0.03787503391504288, 0.052309051156044006, 0.019218800589442253, -0.016695432364940643, -0.021382009610533714, -0.028416883200407028, -0.030141470953822136, 0.022657867521047592, -0.013723584823310375, -0.018733471632003784, -0.03465314954519272, 0.011454121209681034, -0.012557095848023891, -0.003858651267364621, -0.03330252319574356, -0.005646409932523966, -0.04836570471525192, 0.04298701137304306, 0.0328584685921669, -0.06415189057588577, 0.014742732048034668, -0.05000835284590721, 0.04087037593126297, 0.05333700776100159, 0.012926031835377216, -0.04765733331441879, -0.01376571785658598, -0.033247943967580795, -0.029611432924866676, 0.018281621858477592, 0.03653809428215027, 0.008718064986169338, -0.021815024316310883, -0.02423230931162834, 0.007160924840718508, 0.02200968749821186, -0.03271300718188286, -0.017887836322188377, -0.024854671210050583, 0.028141267597675323, 0.003499759128317237, 0.031397681683301926, 0.005322959274053574, -0.0196396354585886, 0.012624246068298817, -0.06826215982437134, 0.030016383156180382, -0.01656593568623066, -0.02876899018883705, 0.00817778892815113, 0.030600380152463913, 0.02522926591336727, 0.04232438653707504, -0.0005042888806201518, 0.01821763440966606, -0.01589788869023323, 0.02442811243236065, -0.02742774225771427, -0.04688781499862671, 0.030058028176426888, 0.021545791998505592, -0.04361715167760849, 0.01279356051236391, 0.02310194820165634, -0.020570430904626846, 0.012656576931476593, 0.055640023201704025, -0.05613553151488304, 0.03367916867136955, -0.021000603213906288, 0.0005613063112832606, -0.03919285535812378, -0.0499662347137928, 0.014025572687387466, -0.02285788208246231, 0.017682019621133804, 0.003157547442242503, -0.033333487808704376, -0.029844069853425026, -0.05421679839491844, -0.03407249599695206, 0.00689637241885066, -0.02441549301147461, 0.03349192440509796, -0.003804398700594902, 0.0014480405952781439, 0.005007426254451275, -0.0037672552280128, 0.007958387024700642, 0.012838512659072876, -0.012779150158166885, 0.00945635698735714, 0.0314485989511013, -0.0016166074201464653, 0.002664719009771943, -0.011854531243443489, -0.014722887426614761, 0.016866274178028107, 0.003500215010717511, 0.00043648466817103326, -0.03971123695373535, -0.0012690857984125614, 0.006675712298601866, -0.011851913295686245, -0.014917907305061817, 0.010312540456652641, -0.02012530155479908, 0.01710691675543785, 0.04281773790717125, 0.020990492776036263, 0.008680703118443489, 0.02313501015305519, -0.0447952002286911, 0.06613137573003769, 0.0166819728910923, -0.030765727162361145, -0.045665111392736435, 0.021596692502498627, -0.020629294216632843, 0.05028790608048439, -0.018982306122779846, -0.021614614874124527, -0.04266659542918205, -0.05801629275083542, -0.009647682309150696, -0.03514077886939049, -0.013347507454454899, -0.07778018712997437, -0.03996331989765167, -0.011612466536462307, 0.04884295165538788, -0.007432342041283846, -0.02528049610555172, 0.02413787879049778, -0.04680612310767174, 0.042872536927461624, -0.02625107951462269, 0.00868248101323843, -0.019747544080018997, 0.013554983772337437, -0.03839630261063576, 0.056703124195337296, 0.02001611702144146, -0.0021987217478454113, 0.0038849087432026863, -0.0008497403468936682, 0.019319431856274605, -0.0017163166776299477, -0.04990949109196663, -0.03374112397432327, -0.01968984119594097, 0.026482924818992615, 0.004653578158468008, 0.04358477145433426, -0.016753682866692543, 0.07911365479230881, -0.04528985545039177, 0.00915292277932167, 0.001299466472119093, 0.004823398310691118, -0.02450970560312271, -0.025203434750437737, 0.041350532323122025, -0.026283707469701767, 0.02261160872876644, 0.004075273405760527, 0.04536724090576172, 0.04555714130401611, 0.007472016382962465, -0.014312932267785072, -0.025798074901103973, -0.052854809910058975, -0.048782143741846085, 0.012088472954928875, -0.035718291997909546, -0.01837029680609703, -0.05532747507095337, -0.04085410013794899, 0.05579305440187454, -0.012761840596795082, 0.02753966860473156, 0.06679095327854156, 0.003827044041827321, -0.01138178538531065, -0.025885416194796562, 0.07031647115945816, 0.04849482327699661, -0.02710980921983719, -0.0016496594762429595, -0.01198672316968441, -0.004343242850154638, -0.024791063740849495, -0.03254149109125137, -0.05211085081100464, -0.054298192262649536, 0.016374621540308, 0.06140974909067154, -0.03577638044953346, 0.027603754773736, -0.027124958112835884, -0.07054633647203445, -0.04543965682387352, 0.023404458537697792, 0.02145322971045971, 0.03878189995884895, 0.06098201870918274, -0.018887415528297424, -0.03458842262625694, 0.04161177948117256, -0.020238112658262253, 0.001530914450995624, -0.04286627098917961, 0.05404799431562424, 0.02506183832883835, -0.06928310543298721, -0.009369714185595512, 0.029918784275650978, -0.036889564245939255, -0.04799848794937134, 0.008798417635262012, -0.004372427240014076, -0.013531620614230633, -0.0641513243317604, 0.03661021590232849, -0.009551741182804108, 0.024075493216514587, -0.008258857764303684, 0.02746584452688694, -0.028161974623799324, 0.06399589031934738, 0.023459509015083313, 0.0334518700838089, -0.05506333336234093, -0.013796527869999409, 0.007379336282610893, 0.0003393633814994246, -0.031937602907419205, -0.05845292657613754, -0.003974152263253927, -0.01269343588501215, 0.005739232990890741, 0.05535230413079262, -0.02314569242298603, 0.02959730103611946, 0.03914922475814819, -0.000035515156923793256, 0.06379599124193192, -0.0037303499411791563, -0.01851385273039341, 0.03364221006631851, -0.050238534808158875, -0.056672994047403336, 0.004455259069800377, 0.028052115812897682, -0.027449816465377808, 0.01229922566562891, -0.06249989569187164, -0.009330016560852528, 0.03923029825091362, 0.024232428520917892, -0.01624710112810135, -0.04293791577219963, -0.04251718893647194, -0.026094112545251846, -0.041795216500759125, -0.01886938512325287, -0.032426994293928146, 0.0004114253679290414, 0.03525929898023605, 0.025597045198082924, -0.025768421590328217, 0.0077024488709867, -0.023045415058732033, 0.0038038843777030706, -0.002335955621674657, -0.02188338339328766, 0.029255613684654236, -0.041243262588977814, -0.06338059157133102, -0.037777189165353775, 0.002699051285162568, -0.028942205011844635, 0.021073028445243835, -0.03079264424741268, -0.003459847066551447, -0.01178979966789484, 0.0033352270256727934, -0.025980301201343536, 0.028191398829221725, 0.004735169932246208, -0.04583126679062843, 0.0346253365278244, 0.0485953651368618, -0.027677439153194427, 0.03500877320766449, 0.03026512823998928, -0.017399653792381287, 0.023187868297100067, -0.008386225439608097, -0.03422597423195839, -0.01960248127579689, 0.019083766266703606, 0.01025297213345766, 0.001037492766045034, -0.04851441830396652, -0.029392877593636513, 0.0009767231531441212, -0.027792980894446373, 0.027084626257419586, -0.026335744187235832, 0.021476471796631813, -0.009974588640034199, -0.01306568831205368, -0.006966977380216122, 0.05291737616062164, -0.01702585257589817, 0.020489584654569626, -0.019038386642932892, 0.019584687426686287, 0.009437501430511475, -0.031741272658109665, 0.03146078437566757, 0.0205756276845932, 0.018955109640955925, -0.03666871413588524, 0.009517339989542961, 0.018498213961720467, -0.01104650180786848, 0.009751340374350548, -0.007261424325406551, -0.03634561598300934, -0.03778347373008728, -0.011338736861944199, -0.008636167272925377, 0.03949447348713875, -0.004528256598860025, 0.020823631435632706, 0.026804625988006592, -0.0014772696886211634, -0.039335791021585464, -0.0017553858924657106, -0.05098738893866539, -0.026945123448967934, 0.021085625514388084, -0.016041360795497894, -0.0360562726855278, -0.016774524003267288, -0.05058247223496437, 0.00460756616666913, -0.0144699327647686, -0.01669009029865265, -0.022125350311398506, 0.012693153694272041, 0.01467809360474348, 0.028415413573384285, -0.035664524883031845, 0.0018354099011048675, 0.024315619841217995, 0.04528307542204857, -0.03966693580150604, -0.04325547441840172, -0.005222323350608349, 0.04645781219005585, -0.03618672490119934, -0.011911464855074883, -0.03929520025849342, 0.0069670481607317924, 0.021738214418292046, 0.02553642727434635, 0.009620447643101215, 0.01870919205248356, 0.014092753641307354, 0.04520731046795845, -0.01752130314707756, -0.0201383288949728, -0.02600017376244068, 0.017250243574380875, 0.022081395611166954, -0.0168263278901577, -0.03364267572760582, 0.046719908714294434, -0.0024365989957004786, -0.03316320478916168, 0.02796393446624279, 0.014593664556741714, 0.015880774706602097, -0.03845972567796707, 0.027679849416017532, 0.0015890616923570633, 0.033901963382959366, 0.03616108372807503, 0.0483541302382946, -0.01893843337893486, -0.002455608919262886, 0.04767732322216034, -0.004456220660358667, -0.01054478157311678, 0.014131332747638226, 0.008507494814693928, -0.019145632162690163, 0.009795328602194786, -0.034102994948625565, -0.0061307246796786785, 0.01604330912232399, -0.017721647396683693, -0.01800457388162613, -0.03849269822239876, -0.018527869135141373, -0.005752279423177242, -0.01437390223145485, 0.01823359727859497, -0.007295409217476845, 0.021070856600999832, 0.007632764521986246, -0.017253153026103973, 0.003742056665942073, 0.030113736167550087, 0.020746571943163872, 0.01097495760768652, 0.03691525757312775, 0.02083030715584755, -0.01980592869222164, 0.05526559427380562, 0.018782634288072586, 0.01837124489247799, -0.03901739418506622, 0.019711866974830627, -0.0020733268465846777, -0.037085242569446564, -0.03839164599776268, -0.0015161170158535242, -0.05141467973589897, 0.03397941216826439, -0.032570697367191315, -0.02549850009381771, 0.01005346979945898, -0.05567076429724693, 0.005703226197510958, -0.017886048182845116, 0.04015985503792763, -0.05877785384654999, -0.01262094546109438, 0.014136115089058876, -0.011896288022398949, -0.030819080770015717, 0.03685400262475014, -0.006705970037728548, 0.04403498396277428, 0.031449928879737854, 0.05678514391183853, 0.007462507113814354, 0.047182682901620865, 0.041356638073921204, -0.01666489616036415, -0.015562554821372032, 0.022211991250514984, -0.006861631292849779, -0.023171739652752876, -0.003712431062012911, -0.037895578891038895, -0.009776276536285877, 0.02893999218940735, 0.001696125604212284, -0.010947661474347115, 0.06029009446501732, -0.016104696318507195, -0.06694226711988449, -0.00005588523708865978, 0.008030211552977562, -0.013701283372938633, -0.008579796180129051, -0.00771377794444561, 0.05022827535867691, 0.0011421373346820474, -0.01428245473653078, -0.027939768508076668, -0.013931425288319588, 0.008880098350346088, -0.050806280225515366, 0.009941107593476772, -0.030478522181510925, -0.03398953005671501, -0.06405174732208252, -0.052218709141016006, -0.023053938522934914, -0.009998150169849396, -0.03132862597703934, -0.020983073860406876, 0.06251471489667892, 0.04891626164317131, 0.007361346390098333, -0.01229028683155775, -0.03250182792544365, 0.0067049176432192326, 0.047854889184236526, 0.04340800642967224, 0.013806266710162163, 0.054319992661476135, 0.04083313047885895, -0.024725470691919327, 0.007905449718236923, -0.01811736822128296, 0.03825030103325844, -0.024245696142315865, 0.018846025690436363, -0.03574848920106888, 0.009016464464366436, -0.02330009639263153, -0.042109422385692596, 0.0010574815096333623, 0.05196511372923851, -0.012265852652490139, 0.004297410137951374, -0.07254186272621155, -0.016973068937659264, -0.07855550944805145, 0.006336445454508066, -0.0535859689116478, 0.016056707128882408, 0.02212970331311226, -0.028457792475819588, -0.012492730282247066, -0.05193691700696945, 0.15093907713890076, 0.06142902374267578, 0.01472619827836752, 0.013450847007334232, 0.03298249468207359, 0.06793124973773956, -0.006108895875513554, -0.014202971011400223, 0.0028753429651260376, -0.0021062560845166445, 0.03366520628333092, -0.032246094197034836, 0.007693926803767681, -0.006469463463872671, 0.02113489992916584, 0.06434542685747147, -0.01059233769774437, 0.026221048086881638, 0.02964349091053009, -0.041695769876241684, -0.034505702555179596, 0.023366086184978485, 0.02976994216442108, 0.037254445254802704, -0.008203769102692604, 0.0068491180427372456, 0.017329521477222443, -0.0457940511405468, -0.004945581778883934, -0.03134773671627045, 0.026889611035585403, -0.023405781015753746, 0.03976484760642052, -0.011526951566338539, -0.014112384989857674, 0.044708505272865295, 0.028972307220101357, -0.0025691732298582792, 0.019962303340435028, -0.016205323860049248, -0.009457667358219624, -0.0017362660728394985, 0.021341340616345406, -0.039051227271556854, 0.011827463284134865, 0.011397709138691425, -0.019993025809526443, 0.031281303614377975, 0.02337048389017582, -0.037551265209913254, 0.06752531230449677, -0.032795947045087814, 0.01885443553328514, -0.011366776190698147, -0.04669037461280823, 0.02866840548813343, -0.001555371331050992, -0.031873296946287155, 0.01010715588927269, 0.016709649935364723, -0.0013374581467360258, 0.01840580813586712, -0.011245171539485455, 0.01831328310072422, -0.045394930988550186, 0.030823716893792152, 0.009192017838358879, 0.029525553807616234, 0.018122388049960136, -0.023291928693652153, -0.0184478759765625, 0.0010582931572571397, -0.03860291466116905, -0.01825745217502117, 0.01410047709941864, 0.02135230042040348, -0.026049640029668808, 0.0260956808924675, 0.021200543269515038, -0.020709382370114326, -0.037402912974357605, -0.04222258925437927, 0.024438364431262016, 0.029676403850317, 0.030202515423297882, 0.018097493797540665, -0.060615360736846924, -0.03963494673371315, -0.011310857720673084, 0.041308995336294174, 0.05650966241955757, 0.029062531888484955, -0.043422210961580276, 0.001057747402228415, -0.005288889165967703 ]