text
stringlengths
14
5.22M
embeddings
sequence
import java.util.ArrayList; import java.util.Iterator; import java.util.List; import java.util.Map; import bwapi.Pair; import bwapi.Position; import bwapi.Race; import bwapi.TechType; import bwapi.TilePosition; import bwapi.Unit; import bwapi.UnitCommand; import bwapi.UnitCommandType; import bwapi.UnitType; import bwapi.UpgradeType; import bwta.BWTA; import bwta.BaseLocation; import bwta.Chokepoint; import bwta.Region; /// ๋นŒ๋“œ(๊ฑด๋ฌผ ๊ฑด์„ค / ์œ ๋‹› ํ›ˆ๋ จ / ํ…Œํฌ ๋ฆฌ์„œ์น˜ / ์—…๊ทธ๋ ˆ์ด๋“œ) ๋ช…๋ น์„ ์ˆœ์ฐจ์ ์œผ๋กœ ์‹คํ–‰ํ•˜๊ธฐ ์œ„ํ•ด ๋นŒ๋“œ ํ๋ฅผ ๊ด€๋ฆฌํ•˜๊ณ , ๋นŒ๋“œ ํ์— ์žˆ๋Š” ๋ช…๋ น์„ ํ•˜๋‚˜์”ฉ ์‹คํ–‰ํ•˜๋Š” class<br> /// ๋นŒ๋“œ ๋ช…๋ น ์ค‘ ๊ฑด๋ฌผ ๊ฑด์„ค ๋ช…๋ น์€ ConstructionManager๋กœ ์ „๋‹ฌํ•ฉ๋‹ˆ๋‹ค /// @see ConstructionManager public class BuildManager { /// BuildOrderItem ๋“ค์˜ ๋ชฉ๋ก์„ ์ €์žฅํ•˜๋Š” buildQueue public BuildOrderQueue buildQueue = new BuildOrderQueue(); private static BuildManager instance = new BuildManager(); /// static singleton ๊ฐ์ฒด๋ฅผ ๋ฆฌํ„ดํ•ฉ๋‹ˆ๋‹ค public static BuildManager Instance() { return instance; } /// buildQueue ์— ๋Œ€ํ•ด Dead lock ์ด ์žˆ์œผ๋ฉด ์ œ๊ฑฐํ•˜๊ณ , ๊ฐ€์žฅ ์šฐ์„ ์ˆœ์œ„๊ฐ€ ๋†’์€ BuildOrderItem ๋ฅผ ์‹คํ–‰๋˜๋„๋ก ์‹œ๋„ํ•ฉ๋‹ˆ๋‹ค public void update() { // 1์ดˆ(24ํ”„๋ ˆ์ž„)์— 4๋ฒˆ ์ •๋„๋งŒ ์‹คํ–‰ํ•ด๋„ ์ถฉ๋ถ„ํ•˜๋‹ค if (MyBotModule.Broodwar.getFrameCount() % 6 != 0) return; if (buildQueue.isEmpty()) { return; } // Dead Lock ์„ ์ฒดํฌํ•ด์„œ ์ œ๊ฑฐํ•œ๋‹ค checkBuildOrderQueueDeadlockAndAndFixIt(); // Dead Lock ์ œ๊ฑฐํ›„ Empty ๋  ์ˆ˜ ์žˆ๋‹ค if (buildQueue.isEmpty()) { return; } // the current item to be used BuildOrderItem currentItem = buildQueue.getHighestPriorityItem(); //System.out.println("current HighestPriorityItem is " + currentItem.metaType.getName()); // while there is still something left in the buildQueue while (!buildQueue.isEmpty()) { boolean isOkToRemoveQueue = true; // BasicBot 1.1 Patch Start //////////////////////////////////////////////// // ๋นŒ๋“œ ์‹คํ–‰ ์œ ๋‹› (์ผ๊พผ/๊ฑด๋ฌผ) ๊ฒฐ์ • ๋กœ์ง์ด seedLocation ์ด๋‚˜ seedLocationStrategy ๋ฅผ ์ž˜ ๋ฐ˜์˜ํ•˜๋„๋ก ์ˆ˜์ • // seedPosition ์„ ๋„์ถœํ•œ๋‹ค Position seedPosition = null; if (currentItem.seedLocation != TilePosition.None && currentItem.seedLocation != TilePosition.Invalid && currentItem.seedLocation != TilePosition.Unknown && currentItem.seedLocation.isValid()) { seedPosition = currentItem.seedLocation.toPosition(); } else { seedPosition = getSeedPositionFromSeedLocationStrategy(currentItem.seedLocationStrategy); } // this is the unit which can produce the currentItem Unit producer = getProducer(currentItem.metaType, seedPosition, currentItem.producerID); // BasicBot 1.1 Patch End ////////////////////////////////////////////////// /* * if (currentItem.metaType.isUnit() && * currentItem.metaType.getUnitType().isBuilding()) { if (producer * != null) { System.out.println("Build " + * currentItem.metaType.getName() + " producer : " + * producer.getType() + " ID : " + producer.getID()); } else { * System.out.println("Build " + currentItem.metaType.getName() + * " producer null"); } } */ Unit secondProducer = null; boolean canMake = false; // ๊ฑด๋ฌผ์„ ๋งŒ๋“ค์ˆ˜ ์žˆ๋Š” ์œ ๋‹›(์ผ๊พผ)์ด๋‚˜, ์œ ๋‹›์„ ๋งŒ๋“ค์ˆ˜ ์žˆ๋Š” ์œ ๋‹›(๊ฑด๋ฌผ or ์œ ๋‹›)์ด ์žˆ์œผ๋ฉด if (producer != null) { // check to see if we can make it right now // ์ง€๊ธˆ ํ•ด๋‹น ์œ ๋‹›์„ ๊ฑด์„ค/์ƒ์‚ฐ ํ•  ์ˆ˜ ์žˆ๋Š”์ง€์— ๋Œ€ํ•ด ์ž์›, ์„œํ”Œ๋ผ์ด, ํ…Œํฌ ํŠธ๋ฆฌ, producer ๋งŒ์„ ๊ฐ–๊ณ  // ํŒ๋‹จํ•œ๋‹ค canMake = canMakeNow(producer, currentItem.metaType); /* * if (currentItem.metaType.isUnit() && * currentItem.metaType.getUnitType().isBuilding() ) { std::cout * + "Build " + currentItem.metaType.getName() + * " canMakeNow : " + canMake + std::endl; } */ // ํ”„๋กœํ† ์Šค ์ข…์กฑ ์œ ๋‹› ์ค‘ Protoss_Archon / Protoss_Dark_Archon ์€ ๊ธฐ์กด // Protoss_High_Templar / Protoss_Dark_Templar ๋‘ ์œ ๋‹›์„ ํ•ฉ์ฒด์‹œํ‚ค๋Š” ๊ธฐ์ˆ ์„ // ์จ์„œ ๋งŒ๋“ค๊ธฐ ๋•Œ๋ฌธ์— // secondProducer ์„ ์ถ”๊ฐ€๋กœ ์ฐพ์•„ ํ™•์ธํ•œ๋‹ค if (canMake) { if (currentItem.metaType.isUnit()) { if (currentItem.metaType.getUnitType() == UnitType.Protoss_Archon || currentItem.metaType.getUnitType() == UnitType.Protoss_Dark_Archon) { secondProducer = getAnotherProducer(producer, producer.getPosition()); if (secondProducer == null) { canMake = false; } } } } } // if we can make the current item, create it if (producer != null && canMake == true) { MetaType t = currentItem.metaType; if (t.isUnit()) { if (t.getUnitType().isBuilding()) { // ์ €๊ทธ ์ข…์กฑ ๊ฑด๋ฌผ ์ค‘ Zerg_Lair, Zerg_Hive, Zerg_Greater_Spire, // Zerg_Sunken_Colony, Zerg_Spore_Colony ๋Š” ๊ธฐ์กด ๊ฑด๋ฌผ์„ Morph // ์‹œ์ผœ ๋งŒ๋“ ๋‹ค // Morph๋ฅผ ์‹œ์ž‘ํ•˜๋ฉด isMorphing = true, isBeingConstructed = // true, isConstructing = true ๊ฐ€ ๋˜๊ณ  // ์™„์„ฑ๋˜๋ฉด isMorphing = false, isBeingConstructed = false, // isConstructing = false, isCompleted = true ๊ฐ€ ๋œ๋‹ค if (t.getUnitType().getRace() == Race.Zerg && t.getUnitType().whatBuilds().first.isBuilding()) { producer.morph(t.getUnitType()); } // ํ…Œ๋ž€ Addon ๊ฑด๋ฌผ์˜ ๊ฒฝ์šฐ (Addon ๊ฑด๋ฌผ์„ ์ง€์„์ˆ˜ ์žˆ๋Š”์ง€๋Š” getProducer ํ•จ์ˆ˜์—์„œ // ์ด๋ฏธ ์ฒดํฌ์™„๋ฃŒ) // ๋ชจ๊ฑด๋ฌผ์ด Addon ๊ฑด๋ฌผ ์ง“๊ธฐ ์ „์—๋Š” canBuildAddon = true, // isConstructing = false, canCommand = true ์ด๋‹ค๊ฐ€ // Addon ๊ฑด๋ฌผ์„ ์ง“๊ธฐ ์‹œ์ž‘ํ•˜๋ฉด canBuildAddon = false, // isConstructing = true, canCommand = true ๊ฐ€ ๋˜๊ณ  (Addon // ๊ฑด๋ฌผ ๊ฑด์„ค ์ทจ์†Œ๋Š” ๊ฐ€๋Šฅํ•˜๋‚˜ Train ๋“ฑ ์ปค๋งจ๋“œ๋Š” ๋ถˆ๊ฐ€๋Šฅ) // ์™„์„ฑ๋˜๋ฉด canBuildAddon = false, isConstructing = false ๊ฐ€ // ๋œ๋‹ค else if (t.getUnitType().isAddon()) { // std::cout + "addon build start " + std::endl; producer.buildAddon(t.getUnitType()); // ํ…Œ๋ž€ Addon ๊ฑด๋ฌผ์˜ ๊ฒฝ์šฐ ์ •์ƒ์ ์œผ๋กœ buildAddon ๋ช…๋ น์„ ๋‚ด๋ ค๋„ SCV๊ฐ€ ๋ชจ๊ฑด๋ฌผ // ๊ทผ์ฒ˜์— ์žˆ์„ ๋•Œ ํ•œ๋™์•ˆ buildAddon ๋ช…๋ น์ด ์ทจ์†Œ๋˜๋Š” ๊ฒฝ์šฐ๊ฐ€ ์žˆ์–ด์„œ // ๋ชจ๊ฑด๋ฌผ์ด isConstructing = true ์ƒํƒœ๋กœ ๋ฐ”๋€ ๊ฒƒ์„ ํ™•์ธํ•œ ํ›„ // buildQueue ์—์„œ ์ œ๊ฑฐํ•ด์•ผํ•œ๋‹ค if (producer.isConstructing() == false) { isOkToRemoveQueue = false; } // std::cout + "8"; } // ๊ทธ์™ธ ๋Œ€๋ถ€๋ถ„ ๊ฑด๋ฌผ์˜ ๊ฒฝ์šฐ else { // ConstructionPlaceFinder ๋ฅผ ํ†ตํ•ด ๊ฑด์„ค ๊ฐ€๋Šฅ ์œ„์น˜ // desiredPosition ๋ฅผ ์•Œ์•„๋‚ด์„œ // ConstructionManager ์˜ ConstructionTask Queue์— ์ถ”๊ฐ€๋ฅผ // ํ•ด์„œ desiredPosition ์— ๊ฑด์„ค์„ ํ•˜๊ฒŒ ํ•œ๋‹ค. // ConstructionManager ๊ฐ€ ๊ฑด์„ค ๋„์ค‘์— ํ•ด๋‹น ์œ„์น˜์— ๊ฑด์„ค์ด ์–ด๋ ค์›Œ์ง€๋ฉด ๋‹ค์‹œ // ConstructionPlaceFinder ๋ฅผ ํ†ตํ•ด ๊ฑด์„ค ๊ฐ€๋Šฅ ์œ„์น˜๋ฅผ // desiredPosition ์ฃผ์œ„์—์„œ ์ฐพ์„ ๊ฒƒ์ด๋‹ค TilePosition desiredPosition = getDesiredPosition(t.getUnitType(), currentItem.seedLocation, currentItem.seedLocationStrategy); //System.out.println("BuildManager " + currentItem.metaType.getUnitType().toString() // + " desiredPosition " + desiredPosition.getX() + "," + desiredPosition.getY()); if (desiredPosition != TilePosition.None) { // Send the construction task to the // construction manager ConstructionManager.Instance().addConstructionTask(t.getUnitType(), desiredPosition); } else { // ๊ฑด๋ฌผ ๊ฐ€๋Šฅ ์œ„์น˜๊ฐ€ ์—†๋Š” ๊ฒฝ์šฐ๋Š”, Protoss_Pylon ๊ฐ€ ์—†๊ฑฐ๋‚˜, Creep // ์ด ์—†๊ฑฐ๋‚˜, Refinery ๊ฐ€ ์ด๋ฏธ ๋‹ค ์ง€์–ด์ ธ์žˆ๊ฑฐ๋‚˜, ์ •๋ง ์ง€์„ ๊ณต๊ฐ„์ด ์ฃผ์œ„์— // ์—†๋Š” ๊ฒฝ์šฐ์ธ๋ฐ, // ๋Œ€๋ถ€๋ถ„์˜ ๊ฒฝ์šฐ Pylon ์ด๋‚˜ Hatchery๊ฐ€ ์ง€์–ด์ง€๊ณ  ์žˆ๋Š” ์ค‘์ด๋ฏ€๋กœ, ๋‹ค์Œ // frame ์— ๊ฑด๋ฌผ ์ง€์„ ๊ณต๊ฐ„์„ ๋‹ค์‹œ ํƒ์ƒ‰ํ•˜๋„๋ก ํ•œ๋‹ค. System.out.print( "There is no place to construct " + currentItem.metaType.getUnitType() + " strategy " + currentItem.seedLocationStrategy); if (currentItem.seedLocation != null) System.out.print(" seedPosition " + currentItem.seedLocation.getX() + "," + currentItem.seedLocation.getY()); if (desiredPosition != null) System.out.print(" desiredPosition " + desiredPosition.getX() + "," + desiredPosition.getY()); isOkToRemoveQueue = false; } } } // ์ง€์ƒ์œ ๋‹› / ๊ณต์ค‘์œ ๋‹›์˜ ๊ฒฝ์šฐ else { // ์ €๊ทธ ์ง€์ƒ์œ ๋‹› / ๊ณต์ค‘์œ ๋‹› if (t.getUnitType().getRace() == Race.Zerg) { // ์ €๊ทธ ์ข…์กฑ ์œ ๋‹›์˜ ๊ฑฐ์˜ ๋Œ€๋ถ€๋ถ„์€ Morph ์‹œ์ผœ ๋งŒ๋“ ๋‹ค if (t.getUnitType() != UnitType.Zerg_Infested_Terran) { producer.morph(t.getUnitType()); } // ์ €๊ทธ ์ข…์กฑ ์œ ๋‹› ์ค‘ Zerg_Infested_Terran ์€ Train ์‹œ์ผœ ๋งŒ๋“ ๋‹ค else { producer.train(t.getUnitType()); } } // ํ”„๋กœํ† ์Šค ์ง€์ƒ์œ ๋‹› / ๊ณต์ค‘์œ ๋‹› else if (t.getUnitType().getRace() == Race.Protoss) { // ํ”„๋กœํ† ์Šค ์ข…์กฑ ์œ ๋‹› ์ค‘ Protoss_Archon ์€ ๊ธฐ์กด // Protoss_High_Templar ๋‘ ์œ ๋‹›์„ ํ•ฉ์ฒด์‹œํ‚ค๋Š” ๊ธฐ์ˆ ์„ ์จ์„œ ๋งŒ๋“ ๋‹ค if (t.getUnitType() == UnitType.Protoss_Archon) { producer.useTech(TechType.Archon_Warp, secondProducer); } // ํ”„๋กœํ† ์Šค ์ข…์กฑ ์œ ๋‹› ์ค‘ Protoss_Dark_Archon ์€ ๊ธฐ์กด // Protoss_Dark_Templar ๋‘ ์œ ๋‹›์„ ํ•ฉ์ฒด์‹œํ‚ค๋Š” ๊ธฐ์ˆ ์„ ์จ์„œ ๋งŒ๋“ ๋‹ค else if (t.getUnitType() == UnitType.Protoss_Dark_Archon) { producer.useTech(TechType.Dark_Archon_Meld, secondProducer); } else { producer.train(t.getUnitType()); } } // ํ…Œ๋ž€ ์ง€์ƒ์œ ๋‹› / ๊ณต์ค‘์œ ๋‹› else { producer.train(t.getUnitType()); } } } // if we're dealing with a tech research else if (t.isTech()) { producer.research(t.getTechType()); } else if (t.isUpgrade()) { producer.upgrade(t.getUpgradeType()); } //System.out.println(" build " + t.getName() + " started "); // remove it from the buildQueue if (isOkToRemoveQueue) { buildQueue.removeCurrentItem(); } // don't actually loop around in here break; } // otherwise, if we can skip the current item else if (buildQueue.canSkipCurrentItem()) { // skip it and get the next one buildQueue.skipCurrentItem(); currentItem = buildQueue.getNextItem(); } else { // so break out break; } } } /// ํ•ด๋‹น MetaType ์„ build ํ•  ์ˆ˜ ์žˆ๋Š” producer ๋ฅผ ์ฐพ์•„ ๋ฐ˜ํ™˜ํ•ฉ๋‹ˆ๋‹ค /// @param t ๋นŒ๋“œํ•˜๋ ค๋Š” ๋Œ€์ƒ์˜ ํƒ€์ž… /// @param closestTo ํŒŒ๋ผ๋ฉ”ํƒ€ ์ž…๋ ฅ ์‹œ producer ํ›„๋ณด๋“ค ์ค‘ ํ•ด๋‹น position ์—์„œ ๊ฐ€์žฅ ๊ฐ€๊นŒ์šด producer ๋ฅผ ๋ฆฌํ„ดํ•ฉ๋‹ˆ๋‹ค /// @param producerID ํŒŒ๋ผ๋ฉ”ํƒ€ ์ž…๋ ฅ ์‹œ ํ•ด๋‹น ID์˜ unit ๋งŒ producer ํ›„๋ณด๊ฐ€ ๋  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค public Unit getProducer(MetaType t, Position closestTo, int producerID) { // get the type of unit that builds this UnitType producerType = t.whatBuilds(); // make a set of all candidate producers List<Unit> candidateProducers = new ArrayList<Unit>(); for (Unit unit : MyBotModule.Broodwar.self().getUnits()) { if (unit == null) continue; // reasons a unit can not train the desired type if (unit.getType() != producerType) { continue; } if (!unit.exists()) { continue; } if (!unit.isCompleted()) { continue; } if (unit.isTraining()) { continue; } if (!unit.isPowered()) { continue; } // if unit is lifted, unit should land first if (unit.isLifted()) { continue; } if (producerID != -1 && unit.getID() != producerID) { continue; } if (t.isUnit()) { // if the type requires an addon and the producer doesn't have // one // C++ : typedef std::pair<BWAPI::UnitType, int> ReqPair; Pair<UnitType, Integer> ReqPair = null; Map<UnitType, Integer> requiredUnitsMap = t.getUnitType().requiredUnits(); if (requiredUnitsMap != null) { Iterator<UnitType> it = requiredUnitsMap.keySet().iterator(); // for (final Pair<UnitType, Integer> pair : // t.getUnitType().requiredUnits()) while (it.hasNext()) { UnitType requiredType = it.next(); if (requiredType.isAddon()) { if (unit.getAddon() == null || (unit.getAddon().getType() != requiredType)) { continue; } } } } // if the type is an addon if (t.getUnitType().isAddon()) { // if the unit already has an addon, it can't make one if (unit.getAddon() != null) { continue; } // ๋ชจ๊ฑด๋ฌผ์€ ๊ฑด์„ค๋˜๊ณ  ์žˆ๋Š” ์ค‘์—๋Š” isCompleted = false, isConstructing = // true, canBuildAddon = false ์ด๋‹ค๊ฐ€ // ๊ฑด์„ค์ด ์™„์„ฑ๋œ ํ›„ ๋ช‡ ํ”„๋ ˆ์ž„๋™์•ˆ์€ isCompleted = true ์ด์ง€๋งŒ, canBuildAddon // = false ์ธ ๊ฒฝ์šฐ๊ฐ€ ์žˆ๋‹ค if (!unit.canBuildAddon()) { continue; } // if we just told this unit to build an addon, then it will // not be building another one // this deals with the frame-delay of telling a unit to // build an addon and it actually starting to build if (unit.getLastCommand().getUnitCommandType() == UnitCommandType.Build_Addon // C++ // : // unit.getLastCommand().getType() && (MyBotModule.Broodwar.getFrameCount() - unit.getLastCommandFrame() < 10)) { continue; } boolean isBlocked = false; // if the unit doesn't have space to build an addon, it // can't make one TilePosition addonPosition = new TilePosition( unit.getTilePosition().getX() + unit.getType().tileWidth(), unit.getTilePosition().getY() + unit.getType().tileHeight() - t.getUnitType().tileHeight()); for (int i = 0; i < t.getUnitType().tileWidth(); ++i) { for (int j = 0; j < t.getUnitType().tileHeight(); ++j) { TilePosition tilePos = new TilePosition(addonPosition.getX() + i, addonPosition.getY() + j); // if the map won't let you build here, we can't // build it. // ๋งต ํƒ€์ผ ์ž์ฒด๊ฐ€ ๊ฑด์„ค ๋ถˆ๊ฐ€๋Šฅํ•œ ํƒ€์ผ์ธ ๊ฒฝ์šฐ + ๊ธฐ์กด ๊ฑด๋ฌผ์ด ํ•ด๋‹น ํƒ€์ผ์— ์ด๋ฏธ ์žˆ๋Š”๊ฒฝ์šฐ if (!MyBotModule.Broodwar.isBuildable(tilePos, true)) { isBlocked = true; } // if there are any units on the addon tile, we // can't build it // ์•„๊ตฐ ์œ ๋‹›์€ Addon ์ง€์„ ์œ„์น˜์— ์žˆ์–ด๋„ ๊ดœ์ฐฎ์Œ. (์ ๊ตฐ ์œ ๋‹›์€ Addon ์ง€์„ ์œ„์น˜์— // ์žˆ์œผ๋ฉด ๊ฑด์„ค ์•ˆ๋˜๋Š”์ง€๋Š” ์•„์ง ๋ถˆํ™•์‹คํ•จ) for (Unit u : MyBotModule.Broodwar.getUnitsOnTile(tilePos.getX(), tilePos.getY())) { //System.out.println("Construct " + t.getName() + " beside " + unit.getType() + "(" // + unit.getID() + ")" + ", units on Addon Tile " + tilePos.getX() + "," // + tilePos.getY() + " is " + u.getType() + "(ID : " + u.getID() + " Player : " // + u.getPlayer().getName() + ")"); if (u.getPlayer() != InformationManager.Instance().selfPlayer) { isBlocked = false; } } } } if (isBlocked) { continue; } } } // if we haven't cut it, add it to the set of candidates candidateProducers.add(unit); // C++ : // candidateProducers.insert(unit); } return getClosestUnitToPosition(candidateProducers, closestTo); } /// ํ•ด๋‹น MetaType ์„ build ํ•  ์ˆ˜ ์žˆ๋Š” producer ๋ฅผ ์ฐพ์•„ ๋ฐ˜ํ™˜ํ•ฉ๋‹ˆ๋‹ค public Unit getProducer(MetaType t, Position closestTo) { return getProducer(t, closestTo, -1); } /// ํ•ด๋‹น MetaType ์„ build ํ•  ์ˆ˜ ์žˆ๋Š” producer ๋ฅผ ์ฐพ์•„ ๋ฐ˜ํ™˜ํ•ฉ๋‹ˆ๋‹ค public Unit getProducer(MetaType t) { return getProducer(t, Position.None, -1); } /// ํ•ด๋‹น MetaType ์„ build ํ•  ์ˆ˜ ์žˆ๋Š”, getProducer ๋ฆฌํ„ด๊ฐ’๊ณผ ๋‹ค๋ฅธ producer ๋ฅผ ์ฐพ์•„ ๋ฐ˜ํ™˜ํ•ฉ๋‹ˆ๋‹ค<br> /// ํ”„๋กœํ† ์Šค ์ข…์กฑ ์œ ๋‹› ์ค‘ Protoss_Archon / Protoss_Dark_Archon ์„ ๋นŒ๋“œํ•  ๋•Œ ์‚ฌ์šฉํ•ฉ๋‹ˆ๋‹ค public Unit getAnotherProducer(Unit producer, Position closestTo) { if (producer == null) return null; Unit closestUnit = null; List<Unit> candidateProducers = new ArrayList<Unit>(); for (Unit unit : MyBotModule.Broodwar.self().getUnits()) { if (unit == null) { continue; } if (unit.getType() != producer.getType()) { continue; } if (unit.getID() == producer.getID()) { continue; } if (!unit.isCompleted()) { continue; } if (unit.isTraining()) { continue; } if (!unit.exists()) { continue; } if (unit.getHitPoints() + unit.getEnergy() <= 0) { continue; } candidateProducers.add(unit); // C++ : // candidateProducers.insert(unit); } return getClosestUnitToPosition(candidateProducers, closestTo); } public Unit getClosestUnitToPosition(final List<Unit> units, Position closestTo) { if (units.size() == 0) { return null; } // BasicBot 1.1 Patch Start //////////////////////////////////////////////// // ๋นŒ๋“œ ์‹คํ–‰ ์œ ๋‹› (์ผ๊พผ/๊ฑด๋ฌผ) ๊ฒฐ์ • ๋กœ์ง์ด seedLocation ์ด๋‚˜ seedLocationStrategy ๋ฅผ ์ž˜ ๋ฐ˜์˜ํ•˜๋„๋ก ์ˆ˜์ • // if we don't care where the unit is return the first one we have if (closestTo == Position.None || closestTo == Position.Invalid || closestTo == Position.Unknown || closestTo.isValid() == false) { return units.get(0); // C++ : return units.begin(); } // BasicBot 1.1 Patch End ////////////////////////////////////////////////// Unit closestUnit = null; double minDist = 1000000000; for (Unit unit : units) { if (unit == null) continue; double distance = unit.getDistance(closestTo); if (closestUnit == null || distance < minDist) { closestUnit = unit; minDist = distance; } } return closestUnit; } // ์ง€๊ธˆ ํ•ด๋‹น ์œ ๋‹›์„ ๊ฑด์„ค/์ƒ์‚ฐ ํ•  ์ˆ˜ ์žˆ๋Š”์ง€์— ๋Œ€ํ•ด ์ž์›, ์„œํ”Œ๋ผ์ด, ํ…Œํฌ ํŠธ๋ฆฌ, producer ๋งŒ์„ ๊ฐ–๊ณ  ํŒ๋‹จํ•œ๋‹ค<br> // ํ•ด๋‹น ์œ ๋‹›์ด ๊ฑด๋ฌผ์ผ ๊ฒฝ์šฐ ๊ฑด๋ฌผ ์ง€์„ ์œ„์น˜์˜ ์ ์ ˆ ์—ฌ๋ถ€ (ํƒ์ƒ‰ํ–ˆ์—ˆ๋˜ ํƒ€์ผ์ธ์ง€, ๊ฑด์„ค ๊ฐ€๋Šฅํ•œ ํƒ€์ผ์ธ์ง€, ์ฃผ์œ„์— Pylon์ด ์žˆ๋Š”์ง€,<br> // Creep์ด ์žˆ๋Š” ๊ณณ์ธ์ง€ ๋“ฑ) ๋Š” ํŒ๋‹จํ•˜์ง€ ์•Š๋Š”๋‹ค public boolean canMakeNow(Unit producer, MetaType t) { if (producer == null) { return false; } boolean canMake = hasEnoughResources(t); if (canMake) { if (t.isUnit()) { // MyBotModule.Broodwar.canMake : Checks all the requirements // include resources, supply, technology tree, availability, and // required units canMake = MyBotModule.Broodwar.canMake(t.getUnitType(), producer); } else if (t.isTech()) { canMake = MyBotModule.Broodwar.canResearch(t.getTechType(), producer); } else if (t.isUpgrade()) { canMake = MyBotModule.Broodwar.canUpgrade(t.getUpgradeType(), producer); } } return canMake; } // ๊ฑด์„ค ๊ฐ€๋Šฅ ์œ„์น˜๋ฅผ ์ฐพ๋Š”๋‹ค<br> // seedLocationStrategy ๊ฐ€ SeedPositionSpecified ์ธ ๊ฒฝ์šฐ์—๋Š” ๊ทธ ๊ทผ์ฒ˜๋งŒ ์ฐพ์•„๋ณด๊ณ ,<br> // SeedPositionSpecified ์ด ์•„๋‹Œ ๊ฒฝ์šฐ์—๋Š” seedLocationStrategy ๋ฅผ ์กฐ๊ธˆ์”ฉ ๋ฐ”๊ฟ”๊ฐ€๋ฉฐ ๊ณ„์† ์ฐพ์•„๋ณธ๋‹ค.<br> // (MainBase . MainBase ์ฃผ์œ„ . MainBase ๊ธธ๋ชฉ . MainBase ๊ฐ€๊นŒ์šด ์•ž๋งˆ๋‹น . MainBase ๊ฐ€๊นŒ์šด ์•ž๋งˆ๋‹น์˜ ๊ธธ๋ชฉ . ํƒ์ƒ‰ ์ข…๋ฃŒ) public TilePosition getDesiredPosition(UnitType unitType, TilePosition seedPosition, BuildOrderItem.SeedPositionStrategy seedPositionStrategy) { TilePosition desiredPosition = ConstructionPlaceFinder.Instance() .getBuildLocationWithSeedPositionAndStrategy(unitType, seedPosition, seedPositionStrategy); /* * std::cout + * "ConstructionPlaceFinder getBuildLocationWithSeedPositionAndStrategy " * + unitType.getName().c_str() + " strategy " + seedPositionStrategy + * " seedPosition " + seedPosition.x + "," + seedPosition.y + * " desiredPosition " + desiredPosition.x + "," + desiredPosition.y + * std::endl; */ // desiredPosition ์„ ์ฐพ์„ ์ˆ˜ ์—†๋Š” ๊ฒฝ์šฐ boolean findAnotherPlace = true; while (desiredPosition == TilePosition.None) { switch (seedPositionStrategy) { case MainBaseLocation: seedPositionStrategy = BuildOrderItem.SeedPositionStrategy.MainBaseBackYard; break; case MainBaseBackYard: seedPositionStrategy = BuildOrderItem.SeedPositionStrategy.FirstChokePoint; break; case FirstChokePoint: seedPositionStrategy = BuildOrderItem.SeedPositionStrategy.FirstExpansionLocation; break; case FirstExpansionLocation: seedPositionStrategy = BuildOrderItem.SeedPositionStrategy.SecondChokePoint; break; case SecondChokePoint: case SeedPositionSpecified: default: findAnotherPlace = false; break; } // ๋‹ค๋ฅธ ๊ณณ์„ ๋” ์ฐพ์•„๋ณธ๋‹ค if (findAnotherPlace) { desiredPosition = ConstructionPlaceFinder.Instance() .getBuildLocationWithSeedPositionAndStrategy(unitType, seedPosition, seedPositionStrategy); /* * std::cout + * "ConstructionPlaceFinder getBuildLocationWithSeedPositionAndStrategy " * + unitType.getName().c_str() + " strategy " + * seedPositionStrategy + " seedPosition " + seedPosition.x + * "," + seedPosition.y + " desiredPosition " + * desiredPosition.x + "," + desiredPosition.y + std::endl; */ } // ๋‹ค๋ฅธ ๊ณณ์„ ๋” ์ฐพ์•„๋ณด์ง€ ์•Š๊ณ , ๋๋‚ธ๋‹ค else { break; } } return desiredPosition; } // ์‚ฌ์šฉ๊ฐ€๋Šฅ ๋ฏธ๋„ค๋ž„ = ํ˜„์žฌ ๋ณด์œ  ๋ฏธ๋„ค๋ž„ - ์‚ฌ์šฉํ•˜๊ธฐ๋กœ ์˜ˆ์•ฝ๋˜์–ด์žˆ๋Š” ๋ฏธ๋„ค๋ž„ public int getAvailableMinerals() { return MyBotModule.Broodwar.self().minerals() - ConstructionManager.Instance().getReservedMinerals(); } // ์‚ฌ์šฉ๊ฐ€๋Šฅ ๊ฐ€์Šค = ํ˜„์žฌ ๋ณด์œ  ๊ฐ€์Šค - ์‚ฌ์šฉํ•˜๊ธฐ๋กœ ์˜ˆ์•ฝ๋˜์–ด์žˆ๋Š” ๊ฐ€์Šค public int getAvailableGas() { return MyBotModule.Broodwar.self().gas() - ConstructionManager.Instance().getReservedGas(); } // return whether or not we meet resources, including building reserves public boolean hasEnoughResources(MetaType type) { // return whether or not we meet the resources return (type.mineralPrice() <= getAvailableMinerals()) && (type.gasPrice() <= getAvailableGas()); } // selects a unit of a given type public Unit selectUnitOfType(UnitType type, Position closestTo) { // if we have none of the unit type, return null right away if (MyBotModule.Broodwar.self().completedUnitCount(type) == 0) { return null; } Unit unit = null; // if we are concerned about the position of the unit, that takes // priority if (closestTo != Position.None) { double minDist = 1000000000; for (Unit u : MyBotModule.Broodwar.self().getUnits()) { if (u.getType() == type) { double distance = u.getDistance(closestTo); if (unit == null || distance < minDist) { unit = u; minDist = distance; } } } // if it is a building and we are worried about selecting the unit // with the least // amount of training time remaining } else if (type.isBuilding()) { for (Unit u : MyBotModule.Broodwar.self().getUnits()) { if (u.getType() == type && u.isCompleted() && !u.isTraining() && !u.isLifted() && u.isPowered()) { return u; } } // otherwise just return the first unit we come across } else { for (Unit u : MyBotModule.Broodwar.self().getUnits()) { if (u.getType() == type && u.isCompleted() && u.getHitPoints() > 0 && !u.isLifted() && u.isPowered()) { return u; } } } // return what we've found so far return null; } /// BuildOrderItem ๋“ค์˜ ๋ชฉ๋ก์„ ์ €์žฅํ•˜๋Š” buildQueue ๋ฅผ ๋ฆฌํ„ดํ•ฉ๋‹ˆ๋‹ค public BuildOrderQueue getBuildQueue() { return buildQueue; } /// seedPositionStrategy ์„ ํ˜„์žฌ ๊ฒŒ์ž„์ƒํ™ฉ์— ๋งž๊ฒŒ seedPosition ์œผ๋กœ ๋ฐ”๊พธ์–ด ๋ฆฌํ„ดํ•ฉ๋‹ˆ๋‹ค private Position getSeedPositionFromSeedLocationStrategy(BuildOrderItem.SeedPositionStrategy seedLocationStrategy) { // BasicBot 1.1 Patch Start //////////////////////////////////////////////// // ๋นŒ๋“œ ์‹คํ–‰ ์œ ๋‹› (์ผ๊พผ/๊ฑด๋ฌผ) ๊ฒฐ์ • ๋กœ์ง์ด seedLocation ์ด๋‚˜ seedLocationStrategy ๋ฅผ ์ž˜ ๋ฐ˜์˜ํ•˜๋„๋ก ์ˆ˜์ • Position seedPosition = null; Chokepoint tempChokePoint; BaseLocation tempBaseLocation; TilePosition tempTilePosition = null; Region tempBaseRegion; int vx, vy; double d, theta; int bx, by; switch (seedLocationStrategy) { case MainBaseLocation: tempBaseLocation = InformationManager.Instance().getMainBaseLocation(MyBotModule.Broodwar.self()); if (tempBaseLocation != null) { seedPosition = tempBaseLocation.getPosition(); } break; case MainBaseBackYard: tempBaseLocation = InformationManager.Instance().getMainBaseLocation(MyBotModule.Broodwar.self()); tempChokePoint = InformationManager.Instance().getFirstChokePoint(MyBotModule.Broodwar.self()); tempBaseRegion = BWTA.getRegion(tempBaseLocation.getPosition()); //std::cout << "y"; // (vx, vy) = BaseLocation ์™€ ChokePoint ๊ฐ„ ์ฐจ์ด ๋ฒกํ„ฐ = ๊ฑฐ๋ฆฌ d ์™€ ๊ฐ๋„ t ๋ฒกํ„ฐ. ๋‹จ์œ„๋Š” position // ์Šคํƒ€ํฌ๋ž˜ํ”„ํŠธ ์ขŒํ‘œ๊ณ„ : ์˜ค๋ฅธ์ชฝ์œผ๋กœ ๊ฐˆ์ˆ˜๋ก x ๊ฐ€ ์ฆ๊ฐ€ (๋ฐ์นด๋ฅดํŠธ ์ขŒํ‘œ๊ณ„์™€ ๋™์ผ). ์•„๋ž˜๋กœ ๊ฐˆ์ˆ˜๋ก y๊ฐ€ ์ฆ๊ฐ€ (y์ถ•๋งŒ ๋ฐ์นด๋ฅดํŠธ ์ขŒํ‘œ๊ณ„์™€ ๋ฐ˜๋Œ€) // ์‚ผ๊ฐํ•จ์ˆ˜ ๊ฐ’์€ ๋ฐ์นด๋ฅดํŠธ ์ขŒํ‘œ๊ณ„์—์„œ ๊ณ„์‚ฐํ•˜๋ฏ€๋กœ, vy๋ฅผ ๋ถ€ํ˜ธ ๋ฐ˜๋Œ€๋กœ ํ•ด์„œ ๊ฐ๋„ t ๊ฐ’์„ ๊ตฌํ•จ // MainBaseLocation ์ด null ์ด๊ฑฐ๋‚˜, ChokePoint ๊ฐ€ null ์ด๋ฉด, MainBaseLocation ์ฃผ์œ„์—์„œ ๊ฐ€๋Šฅํ•œ ๊ณณ์„ ๋ฆฌํ„ดํ•œ๋‹ค if (tempBaseLocation != null && tempChokePoint != null) { // BaseLocation ์—์„œ ChokePoint ๋กœ์˜ ๋ฒกํ„ฐ๋ฅผ ๊ตฌํ•œ๋‹ค vx = tempChokePoint.getCenter().getX() - tempBaseLocation.getPosition().getX(); //std::cout << "vx : " << vx ; vy = (tempChokePoint.getCenter().getY() - tempBaseLocation.getPosition().getY()) * (-1); //std::cout << "vy : " << vy; d = Math.sqrt(vx * vx + vy * vy) * 0.5; // BaseLocation ์™€ ChokePoint ๊ฐ„ ๊ฑฐ๋ฆฌ๋ณด๋‹ค ์กฐ๊ธˆ ์งง์€ ๊ฑฐ๋ฆฌ๋กœ ์กฐ์ •. BaseLocation๊ฐ€ ์žˆ๋Š” Region์€ ๋Œ€๋ถ€๋ถ„ ์ง์‚ฌ๊ฐํ˜• ํ˜•ํƒœ์ด๊ธฐ ๋•Œ๋ฌธ //std::cout << "d : " << d; theta = Math.atan2(vy, vx + 0.0001); // ๋ผ๋””์•ˆ ๋‹จ์œ„ //std::cout << "t : " << t; // cos(t+90), sin(t+180) ๋“ฑ ์‚ผ๊ฐํ•จ์ˆ˜ Trigonometric functions of allied angles ์„ ์ด์šฉ. y์ถ•์— ๋Œ€ํ•ด์„œ๋Š” ๋ฐ˜๋Œ€๋ถ€ํ˜ธ๋กœ ์ ์šฉ // BaseLocation ์—์„œ ChokePoint ๋ฐ˜๋Œ€์ชฝ ๋ฐฉํ–ฅ์˜ Back Yard : ๋ฐ์นด๋ฅดํŠธ ์ขŒํ‘œ๊ณ„์—์„œ (cos(t+180) = -cos(t), sin(t+180) = -sin(t)) bx = tempBaseLocation.getTilePosition().getX() - (int)(d * Math.cos(theta) / Config.TILE_SIZE); by = tempBaseLocation.getTilePosition().getY() + (int)(d * Math.sin(theta) / Config.TILE_SIZE); //std::cout << "i"; tempTilePosition = new TilePosition(bx, by); // std::cout << "ConstructionPlaceFinder MainBaseBackYard tempTilePosition " << tempTilePosition.x << "," << tempTilePosition.y << std::endl; //std::cout << "k"; // ํ•ด๋‹น ์ง€์ ์ด ๊ฐ™์€ Region ์— ์†ํ•˜๊ณ  Buildable ํ•œ ํƒ€์ผ์ธ์ง€ ํ™•์ธ if (!tempTilePosition.isValid() || !MyBotModule.Broodwar.isBuildable(tempTilePosition.getX(), tempTilePosition.getY(), false) || tempBaseRegion != BWTA.getRegion(new Position(bx*Config.TILE_SIZE, by*Config.TILE_SIZE))) { //std::cout << "l"; // BaseLocation ์—์„œ ChokePoint ๋ฐฉํ–ฅ์— ๋Œ€ํ•ด ์˜ค๋ฅธ์ชฝ์œผ๋กœ 90๋„ ๊บพ์€ ๋ฐฉํ–ฅ์˜ Back Yard : ๋ฐ์นด๋ฅดํŠธ ์ขŒํ‘œ๊ณ„์—์„œ (cos(t-90) = sin(t), sin(t-90) = - cos(t)) bx = tempBaseLocation.getTilePosition().getX() + (int)(d * Math.sin(theta) / Config.TILE_SIZE); by = tempBaseLocation.getTilePosition().getY() + (int)(d * Math.cos(theta) / Config.TILE_SIZE); tempTilePosition = new TilePosition(bx, by); // std::cout << "ConstructionPlaceFinder MainBaseBackYard tempTilePosition " << tempTilePosition.x << "," << tempTilePosition.y << std::endl; //std::cout << "m"; if (!tempTilePosition.isValid() || !MyBotModule.Broodwar.isBuildable(tempTilePosition.getX(), tempTilePosition.getY(), false)) { // BaseLocation ์—์„œ ChokePoint ๋ฐฉํ–ฅ์— ๋Œ€ํ•ด ์™ผ์ชฝ์œผ๋กœ 90๋„ ๊บพ์€ ๋ฐฉํ–ฅ์˜ Back Yard : ๋ฐ์นด๋ฅดํŠธ ์ขŒํ‘œ๊ณ„์—์„œ (cos(t+90) = -sin(t), sin(t+90) = cos(t)) bx = tempBaseLocation.getTilePosition().getX() - (int)(d * Math.sin(theta) / Config.TILE_SIZE); by = tempBaseLocation.getTilePosition().getY() - (int)(d * Math.cos(theta) / Config.TILE_SIZE); tempTilePosition = new TilePosition(bx, by); // std::cout << "ConstructionPlaceFinder MainBaseBackYard tempTilePosition " << tempTilePosition.x << "," << tempTilePosition.y << std::endl; if (!tempTilePosition.isValid() || !MyBotModule.Broodwar.isBuildable(tempTilePosition.getX(), tempTilePosition.getY(), false) || tempBaseRegion != BWTA.getRegion(new Position(bx*Config.TILE_SIZE, by*Config.TILE_SIZE))) { // BaseLocation ์—์„œ ChokePoint ๋ฐฉํ–ฅ ์ ˆ๋ฐ˜ ์ง€์ ์˜ Back Yard : ๋ฐ์นด๋ฅดํŠธ ์ขŒํ‘œ๊ณ„์—์„œ (cos(t), sin(t)) bx = tempBaseLocation.getTilePosition().getX() + (int)(d * Math.cos(theta) / Config.TILE_SIZE); by = tempBaseLocation.getTilePosition().getY() - (int)(d * Math.sin(theta) / Config.TILE_SIZE); tempTilePosition = new TilePosition(bx, by); // std::cout << "ConstructionPlaceFinder MainBaseBackYard tempTilePosition " << tempTilePosition.x << "," << tempTilePosition.y << std::endl; //std::cout << "m"; } } } //std::cout << "z"; if (tempTilePosition.isValid() == false || MyBotModule.Broodwar.isBuildable(tempTilePosition.getX(), tempTilePosition.getY(), false) == false) { seedPosition = tempTilePosition.toPosition(); } else { seedPosition = tempBaseLocation.getPosition(); } } //std::cout << "w"; // std::cout << "ConstructionPlaceFinder MainBaseBackYard desiredPosition " << desiredPosition.x << "," << desiredPosition.y << std::endl; break; case FirstExpansionLocation: tempBaseLocation = InformationManager.Instance().getFirstExpansionLocation(MyBotModule.Broodwar.self()); if (tempBaseLocation != null) { seedPosition = tempBaseLocation.getPosition(); } break; case FirstChokePoint: tempChokePoint = InformationManager.Instance().getFirstChokePoint(MyBotModule.Broodwar.self()); if (tempChokePoint != null) { seedPosition = tempChokePoint.getCenter(); } break; case SecondChokePoint: tempChokePoint = InformationManager.Instance().getSecondChokePoint(MyBotModule.Broodwar.self()); if (tempChokePoint != null) { seedPosition = tempChokePoint.getCenter(); } break; } return seedPosition; // BasicBot 1.1 Patch End ////////////////////////////////////////////////// } /// buildQueue ์˜ Dead lock ์—ฌ๋ถ€๋ฅผ ํŒ๋‹จํ•˜๊ธฐ ์œ„ํ•ด, ๊ฐ€์žฅ ์šฐ์„ ์ˆœ์œ„๊ฐ€ ๋†’์€ BuildOrderItem ์˜ producer ๊ฐ€ ์กด์žฌํ•˜๊ฒŒ๋  ๊ฒƒ์ธ์ง€ ์—ฌ๋ถ€๋ฅผ ๋ฆฌํ„ดํ•ฉ๋‹ˆ๋‹ค public boolean isProducerWillExist(UnitType producerType) { boolean isProducerWillExist = true; if (MyBotModule.Broodwar.self().completedUnitCount(producerType) == 0 && MyBotModule.Broodwar.self().incompleteUnitCount(producerType) == 0) { // producer ๊ฐ€ ๊ฑด๋ฌผ ์ธ ๊ฒฝ์šฐ : ๊ฑด๋ฌผ์ด ๊ฑด์„ค ์ค‘์ธ์ง€ ์ถ”๊ฐ€ ํŒŒ์•… // ๋งŒ๋“ค๋ ค๋Š” unitType = Addon ๊ฑด๋ฌผ. Lair. Hive. Greater Spire. Sunken // Colony. Spore Colony. ํ”„๋กœํ† ์Šค ๋ฐ ํ…Œ๋ž€์˜ ์ง€์ƒ์œ ๋‹› / ๊ณต์ค‘์œ ๋‹›. if (producerType.isBuilding()) { if (ConstructionManager.Instance().getConstructionQueueItemCount(producerType, null) == 0) { isProducerWillExist = false; } } // producer ๊ฐ€ ๊ฑด๋ฌผ์ด ์•„๋‹Œ ๊ฒฝ์šฐ : producer ๊ฐ€ ์ƒ์„ฑ๋  ์˜ˆ์ •์ธ์ง€ ์ถ”๊ฐ€ ํŒŒ์•… // producerType : ์ผ๊พผ. Larva. Hydralisk, Mutalisk else { // Larva ๋Š” ์‹œ๊ฐ„์ด ์ง€๋‚˜๋ฉด Hatchery, Lair, Hive ๋กœ๋ถ€ํ„ฐ ์ƒ์„ฑ๋˜๊ธฐ ๋•Œ๋ฌธ์— ํ•ด๋‹น ๊ฑด๋ฌผ์ด ์žˆ๋Š”์ง€ // ์ถ”๊ฐ€ ํŒŒ์•… if (producerType == UnitType.Zerg_Larva) { if (MyBotModule.Broodwar.self().completedUnitCount(UnitType.Zerg_Hatchery) == 0 && MyBotModule.Broodwar.self().incompleteUnitCount(UnitType.Zerg_Hatchery) == 0 && MyBotModule.Broodwar.self().completedUnitCount(UnitType.Zerg_Lair) == 0 && MyBotModule.Broodwar.self().incompleteUnitCount(UnitType.Zerg_Lair) == 0 && MyBotModule.Broodwar.self().completedUnitCount(UnitType.Zerg_Hive) == 0 && MyBotModule.Broodwar.self().incompleteUnitCount(UnitType.Zerg_Hive) == 0) { if (ConstructionManager.Instance().getConstructionQueueItemCount(UnitType.Zerg_Hatchery, null) == 0 && ConstructionManager.Instance().getConstructionQueueItemCount(UnitType.Zerg_Lair, null) == 0 && ConstructionManager.Instance().getConstructionQueueItemCount(UnitType.Zerg_Hive, null) == 0) { isProducerWillExist = false; } } } // Hydralisk, Mutalisk ๋Š” Egg ๋กœ๋ถ€ํ„ฐ ์ƒ์„ฑ๋˜๊ธฐ ๋•Œ๋ฌธ์— ์ถ”๊ฐ€ ํŒŒ์•… else if (producerType.getRace() == Race.Zerg) { boolean isInEgg = false; for (Unit unit : MyBotModule.Broodwar.self().getUnits()) { if (unit.getType() == UnitType.Zerg_Egg && unit.getBuildType() == producerType) { isInEgg = true; } // ๊ฐ“ํƒœ์–ด๋‚œ ์œ ๋‹›์€ ์•„์ง ๋ฐ˜์˜์•ˆ๋˜์–ด์žˆ์„ ์ˆ˜ ์žˆ์–ด์„œ, ์ถ”๊ฐ€ ์นด์šดํŠธ๋ฅผ ํ•ด์ค˜์•ผํ•จ if (unit.getType() == producerType && unit.isConstructing()) { isInEgg = true; } } if (isInEgg == false) { isProducerWillExist = false; } } else { isProducerWillExist = false; } } } return isProducerWillExist; } public void checkBuildOrderQueueDeadlockAndAndFixIt() { // ๋นŒ๋“œ์˜ค๋”๋ฅผ ์ˆ˜์ •ํ•  ์ˆ˜ ์žˆ๋Š” ํ”„๋ ˆ์ž„์ธ์ง€ ๋จผ์ € ํŒ๋‹จํ•œ๋‹ค // this will be true if any unit is on the first frame if it's training // time remaining // this can cause issues for the build order search system so don't plan // a search on these frames boolean canPlanBuildOrderNow = true; for (final Unit unit : MyBotModule.Broodwar.self().getUnits()) { if (unit.getRemainingTrainTime() == 0) { continue; } UnitCommand unitCommand = unit.getLastCommand(); if (unitCommand != null) { UnitCommandType unitCommandType = unitCommand.getUnitCommandType(); if (unitCommandType != UnitCommandType.None) { if (unitCommand.getUnit() != null) { UnitType trainType = unitCommand.getUnit().getType(); if (unit.getRemainingTrainTime() == trainType.buildTime()) { canPlanBuildOrderNow = false; break; } } } } } if (!canPlanBuildOrderNow) { return; } // BuildQueue ์˜ HighestPriority ์— ์žˆ๋Š” BuildQueueItem ์ด skip ๋ถˆ๊ฐ€๋Šฅํ•œ ๊ฒƒ์ธ๋ฐ, // ์„ ํ–‰์กฐ๊ฑด์ด ์ถฉ์กฑ๋  ์ˆ˜ ์—†๊ฑฐ๋‚˜, ์‹คํ–‰์ด ์•ž์œผ๋กœ๋„ ๊ณ„์† ๋ถˆ๊ฐ€๋Šฅํ•œ ๊ฒฝ์šฐ, dead lock ์ด ๋ฐœ์ƒํ•œ๋‹ค // ์„ ํ–‰ ๊ฑด๋ฌผ์„ BuildQueue์— ์ถ”๊ฐ€ํ•ด๋„ฃ์„์ง€, ํ•ด๋‹น BuildQueueItem ์„ ์‚ญ์ œํ• ์ง€ ์ „๋žต์ ์œผ๋กœ ํŒ๋‹จํ•ด์•ผ ํ•œ๋‹ค BuildOrderQueue buildQueue = BuildManager.Instance().getBuildQueue(); if (!buildQueue.isEmpty()) { BuildOrderItem currentItem = buildQueue.getHighestPriorityItem(); // if (buildQueue.canSkipCurrentItem() == false) if (currentItem.blocking == true) { boolean isDeadlockCase = false; // producerType์„ ๋จผ์ € ์•Œ์•„๋‚ธ๋‹ค UnitType producerType = currentItem.metaType.whatBuilds(); // ๊ฑด๋ฌผ์ด๋‚˜ ์œ ๋‹›์˜ ๊ฒฝ์šฐ if (currentItem.metaType.isUnit()) { UnitType unitType = currentItem.metaType.getUnitType(); TechType requiredTechType = unitType.requiredTech(); final Map<UnitType, Integer> requiredUnits = unitType.requiredUnits(); int requiredSupply = unitType.supplyRequired(); /* * std::cout + "To make " + unitType.getName() + * ", producerType " + producerType.getName() + * " completedUnitCount " + * MyBotModule.Broodwar.self().completedUnitCount( * producerType) + " incompleteUnitCount " + * MyBotModule.Broodwar.self().incompleteUnitCount( * producerType) + std::endl; */ // ๊ฑด๋ฌผ์„ ์ƒ์‚ฐํ•˜๋Š” ์œ ๋‹›์ด๋‚˜, ์œ ๋‹›์„ ์ƒ์‚ฐํ•˜๋Š” ๊ฑด๋ฌผ์ด ์กด์žฌํ•˜์ง€ ์•Š๊ณ , ๊ฑด์„ค ์˜ˆ์ •์ด์ง€๋„ ์•Š์œผ๋ฉด dead // lock if (isProducerWillExist(producerType) == false) { isDeadlockCase = true; } // Refinery ๊ฑด๋ฌผ์˜ ๊ฒฝ์šฐ, Refinery ๊ฐ€ ๊ฑด์„ค๋˜์ง€ ์•Š์€ Geyser๊ฐ€ ์žˆ๋Š” ๊ฒฝ์šฐ์—๋งŒ ๊ฐ€๋Šฅ if (!isDeadlockCase && unitType == InformationManager.Instance().getRefineryBuildingType()) { boolean hasAvailableGeyser = true; // Refinery๊ฐ€ ์ง€์–ด์งˆ ์ˆ˜ ์žˆ๋Š” ์žฅ์†Œ๋ฅผ ์ฐพ์•„๋ณธ๋‹ค TilePosition testLocation = getDesiredPosition(unitType, currentItem.seedLocation, currentItem.seedLocationStrategy); // Refinery ๋ฅผ ์ง€์œผ๋ ค๋Š” ์žฅ์†Œ๋ฅผ ์ฐพ์„ ์ˆ˜ ์—†์œผ๋ฉด dead lock if (testLocation == TilePosition.None || testLocation == TilePosition.Invalid || testLocation.isValid() == false) { System.out .println("Build Order Dead lock case . Cann't find place to construct " + unitType); // C++ // : // unitType.getName() hasAvailableGeyser = false; } else { // Refinery ๋ฅผ ์ง€์œผ๋ ค๋Š” ์žฅ์†Œ์— Refinery ๊ฐ€ ์ด๋ฏธ ๊ฑด์„ค๋˜์–ด ์žˆ๋‹ค๋ฉด dead // lock for (Unit u : MyBotModule.Broodwar.getUnitsOnTile(testLocation)) { if (u.getType().isRefinery() && u.exists()) { hasAvailableGeyser = false; // BasicBot 1.1 Patch Start //////////////////////////////////////////////// // ์ฝ˜์†” ์ถœ๋ ฅ ์ถ”๊ฐ€. ํ•˜์ง€ ์•Š์•„๋„ ๋จ System.out.println("Build Order Dead lock case -> Refinery Building was built already at " + testLocation.getX() + ", " + testLocation.getY() ); // BasicBot 1.1 Patch End //////////////////////////////////////////////// break; } } } if (hasAvailableGeyser == false) { isDeadlockCase = true; } } // ์„ ํ–‰ ๊ธฐ์ˆ  ๋ฆฌ์„œ์น˜๊ฐ€ ๋˜์–ด์žˆ์ง€ ์•Š๊ณ , ๋ฆฌ์„œ์น˜ ์ค‘์ด์ง€๋„ ์•Š์œผ๋ฉด dead lock if (!isDeadlockCase && requiredTechType != TechType.None) { if (MyBotModule.Broodwar.self().hasResearched(requiredTechType) == false) { if (MyBotModule.Broodwar.self().isResearching(requiredTechType) == false) { isDeadlockCase = true; } } } Iterator<UnitType> it = requiredUnits.keySet().iterator(); // ์„ ํ–‰ ๊ฑด๋ฌผ/์œ ๋‹›์ด ์žˆ๋Š”๋ฐ if (!isDeadlockCase && requiredUnits.size() > 0) { // for (Unit u : it) while (it.hasNext()) { UnitType requiredUnitType = it.next(); // C++ : // u.first; if (requiredUnitType != UnitType.None) { /* * std::cout + "pre requiredUnitType " + * requiredUnitType.getName() + * " completedUnitCount " + * MyBotModule.Broodwar.self(). * completedUnitCount(requiredUnitType) + * " incompleteUnitCount " + * MyBotModule.Broodwar.self(). * incompleteUnitCount(requiredUnitType) + * std::endl; */ // BasicBot 1.1 Patch Start //////////////////////////////////////////////// // Zerg_Mutalisk ๋‚˜ Zerg_Scourge ๋ฅผ ๋งŒ๋“ค๋ ค๊ณ ํ•˜๋Š”๋ฐ Zerg_Greater_Spire ๋งŒ ์žˆ๋Š” ๊ฒฝ์šฐ deadlock ์œผ๋กœ ํŒ์ •ํ•˜๋Š” ๋ฒ„๊ทธ ์ˆ˜์ • // ๋งŒ๋“ค๋ ค๋Š” ์œ ๋‹›์ด Zerg_Mutalisk ์ด๊ฑฐ๋‚˜ Zerg_Scourge ์ด๊ณ , ์„ ํ–‰ ์œ ๋‹›์ด Zerg_Spire ์ธ ๊ฒฝ์šฐ, Zerg_Greater_Spire ๊ฐ€ ์žˆ์œผ๋ฉด dead lock ์ด ์•„๋‹ˆ๋‹ค if ((unitType == UnitType.Zerg_Mutalisk || unitType == UnitType.Zerg_Scourge) && requiredUnitType == UnitType.Zerg_Spire && MyBotModule.Broodwar.self().allUnitCount(UnitType.Zerg_Greater_Spire) > 0) { isDeadlockCase = false; } else // BasicBot 1.1 Patch End ////////////////////////////////////////////////// // ์„ ํ–‰ ๊ฑด๋ฌผ / ์œ ๋‹›์ด ์กด์žฌํ•˜์ง€ ์•Š๊ณ , ์ƒ์‚ฐ ์ค‘์ด์ง€๋„ ์•Š๊ณ  if (MyBotModule.Broodwar.self().completedUnitCount(requiredUnitType) == 0 && MyBotModule.Broodwar.self().incompleteUnitCount(requiredUnitType) == 0) { // ์„ ํ–‰ ๊ฑด๋ฌผ์ด ๊ฑด์„ค ์˜ˆ์ •์ด์ง€๋„ ์•Š์œผ๋ฉด dead lock if (requiredUnitType.isBuilding()) { if (ConstructionManager.Instance() .getConstructionQueueItemCount(requiredUnitType, null) == 0) { isDeadlockCase = true; } } // ์„ ํ–‰ ์œ ๋‹›์ด Larva ์ธ Zerg ์œ ๋‹›์˜ ๊ฒฝ์šฐ, Larva, // Hatchery, Lair, Hive ๊ฐ€ ํ•˜๋‚˜๋„ ์กด์žฌํ•˜์ง€ ์•Š๊ณ , ๊ฑด์„ค // ์˜ˆ์ •์ด์ง€ ์•Š์€ ๊ฒฝ์šฐ์— dead lock else if (requiredUnitType == UnitType.Zerg_Larva) { if (MyBotModule.Broodwar.self().completedUnitCount(UnitType.Zerg_Hatchery) == 0 && MyBotModule.Broodwar.self() .incompleteUnitCount(UnitType.Zerg_Hatchery) == 0 && MyBotModule.Broodwar.self() .completedUnitCount(UnitType.Zerg_Lair) == 0 && MyBotModule.Broodwar.self() .incompleteUnitCount(UnitType.Zerg_Lair) == 0 && MyBotModule.Broodwar.self() .completedUnitCount(UnitType.Zerg_Hive) == 0 && MyBotModule.Broodwar.self() .incompleteUnitCount(UnitType.Zerg_Hive) == 0) { if (ConstructionManager.Instance() .getConstructionQueueItemCount(UnitType.Zerg_Hatchery, null) == 0 && ConstructionManager.Instance().getConstructionQueueItemCount( UnitType.Zerg_Lair, null) == 0 && ConstructionManager.Instance().getConstructionQueueItemCount( UnitType.Zerg_Hive, null) == 0) { isDeadlockCase = true; } } } } } } } // ๊ฑด๋ฌผ์ด ์•„๋‹Œ ์ง€์ƒ/๊ณต์ค‘ ์œ ๋‹›์ธ ๊ฒฝ์šฐ, ์„œํ”Œ๋ผ์ด๊ฐ€ 400 ๊ฝ‰ ์ฐผ์œผ๋ฉด dead lock if (!isDeadlockCase && !unitType.isBuilding() && MyBotModule.Broodwar.self().supplyTotal() == 400 && MyBotModule.Broodwar.self().supplyUsed() + unitType.supplyRequired() > 400) { isDeadlockCase = true; } // ๊ฑด๋ฌผ์ด ์•„๋‹Œ ์ง€์ƒ/๊ณต์ค‘ ์œ ๋‹›์ธ๋ฐ, ์„œํ”Œ๋ผ์ด๊ฐ€ ๋ถ€์กฑํ•˜๋ฉด dead lock ์ƒํ™ฉ์ด ๋˜๊ธด ํ•˜์ง€๋งŒ, // ์ด ๊ฒฝ์šฐ๋Š” ๋นŒ๋“œ๋ฅผ ์ทจ์†Œํ•˜๊ธฐ๋ณด๋‹ค๋Š”, StrategyManager ๋“ฑ์—์„œ ์„œํ”Œ๋ผ์ด ๋นŒ๋“œ๋ฅผ ์ถ”๊ฐ€ํ•จ์œผ๋กœ์จ ํ’€๋„๋ก ํ•œ๋‹ค if (!isDeadlockCase && !unitType.isBuilding() && MyBotModule.Broodwar.self().supplyUsed() + unitType.supplyRequired() > MyBotModule.Broodwar.self().supplyTotal()) { //isDeadlockCase = true; } // Pylon ์ด ํ•ด๋‹น ์ง€์—ญ ์ฃผ์œ„์— ๋จผ์ € ์ง€์–ด์ ธ์•ผ ํ•˜๋Š”๋ฐ, Pylon ์ด ํ•ด๋‹น ์ง€์—ญ ์ฃผ์œ„์— ์—†๊ณ , ์˜ˆ์ •๋˜์–ด์žˆ์ง€๋„ ์•Š์œผ๋ฉด dead lock if (!isDeadlockCase && unitType.isBuilding() && unitType.requiresPsi() && currentItem.seedLocationStrategy == BuildOrderItem.SeedPositionStrategy.SeedPositionSpecified) { boolean hasFoundPylon = false; List<Unit> ourUnits = MyBotModule.Broodwar .getUnitsInRadius(currentItem.seedLocation.toPosition(), 4 * Config.TILE_SIZE); for (Unit u : ourUnits) { if (u.getPlayer() == MyBotModule.Broodwar.self() && u.getType() == UnitType.Protoss_Pylon) { hasFoundPylon = true; } } if (hasFoundPylon == false) { isDeadlockCase = true; } } // Creep ์ด ํ•ด๋‹น ์ง€์—ญ ์ฃผ์œ„์— Hatchery๋‚˜ Creep Colony ๋“ฑ์„ ํ†ตํ•ด ๋จผ์ € ์ง€์–ด์ ธ์•ผ ํ•˜๋Š”๋ฐ, ํ•ด๋‹น ์ง€์—ญ ์ฃผ์œ„์— ์ง€์–ด์ง€์ง€ ์•Š๊ณ  ์žˆ์œผ๋ฉด dead lock if (!isDeadlockCase && unitType.isBuilding() && unitType.requiresCreep() && currentItem.seedLocationStrategy == BuildOrderItem.SeedPositionStrategy.SeedPositionSpecified) { boolean hasFoundCreepGenerator = false; List<Unit> ourUnits = MyBotModule.Broodwar .getUnitsInRadius(currentItem.seedLocation.toPosition(), 4 * Config.TILE_SIZE); for (Unit u : ourUnits) { if (u.getPlayer() == MyBotModule.Broodwar.self() && (u.getType() == UnitType.Zerg_Hatchery || u.getType() == UnitType.Zerg_Lair || u.getType() == UnitType.Zerg_Hive || u.getType() == UnitType.Zerg_Creep_Colony || u.getType() == UnitType.Zerg_Sunken_Colony || u.getType() == UnitType.Zerg_Spore_Colony)) { hasFoundCreepGenerator = true; } } if (hasFoundCreepGenerator == false) { isDeadlockCase = true; } } } // ํ…Œํฌ์˜ ๊ฒฝ์šฐ, ํ•ด๋‹น ๋ฆฌ์„œ์น˜๋ฅผ ์ด๋ฏธ ํ–ˆ๊ฑฐ๋‚˜, ์ด๋ฏธ ํ•˜๊ณ ์žˆ๊ฑฐ๋‚˜, ๋ฆฌ์„œ์น˜๋ฅผ ํ•˜๋Š” ๊ฑด๋ฌผ ๋ฐ ์„ ํ–‰๊ฑด๋ฌผ์ด ์กด์žฌํ•˜์ง€์•Š๊ณ  // ๊ฑด์„ค์˜ˆ์ •์ด์ง€๋„ ์•Š์œผ๋ฉด dead lock else if (currentItem.metaType.isTech()) { TechType techType = currentItem.metaType.getTechType(); UnitType requiredUnitType = techType.requiredUnit(); /* * System.out.println("To research " + techType.toString() + * ", hasResearched " + * MyBotModule.Broodwar.self().hasResearched(techType) + * ", isResearching " + * MyBotModule.Broodwar.self().isResearching(techType) + * ", producerType " + producerType.toString() + * " completedUnitCount " + * MyBotModule.Broodwar.self().completedUnitCount( * producerType) + " incompleteUnitCount " + * MyBotModule.Broodwar.self().incompleteUnitCount( * producerType)); */ if (MyBotModule.Broodwar.self().hasResearched(techType) || MyBotModule.Broodwar.self().isResearching(techType)) { isDeadlockCase = true; } else if (MyBotModule.Broodwar.self().completedUnitCount(producerType) == 0 && MyBotModule.Broodwar.self().incompleteUnitCount(producerType) == 0) { if (ConstructionManager.Instance().getConstructionQueueItemCount(producerType, null) == 0) { // ํ…Œํฌ ๋ฆฌ์„œ์น˜์˜ producerType์ด Addon ๊ฑด๋ฌผ์ธ ๊ฒฝ์šฐ, Addon ๊ฑด๋ฌผ ๊ฑด์„ค์ด // ๋ช…๋ น ๋‚ด๋ ค์กŒ์ง€๋งŒ ์‹œ์ž‘๋˜๊ธฐ ์ง์ „์—๋Š” getUnits, completedUnitCount, // incompleteUnitCount ์—์„œ ํ™•์ธํ•  ์ˆ˜ ์—†๋‹ค // producerType์˜ producerType ๊ฑด๋ฌผ์— ์˜ํ•ด Addon ๊ฑด๋ฌผ ๊ฑด์„ค์˜ // ๋ช…๋ น์ด ๋“ค์–ด๊ฐ”๋Š”์ง€๊นŒ์ง€ ํ™•์ธํ•ด์•ผ ํ•œ๋‹ค if (producerType.isAddon()) { boolean isAddonConstructing = false; UnitType producerTypeOfProducerType = producerType.whatBuilds().first; if (producerTypeOfProducerType != UnitType.None) { for (Unit unit : MyBotModule.Broodwar.self().getUnits()) { if (unit == null) continue; if (unit.getType() != producerTypeOfProducerType) { continue; } // ๋ชจ๊ฑด๋ฌผ์ด ์™„์„ฑ๋˜์–ด์žˆ๊ณ , ๋ชจ๊ฑด๋ฌผ์ด ํ•ด๋‹น Addon ๊ฑด๋ฌผ์„ ๊ฑด์„ค์ค‘์ธ์ง€ // ํ™•์ธํ•œ๋‹ค if (unit.isCompleted() && unit.isConstructing() && unit.getBuildType() == producerType) { isAddonConstructing = true; break; } } } if (isAddonConstructing == false) { isDeadlockCase = true; } } else { isDeadlockCase = true; } } } else if (requiredUnitType != UnitType.None) { /* * std::cout + "To research " + techType.getName() + * ", requiredUnitType " + requiredUnitType.getName() + * " completedUnitCount " + * MyBotModule.Broodwar.self().completedUnitCount( * requiredUnitType) + " incompleteUnitCount " + * MyBotModule.Broodwar.self().incompleteUnitCount( * requiredUnitType) + std::endl; */ if (MyBotModule.Broodwar.self().completedUnitCount(requiredUnitType) == 0 && MyBotModule.Broodwar.self().incompleteUnitCount(requiredUnitType) == 0) { if (ConstructionManager.Instance().getConstructionQueueItemCount(requiredUnitType, null) == 0) { isDeadlockCase = true; } } } } // ์—…๊ทธ๋ ˆ์ด๋“œ์˜ ๊ฒฝ์šฐ, ํ•ด๋‹น ์—…๊ทธ๋ ˆ์ด๋“œ๋ฅผ ์ด๋ฏธ ํ–ˆ๊ฑฐ๋‚˜, ์ด๋ฏธ ํ•˜๊ณ ์žˆ๊ฑฐ๋‚˜, ์—…๊ทธ๋ ˆ์ด๋“œ๋ฅผ ํ•˜๋Š” ๊ฑด๋ฌผ ๋ฐ ์„ ํ–‰๊ฑด๋ฌผ์ด // ์กด์žฌํ•˜์ง€๋„ ์•Š๊ณ  ๊ฑด์„ค์˜ˆ์ •์ด์ง€๋„ ์•Š์œผ๋ฉด dead lock else if (currentItem.metaType.isUpgrade()) { UpgradeType upgradeType = currentItem.metaType.getUpgradeType(); int maxLevel = MyBotModule.Broodwar.self().getMaxUpgradeLevel(upgradeType); int currentLevel = MyBotModule.Broodwar.self().getUpgradeLevel(upgradeType); UnitType requiredUnitType = upgradeType.whatsRequired(); /* * std::cout + "To upgrade " + upgradeType.getName() + * ", maxLevel " + maxLevel + ", currentLevel " + * currentLevel + ", isUpgrading " + * MyBotModule.Broodwar.self().isUpgrading(upgradeType) + * ", producerType " + producerType.getName() + * " completedUnitCount " + * MyBotModule.Broodwar.self().completedUnitCount( * producerType) + " incompleteUnitCount " + * MyBotModule.Broodwar.self().incompleteUnitCount( * producerType) + ", requiredUnitType " + * requiredUnitType.getName() + std::endl; */ if (currentLevel >= maxLevel || MyBotModule.Broodwar.self().isUpgrading(upgradeType)) { isDeadlockCase = true; } else if (MyBotModule.Broodwar.self().completedUnitCount(producerType) == 0 && MyBotModule.Broodwar.self().incompleteUnitCount(producerType) == 0) { if (ConstructionManager.Instance().getConstructionQueueItemCount(producerType, null) == 0) { // ์—…๊ทธ๋ ˆ์ด๋“œ์˜ producerType์ด Addon ๊ฑด๋ฌผ์ธ ๊ฒฝ์šฐ, Addon ๊ฑด๋ฌผ ๊ฑด์„ค์ด // ์‹œ์ž‘๋˜๊ธฐ ์ง์ „์—๋Š” getUnits, completedUnitCount, // incompleteUnitCount ์—์„œ ํ™•์ธํ•  ์ˆ˜ ์—†๋‹ค // producerType์˜ producerType ๊ฑด๋ฌผ์— ์˜ํ•ด Addon ๊ฑด๋ฌผ ๊ฑด์„ค์ด // ์‹œ์ž‘๋˜์—ˆ๋Š”์ง€๊นŒ์ง€ ํ™•์ธํ•ด์•ผ ํ•œ๋‹ค if (producerType.isAddon()) { boolean isAddonConstructing = false; UnitType producerTypeOfProducerType = producerType.whatBuilds().first; if (producerTypeOfProducerType != UnitType.None) { for (Unit unit : MyBotModule.Broodwar.self().getUnits()) { if (unit == null) continue; if (unit.getType() != producerTypeOfProducerType) { continue; } // ๋ชจ๊ฑด๋ฌผ์ด ์™„์„ฑ๋˜์–ด์žˆ๊ณ , ๋ชจ๊ฑด๋ฌผ์ด ํ•ด๋‹น Addon ๊ฑด๋ฌผ์„ ๊ฑด์„ค์ค‘์ธ์ง€ // ํ™•์ธํ•œ๋‹ค if (unit.isCompleted() && unit.isConstructing() && unit.getBuildType() == producerType) { isAddonConstructing = true; break; } } } if (isAddonConstructing == false) { isDeadlockCase = true; } } else { isDeadlockCase = true; } } } else if (requiredUnitType != UnitType.None) { if (MyBotModule.Broodwar.self().completedUnitCount(requiredUnitType) == 0 && MyBotModule.Broodwar.self().incompleteUnitCount(requiredUnitType) == 0) { if (ConstructionManager.Instance().getConstructionQueueItemCount(requiredUnitType, null) == 0) { isDeadlockCase = true; } } } } if (!isDeadlockCase) { // producerID ๋ฅผ ์ง€์ •ํ–ˆ๋Š”๋ฐ, ํ•ด๋‹น ID ๋ฅผ ๊ฐ€์ง„ ์œ ๋‹›์ด ์กด์žฌํ•˜์ง€ ์•Š์œผ๋ฉด dead lock if (currentItem.producerID != -1 ) { boolean isProducerAlive = false; for (Unit unit : MyBotModule.Broodwar.self().getUnits()) { if (unit != null && unit.getID() == currentItem.producerID && unit.exists() && unit.getHitPoints() > 0) { isProducerAlive = true; break; } } if (isProducerAlive == false) { isDeadlockCase = true; } } } if (isDeadlockCase) { System.out.println( "Build Order Dead lock case . remove BuildOrderItem " + currentItem.metaType.getName()); buildQueue.removeCurrentItem(); } } } } };
[ 0.015058769844472408, 0.0066340952180325985, -0.03384670987725258, -0.010360987856984138, -0.025998318567872047, 0.000014262272998166736, -0.016390368342399597, 0.011552472598850727, 0.0314624086022377, 0.04038538411259651, 0.03800467401742935, -0.0027058960404247046, 0.022483346983790398, -0.07041919231414795, -0.0018175970762968063, -0.021983196958899498, -0.04865768924355507, -0.038469161838293076, -0.03464248776435852, 0.00833928119391203, 0.015597495250403881, 0.028567858040332794, -0.07449835538864136, -0.03800993040204048, -0.016615400090813637, 0.0646064281463623, 0.014149694703519344, -0.00038404055521823466, 0.04800484701991081, 0.06159907579421997, 0.011468456126749516, -0.03654376044869423, 0.030580252408981323, -0.04875611513853073, -0.000022450047254096717, -0.005792334210127592, 0.05827981233596802, -0.019497498869895935, -0.014812743291258812, -0.0510241724550724, 0.02062465064227581, -0.028756750747561455, 0.029134398326277733, -0.03566601872444153, -0.028912875801324844, -0.012189258821308613, 0.00007386552897514775, -0.02939297817647457, 0.012951286509633064, -0.053359612822532654, -0.004918558057397604, -0.004561437759548426, 0.015529699623584747, 0.0032607403118163347, -0.014775913208723068, 0.008403326384723186, 0.014938855543732643, -0.0278319101780653, -0.04157067835330963, 0.05427486076951027, 0.019229639321565628, -0.00826068501919508, 0.01660563237965107, -0.0477527417242527, 0.016397517174482346, 0.039132241159677505, 0.006154003087431192, 0.008979054167866707, 0.016719616949558258, -0.047473352402448654, -0.03967219218611717, -0.013722646050155163, -0.011458516120910645, -0.040441446006298065, -0.02700101025402546, 0.017150502651929855, -0.011594700627028942, 0.01892556995153427, 0.004053271841257811, 0.009187811985611916, 0.005543335806578398, 0.06825502216815948, -0.0013972311280667782, -0.0028690656181424856, -0.044713571667671204, -0.02808673121035099, -0.016067814081907272, -0.018165361136198044, -0.025064615532755852, 0.0235817302018404, -0.04495825618505478, 0.05789606645703316, -0.004683473147451878, 0.04823876544833183, 0.0247588362544775, 0.016144683584570885, -0.047671638429164886, 0.03718271106481552, -0.008032776415348053, -0.007863330654799938, 0.04282926768064499, 0.04799589887261391, -0.006002305541187525, 0.047965019941329956, -0.05724294111132622, -0.020629942417144775, -0.026538077741861343, 0.013864974491298199, -0.0341627262532711, -0.03766250982880592, -0.0006596891325898468, -0.005444483365863562, 0.02725202776491642, 0.020101718604564667, 0.023050494492053986, 0.04732399806380272, 0.009627911262214184, 0.03501257300376892, -0.025639312341809273, 0.014582394622266293, 0.040167294442653656, 0.010903614573180676, 0.04382912442088127, -0.018249794840812683, 0.03349022567272186, -0.027978897094726562, -0.009130386635661125, 0.07086434215307236, -0.043351784348487854, -0.01971324346959591, -0.0173179991543293, -0.02243206650018692, -0.011275016702711582, 0.0312526598572731, -0.01933385245501995, 0.023158960044384003, 0.00744305644184351, 0.02648680843412876, 0.043046317994594574, -0.02534979023039341, 0.04219631478190422, 0.03301432728767395, -0.0018461643485352397, 0.0898781269788742, 0.01763860136270523, 0.013419029302895069, -0.002509922021999955, 0.03201338276267052, -0.03140212595462799, 0.007733283564448357, -0.04861438646912575, 0.03013717383146286, 0.025408854708075523, 0.017701050266623497, 0.026761826127767563, 0.0019273135112598538, -0.005502446088939905, 0.01834726706147194, 0.03234727308154106, 0.020982759073376656, -0.016936296597123146, -0.010667829774320126, 0.0022751062642782927, 0.035299964249134064, -0.026102226227521896, 0.04520456865429878, -0.02787148579955101, -0.018759340047836304, -0.0047782971523702145, -0.028356218710541725, 0.016277093440294266, 0.00942977238446474, -0.02167508751153946, 0.0062761190347373486, 0.030938776209950447, 0.07259735465049744, 0.02862941287457943, 0.007018213625997305, 0.039997365325689316, 0.02298782579600811, -0.016734791919589043, -0.009794272482395172, -0.01723603904247284, 0.07033421844244003, 0.00961459893733263, 0.007718528620898724, 0.004815788473933935, -0.016575153917074203, -0.02119249291718006, -0.024885639548301697, 0.0013841773616150022, 0.02884899079799652, -0.03287378326058388, 0.022630002349615097, 0.013639758341014385, 0.0019347101915627718, -0.03826001659035683, -0.010808700695633888, 0.004611121024936438, -0.06146532669663429, -0.036386001855134964, 0.03992550075054169, -0.02966967038810253, 0.0273861363530159, -0.005711042322218418, -0.05561048537492752, 0.0200496893376112, 0.052155811339616776, -0.04955283924937248, -0.0034589425195008516, 0.030589746311306953, 0.014300838112831116, -0.02943434938788414, -0.02758646197617054, 0.01393871009349823, 0.0008257754961960018, -0.03185829520225525, 0.026368647813796997, -0.0029200094286352396, -0.0006652804440818727, 0.01465358305722475, 0.020087584853172302, 0.023756369948387146, 0.031325992196798325, 0.00832323171198368, -0.035084739327430725, 0.009658067487180233, 0.01870008558034897, -0.013860156759619713, -0.003513115691021085, 0.010650797747075558, 0.04074171185493469, 0.008568032644689083, 0.04570366442203522, 0.019010210409760475, -0.005147269926965237, 0.010330596938729286, 0.02742047980427742, 0.0010078815976157784, 0.021764980629086494, 0.005112243350595236, 0.040542565286159515, 0.0064141955226659775, 0.033082421869039536, 0.004892170894891024, 0.01725461520254612, -0.006230418104678392, -0.008719638921320438, -0.015598723664879799, 0.009303257800638676, -0.001575530506670475, 0.056032419204711914, 0.026444710791110992, 0.051848169416189194, -0.011020085774362087, -0.0025428393855690956, 0.03999960049986839, 0.05358472466468811, -0.024813732132315636, -0.013341800309717655, 0.025385187938809395, 0.006659625098109245, -0.013836082071065903, -0.016624469310045242, 0.028793852776288986, 0.014878449961543083, 0.025476966053247452, -0.007355503737926483, -0.009476467035710812, -0.03668435290455818, -0.03338826075196266, -0.03451552987098694, -0.046146564185619354, -0.03727293387055397, -0.03741055354475975, 0.010095877572894096, 0.013717343099415302, -0.037976574152708054, 0.02212335914373398, 0.010477975010871887, -0.02021532692015171, -0.028261356055736542, -0.004447799641638994, 0.054601382464170456, 0.047172266989946365, 0.022903043776750565, 0.0006838211556896567, 0.015045121312141418, -0.012596690095961094, 0.032785918563604355, -0.028711766004562378, -0.0020128278993070126, 0.013167358934879303, -0.004564860835671425, 0.011529747396707535, 0.016224632039666176, 0.015821728855371475, 0.010769630782306194, -0.03724387288093567, -0.07006224989891052, -0.007640038151293993, -0.005736358929425478, -0.019952772185206413, -0.020713413134217262, -0.018129324540495872, 0.05854300782084465, 0.02544749155640602, -0.01718689128756523, 0.05279700085520744, 0.04291171580553055, -0.025933707132935524, 0.022260023280978203, -0.005013416986912489, 0.010061285458505154, -0.06161998212337494, 0.047972340136766434, 0.037635691463947296, -0.018766090273857117, -0.027056502178311348, -0.02303912676870823, -0.027479181066155434, -0.008527519181370735, 0.01133782509714365, -0.01789400354027748, 0.010143067687749863, 0.03138139098882675, 0.012810958549380302, -0.0502653568983078, 0.0313747338950634, -0.04326300695538521, -0.011241253465414047, -0.023177742958068848, -0.02864900790154934, 0.02649633027613163, 0.01643342897295952, 0.02346557192504406, 0.02226056344807148, -0.019007600843906403, 0.006162026897072792, 0.002965048886835575, 0.04336420074105263, 0.0014219185104593635, 0.024742359295487404, 0.044463422149419785, -0.0006605899543501437, 0.007299390155822039, 0.052607472985982895, 0.02295367792248726, -0.005688886158168316, -0.012762469239532948, -0.02101999707520008, -0.0210865531116724, 0.02203058823943138, 0.025953384116292, -0.010347169823944569, 0.07279713451862335, -0.03728628158569336, -0.007461647968739271, 0.022738931700587273, 0.007154569961130619, 0.03495417535305023, -0.009183709509670734, 0.011492826044559479, -0.038242414593696594, -0.04809979721903801, -0.07320626825094223, 0.025786442682147026, 0.06436058133840561, 0.05958615243434906, -0.06573660671710968, 0.07561872154474258, 0.0018000459531322122, -0.04444772005081177, 0.05286208167672157, -0.040135856717824936, 0.020816465839743614, 0.04820534214377403, 0.01287958212196827, 0.04429759085178375, -0.037680886685848236, 0.0028956872411072254, 0.006200502160936594, 0.02639736607670784, 0.04084862396121025, 0.03230149671435356, 0.040166985243558884, -0.0049567436799407005, -0.007307861000299454, -0.021999433636665344, -0.024419382214546204, -0.0353427492082119, -0.03270544856786728, 0.02562936395406723, -0.026141084730625153, -0.041616830974817276, -0.05509943515062332, 0.026782536879181862, 0.0637531727552414, 0.05122257024049759, -0.014346223324537277, 0.04107005521655083, -0.00809081457555294, 0.012866334058344364, 0.04324929043650627, -0.03466951847076416, -0.0016594205517321825, -0.030176205560564995, 0.07180416584014893, -0.007457057014107704, -0.033571720123291016, -0.022849204018712044, -0.014840961433947086, -0.058218151330947876, 0.031970538198947906, 0.013788102194666862, -0.006724282167851925, -0.021929198876023293, 0.009112099185585976, 0.0006967462250031531, 0.021972231566905975, -0.033990077674388885, -0.03966039791703224, -0.027255527675151825, 0.03846286982297897, 0.02787085250020027, -0.03756829723715782, -0.00804470106959343, -0.03808620572090149, 0.04159624129533768, 0.019489627331495285, -0.008374456316232681, -0.04612426087260246, -0.0001900518691400066, -0.01402713917195797, -0.014084645546972752, 0.00045411669998429716, 0.03887907415628433, -0.028148503974080086, 0.013105292804539204, -0.04702143371105194, 0.0072928257286548615, 0.008902664296329021, -0.0007201128755696118, -0.00818717386573553, 0.005506486631929874, -0.00035190413473173976, 0.007273771800100803, 0.013506419025361538, -0.02083476260304451, 0.016442200168967247, 0.0016719310078769922, -0.029811585322022438, -0.00537340622395277, -0.00873635709285736, 0.0065590920858085155, -0.005175059195607901, -0.013264541514217854, 0.023132123053073883, 0.04066384583711624, -0.0015266421250998974, -0.007998437620699406, -0.029500074684619904, 0.03651577606797218, -0.032267384231090546, -0.04902561008930206, 0.0666361078619957, -0.011629808694124222, -0.01802772283554077, 0.028057318180799484, 0.040829628705978394, -0.04111575335264206, 0.005220100749284029, 0.013479817658662796, -0.048679251223802567, 0.03520170971751213, -0.05320267751812935, 0.018519697710871696, -0.006796836853027344, -0.024096302688121796, 0.014297968707978725, -0.03384806960821152, 0.04714199900627136, 0.02649582549929619, -0.02855328656733036, -0.016153784468770027, -0.08088896423578262, -0.02321772277355194, 0.016042552888393402, -0.026466453447937965, 0.020102256909012794, -0.02382505312561989, -0.024630442261695862, 0.007244887761771679, -0.005793461576104164, 0.03626156225800514, -0.022374432533979416, 0.005024795886129141, 0.0008959724800661206, 0.010419790633022785, -0.019387731328606606, 0.013298597186803818, -0.0017481973627582192, -0.0575941763818264, 0.004586291965097189, -0.0029431639704853296, 0.003122824477031827, -0.0053853620775043964, -0.015672102570533752, -0.06494393944740295, -0.02498626708984375, -0.04107431694865227, 0.014823666773736477, -0.026517881080508232, -0.008093561045825481, 0.02702186070382595, 0.0012994088465347886, 0.018124977126717567, 0.02409517578780651, -0.07189705222845078, 0.02010224387049675, 0.03126579150557518, -0.030634133145213127, -0.040226779878139496, 0.021533746272325516, 0.0013674310175701976, 0.07006635516881943, -0.009445291943848133, -0.02183307148516178, -0.04990353062748909, -0.05385985225439072, -0.004261929541826248, -0.0387050062417984, -0.02773822471499443, -0.07045600563287735, -0.014851853251457214, -0.0048397984355688095, 0.028684746474027634, -0.017655929550528526, -0.022841552272439003, -0.014114833436906338, -0.02876986935734749, 0.013931949622929096, -0.030669551342725754, -0.03548441827297211, -0.028359657153487206, -0.006420458201318979, 0.009540527127683163, 0.0639980286359787, 0.0176054947078228, 0.02874043770134449, 0.013721447438001633, 0.004093390889465809, 0.017668433487415314, 0.02622189000248909, -0.04913259297609329, -0.046103112399578094, 0.03544933721423149, 0.01592119410634041, -0.021401947364211082, 0.028896385803818703, -0.03210124373435974, 0.05553726106882095, -0.024348240345716476, 0.014741132967174053, -0.014866539277136326, 0.005719845648854971, -0.016862791031599045, -0.008132264949381351, 0.029511556029319763, -0.020344795659184456, 0.008380289189517498, -0.008337791077792645, 0.04563358053565025, 0.03795621916651726, -0.004050565417855978, -0.0451861210167408, -0.039710305631160736, -0.05166659876704216, -0.07111188769340515, 0.03152496740221977, -0.04976750537753105, -0.014389010146260262, -0.029192162677645683, -0.005931468680500984, 0.052603546530008316, -0.012124969623982906, 0.051495909690856934, 0.07598523795604706, -0.01792730577290058, -0.01460846234112978, -0.04637781158089638, 0.012770337983965874, 0.01247645914554596, -0.04639936983585358, -0.012641645036637783, -0.013203294947743416, -0.04313286021351814, 0.02968437224626541, -0.03369954973459244, -0.08047263324260712, -0.058172568678855896, -0.00474715419113636, 0.06445026397705078, -0.014469919726252556, 0.02190849930047989, -0.017936401069164276, -0.04804924502968788, -0.04900478944182396, 0.04223774001002312, 0.007986641488969326, -0.004037139937281609, 0.04956990107893944, 0.007068008650094271, 0.0007101249066181481, 0.031259965151548386, 0.011489198543131351, 0.033645838499069214, -0.036263007670640945, 0.04844140261411667, -0.0015891604125499725, -0.05256519466638565, 0.02756047621369362, 0.05002164840698242, -0.08013288676738739, -0.05329611897468567, -0.005456766579300165, 0.015745772048830986, 0.0083700492978096, -0.013511569239199162, -0.013540013693273067, -0.014592858031392097, -0.018611250445246696, 0.020652182400226593, 0.030387189239263535, 0.015091710723936558, 0.0012465334730222821, -0.005349297542124987, 0.040377091616392136, -0.046152226626873016, 0.016630202531814575, 0.04935092106461525, 0.003396135987713933, -0.019469937309622765, -0.03877440094947815, -0.023806504905223846, -0.03043716959655285, -0.0027138362638652325, 0.051738664507865906, -0.013441196642816067, 0.04219606891274452, 0.029981719329953194, -0.013589329086244106, 0.06609675288200378, -0.01897173747420311, 0.020009996369481087, -0.006208821199834347, -0.03652576357126236, -0.07352863997220993, -0.043300896883010864, -0.010278425179421902, 0.012737488374114037, 0.019488660618662834, -0.039266351610422134, 0.03166443109512329, 0.024562178179621696, -0.001791657181456685, -0.009189977310597897, -0.07127593457698822, -0.01209429930895567, -0.06405432522296906, -0.04321250319480896, -0.028226856142282486, -0.00472657335922122, -0.012863497249782085, -0.0030625611543655396, 0.030401045456528664, -0.041212599724531174, 0.00886104442179203, 0.020425304770469666, -0.016503257676959038, 0.04361862689256668, -0.027986222878098488, 0.006940815597772598, -0.04840153455734253, -0.0459502749145031, -0.05881283059716225, 0.021281275898218155, 0.016219336539506912, 0.00006310515163931996, -0.03812562674283981, 0.008800612762570381, -0.009895948693156242, 0.023682454600930214, 0.0041789039969444275, 0.02416662499308586, -0.0019132409943267703, -0.04053883999586105, 0.021827109158039093, 0.01393947098404169, 0.011769299395382404, 0.049540936946868896, 0.01718907244503498, -0.030234459787607193, 0.03501235321164131, 0.007452830672264099, -0.022436033934354782, -0.03193260356783867, 0.02059343457221985, -0.02457546815276146, -0.0097628403455019, -0.04972841218113899, -0.017364734783768654, -0.008819011971354485, -0.020621800795197487, 0.020642662420868874, 0.008378040976822376, 0.013639128766953945, -0.017919113859534264, 0.02223573438823223, -0.005322548095136881, 0.055652517825365067, -0.02125631645321846, 0.010948272421956062, 0.012168164364993572, 0.012781894765794277, 0.036435723304748535, 0.01660768873989582, 0.01802879199385643, 0.007509822491556406, 0.00016816933930385858, -0.019030826166272163, 0.012574906460940838, 0.00876754242926836, 0.009808564558625221, 0.05095162242650986, -0.04747876897454262, -0.019181659445166588, -0.02044714242219925, -0.01259361021220684, 0.000145728699862957, 0.044055692851543427, 0.0036378249060362577, -0.019303668290376663, -0.0017829722492024302, -0.03312086686491966, -0.025363484397530556, -0.000012713561773125548, -0.04268236085772514, -0.07921934127807617, 0.04813723266124725, -0.0343942828476429, -0.015252918936312199, -0.032073725014925, -0.030810950323939323, -0.012672146782279015, -0.004697961267083883, -0.003562943311408162, -0.030029766261577606, 0.032331857830286026, 0.013549731113016605, 0.03654969483613968, -0.019538914784789085, 0.0016053594881668687, 0.03020457550883293, 0.05643659457564354, -0.02938140742480755, -0.06425218284130096, 0.003479879815131426, 0.04021931067109108, 0.0042366934940218925, 0.004324027337133884, 0.013205073773860931, 0.018469037488102913, -0.009772688150405884, 0.018165824934840202, 0.0008753877482376993, 0.01136521715670824, -0.015285207889974117, 0.0049447547644376755, -0.020017215982079506, 0.008023952133953571, -0.043562255799770355, 0.03262199088931084, 0.006281824316829443, -0.02469484694302082, -0.03985236585140228, 0.046256691217422485, 0.05071843042969704, -0.01306865643709898, 0.06930366158485413, 0.020790351554751396, 0.04244956374168396, 0.008435173891484737, 0.027317123487591743, -0.021333416923880577, 0.036902718245983124, 0.04015488177537918, 0.0777188390493393, -9.278034553972248e-7, 0.036962978541851044, 0.03796372190117836, -0.014676500111818314, -0.004626880399882793, 0.05150560662150383, 0.020820705220103264, -0.028046950697898865, 0.007156482897698879, -0.009900919161736965, 0.0021286027040332556, 0.01074596494436264, -0.019975876435637474, -0.0005632709944620728, -0.04214620590209961, -0.000055177868489408866, -0.003715288592502475, -0.028118854388594627, 0.045017946511507034, -0.006391159724444151, 0.00521265622228384, -0.0174401942640543, -0.0336829237639904, 0.016687486320734024, 0.030223790556192398, -0.03407943621277809, -0.018351495265960693, 0.017026387155056, 0.05038456991314888, 0.005790023598819971, 0.016062892973423004, 0.024030208587646484, -0.010984034277498722, -0.028722500428557396, -0.001388353412039578, 0.004829141311347485, 0.0016085585812106729, -0.03734811395406723, 0.010050497017800808, -0.0176212377846241, 0.05046079680323601, -0.013500145636498928, 0.0000263769779849099, 0.025862306356430054, -0.02383834682404995, -0.02722337655723095, -0.06648831069469452, 0.026034895330667496, -0.031573809683322906, -0.03766639903187752, 0.04539965093135834, 0.009154771454632282, -0.012290560640394688, 0.03200388699769974, -0.013109409250319004, 0.017816482111811638, -0.000055188851547427475, 0.08333572000265121, -0.012219187803566456, 0.03874361515045166, 0.03508652001619339, -0.019118474796414375, -0.023468445986509323, -0.004440948832780123, 0.010619142092764378, -0.045977506786584854, -0.032260216772556305, -0.04564132168889046, -0.01783551648259163, -0.029199564829468727, -0.03949563205242157, -0.013395828194916248, 0.04260389134287834, -0.02367004007101059, -0.04703446477651596, 0.0166100412607193, 0.01160945650190115, -0.0485345721244812, 0.02386607974767685, -0.006419735960662365, 0.03319019824266434, 0.018167691305279732, 0.006603898014873266, -0.011564676649868488, -0.0129100251942873, 0.01767154037952423, -0.06685195863246918, 0.04750749096274376, -0.013993008993566036, -0.03617481514811516, -0.030971501022577286, -0.026086537167429924, -0.029516354203224182, 0.020099885761737823, -0.011669183149933815, -0.03533216565847397, 0.0251296553760767, 0.06114151328802109, 0.0055998507887125015, 0.00982669834047556, -0.028323890641331673, -0.001601547934114933, 0.03319934383034706, 0.061700642108917236, -0.0042923809960484505, 0.023290766403079033, 0.023989280685782433, -0.012477969750761986, 0.026697665452957153, -0.022499533370137215, 0.015118523500859737, -0.0017529689939692616, -0.010918878950178623, -0.0229141004383564, -0.002227149670943618, -0.04520716890692711, -0.07264481484889984, -0.0038501019589602947, 0.022172249853610992, -0.0004141226236242801, 0.0007454121368937194, -0.06592342257499695, -0.026246748864650726, -0.06224396452307701, -0.010494766756892204, -0.03913002833724022, 0.011190454475581646, -0.008256037719547749, -0.017707444727420807, 0.005391859449446201, -0.060393787920475006, 0.14815355837345123, 0.05195595696568489, 0.009919126518070698, 0.037785712629556656, 0.0326557457447052, 0.050559770315885544, -0.004440657794475555, -0.030422482639551163, 0.017805855721235275, -0.050849009305238724, 0.027520393952727318, 0.005460916552692652, 0.002086139051243663, 0.02569291554391384, 0.007051713299006224, 0.07764730602502823, -0.054478663951158524, 0.0402785986661911, 0.027256276458501816, -0.052382297813892365, -0.07055071741342545, 0.0278798658400774, 0.004701698664575815, 0.01957757957279682, -0.0009220318170264363, 0.0022240919061005116, 0.012997561134397984, -0.040109965950250626, -0.02114572748541832, -0.020840030163526535, 0.010376700200140476, -0.014454692602157593, 0.020274678245186806, 0.034904997795820236, -0.008823318406939507, 0.03473850339651108, 0.039083678275346756, -0.007834699004888535, 0.012980978935956955, 0.006756958086043596, -0.031681228429079056, 0.014433236792683601, 0.006476982031017542, -0.02422994188964367, 0.01993723213672638, 0.06873185932636261, -0.0290681105107069, -0.012610901147127151, 0.02386374957859516, -0.028072291985154152, 0.07035987079143524, -0.04723473638296127, 0.026792900636792183, 0.01177904848009348, -0.04384297505021095, -0.016038229689002037, -0.015362263657152653, -0.027788301929831505, -0.02487516775727272, -0.012371878139674664, 0.04864376410841942, 0.023843927308917046, -0.03212748095393181, 0.008843465708196163, -0.0452873669564724, -0.00827452540397644, 0.03134303167462349, -0.04083570837974548, -0.01613246090710163, -0.006474786903709173, 0.026421964168548584, -0.012005169875919819, -0.009599046781659126, 0.021862706169486046, 0.030090132728219032, 0.05678004026412964, -0.009049455635249615, 0.027988683432340622, 0.02449876256287098, -0.02433151751756668, 0.019048362970352173, -0.028404628857970238, 0.011663270182907581, -0.03786878660321236, 0.0450754389166832, 0.044740937650203705, -0.04480068385601044, -0.03784773498773575, -0.032736364752054214, 0.036838382482528687, 0.060712262988090515, 0.026950107887387276, -0.024382857605814934, -0.007835454307496548, -0.002207420999184251 ]
Q: partial search JSON How to partial search the JSON to match the JSON value? Filter is matching full value of the city name and search is case-sensitive Example: if I type p in text box it should match all city value with p as array output should be as [{"CM_CITY_CODE":"515134", "CM_CITY_NAME":"Puttaparthi(AP)", "CM_HUB":"Thirupati", "CM_STATE":"Andhra Pradesh", "CM_DT_PICKUP_CITY":"0", "CM_DROP_CITY":"1", "CM_ADDEDBY":"", "CM_ADDED_DATE":"", "CM_EDITEDBY":"", "CM_EDITED_DATE":""},{"CM_CITY_CODE":"517408", "CM_CITY_NAME":"Palamaner", "CM_HUB":"Vellore", "CM_STATE":"Andhra Pradesh", "CM_DT_PICKUP_CITY":"0", "CM_DROP_CITY":"1", "CM_ADDEDBY":"", "CM_ADDED_DATE":"", "CM_EDITEDBY":"", "CM_EDITED_DATE":""}] Here is what I tried (function () { var cityjson = [{"CM_CITY_CODE":"04262", "CM_CITY_NAME":"Gudalur", "CM_HUB":"Coimbatore", "CM_STATE":"", "CM_DT_PICKUP_CITY":"1", "CM_DROP_CITY":"1", "CM_ADDEDBY":"VigneshkumarP", "CM_ADDED_DATE":"2020-12-17 13:18:23", "CM_EDITEDBY":"", "CM_EDITED_DATE":""}, {"CM_CITY_CODE":"505001", "CM_CITY_NAME":"Hyderabad", "CM_HUB":"Hyderabad", "CM_STATE":"", "CM_DT_PICKUP_CITY":"0", "CM_DROP_CITY":"1", "CM_ADDEDBY":"", "CM_ADDED_DATE":"", "CM_EDITEDBY":"", "CM_EDITED_DATE":""}, {"CM_CITY_CODE":"506001", "CM_CITY_NAME":"Warangal", "CM_HUB":"Hyderabad", "CM_STATE":"Telangana", "CM_DT_PICKUP_CITY":"0", "CM_DROP_CITY":"1", "CM_ADDEDBY":"", "CM_ADDED_DATE":"", "CM_EDITEDBY":"", "CM_EDITED_DATE":""}, {"CM_CITY_CODE":"515134", "CM_CITY_NAME":"Puttaparthi(AP)", "CM_HUB":"Thirupati", "CM_STATE":"Andhra Pradesh", "CM_DT_PICKUP_CITY":"0", "CM_DROP_CITY":"1", "CM_ADDEDBY":"", "CM_ADDED_DATE":"", "CM_EDITEDBY":"", "CM_EDITED_DATE":""}, {"CM_CITY_CODE":"516001", "CM_CITY_NAME":"Kadappa", "CM_HUB":"Hyderabad", "CM_STATE":"Tamil Nadu", "CM_DT_PICKUP_CITY":"0", "CM_DROP_CITY":"1", "CM_ADDEDBY":"", "CM_ADDED_DATE":"", "CM_EDITEDBY":"Vivek", "CM_EDITED_DATE":"2020-11-03 10:23:26"}, {"CM_CITY_CODE":"517001", "CM_CITY_NAME":"Chitoor", "CM_HUB":"Vellore", "CM_STATE":"Andhra Pradesh", "CM_DT_PICKUP_CITY":"1", "CM_DROP_CITY":"1", "CM_ADDEDBY":"", "CM_ADDED_DATE":"", "CM_EDITEDBY":"", "CM_EDITED_DATE":""}, {"CM_CITY_CODE":"517325", "CM_CITY_NAME":"Madanapalli", "CM_HUB":"Thirupati", "CM_STATE":"Tamil Nadu", "CM_DT_PICKUP_CITY":"0", "CM_DROP_CITY":"0", "CM_ADDEDBY":"", "CM_ADDED_DATE":"", "CM_EDITEDBY":"", "CM_EDITED_DATE":""}, {"CM_CITY_CODE":"517408", "CM_CITY_NAME":"Palamaner", "CM_HUB":"Vellore", "CM_STATE":"Andhra Pradesh", "CM_DT_PICKUP_CITY":"0", "CM_DROP_CITY":"1", "CM_ADDEDBY":"", "CM_ADDED_DATE":"", "CM_EDITEDBY":"", "CM_EDITED_DATE":""}] var getData = function (request, response) { let x = cityjson.filter(function(item){ return item.CM_CITY_NAME == request.term; }) if(x.length>0) { console.log(x) response($.map(x, function (item) { return { label: x.CM_CITY_NAME, data: item }; })); } else{ alert('else') } }; //on select of from dropdown var selectTo = function (event, ui) { return false } //to address autocomplete $("#selector").autocomplete({ source: getData, select: selectTo, minLength: 2 }); }) <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <input type="text" id="selector"> A: I had to add jQuery UI to get the autocomplete You had a few issues return item.CM_CITY_NAME.indexOf(request.term) !=-1 If you want this case INsensitive, change return item.CM_CITY_NAME.toLowerCase().indexOf(request.term.toLowerCase()) !=-1 The above will return any string found in the city. If you want the typed term to match the cityname from the beginning you need return item.CM_CITY_NAME.toLowerCase().indexOf(request.term.toLowerCase()) ===0 If you do not need IE11 compatibility, you can change the above to return item.CM_CITY_NAME.toLowerCase().startsWith(request.term.toLowerCase()) Here is the other change you need if (x.length > 0) { const resp = $.map(x, function(item) { return { label: item.CM_CITY_NAME, // item., not x. data: item }; }) response(resp); } $(function() { var cityjson = [{"CM_CITY_CODE":"04262","CM_CITY_NAME":"Gudalur","CM_HUB":"Coimbatore","CM_STATE":"","CM_DT_PICKUP_CITY":"1","CM_DROP_CITY":"1","CM_ADDEDBY":"VigneshkumarP","CM_ADDED_DATE":"2020-12-1713:18:23","CM_EDITEDBY":"","CM_EDITED_DATE":""},{"CM_CITY_CODE":"505001","CM_CITY_NAME":"Hyderabad","CM_HUB":"Hyderabad","CM_STATE":"","CM_DT_PICKUP_CITY":"0","CM_DROP_CITY":"1","CM_ADDEDBY":"","CM_ADDED_DATE":"","CM_EDITEDBY":"","CM_EDITED_DATE":""},{"CM_CITY_CODE":"506001","CM_CITY_NAME":"Warangal","CM_HUB":"Hyderabad","CM_STATE":"Telangana","CM_DT_PICKUP_CITY":"0","CM_DROP_CITY":"1","CM_ADDEDBY":"","CM_ADDED_DATE":"","CM_EDITEDBY":"","CM_EDITED_DATE":""},{"CM_CITY_CODE":"515134","CM_CITY_NAME":"Puttaparthi(AP)","CM_HUB":"Thirupati","CM_STATE":"AndhraPradesh","CM_DT_PICKUP_CITY":"0","CM_DROP_CITY":"1","CM_ADDEDBY":"","CM_ADDED_DATE":"","CM_EDITEDBY":"","CM_EDITED_DATE":""},{"CM_CITY_CODE":"516001","CM_CITY_NAME":"Kadappa","CM_HUB":"Hyderabad","CM_STATE":"TamilNadu","CM_DT_PICKUP_CITY":"0","CM_DROP_CITY":"1","CM_ADDEDBY":"","CM_ADDED_DATE":"","CM_EDITEDBY":"Vivek","CM_EDITED_DATE":"2020-11-0310:23:26"},{"CM_CITY_CODE":"517001","CM_CITY_NAME":"Chitoor","CM_HUB":"Vellore","CM_STATE":"AndhraPradesh","CM_DT_PICKUP_CITY":"1","CM_DROP_CITY":"1","CM_ADDEDBY":"","CM_ADDED_DATE":"","CM_EDITEDBY":"","CM_EDITED_DATE":""},{"CM_CITY_CODE":"517325","CM_CITY_NAME":"Madanapalli","CM_HUB":"Thirupati","CM_STATE":"TamilNadu","CM_DT_PICKUP_CITY":"0","CM_DROP_CITY":"0","CM_ADDEDBY":"","CM_ADDED_DATE":"","CM_EDITEDBY":"","CM_EDITED_DATE":""},{"CM_CITY_CODE":"517408","CM_CITY_NAME":"Palamaner","CM_HUB":"Vellore","CM_STATE":"AndhraPradesh","CM_DT_PICKUP_CITY":"0","CM_DROP_CITY":"1","CM_ADDEDBY":"","CM_ADDED_DATE":"","CM_EDITEDBY":"","CM_EDITED_DATE":""}]; var getData = function(request, response) { console.log("term",request.term) let x = cityjson.filter(function(item) { return item.CM_CITY_NAME.toLowerCase().startsWith(request.term.toLowerCase()) }) if (x.length > 0) { const resp = $.map(x, function(item) { return { label: item.CM_CITY_NAME, data: item }; }) console.log(resp) response(resp); } else { console.log('else') } }; //on select of from dropdown var selectTo = function(event, ui) { return false } //to address autocomplete $("#selector").autocomplete({ source: getData, select: selectTo, minLength: 2 }); }) <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js" integrity="sha512-uto9mlQzrs59VwILcLiRYeLKPPbS/bT71da/OEBYEwcdNUk8jYIy+D176RYoop1Da+f9mvkYrmj5MCLZWEtQuA==" crossorigin="anonymous"></script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.css" integrity="sha512-aOG0c6nPNzGk+5zjwyJaoRUgCdOrfSDhmMID2u4+OIslr0GjpLKo7Xm0Ao3xmpM4T8AmIouRkqwj1nrdVsLKEQ==" crossorigin="anonymous" /> <input type="text" id="selector"> A: you can use startsWith() method which determines whether a string begins with the characters of a specified string. cityjson.filter(function(item){ return item.CM_CITY_NAME.toLowerCase().startsWith(request.term.toLowerCase())})
[ -0.022987518459558487, 0.013852416537702084, 0.007825310342013836, -0.004540668800473213, -0.032628413289785385, -0.02915572002530098, -0.007531298324465752, 0.018218910321593285, 0.02976923994719982, 0.04687267541885376, 0.03196237236261368, 0.0032858659978955984, 0.01665356010198593, -0.03410745784640312, -0.03432212769985199, -0.017807235941290855, -0.029913920909166336, 0.0010295658139511943, -0.007475275080651045, -0.0019253481877967715, -0.007091047242283821, 0.039518702775239944, -0.0645320788025856, -0.028600608929991722, -0.011292199604213238, 0.04074861481785774, 0.04514321684837341, -0.009496410377323627, 0.045051854103803635, 0.05948891118168831, -0.021037330850958824, -0.03941512480378151, 0.020023593679070473, -0.01640978269279003, -0.03903577849268913, -0.012509900145232677, 0.04094194248318672, -0.024594299495220184, -0.01671708934009075, -0.06269382685422897, -0.002211371436715126, -0.04736539348959923, 0.05016160383820534, -0.039036188274621964, -0.052133575081825256, -0.0008396535995416343, 0.008577914908528328, -0.02350681647658348, -0.0013444602955132723, -0.0425293929874897, -0.02252524346113205, -0.000004143538262724178, 0.038140300661325455, 0.0064739566296339035, 0.0005936780362389982, -0.003447676543146372, 0.004845612216740847, -0.010050622746348381, -0.046575307846069336, 0.02744797244668007, 0.023006834089756012, 0.01892433688044548, 0.025813128799200058, -0.027017885819077492, 0.015208588913083076, 0.0209394209086895, 0.0012112652184441686, 0.02362440712749958, 0.017673995345830917, -0.02250733971595764, -0.038043368607759476, -0.019654862582683563, -0.014180915430188179, -0.07193545252084732, 0.009792160242795944, -0.00045435252832248807, 0.010846595279872417, -0.018250534310936928, -0.008723105303943157, 0.025389065966010094, -0.01963774301111698, 0.05786711722612381, 0.02216637134552002, 0.028785839676856995, -0.03465387970209122, -0.01878991536796093, -0.0019936980679631233, 0.029822515323758125, 0.025699209421873093, 0.01731346733868122, -0.03226671740412712, 0.057667411863803864, -0.0031750716734677553, -0.017320070415735245, 0.037697870284318924, 0.04192498326301575, -0.010070385411381721, 0.012957668863236904, 0.007591750007122755, 0.012292361818253994, 0.03335791081190109, 0.023125972598791122, -0.024615583941340446, 0.042440179735422134, -0.011789736337959766, 0.031943660229444504, -0.02360188029706478, 0.009869014844298363, -0.016823630779981613, -0.04308047518134117, -0.005841868929564953, -0.03342924267053604, 0.03518449142575264, -0.012818984687328339, -0.008695327676832676, 0.02872581034898758, -0.0060882787220180035, 0.003852446563541889, 0.0008620149455964565, -0.004417187999933958, 0.018805650994181633, -0.0062669613398611546, 0.0461714006960392, -0.020646100863814354, 0.03587540611624718, -0.02538052573800087, -0.044299233704805374, 0.009807812049984932, -0.03523848205804825, 0.02398330345749855, 0.02134213224053383, 0.003274141810834408, 0.018630176782608032, 0.007187676150351763, 0.007271654903888702, -0.013886765576899052, -0.0026477619539946318, 0.030523279681801796, 0.006276225671172142, -0.04509807378053665, 0.06101571023464203, 0.020420994609594345, -0.006658509839326143, 0.0975327119231224, 0.0011534722289070487, 0.035789426416158676, 0.008848306722939014, -0.01688484475016594, -0.035154424607753754, 0.02676507458090782, -0.03770798072218895, 0.0012724918778985739, 0.006019785068929195, 0.010047145187854767, -0.0075621590949594975, -0.001023300806991756, 0.015958748757839203, 0.007352383807301521, 0.03578511252999306, 0.005871304776519537, -0.028521807864308357, 0.007370186969637871, -0.021001966670155525, 0.03489374741911888, 0.01201742421835661, 0.02476109378039837, -0.04766536504030228, -0.009319856762886047, 0.010609524324536324, -0.05066144838929176, -0.032189205288887024, -0.0004673643852584064, -0.010969567112624645, 0.038344673812389374, 0.033354733139276505, 0.04765288159251213, 0.03895363211631775, -0.015337060205638409, 0.037123680114746094, 0.016666457056999207, 0.003208691952750087, 0.017084619030356407, -0.0010949424467980862, 0.05469116196036339, 0.03379217907786369, -0.02165297046303749, 0.022183386608958244, 0.009546752087771893, -0.04726850613951683, -0.05097084864974022, 0.05343593284487724, 0.004743568133562803, -0.04136272147297859, 0.0036076970864087343, -0.013144276104867458, 0.010324510745704174, -0.046229179948568344, -0.005114988423883915, -0.025036662817001343, -0.048000626266002655, -0.0428270623087883, 0.03615742549300194, -0.016996415331959724, 0.006227464415132999, 0.009080374613404274, -0.03927088901400566, 0.02259441651403904, 0.07233843207359314, -0.047449689358472824, 0.020435944199562073, 0.026891039684414864, 0.0231776162981987, -0.010364100337028503, -0.010709318332374096, 0.011855078861117363, 0.000688284111674875, -0.04408992826938629, 0.04544369503855705, 0.007885463535785675, -0.019185569137334824, 0.0021450503263622522, 0.05501028895378113, 0.016027987003326416, 0.023840809240937233, -0.022194672375917435, 0.01886688731610775, 0.02606678195297718, 0.04343869537115097, 0.008972284384071827, -0.00506975082680583, -0.017942313104867935, 0.023231590166687965, 0.021424803882837296, 0.03849479556083679, 0.01124585885554552, 0.018749384209513664, 0.048715025186538696, 0.05249357968568802, 0.03871684521436691, 0.025749513879418373, -0.00033171914401464164, 0.02051760070025921, 0.01745247095823288, 0.01297315489500761, -0.00822476390749216, 0.0069368500262498856, -0.00652989512309432, -0.023474304005503654, -0.06079353764653206, 0.08758118748664856, -0.0011229166993871331, 0.04065421223640442, 0.0616891048848629, 0.04720737412571907, -0.03574023395776749, -0.022698121145367622, 0.05318189412355423, 0.04950655251741409, -0.032639022916555405, -0.007906842045485973, 0.029205387458205223, 0.014387163333594799, 0.005001740530133247, -0.01111078541725874, 0.04052114114165306, 0.0049552153795957565, 0.058023132383823395, 0.009568111039698124, -0.01119028776884079, -0.05422290787100792, -0.05133367329835892, -0.04674959182739258, -0.0167823676019907, -0.0020434341859072447, -0.06361347436904907, -0.025608118623495102, 0.02700904756784439, -0.049678586423397064, 0.034669626504182816, 0.015068985521793365, -0.011687968857586384, -0.020701751112937927, -0.036865390837192535, 0.015018998645246029, 0.046784453094005585, 0.03786849603056908, -0.027792371809482574, 0.031109271571040154, 0.02621707133948803, 0.058767497539520264, -0.029370557516813278, -0.03896557539701462, -0.015410683117806911, -0.027950860559940338, 0.0019414209527894855, -0.00710558146238327, 0.017460469156503677, -0.007951552048325539, -0.06389869749546051, -0.03271813318133354, -0.016227301210165024, -0.007588743697851896, -0.004807134158909321, -0.005861944984644651, -0.06381945312023163, 0.04418574273586273, 0.03773925080895424, -0.008889921009540558, 0.024127643555402756, 0.04281426966190338, -0.02929702214896679, 0.019331442192196846, 0.024396857246756554, 0.013131881132721901, -0.04139447957277298, 0.04203770309686661, 0.04184909537434578, 0.002258799271658063, -0.0360029973089695, -0.024614734575152397, -0.04268249496817589, -0.0020124258007854223, 0.0007610431639477611, 0.0038986061699688435, 0.01049190666526556, 0.05522625148296356, -0.007197585888206959, -0.0917058065533638, 0.025625480338931084, -0.043038852512836456, -0.059210021048784256, -0.04864494502544403, -0.00020091465557925403, 0.013153811916708946, -0.0012506734346970916, 0.005311242304742336, -0.014961447566747665, -0.004674714989960194, 0.040776386857032776, 0.017241444438695908, 0.028961310163140297, -0.03651814162731171, -0.0208036620169878, 0.03539752587676048, -0.01638118550181389, 0.021493077278137207, 0.028370002284646034, -0.022158415988087654, 0.0077163949608802795, -0.014631932601332664, -0.0017907897708937526, 0.02018710784614086, 0.016838036477565765, 0.018650533631443977, 0.011181130073964596, 0.03873719274997711, -0.0420902818441391, 0.020353198051452637, 0.027177058160305023, 0.02000604197382927, 0.049923308193683624, 0.03513295575976372, -0.0019931187853217125, -0.004151185043156147, -0.013543961569666862, -0.05251561850309372, 0.05266327038407326, 0.006773571949452162, 0.0015669672284275293, -0.0685097724199295, 0.06277689337730408, 0.00013701162242796272, -0.008734988048672676, 0.05632384493947029, -0.0375218503177166, 0.0020220759324729443, 0.03549954295158386, 0.01313506718724966, 0.07993017882108688, -0.026902981102466583, 0.023382747545838356, -0.03490344062447548, 0.01586570031940937, 0.009748305194079876, 0.02074958197772503, 0.03926335647702217, 0.006819684524089098, -0.010455116629600525, -0.009141478687524796, -0.061796486377716064, -0.0060353404842317104, -0.013133992440998554, 0.017117219045758247, -0.039620984345674515, -0.04416176304221153, -0.035181839019060135, -0.013707177713513374, -0.023617222905158997, 0.08426368981599808, -0.009648587554693222, 0.028746159747242928, 0.006686835549771786, 0.01659444533288479, 0.04312961548566818, -0.017717905342578888, 0.020966531708836555, -0.04849662631750107, 0.04134172573685646, 0.02758966200053692, -0.0029828271362930536, -0.020023372024297714, -0.044330235570669174, -0.01646995171904564, 0.029231935739517212, -0.0022212229669094086, -0.013762042857706547, -0.06874830275774002, -0.002083741594105959, 0.010535106062889099, 0.025750596076250076, -0.006899304687976837, -0.04411284625530243, -0.02399124950170517, -0.0002786603872664273, 0.04506085813045502, -0.056212007999420166, 0.02065414935350418, -0.02018842101097107, 0.046416085213422775, 0.04021451994776726, -0.014294839464128017, -0.02907807007431984, -0.006226206663995981, -0.031998272985219955, -0.034278642386198044, 0.019755803048610687, 0.03432854637503624, -0.04240743815898895, 0.039102569222450256, -0.057820796966552734, 0.006763451267033815, 0.0023236917331814766, 0.04170392081141472, 0.001847776467911899, -0.014928706921637058, -0.00037501935730688274, -0.0097578139975667, 0.06789307296276093, -0.02850915677845478, -0.03366122394800186, 0.027857232838869095, -0.031374797224998474, 0.01122019812464714, -0.012077382765710354, -0.039927225559949875, -0.022961227223277092, 0.029015103355050087, -0.01572752557694912, 0.04686867818236351, -0.019035732373595238, 0.025517961010336876, -0.008097642101347446, 0.013431614264845848, -0.06145654618740082, -0.041907936334609985, 0.04993673041462898, -0.005514509044587612, -0.001385750831104815, 0.019300255924463272, 0.03336929902434349, -0.011455755680799484, 0.013828804716467857, -0.021649755537509918, -0.06733408570289612, 0.016130927950143814, -0.0198613740503788, 0.0011752051068469882, -0.030700834468007088, -0.03803698346018791, 0.004633178934454918, -0.03521847352385521, 0.043548040091991425, -0.005063866265118122, -0.06015925854444504, -0.02691519819200039, -0.06578335911035538, -0.026122942566871643, 0.019929759204387665, -0.015871038660407066, 0.01408669538795948, -0.027933888137340546, 0.016956282779574394, -0.0018081262242048979, 0.009357495233416557, 0.005757968407124281, -0.0039481474086642265, 0.00102785334456712, 0.009550630114972591, -0.0002962174767162651, -0.01083055604249239, 0.04693719744682312, -0.04038909077644348, -0.09750811755657196, 0.011061031371355057, 0.007906650193035603, -0.008620945736765862, -0.04332601651549339, 0.02363947033882141, 0.0028667377773672342, -0.020547544583678246, -0.023730915039777756, 0.028005851432681084, -0.014635295607149601, 0.005093123763799667, 0.024463484063744545, 0.020640047267079353, 0.015654364600777626, 0.003367585362866521, -0.017539972439408302, 0.03158001974225044, 0.02627437934279442, -0.04599862918257713, -0.03293896093964577, 0.03720732033252716, -0.006776593625545502, 0.0658332034945488, 0.03179418668150902, -0.02865503542125225, -0.04553058743476868, -0.02472214587032795, 0.00972458254545927, -0.028898125514388084, -0.021894322708249092, -0.07234957814216614, -0.02456432394683361, -0.03690279647707939, 0.014653780497610569, 0.019845636561512947, -0.0033457858953624964, -0.01066686399281025, -0.04319196939468384, 0.005486290901899338, -0.01582597941160202, -0.016933927312493324, -0.0029490224551409483, 0.006345230620354414, 0.03136667236685753, 0.06071323901414871, -0.03537435829639435, 0.03556561470031738, -0.014276030473411083, 0.012817352078855038, 0.010661470703780651, -0.024667061865329742, -0.05783727020025253, -0.017657462507486343, 0.02956397272646427, 0.008261757902801037, 0.00025428892695344985, -0.01094732154160738, -0.030978001654148102, 0.031319014728069305, -0.07514108717441559, 0.004764966666698456, -0.02746693044900894, -0.008836114779114723, 0.002570056589320302, -0.02204647660255432, 0.028536740690469742, -0.030830934643745422, -0.021848974749445915, -0.024939879775047302, 0.07159870117902756, -0.0014355097664520144, 0.011754280887544155, -0.023528805002570152, -0.032905638217926025, -0.05550583824515343, -0.041065990924835205, 0.026431651785969734, -0.04094233736395836, -0.015654638409614563, -0.029536137357354164, -0.0008017980144359171, 0.061480291187763214, -0.027529558166861534, 0.04647819697856903, 0.06665679812431335, 0.020550692453980446, -0.0003904833865817636, -0.030945198610424995, 0.023444822058081627, 0.042275942862033844, -0.028534483164548874, -0.024618610739707947, -0.00411176634952426, -0.04708005487918854, -0.0000955227660597302, -0.05358303338289261, -0.06442293524742126, -0.020922573283314705, 0.005073675885796547, 0.06932760030031204, -0.02701324038207531, 0.030399490147829056, 0.0270420853048563, -0.061432648450136185, -0.07541923969984055, 0.0309110376983881, -0.0026985316071659327, -0.004082289058715105, 0.049229033291339874, 0.022421516478061676, -0.001812888658605516, 0.03421490639448166, -0.0020508223678916693, 0.0031190153677016497, -0.07435831427574158, 0.07309827208518982, -0.031942564994096756, -0.04480437561869621, 0.0054074060171842575, 0.0653998851776123, -0.035480063408613205, -0.05612814053893089, -0.017919408157467842, -0.005215155892074108, 0.024681197479367256, -0.02544003538787365, 0.01571059226989746, -0.005277967546135187, -0.02140861377120018, 0.020293675363063812, 0.006301455199718475, 0.010117698460817337, 0.030743516981601715, 0.014431161805987358, 0.026155252009630203, -0.05345454812049866, -0.019401313737034798, 0.054781410843133926, -0.005596935283392668, -0.006560928653925657, -0.04099995642900467, -0.030542336404323578, -0.008886195719242096, 0.005734953097999096, 0.06614268571138382, -0.012193150818347931, 0.04008132964372635, 0.04352342709898949, -0.005996620748192072, 0.04504130780696869, 0.015194728039205074, 0.009149760939180851, 0.0314764529466629, -0.03415946662425995, -0.05192188918590546, -0.016751330345869064, 0.025458291172981262, -0.022626429796218872, 0.025235945358872414, -0.043846920132637024, 0.018348833546042442, 0.032192833721637726, 0.03621567785739899, -0.005115483421832323, -0.08760282397270203, -0.014147110283374786, -0.06099151074886322, -0.020300794392824173, -0.032836947590112686, -0.017041275277733803, -0.02524237334728241, 0.011158592067658901, -0.02620205655694008, -0.04345342144370079, 0.013683734461665154, 0.03516783565282822, -0.028301814571022987, 0.012205976992845535, -0.0418880432844162, 0.038875628262758255, -0.05623834580183029, -0.017185276374220848, -0.03792581707239151, 0.020581310614943504, -0.022006869316101074, 0.012605097144842148, -0.003573305206373334, 0.027352025732398033, -0.009032388217747211, -0.00028864777414128184, -0.005902611184865236, 0.031084008514881134, -0.023299958556890488, -0.029862940311431885, -0.0005909806932322681, 0.011689498089253902, -0.0074201892130076885, 0.020253846421837807, 0.04737963527441025, -0.001884422148577869, -0.015458161942660809, 0.016195012256503105, 0.015702813863754272, -0.0350065641105175, 0.006250486709177494, -0.011113031767308712, 0.009442724287509918, -0.022180013358592987, -0.037649206817150116, -0.010838674381375313, -0.061247386038303375, 0.005739590153098106, -0.022124622017145157, 0.019451282918453217, 0.027812110260128975, -0.002981598721817136, 0.00018012266082223505, 0.07332871109247208, 0.00565906148403883, 0.030331142246723175, 0.0011616257252171636, 0.007993278093636036, 0.01943230628967285, -0.03548279404640198, 0.013176717795431614, -0.01092640869319439, 0.009947179816663265, -0.014456414617598057, 0.007585129234939814, 0.007417770102620125, -0.008267064578831196, 0.025865158066153526, -0.016958188265562057, -0.04252881184220314, -0.04408225044608116, -0.012793216854333878, -0.019266119226813316, 0.03455519303679466, 0.0255509614944458, -0.00393682112917304, 0.010227454826235771, -0.022307300940155983, -0.01909581758081913, 0.04630216583609581, -0.053398389369249344, -0.04575282707810402, 0.05631392076611519, -0.01989392749965191, -0.004153714049607515, -0.015113918110728264, -0.057055242359638214, -0.011974284425377846, 0.011700482107698917, -0.01096782460808754, -0.02427036501467228, 0.03354434296488762, 0.013305644504725933, 0.020032722502946854, -0.00829418282955885, 0.003502744249999523, -0.014822088181972504, 0.043641217052936554, -0.0538276731967926, -0.034835781902074814, 0.022078247740864754, -0.01452706940472126, 0.01991553045809269, -0.004735533148050308, -0.010822078213095665, 0.014722430147230625, -0.004627143498510122, -0.010851245373487473, -0.009575139731168747, -0.016141023486852646, 0.016666140407323837, 0.02638106606900692, -0.04916230961680412, 0.0036521947477012873, -0.032177720218896866, 0.05891825631260872, 0.004087797831743956, -0.042644985020160675, -0.019951099529862404, 0.03272588178515434, 0.053027428686618805, -0.022064313292503357, -0.005480658262968063, 0.013691470958292484, 0.0024908047635108232, -0.015559966675937176, -0.002634649397805333, 0.0232633538544178, 0.02120932750403881, 0.048637766391038895, 0.04201598837971687, -0.022924892604351044, 0.03535998612642288, 0.03823459520936012, 0.013901427388191223, -0.010461337864398956, 0.027502039447426796, 0.02001948654651642, -0.00910215638577938, -0.02026573196053505, 0.0066649471409618855, 0.003775503719225526, 0.0020239106379449368, -0.012825587764382362, 0.009990140795707703, -0.04749032482504845, -0.017208930104970932, -0.014611328020691872, -0.02496042288839817, 0.03924626484513283, -0.020272454246878624, -0.014139894396066666, -0.0197676382958889, -0.011778864078223705, -0.00757199851796031, 0.026614293456077576, 0.01912814751267433, -0.02235831506550312, 0.053220055997371674, 0.031690798699855804, 0.006495086941868067, 0.05276285111904144, 0.010851562023162842, 0.01677449606359005, -0.01388938445597887, 0.002421925077214837, -0.0008905809372663498, -0.0024496489204466343, -0.025330981239676476, 0.018997112289071083, -0.03448329120874405, 0.030112236738204956, -0.012328049167990685, -0.00809969287365675, 0.049104347825050354, -0.05040644854307175, -0.001976200845092535, -0.04407764598727226, 0.06799022108316422, -0.029505299404263496, 0.0051371012814342976, 0.042507678270339966, 0.015425462275743484, -0.027010945603251457, 0.062390394508838654, -0.015878086909651756, 0.05480080470442772, 0.004906374495476484, 0.041349608451128006, 0.006299120839685202, 0.04230443388223648, 0.04405473917722702, -0.032768167555332184, 0.0039918445982038975, 0.02534720115363598, 0.0001277745614061132, -0.0259151179343462, -0.01477083656936884, -0.03402654081583023, -0.02942170575261116, -0.03447895497083664, -0.01760929450392723, -0.02390006184577942, 0.041690900921821594, 0.0010927473194897175, -0.06082989275455475, 0.017057694494724274, 0.03132277727127075, -0.029433496296405792, 0.023895449936389923, 0.054568830877542496, 0.012457586824893951, -0.013607699424028397, -0.009908204898238182, -0.011226663365960121, -0.023961206898093224, 0.015589778311550617, -0.04819276183843613, 0.044988010078668594, -0.03196217864751816, -0.046946413815021515, -0.02572123520076275, -0.02402019314467907, -0.023649772629141808, 0.012562671676278114, -0.0136011503636837, -0.04716780409216881, 0.030325215309858322, 0.05236360803246498, 0.011685660108923912, 0.0013904055813327432, -0.057144030928611755, 0.0192192941904068, 0.03999657928943634, 0.046246740967035294, -0.004989999812096357, 0.05813928693532944, 0.0207490436732769, -0.01936119608581066, 0.014541393145918846, -0.05249696224927902, 0.027902698144316673, -0.004747837781906128, -0.0024649372790008783, 0.0033308896236121655, 0.028304722160100937, -0.03583843261003494, -0.051747050136327744, 0.010657801292836666, 0.012965518049895763, -0.00048177517601288855, -0.017688840627670288, -0.05339682474732399, -0.010501186363399029, -0.034795764833688736, -0.012264154851436615, -0.0343906506896019, 0.019238464534282684, -0.02667464315891266, 0.008021178655326366, 0.010111097246408463, -0.06444813311100006, 0.17217905819416046, 0.06329812109470367, 0.04189670458436012, 0.010991617105901241, 0.019006920978426933, 0.048240114003419876, 0.013118957169353962, -0.013886263594031334, 0.022210100665688515, -0.03326033800840378, 0.042046159505844116, 0.003403211012482643, 0.013422979973256588, 0.00808916799724102, 0.003407304408028722, 0.03515498340129852, -0.05905286595225334, 0.01377558521926403, 0.022221090272068977, -0.03897732496261597, -0.048797864466905594, 0.0072447629645466805, -0.019099581986665726, 0.028394950553774834, -0.001343824085779488, 0.026903515681624413, 0.0026951294858008623, -0.045397866517305374, -0.034763943403959274, 0.009903381578624249, 0.030315544456243515, -0.04858468472957611, 0.08465015143156052, 0.02052447944879532, -0.01704486832022667, 0.01366347074508667, 0.011668268591165543, -0.021587727591395378, -0.01973028853535652, 0.02185817062854767, -0.0257974024862051, -0.02731744386255741, 0.033059269189834595, -0.03858817741274834, 0.008529147133231163, 0.014488492161035538, -0.04818936064839363, 0.01753081940114498, 0.022438207641243935, -0.04367274045944214, 0.038390859961509705, -0.0037678969092667103, 0.03397269919514656, -0.02141948975622654, -0.047058671712875366, 0.008520013652741909, 0.0033496550749987364, -0.017679596319794655, -0.021687116473913193, 0.008867893368005753, 0.018434220924973488, 0.008107166737318039, -0.0062090735882520676, 0.015366909094154835, -0.04123919829726219, -0.001546331332065165, 0.015251622535288334, 0.01894349604845047, 0.00898099783807993, 0.007825586944818497, -0.020138688385486603, -0.024103473871946335, 0.012192098423838615, -0.019574180245399475, 0.044059399515390396, 0.019853876903653145, -0.0003566894738469273, 0.02784978784620762, 0.03073662705719471, -0.028053807094693184, -0.006423895247280598, -0.001844237674959004, -0.01843196339905262, -0.007472300436347723, 0.03139708191156387, 0.019142821431159973, -0.02865738421678543, -0.008217990398406982, -0.02055845782160759, 0.029965246096253395, 0.04443822801113129, 0.049510616809129715, -0.011856500059366226, -0.018862785771489143, -0.030218543484807014 ]
NEGenWeb Project Resource Center - Church Outposts of Zion by the Rev. Wm. H. Goode, 1864 (Feb 2003) Have Faith in God by the Rev. Charles W. Savidge, 1914 (Jan 2003) Solitary Places Made Glad by the Rev. Henry T. Davis, 1890. (Dec 2002) A Frontier Life: Sketches and Incidents of Homes in the West, 1902, by Rev. Charles Wesley Wells (biography) A History of Nebraska Methodism: First Half-Century (1854-1904) by Rev. David Marquette, D. D. John W. Iliff - Religious School for Methodists, at University Park, Colorado was founded in his memory by his son, William. (article from Portrait and Biographical Record of Denver and Vicinity, Colorado) All 6 books are part of the Mardos Memorial Library Collection Conferences Booklets of the Methodist Episcopal Church - Abbreviations List, Photo Index The following booklets were sent to us by the people that "cleaned a parsonage and the minister's office" in Nebraska. As we complete the reproductions, the original material is being sent to the NE United Methodist Historical Center (see bottom of this page for the address). NEW Nebraska Conference of the M. E. Church (entire state), Minutes, etc. 1870-1881 (Single volume collection, a reproduction of Conference Minutes - Mardos Memorial Library - completed Feb 2003) Year Districts Nebraska City, Lincoln, Omaha Nebraska, Beatrice, Lincoln, Omaha, Covington Nebraska, Beatrice, Lincoln, Omaha, Kearney, Covington Nebraska, Beatrice, Lincoln, Omaha, Kearney, North Nebraska Omaha, Lincoln, Kearney, Beatrice, Nebraska, North Nebraska (order changes) Omaha, North Nebraska, Kearney, Lincoln, Nebraska, Beatrice (order changes) Omaha, Nebraska City, LIncoln, Kearney, North Nebraska, Beatrice Omaha, North Nebraska, Lincoln, Nebraska City, Beatrice, Kearney Omaha, North Nebraska, Lincoln, Nebraska City, Beatrice, Hastings Last meeting as M. E. Church as one conference for entire state. Division of districts as follows - NEBRASKA CONFERENCE - Nebraska City, Lincoln, Beatrice, York, Hastings NORTH NEBRASKA CONFERENCE - Omaha, Norfolk Nebraska Conference - 1883 (Districts: Nebraska City, Lincoln, Beatrice, York, Hastings, Kearney, Grand Island; Montana Mission) North Nebraska Conference Minutes of the annual conference with statistics, and reports of conference and standing committees. A good source for following the assignments and residences of Methodist Episcopalian Ministers. Some memorials for deceased ministers. These booklets were recovered from trash when a parsonage was being cleaned. Thanks to Jim & Barb Hruza! Districts in this conference for 1892: Elkhorn Valley, Grand Island, Norfolk, and Omaha. Districts in this conference for 1899: Grand Island, Neligh, Norfolk, and Omaha. Note 1: The size of the images used in the above has been dependent on the quality of the paper used for the original printing. Sorry about the loading time for the statistical tables in some issues; have reduced the image size where it was possible to do so and still have legible data. Note 2: Links for all files, 1892-1899 were "swept" and corrections made Mar 2000. Aug 2001: The "fuzzy" image (table) has been replaced. 1897 NEBRASKA CONFERENCE - Complete book of minutes (except a partially torn-out page) Districts: Beatrice, Hastings, Lincoln, Nebraska City and York. (Jan 2003) 1898 Nebraska Conference held at Fairbury, NE - from local newspaper (file on Jefferson County website) Districts: Beatrice, Hastings, Lincoln, Nebraska City and York. 1900 NEBRASKA CONFERENCE - news clippings only, with some advertisements. Districts: Beatrice, Hastings, Lincoln, Nebraska City and York. A portion of a news report for Des Moines Conference (Iowa) was attached. (Hruza. Swept Mar 2000) Methodist Episcopal Church Nebraska Conference - Districts: Beatrice, Hastings, Lincoln, Nebraska City, York (Hruza - Files for 1901 through 1903 swept Mar 2000) 1901 (partial) 1902 1903 1913 - M.E. Church Nebraska Conference (year that NE statewide Conference came into existence) Booklet has no cover, includes summary of church history; lists of ministers with past & current assignments, current status, some obits. Alpha index appeared at back of book & is not complete. NOTE: Some mention of Omaha tornado damage, drought conditions in the district reports. Note: Obituary for the Rev. Jacob Adriance was published in ENGS Fall Quarterly 1999 Vol XXIV, no 3 page 41. Contact Dodge County website for information. Nebraska & Midwest Genealogical Record, Vol. IX, 1931 Marriage Records, First Methodist Church, Plattsmouth, Cass County, NE Record of Baptisms, First Methodist Church, Plattsmouth, Cass County, NE NSGS--Nebraska Ancestree Vol I, no. 3 page 131 - Winter 1978 Crawford Valley Methodism 1882-1957, Plainview, Pierce Co. Vol. 2, no. 2 page 56 - Fall 1979 ME Church, Church Record for Stromsberg, NE (Polk County) ME Church Record, Lexington, Dawson, NE (Baptisms, Marriages) Vol. 4, no. 4 - Spring 1982 Beginnings of the Methodist Church in Nebraska (including list of early ministers and early sermons) Vol 7, no. 1, page 17 - Summer 1984 Third Annual Epworth League Conference and School of Methods, North Platte (Lincoln County), NE - 1 Jul -1 Aug 1897 Vol. 7 no. 1, page 21 - Summer 1984 Highland Methodist Cemetery, Nemaha County, NE Vol. 7 no. 3, page 100 - Winter 1984-5 Blue Springs Methodist Church, Gage County, NE (1878-79 death records) Vol. 12 no. 1 page 12 - Summer, 1989 M.E. Church Cemetery, Davis Creek Twp. Valley Co., NE Vol. 21 no. 3 page 85 - Winter 1998 Macon Methodist Church - Baptism records 1883-1916 List of ministers appointed in 1885 for Nebraska City District as reported by Nemaha County Granger Vol. 22 no. 2 page 49 - Fall 1999 Keene Methodist Church/Cemetery(Kearney County) Methodist Church - News Clips Plattsmouth Journal, Thursday, 21 September 1916: Departure of Rev. F.M. DRULINER, arrival of Rev. Thomas A. TRUSCOTT. Methodist Ministers - Obits HERRICK, Marvin Virgil (1920, KS - 2004, NE) See archives of Grand Island Independent (15 Jan 2004). WESTADT, Dale K. (1918, Belden, NE - 2002, Schuyler, NE) See archives of Columbus Telegram (29 Nov 2002) Reference Links and addresses - Missing Links, Vol. 6, No. 32 - 19 August 2001 The General Commission on Archives and History for The United Methodist Church <http://www.gcah.org/> maintains an archive and library in which historical records and materials about The United Methodist Church are preserved and made available for public and scholarly use. The online catalog is a searchable database of detailed descriptions of the material held at the Archives. Nebraska United Methodist Historical Center, Cochrane-Woods Library, Lower Level, 5000 St. Paul Avenue, Lincoln, NE 68504 Mail: P.O. Box 4553, Lincoln, NE 68504 Telephone # 402-465-2175 Hours: Tuesday, Wednesday & Thursday, 8:00 a.m. - 5:00 p.m. Return to NEGenWeb Project On-Line Library - Journals & News Letters Return to NEGenWeb Project On-Line Library Return to MARDOS Memorial Library - NE book list ยฉ 1999-2004 for NEGenWeb Project by T&C Miller
[ -0.016749192029237747, -0.014549171552062035, 0.019649364054203033, -0.009679991751909256, -0.040753141045570374, 0.02284417487680912, -0.004384704865515232, 0.028262050822377205, 0.0383463129401207, 0.00005609795334748924, 0.010367232374846935, -0.0019671295303851366, 0.012598317116498947, -0.02409420907497406, -0.017028730362653732, -0.02296433597803116, -0.03886294364929199, -0.015582071617245674, 0.009736157022416592, 0.009150415658950806, -0.01655128411948681, -0.0035631866194307804, -0.05297835171222687, -0.026427777484059334, 0.006299805361777544, 0.011815394274890423, 0.011309808120131493, -0.018036827445030212, 0.02946617640554905, 0.0565793514251709, 0.0013119135983288288, -0.01508925948292017, 0.013391065411269665, -0.03508349508047104, -0.016679756343364716, -0.020792048424482346, 0.030787302181124687, -0.02452307567000389, -0.003871510736644268, -0.057557545602321625, 0.011355397291481495, -0.030656907707452774, 0.036839261651039124, -0.006335070822387934, -0.03917057067155838, 0.008844712749123573, -0.023225178942084312, -0.006495586596429348, 0.04327678680419922, -0.03637654706835747, 0.026776427403092384, -0.026976868510246277, 0.012429658323526382, -0.01436151284724474, 0.013884195126593113, -0.00028623678372241557, 0.016693593934178352, -0.02944352850317955, -0.028976157307624817, -0.0005909072933718562, 0.01929509826004505, 0.018446562811732292, 0.04023052379488945, -0.04633779078722, 0.006420471705496311, 0.01019267551600933, -0.01175058726221323, -0.0019087765831500292, 0.009016875177621841, -0.006763101555407047, -0.01956922374665737, -0.029766255989670753, -0.020504537969827652, -0.018914246931672096, 0.02713262476027012, -0.012699078768491745, -0.01100731547921896, -0.007646367885172367, -0.0034056412987411022, -0.01570332795381546, 0.005937780253589153, 0.05359245836734772, 0.04193085432052612, 0.018080076202750206, -0.04609953984618187, -0.00952211208641529, -0.033673156052827835, 0.014041181653738022, 0.03326684609055519, 0.013394217938184738, 0.012288788333535194, 0.05828792229294777, -0.002962059574201703, -0.0306501816958189, 0.07044263184070587, 0.05216721445322037, -0.03450743108987808, 0.05207885429263115, 0.022021060809493065, 0.0039532603695988655, 0.04378573223948479, 0.019705232232809067, -0.03142910823225975, 0.04980337992310524, -0.045156124979257584, -0.012784554623067379, 0.014182285405695438, 0.0023693267721682787, -0.0037544043734669685, -0.05580304190516472, -0.006473811808973551, -0.020681897178292274, 0.02235986478626728, -0.002383963903412223, -0.00451374426484108, 0.05614631995558739, -0.013684546574950218, 0.0009331291075795889, -0.02823806367814541, 0.03356928005814552, 0.032182447612285614, 0.0061124530620872974, 0.007191712502390146, -0.024325866252183914, 0.023795906454324722, -0.006692107766866684, -0.050927892327308655, 0.07043971121311188, -0.02581655979156494, -0.016170691698789597, -0.022387584671378136, -0.05737229064106941, -0.024717558175325394, 0.01746284030377865, 0.005584400147199631, 0.0030327560380101204, -0.004243974573910236, 0.014364554546773434, 0.023789461702108383, -0.06350427120923996, 0.03135747089982033, 0.03526384383440018, -0.01278088241815567, 0.07492788136005402, -0.0123697305098176, 0.04966653138399124, -0.007247857749462128, 0.0005330690182745457, -0.04887918010354042, 0.013983404263854027, -0.04125143960118294, 0.028788410127162933, 0.023099277168512344, 0.03229783475399017, 0.022887082770466805, 0.023804014548659325, 0.0056955828331410885, -0.015926821157336235, -0.008700965903699398, 0.027337223291397095, -0.02953694947063923, 0.023887112736701965, -0.006449977867305279, 0.016105730086565018, -0.0258747898042202, 0.0061172121204435825, -0.016564959660172462, -0.022143183276057243, -0.03211033344268799, -0.07285847514867783, 0.0018224968807771802, 0.021089397370815277, -0.03649721294641495, 0.03438986465334892, 0.028606530278921127, 0.018822496756911278, 0.04058702290058136, -0.002083427971228957, 0.016343198716640472, 0.04025910049676895, -0.058669544756412506, -0.003304690821096301, 0.029583347961306572, 0.016614291816949844, -0.004841075278818607, -0.0070117623545229435, 0.012282274663448334, -0.020401155576109886, -0.04551771655678749, -0.0234078262001276, -0.0008717990713194013, 0.0417676717042923, -0.01957866922020912, 0.029883960261940956, -0.00803760439157486, 0.004960410762578249, -0.04707065597176552, -0.011524644680321217, -0.02296149916946888, -0.040942028164863586, -0.03813358396291733, 0.04212410748004913, -0.03297366946935654, 0.007006461266428232, -0.010302410461008549, -0.016906309872865677, 0.03366152197122574, 0.05680542066693306, -0.04875900596380234, -0.012786537408828735, 0.052815672010183334, 0.008462484925985336, -0.00414871284738183, -0.007724271155893803, 0.0001640988193685189, 0.039021167904138565, -0.033017147332429886, 0.03198953717947006, -0.052644070237874985, -0.018432408571243286, 0.0135192284360528, 0.052617043256759644, 0.02654046192765236, 0.06192077323794365, -0.03861716017127037, -0.014884773641824722, 0.023259257897734642, 0.06935787200927734, -0.043150998651981354, -0.015196045860648155, -0.015713753178715706, 0.02767186611890793, 0.028001926839351654, 0.049479223787784576, 0.05428680405020714, 0.059051696211099625, 0.04788907617330551, 0.04896866902709007, -0.03626735508441925, 0.03948672115802765, -0.0003670084697660059, -0.007554459851235151, 0.0316014289855957, 0.02161712944507599, -0.016773156821727753, 0.03072962909936905, -0.02150832489132881, -0.0064905136823654175, -0.022964172065258026, 0.037055160850286484, -0.020895343273878098, 0.011621495708823204, 0.003530466463416815, 0.03493913635611534, -0.046009644865989685, -0.0055653490126132965, 0.044057853519916534, 0.06218282878398895, -0.0702463835477829, -0.00989794172346592, 0.00745956227183342, 0.006785382982343435, -0.0029229535721242428, 0.014077510684728622, 0.015965882688760757, 0.03527311235666275, 0.0031874668784439564, 0.021974997594952583, -0.012826264835894108, -0.026280716061592102, -0.0035784512292593718, -0.060373980551958084, -0.02828182838857174, -0.032678671181201935, -0.05267670750617981, 0.01828121580183506, 0.05817069858312607, -0.06002180650830269, 0.028338028118014336, 0.005327824503183365, -0.01805512048304081, -0.03292042762041092, 0.00941411592066288, 0.024535244330763817, 0.03536279872059822, 0.023839056491851807, -0.036867305636405945, 0.0449698306620121, 0.026142770424485207, 0.02932334691286087, -0.03868216648697853, -0.027666792273521423, -0.025556530803442, -0.022900165989995003, 0.027888132259249687, -0.014576980844140053, -0.0012185105588287115, -0.0002107415348291397, -0.045037854462862015, -0.08351822942495346, -0.010863913223147392, -0.010825617238879204, -0.002513311104848981, -0.0037270719185471535, -0.033372391015291214, 0.03689180687069893, 0.01484985277056694, -0.03357626125216484, 0.03406621515750885, 0.024143939837813377, -0.037125106900930405, 0.058095213025808334, 0.018867533653974533, -0.01923060417175293, -0.05900931358337402, 0.052966006100177765, 0.05426191911101341, 0.007772122509777546, -0.03579651936888695, -0.02820776402950287, -0.05185583978891373, -0.006982996128499508, 0.0025141173973679543, -0.021845713257789612, -0.052546385675668716, 0.052240755409002304, 0.04251033440232277, -0.05085492506623268, 0.031417716294527054, -0.020507633686065674, -0.04634913429617882, -0.042529456317424774, -0.006352951750159264, 0.02087440900504589, 0.005026268307119608, 0.002863484201952815, 0.002788746729493141, -0.022481556981801987, 0.022281743586063385, -0.016570398584008217, 0.060446273535490036, -0.04848475381731987, 0.012224908918142319, 0.0059880041517317295, -0.011435508728027344, -0.03839459642767906, 0.027489058673381805, -0.00438828906044364, 0.019885674118995667, 0.007682850584387779, 0.00285959430038929, 0.02165353298187256, 0.03083975240588188, -0.008192849345505238, -0.02907305210828781, 0.061094980686903, -0.007783330511301756, -0.0006765220314264297, 0.0071042790077626705, 0.019284646958112717, 0.026797045022249222, 0.01909414865076542, 0.00038968303124420345, -0.02126014418900013, -0.014830322936177254, -0.045206546783447266, 0.03282972052693367, 0.0071976399049162865, 0.06178867816925049, -0.10301367193460464, 0.06734458357095718, 0.0024040546268224716, -0.0308060422539711, 0.042176034301519394, -0.043622054159641266, -0.008497376926243305, 0.05109799653291702, -0.0009895233670249581, 0.040428947657346725, -0.02735423669219017, -0.009775417856872082, -0.01179781649261713, 0.021424992009997368, 0.04566213861107826, -0.012396996840834618, 0.04019904509186745, -0.00014392806042451411, -0.021019721403717995, -0.03344511240720749, -0.012600001879036427, -0.0065846433863043785, -0.024221761152148247, 0.006052716169506311, -0.006165965925902128, -0.045374613255262375, -0.05308929458260536, 0.05572008341550827, 0.031747765839099884, 0.0281523410230875, -0.018905198201537132, 0.02369239367544651, 0.016798103228211403, 0.018522923812270164, 0.02638976275920868, -0.0005241565522737801, 0.012301799841225147, -0.05136977136135101, 0.05950208008289337, 0.011847796849906445, -0.009219099767506123, -0.009973825886845589, -0.02243882790207863, -0.02699027583003044, 0.0332278236746788, 0.001030731713399291, -0.012939701788127422, -0.042260922491550446, 0.015405855141580105, 0.003859039396047592, 0.041311491280794144, -0.011738973669707775, 0.0054909042082726955, -0.009595174342393875, 0.03188694268465042, 0.017492637038230896, -0.03479359298944473, -0.0002057932724710554, 0.002071449300274253, 0.028920568525791168, -0.023343272507190704, 0.0034012009855359793, -0.04181843250989914, -0.02752459980547428, -0.0283216442912817, -0.041533201932907104, -0.009156494401395321, 0.026849308982491493, -0.0008781102951616049, 0.012544255703687668, -0.06358695775270462, 0.020915405824780464, 0.037247590720653534, 0.0029859940987080336, -0.00866295862942934, -0.0009807442547753453, 0.027661291882395744, 0.0004208302707411349, 0.04330134764313698, 0.014973830431699753, -0.0337020605802536, 0.0011155229294672608, -0.04542301222681999, 0.03413565084338188, -0.003645901335403323, -0.035579632967710495, 0.02584032528102398, 0.055987801402807236, -0.013035956770181656, 0.05859386548399925, -0.027087651193141937, 0.009336543269455433, 0.01578846573829651, 0.04792233556509018, -0.03938516974449158, -0.029909789562225342, 0.07002399861812592, -0.028708411380648613, -0.03777444362640381, 0.03944898396730423, 0.05215076357126236, -0.012933408841490746, 0.01745661161839962, 0.005172348581254482, -0.043234046548604965, 0.03883058950304985, -0.054656676948070526, -0.009923591278493404, -0.042180005460977554, -0.01489248313009739, 0.014257065020501614, -0.004953439347445965, 0.03321222588419914, 0.0026434012688696384, 0.012169701978564262, -0.04741327092051506, -0.056927889585494995, -0.037338826805353165, 0.01577095128595829, -0.016134144738316536, 0.016377495601773262, 0.023309210315346718, 0.005706551019102335, -0.010634193196892738, -0.0394466295838356, -0.00026365890516899526, -0.006644117180258036, 0.002541308058425784, 0.021953551098704338, -0.003961803391575813, 0.0053635649383068085, 0.03379347175359726, -0.0201799925416708, -0.03261592611670494, -0.013774466700851917, -0.0033948137424886227, -0.009286333806812763, -0.055065929889678955, 0.006300680339336395, -0.029352938756346703, -0.007725433446466923, -0.0300599317997694, 0.009857124648988247, 0.024089524522423744, 0.02176864817738533, 0.012347482144832611, 0.0040426780469715595, 0.017788594588637352, 0.015616437420248985, -0.05381404235959053, 0.026852700859308243, 0.03421103209257126, -0.03189034014940262, -0.047386545687913895, -0.0012086903443560004, -0.0033104282338172197, 0.055104147642850876, 0.04429934546351433, -0.013027087785303593, -0.02062895894050598, -0.06492199003696442, -0.014832199551165104, -0.024191314354538918, -0.047529418021440506, -0.04163234308362007, -0.002583568450063467, -0.019731400534510612, 0.038535226136446, 0.02387716993689537, -0.0004661425482481718, -0.015607733279466629, -0.04015754908323288, 0.008695417083799839, -0.030585847795009613, -0.031162716448307037, -0.00014882440154906362, -0.022582920268177986, -0.02503347024321556, 0.04630965739488602, -0.01452094316482544, -0.0017805820098146796, -0.0053433761931955814, 0.010323863476514816, 0.018480032682418823, -0.028961321339011192, -0.026315173134207726, -0.0407952219247818, -0.018871473148465157, -0.0009029898792505264, -0.001540851779282093, 0.034092552959918976, -0.019573798403143883, 0.03857262432575226, -0.05311727151274681, -0.04494361951947212, -0.03034764900803566, 0.010796264745295048, -0.000946803018450737, -0.012956713326275349, 0.02535673975944519, -0.023049311712384224, 0.007065886631608009, -0.0019646710716187954, 0.041992105543613434, 0.017477920278906822, -0.019633213058114052, -0.043704695999622345, -0.05368834733963013, -0.05442459508776665, -0.027090296149253845, 0.0649174302816391, -0.022969454526901245, -0.02577374316751957, -0.03977293148636818, -0.040450796484947205, 0.023061420768499374, 0.010242757387459278, 0.03235945105552673, 0.05622239410877228, -0.04603523388504982, -0.009361213073134422, -0.014003466814756393, 0.03825674578547478, 0.01969587802886963, -0.00035875491448678076, 0.009008076041936874, 0.0017294291174039245, -0.01908038929104805, 0.05582151934504509, -0.020330846309661865, -0.04367147013545036, -0.05629073083400726, -0.002320977160707116, 0.07684694230556488, 0.025966735556721687, 0.05593105033040047, -0.004929458722472191, -0.06129899248480797, -0.030633581802248955, 0.051516093313694, -0.018302403390407562, 0.011761261150240898, 0.039025332778692245, -0.00563589995726943, 0.002925131469964981, -0.008395571261644363, 0.005314187612384558, 0.00557735376060009, -0.020939303562045097, 0.041915152221918106, -0.027927599847316742, -0.06922059506177902, 0.009832805022597313, 0.06234966591000557, -0.0531793050467968, -0.01901417225599289, 0.02290908247232437, 0.020717494189739227, 0.014561142772436142, -0.03129801154136658, 0.0070822411216795444, 0.0037664189003407955, -0.012634855695068836, 0.02086184360086918, 0.025081858038902283, -0.018597975373268127, 0.023575861006975174, 0.028869235888123512, 0.05106088146567345, -0.025733385235071182, 0.04862547293305397, 0.013621748425066471, 0.009369108825922012, -0.005550188012421131, -0.027788491919636726, -0.03100595623254776, 0.013342257589101791, 0.015162434428930283, 0.047134771943092346, -0.00290486472658813, 0.04960085451602936, 0.020939141511917114, -0.016831867396831512, 0.05732171609997749, 0.008605354465544224, 0.0018004181329160929, 0.03011581115424633, -0.02931872010231018, -0.04241470992565155, 0.006965122651308775, 0.0075824023224413395, 0.010764102451503277, 0.0230768583714962, -0.05209425464272499, -0.004776918329298496, 0.07604099065065384, 0.002073677722364664, -0.004965791944414377, -0.04871131852269173, -0.02936008758842945, -0.03197012469172478, -0.04155924543738365, -0.04947131499648094, -0.030064329504966736, -0.005352688021957874, -0.0018271104199811816, -0.011978838592767715, -0.03233058750629425, -0.005494860000908375, 0.03065088763833046, -0.03999829292297363, 0.02512294612824917, -0.01668591797351837, 0.018512319773435593, -0.025691697373986244, -0.020594771951436996, -0.06715374439954758, 0.008101212792098522, -0.008364114910364151, -0.02191406674683094, -0.011385743506252766, 0.04855593666434288, 0.015097620896995068, -0.01630064658820629, 0.0135654890909791, 0.0032421699725091457, -0.03610691800713539, -0.07734972983598709, 0.0021865079179406166, 0.04044320434331894, -0.010004105046391487, 0.031564243137836456, 0.03976471722126007, -0.0237427931278944, 0.046779558062553406, 0.012598155997693539, -0.0514538548886776, -0.01827709749341011, -0.008092318661510944, 0.017173506319522858, -0.01384104136377573, -0.046057675033807755, -0.030395997688174248, 0.011661674827337265, -0.05887344479560852, -0.007428781595081091, -0.0012396734673529863, 0.011091765947639942, 0.0294682364910841, -0.015575365163385868, 0.010393969714641571, 0.07104053348302841, 0.036405447870492935, 0.014329809695482254, 0.012667138129472733, 0.02637646161019802, 0.03074396774172783, 0.027402307838201523, 0.001053370418958366, 0.05376192182302475, -0.00972377136349678, -0.04456521198153496, 0.029637353494763374, -0.008674676530063152, -0.018753280863165855, 0.030475452542304993, -0.02287890389561653, -0.021608900278806686, -0.04946303740143776, -0.01610848307609558, -0.007811511401087046, 0.03835199773311615, 0.005640443880110979, -0.0382278636097908, 0.04588354751467705, -0.01735411398112774, -0.023604165762662888, 0.04118109866976738, -0.05526650696992874, -0.032554253935813904, 0.03575008735060692, 0.000020666861018980853, -0.016426440328359604, -0.04364702105522156, -0.039979685097932816, 0.01772567257285118, -0.03100050799548626, 0.002346089342609048, -0.01995047554373741, 0.026572376489639282, -0.011336968280375004, 0.046064313501119614, -0.0022269212640821934, 0.007995984517037868, -0.010012594051659107, 0.0472957044839859, -0.031979113817214966, -0.059070419520139694, 0.007015037816017866, -0.00858866237103939, 0.038487497717142105, 0.01994950883090496, -0.004123762249946594, -0.0025152992457151413, -0.010472438298165798, 0.0002705009246710688, -0.005160509143024683, 0.03907082974910736, 0.03411700576543808, 0.012340269982814789, -0.01160681527107954, -0.00031644009868614376, -0.037374310195446014, 0.0318579375743866, 0.018247324973344803, -0.0652511939406395, -0.03146269917488098, 0.033633358776569366, 0.07065154612064362, -0.012934726662933826, 0.04184724763035774, 0.01689273491501808, 0.042502500116825104, -0.01073774229735136, 0.019556542858481407, -0.018568994477391243, 0.027438919991254807, 0.017484622076153755, 0.007390331011265516, -0.020583106204867363, 0.06521854549646378, 0.0528356172144413, -0.01943448930978775, -0.01065410953015089, 0.03055584989488125, 0.015648778527975082, -0.0320415273308754, 0.0025173998437821865, -0.004001785069704056, 0.015379062853753567, 0.0320395901799202, -0.01282112393528223, 0.030503448098897934, -0.052620720118284225, 0.02808202989399433, 0.00957349594682455, -0.032459042966365814, 0.06720971316099167, -0.04359104484319687, -0.027857370674610138, -0.02257741242647171, 0.011896686628460884, -0.010103612206876278, 0.053753506392240524, -0.01285562664270401, 0.003360870061442256, 0.044220179319381714, 0.06578943878412247, -0.014809845015406609, 0.037271320819854736, 0.02177700772881508, 0.003579653101041913, -0.0563199408352375, 0.003575523616746068, -0.010584374889731407, 0.013876947574317455, -0.03467797487974167, 0.0018866719910874963, -0.01367287989705801, 0.0223531536757946, -0.033055417239665985, -0.03615359216928482, 0.03555929660797119, -0.031147893518209457, -0.018565597012639046, -0.0443965345621109, 0.03294126316905022, -0.02366855926811695, 0.01402199175208807, 0.0536004975438118, 0.0017896787030622363, -0.00520256208255887, 0.043728992342948914, -0.02490873634815216, 0.0227341428399086, 0.010934571735560894, 0.02315848134458065, 0.013762536458671093, 0.04899735748767853, 0.04683756083250046, -0.04698360711336136, -0.025301091372966766, 0.020852843299508095, 0.0017907515866681933, -0.05673505738377571, -0.024078369140625, -0.006068113725632429, 0.0121921980753541, 0.002527586417272687, -0.018303709104657173, 0.0028969538398087025, 0.018657946959137917, 0.013523701578378677, -0.042224250733852386, 0.0007053345325402915, 0.008146679028868675, -0.026550328359007835, 0.03659335896372795, 0.02528531476855278, 0.05549976974725723, -0.010486063547432423, -0.024536916986107826, -0.020070848986506462, -0.026822760701179504, 0.007402751129120588, -0.009002231061458588, 0.032800301909446716, -0.017924951389431953, 0.018555261194705963, -0.0378560870885849, -0.05096745118498802, -0.01696639321744442, -0.011288412846624851, -0.04959026724100113, -0.024542903527617455, 0.01979038119316101, 0.051552124321460724, 0.0018559446325525641, 0.022324031218886375, -0.05182445049285889, 0.006663834676146507, 0.05395833030343056, 0.05161529406905174, -0.006296019535511732, 0.047408413141965866, 0.03978559747338295, -0.012196706607937813, 0.0447390079498291, 0.0014769179979339242, 0.04608535021543503, -0.023899879306554794, -0.024572143331170082, -0.031129179522395134, -0.025345319882035255, -0.01266434881836176, -0.06703487783670425, 0.004129262641072273, 0.0021318052895367146, 0.009211300872266293, -0.041806649416685104, -0.037901464849710464, -0.020235629752278328, -0.027286125347018242, -0.015471781603991985, -0.04452429711818695, 0.025996198877692223, 0.03904719278216362, -0.0015633015427738428, 0.01649346388876438, -0.05298229679465294, 0.1556723415851593, 0.01580473966896534, 0.015287981368601322, -0.012924960814416409, 0.02060258388519287, 0.07694490253925323, 0.04814834147691727, -0.0014883650001138449, 0.014111719094216824, -0.03368149697780609, 0.018952423706650734, -0.003952883183956146, 0.022973954677581787, 0.007241751533001661, 0.01970052905380726, 0.04467356204986572, -0.054289817810058594, 0.008363033644855022, 0.028268735855817795, -0.060065146535634995, -0.04749219864606857, 0.0074610342271625996, -0.008570095524191856, 0.036656178534030914, -0.005030127242207527, 0.02623804286122322, 0.04953718185424805, -0.044996168464422226, -0.010717649012804031, -0.025079425424337387, 0.002633078023791313, -0.018569592386484146, 0.029729537665843964, 0.010332710109651089, -0.06705479323863983, 0.022987227886915207, -0.013113138265907764, -0.02405223622918129, 0.011422257870435715, 0.00218947627581656, -0.021710317581892014, -0.005248076748102903, 0.01850873790681362, -0.05528697371482849, 0.042233627289533615, 0.055342450737953186, -0.02985296957194805, -0.02617878094315529, 0.03257313370704651, -0.031421415507793427, 0.06035469472408295, -0.033987876027822495, 0.0029465872794389725, 0.010598546825349331, -0.054101478308439255, -0.004264547489583492, 0.032390445470809937, -0.02711907960474491, -0.00003765906149055809, -0.008939215913414955, 0.03292428329586983, 0.02262110449373722, -0.022017009556293488, 0.004121563863009214, -0.030830053612589836, 0.003219815669581294, 0.03348884731531143, 0.007095543202012777, -0.016810234636068344, -0.01184969674795866, -0.019483186304569244, -0.003769844537600875, -0.029805580154061317, -0.024524010717868805, 0.017284361645579338, 0.027041392400860786, 0.013471587561070919, 0.03055473603308201, -0.0013101455988362432, -0.03408685699105263, -0.01644476316869259, -0.02550717256963253, -0.006769143510609865, -0.013572610914707184, 0.022409172728657722, 0.0636725053191185, -0.04191366955637932, -0.028117597103118896, -0.031049136072397232, 0.05512017384171486, 0.032406244426965714, 0.021569734439253807, -0.03683801740407944, -0.020002499222755432, -0.026675807312130928 ]
Wassili Stepanowitsch Sawoiko (, wiss. Transliteration Vasilij Stepanoviฤ Zavojko; *ย  in Prochorowka im Gouvernement Poltawa, Russisches Kaiserreich; โ€  in Welyka Metschetnja im Gouvernement Podolien, Russisches Kaiserreich) war ein Admiral der Kaiserlich Russischen Marine. Biografie Sawoiko kam in einer adligen kleinrussischen Familie im Gouvernement Poltawa auf die Welt. Er studierte als angehender Marineoffizier an der Marineschule von Nikolajew und nahm im Jahr 1827 an der Schlacht von Navarino teil. 1835 bis 1838 machte er zwei Erdumseglungen. 1840 heuerte er bei der Russisch-Amerikanischen Kompagnie an und wurde bald zum Administrator des Hafens von Ochotsk. Er kam zur รœberzeugung, dass der Hafen fรผr den Handel eher ungeeignet war, da er zu weit vom Einzugsgebiet der Lena lag. Aus diesem Grund befรผrwortete er die Grรผndung von Ajan. Wรคhrend der Erkundung der dortigen Landschaft zusammen mit Dmitri Orlow entdeckte Sawoiko die Mรผndung des Amur. Die Erforschung der Gegend wurde spรคter von Gennadi Newelskoi fortgesetzt, der auch den Tatarensund entdeckte. Sawoikos Bericht รผber die potenzielle Bedeutung des Amur fรผhrte zur Forschungsexpedition 1846 und schlieรŸlich zur Einverleibung der Primorje-Region zum Russischen Kaiserreich. 1850 wurde Sawoiko vom Generalgouverneur Ostsibiriens Nikolai Murawjow-Amurski zum Militรคrgouverneur Kamtschatkas und zum Leiter des Hafens Petropawlowsk ernannt. Unter der Leitung Sawoikos wurden dort ein Kai, eine GieรŸerei und neue Armeebaracken gebaut. Sawoiko unterstรผtzte die landwirtschaftliche ErschlieรŸung Kamtschatkas. Wรคhrend des Krimkriegs und der Belagerung von Petropawlowsk-Kamtschatski im Jahre 1854 durch Englรคnder und Franzosen konnte Sawoiko eine erfolgreiche Verteidigung der Stadt gegen die zahlenmรครŸig รผberlegenen Gegner organisieren und die Landungstruppen zurรผckschlagen. Es konnte sogar eine britische Fahne erobert werden. 1855 war Sawoiko fรผr die Verlagerung des pazifischen Haupthafens Russlands von Petropawlowsk zur Amur-Mรผndung verantwortlich, wo eigens die Stadt Nikolajewsk am Amur gegrรผndet wurde. Die Operation gelang trotz rauer winterlicher See und der Prรคsenz zahlenmรครŸig รผberlegener feindlicher Flottenverbรคnde. 1856 kehrte Sawoiko nach Sankt Petersburg zurรผck, wo er als Generalauditor der Flotte diente. In der Folge erhielt er mehrere hohe Auszeichnungen und wurde zum Admiral befรถrdert. Er war mit Juliana Wrangell verheiratet und hatte insgesamt 11 Kinder: fรผnf Sรถhne und sechs Tรถchter. Er starb im Alter von 85 Jahren auf seinem Landgut in Podolien. Zu Ehren von Sawoiko trug das Dorf Jelisowo in den Jahren 1897 bis 1924 seinen Namen. Literatur ลฝdanko, M. Pamjati admirala Vasilija Stepanoviฤa Zavojko. Vladivostok, 1908. Zavojko V.S. Oborona Petropavlovska protiv anglo-francuzskoj eskadry v 1854-m godu. [Iz zapisok]. Soobลกฤ. Ju. Barten'ev. โ€” Rะ, 1898. Admiral (Russisches Kaiserreich) Person im Krimkrieg (Russisches Kaiserreich) Weltumsegler Russe Geboren 1812 Gestorben 1898 Mann
[ -0.01053753774613142, -0.004915173631161451, -0.03449898958206177, 0.00693553639575839, -0.04242946207523346, 0.0004042467044200748, -0.012936485931277275, 0.04043617472052574, 0.01729845441877842, 0.02475615218281746, 0.02659427560865879, -0.017785968258976936, 0.000997292809188366, -0.036126043647527695, -0.011665476486086845, -0.003895108588039875, -0.042509421706199646, -0.04529750347137451, -0.018256941810250282, -0.01193370670080185, 0.025216910988092422, 0.0006193333538249135, -0.08115299791097641, -0.04794555902481079, -0.030978094786405563, 0.03872023522853851, -0.007156813982874155, 0.021506480872631073, 0.05548860877752304, 0.03468191251158714, -0.012397262267768383, -0.04000316932797432, 0.030498124659061432, -0.06229120492935181, -0.00006179521005833521, -0.03518360108137131, 0.020120693370699883, -0.05507633462548256, -0.0008603704045526683, -0.059704218059778214, 0.01993604190647602, -0.006903800647705793, 0.053899966180324554, 0.009853050112724304, -0.0428411029279232, 0.00806406605988741, -0.022025616839528084, -0.04731765016913414, -0.018159937113523483, -0.04065948724746704, 0.004285117611289024, -0.021276982501149178, 0.014752060174942017, -0.008039654232561588, -0.0178405549377203, 0.005097412038594484, 0.019551752135157585, -0.04117855057120323, 0.00036353268660604954, 0.02493762969970703, 0.017500000074505806, -0.00989264901727438, 0.05006878077983856, -0.051300372928380966, 0.01051398552954197, 0.013247079215943813, 0.0007779559236951172, -0.019254835322499275, 0.03971322998404503, -0.03539113700389862, -0.008247461169958115, -0.010462346486747265, -0.011210372671484947, -0.04041318967938423, -0.03418608382344246, 0.023380711674690247, -0.016657499596476555, -0.011447307653725147, 0.006215499248355627, 0.0315101221203804, 0.04159935191273689, 0.05529743805527687, 0.01165083609521389, 0.02134113386273384, -0.04559051990509033, -0.012780177406966686, -0.03211770951747894, 0.012662973254919052, -0.003684109076857567, 0.026659872382879257, -0.002826250623911619, 0.04850113391876221, -0.003508572932332754, -0.02397197298705578, 0.04325489699840546, 0.04523530229926109, -0.018602287396788597, 0.03803751990199089, 0.0020908345468342304, 0.0060254475101828575, 0.06403631716966629, 0.0214080847799778, 0.007319750729948282, 0.05164787545800209, -0.021555103361606598, -0.01166909746825695, 0.012666759081184864, -0.004509008955210447, -0.014895984902977943, -0.029385387897491455, 0.022551007568836212, 0.011149901896715164, 0.030218124389648438, -0.005435138009488583, 0.0041119190864264965, 0.04503660649061203, -0.015241401270031929, 0.04200724884867668, -0.014614488929510117, 0.029615823179483414, -0.0023658948484808207, 0.025378797203302383, 0.04432564228773117, 0.0005025453865528107, 0.01480075903236866, -0.04826584830880165, -0.03406072035431862, 0.06890349835157394, -0.02987484820187092, -0.0511682890355587, -0.006173083558678627, -0.055040355771780014, -0.01526134368032217, 0.019612601026892662, 0.0041991001926362514, 0.027269629761576653, -0.006286179181188345, -0.004042455926537514, 0.013925734907388687, -0.043191902339458466, 0.04625386744737625, -0.0009925690246745944, 0.009800215251743793, 0.08839835226535797, -0.013475240208208561, 0.012442225590348244, 0.020845642313361168, -0.003828380722552538, -0.05497494712471962, 0.0006874095415696502, -0.05466284975409508, 0.007499446161091328, -0.0001013921428238973, 0.01342195738106966, 0.023513661697506905, 0.02323211170732975, 0.014246516861021519, 0.027091948315501213, 0.030956750735640526, 0.03716886416077614, -0.0067267888225615025, -0.02842468023300171, 0.02103799767792225, 0.026399902999401093, -0.010323381051421165, 0.040141694247722626, 0.008332639001309872, -0.008244945667684078, 0.003166703972965479, -0.004025876987725496, 0.028835205361247063, -0.008457161486148834, -0.03526458144187927, 0.014216926880180836, 0.02762817218899727, 0.057689446955919266, 0.05254296958446503, 0.011153867468237877, 0.03302941843867302, 0.02852054312825203, -0.031207725405693054, 0.005538161378353834, 0.007944033481180668, 0.026333630084991455, 0.008666902780532837, -0.0035328587982803583, -0.036079470068216324, -0.008823210373520851, -0.034508734941482544, -0.03132034093141556, 0.006482962053269148, 0.019657757133245468, -0.0014986785827204585, 0.005828593857586384, 0.013713223859667778, 0.034332193434238434, -0.023598432540893555, 0.01850861869752407, 0.004799866583198309, -0.044202979654073715, -0.023594330996274948, 0.074251689016819, -0.01580357737839222, 0.001170316245406866, 0.017184320837259293, -0.03195808827877045, 0.044386979192495346, 0.08049792051315308, -0.03073623590171337, -0.00733634177595377, 0.031636931002140045, 0.00513544213026762, -0.007040741387754679, -0.0244782492518425, -0.012921157293021679, 0.027276666834950447, -0.04657720774412155, 0.047398943454027176, -0.038413166999816895, -0.035062335431575775, 0.062453243881464005, 0.02398168295621872, 0.02383265644311905, 0.05248450115323067, 0.0005268646054901183, 0.002026541391387582, 0.007184638176113367, 0.06898666173219681, -0.003998744301497936, -0.0005397758795879781, -0.014184261672198772, 0.031661149114370346, 0.0028291763737797737, 0.07197733223438263, 0.05669490620493889, 0.013916556723415852, 0.0266446303576231, 0.037972237914800644, -0.027936698868870735, -0.007689621765166521, 0.009306970983743668, 0.035268232226371765, 0.00843917764723301, 0.042462121695280075, -0.016380906105041504, 0.028975332155823708, -0.02234772965312004, 0.019671985879540443, -0.013603360392153263, 0.016930436715483665, -0.04697949066758156, 0.028136204928159714, -0.01159573346376419, 0.036101844161748886, -0.035217754542827606, 0.006322839297354221, 0.027389083057641983, 0.030742432922124863, -0.02168077416718006, -0.002837503794580698, -0.037205491214990616, -0.007865484803915024, -0.00694594020023942, 0.009587458334863186, 0.013697831891477108, 0.041148506104946136, 0.02290189266204834, 0.021134940907359123, -0.00044495781185105443, -0.04612244665622711, -0.028448883444070816, -0.03711666166782379, -0.01779942214488983, -0.06130807474255562, -0.06371504068374634, 0.01377128530293703, 0.058630384504795074, -0.05247478559613228, -0.013358945026993752, -0.007208125665783882, -0.014153312891721725, -0.04092555493116379, -0.00011767084652092308, 0.07567492872476578, -0.001980782952159643, 0.049314286559820175, -0.00662358570843935, 0.024608444422483444, 0.0023658399004489183, 0.0255819633603096, -0.022021092474460602, -0.006118905730545521, -0.01944834366440773, -0.018281571567058563, 0.047682128846645355, 0.016170430928468704, -0.03326244279742241, -0.011909065768122673, -0.04283558577299118, -0.04310658574104309, -0.003475662786513567, 0.016212496906518936, -0.00581161305308342, 0.021753011271357536, -0.02965552732348442, 0.04162168875336647, 0.023522987961769104, -0.03291301429271698, 0.02819197066128254, 0.03700452297925949, -0.018182486295700073, 0.053055331110954285, -0.009346331469714642, 0.011404736898839474, -0.044202663004398346, 0.05073298513889313, 0.04266972467303276, 0.008425069972872734, -0.03842144459486008, -0.029168715700507164, -0.028630904853343964, 0.017448874190449715, 0.015234973281621933, -0.024133874103426933, -0.04443112760782242, 0.03473897650837898, 0.0203101709485054, -0.0630950853228569, 0.050513844937086105, -0.048788025975227356, -0.052461493760347366, -0.040847040712833405, -0.03712722286581993, 0.03920234367251396, 0.01696109212934971, 0.020751018077135086, -0.011553969234228134, -0.011217289604246616, -0.013349153101444244, 0.00608268566429615, 0.05402791127562523, -0.03871221840381622, 0.041858986020088196, 0.01584191992878914, -0.013808357529342175, 0.023000892251729965, 0.012340079993009567, -0.007679297123104334, -0.01390276849269867, 0.009467348456382751, 0.020092984661459923, 0.027763649821281433, 0.025480302050709724, 0.0006879892316646874, -0.017745397984981537, 0.0683310255408287, -0.04954785108566284, 0.005929167848080397, 0.04017730802297592, 0.010235492140054703, 0.04834960773587227, 0.006062062457203865, 0.013878126628696918, -0.009732181206345558, -0.03484942391514778, -0.050469428300857544, -0.002401640871539712, 0.03229878097772598, 0.06221676617860794, -0.05652345344424248, 0.06456664204597473, 0.011692910455167294, -0.053885430097579956, 0.02646877057850361, -0.053819119930267334, 0.0024429159238934517, 0.06356044113636017, 0.013650316745042801, 0.0357581190764904, -0.01244840957224369, -0.00523298280313611, 0.002947497181594372, 0.025520743802189827, 0.023044362664222717, 0.017885437235236168, 0.04509230703115463, -0.012543662451207638, -0.010953957214951515, -0.014284681528806686, -0.033332593739032745, -0.004832904785871506, -0.019946014508605003, 0.00010110057337442413, 0.0056097558699548244, -0.060462284833192825, -0.04990651458501816, 0.017910096794366837, 0.028299590572714806, 0.03231069818139076, -0.023680033162236214, 0.03410325199365616, 0.00962032750248909, 0.025234030559659004, 0.06989935785531998, -0.024718455970287323, -0.009076214395463467, -0.04102930426597595, 0.05355532467365265, 0.018567480146884918, -0.013760967180132866, -0.014441229403018951, -0.03151039406657219, -0.030300069600343704, 0.029323145747184753, 0.014869535341858864, -0.004606293048709631, -0.027553951367735863, 0.03489881381392479, 0.0006516044377349317, -0.011303928680717945, -0.03857361152768135, -0.022442705929279327, -0.023214830085635185, 0.05677752569317818, 0.05152241513133049, -0.049206677824258804, -0.00656414870172739, -0.01896861381828785, 0.04262923449277878, 0.035548482090234756, -0.003710951656103134, -0.03450101613998413, -0.006127546075731516, -0.0211934931576252, -0.056967590004205704, 0.001366563607007265, 0.009114598855376244, 0.041979722678661346, 0.0047884052619338036, -0.05339540168642998, 0.03827628865838051, 0.050948381423950195, 0.008760765194892883, -0.014168165624141693, -0.013602414168417454, -0.00043856340926140547, 0.0010288123739883304, 0.024261852726340294, -0.0488901287317276, -0.036767132580280304, 0.02257135696709156, -0.06099041923880577, 0.015419693663716316, -0.006712783128023148, 0.023264218121767044, 0.001602271106094122, -0.019605597481131554, -0.005320755764842033, 0.052015528082847595, 0.012143258936703205, -0.01265787798911333, 0.009374585933983326, 0.024925384670495987, -0.059702325612306595, -0.03812999650835991, 0.042975377291440964, -0.010806090198457241, -0.038006048649549484, 0.03439275920391083, 0.05205176770687103, -0.03677215427160263, -0.005557778757065535, 0.0019443236524239182, -0.03515448793768883, 0.010982588864862919, -0.045635465532541275, -0.0018747803987935185, -0.015890419483184814, -0.011649544350802898, 0.021068943664431572, -0.05777673423290253, -0.002218434354290366, -0.0036338018253445625, -0.02018829993903637, -0.03696698695421219, -0.08523427695035934, -0.043805573135614395, 0.017537420615553856, -0.009782507084310055, 0.015855437144637108, -0.005479795858263969, -0.02125265635550022, 0.012277436442673206, -0.03964422270655632, 0.0007827724912203848, -0.006980472709983587, -0.053096890449523926, 0.00011014868505299091, 0.012108003720641136, -0.004071895033121109, -0.011704096570611, 0.0316896066069603, -0.02431710809469223, -0.000976752140559256, -0.009832737036049366, -0.03290657326579094, -0.026536088436841965, -0.017189260572195053, 0.02054748684167862, -0.0013212587218731642, -0.026315975934267044, -0.025219768285751343, -0.005276822950690985, 0.02190213091671467, -0.02969495579600334, -0.00303463451564312, 0.009901332668960094, 0.009289814159274101, -0.03430476039648056, 0.03350742906332016, 0.0313754566013813, -0.0684170350432396, 0.005566703621298075, 0.011466938070952892, 0.00028335413662716746, 0.028065497055649757, -0.0039703985676169395, -0.02562064677476883, -0.07181429862976074, -0.053717657923698425, -0.023465465754270554, -0.024659020826220512, -0.02013339288532734, -0.027171993628144264, -0.0061216801404953, -0.006695740856230259, 0.05908123776316643, 0.006129440851509571, -0.015544754453003407, 0.007096915505826473, -0.02962256595492363, -0.038231976330280304, -0.0053310031071305275, -0.05909137800335884, -0.01835736259818077, -0.023034704849123955, -0.025494862347841263, 0.05839669704437256, 0.016345033422112465, 0.027999650686979294, -0.006732303649187088, 0.003580029821023345, 0.006528055761009455, -0.0022708980832248926, -0.04229733720421791, -0.036951541900634766, 0.0014791707508265972, 0.01619682088494301, 0.00531943142414093, 0.0033123267348855734, -0.022569995373487473, 0.046566352248191833, -0.07070925086736679, -0.006749310996383429, -0.039367012679576874, -0.04103298857808113, 0.00048315568710677326, 0.010785308666527271, 0.05078491196036339, -0.004028756637126207, 0.012985012494027615, -0.019027691334486008, 0.05328834429383278, 0.04100729897618294, 0.005741841625422239, -0.016540689393877983, -0.04063323140144348, -0.04019613564014435, -0.04781108722090721, 0.0474935919046402, -0.026150699704885483, -0.011118756607174873, -0.031100349500775337, 0.0018069228390231729, 0.045050594955682755, -0.003431315068155527, 0.02872302196919918, 0.018720127642154694, -0.013412607833743095, -0.008623757399618626, -0.02776961214840412, 0.007502598688006401, 0.021617311984300613, -0.01052077580243349, -0.015453373081982136, -0.0011183916358277202, -0.02697063237428665, 0.03611288219690323, -0.05200009047985077, -0.05447377637028694, -0.04750308394432068, 0.0017925992142409086, 0.04307926446199417, 0.01083381474018097, 0.04357786476612091, 0.007373122498393059, -0.042329560965299606, -0.009035386145114899, 0.05410416051745415, 0.05612139776349068, 0.0037856760900467634, 0.04976890981197357, -0.007333970628678799, 0.012090723030269146, 0.007797567639499903, 0.013330165296792984, 0.009500250220298767, -0.014743270352482796, 0.06047208607196808, -0.01470133475959301, -0.030297132208943367, 0.022940168157219887, 0.07094824314117432, -0.04729409143328667, -0.0438343845307827, -0.008976921439170837, -0.0073013766668736935, 0.01221186388283968, -0.02595699392259121, 0.01116158813238144, -0.011818266473710537, -0.001851374632678926, 0.024829808622598648, 0.03194886073470116, 0.032020509243011475, 0.04217890277504921, -0.02364850603044033, 0.026774317026138306, -0.031595952808856964, 0.03664417564868927, 0.023426080122590065, -0.025980109348893166, -0.03754217177629471, -0.03239947929978371, -0.02182428166270256, -0.02099577710032463, -0.007931174710392952, 0.03467574715614319, 0.0009614057489670813, 0.025722038000822067, 0.0558781735599041, -0.007895165123045444, 0.0526902973651886, -0.014671016484498978, -0.00456022284924984, 0.00044417413300834596, -0.03834560513496399, -0.05929955095052719, -0.01792818121612072, 0.02828780747950077, 0.006437436677515507, 0.011466351337730885, -0.04762349650263786, -0.011082370765507221, 0.05163958668708801, 0.011926802806556225, -0.002741473261266947, -0.05725190415978432, -0.04328499361872673, -0.06280486285686493, -0.02576134167611599, -0.04117532819509506, 0.01553601399064064, 0.007910984568297863, -0.009749376215040684, -0.015083725564181805, -0.027958594262599945, 0.00855987798422575, -0.01979921944439411, -0.0006841524736955762, 0.019418111070990562, -0.012461317703127861, 0.025904078036546707, -0.03208464756608009, -0.059775736182928085, -0.03746609017252922, 0.01115373708307743, 0.015443872660398483, -0.00785685796290636, -0.009245138615369797, 0.04167337715625763, -0.006265292875468731, 0.0278276726603508, 0.017543945461511612, 0.01794475130736828, 0.01797563210129738, -0.0396236814558506, 0.002415209077298641, 0.03186800703406334, 0.003958312328904867, 0.06243036687374115, 0.02768738567829132, -0.03883063793182373, 0.03637984022498131, 0.01705808937549591, -0.03557952865958214, -0.004957736935466528, -0.003211801638826728, 0.00719648040831089, -0.018184693530201912, -0.056305330246686935, -0.013783512637019157, -0.03762198984622955, -0.03484741970896721, 0.008101274259388447, 0.024124622344970703, 0.04162339121103287, 0.011895104311406612, -0.006148107349872589, -0.012341734021902084, 0.02708371728658676, -0.004330171272158623, 0.024716965854167938, 0.015899574384093285, 0.02910485677421093, 0.034048836678266525, -0.031981322914361954, 0.020122205838561058, 0.034646354615688324, 0.009383279830217361, -0.03596547991037369, 0.03752274438738823, 0.04662356153130531, -0.001763379666954279, 0.04735385254025459, -0.0404997356235981, -0.07071280479431152, -0.053838763386011124, -0.0029982083942741156, 0.009478935040533543, 0.027890559285879135, -0.006914117839187384, -0.006310975179076195, 0.016888052225112915, -0.013845855370163918, -0.04935602471232414, -0.002475086832419038, -0.04877353832125664, -0.027723999693989754, 0.040491823107004166, -0.025562552735209465, -0.023488353937864304, 0.0026810024864971638, -0.03897910937666893, 0.003002672456204891, -0.0471530519425869, 0.002038955222815275, -0.015196681022644043, 0.01134035550057888, 0.01706714741885662, 0.04345547780394554, -0.0163117628544569, -0.022132419049739838, 0.02121654339134693, 0.03041861765086651, -0.014753439463675022, -0.028122426941990852, -0.0023136097006499767, 0.04271532967686653, 0.0005334631423465908, -0.006109125446528196, -0.051057565957307816, -0.0161144956946373, -0.004460678435862064, -0.02812347188591957, -0.021360106766223907, 0.012398475781083107, 0.013920605182647705, 0.06115412339568138, -0.02656451240181923, -0.026433361694216728, -0.024059858173131943, 0.010019246488809586, -0.0016361866146326065, 0.010597366839647293, -0.04056946560740471, 0.020307140424847603, 0.03547222912311554, -0.024988198652863503, 0.042195722460746765, 0.04669234901666641, 0.03127666562795639, -0.008367130532860756, 0.021081624552607536, -0.022870635613799095, 0.03773273155093193, 0.03714892640709877, 0.008336610160768032, 0.0012785764411091805, 0.02832883410155773, 0.04870887100696564, -0.020529797300696373, -0.02239540033042431, 0.053066715598106384, 0.03240952268242836, -0.022855661809444427, -0.007206871639937162, -0.04883303493261337, -0.001414316357113421, 0.03270108997821808, -0.019268663600087166, 0.005782562308013439, -0.008923038840293884, -0.008379808627068996, -0.0017579131526872516, -0.012353777885437012, 0.02867922931909561, -0.014730718918144703, -0.014531058259308338, -0.01884792558848858, -0.030845729634165764, 0.04861752688884735, 0.05403204634785652, 0.03650926053524017, 0.03202954679727554, 0.01166060846298933, 0.03372375667095184, -0.034351885318756104, 0.02818411961197853, 0.03260448947548866, 0.01104864850640297, -0.05371248722076416, -0.005268297158181667, 0.025239989161491394, 0.009132394567131996, -0.02318675071001053, -0.0025154417380690575, -0.02124199829995632, 0.031222747638821602, -0.03698122128844261, -0.010063054040074348, 0.01686977781355381, -0.042888395488262177, -0.00011521342094056308, -0.0459199920296669, 0.02003590762615204, -0.03377161920070648, -0.0029516417998820543, 0.03314399719238281, -0.019629105925559998, -0.013936059549450874, 0.0578886941075325, 0.001180796418339014, 0.04489779472351074, 0.02343701757490635, 0.0696319043636322, -0.0013373112305998802, 0.039581265300512314, 0.038244593888521194, -0.05680519714951515, -0.01172007154673338, 0.014581596478819847, 0.0053345379419624805, -0.06698247790336609, -0.02397160232067108, -0.04967448487877846, 0.01605052873492241, -0.01820943132042885, -0.04492485150694847, 0.02052219770848751, 0.06124701350927353, 0.0036946553736925125, -0.05172964185476303, 0.00028749892953783274, 0.017290201038122177, -0.024127516895532608, 0.03362123295664787, -0.009517683647572994, 0.040861714631319046, 0.02695304900407791, -0.013235040940344334, -0.0013226118171587586, -0.01991148665547371, -0.015002083964645863, -0.049659792333841324, 0.05803360790014267, -0.00922461785376072, -0.018362460657954216, -0.017398647964000702, -0.053818367421627045, -0.011666731908917427, 0.012467395514249802, -0.04087984934449196, -0.04980923980474472, 0.02288224548101425, 0.07374565303325653, 0.00809566956013441, -0.003700397675856948, -0.01811208389699459, 0.027820464223623276, 0.05706500634551048, 0.07022839784622192, 0.01906716264784336, 0.002489050617441535, 0.019182782620191574, -0.03498141095042229, 0.02517303265631199, -0.032261475920677185, 0.03442346304655075, -0.0004907692200504243, -0.006179098505526781, -0.02157253958284855, 0.030653217807412148, -0.03285636007785797, -0.06439309567213058, 0.009942549280822277, 0.002996007679030299, 0.029861614108085632, -0.0222601480782032, -0.07772690057754517, -0.02687164954841137, -0.07251685857772827, -0.005561873782426119, -0.026008419692516327, 0.0007436739397235215, -0.0015065071638673544, 0.01966303028166294, 0.00814863108098507, -0.05435623973608017, 0.15438644587993622, 0.05042893439531326, 0.032955095171928406, -0.004397974815219641, 0.0283341221511364, 0.05172009766101837, 0.022532649338245392, -0.027990169823169708, -0.01434199046343565, -0.05432289466261864, 0.040843166410923004, -0.011621447280049324, 0.0008857942302711308, 0.0072609614580869675, 0.023090392351150513, 0.047475818544626236, -0.026705514639616013, 0.028732087463140488, 0.022925833240151405, -0.03714565187692642, -0.05124487355351448, 0.03738020360469818, -0.004416479729115963, -0.013021520338952541, 0.01451944001019001, 0.035643983632326126, 0.02651878260076046, -0.05241755396127701, -0.022629540413618088, -0.04762106388807297, -0.02546587772667408, -0.02184934914112091, 0.0227026529610157, -0.000031746068998472765, -0.012243318371474743, 0.03234657645225525, -0.012404176406562328, -0.026526503264904022, 0.01547310035675764, 0.008756543509662151, -0.013923106715083122, -0.0216896440833807, 0.05322737246751785, -0.0194507148116827, 0.030416244640946388, 0.020258888602256775, -0.04363630712032318, 0.019137362018227577, 0.024133823812007904, -0.03853139281272888, 0.05784331262111664, -0.035574741661548615, 0.035687822848558426, -0.03080330789089203, -0.014145786873996258, 0.01029924489557743, -0.010796425864100456, -0.041222188621759415, -0.018538707867264748, -0.00791486818343401, 0.02826160378754139, -0.0033959134016186, -0.017915239557623863, 0.02048259787261486, -0.04927882179617882, 0.025826528668403625, 0.011706159450113773, -0.00041067719575949013, -0.019087957218289375, -0.04274992644786835, 0.018143214285373688, -0.025535745546221733, -0.02735423482954502, -0.012408757582306862, 0.037655964493751526, 0.02330508828163147, -0.010095685720443726, 0.03520003706216812, 0.015958720818161964, -0.05107344314455986, -0.008790427818894386, -0.010085172019898891, -0.0018646259559318423, -0.025111861526966095, 0.022662485018372536, 0.03775734454393387, -0.01428375393152237, -0.00988827832043171, -0.032278336584568024, 0.04899471253156662, 0.06661675125360489, 0.008084161207079887, -0.03204251080751419, -0.024966126307845116, -0.0049512251280248165 ]
Four boys and four girls are on this week's ballot. Voting ends at noon on Friday. The fourth full week of high school sports in Section V is complete and it's time to vote. Democrat and Chronicle readers now can vote for their favorite fall athletes of the week once per hour. Voting for the week of Sept. 17-22 ends at noon Friday.
[ 0.026330243796110153, 0.010607992298901081, -0.009991616010665894, 0.03194181248545647, -0.02090412564575672, 0.04502222314476967, 0.005147411487996578, 0.02414184808731079, 0.010706501081585884, 0.004530374426394701, 0.02181333675980568, 0.012006270699203014, 0.013821476139128208, -0.015148931182920933, -0.023773713037371635, -0.01945282705128193, -0.009071717970073223, -0.03577866777777672, -0.014338682405650616, 0.0382874570786953, -0.009456409141421318, 0.04692597687244415, -0.051744379103183746, -0.027629530057311058, -0.02855195663869381, 0.00937886256724596, 0.02435228042304516, -0.00884080957621336, 0.026298103854060173, 0.053736839443445206, -0.020535636693239212, -0.056138139218091965, 0.04593057185411453, -0.058802418410778046, -0.03253830224275589, -0.015526344999670982, 0.055065155029296875, 0.012143752537667751, -0.02593270130455494, -0.04823848232626915, 0.013658356852829456, -0.04004516825079918, -0.0074976421892642975, -0.012227688916027546, -0.019479522481560707, -0.009645722806453705, -0.0084620276466012, -0.016548359766602516, 0.01770060695707798, -0.03144647553563118, 0.015185301192104816, -0.01966520957648754, 0.03910535201430321, -0.018647989258170128, 0.001753952237777412, 0.007565157953649759, 0.018503442406654358, 0.014719273895025253, -0.008961141109466553, 0.04221014305949211, 0.02008422650396824, 0.00442145299166441, 0.02051057107746601, -0.05529540777206421, 0.02425149828195572, -0.010765701532363892, -0.015160014852881432, -0.010461314581334591, 0.04488072916865349, -0.01474058162420988, -0.013433476909995079, -0.004008202813565731, -0.04301651194691658, -0.018870942294597626, 0.010323320515453815, -0.010648349300026894, -0.015090961940586567, -0.00025798691785894334, -0.0026059243828058243, 0.02821599319577217, -0.014141087420284748, 0.0411122664809227, -0.005758353509008884, -0.01509143877774477, -0.01977519690990448, -0.028978923335671425, -0.014917595311999321, 0.010211731307208538, 0.035658594220876694, -0.010928463190793991, -0.012266096659004688, 0.04871445149183273, -0.01086240354925394, -0.038369353860616684, 0.043698590248823166, 0.024320444092154503, -0.02623167634010315, -0.004497180227190256, 0.03387856110930443, -0.01865675114095211, 0.02035624161362648, 0.0043316674418747425, 0.006703310180455446, 0.03191715478897095, -0.03905734792351723, -0.019131027162075043, -0.004026453476399183, -0.014043370261788368, 0.006431409623473883, -0.012974157929420471, 0.022710498422384262, -0.026651781052350998, 0.008770015090703964, 0.02166256494820118, -0.014160421676933765, 0.02332877367734909, -0.00007834412099327892, 0.05489368736743927, -0.04388447478413582, -0.006766780745238066, 0.0628272294998169, 0.01631295122206211, 0.004264646675437689, -0.003274577436968684, 0.020211996510624886, -0.029577715322375298, -0.06069760024547577, 0.01867212913930416, -0.03865576535463333, -0.025540795177221298, -0.012198487296700478, -0.033267535269260406, 0.0036368996370583773, -0.002896382939070463, -0.012921929359436035, 0.058402784168720245, -0.011196836829185486, 0.013830604963004589, 0.02475380152463913, -0.06639742851257324, 0.06459648162126541, 0.009296298027038574, 0.026577146723866463, 0.07330404967069626, 0.008081796579062939, 0.010235728695988655, -0.008413851261138916, -0.006765405181795359, -0.019725613296031952, 0.05722394585609436, -0.03579511120915413, 0.030982403084635735, -0.019629433751106262, -0.0016710702329874039, -0.006605521310120821, -0.01719501242041588, 0.009341158904135227, -0.0038354392163455486, 0.02662983164191246, 0.03371858596801758, -0.037496671080589294, 0.004020172171294689, -0.030655037611722946, 0.025812380015850067, 0.0013530795695260167, 0.030056267976760864, -0.023004688322544098, -0.02833738550543785, -0.02398141473531723, 0.014546386897563934, 0.02827545255422592, -0.005043892189860344, 0.017770783975720406, 0.025566453114151955, 0.008660071529448032, 0.041917189955711365, 0.04119179770350456, -0.01577439345419407, 0.037163056433200836, 0.04056653007864952, -0.034694187343120575, -0.004997262265533209, -0.007171450648456812, 0.10297156870365143, -0.0141153484582901, 0.013666362501680851, 0.004513284657150507, -0.01838134601712227, -0.04143704101443291, -0.03460526838898659, 0.009875002317130566, 0.02124064229428768, -0.019867895171046257, -0.0005002387333661318, 0.004815568216145039, -0.010329562239348888, -0.023082751780748367, 0.0367586575448513, 0.0051460787653923035, -0.013821303844451904, -0.037435587495565414, 0.06498093903064728, -0.024280650541186333, 0.058238305151462555, -0.06367308646440506, -0.03488081693649292, 0.016999758780002594, 0.06532615423202515, -0.021636132150888443, -0.01498024445027113, 0.03871545195579529, -0.004776396322995424, -0.03536636754870415, -0.02293919026851654, 0.004559732042253017, -0.002802240662276745, -0.01891830377280712, 0.06203426793217659, 0.015808479860424995, -0.019681433215737343, 0.006747704464942217, 0.023793241009116173, 0.05912723392248154, 0.045384302735328674, 0.009975367225706577, -0.006115743890404701, 0.017672251909971237, 0.0316036157310009, -0.01880824565887451, -0.007747061084955931, 0.008305943571031094, 0.0452205166220665, 0.027890527620911598, 0.0698382556438446, 0.049173954874277115, 0.013912862166762352, 0.008078324608504772, 0.04227760061621666, -0.010854238644242287, 0.03210283815860748, 0.005708449985831976, -0.0026738233864307404, 0.03520280867815018, 0.053431373089551926, -0.03305394574999809, 0.035014376044273376, -0.011540664359927177, -0.02222355827689171, -0.03239617496728897, 0.04026050865650177, 0.019253015518188477, 0.04333373159170151, 0.02465372160077095, 0.03466472029685974, -0.011057041585445404, 0.02858600579202175, 0.04122179001569748, 0.01659630611538887, -0.04140317067503929, 0.013147963210940361, 0.026690857484936714, 0.0334349051117897, 0.016407454386353493, -0.00046009031939320266, 0.0027125992346554995, -0.005325127858668566, 0.017114892601966858, 0.02807629108428955, -0.01662554405629635, -0.03549579530954361, -0.00964756216853857, -0.06598171591758728, -0.03346844017505646, -0.033270105719566345, -0.0512748584151268, 0.007954933680593967, 0.02582051232457161, -0.06691794097423553, 0.04150247946381569, -0.041833169758319855, 0.006393103394657373, -0.020589634776115417, 0.014240876771509647, 0.047921232879161835, 0.0010121529921889305, 0.03414658084511757, -0.05658109113574028, 0.02723054401576519, 0.015153673477470875, 0.03828437998890877, -0.0368787944316864, -0.019519364461302757, 0.01216808333992958, 0.012294774875044823, 0.039930619299411774, -0.0497802197933197, -0.00009022037556860596, -0.022837573662400246, -0.04618189483880997, -0.07131490856409073, 0.04613935574889183, 0.03014232963323593, 0.00532169034704566, -0.018984876573085785, -0.041608501225709915, 0.028958629816770554, 0.020294055342674255, -0.04988494887948036, 0.04462111368775368, 0.05748451501131058, -0.02457045577466488, 0.05621562525629997, 0.042779579758644104, -0.005385147873312235, -0.03865521773695946, 0.04480593651533127, 0.060215964913368225, 0.03159486502408981, -0.03190750256180763, -0.015259964391589165, -0.04917825385928154, -0.026567012071609497, 0.029890239238739014, -0.021252695471048355, -0.05476885661482811, 0.025997629389166832, 0.019876448437571526, -0.060102175921201706, 0.009249263443052769, -0.07779110968112946, -0.009905465878546238, -0.02560531720519066, -0.026716839522123337, 0.01690630242228508, 0.033320408314466476, 0.021964749321341515, 0.011662563309073448, -0.031451255083084106, 0.04617695510387421, 0.008355158381164074, 0.0656457170844078, -0.022948648780584335, 0.025405507534742355, 0.05771646648645401, -0.011657025665044785, 0.011537238955497742, 0.010953945107758045, -0.03905409947037697, -0.02600712515413761, 0.03091771900653839, -0.013701872900128365, 0.02971756085753441, 0.026326987892389297, -0.0010798015864565969, -0.006276498548686504, 0.01807720959186554, -0.031757622957229614, -0.005173958837985992, -0.0012895724503323436, 0.02093534544110298, 0.018565502017736435, 0.025661418214440346, -0.006756566930562258, -0.01705419085919857, -0.02514658495783806, -0.04302619397640228, 0.02694525197148323, 0.034173451364040375, 0.052500441670417786, -0.06229690834879875, 0.07142625749111176, -0.016557477414608, 0.013234328478574753, 0.046747274696826935, -0.04689675197005272, -0.009975627064704895, 0.046294428408145905, 0.031925614923238754, 0.03497857227921486, -0.01299234852194786, 0.00007953079330036417, 0.007209493312984705, 0.019712958484888077, -0.0033155714627355337, 0.04932624101638794, 0.03875577077269554, 0.006705503445118666, -0.009506549686193466, -0.015745090320706367, -0.026700424030423164, 0.0037962717469781637, -0.05725137144327164, -0.01974104531109333, -0.01003479678183794, -0.03426690027117729, -0.03724417835474014, 0.001780683291144669, 0.010736183263361454, 0.06160888448357582, -0.02687239460647106, 0.0456172376871109, -0.004437779542058706, 0.00934066716581583, 0.04750525578856468, -0.00661261472851038, 0.03709001466631889, -0.061382539570331573, 0.019435295835137367, 0.01596001908183098, -0.02036897838115692, -0.0037339201662689447, -0.029219504445791245, -0.006150827277451754, -0.0002622226602397859, 0.044515036046504974, -0.0352003276348114, -0.056034497916698456, 0.01704811304807663, -0.001054354477673769, 0.00925388839095831, -0.025379646569490433, -0.01100032776594162, -0.00205325148999691, 0.013368039391934872, 0.024110179394483566, -0.03074699640274048, 0.023960018530488014, -0.036774758249521255, 0.03683118522167206, 0.06354423612356186, -0.011842267587780952, -0.03133408725261688, -0.04152410477399826, -0.06261366605758667, -0.03242350369691849, 0.018726393580436707, 0.04678671434521675, -0.016929401084780693, 0.014649178832769394, -0.0547516904771328, 0.030743125826120377, 0.023484382778406143, 0.01759626343846321, -0.04873356223106384, 0.0031181713566184044, 0.000814479251857847, 0.019465195015072823, 0.036363717168569565, 0.0013062983052805066, -0.014224343933165073, 0.018830901011824608, -0.026046913117170334, 0.00633247522637248, -0.02440262958407402, -0.033698100596666336, -0.01438932865858078, -0.008656026795506477, 0.002386181615293026, 0.04382999986410141, -0.033221930265426636, 0.023165009915828705, -0.009165100753307343, 0.022686317563056946, -0.00842764601111412, -0.03720155730843544, 0.07723025977611542, -0.0021014041267335415, -0.006852802354842424, 0.042895808815956116, 0.013099191710352898, -0.024770036339759827, 0.008745762519538403, 0.01441841572523117, -0.02290510945022106, 0.045046739280223846, -0.0384376235306263, -0.0034716164227575064, -0.024218639358878136, -0.036694493144750595, 0.04401509836316109, -0.022880569100379944, -0.003541811602190137, -0.026193391531705856, -0.04724991321563721, -0.03491935878992081, -0.08367285132408142, -0.009692568331956863, 0.006275259889662266, 0.006769835017621517, -0.0061335028149187565, 0.018583975732326508, -0.03107970766723156, -0.033472515642642975, -0.04137662425637245, 0.0422593392431736, 0.029937656596302986, -0.005135918501764536, 0.02228454500436783, 0.009617616422474384, 0.008681833744049072, 0.0068932934664189816, 0.009393323212862015, -0.03886694088578224, 0.01582830771803856, -0.0221914853900671, -0.022088753059506416, -0.05473298206925392, -0.026600772514939308, -0.03884309530258179, -0.00587419280782342, -0.02112094685435295, 0.0256724264472723, -0.04299391806125641, 0.03227439150214195, 0.015026350505650043, 0.03103734366595745, -0.010469237342476845, 0.03895944356918335, -0.03668329119682312, 0.05994853749871254, 0.01918545551598072, -0.08243007957935333, -0.04024078696966171, 0.018076008185744286, -0.018644196912646294, 0.0485803484916687, -0.00018128268129657954, -0.0156813133507967, -0.0743950605392456, -0.0766473039984703, -0.010326458141207695, -0.03541024401783943, -0.013229675590991974, -0.04887883737683296, -0.005908747669309378, -0.017194274812936783, 0.022596094757318497, 0.0004064605163875967, 0.008512251079082489, 0.0063148802146315575, -0.04778936877846718, 0.010553557425737381, -0.03168124333024025, -0.005169756710529327, -0.01565486751496792, -0.040554143488407135, -0.008721878752112389, 0.048917438834905624, 0.013448767364025116, 0.012695851735770702, 0.00936166848987341, 0.02431652322411537, -0.011234695091843605, -0.01646406203508377, -0.04748378321528435, -0.029230618849396706, -0.005236369092017412, -0.004140753764659166, 0.022622281685471535, -0.007705858442932367, -0.030405215919017792, 0.037053029984235764, -0.02919035777449608, -0.0007031289860606194, -0.031238019466400146, -0.016507171094417572, 0.008330972865223885, -0.023291734978556633, 0.05598350241780281, -0.01934622786939144, 0.008736721239984035, -0.034859176725149155, 0.037590332329273224, 0.04175318777561188, 0.007171321660280228, -0.024419017136096954, 0.007417809683829546, -0.00833248533308506, -0.04816136136651039, 0.03384774923324585, -0.025308748707175255, -0.020450059324502945, -0.054070718586444855, 0.004447828978300095, 0.05170823261141777, -0.015449446626007557, 0.04536636173725128, 0.05171015113592148, -0.010974552482366562, -0.014542394317686558, -0.011002966202795506, -0.01651306264102459, 0.01948271319270134, 0.03687866032123566, -0.016817843541502953, -0.039755262434482574, -0.010532841086387634, 0.044284190982580185, -0.04094333574175835, -0.040774866938591, -0.04280179738998413, 0.012876540422439575, 0.07397282868623734, -0.024730119854211807, 0.05164073035120964, -0.015512943267822266, -0.049630988389253616, -0.03190961852669716, 0.03425448760390282, 0.004350240342319012, -0.016122305765748024, 0.057409245520830154, 0.0033364901319146156, -0.009179463610053062, 0.018820829689502716, 0.009237796999514103, -0.035903219133615494, -0.04502132534980774, 0.04349790886044502, -0.03020421788096428, -0.02810792252421379, 0.037483230233192444, 0.06951901316642761, -0.05601203441619873, -0.021612869575619698, 0.012848597019910812, -0.00572474580258131, 0.029329724609851837, -0.015526843257248402, 0.019401023164391518, -0.022426268085837364, -0.02274959161877632, -0.01346953772008419, 0.022397054359316826, -0.013435481116175652, 0.03088984079658985, -0.00851441826671362, 0.037103284150362015, -0.03586309030652046, -0.0015180498594418168, 0.03545185551047325, -0.01737343892455101, -0.033986661583185196, -0.023101024329662323, 0.019921420142054558, -0.01450294442474842, -0.02576003037393093, 0.049913812428712845, -0.010111335664987564, -0.006953278090804815, 0.038579829037189484, -0.013571400195360184, 0.022494912147521973, -0.0163970198482275, -0.013851829804480076, 0.0025760368444025517, -0.008625400252640247, -0.04147398844361305, -0.04431520029902458, 0.002681830432265997, 0.03768611326813698, 0.014437219128012657, -0.05054369568824768, -0.00701829744502902, 0.06815832108259201, 0.016420187428593636, -0.0069354260340332985, -0.07610653340816498, -0.03991879150271416, -0.01404376607388258, -0.026733210310339928, -0.007494489662349224, -0.010272454470396042, -0.01335411798208952, 0.04298863932490349, -0.003121348563581705, -0.017480161041021347, 0.012217981740832329, 0.012799407355487347, -0.008955758064985275, 0.02579173445701599, -0.05217907950282097, -0.003010063199326396, -0.030480263754725456, -0.07121729105710983, -0.07237415760755539, -0.002669108333066106, -0.027255577966570854, -0.00653923861682415, -0.023120110854506493, 0.01698533445596695, 0.014464708976447582, 0.033870991319417953, 0.01989419013261795, 0.02162824757397175, -0.0034395712427794933, -0.03709934651851654, 0.000812413461972028, 0.024320917204022408, 0.007651721592992544, 0.027114946395158768, 0.05567521974444389, -0.028761612251400948, 0.04467698931694031, -0.015557386912405491, -0.006136734504252672, -0.014460072852671146, 0.025763070210814476, 0.001782186096534133, 0.006518994923681021, -0.053050097078084946, -0.043652500957250595, -0.03777652978897095, -0.028970686718821526, 0.024681389331817627, -0.007138991262763739, 0.011251275427639484, -0.022295482456684113, -0.02127048373222351, -0.016119137406349182, 0.058394383639097214, -0.003232257906347513, 0.01790316216647625, 0.011435712687671185, 0.02829936519265175, 0.02409759722650051, -0.0004950222792103887, 0.019622843712568283, 0.026013080030679703, 0.033319514244794846, -0.02399638295173645, 0.026850329712033272, -0.029926467686891556, -0.011841441504657269, 0.03375314921140671, -0.011565758846700191, -0.028205353766679764, -0.03840283304452896, -0.010235496796667576, 0.0038601134438067675, 0.037647511810064316, 0.015353672206401825, -0.0100039541721344, 0.038906048983335495, -0.04923090711236, -0.038671787828207016, -0.00749692739918828, -0.06928718835115433, -0.02881339006125927, 0.04634891450405121, -0.02074657939374447, -0.006891161669045687, -0.0014552944339811802, -0.043509114533662796, 0.0038658692501485348, 0.011834679171442986, -0.009169013239443302, -0.01497660856693983, 0.028320081532001495, 0.012682437896728516, 0.03707921504974365, 0.0026570616755634546, 0.0063428375869989395, 0.004221568815410137, 0.05153292790055275, -0.07363691180944443, -0.04785097762942314, 0.021997926756739616, 0.009955565445125103, 0.012004828080534935, 0.00046817181282676756, -0.013860401697456837, -0.0021836194209754467, -0.008953182026743889, 0.005674423649907112, -0.0062487199902534485, 0.0019061340717598796, -0.0387706384062767, 0.009226372465491295, -0.0385439395904541, 0.009302428923547268, -0.0061972131952643394, 0.044876083731651306, -0.03790581226348877, -0.03189151734113693, -0.0109891127794981, 0.031009986996650696, 0.0008300876361317933, -0.031537797302007675, 0.043097641319036484, 0.008999988436698914, 0.03732819855213165, -0.016730627045035362, 0.008191186934709549, 0.008757301606237888, 0.043192148208618164, 0.03564834967255592, 0.03807370737195015, 0.009580638259649277, 0.043551504611968994, 0.026180369779467583, 0.018558025360107422, 0.02942478470504284, 0.03905363380908966, 0.02524365857243538, -0.032414019107818604, 0.008379299193620682, 0.0035209793131798506, -0.0034822304733097553, -0.007561819162219763, -0.029286110773682594, 0.0068718018010258675, -0.03937612101435661, -0.013579817488789558, 0.0033636363223195076, -0.0005853146431036294, 0.051283109933137894, -0.026866490021348, 0.027592690661549568, 0.02103426121175289, 0.006616195663809776, -0.012790757231414318, 0.04521462693810463, -0.01484703179448843, 0.018240371719002724, 0.0358651727437973, 0.027427248656749725, -0.014676895923912525, 0.055705487728118896, 0.032933447510004044, 0.020296622067689896, -0.043739818036556244, -0.0015411643544211984, 0.032561980187892914, 0.024231797084212303, -0.06200685352087021, 0.0013889516703784466, -0.025055794045329094, 0.028494076803326607, -0.013612900860607624, -0.014555674046278, 0.03688879683613777, -0.05200023949146271, -0.05917944014072418, -0.05214652419090271, 0.03947772830724716, -0.027884256094694138, 0.010262763127684593, 0.03558388352394104, -0.0043303775601089, -0.026144836097955704, 0.04192565008997917, -0.0014903900446370244, 0.026860283687710762, 0.02520167827606201, 0.03452342003583908, -0.0033208581153303385, 0.023042991757392883, 0.051445238292217255, -0.02656988613307476, 0.007169232703745365, 0.03750796616077423, -0.005399253685027361, -0.05607802793383598, -0.03196053206920624, -0.033851612359285355, -0.00009216689068125561, -0.02893780916929245, -0.011791474185883999, -0.013036895543336868, 0.02137552946805954, -0.041621942073106766, -0.06439226120710373, 0.007536123972386122, 0.01136866770684719, -0.061879631131887436, -0.02432747557759285, 0.010676241479814053, 0.026026464998722076, -0.01374209113419056, -0.029750268906354904, -0.015749432146549225, -0.044434260576963425, -0.004897348582744598, -0.007716721389442682, 0.051722440868616104, 0.009876871481537819, -0.02564321644604206, -0.027764027938246727, -0.07113861292600632, -0.0179616529494524, 0.03094768524169922, -0.0639558658003807, -0.050177279859781265, 0.04832291975617409, 0.03283126279711723, -0.007232303731143475, -0.0030162003822624683, -0.03688285872340202, 0.015832917764782906, 0.034765031188726425, 0.05351002886891365, 0.020899390801787376, 0.02409997768700123, -0.010327800177037716, 0.010631783865392208, 0.0408451110124588, -0.0182743389159441, 0.026682758703827858, -0.051365986466407776, -0.029792344197630882, -0.013758211396634579, 0.03220536932349205, -0.007585969753563404, -0.04808054864406586, -0.008641501888632774, 0.02370995655655861, -0.006176795810461044, -0.019196176901459694, -0.06828738749027252, -0.015092011541128159, -0.021341940388083458, 0.010803834535181522, -0.04601343721151352, 0.026089375838637352, 0.020386314019560814, 0.013665400445461273, -0.029181111603975296, -0.07972976565361023, 0.1512909084558487, 0.013957101851701736, 0.03131446987390518, 0.0021296609193086624, -0.0035099866800010204, 0.056114740669727325, 0.028237977996468544, 0.00042775034671649337, -0.028920011594891548, -0.0277009978890419, 0.03179508447647095, -0.009174032136797905, 0.03210694342851639, -0.01108565740287304, -0.004065582528710365, 0.06562113016843796, -0.029312102124094963, 0.011455255560576916, 0.013064875267446041, -0.058469343930482864, -0.034891221672296524, 0.006006271578371525, 0.014814023859798908, 0.052747223526239395, -0.022780057042837143, 0.05160234123468399, 0.021666912361979485, -0.03362276032567024, 0.004161281976848841, -0.025417624041438103, 0.051867734640836716, -0.017741400748491287, 0.031561292707920074, 0.015208983793854713, -0.029053745791316032, 0.05707608163356781, -0.0032726263161748648, -0.03205291926860809, -0.03811494633555412, -0.0027336273342370987, -0.01452733762562275, 0.02034051902592182, 0.024984085932374, -0.05529667064547539, 0.018820982426404953, 0.002278138417750597, -0.06183130666613579, -0.012438936159014702, 0.023229548707604408, -0.03806464746594429, 0.07838551700115204, -0.014400151558220387, 0.035610098391771317, -0.003322955686599016, -0.03861599788069725, 0.012946193106472492, 0.017324460670351982, -0.028541885316371918, 0.0059732673689723015, 0.0070550087839365005, 0.02575620263814926, -0.005899255629628897, -0.0455147847533226, 0.03456796705722809, -0.04920515790581703, 0.019273225218057632, 0.02809745818376541, -0.011722760275006294, -0.008978038094937801, -0.036007147282361984, -0.00747462036088109, 0.0038468283601105213, 0.0011517510283738375, -0.0009874675888568163, 0.028067121282219887, 0.03387171030044556, -0.021293798461556435, 0.040155079215765, 0.004720841534435749, 0.006498377770185471, 0.0064548309892416, -0.042096905410289764, 0.0015961547615006566, -0.023205677047371864, 0.04299646243453026, 0.0404745489358902, -0.024823063984513283, -0.03032727912068367, -0.041409220546483994, 0.03979184478521347, 0.03977575525641441, 0.02644592709839344, -0.025523077696561813, -0.010335182771086693, -0.01709388755261898 ]
Chances are, you will survive! But will your finances survive a critical illness? Have you considered how an unexpected illness might affect your financial security planning? Your money may not be used how you intended. Critical illness insurance gives you the financial freedom to make your own decisions about your health and the peace of mind to focus on your recovery, if you're diagnosed with a covered critical illness.
[ -0.009829866699874401, -0.02012019231915474, -0.04952673986554146, 0.010443470440804958, 0.009872355498373508, -0.01806873455643654, 0.005626401398330927, 0.039645567536354065, 0.022019261494278908, 0.017446687445044518, 0.03315749019384384, 0.016253972426056862, 0.025032270699739456, -0.04243684932589531, -0.006085303146392107, -0.005323437042534351, -0.022854432463645935, -0.04065791144967079, -0.02570209465920925, 0.010974700562655926, -0.005474777892231941, 0.005947608966380358, -0.06768988817930222, -0.013149024918675423, -0.003312414512038231, 0.021033767610788345, -0.004584049805998802, -0.017957253381609917, 0.0397302582859993, 0.06064077466726303, -0.015115048736333847, -0.02957138977944851, 0.0248603206127882, -0.039210621267557144, -0.0612373948097229, -0.009945463389158249, 0.036402177065610886, -0.0515444315969944, -0.033547285944223404, -0.030614275485277176, -0.0029877126216888428, -0.0113317696377635, 0.04253820702433586, -0.030269304290413857, -0.033574432134628296, -0.010488886386156082, -0.0116093335673213, -0.03025204688310623, 0.008031687699258327, -0.028206266462802887, 0.010815737769007683, -0.020680299028754234, 0.002357651712372899, -0.015836386010050774, 0.02039584331214428, 0.02156546339392662, 0.049256615340709686, -0.007607863750308752, -0.05284779518842697, 0.000921902887057513, -0.024777580052614212, -0.04971757158637047, 0.02430848777294159, -0.03549541160464287, 0.03699697554111481, 0.053497858345508575, -0.011630057357251644, -0.031867701560258865, -0.0006424836465157568, 0.009242079220712185, -0.0010465009836480021, -0.004313239827752113, -0.015468182973563671, -0.014059201814234257, 0.018358316272497177, -0.027612702921032906, -0.003962063230574131, 0.005388965364545584, 0.003884593490511179, -0.0191847812384367, 0.013999653980135918, 0.04623858630657196, -0.0037133493460714817, -0.01676628738641739, -0.04919155314564705, 0.006085941102355719, -0.00023076223442330956, 0.01877187006175518, 0.02859107404947281, 0.0023599122650921345, 0.015148368664085865, 0.04291984438896179, 0.0028858829755336046, -0.019325243309140205, 0.012859821319580078, 0.05989040434360504, -0.055898018181324005, 0.03702897951006889, 0.010523475706577301, 0.032787926495075226, 0.029783252626657486, 0.0022939203772693872, 0.013354918919503689, 0.06117541342973709, -0.04322994127869606, 0.008143466897308826, 0.036619797348976135, -0.0042489334009587765, -0.017827540636062622, -0.0485888309776783, -0.027976136654615402, -0.028958072885870934, 0.010596202686429024, 0.018890025094151497, 0.008472664281725883, 0.04892008379101753, -0.020612427964806557, 0.04218372330069542, -0.024171022698283195, 0.023007506504654884, 0.009042381308972836, 0.004186045844107866, 0.036513034254312515, -0.030535276979207993, 0.025950530543923378, -0.022405967116355896, -0.015448300167918205, 0.05354192107915878, -0.035001154989004135, 0.002792117651551962, 0.021144771948456764, -0.049335889518260956, -0.01874818466603756, 0.04618113115429878, -0.016183560714125633, 0.014427335932850838, -0.005696065258234739, 0.020314468070864677, -0.004452730529010296, -0.06016528606414795, 0.040823426097631454, 0.022630177438259125, -0.001578480121679604, 0.056980814784765244, 0.010806242004036903, 0.03813212364912033, 0.034176237881183624, -0.05041118338704109, -0.00896076112985611, 0.048584312200546265, -0.020532891154289246, 0.03894031420350075, 0.008244830183684826, 0.0020754048600792885, 0.0017358058830723166, -0.00539484852924943, -0.019444668665528297, 0.009310130029916763, 0.017846904695034027, 0.031931135803461075, -0.006118734832853079, -0.010438373312354088, 0.014149821363389492, 0.06283017247915268, 0.0003724150301422924, 0.05285892263054848, -0.01639963872730732, 0.007431565783917904, -0.006880428642034531, -0.010465342551469803, 0.03959961235523224, -0.016711551696062088, -0.048266127705574036, 0.006241497118026018, 0.03658883646130562, 0.06585370004177094, 0.05261649563908577, -0.019651122391223907, 0.03796147555112839, 0.04468972980976105, -0.04616541415452957, 0.027691517025232315, -0.012382789514958858, 0.06006907671689987, 0.003729588584974408, 0.004758454393595457, 0.01971481554210186, 0.0005536856479011476, -0.026557691395282745, -0.024631204083561897, -0.01215340755879879, 0.028045106679201126, -0.05420170724391937, 0.04270341992378235, 0.013614378869533539, 0.016636310145258904, -0.013892737217247486, -0.02175922878086567, 0.00016612008039373904, -0.04568656533956528, -0.0137957027181983, 0.01377930585294962, -0.0413387157022953, 0.043714068830013275, 0.015316596254706383, -0.0005972370272502303, 0.044967491179704666, 0.04317361116409302, -0.022215746343135834, -0.0016710845520719886, 0.045465100556612015, -0.016455894336104393, -0.03722403571009636, -0.03822537511587143, 0.011611279100179672, -0.005475414451211691, -0.03203197196125984, 0.029322704300284386, -0.01995684579014778, -0.04324221611022949, 0.024939313530921936, -0.0008243330521509051, 0.02759566716849804, 0.05659956485033035, -0.014711955562233925, -0.009519190527498722, 0.006244665943086147, 0.02520677261054516, -0.013627665117383003, -0.021654615178704262, -0.009614333510398865, 0.054658133536577225, 0.00004675491072703153, 0.06328212469816208, 0.038041479885578156, 0.012501158751547337, 0.04640563577413559, 0.04299307242035866, -0.00881471298635006, 0.005941482726484537, 0.018049348145723343, 0.011879301629960537, 0.04217817634344101, 0.04212820902466774, -0.001839649397879839, -0.0020068087615072727, -0.04173102229833603, -0.017422456294298172, 0.0008947332389652729, 0.013158680871129036, -0.01581004075706005, 0.0360407829284668, 0.030081383883953094, 0.06310403347015381, -0.0375807024538517, 0.00277825933881104, 0.012296409346163273, 0.0483844019472599, -0.04683688282966614, -0.01032274216413498, 0.014921700581908226, 0.054515376687049866, -0.012454437091946602, 0.025088945403695107, 0.040207333862781525, 0.007492738775908947, -0.006880846805870533, 0.014045413583517075, -0.003929053898900747, -0.04269184544682503, -0.01526186428964138, -0.04909426346421242, -0.018309421837329865, -0.06275272369384766, -0.03053203783929348, 0.00454758619889617, 0.044290006160736084, -0.02308041974902153, 0.01591075211763382, -0.004140680190175772, -0.01719369739294052, 0.00826084241271019, -0.039868321269750595, 0.05496375635266304, 0.008496231399476528, 0.007808725815266371, -0.06511930376291275, 0.019956499338150024, 0.018167803063988686, 0.020037256181240082, -0.0045974766835570335, -0.03999185562133789, 0.01415478065609932, -0.0414755716919899, 0.058969203382730484, -0.045659445226192474, -0.006640225648880005, 0.005203880835324526, -0.04398401826620102, -0.045909006148576736, 0.004390504211187363, 0.024947840720415115, -0.023452915251255035, 0.04852131009101868, -0.02321205474436283, 0.05108676105737686, 0.0205968227237463, -0.037832070142030716, 0.06240234896540642, 0.03438198193907738, -0.043761543929576874, 0.05589504912495613, 0.019709119573235512, -0.0014360606437548995, -0.016991684213280678, 0.03232376277446747, 0.038949187844991684, -0.026250779628753662, -0.04096059873700142, -0.0032580080442130566, -0.003953087609261274, 0.012403779663145542, 0.010225686244666576, 0.007451169192790985, -0.026079006493091583, 0.05279229208827019, 0.009632660076022148, -0.0768493115901947, 0.019126279279589653, -0.006045391783118248, -0.017668088898062706, -0.008388757705688477, -0.04233381897211075, 0.0348849818110466, 0.0203020628541708, 0.011009366251528263, -0.029305526986718178, -0.04720771685242653, 0.003107209922745824, 0.03216666355729103, 0.035678550601005554, -0.03710847347974777, 0.011710578575730324, 0.01858328841626644, 0.010057567618787289, 0.006737000774592161, 0.015127100050449371, -0.02390921115875244, -0.020892132073640823, 0.0018455364042893052, 0.006976093165576458, 0.014346320182085037, 0.020607182756066322, 0.010463266633450985, 0.011156906373798847, 0.06243574246764183, -0.01595347933471203, 0.0217460785061121, -0.006850303150713444, 0.03823940083384514, 0.029999226331710815, 0.019141212105751038, 0.008614091202616692, 0.006872683297842741, -0.01897798851132393, -0.051102519035339355, 0.02710484154522419, 0.004813467618077993, 0.0633452832698822, -0.011158107779920101, 0.06812465935945511, -0.01450230460613966, -0.015398469753563404, 0.01719062402844429, -0.07560545951128006, -0.006555123254656792, 0.03528662770986557, 0.005757649429142475, 0.03010467253625393, -0.05648527666926384, 0.024406151846051216, -0.0079623619094491, 0.059443071484565735, 0.02952566370368004, -0.018557311967015266, 0.03590051457285881, -0.0335250161588192, -0.002206192584708333, -0.019665898755192757, 0.003931168932467699, -0.00594191113486886, -0.04127710685133934, 0.028475454077124596, -0.004708788823336363, -0.06014066934585571, -0.04645557701587677, -0.0017653926042839885, 0.032963987439870834, 0.018310116603970528, -0.013462675735354424, 0.028968747705221176, 0.006024833768606186, 0.009310279972851276, 0.052406083792448044, 0.023700306192040443, -0.004236823879182339, -0.04447140917181969, 0.023552628234028816, -0.0031088651157915592, -0.006182499695569277, -0.03624628856778145, 0.011437679640948772, -0.021227268502116203, -0.0004751498345285654, -0.009517809376120567, -0.01948700286448002, 0.01855769194662571, 0.01262756623327732, -0.010684330947697163, 0.018658947199583054, -0.03215842694044113, -0.028021136298775673, -0.03062579594552517, 0.012681846506893635, 0.003703922498971224, -0.04532499983906746, -0.012506825849413872, -0.017315475270152092, 0.027112865820527077, 0.056380126625299454, 0.0057112243957817554, -0.06361074000597, -0.02159688249230385, -0.03104514814913273, -0.04453899338841438, -0.03255247324705124, 0.0355781614780426, -0.03476458042860031, 0.006848926655948162, -0.044669512659311295, 0.015118168666958809, 0.04919905215501785, 0.01463994663208723, -0.010196746326982975, -0.015680229291319847, 0.017535794526338577, 0.021498903632164, 0.02925030142068863, -0.009749065153300762, -0.015490913763642311, 0.00012611059355549514, -0.08972232788801193, 0.012175892479717731, 0.02132905088365078, -0.023971861228346825, 0.02240806259214878, 0.019092613831162453, 0.004817172884941101, 0.010050556622445583, -0.04555859416723251, -0.02287718653678894, -0.028727242723107338, 0.05507848039269447, -0.0718308612704277, -0.0320131778717041, 0.0501520037651062, -0.02272051014006138, -0.041034992784261703, 0.07846303284168243, 0.009895354509353638, -0.011101026087999344, -0.02678944729268551, 0.01268655713647604, -0.03945120424032211, 0.04691792279481888, -0.023754986003041267, -0.02577626332640648, -0.021221624687314034, -0.04825524985790253, 0.0027337383944541216, -0.03865448012948036, 0.04907487332820892, -0.011194800958037376, 0.001288489205762744, -0.05720328167080879, -0.031814731657505035, -0.0014706256333738565, 0.0017913667252287269, -0.040064070373773575, 0.04265578091144562, 0.002105323364958167, 0.0040381732396781445, -0.012726695276796818, -0.03927420824766159, 0.025293078273534775, 0.025290071964263916, -0.005959031172096729, 0.023132694885134697, -0.022650009021162987, -0.0032172698993235826, 0.008058578707277775, -0.011775313876569271, -0.03459000587463379, -0.015330567955970764, -0.010924294590950012, -0.031954314559698105, -0.026351414620876312, -0.018337486311793327, -0.03499129042029381, -0.03574054688215256, -0.02317601442337036, -0.00018543472106102854, -0.0033657995518296957, 0.03685379773378372, 0.0646205022931099, -0.005140080116689205, 0.010600583627820015, 0.0038402555510401726, -0.023609891533851624, 0.03260938823223114, 0.026477135717868805, -0.04371943324804306, -0.03294287621974945, 0.04264802858233452, -0.019838551059365273, 0.03457889333367348, -0.014552971348166466, -0.02401171438395977, -0.036239027976989746, -0.0495343878865242, -0.0010711491340771317, -0.03166987746953964, -0.028291527181863785, -0.04156847670674324, -0.04405815899372101, -0.024338532239198685, 0.06844104081392288, 0.021151239052414894, -0.04732181876897812, -0.010121298022568226, -0.050762586295604706, -0.017250873148441315, -0.02563871070742607, -0.04467643424868584, -0.03037613444030285, -0.02542218752205372, -0.019063733518123627, 0.05685931071639061, 0.033693406730890274, 0.02107955515384674, -0.01215053629130125, -0.01111189927905798, 0.03178322687745094, 0.010732674971222878, -0.0423116609454155, -0.04490243270993233, 0.0027917055413126945, 0.030059149488806725, 0.01387216616421938, 0.005284260492771864, -0.0472564734518528, 0.07302247732877731, -0.043909069150686264, 0.00407295161858201, -0.03699231892824173, -0.005904329475015402, -0.012555954046547413, 0.017303714528679848, 0.033402394503355026, -0.04505009576678276, 0.01748015359044075, -0.024821413680911064, 0.039448365569114685, 0.03588809818029404, -0.014968745410442352, -0.03670785203576088, -0.021992972120642662, -0.027296874672174454, -0.042129456996917725, 0.033851396292448044, -0.033441390842199326, -0.032917581498622894, -0.05299060046672821, -0.0077023752965033054, 0.02185802161693573, -0.026338066905736923, 0.025808565318584442, 0.050810713320970535, -0.023794183507561684, -0.057398926466703415, 0.0001769551745383069, 0.029663532972335815, 0.053987808525562286, -0.005021747201681137, -0.009022478945553303, -0.004485411569476128, -0.028695041313767433, -0.028143752366304398, -0.06190870329737663, -0.01262645423412323, -0.0552498921751976, -0.02008199878036976, 0.04747851565480232, -0.024861736223101616, 0.037587814033031464, 0.02778693102300167, -0.03679491579532623, -0.04828175529837608, 0.05746840313076973, -0.02072746306657791, 0.018041258677840233, 0.08757815510034561, 0.023181747645139694, -0.04930943250656128, 0.005609320010989904, -0.038604769855737686, 0.002731689717620611, -0.02425687201321125, 0.06245579943060875, -0.0018560047028586268, -0.01891377754509449, 0.02580605261027813, 0.04835893586277962, -0.05102143809199333, -0.04219815507531166, -0.012999387457966805, 0.004128880333155394, -0.002818532520905137, -0.04454581066966057, 0.024281099438667297, -0.0028945324011147022, -0.018090927973389626, 0.02690676972270012, 0.0024916543625295162, -0.03751794993877411, 0.04850488156080246, 0.03095889836549759, 0.03279682621359825, -0.0343303456902504, 0.01273433305323124, 0.029017960652709007, -0.0077504501678049564, -0.009211021475493908, -0.02354319766163826, -0.005940295290201902, 0.015898704528808594, 0.011725579388439655, 0.006308572832494974, -0.029158757999539375, -0.02230677381157875, 0.027235468849539757, -0.020753126591444016, 0.010692445561289787, -0.002737328177317977, 0.01579568162560463, 0.012429555878043175, -0.038443487137556076, -0.04164804518222809, -0.02926284447312355, 0.006375443190336227, -0.014382879249751568, 0.012395497411489487, -0.03111329674720764, 0.02255292795598507, 0.013473411090672016, 0.030500996857881546, -0.0030227554962038994, -0.058466918766498566, -0.04772040247917175, -0.0357186384499073, -0.027288611978292465, 0.011324042454361916, 0.010513290762901306, -0.012589802965521812, 0.03660590946674347, -0.013969222083687782, -0.03681858256459236, -0.025466762483119965, 0.00949827954173088, -0.005709927063435316, -0.02531217411160469, -0.03928520902991295, 0.02383514866232872, -0.008766964077949524, -0.0557006374001503, -0.05539988353848457, -0.011759995482861996, -0.025162046775221825, 0.010286573320627213, -0.003517391625791788, 0.02062455378472805, -0.018788959830999374, 0.017880531027913094, 0.016406873241066933, -0.0011218421859666705, -0.013889617286622524, -0.024127045646309853, 0.0058922297321259975, 0.04298855736851692, -0.009509571827948093, 0.03703710809350014, 0.031750090420246124, -0.041744910180568695, 0.044921454042196274, 0.011203598231077194, 0.001326605910435319, -0.011661043390631676, 0.005923315417021513, -0.010251399129629135, -0.000008463837730232626, -0.03909172862768173, -0.025215158239006996, -0.007119168993085623, -0.04879307374358177, 0.007901924662292004, -0.001053549349308014, 0.01765202358365059, -0.010447381064295769, -0.008087418042123318, 0.003963430877774954, 0.034562814980745316, -0.03775807097554207, 0.04096188396215439, -0.03114953450858593, 0.024435264989733696, 0.034640952944755554, -0.002654191805049777, 0.04901833087205887, 0.012638445012271404, 0.01817602477967739, -0.04833335056900978, -0.010521873831748962, -0.017865171656012535, -0.0031864463817328215, 0.03388003259897232, -0.012188998982310295, -0.01326770056039095, -0.056674882769584656, -0.003259878372773528, -0.023420386016368866, 0.05226676166057587, 0.05281054973602295, 0.04405553266406059, 0.02186165191233158, -0.03812249377369881, -0.01996668055653572, -0.0030808274168521166, -0.07556086033582687, -0.013588718138635159, 0.04983413964509964, -0.01741570420563221, -0.02209743671119213, -0.03148170933127403, -0.035368625074625015, -0.006352837663143873, -0.027666516602039337, -0.013667279854416847, -0.003767170710489154, 0.04791026934981346, 0.007726594805717468, 0.019997941330075264, -0.023627806454896927, -0.013881205581128597, 0.009146844036877155, 0.040186215192079544, -0.047280337661504745, -0.038220398128032684, 0.017832225188612938, -0.0048473370261490345, -0.022166546434164047, -0.004168539773672819, 0.009540392085909843, 0.0310660433024168, 0.0011241459287703037, -0.004025482572615147, 0.03742019832134247, 0.02688468247652054, -0.03937975689768791, 0.023560453206300735, 0.014116819016635418, 0.0038654932286590338, -0.030966924503445625, 0.03785744309425354, 0.004091412294656038, -0.03843139111995697, -0.0349152609705925, 0.03906461223959923, 0.047009553760290146, -0.014369283802807331, 0.016286727041006088, 0.02427041158080101, 0.0406259149312973, -0.02043425850570202, 0.0035412590950727463, 0.002397173549979925, 0.02867775410413742, 0.046180661767721176, 0.03726590424776077, 0.012759114615619183, 0.065274178981781, 0.06642390787601471, -0.00841169711202383, -0.011182102374732494, 0.037468262016773224, 0.0417264960706234, 0.012721621431410313, -0.020382661372423172, -0.004001193679869175, 0.040236905217170715, -0.03285740688443184, -0.03108910098671913, -0.005090645048767328, -0.01804596558213234, 0.025343218818306923, -0.043699029833078384, -0.029665688052773476, 0.02652539499104023, -0.02524971216917038, -0.007059253752231598, -0.0017187496414408088, -0.02142293192446232, -0.014275847002863884, 0.03167705610394478, -0.00019788759527727962, -0.0016387217910960317, 0.04586891084909439, 0.028013769537210464, 0.010735572315752506, 0.04635951295495033, 0.0013810783857479692, -0.007862919941544533, -0.039695557206869125, -0.011894267052412033, 0.00602638628333807, 0.026941195130348206, -0.01906217448413372, 0.016153965145349503, -0.036216747015714645, 0.014657780528068542, -0.026241516694426537, 0.030134718865156174, 0.021297872066497803, -0.03108244761824608, -0.007400947622954845, -0.04978237301111221, 0.04028802365064621, -0.05789461359381676, -0.013205704279243946, 0.0413094237446785, 0.0048286523669958115, -0.012413992546498775, 0.014565585181117058, 0.036649350076913834, 0.045243509113788605, -0.00479119410738349, 0.04552995041012764, -0.018846135586500168, 0.048413634300231934, 0.06591944396495819, -0.03785968944430351, -0.009003057144582272, 0.031303174793720245, -0.01376387756317854, -0.012912435457110405, 0.009919509291648865, -0.034149445593357086, -0.01153032761067152, 0.016191083937883377, 0.002327423309907317, 0.007896590046584606, 0.030178025364875793, -0.006164469290524721, -0.06328090280294418, -0.03158627450466156, 0.015256259590387344, 0.0202986691147089, 0.03219803050160408, 0.01737290807068348, 0.03609374910593033, -0.010416182689368725, -0.009604284539818764, -0.023167358711361885, -0.02687005139887333, 0.019989868625998497, -0.05608387663960457, 0.048969924449920654, 0.0036588332150131464, -0.01719447411596775, -0.05959143117070198, -0.037576790899038315, 0.01445366907864809, 0.024631645530462265, -0.04575030133128166, -0.053526412695646286, 0.019771002233028412, 0.04976997524499893, -0.0039650374092161655, 0.02004268579185009, -0.027858125045895576, 0.00021195868612267077, 0.03530922159552574, 0.05331362411379814, -0.00890785176306963, 0.03735265135765076, 0.0410129688680172, -0.027773499488830566, 0.025655332952737808, -0.05484436824917793, 0.04800121858716011, 0.015903256833553314, -0.03994760662317276, -0.014307083562016487, 0.024003611877560616, -0.03887313976883888, -0.047201838344335556, 0.05608255788683891, 0.06962374597787857, 0.0041038719937205315, -0.027120372280478477, -0.057480115443468094, -0.013145364820957184, -0.042738720774650574, 0.03942235931754112, -0.056470565497875214, 0.007806857116520405, 0.026163315400481224, -0.01428744476288557, 0.012853589840233326, -0.05804327502846718, 0.13987280428409576, 0.03278694301843643, 0.06053612753748894, -0.027739403769373894, 0.04119204357266426, 0.05377952754497528, -0.001524413819424808, 0.02071506343781948, 0.028247477486729622, -0.05296531692147255, 0.038132984191179276, 0.028864189982414246, -0.005556637886911631, -0.004756196402013302, 0.055850446224212646, 0.039407879114151, -0.03470510244369507, 0.046337999403476715, -0.005856522358953953, -0.030429942533373833, -0.06364840269088745, 0.00664552953094244, 0.03332481533288956, 0.04876812547445297, -0.017284832894802094, 0.013252343982458115, -0.001067054457962513, -0.05620246008038521, -0.013373905792832375, -0.019138047471642494, 0.014868775382637978, -0.0544075109064579, 0.03844380006194115, -0.03254383057355881, -0.04176166653633118, 0.07926546782255173, 0.004518250469118357, -0.014514246955513954, 0.0025168745778501034, 0.018084652721881866, -0.030340129509568214, 0.007944898679852486, 0.04677576199173927, -0.04086166247725487, -0.006807188969105482, 0.028734922409057617, -0.05114954337477684, 0.019085554406046867, 0.024283653125166893, -0.026549266651272774, 0.01905122958123684, -0.033506955951452255, 0.02625579945743084, -0.02348371595144272, -0.04502590000629425, -0.0032296543940901756, -0.010779276490211487, -0.05222788825631142, -0.029847577214241028, 0.016117503866553307, 0.027399038895964622, 0.0020373451989144087, -0.02544688619673252, 0.021263232454657555, -0.00032136126537807286, 0.026362543925642967, 0.040872909128665924, 0.02802613191306591, 0.004892661236226559, -0.004340659826993942, -0.00211135926656425, -0.023385150358080864, -0.011424272321164608, -0.026988642290234566, 0.06408321112394333, 0.011915856041014194, -0.0035921763628721237, 0.03182132542133331, 0.01702558621764183, -0.021812679246068, -0.00837544072419405, 0.008036981336772442, -0.0018924016039818525, -0.01044815219938755, -0.0046919346787035465, 0.05056783929467201, -0.04086187481880188, -0.04943780228495598, -0.010771413333714008, 0.03789197653532028, 0.047283414751291275, 0.0358726903796196, 0.010375960730016232, 0.018261348828673363, -0.03799910470843315 ]
Sign up for the "Brandee Danielle best discount codes" email alert. Even better discounts on Brandee Danielle may be available in our More Ways to Save section. You can earn Amazon gift cards for sharing Brandee Danielle coupons on Dealspotr. Learn more. Brandee Danielle is a small baby products retailer. As of today, we have no active coupons. The Dealspotr community last updated this page on April 15, 2019. On average, we launch 2 new Brandee Danielle promo codes or coupons each month, with an average discount of 14% off and an average time to expiration of 16 days. Check for deals directly at Brandee Danielle. Have a Brandee Danielle coupon to share? Go to Brandee Danielle then select the items you wish to purchase and add them to your shopping cart. Go back to Brandee Danielle and proceed to checkout. Look for the box labeled "Enter promo code" and paste your promo code in that box. Brandee Danielle offers promo codes often. On average, Brandee Danielle offers 2 codes or coupons per month. Check this page often, or follow Brandee Danielle (hit the follow button up top) to keep updated on their latest discount codes. Check for Brandee Danielle's promo code exclusions. Brandee Danielle promo codes sometimes have exceptions on certain categories or brands. Look for the blue "site-wide" label for site-wide Brandee Danielle promo codes. Site-wide codes can be applied to any item on Brandee Danielle's website, and therefore are the most useful codes.
[ -0.012776371091604233, 0.020231185480952263, -0.01396867260336876, 0.004634150769561529, -0.015597047284245491, -0.010511327534914017, 0.0306495800614357, 0.04092656448483467, -0.02153642103075981, 0.006746139843016863, 0.01342050265520811, -0.006437415257096291, 0.02473546378314495, -0.01641947217285633, -0.0026865850668400526, -0.009345694445073605, -0.0042325942777097225, -0.04639299586415291, -0.01631416194140911, 0.0015762854600325227, 0.002266717841848731, 0.02128365822136402, -0.06726883351802826, -0.01874535158276558, -0.03627919778227806, 0.035014089196920395, 0.010439474135637283, -0.040790949016809464, 0.05904834344983101, 0.07351657003164291, -0.049067944288253784, -0.061305321753025055, 0.027414655312895775, -0.05841587111353874, -0.017215950414538383, 0.002808061894029379, 0.033238109201192856, -0.00968510378152132, -0.02200358174741268, -0.04274328425526619, 0.015817057341337204, -0.005084989592432976, 0.059227947145700455, -0.02572881616652012, -0.0144369350746274, -0.0041383178904652596, 0.001169369788840413, -0.010889271274209023, 0.0428471677005291, -0.03354882076382637, 0.02437763474881649, -0.015459411777555943, 0.007466409355401993, -0.017920449376106262, 0.0069442628882825375, 0.003890068968757987, -0.005925476551055908, -0.04404447600245476, -0.0008686966612003744, 0.0328373946249485, -0.013589388690888882, -0.013678659684956074, 0.013252600096166134, -0.07576777786016464, 0.014131778851151466, 0.036501701921224594, 0.0024456381797790527, -0.01696670427918434, 0.027474364265799522, 0.009545709006488323, 0.04358323663473129, 0.0077590299770236015, -0.024210125207901, 0.0058505963534116745, -0.01831626519560814, 0.0025425199419260025, -0.02113201841711998, 0.00177795032504946, -0.029481898993253708, -0.0008570263162255287, 0.003955496940761805, 0.03130874037742615, 0.01106532383710146, 0.04226261004805565, -0.06543945521116257, 0.007083755452185869, 0.0035329132806509733, 0.011210157535970211, 0.01186720747500658, -0.006209746468812227, -0.0005814013420604169, 0.05508141592144966, 0.021808121353387833, -0.01987990364432335, 0.049402348697185516, 0.01316093560308218, -0.05429711192846298, 0.01419906597584486, 0.004815548192709684, -0.012820389121770859, 0.03960824012756348, 0.027812616899609566, 0.0008190757944248617, 0.04867781326174736, -0.023397693410515785, -0.004257329273968935, 0.01843162812292576, -0.027149463072419167, -0.024510007351636887, -0.029629161581397057, -0.0251479335129261, -0.017052017152309418, 0.02152577042579651, 0.0004435020964592695, -0.00726799201220274, 0.03450379893183708, -0.00735086714848876, 0.029647935181856155, -0.06147576496005058, -0.0031491685658693314, 0.01989174261689186, 0.017287015914916992, 0.012080824002623558, -0.010721984319388866, 0.03536045923829079, -0.017585009336471558, -0.009788822382688522, 0.049355607479810715, -0.023131733760237694, -0.027352921664714813, -0.03433625400066376, -0.019405364990234375, 0.010038194246590137, 0.05040036886930466, 0.011581961065530777, 0.03179804980754852, -0.00623035104945302, 0.037404388189315796, 0.015895523130893707, -0.07166562229394913, 0.049239013344049454, 0.043141890317201614, -0.031772032380104065, 0.08783769607543945, -0.006678059231489897, 0.0332428440451622, 0.009210268035531044, -0.05409424751996994, -0.04886910691857338, 0.00552516570314765, -0.04125171899795532, 0.060510341078042984, -0.02522411197423935, 0.05401185527443886, 0.0017516901716589928, 0.010928953066468239, 0.004853326361626387, 0.029817281290888786, 0.004726256709545851, 0.011404735967516899, 0.010626097209751606, -0.01685623824596405, -0.005912065971642733, 0.047164954245090485, -0.0546102374792099, 0.017506442964076996, -0.026696253567934036, -0.0062773204408586025, -0.005870478227734566, -0.059898026287555695, 0.02818223647773266, -0.00866436306387186, -0.017389986664056778, 0.005201300140470266, 0.035761281847953796, 0.040133487433195114, 0.05980991572141647, -0.017102651298046112, 0.04913704842329025, 0.042145952582359314, -0.03556152805685997, 0.0061030942015349865, -0.0404372364282608, 0.04140057414770126, 0.016799356788396835, -0.012093668803572655, 0.03254175931215286, -0.028884848579764366, -0.053649842739105225, -0.033711183816194534, 0.002671646187081933, 0.008013397455215454, -0.03652157634496689, 0.008389811031520367, 0.012965607456862926, 0.012540140189230442, -0.02935175597667694, -0.008181894198060036, 0.006180896423757076, -0.06690698862075806, -0.03019167110323906, 0.0471404567360878, -0.03572991117835045, 0.028948232531547546, -0.015251501463353634, -0.05104239657521248, 0.014444611966609955, 0.04061414301395416, -0.03393537551164627, -0.015318225137889385, 0.010696164332330227, 0.028676794841885567, -0.025979170575737953, -0.05475018918514252, 0.013845277018845081, 0.017613105475902557, -0.03559380769729614, 0.06508979946374893, -0.021749861538410187, 0.0007468085386790335, 0.01811949536204338, -0.002573741599917412, 0.018278993666172028, 0.0632365345954895, -0.016020679846405983, -0.0036416060756891966, 0.03935888037085533, 0.05233142897486687, -0.02086193487048149, 0.008016216568648815, -0.009493006393313408, 0.04092969745397568, 0.04036343842744827, 0.08740770816802979, 0.041976675391197205, 0.055362287908792496, 0.007100007031112909, 0.02523009665310383, 0.004333385732024908, 0.04188774153590202, -0.029796751216053963, -0.014137499034404755, 0.01904262974858284, 0.03835295885801315, -0.02475125528872013, 0.03795696049928665, -0.0010511865839362144, -0.018719404935836792, -0.02832016721367836, 0.040724508464336395, 0.000986675382591784, 0.060683611780405045, 0.01602342166006565, 0.05321474000811577, -0.027356550097465515, -0.01975889317691326, 0.032423071563243866, 0.05811639875173569, -0.029612308368086815, 0.03955109417438507, 0.012315955013036728, 0.053112659603357315, -0.008721071295440197, -0.016826579347252846, 0.01452004723250866, 0.03632751479744911, 0.017338238656520844, 0.03563236445188522, -0.008396935649216175, -0.057331278920173645, -0.01961642876267433, -0.06303703039884567, -0.040304310619831085, -0.038599904626607895, -0.017945852130651474, -0.033878494054079056, 0.03486211970448494, -0.03890572115778923, 0.03245672211050987, -0.03181749954819679, -0.006298902444541454, -0.030729789286851883, -0.008475949056446552, 0.015413949266076088, 0.025531135499477386, 0.03637278452515602, -0.030234331265091896, 0.027989838272333145, 0.0036394246853888035, 0.05407670885324478, -0.043653130531311035, 0.012876426801085472, -0.004969648085534573, -0.03930124267935753, 0.0572669543325901, 0.004980070050805807, -0.00848490558564663, -0.008881974965333939, -0.020114365965127945, -0.049310483038425446, -0.014972799457609653, 0.0014525523874908686, -0.0031819383148103952, 0.008318520151078701, -0.04291059076786041, 0.024119796231389046, 0.04114266857504845, -0.017668649554252625, 0.05625596269965172, 0.029583586379885674, -0.07484294474124908, 0.049550801515579224, 0.032590169459581375, 0.006545303389430046, -0.05610823258757591, 0.012970196083188057, 0.06071999669075012, 0.011221530847251415, -0.010530740022659302, 0.009902643971145153, -0.03952036425471306, 0.01617477647960186, -0.009922402910888195, 0.00956052541732788, -0.052740678191185, 0.012430340051651001, 0.010197238065302372, -0.08548092842102051, 0.032760139554739, -0.07512766122817993, -0.04252041131258011, -0.05180418863892555, -0.023784290999174118, 0.0011591779766604304, 0.025802915915846825, 0.036407578736543655, 0.02529146708548069, -0.004239955451339483, 0.012341190129518509, 0.012315892614424229, 0.08061274141073227, -0.009655879810452461, -0.014292966574430466, 0.0531083308160305, -0.02673078142106533, -0.00696082366630435, 0.027903355658054352, -0.04529835656285286, -0.007672177627682686, 0.017028458416461945, -0.0037991292774677277, 0.02166387438774109, 0.02622964046895504, 0.024340985342860222, 0.02027818374335766, 0.045854680240154266, -0.019448576495051384, -0.007246466353535652, 0.018163228407502174, 0.016173919662833214, 0.015169852413237095, 0.008699190802872181, 0.008836873807013035, -0.05129074305295944, -0.04512779414653778, -0.04272100329399109, 0.0497753880918026, -0.002051527379080653, 0.05738333985209465, -0.0666312575340271, 0.06046512350440025, 0.007956000044941902, 0.0018490439979359508, 0.011395695619285107, -0.03493228182196617, -0.010856597684323788, 0.006185140460729599, -0.022616058588027954, 0.05130366235971451, -0.022259775549173355, 0.020104698836803436, -0.031696200370788574, 0.02498370036482811, 0.04819610342383385, 0.006975644733756781, 0.03393217921257019, -0.01997191458940506, -0.025707654654979706, -0.000914019881747663, -0.02003777213394642, -0.01800817809998989, -0.03989031910896301, 0.007667036261409521, -0.012970656156539917, -0.021448541432619095, -0.05842818319797516, 0.04734722897410393, 0.03368952125310898, 0.03623640164732933, 0.007712032645940781, 0.033620454370975494, 0.014826660975813866, 0.006628844421356916, 0.014387251809239388, -0.009982489980757236, 0.0261062178760767, -0.03307991847395897, 0.06739521026611328, 0.02240574359893799, -0.021910684183239937, -0.020122436806559563, -0.0036373313050717115, -0.040340129286050797, 0.024649465456604958, 0.019140494987368584, -0.023405643180012703, -0.04690694436430931, 0.0022517696488648653, -0.028381120413541794, 0.04803023487329483, -0.016863344237208366, -0.0038594992365688086, -0.021251972764730453, 0.018773134797811508, 0.02887849509716034, -0.048580944538116455, 0.02299371175467968, -0.03029324859380722, 0.055262066423892975, 0.06012804061174393, 0.0037712156772613525, -0.004553435370326042, -0.00989566184580326, -0.024075480177998543, 0.0020075442735105753, 0.0180964432656765, 0.054732874035835266, 0.011969273909926414, 0.010249553248286247, -0.04563118517398834, 0.04774458333849907, 0.02385914884507656, -0.019074998795986176, 0.008048910647630692, 0.029317574575543404, -0.008938777260482311, -0.012823068536818027, 0.037031810730695724, 0.0019676557276397943, -0.04316168278455734, 0.018539443612098694, -0.047391802072525024, -0.004846641328185797, -0.002667503897100687, -0.027890630066394806, -0.019892966374754906, 0.019917713478207588, 0.024032235145568848, 0.0072044492699205875, -0.019586801528930664, 0.034462928771972656, -0.00820207130163908, 0.022602848708629608, -0.03116295300424099, -0.033453721553087234, 0.005912187043577433, 0.02137821353971958, -0.02201283536851406, -0.003833947004750371, 0.05090310052037239, -0.0458960086107254, 0.009730059653520584, 0.04608183726668358, -0.04797372594475746, 0.050553739070892334, -0.023917196318507195, -0.0001617989910300821, -0.029745718464255333, -0.037998925894498825, 0.03867538273334503, -0.04889260232448578, 0.015183485113084316, -0.013376983813941479, -0.0227514635771513, -0.02249288372695446, -0.04189237952232361, -0.05898068845272064, -0.014089667238295078, -0.0077417283318936825, 0.028864862397313118, 0.00666062394157052, -0.043361417949199677, -0.0213200431317091, -0.006252153776586056, 0.0018584338249638677, -0.0007292441441677511, -0.027490485459566116, 0.02513211779296398, 0.016960041597485542, 0.008227627724409103, 0.0117717320099473, -0.02814081497490406, -0.012385946698486805, 0.005360678303986788, -0.025475971400737762, -0.022905651479959488, -0.04812344163656235, -0.009336159564554691, -0.02595921978354454, -0.03700855001807213, -0.03591439500451088, 0.030980607494711876, -0.03581934794783592, -0.008482522331178188, 0.04703293368220329, 0.01042727567255497, 0.03881191089749336, 0.018095389008522034, -0.04297193884849548, 0.053605422377586365, 0.010481425561010838, -0.04183487221598625, -0.03791176527738571, 0.0489921011030674, -0.017974669113755226, 0.028035005554556847, 0.0012832958018407226, -0.011779061518609524, -0.044960055500268936, -0.030642833560705185, -0.014330972917377949, -0.019820919260382652, -0.02333753928542137, -0.03681593015789986, -0.02559407614171505, -0.03793353587388992, 0.056156646460294724, 0.011118212714791298, 0.00028524233493953943, 0.005511264316737652, -0.039508312940597534, 0.01910257712006569, -0.04209234565496445, -0.023080328479409218, -0.021826550364494324, -0.005068112630397081, 0.008305459283292294, 0.05629671737551689, 0.007052695378661156, 0.004068280104547739, -0.002550865290686488, 0.03779738396406174, 0.002805391326546669, -0.0144914910197258, -0.03803872689604759, 0.005451641511172056, -0.008102666586637497, 0.009955903515219688, -0.013336170464754105, 0.007798637729138136, -0.04702681675553322, 0.045760221779346466, -0.05507289618253708, -0.00596235366538167, 0.005548008251935244, -0.014887898229062557, 0.01841057278215885, -0.034945063292980194, 0.06697458773851395, 0.00417160801589489, -0.016227727755904198, -0.0002790892031043768, 0.03687036409974098, 0.024041330441832542, 0.006047807168215513, -0.01539057120680809, -0.0279172845184803, -0.05659293755888939, -0.04799239709973335, 0.021532950922846794, -0.021229472011327744, -0.016826549544930458, -0.046842310577631, -0.024031763896346092, 0.050997886806726456, -0.0003274566261097789, 0.03445233404636383, 0.08074282109737396, -0.0043324679136276245, 0.00492664473131299, -0.040222540497779846, 0.005437703803181648, 0.044468194246292114, 0.002104950835928321, 0.014744870364665985, -0.03140804544091225, -0.014655012637376785, -0.011977150104939938, -0.03728288784623146, -0.03196871653199196, -0.05359126254916191, 0.02602531760931015, 0.041088927537202835, -0.007101940456777811, 0.055086396634578705, -0.016595233231782913, -0.05262766033411026, -0.0392056480050087, 0.04328730329871178, 0.004254431929439306, 0.023737795650959015, 0.04542473331093788, -0.016387833282351494, -0.04028213024139404, 0.018783889710903168, -0.006240691989660263, -0.009478890337049961, -0.05235828459262848, 0.0348978228867054, 0.03627775236964226, -0.04593271389603615, 0.0191980991512537, 0.04966143146157265, -0.06327822059392929, -0.04909873381257057, 0.031695641577243805, -0.017050262540578842, 0.012404236011207104, -0.018056031316518784, -0.001747417845763266, 0.04186907783150673, -0.00315113365650177, 0.041742704808712006, 0.013901058584451675, -0.027945831418037415, 0.048105236142873764, 0.020825807005167007, 0.040980543941259384, -0.04337530955672264, -0.013234836049377918, 0.007509003859013319, -0.008244828321039677, -0.026316141709685326, -0.03524871543049812, -0.012874946929514408, -0.023996716365218163, -0.00760208023712039, 0.035340629518032074, 0.0019235059153288603, 0.01335587352514267, 0.028414197266101837, 0.014862120151519775, 0.053547102957963943, 0.005232342053204775, -0.00752936489880085, 0.02983904629945755, -0.04010028764605522, -0.03637668117880821, -0.03100540302693844, 0.026351323351264, -0.0360131599009037, 0.03457590565085411, -0.040813978761434555, 0.006889407057315111, 0.04141798987984657, -0.015531567856669426, -0.03178330883383751, -0.0504487045109272, -0.028537819162011147, -0.04866165667772293, -0.045418597757816315, -0.003449550596997142, -0.040934838354587555, 0.0003276355273555964, 0.023567933589220047, 0.022356105968356133, -0.04386448115110397, -0.004325429443269968, 0.01800042949616909, 0.013174531050026417, -0.014650569297373295, -0.02475672774016857, 0.01902986876666546, -0.05640871822834015, -0.07504498213529587, -0.030963677912950516, 0.02995998226106167, -0.025163251906633377, -0.0223902128636837, -0.012960152700543404, 0.025729991495609283, -0.005941979121416807, 0.03790327161550522, -0.0033986708149313927, 0.03722513094544411, -0.04101669788360596, -0.03151964023709297, 0.017411012202501297, 0.020699098706245422, -0.018045969307422638, 0.02082822658121586, 0.04158739000558853, -0.01934088207781315, 0.05296550691127777, -0.006989307701587677, -0.012828157283365726, -0.024241706356406212, 0.013706552796065807, 0.016400732100009918, 0.028111696243286133, -0.041517529636621475, -0.03178878873586655, 0.016778916120529175, -0.04301869869232178, 0.011306950822472572, -0.0008073322824202478, -0.018877606838941574, 0.016614394262433052, -0.007013346534222364, -0.01687508635222912, 0.03620254620909691, 0.02128269337117672, 0.017843782901763916, 0.0011833043536171317, 0.020198773592710495, -0.026588670909404755, -0.008494110777974129, 0.023058384656906128, 0.031273651868104935, 0.04748604819178581, -0.02932678908109665, 0.012704720720648766, -0.0051808743737638, -0.029272446408867836, 0.0407387837767601, 0.0099737998098135, -0.03564660996198654, -0.04442693293094635, -0.003757092170417309, -0.016537200659513474, 0.032352905720472336, 0.0423562116920948, 0.0044882632791996, 0.01733316294848919, -0.03665238991379738, -0.023228947073221207, -0.010391289368271828, -0.04243773594498634, -0.013997082598507404, 0.06665332615375519, -0.022532476112246513, -0.035374872386455536, -0.017223596572875977, -0.040880750864744186, -0.01607467420399189, -0.019662227481603622, 0.02489609085023403, -0.05346084386110306, 0.022999368607997894, -0.001490255119279027, 0.028043223544955254, -0.03780392184853554, 0.02572939172387123, 0.018564360216259956, 0.04026088863611221, -0.03417350724339485, -0.04816422611474991, 0.008020020090043545, 0.0005095054511912167, 0.0056412299163639545, -0.021979371085762978, -0.0015122294425964355, -0.0030609644018113613, 0.01346858311444521, 0.010695244185626507, -0.0041812993586063385, 0.025755329057574272, 0.004846591968089342, 0.023689744994044304, -0.04242881014943123, 0.03189536929130554, -0.01685388945043087, 0.0387258380651474, 0.004220576491206884, -0.027383269742131233, -0.010159648023545742, 0.051007967442274094, 0.023996826261281967, -0.030312135815620422, 0.040977347642183304, 0.031738124787807465, 0.05227285623550415, -0.027326853945851326, 0.0002597832353785634, 0.009357177652418613, 0.04420291632413864, 0.01425210852175951, 0.0442756712436676, -0.0328032486140728, -0.006176846567541361, 0.04010577127337456, -0.010760852135717869, -0.033018797636032104, 0.04197902977466583, 0.03453568369150162, 0.0022559580393135548, -0.02273843251168728, -0.0372786745429039, 0.004521025810390711, -0.02998567745089531, -0.004376696888357401, -0.015364345163106918, -0.034709714353084564, 0.008360318839550018, -0.005591671448200941, -0.03693510219454765, 0.031309500336647034, -0.018309418112039566, 0.010107365436851978, 0.003082837210968137, -0.010899926535785198, -0.023968026041984558, 0.04084435850381851, -0.022880107164382935, -0.022441517561674118, 0.039443641901016235, 0.030699102208018303, -0.017428826540708542, 0.04337264969944954, 0.00954341795295477, 0.019766174256801605, -0.01254473440349102, 0.042801789939403534, 0.016732333227992058, -0.009946556761860847, -0.011168580502271652, -0.011218084022402763, -0.056276388466358185, 0.03036811202764511, -0.020943066105246544, -0.059217024594545364, 0.04556867852807045, -0.04753696918487549, -0.01596851646900177, -0.062128614634275436, 0.036868397146463394, -0.023275738582015038, 0.017293201759457588, 0.048007234930992126, -0.027229711413383484, -0.0015019996790215373, 0.026389213278889656, -0.007398894522339106, 0.04953703656792641, 0.017399372532963753, 0.03509986773133278, -0.0166133064776659, 0.02585049904882908, 0.03395494818687439, -0.0247967392206192, 0.00649304362013936, 0.015004727058112621, -0.014554248191416264, -0.04071049764752388, 0.00711643835529685, -0.02397589385509491, 0.023296363651752472, -0.019650012254714966, 0.002252027625218034, -0.020885303616523743, 0.04677202180027962, 0.011212769895792007, -0.06344006210565567, -0.025034353137016296, 0.009972353465855122, -0.061041247099637985, 0.002014841651543975, 0.024658750742673874, 0.039035312831401825, -0.010564385913312435, 0.016813160851597786, -0.03844345360994339, -0.023461641743779182, 0.03447806462645531, -0.021553752943873405, 0.022686176002025604, -0.004970854613929987, -0.030179979279637337, -0.05260023847222328, -0.056846510618925095, -0.024225743487477303, -0.007074677851051092, -0.06616822630167007, -0.046999961137771606, 0.01701897382736206, 0.02484155260026455, -0.008990349248051643, -0.004057821352034807, -0.015627151355147362, -0.0031945095397531986, 0.05539999157190323, 0.052986133843660355, 0.0036025848239660263, 0.029654528945684433, 0.02975241094827652, 0.012337724678218365, 0.026697207242250443, -0.02504844032227993, 0.03085419535636902, -0.024836832657456398, -0.00978090800344944, -0.020308714359998703, 0.008463544771075249, -0.0016838978044688702, -0.05730530247092247, -0.0015199173940345645, 0.010542349889874458, 0.021979494020342827, -0.0072960807010531425, -0.08095336705446243, -0.019762253388762474, -0.05262494832277298, 0.008374622091650963, -0.03639604151248932, 0.05848556011915207, 0.000520834291819483, -0.004177691414952278, -0.025156833231449127, -0.06066491827368736, 0.13688723742961884, 0.05118980631232262, 0.047513317316770554, 0.01434529572725296, 0.0642070546746254, 0.04679378122091293, 0.047164175659418106, -0.0065324255265295506, 0.0038685286417603493, -0.030492374673485756, 0.021418750286102295, -0.041154537349939346, 0.02348634973168373, 0.011234584264457226, 0.0008804978569969535, 0.026080964133143425, -0.01292832288891077, 0.02350681647658348, 0.010209232568740845, -0.023657504469156265, -0.04831021651625633, 0.024835431948304176, 0.02332463674247265, 0.030744917690753937, -0.00168546661734581, 0.0006799884140491486, 0.021173790097236633, -0.03959627076983452, 0.016460487619042397, -0.04295201972126961, 0.05347521975636482, -0.025783797726035118, 0.062087204307317734, -0.0037611820735037327, -0.01854470558464527, 0.02767038717865944, 0.01738910749554634, -0.002358457539230585, 0.0032040425576269627, -0.01645445078611374, -0.029943522065877914, 0.009533841162919998, 0.035321734845638275, -0.03464080020785332, 0.008366619236767292, 0.01952669396996498, -0.028311658650636673, -0.006230662111192942, 0.01015239953994751, -0.04061667248606682, 0.06601066142320633, -0.027770942077040672, 0.048433758318424225, -0.02640802599489689, -0.020173903554677963, 0.013857555575668812, 0.04757923632860184, -0.04808959737420082, -0.0006808125763200223, 0.00435649836435914, 0.007028804626315832, 0.026243403553962708, -0.02195923402905464, 0.029440471902489662, -0.047396618872880936, 0.006251159589737654, 0.013003557920455933, 0.020809480920433998, 0.016016019508242607, 0.014768742024898529, -0.018069123849272728, -0.0011729368707165122, -0.01757012866437435, -0.03532576933503151, 0.03138212114572525, -0.007440435234457254, -0.021107036620378494, 0.02918534353375435, -0.0016738680424168706, -0.015426822006702423, -0.01506452914327383, -0.04832746461033821, -0.012216615490615368, 0.002390373032540083, 0.017350833863019943, 0.03943141922354698, -0.040581755340099335, -0.0442764051258564, -0.023468870669603348, 0.04369255527853966, 0.029201500117778778, 0.0180318932980299, -0.012878944166004658, 0.010309603996574879, -0.026151614263653755 ]
Abstract : The use of fluorescent reporter proteins is an established experimental approach for dynamic quantification of gene expression over time. Yet, the observed fluorescence levels are only indirect measurements of the relevant promoter activity. At the level of population averages, reconstruction of mean activity profiles from mean fluorescence profiles has been addressed with satisfactory results. At the single cell level, however, promoter activity is generally different from cell to cell. Making sense of this variability is at the core of single-cell modelling, but complicates the reconstruction task. Here we discuss reconstruction of promoter activity statistics from time-lapse population snapshots of fluorescent reporter statistics, as obtained e.g. by flow-cytometric measurements of a dynamical gene expression experiment. After discussing the problem in the framework of stochastic modelling, we provide an estimation method based on convex optimization. We then instantiate it in the fundamental case of a single promoter switch, reflecting a typical random promoter activation or deactivation, and discuss estimation results from in silico experiments.
[ 0.008476623333990574, -0.02109691873192787, -0.003090586746111512, -0.010127970017492771, 0.019634941592812538, -0.008106171153485775, -0.049032021313905716, 0.01654551737010479, 0.009777846746146679, 0.02262164279818535, 0.022641751915216446, -0.02070005051791668, 0.015263209119439125, -0.022100679576396942, 0.008772418834269047, 0.0024527935311198235, 0.010274223983287811, -0.01410262193530798, 0.007877998054027557, -0.0016880349721759558, -0.000542044872418046, 0.008335800841450691, -0.054509393870830536, -0.03228190913796425, -0.026232033967971802, 0.04937553405761719, 0.03115464560687542, -0.0165849756449461, 0.07925961911678314, 0.021850330755114555, 0.00015322388208005577, -0.05376012623310089, 0.013748470693826675, -0.05764293670654297, 0.002111424459144473, -0.028567740693688393, 0.020842496305704117, 0.00044135094503872097, -0.0372120663523674, -0.048413921147584915, 0.02176007442176342, -0.018640317022800446, 0.06306767463684082, -0.031793300062417984, -0.037801604717969894, -0.010963547974824905, -0.02622138150036335, -0.003955791238695383, 0.02697458490729332, 0.011309531517326832, -0.001796199008822441, 0.008266995660960674, -0.022974960505962372, -0.011646094731986523, 0.011602318845689297, 0.001276063034310937, 0.02824457734823227, -0.00796661339700222, -0.021994836628437042, 0.03510044515132904, -0.003680284135043621, -0.02002461813390255, 0.04468327760696411, -0.08042610436677933, 0.05379769951105118, 0.04375357925891876, -0.002914157696068287, -0.012292583473026752, 0.034110456705093384, -0.01755126565694809, -0.01393003948032856, -0.027332423254847527, -0.049585092812776566, -0.013904513791203499, -0.0005843975231982768, -0.0054573300294578075, 0.023659957572817802, 0.02420094795525074, -0.01020418107509613, -0.01846906915307045, -0.019737280905246735, 0.023276811465620995, -0.005321652162820101, 0.020447200164198875, -0.07882647961378098, -0.037017691880464554, -0.002762177027761936, -0.006159641779959202, 0.011833889409899712, -0.004683608654886484, 0.003289327956736088, 0.0514545701444149, 0.03509654104709625, -0.019641777500510216, 0.005992244929075241, 0.07344768196344376, -0.0397229865193367, 0.02073700912296772, 0.0012469401117414236, -0.013458090834319592, 0.05712589994072914, 0.06226152181625366, -0.030905740335583687, 0.049264080822467804, -0.04296919330954552, -0.010388205759227276, 0.03881906718015671, -0.011753203347325325, -0.027187034487724304, -0.022428767755627632, -0.00043840293074026704, -0.02365950681269169, 0.03194667026400566, 0.031689923256635666, 0.010195868089795113, 0.041785866022109985, 0.013971052132546902, 0.03634721413254738, -0.046294983476400375, 0.0017266880022361875, 0.019952140748500824, -0.004462988581508398, 0.06049884855747223, -0.025880035012960434, 0.01646285690367222, -0.00395849347114563, -0.03605399653315544, 0.04997065290808678, -0.04405178502202034, -0.025192618370056152, -0.0335281640291214, -0.05039924010634422, -0.02812589891254902, 0.03401213884353638, -0.01970096491277218, 0.02329082414507866, -0.016310401260852814, 0.03660624474287033, 0.01873587816953659, -0.08223415911197662, 0.03905867785215378, 0.013249925337731838, -0.027841564267873764, 0.07824289798736572, 0.015974806621670723, 0.03422093018889427, -0.025886664167046547, -0.02683410793542862, -0.024969933554530144, 0.03825077414512634, -0.03316853195428848, 0.017819570377469063, -0.03129236772656441, 0.012737843208014965, -0.016005782410502434, -0.0018721090164035559, -0.01171142142266035, 0.02517511136829853, 0.003700084751471877, 0.012707509100437164, -0.035663921386003494, -0.003688791999593377, -0.02164790779352188, 0.058776386082172394, -0.013543512672185898, 0.05719079077243805, -0.01256883330643177, -0.020168926566839218, -0.02814539149403572, -0.042408376932144165, 0.04790611192584038, -0.03310072049498558, 0.019411694258451462, 0.02218865416944027, 0.03530789911746979, 0.016272706910967827, 0.042862147092819214, -0.03195991367101669, 0.03252679482102394, 0.04842352494597435, -0.039911795407533646, -0.013094780966639519, 0.00687213521450758, 0.07834532111883163, 0.02231941558420658, 0.003010581713169813, 0.034405846148729324, -0.01656327024102211, -0.017711453139781952, -0.020435692742466927, -0.0014456670032814145, 0.05841081961989403, -0.008952576667070389, 0.030566221103072166, -0.010816605761647224, -0.006496213376522064, 0.01346774585545063, -0.012739017605781555, -0.03372354060411453, -0.03898850828409195, -0.012989225797355175, 0.02932378090918064, -0.021731972694396973, 0.03711274266242981, -0.060067068785429, 0.028794292360544205, -0.007146855350583792, 0.06481003016233444, -0.04664364829659462, -0.013194437138736248, 0.05027315020561218, 0.015405719168484211, -0.022552799433469772, 0.003295424161478877, -0.014542624354362488, -0.0036455232184380293, -0.028708867728710175, 0.052688539028167725, 0.003160694846883416, -0.01715908944606781, 0.05101904645562172, -0.022662105038762093, 0.04338978976011276, -0.006408053450286388, 0.028520463034510612, 0.016264352947473526, 0.026484224945306778, 0.055914025753736496, -0.028751468285918236, 0.00004720859942608513, 0.0006832103827036917, 0.062081482261419296, -0.00670023774728179, 0.06934363394975662, 0.036462195217609406, -0.01248237770050764, 0.018668804317712784, 0.02186056412756443, -0.036638569086790085, 0.024833325296640396, -0.0014996897662058473, 0.020296571776270866, 0.041001930832862854, 0.049422960728406906, -0.016134129837155342, 0.02132364735007286, -0.02744733914732933, 0.00859709270298481, -0.04266517981886864, 0.029582960531115532, -0.010283674113452435, 0.0488368421792984, 0.01952439919114113, 0.025509295985102654, -0.027733705937862396, -0.013938759453594685, 0.008882960304617882, 0.0295504629611969, -0.04583161696791649, 0.028624193742871284, 0.001676397048868239, 0.03992599993944168, 0.007335525471717119, 0.00009355949441669509, 0.024693094193935394, 0.03835149109363556, -0.030366720631718636, 0.014252537861466408, -0.030430501326918602, -0.059812817722558975, 0.0002865043352358043, -0.06301912665367126, -0.0559152215719223, -0.044214360415935516, -0.06970511376857758, 0.005646679550409317, 0.038494862616062164, -0.044782474637031555, 0.0361696220934391, -0.005444672424346209, 0.006981758400797844, -0.016579991206526756, -0.03145243227481842, 0.06181774660944939, 0.01325595285743475, 0.02244020812213421, -0.03163867071270943, 0.03098580427467823, -0.01897149533033371, 0.03499286621809006, -0.033714357763528824, -0.021510668098926544, -0.02274632826447487, -0.003267555497586727, 0.014750893227756023, -0.00013776557170785964, -0.00014704724890179932, -0.0142666632309556, -0.03553583472967148, -0.03739958629012108, 0.004757471848279238, 0.016836199909448624, 0.0009345408761873841, 0.010246152058243752, -0.061342038214206696, 0.07447171211242676, 0.013904607854783535, -0.05195750668644905, 0.03149043396115303, 0.07073789089918137, -0.030901044607162476, 0.0594930425286293, 0.006056660320609808, 0.008575771003961563, -0.03535526990890503, 0.04281175881624222, 0.05768483877182007, 0.017227759584784508, -0.016854379326105118, -0.011628717184066772, -0.04787297546863556, 0.03627888858318329, 0.023342572152614594, -0.036438554525375366, -0.036851558834314346, 0.03689894452691078, 0.013848692178726196, -0.06915812939405441, 0.02356102131307125, -0.045959893614053726, -0.05175071582198143, -0.04238143563270569, -0.029310503974556923, 0.03651159629225731, 0.04901707172393799, 0.03525453433394432, 0.000695852271746844, -0.004114619456231594, 0.0063282824121415615, 0.01406623050570488, 0.045424606651067734, -0.029494483023881912, 0.04782513529062271, 0.0068916515447199345, 0.0009107911610044539, 0.021572448313236237, 0.0315357930958271, -0.021003393456339836, 0.0017512867925688624, 0.014972545206546783, -0.010574666783213615, 0.0017789071425795555, 0.008813699707388878, -0.0022248278837651014, -0.0015969384694471955, 0.025794968008995056, -0.02420194074511528, -0.02160142920911312, -0.02642054855823517, -0.012970222160220146, 0.018120301887392998, -0.0010702535510063171, 0.009771806187927723, 0.0017928279703482985, -0.030941853299736977, -0.022523028776049614, 0.04004638269543648, 0.0047043864615261555, 0.046086348593235016, -0.0484679751098156, 0.05848510190844536, 0.011978070251643658, -0.021820949390530586, -0.0004431939742062241, -0.045671358704566956, 0.010844423435628414, 0.03543125465512276, -0.013871588744223118, 0.04302249103784561, -0.035283710807561874, 0.009609292261302471, 0.0062170205637812614, 0.008951078169047832, 0.022400271147489548, 0.03033146634697914, 0.06734378635883331, 0.009495520032942295, -0.009454130195081234, -0.028132598847150803, -0.0084490105509758, -0.0066505009308457375, -0.025333009660243988, -0.03972230106592178, -0.012201618403196335, -0.03501512482762337, -0.02679065801203251, 0.04454322159290314, 0.05311629921197891, 0.03822159022092819, 0.010777725838124752, 0.040043171495199203, -0.016183193773031235, 0.011627987027168274, 0.04211802035570145, 0.001235205796547234, 0.021938417106866837, -0.01527097262442112, 0.04560289531946182, -0.008428777568042278, -0.016501376405358315, -0.004795852582901716, -0.001754389377310872, -0.015602934174239635, 0.0044921706430613995, 0.045691657811403275, -0.028617076575756073, -0.038618795573711395, 0.017614971846342087, -0.030946940183639526, 0.02645532786846161, -0.026680879294872284, -0.01323564350605011, -0.00974431075155735, 0.017178107053041458, 0.010494740679860115, -0.04674359783530235, -0.006585640832781792, -0.05197696387767792, 0.03876309096813202, 0.033025167882442474, 0.00030630012042820454, -0.05065279081463814, -0.028987247496843338, -0.017825724557042122, -0.05225254222750664, 0.011600733734667301, 0.03058171086013317, -0.010116021148860455, -0.014750446192920208, -0.04019520804286003, 0.016471590846776962, 0.02217315323650837, -0.01868300512433052, -0.01125301793217659, 0.001624679658561945, 0.023092547431588173, -0.009881601668894291, 0.024049289524555206, 0.00012609479017555714, -0.006087102927267551, 0.029094889760017395, -0.041974641382694244, 0.03791290894150734, -0.014843053184449673, 0.002060636878013611, -0.011255878023803234, 0.02107374370098114, 0.006586041301488876, 0.032091349363327026, 0.0107659250497818, -0.034020159393548965, -0.024749338626861572, 0.05010686814785004, -0.04682547226548195, -0.038627780973911285, 0.04108801856637001, 0.03255734220147133, 0.008524429984390736, 0.04694628342986107, 0.03419504314661026, 0.012160585261881351, 0.028584565967321396, 0.017849421128630638, -0.05361686646938324, 0.018920281901955605, -0.007724471390247345, 0.02217065915465355, -0.013433394953608513, -0.012492005713284016, 0.028879603371024132, -0.00785802211612463, 0.02741984836757183, -0.024794597178697586, -0.01645621284842491, -0.032704148441553116, -0.031351614743471146, -0.036486972123384476, 0.009061268530786037, -0.02888224460184574, -0.002147828694432974, 0.016815142706036568, -0.00900509487837553, 0.002073105424642563, -0.024494407698512077, -0.0019089794950559735, -0.014899956062436104, -0.02903512492775917, 0.006794567219913006, -0.008234903216362, 0.008082281798124313, -0.010279961861670017, 0.011325032450258732, -0.06796952337026596, 0.009976282715797424, -0.011191733181476593, -0.003975100349634886, -0.050980910658836365, -0.01562260091304779, -0.007883289828896523, -0.03522353991866112, -0.06032674387097359, -0.0009463476599194109, 0.0020948448218405247, -0.013847707770764828, 0.0027291602455079556, -0.0283002108335495, 0.010091948322951794, -0.02907412312924862, -0.01979241520166397, 0.04145253449678421, 0.005457972176373005, -0.05290134623646736, -0.059214938431978226, 0.015492347069084644, -0.04253711923956871, 0.017208514735102654, 0.006229689344763756, -0.048797283321619034, -0.03300320729613304, -0.0523759126663208, 0.029638446867465973, -0.03040735423564911, -0.00013318868877831846, -0.03829101473093033, -0.04146427661180496, -0.028678048402071, 0.025898059830069542, 0.027652988210320473, -0.018311692401766777, 0.00521291047334671, -0.034553028643131256, 0.018202736973762512, -0.02366751618683338, -0.001463088789023459, -0.009277671575546265, -0.02095651626586914, -0.003131976118311286, 0.051891010254621506, 0.0004503301461227238, -0.007923522032797337, 0.024238726124167442, 0.02610108070075512, 0.010008961893618107, 0.003252908354625106, -0.023705018684267998, -0.03955439105629921, -0.016200954094529152, 0.01032391469925642, -0.02954321727156639, -0.002717047929763794, -0.011676015332341194, 0.026353023946285248, -0.05029412358999252, 0.030988454818725586, -0.005902532953768969, -0.018842380493879318, -0.0014040976529940963, -0.01379561796784401, 0.06810523569583893, -0.037227995693683624, 0.01192134153097868, -0.01183585450053215, 0.027414515614509583, 0.013303941115736961, 0.02176360785961151, -0.028554823249578476, -0.017678534612059593, -0.05673136189579964, -0.07176743447780609, 0.045727312564849854, -0.03828289732336998, -0.030185136944055557, -0.009854375384747982, 0.015692178159952164, 0.02668527141213417, -0.014018275775015354, 0.05660729110240936, 0.0424690842628479, -0.000816619663964957, 0.012488547712564468, -0.020433783531188965, 0.01053993683308363, 0.019579460844397545, -0.05671895295381546, 0.0074163200333714485, -0.007048281840980053, -0.02743198536336422, -0.008329419419169426, -0.019595887511968613, -0.03386055305600166, -0.01834144815802574, -0.009635841473937035, 0.038821030408144, 0.008625258691608906, 0.02544591762125492, -0.006582268513739109, -0.06454110890626907, -0.029115507379174232, 0.034234724938869476, -0.009681078605353832, 0.023892395198345184, 0.02814321033656597, -0.0063151149079203606, 0.04475272074341774, 0.028873099014163017, -0.01115967147052288, -0.006092878989875317, -0.038469456136226654, 0.06635536998510361, -0.04047583043575287, -0.04872474819421768, 0.036535609513521194, 0.05689118057489395, -0.08566614985466003, -0.045916758477687836, 0.01858033612370491, -0.005968671757727861, -0.016525737941265106, -0.03740983083844185, -0.003123251721262932, -0.024296313524246216, -0.06208951398730278, -0.0003172231372445822, 0.01970759592950344, -0.005546533036977053, 0.02309207245707512, 0.017241882160305977, 0.017151664942502975, -0.03625942021608353, 0.0686672180891037, 0.036089684814214706, -0.003646185388788581, -0.025229094550013542, -0.04599189758300781, 0.015044581145048141, -0.01899389922618866, -0.014164197258651257, 0.028855156153440475, 0.013098912313580513, 0.004994662944227457, 0.039571117609739304, -0.011153116822242737, 0.018936211243271828, 0.016915787011384964, -0.005551941227167845, 0.04248275235295296, -0.027376143261790276, -0.06616801768541336, -0.026676375418901443, 0.03171484172344208, 0.05609915405511856, 0.03466671705245972, -0.028620438650250435, -0.0015785262221470475, 0.0395129919052124, -0.02466951683163643, -0.03161950781941414, -0.07249371707439423, -0.04833325371146202, -0.04163118824362755, -0.03983829915523529, -0.043070949614048004, -0.03689763322472572, 0.01193747203797102, 0.026334568858146667, 0.020961960777640343, -0.009438401088118553, -0.02126474492251873, -0.012524407356977463, 0.006088405381888151, 0.0347481332719326, -0.04424883797764778, 0.006435411050915718, -0.050505053251981735, -0.02264893613755703, -0.06668934971094131, -0.01671515963971615, -0.020459871739149094, 0.023371465504169464, -0.025438889861106873, 0.008877086453139782, -0.008104851469397545, 0.0371825285255909, 0.009930710308253765, 0.019213112071156502, -0.015583382919430733, -0.04215492680668831, -0.0026659530121833086, 0.02507423609495163, -0.020385529845952988, 0.043348778039216995, 0.03450876846909523, -0.012203112244606018, 0.00222686561755836, 0.00918301660567522, -0.015928471460938454, -0.009803486056625843, -0.01359121035784483, 0.008614216931164265, 0.025090930983424187, 0.01741849258542061, -0.00014377254410646856, -0.0018636916065588593, -0.02703106217086315, 0.018546482548117638, -0.000731123611330986, 0.031148336827754974, 0.002898752922192216, 0.008832783438265324, 0.017310114577412605, 0.055618226528167725, 0.014932908117771149, 0.033423107117414474, -0.030226128175854683, 0.010787634178996086, 0.038377195596694946, 0.0008930884650908411, 0.03030247986316681, 0.053330667316913605, 0.0006522777839563787, -0.031457722187042236, 0.0035137576051056385, 0.009409136138856411, -0.027571026235818863, 0.012666923925280571, -0.027176445350050926, -0.012374336831271648, -0.0635378286242485, -0.010839642025530338, 0.0034229052253067493, 0.050811637192964554, -0.010611185804009438, 0.01134558767080307, -0.0007379317539744079, -0.033789537847042084, -0.03598945215344429, -0.01234191283583641, -0.06646259129047394, -0.04154735058546066, 0.037858616560697556, -0.04947258159518242, -0.015877332538366318, -0.022784540429711342, -0.034386973828077316, -0.013107323087751865, 0.024955280125141144, 0.008988982997834682, -0.015925869345664978, -0.012011083774268627, 0.0013889506226405501, 0.013731204904615879, -0.028013328090310097, -0.00013087572006043047, 0.021663904190063477, 0.004638472571969032, -0.009535416029393673, -0.03920312970876694, 0.010563144460320473, 0.05428652837872505, 0.028800904750823975, -0.022864535450935364, -0.015533801168203354, 0.028702430427074432, 0.021403823047876358, -0.018953852355480194, -0.025805113837122917, 0.05506536364555359, -0.010669405572116375, 0.025886747986078262, -0.0006801873096264899, -0.00498767988756299, -0.01429132279008627, 0.025951478630304337, 0.013522674329578876, -0.0015151490224525332, 0.021645456552505493, 0.012584569863975048, 0.035193827003240585, -0.00757743651047349, 0.04460233077406883, 0.005477212835103273, 0.0634431317448616, -0.018865952268242836, 0.01265073660761118, 0.01071509625762701, 0.053418245166540146, 0.05787431076169014, 0.028002358973026276, -0.0022574905306100845, 0.02114158682525158, 0.048681508749723434, -0.0048818085342645645, -0.009752342477440834, 0.05210191383957863, 0.010091777890920639, -0.04565240070223808, -0.0052949427627027035, -0.03525843843817711, -0.015381204895675182, -0.02478320151567459, -0.006083101499825716, -0.0031017230357974768, -0.019399117678403854, -0.005344246048480272, -0.02550797164440155, -0.01715468056499958, 0.06326739490032196, -0.03703286871314049, -0.008508753962814808, 0.0019440872129052877, -0.022771090269088745, -0.014400371350347996, 0.053407326340675354, -0.02275552786886692, 0.011767605319619179, 0.034035976976156235, 0.017630549147725105, 0.012607008218765259, 0.056083109229803085, 0.01438051089644432, 0.007444469723850489, -0.03576933220028877, 0.058314062654972076, 0.030882302671670914, 0.0033209107350558043, -0.022141387686133385, -0.006672098767012358, -0.03542858734726906, 0.014919864013791084, -0.04555053263902664, -0.04811232537031174, 0.02643723413348198, -0.04982781410217285, 0.0062394896522164345, -0.06928142160177231, 0.033484745770692825, -0.011426756158471107, -0.0059241317212581635, 0.02580677531659603, -0.001792390365153551, -0.028744887560606003, 0.047563813626766205, 0.03141944855451584, 0.05193077027797699, 0.014188950881361961, 0.05409684777259827, -0.01316138170659542, 0.058403268456459045, 0.07692793756723404, -0.015179050154983997, -0.0035045433323830366, 0.017195386812090874, 0.01718512363731861, -0.02771405130624771, -0.017477000132203102, -0.03959387168288231, 0.014875032939016819, -0.03155525401234627, -0.0059517137706279755, -0.01335155963897705, 0.06475763022899628, -0.013881566002964973, -0.03399113938212395, -0.004108787979930639, 0.017046619206666946, -0.04947509616613388, -0.0169249065220356, 0.039326347410678864, 0.04051826894283295, -0.004763677716255188, -0.009910264983773232, -0.04644425958395004, -0.016739947721362114, 0.01053650677204132, -0.030031444504857063, 0.03422105684876442, -0.006936937104910612, -0.005215591285377741, -0.049001436680555344, -0.0537228025496006, -0.01714075356721878, -0.022330118343234062, -0.03976426646113396, -0.05187845602631569, 0.04144573584198952, 0.04843754693865776, 0.04699167236685753, 0.018233971670269966, -0.03396501764655113, 0.015729911625385284, 0.006900067441165447, 0.04920864850282669, -0.013262676075100899, 0.07048129290342331, 0.04146458953619003, 0.016639702022075653, 0.007790661882609129, -0.02173267863690853, 0.0349775068461895, -0.035159360617399216, 0.007027662359178066, -0.015182537026703358, 0.014326624572277069, -0.045760203152894974, -0.061212390661239624, 0.019588835537433624, 0.020398424938321114, -0.017490003257989883, -0.010131384246051311, -0.031099393963813782, 0.004266820847988129, -0.06022251769900322, -0.03796800598502159, -0.04461173340678215, 0.024725008755922318, 0.0006144280778244138, 0.0005453526391647756, -0.019544150680303574, -0.055925652384757996, 0.13356825709342957, 0.07856976985931396, 0.04961707070469856, -0.01680130884051323, 0.06397946178913116, 0.031570252031087875, 0.033478498458862305, -0.02650742419064045, -0.021746356040239334, -0.029209034517407417, 0.042787011712789536, 0.01492237951606512, -0.001021177158690989, 0.005329413339495659, 0.05000622197985649, 0.038926318287849426, -0.015131406486034393, -0.007869508117437363, 0.04466487094759941, -0.06429582834243774, -0.06474973261356354, 0.03436894342303276, 0.0016039181500673294, -0.011224092915654182, -0.02920694835484028, 0.046427562832832336, 0.02761969529092312, -0.05115783214569092, 0.013201250694692135, 0.01654243655502796, 0.013642970472574234, -0.046334121376276016, 0.05020768940448761, 0.017319854348897934, -0.028610777109861374, 0.04978952556848526, 0.0073820739053189754, -0.015710512176156044, 0.00262539554387331, -0.011943505145609379, -0.02244781143963337, 0.03526844084262848, 0.013598899357020855, -0.01020832359790802, 0.005608617328107357, -0.008476919494569302, -0.03907487913966179, 0.020290521904826164, 0.02408739924430847, -0.049060288816690445, 0.06908837705850601, -0.03269965574145317, 0.040049683302640915, -0.015969306230545044, -0.03414258360862732, -0.006927485577762127, 0.012485767714679241, -0.02940516546368599, -0.005723654758185148, 0.021479418501257896, 0.032916102558374405, 0.014414289966225624, -0.0021834159269928932, -0.02055056020617485, -0.012394702062010765, -0.010471002198755741, -0.0047368258237838745, 0.017046282067894936, -0.0362575463950634, -0.012785270810127258, -0.04416096955537796, -0.004897143226116896, 0.01997704990208149, -0.04148171469569206, 0.03254326060414314, 0.03667282685637474, -0.048885736614465714, 0.04806993156671524, -0.02352209948003292, -0.03127005323767662, -0.010564572177827358, -0.025445081293582916, 0.030510935932397842, -0.03353901952505112, 0.011386197991669178, 0.04723607003688812, -0.0069646527990698814, -0.00851123034954071, -0.024149438366293907, 0.01646283082664013, 0.05113213136792183, 0.017277255654335022, 0.01736556924879551, -0.002296583028510213, -0.012178495526313782 ]
Q: passwordless login set up automation for ubuntu I have space separated file containing ip addresses and credentials like this: 10.0.0.1 user_master password_master 10.0.0.3 user_slave1 password_slave1 ... 10.0.0.20 user_slave20 password_slave20 I want create mutual passwordless ssh login between master(first line) and all other slaves. All machines are new Ubuntu 14.04 with no openssh-server installed. Right now I am able to use ssh-keygen and ssh-copy-id to create public key login without inputing password one by one manually, but it's tedious when there are many machines. I want to know how to write script to automate this process. I find it hard for me especially when I have to pass credentials after ssh to other machine then exit. Or is there a out-of-box tool designed for this automation task? A: You can create simple bash script ex: upload.sh and write some automation script : #!/bin/bash remote_host=(192.168.1.1 192.168.1.2 192.168.1.3 172.90.44.21) for i in "${remote_host[@]}" do echo Uploading SSH Key to Host : $i ssh-copy-id -i ~/.ssh/id_rsa.pub $i done You can input your remote address on remote_host array Make it executable chmod upload.sh and then, execute it ./upload.sh
[ 0.026201240718364716, 0.037985194474458694, -0.0012369354953989387, -0.024285312741994858, -0.019751863554120064, -0.0023643190506845713, -0.01074950024485588, 0.026672370731830597, -0.008045988157391548, 0.04798651114106178, 0.015176471322774887, 0.0483892448246479, -0.008776325732469559, -0.04627016931772232, -0.04183780401945114, -0.010249597951769829, 0.012152203358709812, -0.031310126185417175, 0.008081045933067799, -0.00867235753685236, 0.005368787795305252, 0.021385114639997482, -0.0761156752705574, -0.023967325687408447, -0.009130727499723434, 0.005993310362100601, 0.027380939573049545, 0.0029837400652468204, 0.04453835263848305, 0.07636304944753647, -0.018392378464341164, 0.0040756892412900925, 0.04488531872630119, -0.030000366270542145, -0.0035304571501910686, -0.041128162294626236, 0.057819657027721405, -0.036458346992731094, -0.03971455991268158, -0.033376384526491165, 0.011107299476861954, 0.03925406187772751, 0.030665185302495956, -0.04736224561929703, -0.05246740207076073, 0.012492342852056026, -0.011908534914255142, 0.01839182898402214, -0.020654164254665375, -0.012385200709104538, -0.008108441717922688, 0.002171949716284871, 0.048235103487968445, 0.021725481376051903, 0.0018689247081056237, 0.00901826098561287, -0.04072626307606697, -0.03456956148147583, -0.04188888147473335, 0.051356758922338486, 0.030317123979330063, -0.0012168737594038248, 0.019032331183552742, -0.0260748453438282, 0.011877194046974182, 0.018708793446421623, 0.000484251620946452, -0.014493358321487904, -0.020316872745752335, -0.02879546955227852, 0.0008137614349834621, 0.015942811965942383, -0.028503453359007835, -0.039743345230817795, -0.00037673351471312344, 0.022780997678637505, 0.031654417514801025, 0.0314023494720459, 0.007835865020751953, 0.06106256693601608, 0.024334564805030823, 0.04997973144054413, -0.006655081175267696, 0.014528373256325722, -0.05940459668636322, -0.04222183674573898, 0.025358080863952637, 0.0013237312668934464, -0.005709347780793905, -0.016969261690974236, -0.01189746055752039, 0.01978483982384205, 0.006568041630089283, -0.009181960485875607, 0.02733880840241909, 0.05362507700920105, -0.05067664012312889, 0.04048019275069237, 0.00601776409894228, 0.02031662128865719, 0.03409125283360481, 0.0006534751737490296, -0.022526642307639122, 0.037847209721803665, 0.0136882858350873, -0.00390648003667593, 0.02226577326655388, 0.029536070302128792, -0.03708745166659355, -0.03156385198235512, -0.007743297144770622, -0.04060711711645126, 0.0071400003507733345, 0.02696983329951763, -0.019395889714360237, 0.021480917930603027, -0.01278004888445139, 0.03932035714387894, -0.05585179105401039, 0.01881922408938408, 0.008065911009907722, -0.017230549827218056, 0.03654743731021881, -0.037160515785217285, 0.015670495107769966, -0.054751522839069366, -0.05073980614542961, 0.02733299694955349, -0.01635916531085968, -0.04778622090816498, 0.020892739295959473, -0.024113411083817482, -0.0011524545261636376, 0.02621561661362648, -0.03466222062706947, 0.010471894405782223, -0.004074108321219683, 0.026809493079781532, 0.05963979661464691, -0.06859540194272995, 0.023277146741747856, 0.010702678002417088, 0.0034835655242204666, 0.10845249891281128, -0.0004359941522125155, 0.03407725691795349, -0.0067406208254396915, 0.01397647988051176, -0.014423154294490814, 0.02000971883535385, -0.0135249188169837, -0.017883263528347015, -0.020230619236826897, -0.0008860812522470951, 0.010427722707390785, 0.010205925442278385, -0.03312518820166588, 0.03203180059790611, -0.004658758640289307, 0.046729911118745804, -0.013215740211308002, 0.011592624709010124, 0.011219927109777927, 0.03240099549293518, 0.03212329372763634, 0.04179690033197403, -0.06432123482227325, -0.029528241604566574, -0.007411235012114048, -0.05224011465907097, -0.004216180182993412, -0.029839884489774704, -0.005278618074953556, -0.0033587925136089325, 0.025228606536984444, 0.0006746226572431624, 0.027382461354136467, 0.03470134735107422, 0.01662987284362316, 0.04536399245262146, -0.0372299887239933, 0.01400421280413866, -0.0062781875021755695, 0.07914277911186218, 0.01647125370800495, 0.01868816278874874, 0.019297180697321892, 0.009565349668264389, -0.030749451369047165, -0.05354686826467514, 0.011090649291872978, 0.02702394127845764, -0.024961402639746666, 0.034745953977108, 0.0159175805747509, 0.002509316196665168, -0.020168930292129517, -0.007120070978999138, 0.007178815081715584, -0.029894137755036354, -0.011260522529482841, 0.04127709940075874, -0.00889192521572113, 0.040557440370321274, 0.020654425024986267, 0.004176310729235411, 0.017147893086075783, 0.05540647357702255, -0.052184365689754486, -0.008721115067601204, 0.0718611478805542, 0.024517258629202843, -0.02729656547307968, -0.005859896540641785, 0.005948649253696203, -0.01623411849141121, -0.02646949328482151, 0.023229384794831276, -0.0019195664208382368, -0.005283566657453775, -0.02129591442644596, 0.037477005273103714, 0.013154982589185238, 0.012151666916906834, -0.01607045717537403, 0.014213242568075657, -0.018968265503644943, 0.06490912288427353, -0.007661094889044762, 0.008239956572651863, -0.014937511645257473, 0.029312806203961372, -0.017856914550065994, 0.08280783891677856, 0.029434898868203163, -0.01683146134018898, 0.0590163916349411, 0.024882489815354347, -0.022192493081092834, 0.026866432279348373, -0.020880170166492462, -0.006289015058428049, 0.020964864641427994, 0.02601967193186283, 0.006111367139965296, 0.021396437659859657, 0.0032856485340744257, 0.007859556004405022, -0.004444487858563662, 0.018261859193444252, -0.03869863227009773, 0.07090586423873901, 0.02792521007359028, 0.03975994139909744, -0.03313809260725975, 0.00017329712864011526, 0.05789412930607796, 0.05562623590230942, -0.046486739069223404, -0.007422349415719509, -0.04847142845392227, 0.007645860780030489, -0.021319033578038216, 0.03247835859656334, -0.009211918339133263, 0.009149388410151005, 0.015482875518500805, 0.0230785571038723, -0.018861398100852966, -0.021962644532322884, -0.05631788820028305, -0.04068370535969734, -0.04837292805314064, -0.030036354437470436, -0.03571336343884468, 0.0028622106183320284, 0.021571744233369827, -0.01842437870800495, -0.002386499894782901, -0.039273452013731, 0.026265183463692665, -0.019917014986276627, 0.00817760918289423, 0.05524730682373047, 0.03423810377717018, 0.0016236857045441866, -0.018463175743818283, -0.010867512784898281, -0.0044220220297575, 0.04894639179110527, -0.05021920055150986, -0.0042858608067035675, -0.006866213865578175, -0.021468546241521835, 0.019735535606741905, -0.02299233339726925, -0.002559327520430088, 0.00411713682115078, -0.04430418461561203, -0.013949946500360966, -0.046873051673173904, 0.008071842603385448, 0.020232466980814934, -0.01290599349886179, -0.023380693048238754, 0.04989415034651756, 0.044243283569812775, -0.04230818152427673, 0.05066949874162674, 0.016839854419231415, -0.024530598893761635, 0.020163312554359436, 0.019450509920716286, 0.013042686507105827, -0.06425685435533524, 0.08384305983781815, 0.02896934561431408, -0.006002889014780521, -0.039439018815755844, -0.03586823493242264, -0.03288672864437103, 0.0018880774732679129, 0.0095316581428051, -0.002159152878448367, -0.02477249875664711, 0.030624892562627792, 0.008616774342954159, -0.07617413997650146, 0.02658328227698803, -0.01849398948252201, -0.01883416250348091, -0.030871286988258362, -0.012316226959228516, 0.020100509747862816, 0.00376891135238111, 0.0006603343063034117, -0.030409084632992744, -0.020219601690769196, 0.005091445054858923, 0.02670997940003872, 0.03528675064444542, -0.026253724470734596, 0.03215053677558899, 0.013820399530231953, 0.007865756750106812, -0.006293751299381256, 0.016589168459177017, -0.052252840250730515, -0.002879646373912692, -0.012171672657132149, 0.01895810477435589, 0.003218091791495681, 0.03508146107196808, 0.0035192419309169054, 0.030162908136844635, 0.03882980719208717, -0.04745212942361832, 0.01636056788265705, 0.025693008676171303, 0.031979553401470184, -0.007348045706748962, 0.023368628695607185, 0.007225432898849249, 0.0013314923271536827, -0.022791637107729912, -0.08871544897556305, 0.008044322952628136, 0.022161802276968956, 0.07377362996339798, -0.062126077711582184, 0.05242444947361946, 0.031485702842473984, -0.04182378575205803, 0.04989482834935188, -0.06127672269940376, 0.009891563095152378, 0.05790006369352341, 0.003690297482535243, 0.03802588954567909, -0.02819846197962761, -0.0019510519923642278, 0.006475171074271202, -0.007543480489403009, 0.04605814814567566, -0.005305627826601267, 0.03998146206140518, -0.027715690433979034, -0.007533457595854998, -0.01999124512076378, -0.01326671615242958, -0.017189988866448402, -0.03965815156698227, -0.014478634111583233, -0.002198492642492056, -0.060683075338602066, -0.016600148752331734, 0.02368549071252346, 0.021324921399354935, 0.04332033917307854, -0.027552342042326927, 0.008892309851944447, -0.025792866945266724, 0.03769195079803467, 0.01638863794505596, 0.00010360990563640371, 0.026623204350471497, -0.03628558665513992, 0.05956646427512169, 0.005634662229567766, -0.01734800636768341, -0.025094909593462944, -0.0057517122477293015, -0.00423244945704937, 0.029878800734877586, 0.0361139141023159, 0.0010936595499515533, -0.03830062970519066, 0.02703557349741459, -0.008393457159399986, 0.0008737218449823558, -0.031708844006061554, -0.0404038205742836, -0.01979496143758297, 0.04734534025192261, 0.028875352814793587, -0.05202209949493408, -0.028141958639025688, 0.004793036263436079, 0.006070598494261503, 0.006562682334333658, -0.024349739775061607, -0.04540405422449112, -0.02277427166700363, -0.017686093226075172, -0.02567136473953724, 0.006297392770648003, 0.05301239341497421, -0.01321271900087595, 0.019784705713391304, -0.023629723116755486, 0.008040842600166798, -0.003539217170327902, -0.0003838919510599226, 0.022776737809181213, -0.007353127468377352, 0.024815142154693604, 0.014853114262223244, 0.028625888749957085, -0.0087125850841403, -0.030611597001552582, 0.002892891876399517, -0.04430735111236572, -0.01688259281218052, 0.0007382983458228409, -0.005253924522548914, -0.017501147463917732, 0.009473810903728008, 0.017568126320838928, 0.05589563027024269, -0.043612025678157806, -0.03650007024407387, 0.03307584673166275, 0.03012789785861969, -0.06289241462945938, -0.02947256900370121, 0.05334699898958206, -0.029166914522647858, -0.054438862949609756, 0.023209460079669952, 0.016090407967567444, -0.004981155041605234, 0.018477443605661392, 0.03353982791304588, -0.02881680242717266, 0.035730648785829544, -0.055863458663225174, 0.01952771469950676, 0.00704622408375144, -0.02747708559036255, 0.016495296731591225, -0.02964029088616371, 0.03267110884189606, 0.029599647969007492, -0.0075317732989788055, -0.007279074750840664, -0.05034972354769707, 0.009534535929560661, 0.0019309555646032095, -0.00627455348148942, 0.03435803949832916, 0.019250327721238136, 0.015566149726510048, 0.0037050750106573105, -0.0048776306211948395, -0.029076499864459038, 0.028288643807172775, -0.009540621191263199, -0.014532782137393951, 0.0158913005143404, 0.0023432860616594553, 0.015967359766364098, -0.020875204354524612, -0.06421054899692535, -0.0007178856758400798, -0.01558686327189207, -0.009989849291741848, -0.02261771261692047, -0.010755816474556923, -0.0028157909400761127, -0.03806411474943161, -0.047337278723716736, 0.0060979281552135944, -0.03132001310586929, 0.008054831065237522, 0.00032341506448574364, 0.011122703552246094, 0.0006787377642467618, 0.0026812341529875994, -0.023149043321609497, 0.05142907425761223, 0.02885538525879383, -0.06536474078893661, -0.008190504275262356, 0.031096572056412697, -0.010739300400018692, 0.05123426765203476, 0.028844723477959633, -0.03583133965730667, -0.03024003468453884, -0.04709182307124138, 0.029418790712952614, -0.0595865361392498, -0.021040339022874832, -0.03142046555876732, -0.05535903573036194, -0.041886843740940094, 0.03782520070672035, 0.018118778243660927, -0.03685709834098816, -0.01109121274203062, -0.037600137293338776, -0.017357787117362022, -0.02182970568537712, 0.007527180947363377, 0.013021195307374, -0.022800114005804062, -0.0010077888146042824, 0.06728266179561615, -0.058799441903829575, 0.006134582217782736, -0.0071549988351762295, 0.013239029794931412, -0.0008978075347840786, 0.0038469727151095867, -0.053285084664821625, -0.05872821435332298, 0.0017517845844849944, -0.0012869733618572354, -0.0363847054541111, 0.013568632304668427, -0.0401352159678936, 0.011683226563036442, -0.005331652704626322, 0.006734873633831739, -0.04107167199254036, -0.008734499104321003, -0.06545490771532059, 0.04181600362062454, 0.059536196291446686, -0.023723511025309563, 0.012855716980993748, -0.025235245004296303, 0.017591802403330803, 0.04062868282198906, 0.028256047517061234, -0.02756340801715851, -0.01917041465640068, -0.04213433712720871, -0.04162198305130005, 0.025588439777493477, -0.014047082513570786, -0.010122133418917656, -0.014616724103689194, 0.01461056713014841, 0.011686972342431545, -0.04061170294880867, 0.021008513867855072, 0.06291302293539047, -0.002553770551458001, 0.021495318040251732, -0.025836950168013573, 0.027756333351135254, 0.015900420024991035, -0.04121160879731178, -0.0019595541525632143, 0.009566077031195164, -0.05078882351517677, 0.008258870802819729, -0.030583398416638374, -0.039851993322372437, -0.047660697251558304, -0.01579376496374607, 0.05557321757078171, -0.0021339422091841698, 0.027315204963088036, -0.016399042680859566, -0.05253654718399048, -0.022201044484972954, 0.041371580213308334, -0.00032552299671806395, 0.014205323532223701, 0.050489746034145355, 0.021913042291998863, -0.006099421996623278, -0.006021234206855297, -0.018335463479161263, -0.004751243162900209, -0.04004969447851181, 0.04710585996508598, 0.01872437447309494, -0.030803760513663292, 0.034269578754901886, 0.05542504042387009, -0.07309889048337936, -0.05579495429992676, -0.014403154142200947, -0.0030606503132730722, 0.000838589679915458, -0.007132490631192923, -0.013951941393315792, -0.025754442438483238, -0.008415821939706802, -0.011155693791806698, 0.03847737982869148, -0.01998094469308853, 0.04540656879544258, -0.007679124362766743, 0.020349200814962387, -0.03732351213693619, -0.004268623422831297, 0.06210249662399292, 0.02389412932097912, -0.029891014099121094, -0.04097893461585045, 0.0004711802757810801, -0.005018051713705063, 0.049061667174100876, -0.003945518750697374, 0.023765459656715393, 0.016093626618385315, 0.0235598087310791, 0.00035873797605745494, 0.03846241906285286, 0.019012628123164177, 0.03737979009747505, 0.010978703387081623, -0.04218045249581337, -0.053002551198005676, -0.02106025256216526, 0.017543762922286987, -0.017268935218453407, 0.02846122533082962, -0.02323778346180916, 0.01602177880704403, 0.03486538305878639, 0.04689129814505577, -0.010683393105864525, -0.09596151858568192, -0.006110603455454111, -0.029015684500336647, -0.02703120745718479, -0.03906077519059181, -0.015329052694141865, 0.013710937462747097, 0.042595282196998596, -0.01153029315173626, 0.001307120663113892, -0.03923453018069267, 0.0026295161806046963, -0.041586317121982574, -0.010131335817277431, -0.04347671940922737, 0.013764920644462109, -0.024640534073114395, -0.03028920292854309, -0.05583319813013077, 0.006057348567992449, -0.03160940110683441, -0.03157276287674904, 0.008294645696878433, 0.015799105167388916, 0.008785850368440151, -0.009481201879680157, 0.0003593215951696038, 0.021857375279068947, 0.006408055312931538, -0.0362805537879467, -0.00042937451507896185, -0.0012367747258394957, 0.00020019772637169808, 0.03233968839049339, 0.013539140112698078, -0.019351325929164886, 0.05973425507545471, 0.0014097817474976182, 0.005667513702064753, -0.04115322232246399, 0.02361171320080757, 0.00698107061907649, -0.005333267152309418, -0.016818054020404816, -0.01916990987956524, -0.025836020708084106, -0.019220655784010887, 0.023502163589000702, -0.024578992277383804, -0.01584925688803196, 0.0008760418859310448, 0.012199657037854195, -0.00766581017524004, 0.04225941747426987, -0.005266139749437571, 0.018043003976345062, 0.052778344601392746, 0.011259365826845169, 0.022855788469314575, -0.012586272321641445, 0.015913624316453934, -0.0021361473482102156, 0.005254466086626053, -0.011723480187356472, 0.007753845304250717, 0.00044638768304139376, 0.006371505092829466, 0.03855722397565842, -0.028787272050976753, -0.033792249858379364, -0.009942082688212395, 0.00809822604060173, -0.0025013983249664307, 0.038130518049001694, 0.004883407615125179, -0.011458409018814564, 0.01553419977426529, -0.03243342041969299, -0.04889770969748497, 0.01217706874012947, -0.07819101214408875, -0.02195698209106922, 0.037129875272512436, -0.0394296795129776, -0.014750201255083084, -0.046298038214445114, -0.02845924161374569, -0.00004186951264273375, 0.0023950969334691763, -0.00550755625590682, -0.03046313300728798, 0.028149791061878204, 0.025532705709338188, 0.0523843951523304, -0.0005995717365294695, -0.011274832300841808, 0.0035651519428938627, 0.03508152812719345, -0.037380822002887726, -0.06415126472711563, -0.01194384042173624, 0.03972550481557846, 0.007489976938813925, -0.026869244873523712, -0.017195193096995354, -0.010988508351147175, 0.020692765712738037, 0.005965389311313629, 0.007032579742372036, 0.007487933617085218, -0.012719804421067238, 0.03537368401885033, -0.019357234239578247, -0.0034947311505675316, -0.043966423720121384, 0.033388569951057434, -0.02291802689433098, 0.0007120847003534436, -0.026254886761307716, 0.03540666401386261, 0.02126915007829666, -0.026863450184464455, 0.04543103650212288, 0.009785333648324013, 0.056422267109155655, 0.0051047541201114655, 0.03022712469100952, -0.021939275786280632, 0.0446062907576561, 0.0598323680460453, 0.04996371269226074, -0.03330385312438011, 0.04878760129213333, 0.039690278470516205, 0.0014254035195335746, -0.021466724574565887, 0.01498057134449482, 0.01648360677063465, -0.07269609719514847, 0.03845001757144928, -0.010791800916194916, -0.018078627064824104, -0.004507851786911488, 0.008816579356789589, -0.018763374537229538, -0.023681852966547012, -0.008991134352982044, -0.03556418418884277, -0.03044339083135128, 0.06924207508563995, -0.011281189508736134, -0.0016207986045628786, 0.03626890107989311, -0.021263297647237778, 0.012661486864089966, 0.04244181513786316, -0.022627824917435646, -0.00801346730440855, 0.05009728670120239, 0.02659630961716175, -0.02543552964925766, 0.01226392574608326, 0.02197260595858097, -0.010894893668591976, -0.036570146679878235, -0.010104784741997719, -0.011400902643799782, 0.01547902449965477, -0.028401704505085945, -0.011847035959362984, -0.04806375876069069, 0.026086900383234024, -0.011101700365543365, -0.002675123978406191, 0.02908903732895851, -0.007715215906500816, -0.005367868114262819, -0.03946571797132492, 0.031738363206386566, -0.04229933023452759, -0.012289528734982014, 0.0395103320479393, -0.013137221336364746, -0.03215877711772919, 0.05830223485827446, -0.005222864914685488, 0.05623853579163551, 0.02661781571805477, 0.04518013447523117, 0.04885692149400711, 0.0663367360830307, 0.07657894492149353, -0.05330684408545494, -0.00975449476391077, 0.017455682158470154, -0.0016959920758381486, -0.03437457233667374, -0.04602871462702751, -0.02336653135716915, -0.011207450181245804, -0.036747124046087265, -0.016305003315210342, -0.005263691768050194, 0.01757553219795227, -0.01762305200099945, -0.0014569021295756102, -0.002860007109120488, 0.01743949204683304, -0.04396829009056091, 0.013266842812299728, 0.04744875803589821, 0.04047420620918274, 0.018149128183722496, -0.01638883538544178, 0.035659309476614, -0.036696720868349075, 0.008576671592891216, -0.03583137318491936, 0.01589965634047985, 0.017456697300076485, -0.03307633846998215, -0.04833861067891121, -0.052756473422050476, -0.02275649458169937, -0.011764155700802803, -0.047132670879364014, -0.0067034875974059105, 0.04759090393781662, 0.03637292981147766, 0.04928123205900192, 0.016028616577386856, -0.0368388369679451, 0.032497476786375046, 0.0214600320905447, 0.07334966957569122, -0.0012230855645611882, 0.07346128672361374, 0.04958399757742882, -0.018316246569156647, 0.02622676081955433, -0.009571914561092854, 0.03212066367268562, -0.01815171353518963, -0.005542478524148464, 0.0027306077536195517, 0.005693902727216482, -0.038323502987623215, -0.037423502653837204, 0.00006962048064451665, 0.03467350825667381, 0.011621499434113503, -0.022243009880185127, -0.0693388283252716, -0.0269771758466959, -0.07816873490810394, -0.024240698665380478, -0.06928694993257523, 0.03713604062795639, 0.018550610169768333, -0.028439220041036606, -0.010436649434268475, -0.02183016575872898, 0.16188141703605652, 0.045992642641067505, 0.01270601712167263, -0.0122029148042202, -0.021306104958057404, 0.04764299467206001, 0.02463838830590248, 0.018979640677571297, -0.0008111001225188375, -0.04088887199759483, 0.05710761621594429, -0.017594225704669952, 0.043669503182172775, 0.02081422694027424, -0.004777394235134125, 0.05194928124547005, -0.05346304550766945, -0.012785039842128754, 0.017764830961823463, -0.04456251114606857, -0.042824309319257736, 0.0015062540769577026, 0.00856219232082367, 0.036923687905073166, -0.03291499242186546, 0.028563179075717926, 0.008536607027053833, -0.01151199359446764, 0.001276341499760747, -0.016412870958447456, 0.061539068818092346, -0.03176840767264366, 0.056304801255464554, -0.012095277197659016, -0.015619814395904541, 0.04425190016627312, -0.027891840785741806, 0.029014654457569122, -0.014479616656899452, 0.01634063571691513, -0.01220192201435566, 0.015628095716238022, 0.010364046320319176, -0.05012543871998787, -0.007329469081014395, 0.056285206228494644, -0.01859336532652378, 0.0024556380230933428, 0.048423126339912415, -0.051202259957790375, 0.05846186354756355, -0.04837007448077202, -0.008166353218257427, -0.01276540569961071, -0.053454190492630005, 0.007048660423606634, 0.015247290953993797, -0.013354595750570297, -0.03376305475831032, 0.003962119575589895, 0.030707482248544693, 0.020207080990076065, 0.016273651272058487, -0.006192108616232872, -0.015566940419375896, 0.007012644782662392, 0.019396213814616203, 0.026364078745245934, -0.027933381497859955, -0.005191917065531015, -0.01707892119884491, -0.022305047139525414, -0.017139939591288567, -0.06060734763741493, 0.022730151191353798, 0.03941528499126434, -0.0051192110404372215, 0.04345182701945305, 0.0206315740942955, -0.013542644679546356, 0.0035784912761300802, -0.018831001594662666, -0.03665122762322426, -0.04782670736312866, 0.023460138589143753, 0.04739272966980934, -0.048156965523958206, -0.01791510172188282, -0.01691805012524128, 0.04286777600646019, 0.0486590750515461, 0.025867167860269547, -0.03484669700264931, 0.00443902937695384, -0.0037197673227638006 ]
Discover the beauty of South Padre Island as you soar through the air on a parasailing adventure. Glide over the water with a friend, gazing out over miles of stunning views. Parasailing was fantastic. By far the best place we've been parasailing. Captain and deck hand were awesome and their interaction with the kids was amazing. Had great conversations and asked all sorts of questions; made the girls that had never flown before feel very comfortable. They made the trip an absolute pleasure! We will be back next time! The crew was very personable. They were very engaged with all who attended. Also, the employee working the service desk was inviting. She truely made my and my nieces experience enjoyable. Wish I could recall her name though. Very fun and nice people. Very friendly. I liked that the captain of the boat played his own music because it made the experience better.
[ 0.01682804524898529, 0.043380700051784515, -0.014904591254889965, 0.005170871969312429, -0.00039610371459275484, 0.004535929765552282, 0.002167785307392478, 0.03693503141403198, 0.06575844436883926, -0.02141440100967884, 0.037307482212781906, 0.0029180680867284536, -0.016133269295096397, -0.03499968722462654, 0.0011214754777029157, -0.030138783156871796, -0.04989124834537506, -0.03848277032375336, -0.01876029558479786, -0.025489412248134613, -0.027402209118008614, 0.010554666630923748, -0.0582696795463562, -0.019210761412978172, -0.002267030533403158, 0.01643529161810875, 0.04335068166255951, -0.001709638861939311, 0.06459783017635345, 0.07578916847705841, 0.0165720134973526, -0.019971149042248726, 0.044496506452560425, -0.03793612867593765, -0.021434392780065536, -0.012794763781130314, 0.0318579263985157, -0.034542132169008255, 0.0019447773229330778, -0.048139654099941254, 0.003464322304353118, -0.0030108080245554447, 0.04241643100976944, -0.0379413440823555, -0.034824714064598083, -0.01943271793425083, -0.006543152034282684, -0.03580106049776077, 0.00984008889645338, 0.002169312909245491, 0.018263965845108032, -0.0005620938609354198, 0.021564191207289696, -0.005189879797399044, -0.007997560314834118, 0.0011763179209083319, -0.0004987714346498251, -0.03394927456974983, -0.015952911227941513, 0.044968292117118835, 0.009024000726640224, 0.009543304331600666, 0.025454867631196976, -0.06818384677171707, 0.032748058438301086, 0.0043731145560741425, -0.023178337141871452, 0.007457010447978973, -0.002771569648757577, -0.0010703227017074823, -0.0011735860025510192, -0.00995353702455759, -0.014148741960525513, -0.004654788412153721, -0.012791716493666172, 0.008623465895652771, 0.007794894743710756, 0.014291463419795036, -0.011111483909189701, 0.007895607501268387, 0.008322412148118019, 0.0669737160205841, 0.01925993524491787, -0.0005238159210421145, -0.07085283100605011, 0.004928751848638058, -0.005804575514048338, 0.020467190071940422, 0.013532399199903011, 0.02287290245294571, 0.014379149302840233, 0.07010927051305771, -0.0001407041709171608, -0.02782982774078846, 0.038008734583854675, 0.04273233935236931, -0.0443485789000988, 0.027967367321252823, 0.0032127646263688803, 0.008561806753277779, 0.03185528144240379, -0.004495370667427778, 0.00006789887993363664, 0.06086832657456398, -0.06438836455345154, 0.010991006158292294, 0.03134918957948685, -0.010199769400060177, 0.03336897864937782, -0.03750397264957428, 0.011709337122738361, 0.015321781858801842, 0.02347288466989994, -0.002360031707212329, 0.001525535830296576, 0.02954581193625927, 0.016324276104569435, 0.021530961617827415, -0.05012492835521698, 0.0332658477127552, 0.012834357097744942, 0.006067988462746143, 0.03503516688942909, -0.0026318600866943598, 0.023630697280168533, -0.05039893835783005, -0.034080736339092255, 0.050536688417196274, -0.028969889506697655, 0.01104020792990923, 0.010804078541696072, -0.062341026961803436, -0.020182834938168526, 0.031394269317388535, -0.03528904169797897, 0.017847128212451935, -0.047715865075588226, 0.027709225192666054, 0.0039899288676679134, -0.08005282282829285, 0.05525240674614906, 0.025269819423556328, 0.018570439890027046, 0.09101162850856781, 0.02020343579351902, 0.038071781396865845, 0.006918187718838453, -0.01277866493910551, -0.03271367400884628, 0.02338903211057186, -0.03020026721060276, -0.0046167392283678055, -0.02113393507897854, 0.0305634755641222, 0.010253919288516045, 0.010202418081462383, -0.03171798586845398, 0.019629210233688354, -0.005418573040515184, 0.01948852650821209, 0.002145767444744706, 0.003661989001557231, -0.022585423663258553, 0.030829710885882378, -0.016512969508767128, 0.020321182906627655, 0.017176205292344093, -0.011198969557881355, -0.0027643691282719374, -0.05305670574307442, 0.011568116024136543, -0.007055680267512798, -0.017235077917575836, 0.002486899960786104, 0.00633893022313714, 0.02038966678082943, 0.029913702979683876, 0.0067093586549162865, 0.05519798398017883, 0.024919364601373672, -0.02959703840315342, -0.010447077453136444, -0.0005117424298077822, 0.0601370669901371, 0.005507179535925388, -0.030303455889225006, 0.023363696411252022, 0.0022109223064035177, -0.05555631220340729, -0.046017125248909, -0.0073643154464662075, -0.00034859083825722337, -0.04972876235842705, 0.027264144271612167, 0.016709715127944946, 0.013398053124547005, -0.011384422890841961, -0.030634501948952675, -0.011805464513599873, -0.020812921226024628, -0.02476053312420845, 0.05273118242621422, -0.03186829015612602, 0.047096505761146545, -0.007223429158329964, -0.0331898108124733, 0.00837799720466137, 0.06441794335842133, -0.04329490289092064, -0.012759912759065628, 0.030611883848905563, 0.016209904104471207, -0.006475621834397316, -0.024862315505743027, -0.014880617149174213, -0.025440890341997147, -0.026125572621822357, 0.07849372178316116, 0.004743877332657576, -0.018962088972330093, 0.012437752448022366, 0.02087310329079628, 0.03123629465699196, 0.018606295809149742, -0.011240572668612003, 0.001184242544695735, -0.015585881657898426, 0.058562614023685455, 0.0011545894667506218, -0.007738121319562197, -0.014846952632069588, 0.025355277583003044, 0.020952323451638222, 0.06122662127017975, 0.04197457805275917, -0.00038678626879118383, 0.025436853989958763, 0.031705357134342194, -0.00018599843315314502, -0.006146247964352369, -0.006829410325735807, 0.0026562302373349667, 0.02526719495654106, -0.009275880642235279, 0.00183323142118752, 0.05696628615260124, 0.033814989030361176, -0.026809755712747574, -0.018597904592752457, 0.03608623519539833, -0.009138913825154305, 0.04929673671722412, -0.0066116005182266235, 0.03692987933754921, -0.02435622550547123, 0.022697774693369865, 0.05923639237880707, 0.06596646457910538, -0.009172904305160046, -0.016385043039917946, 0.0010405550710856915, -0.005255670752376318, -0.02983045019209385, -0.006529617588967085, 0.03143453970551491, 0.006138068623840809, -0.005368481390178204, 0.019606588408350945, -0.014109940268099308, -0.05352402478456497, -0.026952851563692093, -0.06885713338851929, -0.052072975784540176, -0.04997922480106354, -0.05862162634730339, -0.012669692747294903, 0.037356581538915634, -0.01645888015627861, 0.04198293015360832, -0.021352017298340797, 0.009167901240289211, -0.021665431559085846, 0.011666961014270782, 0.05238911509513855, 0.001100475201383233, 0.06069990620017052, -0.020105039700865746, 0.04865800961852074, 0.01180263515561819, 0.018042530864477158, -0.052833493798971176, 0.00038436215254478157, -0.006610766984522343, -0.000502714654430747, 0.01169341430068016, -0.04704751446843147, -0.00032519164960831404, -0.001790522481314838, -0.05578891932964325, -0.03149742633104324, 0.037724144756793976, 0.019985003396868706, -0.01644415594637394, 0.020523197948932648, -0.04600958898663521, 0.038040757179260254, 0.0370967723429203, -0.024965958669781685, 0.010116802528500557, 0.05981618911027908, -0.022951653227210045, 0.061157695949077606, 0.030046503990888596, -0.006923301611095667, -0.0395670048892498, 0.0639258325099945, 0.035193249583244324, 0.022993292659521103, -0.032295044511556625, -0.007811230141669512, -0.028457727283239365, 0.013217017985880375, 0.005999506916850805, 0.008107122033834457, -0.02719312533736229, 0.0536872074007988, 0.029612530022859573, -0.06042832136154175, 0.02343985065817833, -0.02343219518661499, 0.002857354236766696, -0.04987715929746628, -0.06565465033054352, 0.007267745211720467, 0.02065490558743477, 0.04246734082698822, -0.016218557953834534, -0.032959308475255966, -0.004779728129506111, 0.03185078129172325, 0.0005844776751473546, -0.021148111671209335, 0.026777513325214386, 0.02483641915023327, 0.003241804428398609, 0.0065665352158248425, -0.006142657250165939, -0.011601654812693596, -0.007692731451243162, 0.009970158338546753, -0.012882497161626816, 0.008887910284101963, 0.01658327504992485, -0.014160294085741043, 0.010040132328867912, 0.04833879694342613, -0.013823851943016052, -0.010037141852080822, 0.002353350631892681, 0.04085998982191086, 0.0039024767465889454, -0.009574975818395615, 0.02574956975877285, -0.016125163063406944, -0.016068952158093452, -0.029574936255812645, 0.05960504338145256, 0.03338086977601051, 0.05005950853228569, -0.0602630116045475, 0.07043946534395218, 0.034407760947942734, -0.03751147538423538, 0.05251850187778473, -0.056674763560295105, -0.024340203031897545, 0.01792665757238865, 0.002775559900328517, 0.012201148085296154, 0.006173148285597563, -0.0029884709510952234, -0.0235789455473423, 0.0171187836676836, 0.033256858587265015, -0.03260720148682594, 0.017514582723379135, -0.03453536704182625, -0.03949953243136406, -0.017581788823008537, -0.01595708727836609, -0.020710844546556473, -0.02243184484541416, -0.006332645192742348, -0.008919933810830116, -0.029617009684443474, -0.03229798376560211, 0.03831849619746208, 0.02478664368391037, 0.0243767611682415, -0.007489230018109083, 0.010991804301738739, 0.03571892902255058, -0.0020878189243376255, 0.04041920229792595, -0.039828814566135406, 0.027295507490634918, -0.03904043138027191, 0.04585562273859978, 0.030996525660157204, -0.025689801201224327, -0.04029834643006325, -0.029328880831599236, -0.014688783325254917, 0.046223729848861694, 0.012444156222045422, -0.034502193331718445, -0.032969631254673004, 0.04767751693725586, -0.01714029349386692, 0.017145374789834023, -0.022980516776442528, -0.01846090704202652, -0.015250569209456444, 0.01750081032514572, 0.021437475457787514, -0.057913269847631454, 0.015114243142306805, -0.04455091059207916, 0.06912806630134583, 0.0051614586263895035, -0.06024600565433502, -0.029644185677170753, -0.012894921004772186, -0.00887517724186182, -0.022466598078608513, -0.020609747618436813, 0.052825678139925, 0.011019336059689522, 0.026508856564760208, -0.033222611993551254, 0.026826325803995132, 0.043218426406383514, -0.0034940645564347506, -0.01813383214175701, 0.009053617715835571, -0.014139773324131966, 0.019416287541389465, 0.024623876437544823, -0.00676796305924654, -0.03483177721500397, 0.006432993803173304, -0.05614609643816948, 0.02443769946694374, 0.025172969326376915, -0.047446753829717636, -0.01451712567359209, 0.03670308366417885, 0.016536923125386238, 0.014716984704136848, -0.003372281789779663, 0.01800675503909588, 0.008733311668038368, 0.0194708164781332, -0.04374941438436508, -0.03586425259709358, 0.036827508360147476, -0.024640755727887154, -0.036657799035310745, 0.03600587323307991, 0.022803010419011116, -0.00439889682456851, -0.00831245444715023, 0.029283948242664337, -0.05509553849697113, 0.0362791083753109, -0.062627874314785, 0.0058542173355817795, 0.009744098410010338, -0.04240121692419052, 0.023991411551833153, -0.03736807033419609, 0.043297179043293, 0.014703283086419106, -0.00044944777619093657, -0.04228386655449867, -0.04895203188061714, 0.004862410482019186, 0.020615659654140472, 0.011983332224190235, 0.007239754311740398, 0.004257241729646921, -0.0019453616114333272, -0.027120603248476982, -0.00925084576010704, 0.030635664239525795, -0.012359932996332645, -0.010930478572845459, 0.02800152264535427, 0.0036428512539714575, -0.019810684025287628, 0.05035033077001572, 0.01688145473599434, -0.02538505382835865, 0.01497401762753725, -0.023437561467289925, -0.03294919431209564, -0.05462807044386864, 0.008638585917651653, -0.017092883586883545, 0.0004529448924586177, -0.04020264372229576, -0.01934141293168068, -0.035200126469135284, 0.038828134536743164, 0.0032952320761978626, 0.015338153578341007, 0.009073368273675442, 0.020977279171347618, 0.016751565039157867, 0.05433354154229164, 0.032914530485868454, -0.023565588518977165, -0.030071033164858818, 0.011632492765784264, 0.00813241209834814, 0.030751658603549004, -0.020343998447060585, -0.016787968575954437, -0.04450974240899086, -0.05169476568698883, -0.008145110681653023, -0.03487355634570122, -0.0121657345443964, -0.04016142338514328, -0.045634277164936066, -0.045187365263700485, 0.012654340825974941, -0.004724579397588968, -0.0025187665596604347, 0.01476758997887373, -0.025741441175341606, -0.023917455226182938, -0.038915567100048065, -0.005934509914368391, -0.029280565679073334, -0.006280154921114445, -0.004941066727042198, 0.045163869857788086, 0.010720155201852322, 0.02862728014588356, 0.009656230919063091, 0.021726667881011963, 0.03192415460944176, 0.0033862909767776728, -0.03759390860795975, -0.01645202562212944, -0.04190358892083168, 0.0038070594891905785, -0.008640551939606667, 0.0038100862875580788, -0.03456135466694832, 0.05286840349435806, -0.045785170048475266, -0.007991651073098183, -0.012788042426109314, -0.012665797956287861, -0.0027711426373571157, 0.00105505611281842, 0.06326749175786972, -0.0403539203107357, 0.019539710134267807, -0.029314711689949036, 0.06827613711357117, 0.0691165179014206, 0.0009522637701593339, -0.0185407642275095, -0.018152743577957153, -0.0239971112459898, -0.05440044775605202, 0.03891194239258766, -0.039670009166002274, -0.021993378177285194, -0.043840475380420685, 0.020720170810818672, 0.02785874530673027, -0.0195304024964571, 0.0331253781914711, 0.06973729282617569, 0.002916757483035326, -0.014269994571805, -0.03034696727991104, 0.009485013782978058, 0.04034803807735443, 0.014994300901889801, -0.007050184532999992, -0.015738824382424355, -0.004441671073436737, -0.014215711504220963, -0.03606123477220535, -0.03971650078892708, -0.07046502083539963, -0.022806644439697266, 0.07863093912601471, 0.015282166190445423, 0.05103246495127678, 0.0019176334608346224, -0.04197922348976135, -0.06842611730098724, 0.046442460268735886, 0.016500405967235565, -0.001538331969641149, 0.04536747559905052, 0.005560632795095444, -0.0306851826608181, 0.00812636036425829, 0.014559177681803703, -0.009854186326265335, -0.039314884692430496, 0.06217671185731888, 0.006641443353146315, -0.05693267285823822, 0.011433372274041176, 0.04670988395810127, -0.08601689338684082, -0.045972131192684174, 0.03454745560884476, -0.008386313915252686, 0.0013310768408700824, -0.03042789176106453, 0.008578025735914707, -0.002935931319370866, 0.010590126737952232, -0.0037768660113215446, 0.014436077326536179, 0.0028565595857799053, 0.026316624134778976, 0.002091561211273074, 0.06436282396316528, -0.035936880856752396, 0.006843019742518663, 0.034274954348802567, -0.015369700267910957, -0.056861329823732376, -0.059038836508989334, -0.030936677008867264, 0.00914375763386488, 0.0063898442313075066, 0.03838019445538521, -0.032269611954689026, 0.02263585664331913, -0.0029973473865538836, 0.006299261003732681, 0.027979230508208275, 0.003718154737725854, 0.011030818335711956, 0.03632057458162308, -0.0788460522890091, -0.04047340527176857, -0.03309031203389168, 0.03689634054899216, -0.016964733600616455, 0.03845700994133949, -0.04608861729502678, -0.00012524076737463474, 0.024162480607628822, -0.024267248809337616, -0.04785068705677986, -0.03834934160113335, -0.04605953395366669, -0.0486539863049984, -0.060817137360572815, -0.05361805483698845, -0.019471343606710434, 0.000883418892044574, 0.029675770550966263, 0.014062074944376945, -0.0199870802462101, 0.026917310431599617, -0.003817040240392089, -0.041737161576747894, 0.020655052736401558, -0.015414601191878319, 0.0375550203025341, -0.030541207641363144, -0.041960060596466064, -0.019677460193634033, 0.009272953495383263, -0.02737574093043804, -0.02096373774111271, -0.013586410321295261, 0.015782881528139114, 0.0053442795760929585, 0.045216821134090424, 0.03635016456246376, -0.0019315945683047175, -0.016156291589140892, -0.05640541762113571, -0.021361669525504112, 0.01981062814593315, -0.011994833126664162, 0.046347443014383316, 0.00936109758913517, -0.026244038715958595, 0.042958445847034454, -0.010565444827079773, -0.009740269742906094, -0.00620987918227911, 0.017574559897184372, -0.000249540462391451, 0.018496714532375336, -0.042992155998945236, 0.008570910431444645, -0.0167386457324028, -0.023803336545825005, 0.03584032878279686, 0.0009914794936776161, 0.0013829986564815044, 0.01961558870971203, -0.030948303639888763, 0.00751336757093668, 0.05357351526618004, 0.010378105565905571, 0.03407435119152069, 0.012831361964344978, -0.012494117021560669, 0.03058817982673645, -0.022928934544324875, 0.004491408821195364, 0.04396210238337517, 0.031997114419937134, -0.027799122035503387, 0.030625274404883385, 0.02739102393388748, 0.0003852777008432895, 0.060851164162158966, -0.020257936790585518, -0.024823961779475212, -0.04112779349088669, -0.018818436190485954, -0.00788186863064766, 0.04242511838674545, -0.0036647652741521597, -0.02956930361688137, 0.04417761042714119, -0.02865360677242279, -0.03303902968764305, 0.020952347666025162, -0.06394416838884354, -0.011584390886127949, 0.014024754986166954, -0.004014826845377684, -0.014975851401686668, -0.02105066180229187, -0.026363646611571312, -0.0033987383358180523, -0.031897976994514465, -0.020592303946614265, 0.0011635639239102602, 0.031417667865753174, -0.002138062147423625, 0.028929274529218674, 0.027597814798355103, -0.018110111355781555, 0.019470524042844772, 0.0392054058611393, -0.05474412068724632, -0.07260306179523468, 0.004132639616727829, 0.009114867076277733, 0.00953339971601963, -0.026850124821066856, 0.010109431110322475, 0.0355033278465271, -0.011131449602544308, 0.0030365611892193556, -0.023890089243650436, 0.03312200680375099, 0.015738477930426598, 0.004608076997101307, 0.01499930303543806, -0.031144659966230392, -0.010782510042190552, -0.01339149009436369, -0.008131531067192554, -0.03354424610733986, -0.04862961173057556, 0.020835552364587784, 0.012462708167731762, -0.012413316406309605, 0.048360034823417664, 0.004077972378581762, 0.04008017107844353, -0.012327905744314194, 0.046892717480659485, -0.00003075637869187631, 0.026000915095210075, 0.05315219610929489, 0.02843473292887211, 0.006590949837118387, 0.02521631494164467, 0.01731710322201252, 0.02032201923429966, 0.0026981031987816095, 0.029043283313512802, 0.052507124841213226, -0.02081029862165451, -0.00026743573835119605, -0.022087540477514267, 0.02681797370314598, -0.024631936103105545, 0.003268733387812972, 0.0028497790917754173, -0.035387128591537476, -0.012914015911519527, 0.007440454326570034, -0.0027989514637738466, 0.0693322941660881, -0.02785634621977806, 0.014219272881746292, 0.013919319957494736, -0.020298531278967857, 0.0021478962153196335, 0.05373722314834595, -0.02317231334745884, -0.001566292135976255, 0.040395889431238174, 0.03017471916973591, -0.01289590448141098, 0.03282776102423668, 0.014155297540128231, 0.003907500300556421, -0.017794961109757423, -0.006750868633389473, 0.015390465967357159, 0.002244554227218032, -0.05688626319169998, 0.002171252155676484, -0.04687045142054558, 0.045507822185754776, -0.03289824724197388, -0.04532491788268089, 0.01632295921444893, -0.046105898916721344, -0.0022496655583381653, -0.02945508062839508, 0.007591760717332363, -0.036335255950689316, -0.025346163660287857, 0.03304667770862579, -0.020777668803930283, -0.018968602642416954, 0.03019035793840885, 0.014705326408147812, 0.030076604336500168, 0.012358646839857101, 0.043790701776742935, -0.030283967033028603, 0.050799183547496796, 0.07682214677333832, -0.05522742122411728, -0.030335519462823868, 0.0010211373446509242, -0.015476157888770103, -0.046181850135326385, -0.028927668929100037, -0.029227884486317635, 0.0008560692076571286, -0.009334797970950603, -0.015782563015818596, 0.000565209542401135, 0.06980590522289276, -0.011493704281747341, -0.03706024959683418, 0.015402733348309994, 0.033772557973861694, -0.04977431893348694, 0.043567609041929245, 0.0001574147172505036, 0.04101673141121864, -0.010172927752137184, -0.017420373857021332, -0.048528123646974564, -0.04370887950062752, 0.0002651277754921466, -0.03472348302602768, 0.02392338216304779, -0.026162365451455116, -0.02856200933456421, -0.024130797013640404, -0.032675161957740784, -0.007182686123996973, -0.0119987977668643, -0.012780296616256237, -0.04606717452406883, 0.00486740143969655, 0.07303635776042938, 0.0068399435840547085, 0.04380868002772331, -0.034870244562625885, 0.001765161519870162, 0.042281221598386765, 0.06631673127412796, 0.0004568554286379367, 0.02311725728213787, 0.022366663441061974, -0.010672220960259438, -0.0035624776501208544, -0.05757918953895569, 0.018323276191949844, -0.011041789315640926, -0.014976240694522858, -0.026618817821145058, 0.06294897198677063, -0.04564990475773811, -0.061067525297403336, 0.018932687118649483, 0.01245418842881918, 0.018426142632961273, -0.004260427318513393, -0.046127863228321075, 0.012737004086375237, -0.0530322901904583, 0.008214802481234074, -0.06466876715421677, -0.010721474885940552, 0.03458695486187935, -0.006205553188920021, -0.017898911610245705, -0.06130750849843025, 0.15272194147109985, 0.042078740894794464, 0.007866457104682922, -0.005489099305123091, -0.007089588791131973, 0.06418757885694504, 0.04365527257323265, 0.0034054380375891924, 0.0007397017907351255, -0.022041724994778633, 0.0565931499004364, 0.00726125156506896, 0.048775799572467804, -0.02605861984193325, 0.0400620736181736, 0.05486633628606796, -0.045121051371097565, 0.01101793721318245, 0.04575139656662941, -0.03869102895259857, -0.0272340290248394, 0.026186099275946617, 0.0031201443634927273, 0.009620963595807552, 0.029025128111243248, 0.008731742389500141, 0.016422610729932785, -0.06559064984321594, -0.007472798228263855, -0.012539141811430454, 0.009282391518354416, -0.03242882713675499, 0.04311294108629227, -0.0058996835723519325, -0.01891995780169964, 0.03946434706449509, 0.0113413380458951, -0.027563603594899178, -0.005906274542212486, 0.01725807413458824, -0.0291291493922472, -0.020623601973056793, 0.030309205874800682, -0.0374128520488739, -0.0010149150621145964, 0.0036044553853571415, -0.028299566358327866, -0.004519679117947817, 0.004397411830723286, -0.02729693055152893, 0.05819118395447731, -0.035031870007514954, -0.009801995940506458, -0.00647465605288744, -0.03685945272445679, 0.023587258532643318, 0.0018596024019643664, -0.009165717288851738, -0.002732205903157592, 0.008844963274896145, 0.027960026636719704, -0.015098441392183304, -0.05434116721153259, 0.009680298157036304, -0.06324125826358795, 0.022278618067502975, 0.01174419280141592, -0.000889195071067661, -0.022641239687800407, -0.04202772304415703, -0.006958397105336189, -0.02377532236278057, -0.015619337558746338, -0.03204770013689995, 0.037299610674381256, 0.025226622819900513, -0.016303308308124542, 0.043215442448854446, 0.025214485824108124, -0.02826874330639839, 0.005871728528290987, -0.02479245327413082, -0.0022376396227627993, -0.008158638142049313, 0.031522393226623535, 0.04113321751356125, -0.044573720544576645, -0.046632248908281326, -0.050676845014095306, 0.05017949640750885, 0.058718353509902954, 0.04141153395175934, -0.014635087922215462, 0.007603087928146124, -0.02744196355342865 ]
Every Year, the rodeo is one of the most anticipated events in Houston. Houston Rodeo Transportation is something to consider when attempting to compete with the anticipated large crowds and inflated parking costs. With our unique fleet, we can transport your company, friends and family to the Rodeo with Ease. From selecting the perfect vehicle, to picking the right date and time, weather its the cook-off, a concert, the Livestock Show or the Carnival, we got you back! Contact us and tell us what you have in mind. We will help you select the vehicle that best matches your needs and budget. This Year the Houston Rodeo will be held from Monday, Feb.25 to Sunday, March 17 at NRG Park.
[ -0.012350015342235565, 0.026143861934542656, -0.000678031996358186, 0.05683650076389313, -0.005730688106268644, 0.018782269209623337, -0.009901821613311768, 0.028016075491905212, 0.02014913596212864, 0.021815897896885872, 0.019002361223101616, 0.004208716098219156, 0.0030983879696577787, -0.01884024403989315, -0.011608529835939407, 0.039593908935785294, -0.024509187787771225, -0.030461572110652924, -0.011126919649541378, -0.01481974869966507, -0.025126930326223373, -0.005789400544017553, -0.056031081825494766, -0.01714821718633175, -0.031122727319598198, 0.03914094716310501, 0.018840201199054718, -0.01186200138181448, 0.03450761362910271, 0.04728173837065697, -0.04506160318851471, -0.04205998405814171, 0.04500609636306763, -0.051881223917007446, -0.003390550846233964, -0.03483525291085243, 0.023897800594568253, 0.00990984681993723, -0.017226442694664, -0.02936152182519436, -0.015373599715530872, 0.017435969784855843, 0.0052384571172297, -0.017232121899724007, -0.021227829158306122, -0.005740811116993427, -0.005758617538958788, -0.025792313739657402, 0.0005765968235209584, -0.027540551498532295, -0.01255147997289896, -0.019935887306928635, -0.01755773462355137, 0.006195524707436562, 0.021937448531389236, 0.02014179155230522, 0.011513997800648212, -0.03911932185292244, -0.005219757556915283, 0.026311784982681274, 0.0273211058229208, -0.020111018791794777, 0.016862066462635994, -0.04447805881500244, 0.04057619348168373, 0.0050814091227948666, -0.0162730123847723, -0.00009927507198881358, 0.010943438857793808, -0.012958104722201824, -0.008737665601074696, -0.00047361283213831484, -0.0316055566072464, 0.005002790596336126, 0.0077806562185287476, -0.012241478078067303, 0.0053070057183504105, -0.004454833921045065, -0.0031201604288071394, 0.015612813644111156, 0.008364440873265266, 0.0420464351773262, -0.00671226903796196, 0.037146180868148804, -0.05365103483200073, -0.010568980127573013, 0.0025061892811208963, 0.0007691451464779675, 0.03089776262640953, -0.027867965400218964, -0.024738021194934845, 0.04199443385004997, -0.004780215211212635, 0.035248078405857086, 0.03582824021577835, 0.03168093040585518, -0.053999561816453934, 0.021941469982266426, 0.01962755247950554, 0.00750480592250824, 0.006712832022458315, -0.00637847650796175, -0.00475262152031064, 0.05873670056462288, -0.06749939918518066, 0.006564741488546133, -0.004797549452632666, 0.003155391663312912, 0.0005467052105814219, -0.04372074455022812, 0.013355046510696411, -0.034553412348032, 0.030954966321587563, -0.023886149749159813, -0.008153676986694336, 0.006830278318375349, 0.010323591530323029, 0.03474385663866997, -0.027783703058958054, 0.004075385630130768, 0.04247685894370079, 0.0012299182126298547, 0.06932397186756134, 0.012541513890028, 0.008721587248146534, -0.047356244176626205, -0.030473873019218445, 0.04790002852678299, -0.02277469076216221, -0.0007117632776498795, 0.012577179819345474, -0.05362400412559509, -0.009651178494095802, 0.03338957950472832, 0.00043938725139014423, 0.017282385379076004, 0.017667129635810852, 0.03447069227695465, 0.013785691931843758, -0.05231357738375664, 0.04338812455534935, 0.037457723170518875, 0.002694476628676057, 0.07991388440132141, -0.01032228209078312, 0.036760758608579636, 0.012935260310769081, 0.010285240598022938, -0.028420399874448776, 0.049217481166124344, -0.03610356152057648, 0.02342131733894348, -0.025491081178188324, 0.02660842426121235, -0.016194527968764305, 0.016705933958292007, -0.0016628974117338657, 0.020364290103316307, 0.019493894651532173, 0.043082527816295624, -0.04018811136484146, 0.0008869291632436216, -0.01191040687263012, 0.022791262716054916, -0.008097038604319096, 0.03706342354416847, -0.028987839818000793, -0.013899438083171844, -0.033875543624162674, -0.05907503888010979, 0.022327926009893417, -0.02356673777103424, -0.02686123736202717, 0.004279617685824633, 0.031109236180782318, 0.048538193106651306, 0.028309375047683716, 0.005052702501416206, 0.05514824390411377, 0.023943325504660606, -0.038060180842876434, 0.005560887511819601, -0.02361278422176838, 0.05587911978363991, 0.013401214964687824, -0.0061252485029399395, -0.008551670238375664, 0.008527261205017567, -0.052419453859329224, -0.007388569880276918, -0.02358860708773136, 0.008859051391482353, -0.024862635880708694, 0.02942182868719101, 0.0020269635133445263, 0.004019944928586483, -0.027116449549794197, -0.028252780437469482, -0.027856603264808655, -0.016414722427725792, -0.006289300508797169, 0.04643344134092331, -0.060287244617938995, 0.016202567145228386, -0.017498817294836044, -0.008103819563984871, 0.02724963240325451, 0.04327426850795746, -0.048150260001420975, 0.009170426055788994, 0.040825746953487396, 0.02247675694525242, -0.0176679790019989, 0.001378788729198277, 0.0192587748169899, -0.014548388309776783, -0.01339402049779892, 0.061855755746364594, -0.02746560424566269, -0.02731134369969368, 0.011903530918061733, 0.009389745071530342, 0.060948941856622696, 0.05543777346611023, 0.025454817339777946, 0.02326807752251625, 0.025418436154723167, 0.026877043768763542, -0.029548725113272667, 0.027301965281367302, 0.029570434242486954, 0.03628155216574669, 0.046060435473918915, 0.05616054683923721, 0.022113647311925888, -0.0021400032564997673, 0.058276161551475525, 0.026869162917137146, -0.010154163464903831, 0.0030680643394589424, 0.03812265768647194, -0.011795961298048496, 0.042949117720127106, -0.004724680446088314, -0.02353723533451557, 0.019235190004110336, 0.01139520201832056, -0.01720268651843071, -0.003496855730190873, 0.03780088201165199, 0.0033283166121691465, 0.016466034576296806, 0.025288600474596024, 0.06482187658548355, -0.011432413011789322, 0.011438727378845215, 0.02160106785595417, 0.04100615158677101, -0.02415461093187332, 0.008830531500279903, 0.03263850882649422, 0.03997066244482994, 0.0020821799989789724, 0.009027433581650257, 0.01512586884200573, 0.018882395699620247, -0.021329978480935097, 0.005638085305690765, -0.02895556390285492, -0.02217034436762333, -0.03170220926403999, -0.059932418167591095, -0.0282661821693182, -0.021718312054872513, -0.02502070553600788, -0.006001341622322798, 0.05798386037349701, -0.048190485686063766, 0.03554808720946312, 0.005616721231490374, -0.018828071653842926, -0.03203072398900986, -0.0191509909927845, 0.038766682147979736, 0.017721226438879967, 0.026979045942425728, -0.016866687685251236, 0.036298319697380066, 0.019453801214694977, 0.030262364074587822, -0.01906268112361431, -0.004351556766778231, 0.00148774276021868, 0.023797784000635147, 0.0011724159121513367, -0.04031487926840782, -0.008492312394082546, 0.011217186227440834, -0.03479641675949097, -0.07076709717512131, 0.024220658466219902, 0.00800222996622324, 0.02023644745349884, 0.022055841982364655, -0.044218119233846664, 0.02621670439839363, 0.026522239670157433, -0.05455794557929039, 0.022929195314645767, 0.03328443691134453, -0.022580446675419807, 0.050297465175390244, 0.030996112152934074, -0.021405480802059174, -0.04966837167739868, 0.04425513744354248, 0.04015820845961571, 0.008113434538245201, -0.03533294051885605, -0.012250656262040138, -0.04384481534361839, -0.010142276994884014, 0.02568613551557064, -0.004032658413052559, -0.013925113715231419, 0.05625537037849426, 0.013501852750778198, -0.06620058417320251, 0.007780652027577162, -0.024929188191890717, -0.0198208037763834, -0.04590528830885887, -0.04783773049712181, 0.029206739738583565, 0.02299703098833561, 0.005397140048444271, 0.010825762525200844, -0.023481285199522972, 0.017852388322353363, 0.03515491262078285, 0.0341915562748909, -0.04602627828717232, 0.007001101039350033, 0.06593304872512817, -0.02262805588543415, 0.02310842089354992, 0.031784653663635254, -0.01968494988977909, 0.007104822434484959, 0.02863738313317299, -0.0437474362552166, 0.0026041297242045403, 0.02485121786594391, -0.017090419307351112, 0.018528765067458153, 0.012894983403384686, -0.007869990542531013, 0.014308060519397259, -0.008707692846655846, 0.019897310063242912, 0.03147264942526817, -0.0033858693204820156, 0.014935462735593319, -0.01510117668658495, -0.021257655695080757, -0.047151047736406326, 0.006369916722178459, 0.012508035637438297, 0.06140590459108353, -0.06503559648990631, 0.06398648023605347, -0.012176815420389175, -0.016815604642033577, 0.026149529963731766, -0.06481124460697174, -0.030450599268078804, 0.03843443840742111, -0.013524003326892853, 0.031726423650979996, -0.05181989073753357, 0.012621087953448296, -0.04841381683945656, 0.031432144343853, 0.031803712248802185, 0.0263869259506464, 0.01574462465941906, -0.012160946615040302, -0.017316075041890144, -0.026081740856170654, -0.0035278755240142345, 0.037619952112436295, -0.024860816076397896, 0.02619938552379608, -0.017187125980854034, -0.053322285413742065, -0.04129567742347717, 0.01978706754744053, 0.03941904753446579, 0.036744821816682816, -0.02147829905152321, 0.0514315702021122, 0.013639954850077629, 0.020094498991966248, 0.0004868976247962564, 0.009921317920088768, 0.004308792762458324, -0.04447836056351662, 0.05307535082101822, 0.03657134622335434, -0.04738237336277962, -0.012485564686357975, -0.050199735909700394, 0.009840281680226326, 0.042354416102170944, 0.020516159012913704, -0.026675505563616753, -0.020321115851402283, 0.04400254786014557, -0.041746944189071655, 0.02724643610417843, -0.024567661806941032, -0.019011899828910828, -0.02481050416827202, 0.005569197237491608, 0.011495182290673256, -0.051238954067230225, 0.027158332988619804, -0.04959793761372566, 0.03638604283332825, 0.06047920882701874, -0.004439977928996086, -0.05279891937971115, 0.010345902293920517, -0.0076665417291224, -0.00015998062735889107, 0.006571450736373663, 0.057747840881347656, -0.009418517351150513, 0.012155606411397457, -0.04472171887755394, 0.029182016849517822, 0.01902410201728344, -0.0026490006130188704, 0.02216029353439808, -0.007598931435495615, 0.020201530307531357, 0.013588487170636654, 0.020524054765701294, -0.028686992824077606, -0.017978154122829437, 0.016687871888279915, -0.06403741985559464, -0.005034920293837786, 0.011056859977543354, -0.0384327732026577, 0.017426881939172745, 0.03776579350233078, 0.012592937797307968, 0.030908146873116493, -0.016142453998327255, 0.028833024203777313, -0.021687151864171028, 0.04189365729689598, -0.04873309284448624, -0.048440225422382355, 0.06404618173837662, 0.007919634692370892, -0.00472243269905448, 0.03143789619207382, 0.07722600549459457, -0.014531309716403484, 0.02427128702402115, 0.03185570612549782, -0.03665276989340782, 0.014827851206064224, -0.0605693981051445, 0.010405761189758778, -0.013757179491221905, -0.041671209037303925, 0.018300693482160568, -0.04854678735136986, 0.02262858860194683, -0.023383768275380135, -0.010225392878055573, -0.03725258260965347, -0.05590337514877319, -0.0005736657767556608, 0.03693823888897896, 0.020583627745509148, 0.024128325283527374, 0.007843931205570698, 0.01744348183274269, -0.058793239295482635, -0.024159979075193405, 0.005265690851956606, 0.013563090935349464, -0.009341184981167316, 0.06517921388149261, 0.01785850152373314, 0.007894743233919144, -0.016833489760756493, -0.00887964852154255, -0.06835129112005234, 0.010178209282457829, 0.0022311389911919832, -0.014339243993163109, -0.05565500259399414, -0.0015125310746952891, -0.044043026864528656, -0.02065136469900608, -0.01731613092124462, 0.01836865395307541, -0.0034231480676680803, 0.02148536965250969, 0.05316008999943733, 0.03053174540400505, 0.00659986725077033, 0.018017278984189034, -0.0164692010730505, 0.035689376294612885, 0.039272259920835495, -0.04005909711122513, -0.06257788091897964, 0.020299524068832397, -0.040523361414670944, 0.05353201553225517, 0.01439326349645853, 0.003957252949476242, -0.05988463759422302, -0.058868490159511566, 0.010249854996800423, -0.05583987385034561, -0.02216373011469841, -0.042774882167577744, -0.033581070601940155, -0.04964475333690643, 0.011306948959827423, 0.017778543755412102, 0.009205077774822712, -0.012121082283556461, -0.03854774311184883, 0.016008242964744568, -0.021769080311059952, -0.0520528145134449, -0.015119591727852821, -0.007421512622386217, 0.006245043128728867, 0.032641347497701645, 0.012698022648692131, 0.009516804479062557, -0.003040132112801075, 0.015345773659646511, 0.06378001719713211, -0.03713993728160858, -0.04149622842669487, -0.0514848530292511, 0.018096502870321274, -0.011894199065864086, -0.02841215580701828, 0.01826920174062252, 0.007990079000592232, 0.08307071030139923, -0.030803775414824486, -0.02233561873435974, -0.01650858111679554, -0.011520803906023502, -0.020616281777620316, -0.0385616272687912, 0.039388079196214676, -0.03882124274969101, -0.0008640867308713496, 0.0031840212177485228, 0.046015191823244095, 0.02994943968951702, 0.001342497649602592, -0.03202636539936066, -0.004271087236702442, -0.027823667973279953, -0.06530560553073883, 0.03326185792684555, -0.023075221106410027, -0.001538678421638906, -0.04528070613741875, -0.015776539221405983, 0.05000218003988266, 0.006437233649194241, 0.05688733980059624, 0.061211779713630676, -0.00355296372435987, 0.0171074066311121, -0.023417139425873756, 0.01846170239150524, 0.028256429359316826, 0.00775194400921464, -0.009073177352547646, -0.015188973397016525, -0.022101162001490593, 0.004429219290614128, -0.06451361626386642, -0.03926878422498703, -0.0246125478297472, -0.0156558770686388, 0.035031143575906754, 0.00242444034665823, 0.04800032079219818, -0.018857698887586594, -0.0391220860183239, -0.05602381005883217, 0.041561637073755264, 0.018577277660369873, -0.017931459471583366, 0.06875906884670258, -0.001196040422655642, -0.029577625915408134, -0.0033197940792888403, -0.009988588280975819, -0.008414646610617638, -0.04149192199110985, 0.05755738914012909, -0.0032048511784523726, -0.061168380081653595, 0.009908302687108517, 0.042493969202041626, -0.05284608155488968, -0.04782659932971001, -0.01818930171430111, -0.003398007480427623, 0.0030387064907699823, -0.010280880145728588, -0.009746423922479153, -0.04186457023024559, 0.01350907888263464, 0.003742811270058155, 0.046219319105148315, 0.004307563882321119, 0.027763731777668, 0.008531126193702221, 0.04869699478149414, -0.04618411511182785, -0.00017806192045100033, 0.03161267563700676, -0.0022021657787263393, -0.01963428407907486, -0.05363164097070694, 0.014632980339229107, -0.024159789085388184, -0.04896123334765434, 0.011579911224544048, -0.022460421547293663, -0.026241786777973175, 0.028115184977650642, -0.008013284765183926, 0.029713217169046402, 0.006875359918922186, -0.010506835766136646, 0.03572971373796463, -0.020062388852238655, -0.05802660062909126, -0.019811203703284264, 0.017428867518901825, 0.0012288581347092986, 0.03512212634086609, -0.0329388789832592, 0.00871033314615488, 0.029438652098178864, -0.014967639930546284, -0.021454820409417152, -0.04787035286426544, -0.06078237295150757, -0.022432034835219383, -0.05120288208127022, -0.03302418440580368, -0.025022171437740326, 0.00545236561447382, 0.03715990483760834, 0.025251921266317368, -0.028666645288467407, 0.004723354242742062, 0.02115698531270027, -0.016568997874855995, -0.002264812821522355, -0.007164328824728727, 0.02319750189781189, -0.05970684066414833, -0.05105852335691452, -0.02975676767528057, -0.01620427705347538, -0.019820475950837135, 0.033337127417325974, -0.024087265133857727, -0.003652992658317089, -0.027229083701968193, 0.026308473199605942, 0.01695965602993965, 0.006875836756080389, -0.02948790043592453, -0.05289207771420479, -0.011595910415053368, -0.007993627339601517, 0.019525811076164246, 0.03781901299953461, 0.050163980573415756, -0.03717552870512009, 0.03608302026987076, 0.028537709265947342, -0.001748932059854269, -0.04686655104160309, 0.012710101902484894, -0.023152632638812065, 0.04076123237609863, -0.05391853302717209, 0.013902900740504265, -0.003178603248670697, -0.06293122470378876, 0.040442220866680145, -0.009786742739379406, 0.0316360779106617, 0.01116003654897213, -0.044403381645679474, -0.002484153723344207, 0.05748405307531357, 0.004537755157798529, 0.019417744129896164, 0.005675403401255608, 0.022130290046334267, 0.016870617866516113, -0.006998071912676096, 0.04778965562582016, 0.027120692655444145, 0.015310123562812805, -0.035358838737010956, 0.06291835755109787, 0.0035862461663782597, -0.03160030022263527, 0.03802420198917389, -0.02019333839416504, -0.030312271788716316, -0.05939551442861557, -0.03787606209516525, -0.0011653746478259563, 0.03889697417616844, 0.00830664113163948, 0.02680163085460663, 0.05231080949306488, -0.03617526963353157, -0.04190858453512192, -0.0018360447138547897, -0.040731240063905716, -0.03405114263296127, 0.05010917782783508, -0.003556152805685997, -0.02407311461865902, -0.000904901884496212, -0.02589348703622818, 0.012071042321622372, -0.03924530744552612, -0.028511887416243553, -0.034295663237571716, 0.02949904277920723, -0.025494173169136047, 0.04744109511375427, -0.0313819944858551, -0.013099274598062038, 0.022533271461725235, 0.03709947317838669, -0.03740350902080536, -0.048511307686567307, 0.04270674288272858, 0.03413022682070732, -0.00391871202737093, -0.00006349806062644348, 0.006165510043501854, 0.03871194273233414, 0.002069595269858837, 0.021354006603360176, -0.00804660003632307, 0.030804065987467766, -0.009892749600112438, 0.010803748853504658, 0.0011112259235233068, -0.031181612983345985, -0.03892014920711517, 0.043157853186130524, -0.002416351344436407, -0.030846940353512764, -0.04026927426457405, 0.02950931154191494, 0.04920455440878868, -0.020527584478259087, 0.04828045889735222, 0.07007454335689545, 0.03247853368520737, -0.008924784138798714, -0.008303743787109852, -0.0072555216029286385, 0.020641280338168144, 0.03264501690864563, 0.01860416866838932, -0.0028120216447860003, 0.007255347911268473, 0.024167563766241074, 0.02945358119904995, -0.024738458916544914, 0.021023688837885857, 0.0013537114718928933, -0.029006140306591988, 0.011602960526943207, 0.00249627442099154, 0.03089313581585884, -0.012227221392095089, -0.03453575447201729, -0.028822321444749832, -0.06610654294490814, 0.007831626571714878, 0.007198431994765997, -0.009757690131664276, 0.050941020250320435, -0.01971694640815258, 0.02110879123210907, -0.0007556962664239109, -0.008487310260534286, -0.004576707258820534, 0.03145428001880646, -0.0009067815844900906, 0.0074878474697470665, 0.019954390823841095, 0.040342189371585846, -0.0053055924363434315, 0.05181305110454559, 0.03928488865494728, 0.019856035709381104, -0.059368960559368134, 0.016182726249098778, 0.006086818408221006, -0.0022231126204133034, -0.03906263783574104, 0.018356598913669586, -0.002228550147265196, 0.04065583273768425, -0.018936697393655777, -0.013669872656464577, 0.019360441714525223, -0.017690805718302727, -0.019403722137212753, -0.0731053277850151, 0.05088752135634422, -0.048944439738988876, -0.00560842826962471, 0.024868501350283623, -0.0177847221493721, -0.019887149333953857, 0.04348711296916008, -0.02087969332933426, 0.04479347914457321, 0.0027405971195548773, 0.01822970062494278, -0.008758152835071087, 0.026039978489279747, 0.03543920814990997, -0.05996328219771385, -0.02126549556851387, 0.0015656020259484649, 0.006753116380423307, -0.057204846292734146, -0.024709107354283333, -0.05499742180109024, -0.013631487265229225, -0.022267207503318787, 0.003679440123960376, -0.01224843505769968, 0.060298990458250046, -0.008776993490755558, -0.06573306024074554, 0.01583736762404442, 0.03900125250220299, -0.031057752668857574, 0.02829284965991974, 0.0425400473177433, 0.0541783943772316, -0.020783251151442528, -0.0027825592551380396, -0.03497720882296562, -0.039421360939741135, 0.01653706282377243, -0.046026043593883514, 0.02333882451057434, -0.03820846974849701, -0.0117837218567729, -0.03999495133757591, -0.0489640086889267, -0.02195587381720543, -0.01679001748561859, -0.04665861651301384, -0.03910167142748833, 0.022861381992697716, 0.04561667889356613, 0.018131421878933907, 0.00799641665071249, 0.0011250765528529882, -0.022613078355789185, 0.010000436566770077, 0.06379867345094681, 0.0068549481220543385, 0.04607785865664482, 0.020916784182190895, -0.014719564467668533, 0.01011983584612608, -0.040771856904029846, 0.009763453155755997, -0.021624170243740082, -0.010233115404844284, -0.015632441267371178, 0.012619556859135628, -0.04272974655032158, -0.05092572420835495, -0.0007362004835158587, 0.009270239621400833, -0.0023422727826982737, -0.029964765533804893, -0.08968321233987808, 0.029674552381038666, -0.010611055418848991, -0.01490835566073656, -0.04992969334125519, 0.032112136483192444, 0.017817335203289986, -0.013344360515475273, -0.0027361116372048855, -0.036350514739751816, 0.15191276371479034, 0.03353441506624222, 0.044523634016513824, 0.012682824395596981, 0.010590470395982265, 0.0149913365021348, 0.031318411231040955, 0.007818802259862423, 0.00607470003888011, -0.024471834301948547, 0.04474912956357002, -0.019767628982663155, 0.027337683364748955, 0.01174080092459917, 0.021172698587179184, 0.04714028537273407, -0.046302251517772675, -0.009491379372775555, 0.03114669770002365, -0.05166046321392059, -0.043822456151247025, 0.019849805161356926, 0.019859403371810913, 0.021474983543157578, -0.024835431948304176, 0.02542521432042122, -0.0067709279246628284, -0.038735613226890564, -0.021152930334210396, -0.0047570182941854, 0.039817098528146744, -0.019177250564098358, 0.024201804772019386, 0.009918928146362305, -0.06307408958673477, 0.07227757573127747, 0.02202059142291546, -0.021022072061896324, -0.003224944928660989, 0.009253709577023983, -0.02390894666314125, 0.001741724438033998, 0.04710348695516586, -0.0467904694378376, -0.00021255406318232417, 0.031397923827171326, -0.060180071741342545, 0.013943053781986237, 0.029501108452677727, -0.03741747885942459, 0.05248261243104935, -0.03094373270869255, 0.002546383300796151, 0.0035101568792015314, -0.023834511637687683, 0.0252090934664011, -0.0016623196424916387, -0.04735613614320755, -0.02679101750254631, 0.021833041682839394, 0.04655373841524124, 0.007921183481812477, -0.035489458590745926, 0.007807924412190914, -0.023707745596766472, 0.015600436367094517, 0.03941783681511879, 0.003007729072123766, -0.007006291300058365, -0.019974566996097565, -0.026266448199748993, -0.02889355830848217, -0.022214066237211227, -0.044379428029060364, 0.009486077353358269, 0.0374186635017395, -0.03661253675818443, 0.03418170288205147, 0.007927767001092434, -0.02186443842947483, -0.019226286560297012, -0.03334391862154007, 0.014507552608847618, -0.030420372262597084, 0.019778823480010033, 0.04872943088412285, -0.013272369280457497, -0.037425488233566284, -0.04551373049616814, 0.06334291398525238, 0.0364767424762249, 0.03159403055906296, -0.03032250702381134, -0.00569290854036808, -0.036223988980054855 ]
Magazine Article (1) (-) Andrew Gordon (1) (-) Mitsuo Fuchida and Masatake Okumiya Foreword by Raymond A Spruance (1) The Rules of the Game Jutland and British Naval Command By Andrew Gordon Foreword by Admiral Sir John Woodward. When published in hardcover in 1997, this book was praised for providing an engrossing education not only in naval strategy and tactics but in Victorian social attitudes and the influence of character on history. In juxtaposing an operational with a cultural theme, the author comes closer than any historian yet to explaining what was ... The Battle That Doomed Japan, the Japanese Navy's Story By Mitsuo Fuchida and Masatake Okumiya; Foreword by Raymond A. Spruance This landmark study was first published in English by the Naval Institute in 1955 and was added to the Classics of Naval Literature series in 1992. Widely acknowledged for its valuable Japanese insights into the battle that turned that tide of war in the Pacific, the book has made a great impact on American readers over the years. Two Japanese ...
[ -0.00615805946290493, -0.0014231897657737136, 0.0010795841226354241, 0.006338538136333227, -0.014535022899508476, -0.03433388099074364, -0.0069087203592062, -0.004552129656076431, 0.016314329579472542, 0.0320761576294899, 0.020885605365037918, -0.005486746318638325, -0.012544759549200535, -0.018593598157167435, -0.0008978447876870632, -0.03337417170405388, -0.00582241453230381, -0.030795607715845108, -0.01698755845427513, -0.0009197017061524093, 0.03152373433113098, -0.014396932907402515, -0.08127092570066452, -0.04067344218492508, 0.01049056090414524, 0.03990757837891579, 0.014044158160686493, -0.006135290954262018, 0.06554721295833588, 0.05396674945950508, -0.011582573875784874, -0.033809974789619446, 0.01748228445649147, -0.04439084604382515, 0.005654620006680489, -0.014880254864692688, 0.022084521129727364, -0.07211346924304962, -0.008432896807789803, -0.06570778787136078, 0.018746953457593918, -0.03512335941195488, 0.05165719985961914, -0.011217060498893261, -0.03884664177894592, 0.0052326032891869545, 0.006690987851470709, -0.05021011456847191, 0.0075459908694028854, -0.046263717114925385, 0.008264853619039059, -0.012403080239892006, 0.0337163470685482, 0.014858070760965347, -0.01461294200271368, 0.0046416958793997765, 0.012357695959508419, -0.0012820486444979906, -0.007308779284358025, 0.019500471651554108, 0.04274621233344078, -0.015977712348103523, 0.03415248170495033, -0.02597801759839058, -0.00841453205794096, 0.018211081624031067, 0.010345350950956345, 0.00047207370516844094, 0.019654840230941772, 0.0009947476210072637, -0.04314027726650238, -0.04353559762239456, 0.010248168371617794, -0.01677686534821987, -0.012270175851881504, 0.012416915968060493, -0.010420862585306168, -0.011686005629599094, -0.01622738689184189, 0.0038058070931583643, 0.009146935306489468, 0.0758412778377533, -0.004494556225836277, -0.009323367848992348, -0.039242297410964966, -0.01976771652698517, 0.00840399507433176, 0.020757179707288742, 0.017115682363510132, 0.035271432250738144, 0.01674042083323002, 0.059339310973882675, 0.014636222273111343, -0.017136717215180397, 0.01479992363601923, 0.051042452454566956, -0.030599750578403473, 0.02284141816198826, 0.006596291903406382, -0.004291205201297998, 0.05916106700897217, 0.03358137607574463, -0.023978719487786293, 0.05315661430358887, -0.051337920129299164, -0.003771224059164524, 0.0214201882481575, -0.018857574090361595, -0.005335394758731127, -0.04056815057992935, 0.021256471052765846, -0.01948915794491768, 0.018013546243309975, -0.01610913686454296, 0.0009489236399531364, 0.03220273554325104, -0.0071876030415296555, 0.014363758265972137, -0.0167681947350502, 0.05073969066143036, 0.0010876802261918783, 0.021575696766376495, 0.024173732846975327, 0.009980695322155952, 0.008813398890197277, -0.028555767610669136, -0.05177854746580124, 0.04248436540365219, -0.02077804133296013, -0.028966834768652916, -0.012802268378436565, -0.029905982315540314, 0.0065160286612808704, 0.025567080825567245, -0.005247707944363356, 0.016252869740128517, -0.011669336818158627, 0.0013431098777800798, 0.011286459863185883, -0.059572745114564896, 0.03188119828701019, 0.016246560961008072, 0.0022867340594530106, 0.08852151781320572, -0.00266568292863667, 0.04067051038146019, -0.0064514982514083385, -0.010418104939162731, -0.05561622977256775, 0.02494237758219242, -0.05259537324309349, -0.0016810701927170157, -0.0025863107293844223, 0.012646337039768696, 0.00007869301771279424, 0.023969179019331932, 0.012708352878689766, 0.029789846390485764, 0.0325106717646122, 0.009873961098492146, -0.040150318294763565, -0.014643670059740543, 0.014441205188632011, 0.04662568122148514, 0.002870730357244611, 0.03453332558274269, -0.017804818227887154, -0.024512825533747673, -0.020052475854754448, -0.04088946431875229, -0.005194664001464844, -0.009144914336502552, -0.01926254667341709, 0.005527352914214134, 0.02413281798362732, 0.05611862987279892, 0.044336359947919846, -0.015764843672513962, 0.06521009653806686, 0.030595101416110992, -0.028011102229356766, -0.011539041064679623, -0.0019654061179608107, 0.06921017169952393, 0.002378406235948205, -0.011983769945800304, -0.020843351259827614, -0.012700900435447693, -0.040080726146698, 0.005752016324549913, 0.002027561655268073, 0.02343609929084778, -0.0391743965446949, 0.024861035868525505, 0.014169126749038696, 0.03902534767985344, -0.01392259169369936, 0.017420891672372818, 0.019503967836499214, -0.03466154262423515, -0.0444994755089283, 0.037040941417217255, -0.05673903599381447, 0.008610504679381847, -0.006097613368183374, -0.02373315952718258, 0.024184517562389374, 0.06374043226242065, -0.033096570521593094, 0.004979017190635204, 0.018874820321798325, 0.02602607011795044, -0.009272318333387375, -0.0005519769620150328, 0.006361981388181448, 0.027730170637369156, -0.0653461143374443, 0.03171038627624512, -0.010936705395579338, 0.0008949739276431501, 0.02275489643216133, 0.007174575235694647, 0.007000468671321869, 0.032047465443611145, 0.006892829667776823, -0.025400124490261078, 0.002121468773111701, 0.06878919154405594, -0.018191218376159668, 0.010581226088106632, 0.005091917235404253, 0.05875498056411743, 0.029953837394714355, 0.05968861281871796, 0.03167201951146126, 0.021667568013072014, 0.00861621368676424, 0.051132380962371826, 0.010878359898924828, 0.016952579841017723, 0.001864719670265913, -0.005075575318187475, 0.03704461827874184, 0.05726940184831619, 0.016379574313759804, 0.015194982290267944, -0.02344357594847679, 0.013581154868006706, -0.024227362126111984, 0.01841091364622116, -0.006615214515477419, 0.04618138447403908, 0.003483481938019395, 0.013810771517455578, -0.05018555000424385, -0.010512814857065678, 0.026663364842534065, 0.04227587208151817, -0.019150685518980026, -0.009323637932538986, 0.005098719149827957, 0.03670390322804451, -0.01555515918880701, -0.006830208003520966, 0.010109859518706799, 0.02354222908616066, 0.020938169211149216, 0.00782508123666048, 0.03499647229909897, -0.03928769379854202, -0.03133785352110863, -0.054924506694078445, -0.06557523459196091, -0.017723942175507545, -0.041179854422807693, 0.014486770145595074, 0.029950331896543503, -0.04845854267477989, -0.00647679204121232, 0.00683478033170104, -0.03865305334329605, -0.005739197134971619, -0.00769386999309063, 0.042911019176244736, 0.005204768385738134, 0.016615455970168114, -0.024945544078946114, 0.03023781068623066, -0.01962335593998432, 0.014556270092725754, -0.021548869088292122, -0.0123273441568017, -0.010315182618796825, -0.038258347660303116, 0.04972085356712341, -0.02627595327794552, -0.008348395116627216, -0.030974803492426872, -0.05081949010491371, -0.07341533154249191, -0.0026538276579231024, -0.023111941292881966, 0.010646797716617584, -0.006168080493807793, -0.04593958333134651, 0.04080577194690704, 0.015494117513298988, -0.028112102299928665, 0.061424195766448975, 0.022009946405887604, -0.05447300523519516, 0.044008538126945496, 0.0033239745534956455, -0.018070194870233536, -0.04633293300867081, 0.08087838441133499, 0.05789214000105858, 0.01783057488501072, -0.02112177014350891, -0.043357256799936295, -0.057812463492155075, 0.0034415193367749453, 0.032145269215106964, -0.009697837755084038, -0.05119949206709862, 0.055324722081422806, 0.03653816133737564, -0.07090190052986145, 0.006975867319852114, -0.029211856424808502, -0.05314283072948456, -0.020121799781918526, -0.030058106407523155, 0.03871142491698265, 0.02650662139058113, -0.0022136475890874863, -0.004881464876234531, -0.04588653892278671, 0.018499188125133514, 0.019924335181713104, 0.03835606202483177, -0.032568514347076416, 0.03876929357647896, 0.014932075515389442, -0.008489313535392284, -0.007499500643461943, 0.04181244224309921, -0.003524794476106763, -0.008162896148860455, -0.008692069910466671, -0.012339267879724503, 0.018117714673280716, 0.016266942024230957, -0.0246395543217659, 0.023600270971655846, 0.057178061455488205, -0.003142962232232094, 0.011141360737383366, 0.004679230507463217, 0.027527736499905586, 0.027637753635644913, 0.0183706097304821, 0.021793831139802933, 0.012470902875065804, -0.03455771878361702, -0.039414070546627045, 0.02739107422530651, -0.004550057929009199, 0.0524282269179821, -0.039799127727746964, 0.08616437762975693, 0.011774054728448391, -0.03627512976527214, 0.05572134628891945, -0.06171827018260956, 0.027864135801792145, 0.09422284364700317, -0.017052343115210533, 0.03454682603478432, -0.048833440989255905, -0.02130190096795559, -0.004341852851212025, 0.023369932547211647, 0.03874693065881729, -0.028811734169721603, 0.006336765363812447, 0.02686385065317154, -0.021398276090621948, -0.008873425424098969, -0.013298459351062775, -0.07128629833459854, -0.04247862845659256, 0.010257812216877937, -0.017597537487745285, -0.035155102610588074, -0.02341160736978054, 0.038874708116054535, 0.037367746233940125, 0.03274436667561531, -0.004882795736193657, 0.06231510266661644, -0.013322745449841022, 0.031779661774635315, 0.04846106097102165, -0.012704786844551563, -0.0022511249408125877, -0.031547170132398605, 0.03629954159259796, 0.013747635297477245, -0.010553571395576, -0.01030200719833374, -0.00693338830024004, -0.028362534940242767, 0.020059630274772644, 0.00006027100971550681, -0.022431354969739914, -0.03184933215379715, 0.0022080326452851295, 0.012895842082798481, 0.0012451598886400461, -0.04238918796181679, -0.010103359818458557, 0.017793305218219757, 0.036768436431884766, 0.034537382423877716, -0.03942854702472687, 0.02341688983142376, -0.05608009174466133, 0.03666921705007553, 0.023413460701704025, 0.001943413750268519, -0.06409092992544174, -0.02397814393043518, -0.03972567617893219, -0.04371205344796181, 0.002418235642835498, 0.010439989157021046, 0.004174801055341959, 0.011368528008460999, -0.028661364689469337, 0.02240218035876751, 0.05297135189175606, 0.019871987402439117, 0.03572675213217735, -0.01266914326697588, 0.012205630540847778, -0.005383885931223631, 0.047501854598522186, -0.022158123552799225, -0.03793353959918022, 0.03817056864500046, -0.03645123168826103, 0.002675064140930772, -0.008416177704930305, -0.010001699440181255, 0.004034071695059538, 0.031012950465083122, -0.002622721018269658, 0.0329987108707428, 0.017235036939382553, -0.03255518898367882, 0.0027325283735990524, 0.03401933237910271, -0.034345515072345734, -0.04576573893427849, 0.0522744283080101, 0.014514792710542679, -0.025286436080932617, 0.018959088250994682, 0.03219323232769966, -0.011053679510951042, 0.0040840040892362595, 0.019471190869808197, -0.044227927923202515, 0.018235009163618088, -0.03902309760451317, 0.023913558572530746, -0.03288017585873604, -0.04450079798698425, -0.02110624685883522, -0.0339244082570076, 0.05077044665813446, -0.00970504805445671, 0.004380160477012396, -0.06243716552853584, -0.056448426097631454, -0.02243637852370739, -0.00047421251656487584, -0.007372653111815453, 0.0012161997146904469, -0.01966308429837227, -0.019665652886033058, -0.016521884128451347, -0.0249321386218071, 0.006372835021466017, -0.010308434255421162, -0.003972052130848169, 0.007887057028710842, -0.01739318296313286, 0.004788357764482498, 0.03447956591844559, -0.014645148068666458, -0.027451226487755775, -0.010860146023333073, -0.002708383370190859, -0.04288845509290695, -0.031029775738716125, 0.0005693940329365432, -0.008560683578252792, -0.012471911497414112, -0.0224932711571455, -0.0014816673938184977, -0.01859503611922264, 0.02300318330526352, 0.030858533456921577, -0.0202631913125515, 0.01876816339790821, -0.01134446170181036, -0.02539910189807415, 0.045291829854249954, 0.03884618356823921, -0.025203857570886612, -0.03816090524196625, 0.047588977962732315, -0.021838657557964325, 0.06148778647184372, -0.02720458246767521, -0.036092545837163925, -0.02959585189819336, -0.062083955854177475, 0.007334223482757807, -0.029857901856303215, -0.01852787472307682, -0.032245222479104996, -0.005804089363664389, -0.025268983095884323, 0.059892814606428146, 0.01136871799826622, -0.009104674682021141, 0.018489288166165352, -0.05164916813373566, -0.01021477859467268, -0.015175530686974525, 0.015735911205410957, -0.028023915365338326, -0.019836019724607468, -0.03533023223280907, 0.07237084209918976, 0.0328245535492897, 0.03474285081028938, 0.0015671496512368321, -0.000505988544318825, 0.029233360663056374, -0.012679928913712502, -0.04262841120362282, -0.030630316585302353, 0.011496379040181637, -0.013454184867441654, 0.004456543829292059, 0.009103260934352875, -0.016276665031909943, 0.04323401674628258, -0.06474284827709198, -0.0022602081298828125, -0.026996325701475143, -0.029665851965546608, -0.007253290619701147, 0.02540256828069687, 0.053205568343400955, -0.030352532863616943, 0.04164402559399605, 0.0014174927491694689, 0.04409695789217949, 0.05207708850502968, 0.004194670356810093, -0.034355103969573975, -0.00793367624282837, -0.01985442452132702, -0.05275019258260727, 0.052687544375658035, -0.04283574968576431, -0.012334968894720078, -0.036670148372650146, -0.03378850594162941, 0.06347949057817459, -0.026361702010035515, 0.04959867149591446, 0.07476800680160522, -0.0496002696454525, -0.014426838606595993, -0.024130109697580338, 0.012359924614429474, 0.0454171821475029, 0.006285445298999548, 0.02030227519571781, 0.001849187072366476, -0.0396508052945137, 0.04247508943080902, -0.05331003665924072, -0.023585814982652664, -0.034518830478191376, -0.016715221107006073, 0.06780973076820374, -0.02297581546008587, 0.025155942887067795, 0.008928495459258556, -0.04763798043131828, -0.020604809746146202, 0.02278747409582138, 0.003543643746525049, 0.025015264749526978, 0.036342550069093704, -0.0009788040770217776, 0.015535792335867882, -0.000930829148273915, 0.010700429789721966, 0.015896983444690704, -0.05095057561993599, 0.05935634300112724, -0.008485931903123856, -0.06306833028793335, 0.0019362526945769787, 0.04643009230494499, -0.05369770526885986, -0.007553107105195522, -0.014078939333558083, 0.02494117058813572, -0.013689042069017887, -0.03485121577978134, -0.0003382848226465285, 0.015662288293242455, 0.020520886406302452, 0.004516910761594772, 0.04337778314948082, -0.0026321590412408113, 0.0396120548248291, -0.003343022894114256, 0.058553196489810944, -0.047656841576099396, 0.036675408482551575, 0.021673202514648438, 0.020732587203383446, -0.01187964715063572, -0.015655038878321648, -0.034068647772073746, 0.002647394547238946, -0.00009034764661919326, 0.03380845859646797, -0.012722015380859375, -0.0039767674170434475, 0.04128117114305496, -0.006924223154783249, 0.02814767137169838, 0.018716977909207344, -0.027135644108057022, 0.005681721959263086, -0.04233991727232933, -0.03871395066380501, -0.0435844324529171, 0.008209861814975739, 0.007939954288303852, 0.02748430334031582, -0.049537159502506256, -0.021762283518910408, 0.012978320010006428, 0.017128795385360718, -0.02316739410161972, -0.06866994500160217, -0.06219731643795967, -0.027768582105636597, -0.0513848140835762, -0.031110920011997223, -0.0010853927815333009, 0.009630224667489529, 0.028737256303429604, -0.011815683916211128, -0.020820368081331253, 0.012538543902337551, 0.00984305702149868, 0.0016492765862494707, 0.03790941461920738, -0.015419374220073223, 0.024880526587367058, -0.04418668523430824, -0.04071388766169548, -0.0366436131298542, 0.007501451298594475, -0.032878849655389786, -0.017169078812003136, 0.00026767043163999915, 0.043061763048172, 0.005234248004853725, 0.007848884910345078, 0.0067455642856657505, 0.016303809359669685, 0.005316370166838169, -0.031465187668800354, 0.009162439033389091, 0.02483747899532318, -0.010542195290327072, 0.049072593450546265, -0.004293650854378939, -0.019803185015916824, 0.039516348391771317, 0.014822917059063911, -0.03533531725406647, -0.048197194933891296, 0.031950801610946655, 0.05726064369082451, -0.022630615159869194, -0.04740716144442558, -0.03571636229753494, -0.00391308544203639, -0.05027376487851143, 0.044134754687547684, -0.019727816805243492, 0.01730853132903576, -0.0034104958176612854, -0.003968169447034597, 0.007578255143016577, 0.06356696784496307, -0.007321546319872141, 0.04039207100868225, 0.027726944535970688, 0.025775058194994926, 0.04528578370809555, 0.006149476859718561, 0.005340091418474913, 0.04980491101741791, 0.028170200064778328, -0.0647771954536438, -0.0039870706386864185, 0.03280280530452728, -0.017059212550520897, 0.04964505881071091, -0.029339443892240524, -0.023396525532007217, -0.05504365265369415, -0.005025513004511595, -0.008515407331287861, 0.02684488706290722, -0.004981447476893663, -0.0018585191573947668, 0.00992260966449976, -0.0382765457034111, -0.06040647253394127, -0.014132235199213028, -0.03425215929746628, -0.015022940933704376, 0.041245605796575546, -0.02662680670619011, -0.028670646250247955, -0.00026780515327118337, -0.03377624601125717, 0.008639367297291756, -0.016824034973978996, 0.00276855262927711, -0.024799227714538574, 0.03639202192425728, -0.011547179892659187, 0.05706422030925751, -0.0077354200184345245, -0.010982591658830643, 0.0017733254935592413, 0.05209694430232048, -0.04123309999704361, -0.03126083314418793, 0.012570430524647236, 0.004730524029582739, -0.009601914323866367, 0.003790742252022028, -0.04143013432621956, -0.01374574564397335, -0.020657584071159363, -0.006353722419589758, -0.023690087720751762, 0.028921037912368774, 0.02494921162724495, 0.03479751572012901, 0.009266238659620285, 0.005723508540540934, -0.03911262005567551, 0.023418163880705833, 0.006117385346442461, -0.04030029848217964, -0.0211221594363451, 0.03188275173306465, 0.04129362106323242, -0.03303895145654678, 0.0286366268992424, 0.014610129408538342, 0.03947307541966438, -0.023089079186320305, 0.01941012591123581, -0.015580803155899048, 0.030660299584269524, 0.051402393728494644, 0.019818846136331558, -0.01661447435617447, 0.06115584820508957, 0.025280112400650978, -0.0006646260735578835, 0.039067551493644714, 0.030348267406225204, 0.021320713683962822, -0.032057516276836395, -0.0010193238267675042, -0.037127524614334106, 0.005276153329759836, 0.01740269921720028, -0.03391595184803009, -0.0074468133971095085, -0.066275954246521, -0.012103905901312828, 0.011578175239264965, -0.014256888069212437, 0.07068794220685959, -0.054003745317459106, -0.04017406702041626, -0.015098493546247482, -0.04068953916430473, 0.025228984653949738, 0.050297100096940994, 0.01948997750878334, 0.01367232296615839, 0.03280499204993248, 0.02609826810657978, -0.04488374665379524, 0.03760338947176933, 0.01886371523141861, -0.0008692527771927416, -0.04185345023870468, -0.0026166404131799936, 0.004841185640543699, -0.010690228082239628, -0.01906738430261612, -0.0007681336719542742, -0.03428749740123749, 0.028970515355467796, -0.029063934460282326, -0.016971444711089134, 0.046380382031202316, -0.0556567907333374, -0.017972154542803764, -0.049189768731594086, 0.02132854238152504, -0.05818469449877739, -0.026840589940547943, 0.027740471065044403, 0.007890035398304462, 0.003089603967964649, 0.03952315077185631, 0.0025988391134887934, 0.046240534633398056, 0.03157555311918259, 0.0707235261797905, -0.0035982555709779263, 0.001059340895153582, 0.056059177964925766, -0.05520974099636078, -0.06848657131195068, 0.004546056967228651, 0.010301354341208935, -0.049609214067459106, 0.005622718948870897, -0.03360653296113014, 0.011928578838706017, -0.00868651457130909, -0.016561681404709816, -0.002767132595181465, 0.04379884526133537, 0.0025151297450065613, -0.028823452070355415, -0.00011528402683325112, 0.019076211377978325, -0.031071284785866737, 0.017180535942316055, -0.0015287986025214195, 0.025357844308018684, 0.020082762464880943, -0.012693477794528008, -0.027260491624474525, -0.014948651194572449, 0.003251216607168317, -0.04882529750466347, 0.018429910764098167, -0.011472508311271667, -0.02794908918440342, -0.03411859646439552, -0.03691127151250839, -0.008384909480810165, -0.0023666932247579098, -0.02441525273025036, -0.05461271479725838, 0.03996909037232399, 0.0481727197766304, 0.015675127506256104, 0.02008969895541668, -0.03030967339873314, -0.00545906089246273, 0.05570657551288605, 0.0726371631026268, 0.03874626383185387, 0.028621623292565346, 0.0300140343606472, 0.012050528079271317, 0.03955579921603203, -0.01189479697495699, 0.010916539467871189, -0.001901423092931509, -0.02249709516763687, -0.03383289650082588, 0.018590962514281273, -0.01242208294570446, -0.06508176028728485, 0.022825190797448158, 0.013712894171476364, 0.0016872059786692262, -0.020435618236660957, -0.0654045045375824, 0.004027938935905695, -0.057317476719617844, 0.0029268714133650064, -0.03804026544094086, 0.006271633319556713, 0.008409975096583366, -0.002563578775152564, -0.010580401867628098, -0.049380503594875336, 0.14972110092639923, 0.037525422871112823, 0.001178047969006002, -0.011768896132707596, 0.01802673004567623, 0.037209440022706985, 0.030029630288481712, -0.01867799460887909, 0.032814182341098785, -0.04258143529295921, 0.047573767602443695, -0.028271030634641647, 0.004833057522773743, 0.000547554693184793, 0.01816747523844242, 0.06174231693148613, -0.062024012207984924, 0.008003951981663704, 0.0034917776938527822, -0.04795495420694351, -0.023088602349162102, -0.0016161917010322213, -0.02108943462371826, -0.004525754600763321, -0.0017252257093787193, 0.01727443002164364, 0.04682064428925514, -0.059789374470710754, -0.011623642407357693, -0.05048151686787605, -0.05016828328371048, -0.03459237888455391, 0.035299770534038544, 0.007661930751055479, -0.044385991990566254, 0.023795779794454575, -0.017959747463464737, -0.014023823663592339, 0.01509146485477686, 0.0035170752089470625, -0.016218340024352074, 0.00021502278104890138, 0.02526961639523506, -0.016845347359776497, 0.03157569840550423, 0.03542521968483925, -0.026105254888534546, 0.023323558270931244, 0.00736860791221261, -0.029122576117515564, 0.07023859024047852, -0.032393913716077805, 0.03520742803812027, -0.04582955315709114, -0.03179755434393883, 0.0245774295181036, 0.01158147118985653, -0.04118235781788826, -0.0100131556391716, -0.008215662091970444, 0.0524577759206295, 0.012683987617492676, -0.025049543008208275, 0.02252669632434845, -0.01963074691593647, 0.027897339314222336, 0.026496129110455513, 0.00966976024210453, 0.005360474344342947, 0.0050213523209095, -0.0021729550790041685, -0.018178481608629227, -0.03206527605652809, 0.006088125053793192, 0.043811675161123276, 0.020885825157165527, -0.00032138358801603317, 0.007410136982798576, 0.01631658524274826, -0.03962371125817299, -0.004639902617782354, -0.039126280695199966, -0.012780464254319668, -0.030775610357522964, 0.029958875849843025, 0.054503243416547775, -0.02719639614224434, -0.038522347807884216, -0.029102670028805733, 0.06361906975507736, 0.03464464098215103, 0.02595260739326477, -0.002817912260070443, -0.0073655107989907265, -0.025216497480869293 ]
Our Natural Shower Gel will leave your skin feeling soft and delicately fragranced with a tropical fruity aroma. We have added wheat protein, which will condition and hydrate your skin and also act as a natural barrier against the elements. ARULA Shower Gel product is formulated with over 98% natural ingredients. Our product is very beneficial for customers who are experiencing dry and sensitive skin conditions, including eczema. This is because our shower gel is: sulphate-free; Paraben-free; Silicone-free and formulated with non-toxic or 'greener' ingredients. Furthermore, this product contain no synthetic dyes and synthetic preservatives. In addition, it will not cause any burning sensation to your eyes like other high street brands. Arula Shower Gel will leave our customers skin feeling soft and delicately fragranced with a tropical fruity aroma. Furthermore, your skin will be conditioned and feel hydrated as a result of added wheat protein. PEG-120 (Methyl Glucose Trioleate is a polyethylene glycol) is a corn derived chemical used to thickened the formulation. This chemical is considered to be a low hazard chemical and as a result, a safe ingredient in our product. PEG-120 is highly adept at reducing the irritancy of surfactant systems, and is also ideal for formulating cleansing products for babies, children, the elderly, and those with sensitive skin. It provides luxurious sensory properties through the formation of a rich, creamy lather and a light, emollient after-feel. This chemical is widely used in the formulation of baby shampoos. Most of our customers prefer their shower gel to have a fragrance. Therefore, our shower gel is delicately fragranced with a mild, fruity and jasmine aroma. The fragrance in our product is considered to be synthetic. Hence, it contain minute quantities of allergens which are; Benzyl Alcohol (0.00004%); d-Limonene (0.00012%); and Linalol (0.000008%). According to the HSE directive, the presence of these allergens must be indicated in the list of ingredients and also on the label when their concentration exceeds 0.01% in rinse-off products. Consequently, due to the minute quantities present in our product, it is not required for these allergens to be listed on the ingredient label. For delivery details, please click the link below. this is a lovely shower gel that feels smooth to my skin. It rehydrates and keep it soft for a long time. I will definitely recommend this. Thick and rich shower gel that leaves skin moisturised longer than any other product I've used. Pleasantly fragranced too! Lovely product, I bought it at a conference in the midlands. I wish I had bought more, because my skin feels smooth after use. The composition is really good and safe and it has a really nice smell without being too present. I think the price is quite good for the quality and size of the bottle.
[ -0.024754438549280167, 0.04078149050474167, 0.021626146510243416, -0.014836250804364681, -0.036392610520124435, 0.009723602794110775, 0.0298335999250412, 0.013618288561701775, -0.009417818859219551, 0.019434025511145592, 0.01951979100704193, 0.0023866393603384495, -0.010430102236568928, -0.017075039446353912, -0.0034077558666467667, -0.0008339028572663665, -0.02075871266424656, -0.05113242194056511, 0.00027652032440528274, -0.0062208473682403564, 0.0029598637484014034, -0.0035258315037935972, -0.05725793167948723, -0.037497371435165405, -0.04273591563105583, 0.01963724195957184, 0.003186313435435295, -0.02644818089902401, 0.08086123317480087, 0.08251962065696716, -0.04057282954454422, -0.02849280834197998, 0.03644140064716339, -0.04658783972263336, -0.008207970298826694, -0.01555920485407114, 0.022429807111620903, -0.020403312519192696, -0.007675456814467907, -0.06218741461634636, 0.027055582031607628, 0.006305227056145668, 0.04050162062048912, -0.03667331114411354, -0.03517168015241623, 0.019229229539632797, -0.001903184805996716, -0.012925295159220695, 0.019555620849132538, -0.021121088415384293, 0.007211582735180855, -0.0165554191917181, 0.02954195998609066, -0.010872786864638329, -0.016647394746541977, -0.004884496331214905, -0.0012501014862209558, -0.01756444200873375, -0.044165972620248795, 0.04356049746274948, -0.0019460918847471476, 0.010228552855551243, 0.013701371848583221, -0.053794000297784805, 0.03771930932998657, 0.031095748767256737, 0.0033714505843818188, 0.008485980331897736, 0.015206649899482727, -0.034471798688173294, 0.005019280593842268, 0.02174551784992218, -0.02206682786345482, -0.04049316793680191, -0.017836960032582283, -0.00638038944453001, -0.0460444800555706, 0.02509121596813202, 0.004596339073032141, 0.006615871097892523, 0.019753742963075638, 0.02843627519905567, 0.033721923828125, 0.050473909825086594, -0.06012748181819916, -0.011449440382421017, -0.01617439277470112, 0.03481237590312958, 0.008891486562788486, 0.014304202981293201, 0.0011786258546635509, 0.04384863004088402, 0.01098256092518568, -0.035555191338062286, 0.023690925911068916, 0.03659249469637871, -0.039455026388168335, 0.026569169014692307, 0.029408227652311325, -0.0020211185328662395, 0.05588377267122269, 0.005091949366033077, 0.01064410712569952, 0.029712846502661705, -0.02902442403137684, -0.006128767505288124, 0.006644665729254484, 0.0006834898958913982, -0.0060340105555951595, -0.010026387870311737, -0.0009995995787903666, -0.025043034926056862, -0.015443251468241215, -0.018753739073872566, -0.011628445237874985, 0.05099767819046974, 0.0011930675245821476, 0.03816627338528633, -0.06071609631180763, -0.012362813577055931, 0.013849017210304737, 0.044774509966373444, 0.0670987144112587, -0.019697023555636406, 0.01621878147125244, -0.040541552007198334, -0.02005244605243206, 0.029773280024528503, -0.02328168787062168, -0.046585239470005035, 0.003148687770590186, -0.029958786442875862, 0.0010751059744507074, 0.025208838284015656, 0.014752557501196861, 0.00934740249067545, -0.008618785999715328, 0.028398074209690094, 0.02414526604115963, -0.05196402594447136, 0.03493131697177887, 0.04431234672665596, 0.027301952242851257, 0.08495994657278061, 0.00439101830124855, 0.038792964071035385, 0.02828950807452202, -0.0272618867456913, -0.03831064701080322, 0.0029123055282980204, -0.04289722070097923, 0.04923061281442642, -0.011733293533325195, 0.009507155045866966, -0.010397768579423428, -0.01396861020475626, -0.010411886498332024, -0.004410275258123875, 0.010074096731841564, 0.024719037115573883, -0.011493532918393612, 0.015175417996942997, -0.01613532193005085, 0.056092362850904465, 0.019179383292794228, 0.013281013816595078, -0.03795469179749489, 0.010819965042173862, -0.023960692808032036, -0.04064904525876045, 0.0190759114921093, -0.014503116719424725, -0.015200406312942505, 0.021203309297561646, 0.04314903914928436, 0.039056241512298584, 0.0732930451631546, -0.03077135980129242, 0.0114947110414505, 0.05169295147061348, -0.03540666401386261, -0.007906515151262283, -0.01591438241302967, 0.08118291944265366, 0.015517364256083965, -0.0014869733713567257, 0.004442561883479357, -0.007530526258051395, -0.010286867618560791, -0.020146407186985016, 0.0007699060952290893, 0.032190628349781036, -0.03080960176885128, 0.017055125907063484, -0.009503958746790886, 0.0044871242716908455, -0.02602289244532585, 0.023855309933423996, 0.0023601390421390533, -0.05576000735163689, -0.03601907938718796, 0.028961699455976486, -0.046211984008550644, 0.018934210762381554, 0.020697299391031265, -0.023093480616807938, 0.003786266315728426, 0.056156549602746964, -0.03380991518497467, 0.021469099447131157, 0.048223260790109634, 0.0026779775507748127, -0.01869438774883747, -0.032089389860630035, 0.006312473677098751, -0.043992504477500916, -0.032339632511138916, 0.040762338787317276, -0.015943007543683052, 0.008657543919980526, -0.017207391560077667, -0.018094370141625404, 0.02605597674846649, 0.06609635800123215, -0.01858217641711235, 0.010809711180627346, 0.004808116238564253, 0.004814469255506992, -0.02510935068130493, 0.015966225415468216, -0.0028594122268259525, 0.06029132381081581, 0.03539997711777687, 0.04444211721420288, 0.03483891487121582, 0.04100640490651131, 0.03311820328235626, 0.048846535384655, 0.018840083852410316, 0.027540937066078186, 0.010535059496760368, -0.005889037624001503, 0.027080997824668884, 0.005188609007745981, -0.015227336436510086, 0.03516629710793495, -0.003972604870796204, 0.017109056934714317, -0.03234612196683884, 0.024050980806350708, 0.006543951109051704, 0.04545305296778679, 0.023906121030449867, 0.03608246520161629, -0.01544535718858242, 0.00571928545832634, 0.029933473095297813, 0.031071649864315987, 0.0052885254845023155, -0.0058464836329221725, 0.0016292971558868885, 0.036749549210071564, -0.02431236207485199, 0.015069200657308102, 0.0150492237880826, 0.02175654098391533, -0.005828828550875187, 0.024065984413027763, -0.0284543726593256, -0.03118833713233471, -0.05774179473519325, -0.04589538648724556, -0.04609411582350731, -0.02989068068563938, -0.04350609332323074, -0.0019151788437739015, 0.0540364645421505, -0.05655260011553764, 0.03833502158522606, -0.009491977281868458, -0.022031407803297043, -0.06217387691140175, -0.014074125327169895, 0.034184377640485764, 0.03552407771348953, 0.0491742379963398, -0.035765983164310455, -0.005043671000748873, -0.002511289669200778, 0.03154696151614189, -0.015073521062731743, 0.004294693470001221, -0.02075582928955555, -0.004019734915345907, 0.0015589554095640779, -0.005707381758838892, -0.029899530112743378, -0.011607185006141663, -0.0483238585293293, -0.05996553227305412, 0.0016668600728735328, 0.018714183941483498, -0.013485956005752087, -0.0009986350778490305, -0.03705300763249397, 0.044848497956991196, 0.027468813583254814, -0.016067860648036003, 0.03154323250055313, 0.02891048975288868, -0.02988038770854473, 0.016040626913309097, 0.04010389745235443, 0.004209993872791529, -0.057055842131376266, 0.030884550884366035, 0.06376799196004868, 0.010572416707873344, -0.03478185459971428, -0.030668284744024277, -0.04737526923418045, 0.0501386933028698, 0.003187634749338031, -0.017966940999031067, -0.035197652876377106, 0.05124913156032562, 0.021758239716291428, -0.07366830855607986, 0.024050891399383545, -0.0437605157494545, -0.04462258517742157, -0.044336941093206406, -0.036618709564208984, -0.0031594550237059593, 0.02710369974374771, 0.040816497057676315, 0.023611826822161674, -0.0028852957766503096, 0.0094760125502944, -0.017864547669887543, 0.025724804028868675, -0.008376691490411758, 0.004434564150869846, 0.058193694800138474, -0.01439204253256321, 0.048150643706321716, 0.040831178426742554, -0.011690573766827583, -0.00963076762855053, 0.024247460067272186, -0.01248360238969326, 0.002405384089797735, 0.04942525923252106, 0.013818531297147274, 0.02901778183877468, 0.06502733379602432, -0.03153513744473457, -0.0026584696024656296, 0.017647545784711838, 0.01767844334244728, -0.006570723373442888, 0.0005770339048467577, 0.015965549275279045, -0.021895885467529297, -0.035340238362550735, -0.02821408398449421, 0.008276483044028282, 0.023637112230062485, 0.04243490472435951, -0.06842155754566193, 0.018238801509141922, -0.02383587509393692, -0.031529590487480164, 0.024340521544218063, -0.049085356295108795, 0.012911458499729633, 0.04817848652601242, -0.03245721012353897, 0.06572416424751282, -0.04157648980617523, 0.014655610546469688, -0.01728859543800354, 0.02786327339708805, 0.028575384989380836, -0.02916722744703293, 0.0485103577375412, -0.012027235701680183, -0.028550416231155396, -0.03863123804330826, -0.004079644568264484, -0.0252084918320179, -0.030135605484247208, 0.0038948962464928627, -0.007338866125792265, -0.03701438009738922, -0.030187271535396576, 0.0030988215003162622, -0.010793999768793583, 0.021489275619387627, 0.013946015387773514, 0.010927307419478893, 0.020948952063918114, 0.011122426018118858, 0.026287581771612167, -0.007972531951963902, -0.010023798793554306, -0.01076180674135685, 0.04331126809120178, 0.002956715878099203, -0.048110928386449814, -0.020236991345882416, -0.022210923954844475, -0.04024215787649155, 0.029009148478507996, 0.02149111218750477, -0.010722902603447437, -0.023796264082193375, 0.007868708111345768, -0.022148434072732925, 0.016634538769721985, -0.018310412764549255, -0.02309572324156761, -0.035733360797166824, 0.026879366487264633, 0.009494392201304436, -0.03729670122265816, -0.020117374137043953, -0.030844667926430702, 0.03226436674594879, 0.06290524452924728, -0.03161969035863876, -0.031938377767801285, -0.02616277150809765, -0.026314623653888702, -0.014321573078632355, 0.01152470987290144, 0.05899249389767647, 0.0009093128610402346, -0.008187861181795597, -0.039251022040843964, 0.02300834096968174, 0.034711748361587524, -0.015055030584335327, 0.0025327191688120365, 0.011407430283725262, 0.028685038909316063, 0.011106610298156738, 0.029715659096837044, 0.009163733571767807, -0.05000005289912224, 0.008915447629988194, -0.089066281914711, 0.038404371589422226, -0.014875412918627262, -0.020136402919888496, -0.00889516156166792, 0.018072359263896942, 0.030378559604287148, 0.049384381622076035, -0.01761588640511036, 0.0052927955985069275, 0.011840532533824444, 0.02167011983692646, -0.02143046446144581, -0.02725967951118946, 0.03487080708146095, -0.023465998470783234, -0.036112669855356216, -0.005515958648175001, 0.04017593339085579, -0.014299372211098671, 0.01091313362121582, 0.05104757472872734, -0.05419190973043442, 0.03293660655617714, -0.04133761301636696, 0.02482343092560768, 0.003680239198729396, -0.04922931641340256, -0.017538264393806458, -0.032760996371507645, -0.012176611460745335, 0.013073538430035114, -0.018101872876286507, -0.019754501059651375, -0.047566190361976624, -0.04763985052704811, -0.006426080595701933, -0.022183813154697418, 0.004731497261673212, 0.05199688300490379, -0.02446320652961731, -0.005712522659450769, 0.010044334456324577, 0.024620547890663147, -0.017457690089941025, -0.029236970469355583, -0.017421990633010864, 0.015136179514229298, 0.0006151227280497551, 0.06873279809951782, -0.017953546717762947, -0.025283649563789368, -0.01504304725676775, -0.008584757335484028, 0.008410191163420677, -0.04393885284662247, 0.030059441924095154, -0.02435166947543621, -0.038839202374219894, -0.03814870864152908, 0.004048542585223913, -0.021927444264292717, -0.0035275614354759455, 0.034647006541490555, -0.0199982151389122, 0.014658533036708832, 0.03443600982427597, -0.043667178601026535, 0.07591519504785538, -0.00011183450260432437, -0.06192705035209656, -0.019613221287727356, 0.05292285606265068, -0.009830836206674576, 0.05745100602507591, -0.01898469217121601, 0.024902230128645897, -0.03582203760743141, -0.054637834429740906, 0.015138437040150166, -0.030111050233244896, -0.012417229823768139, -0.03811492770910263, -0.01026146486401558, -0.03616942837834358, 0.044527798891067505, 0.00012091240932932124, -0.016470538452267647, -0.0030359611846506596, -0.05888102576136589, 0.0017307486850768328, -0.026559576392173767, -0.03137372434139252, -0.02550816349685192, -0.015515971928834915, -0.005632129032164812, 0.03792670741677284, 0.003688057651743293, 0.0045006838627159595, 0.011122322641313076, 0.03527821972966194, 0.00352003937587142, -0.0012887805933132768, -0.034248363226652145, -0.02443745918571949, 0.015058070421218872, 0.020858796313405037, -0.0061465539038181305, 0.023204540833830833, -0.006686834152787924, 0.052125755697488785, -0.02159309573471546, 0.015186762437224388, -0.023921161890029907, 0.012351669371128082, 0.001614979817532003, -0.015381303615868092, 0.06972183287143707, 0.013683591037988663, -0.019526708871126175, -0.01501468289643526, 0.03498925268650055, 0.03751948103308678, 0.012535884976387024, -0.013041914440691471, -0.027176544070243835, -0.028684373944997787, -0.04914800450205803, 0.04754288122057915, -0.02269919030368328, -0.013184302486479282, -0.039390191435813904, -0.03222097456455231, 0.03938056156039238, 0.006532561033964157, 0.0287406537681818, 0.06185632571578026, -0.005008105654269457, -0.01422059815376997, -0.04146439582109451, 0.027666110545396805, 0.029782768338918686, -0.04695315659046173, -0.0021166924852877855, -0.001769015216268599, -0.028608379885554314, 0.0008131679496727884, -0.03964538127183914, -0.02711983397603035, -0.04636944457888603, 0.0080977538600564, 0.06129249930381775, -0.034625180065631866, 0.06235901638865471, 0.033387694507837296, -0.05724388733506203, -0.06383388489484787, 0.07798407226800919, -0.006859884597361088, 0.03428755700588226, 0.05735863000154495, -0.000762019248213619, -0.017955759540200233, 0.0033956612460315228, -0.0003177750622853637, 0.0207754485309124, -0.05386870354413986, 0.06570227444171906, 0.01102442853152752, -0.04363083839416504, 0.012256765738129616, 0.03497473895549774, -0.07961800694465637, -0.05095761641860008, -0.004121573641896248, -0.03789481893181801, 0.028109557926654816, -0.008755354210734367, 0.009994341060519218, -0.022764796391129494, -0.00463038170710206, -0.013079565949738026, 0.02764081582427025, -0.01077281218022108, 0.04745589941740036, 0.0025890825781971216, 0.04306613281369209, -0.015110890381038189, -0.00384097290225327, 0.028674600645899773, -0.02381122298538685, -0.011702470481395721, -0.013079861178994179, -0.023473244160413742, -0.011552907526493073, -0.005492167081683874, 0.022980956360697746, -0.007788674905896187, 0.027076270431280136, 0.05777355283498764, 0.022514251992106438, 0.05208625644445419, -0.005145068280398846, 0.002238360932096839, 0.0025209353771060705, -0.00395046453922987, -0.030273227021098137, -0.030119553208351135, 0.04657973721623421, 0.010475669987499714, 0.028487857431173325, -0.032525330781936646, 0.0027496947441250086, 0.017697956413030624, 0.021807700395584106, 0.01664763316512108, -0.04099744185805321, -0.051353707909584045, -0.0524495467543602, -0.04943041875958443, -0.04887302964925766, -0.05341062694787979, 0.00832459982484579, 0.02570805698633194, 0.0018919120775535703, -0.005788519978523254, 0.014981470070779324, -0.003491415875032544, -0.015979992225766182, 0.0099442508071661, -0.028786323964595795, 0.045898374170064926, -0.048888303339481354, -0.05950409919023514, -0.027361001819372177, 0.008911645971238613, -0.0023973381612449884, 0.00816330686211586, -0.04595714062452316, -0.0017472617328166962, -0.03416413813829422, 0.018975187093019485, -0.025928135961294174, 0.0056064841337502, 0.009524601511657238, -0.05390409007668495, -0.0005731419078074396, 0.035616468638181686, -0.004382275510579348, 0.034535426646471024, 0.02839174121618271, 0.004846356809139252, 0.03194147348403931, -0.0022727150935679674, -0.03274580091238022, -0.03226641193032265, -0.013925526291131973, 0.028637925162911415, -0.007066304795444012, -0.0251428484916687, -0.030042456462979317, 0.005486626643687487, -0.060235023498535156, 0.02653377875685692, -0.025153648108243942, 0.0024706104304641485, 0.024741442874073982, 0.021723682060837746, -0.007022290024906397, 0.06230819225311279, -0.010863043367862701, 0.0032487434800714254, 0.0007331413216888905, 0.017343910411000252, 0.008842951618134975, -0.0033162671606987715, 0.03738890215754509, 0.009025783278048038, 0.04448561742901802, -0.019833413884043694, 0.020629337057471275, 0.016278045251965523, -0.004238959401845932, 0.0425572544336319, -0.012254945002496243, -0.01257540937513113, -0.011017406359314919, -0.008696653880178928, 0.001993007492274046, 0.047918617725372314, 0.0333208367228508, -0.01942531391978264, 0.027453327551484108, -0.04474252462387085, -0.03300776332616806, 0.007664852309972048, -0.04042128473520279, -0.002759963972494006, 0.03871016949415207, -0.01633545383810997, -0.038199253380298615, 0.005054926965385675, -0.03738012537360191, 0.019345682114362717, -0.003757775528356433, -0.02721075341105461, -0.014033153653144836, 0.023475676774978638, -0.012167655862867832, 0.05679774656891823, 0.004125960171222687, 0.0200511422008276, 0.004415122792124748, 0.03792119026184082, -0.0626513659954071, -0.06552843749523163, -0.004261564929038286, 0.007368223275989294, 0.019967565312981606, -0.02199232578277588, 0.022303182631731033, 0.007361312862485647, -0.017956547439098358, -0.0004604487621691078, -0.01538858376443386, -0.0006271125748753548, -0.03193550556898117, 0.01468276884406805, -0.005570757202804089, -0.018298735842108727, -0.026067892089486122, 0.04310803860425949, 0.01594158262014389, -0.025210145860910416, -0.014550919644534588, 0.04480183869600296, 0.006613235455006361, -0.010134675540030003, 0.048851050436496735, 0.02916756644845009, 0.06781075149774551, -0.022989748045802116, 0.007786806207150221, 0.003740116721019149, 0.039149846881628036, 0.023020517081022263, 0.03248434141278267, -0.018493153154850006, 0.001036557019688189, 0.07066420465707779, -0.006393610965460539, -0.00847579538822174, 0.024578068405389786, 0.007687992416322231, -0.031199367716908455, 0.03363516181707382, -0.01185598038136959, 0.012484726496040821, 0.047459013760089874, 0.006416507065296173, -0.0169227235019207, 0.017382269725203514, -0.006477806717157364, 0.012000699527561665, -0.011643724516034126, 0.007492298260331154, -0.030726075172424316, 0.015812920406460762, 0.017037102952599525, -0.017759807407855988, 0.014589507132768631, 0.03602243587374687, 0.0004430270055308938, 0.00398549810051918, 0.06341388076543808, 0.022239066660404205, -0.012778140604496002, 0.04535054787993431, 0.0009284241241402924, -0.010719921439886093, -0.0336141437292099, -0.0032006099354475737, 0.02777516096830368, -0.020046032965183258, -0.013235319405794144, 0.0053389109671115875, -0.06934424489736557, 0.047576840966939926, -0.023647477850317955, -0.03966188430786133, 0.030426466837525368, -0.032808367162942886, -0.03390195965766907, -0.027646780014038086, 0.013833575882017612, -0.030370013788342476, 0.01586068980395794, 0.019630761817097664, -0.00009239091741619632, -0.013077327981591225, 0.031705956906080246, -0.015123596414923668, 0.031552501022815704, 0.04996628686785698, 0.051285646855831146, -0.015769222751259804, 0.01965656317770481, 0.03163440153002739, -0.0349377878010273, -0.01081130187958479, 0.028093060478568077, -0.027551447972655296, -0.03945930302143097, -0.027503136545419693, -0.03245219588279724, 0.003777603153139353, -0.011412992142140865, -0.014957566745579243, -0.030044598504900932, 0.040042489767074585, -0.010578563436865807, -0.0794558897614479, 0.007213355042040348, 0.0355328805744648, -0.04975392296910286, 0.005346461199223995, -0.008278055116534233, 0.06463006138801575, 0.04532356560230255, -0.00019979981880169362, -0.032167986035346985, -0.04683159664273262, -0.019786428660154343, -0.03862960636615753, 0.06878662109375, -0.019373271614313126, -0.02484779804944992, -0.03170037269592285, -0.039847783744335175, -0.03693997487425804, -0.00029622140573337674, -0.043509695678949356, -0.04100086912512779, 0.04574498534202576, 0.04609069600701332, 0.025214744731783867, 0.005040924064815044, -0.050162892788648605, -0.02072715573012829, 0.031934671103954315, 0.03973032534122467, -0.012279585003852844, 0.04516894370317459, 0.03099735826253891, -0.008896241895854473, 0.025579897686839104, -0.018700290471315384, 0.06306839734315872, -0.009291424416005611, -0.030257925391197205, -0.04827822372317314, 0.048901718109846115, -0.04132223129272461, -0.02700534462928772, 0.030209684744477272, 0.001192799536511302, -0.017377261072397232, -0.04259731248021126, -0.03411151468753815, 0.00526593578979373, -0.07366879284381866, -0.0028536266181617975, -0.052689895033836365, -0.012603049166500568, 0.020390154793858528, -0.04541153460741043, -0.017400316894054413, -0.07776402682065964, 0.1565784513950348, 0.0722753033041954, 0.030915193259716034, 0.00676569202914834, 0.06111060827970505, 0.04182415083050728, 0.024064408615231514, -0.04394414648413658, 0.0015667019179090858, 0.0022101036738604307, 0.005019852425903082, 0.005993589758872986, 0.02724718675017357, 0.0065226368606090546, 0.019793378189206123, 0.03821117430925369, -0.06134994700551033, 0.01434644777327776, 0.037827469408512115, -0.050015415996313095, -0.048720307648181915, 0.00009747919102665037, 0.009918286465108395, 0.02411295287311077, 0.016787085682153702, 0.015192246064543724, -0.007992787286639214, -0.01573648676276207, 0.011456110514700413, -0.03400912880897522, 0.02826213464140892, -0.03121938370168209, 0.016175895929336548, -0.029509788379073143, -0.03468715772032738, 0.032501377165317535, -0.007346239872276783, -0.0063490658067166805, 0.016896026208996773, 0.016574187204241753, -0.047565776854753494, 0.0011217758292332292, 0.026988502591848373, -0.05596670135855675, 0.01846199296414852, 0.007412545382976532, -0.050054166465997696, 0.010445416904985905, 0.018476702272892, -0.05819806456565857, 0.057850148528814316, -0.060927193611860275, 0.04181411862373352, -0.03628195822238922, -0.05491013079881668, 0.0307024959474802, 0.0037299005780369043, -0.03452778607606888, 0.00531088886782527, -0.017285631969571114, -0.0001946619595400989, 0.042888179421424866, -0.000981929013505578, 0.005459574982523918, -0.052281565964221954, -0.0019107424886897206, 0.00920158438384533, 0.03743138909339905, -0.003026246326044202, -0.011397208087146282, -0.005342780612409115, -0.027119748294353485, 0.0016746316105127335, -0.03299708664417267, 0.052309758961200714, 0.03563272953033447, -0.011523201130330563, 0.02812487818300724, -0.01865738444030285, -0.004731686320155859, 0.0050699906423687935, -0.027790628373622894, -0.0008313467260450125, 0.010066910646855831, 0.04302488639950752, 0.03290112689137459, -0.06832006573677063, -0.0222372617572546, -0.02656283602118492, 0.07319463789463043, 0.048923954367637634, -0.03279324993491173, -0.0101043451577425, -0.022458301857113838, 0.003867147024720907 ]
Decision Sciences & Systems Research Transfer & Software Prof. Dr. Felix Brandt Florian Brandl, M.Sc., Christian Stricker, M.Sc. Seminar SS 2018 Economics and Computation In recent years, there has been an increasing interest in topics at the intersection of economics and computer science, as witnessed by the continued rapid rise of research areas such as algorithmic game theory and computational social choice. This development is due to the emergence of computational networks such as the Internet as well as the need to get a grip on algorithmic questions in economics. The emphasis in this seminar lies on the independent study of classic economics papers, but also, and in particular, more recent papers from computer science. Among the topics to be covered are matching theory, mechanism design, and voting theory. Registration (*please read carefully*) Seats are split up between students from computer science and students from other programs. All interested students should attend the overview meeting and have to send an application by email briefly describing their background (including relevant courses) and motivation (up to 250 words) as well as 2-5 papers they are interested in. Deadline for applications: January 28, 2018 (11:59pm). Students from computer science additionally have to use the matching system for indication of interest. Notifications will be sent out on February 1 (mathematics) and Februrary 21 (computer science) and include assignment of papers and supervisors. Registration in TUMonline will be taken care of by the lecturers by end of February; no further action is required. Time and venue Overview (Vorbesprechung): Wednesday, January 24, 13.00 - 14.00 , room 01.10.011 (slides) First meeting: Wednesday, April 18, 13.00 - 14.00, room 01.10.036 Talks: Wednesday, May 9, 9.00 - 17.00, room 01.10.033 Friday, June 8, 9.00 - 17.00, room 01.10.033 Preliminary selection of articles Algorithmic Game Theory Mechanism Design Randomized Social Choice A. Bogomolnaia and M. O. Jackson. The stability of hedonic coalition structures. Games and Economic Behavior, 38(2):201โ€“230, 2002. X. Deng and C. H. Papadimitriou. On the complexity of cooperative solution concepts. Mathematics of Operations Research, 12(2):257โ€“266, 1994. D. C. Fisher and J. Ryan. Optimal strategies for a generalized "scissors, paper, and stone" game. American Mathematical Monthly, 99(10):935โ€“942, 1992. J. Hajdukovร . Coalition formation games: A survey. International Game Theory Review, 8(4):613โ€“641, 2006. J. A. Kroll, I. C. Davey, and E. W. Felten. The economics of Bitcoin mining, or Bitcoin in the presence of adversaries. In Proceedings of the 12th Workshop on the Economics of Information Security (WEIS 2013), 2013. D. Monderer and L. S. Shapley. Potential games. Games and Economic Behavior, 14(1):124โ€“143, 1996. A. Abdulkadiroglu and T. Sรถnmez. House allocation with existing tenants. Journal of Economic Theory, 88(2):233โ€“260, 1999. A. Abdulkadiroglu and T. Sรถnmez. School choice: A mechanism design approach. American Economic Review, 93(3):729โ€”747, 2003. M. Balinski and T. Sรถnmez. A tale of two mechanisms: Student placement. Journal of Economic Theory, 84(1):73โ€“94, 1999. S. J. Brams and A. D. Taylor. An envy-free cake division protocol. The American Mathematical Monthly, 102(1):9โ€“18, 1995. U. Endriss, N. Maudet, F. Sadri, and F. Toni. Negotiating socially optimal allocations of resources. Journal of Artificial Intelligence Research, 25:315โ€“348, 2006. R. W. Irving. An efficient algorithm for the "stable roommates" problem. Journal of Algorithms, 6(4):577โ€“595, 1985. M. O. Jackson and A. Wolinsky. A strategic model of social and economic networks. Journal of Economic Theory, 71(1):44โ€“74, 1996. E. Maskin. Nash equilibrium and welfare optimality. Review of Economic Studies, 66(26):23โ€“38, 1999. N. Nisan and A. Ronen. Algorithmic mechanism design. Games and Economic Behavior, 35(1):166โ€“196, 2001. A. D. Procaccia and J. Wang. Fair enough: Guaranteeing approximate maximin shares. In Proceedings of the 15th ACM Conference on Economics and Computation (ACM-EC), pages 675โ€“692, 2014. T. Roughgarden and ร‰. Tardos. How bad is selfish routing? Journal of the ACM, 49(2):236โ€“259, 2002. T. Sandholm. Algorithm for optimal winner determination in combinatorial auctions. Artificial Intelligence, 135(1โ€“2):1โ€“54, 2002. J. Bartholdi, III, C. A. Tovey, and M. A. Trick. The computational difficulty of manipulating an election. Social Choice and Welfare, 6(3):227โ€“241, 1989. F. Brandt and C. Geist. Finding strategyproof social choice functions via SAT solving. Journal of Artificial Intelligence Research, 55:565โ€“602, 2016. V. Conitzer, T. Sandholm, and J. Lang. When are elections with few candidates hard to manipulate? Journal of the ACM, 54(3), 2007. J. Duggan and T. Schwartz. Strategic manipulability without resoluteness or shared beliefs: Gibbard- Satterthwaite generalized. Social Choice and Welfare, 17(1):85โ€“93, 2000. P. Tang and F. Lin. Computer-aided proofs of Arrow's and other impossibility theorems. Artificial Intelligence, 173(11):1041โ€“1053, 2009. H. P. Young. Optimal voting rules. Journal of Economic Perspectives, 9(1):51โ€“64, 1995. S. Barberร . Majority and positional voting in a probabilistic framework. Review of Economic Studies, 46(2):379โ€“389, 1979. A. Bogomolnaia and H. Moulin. A new solution to the random assignment problem. Journal of Economic Theory, 100(2):295โ€“328, 2001. P. C. Fishburn. Probabilistic social choice based on simple voting comparisons. Review of Economic Studies, 51(4):683โ€“692, 1984. P. C. Fishburn. SSB utility theory: An economic perspective. Mathematical Social Sciences, 8(1):63โ€“94, 1984. A. Gibbard. Manipulation of schemes that mix voting with chance. Econometrica, 45(3):665โ€“681, 1977. M. D. Intriligator. A probabilistic model of social choice. Review of Economic Studies, 40(4):553โ€“560, 1973. Feedback guidelines (1) (2) [in addition to what is presented during the first meeting] The seminar will be held in English (i.e., all presentations will have to be in English, too) Module-Codes IN2107 (Master-Seminar in the Master program Informatik) IN0014 (Seminar in the Bachelor programs Informatik, Wirtschaftsinformatik) For all other programs: Please check first whether this seminar fits in your curriculum. For example, mathematics students should find it listed as a mathematics seminar, too. This email address is being protected from spambots. You need JavaScript enabled to view it., This email address is being protected from spambots. You need JavaScript enabled to view it. Decision Sciences & Systems (DSS), Department of Informatics (I18), Technische Universitรคt Mรผnchen, Boltzmannstr. 3, 85748 Garching, Germany ยฉ2002-2019 DSS All Rights Reserved Impressum, Privacy Policy, Copyright Information and Disclaimer
[ -0.003239817451685667, 0.020568352192640305, 0.013285784982144833, -0.0016063322545960546, -0.005224016495049, 0.0021667254623025656, -0.025025011971592903, 0.002855123719200492, -0.022884618490934372, 0.053976356983184814, 0.04524564743041992, 0.01420852355659008, 0.012278358452022076, -0.01762460730969906, -0.0012964082416146994, 0.007574262097477913, -0.025819117203354836, -0.057937897741794586, 0.013088574633002281, -0.011591470800340176, 0.018577372655272484, -0.014045237563550472, -0.06264563649892807, -0.0214369036257267, -0.03341558948159218, 0.015259452164173126, 0.02722473070025444, -0.009489182382822037, 0.04524746164679527, 0.057781364768743515, 0.005423491355031729, -0.025019168853759766, 0.039301272481679916, -0.04571929946541786, -0.029181763529777527, -0.026950638741254807, 0.029775895178318024, -0.030120348557829857, -0.013326475396752357, -0.05753661319613457, 0.04910016432404518, -0.026959320530295372, 0.026272155344486237, -0.07082903385162354, -0.0408976674079895, 0.005467288661748171, -0.003405775176361203, -0.020198000594973564, -0.011618427000939846, -0.04950365796685219, 0.0015563536435365677, -0.007189476862549782, 0.011628828942775726, -0.005548741668462753, 0.016550639644265175, 0.017574183642864227, 0.01686161942780018, -0.0070100887678563595, -0.019830480217933655, 0.017955472692847252, 0.03999345749616623, -0.03253818675875664, 0.025879304856061935, -0.06247983127832413, 0.047278136014938354, 0.029208244755864143, -0.0007927253027446568, -0.002170347375795245, 0.008320796303451061, -0.04831630736589432, -0.018670281395316124, -0.025504950433969498, -0.009690942242741585, -0.023501312360167503, 0.016892919316887856, 0.03036518208682537, -0.0017642583698034286, 0.0037361846771091223, -0.017384875565767288, 0.011790050193667412, 0.020775403827428818, 0.023065462708473206, 0.009426547214388847, 0.02258003130555153, -0.027759412303566933, -0.02058502659201622, 0.030582323670387268, 0.010540049523115158, -0.01047817524522543, -0.004145319107919931, -0.011855891905725002, 0.032400764524936676, 0.009168691001832485, -0.0027072879020124674, 0.0362982451915741, 0.045634474605321884, -0.026097405701875687, 0.03321816399693489, -0.007491770200431347, -0.009379706345498562, 0.05880939960479736, 0.04488920420408249, -0.03090396337211132, 0.07444806396961212, -0.0618942491710186, 0.0022724082227796316, -0.007265077438205481, 0.0035743180196732283, -0.008596392348408699, -0.013018001802265644, -0.013530720956623554, -0.01918497309088707, 0.03303011134266853, -0.017443200573325157, 0.0007415742729790509, 0.05220499634742737, -0.03486257418990135, 0.007748140953481197, -0.045918334275484085, 0.010250094346702099, 0.027598697692155838, 0.03677865490317345, 0.05215396732091904, 0.0323466993868351, 0.01532712671905756, -0.027250317856669426, -0.023194193840026855, 0.05387415736913681, -0.04077957570552826, -0.04797318950295448, -0.013199884444475174, -0.05803721025586128, -0.031089888885617256, 0.04691237583756447, 0.00788541603833437, 0.048210784792900085, 0.019504142925143242, 0.04697764292359352, 0.014474952593445778, -0.02739027887582779, 0.028565986081957817, 0.0129316421225667, 0.0025367389898747206, 0.07835385948419571, -0.013418393209576607, 0.024108506739139557, 0.020100239664316177, -0.016371000558137894, -0.04300181195139885, 0.030614497140049934, -0.02649981901049614, 0.01619788259267807, 0.007160033565014601, 0.04408538341522217, -0.0009163927752524614, -0.002057462465018034, -0.003214044962078333, 0.008902509696781635, 0.009234219789505005, 0.021233223378658295, -0.039135780185461044, 0.00005526516542886384, -0.02668035589158535, 0.04810261353850365, 0.005879983771592379, 0.038941167294979095, -0.005546959582716227, 0.007614355068653822, -0.011959502473473549, -0.02710762247443199, 0.0027239080518484116, -0.02262807823717594, -0.01547086052596569, 0.030455242842435837, 0.025631645694375038, 0.040038373321294785, 0.040393002331256866, -0.014648288488388062, 0.045264579355716705, 0.020645566284656525, -0.04769375920295715, -0.0012257572961971164, -0.0028149913996458054, 0.06479063630104065, 0.02112400345504284, 0.0196274034678936, 0.022871078923344612, 0.005406766664236784, -0.025901375338435173, -0.01843409799039364, -0.005308051127940416, 0.04691105708479881, -0.03375716507434845, 0.02549828216433525, -0.0067278118804097176, 0.02012498863041401, -0.0054291021078825, 0.020458022132515907, -0.013236413709819317, -0.024207178503274918, -0.023579828441143036, 0.04080377519130707, -0.04293958097696304, 0.03719834238290787, -0.04612487182021141, 0.004777085036039352, 0.005273064132779837, 0.03887800872325897, -0.050950922071933746, -0.00914422981441021, 0.032305002212524414, 0.011438693851232529, -0.02751903608441353, -0.02375374361872673, 0.020272942259907722, 0.003022527787834406, -0.03772265464067459, 0.05847426503896713, 0.008656983263790607, -0.04397635906934738, 0.014997515827417374, 0.0069516729563474655, 0.021858926862478256, 0.028848234564065933, -0.007950450293719769, -0.004383753519505262, 0.02461519092321396, 0.06394901126623154, 0.003731144592165947, 0.024888526648283005, 0.02326367236673832, 0.0644746646285057, 0.022295886650681496, 0.06926795840263367, 0.05797787755727768, -0.001169859548099339, 0.04174336418509483, 0.04534389078617096, -0.008338680490851402, 0.005601337179541588, 0.000056729488278506324, 0.01925673335790634, 0.030359961092472076, 0.03739530220627785, -0.014969896525144577, 0.021426692605018616, -0.01799621805548668, 0.003318747505545616, -0.023318028077483177, 0.014563691802322865, -0.028390610590577126, 0.05060134455561638, -0.0108260503038764, 0.04929022863507271, -0.020029237493872643, 0.017435170710086823, 0.02191978320479393, 0.03418860211968422, -0.043553292751312256, 0.01164110004901886, -0.0011562879662960768, 0.01266529317945242, 0.019188392907381058, 0.00021992073743604124, 0.0030865035951137543, 0.03213341161608696, 0.028022777289152145, 0.016523350030183792, -0.011835320852696896, -0.035660725086927414, -0.0578351691365242, -0.04443329945206642, -0.06386227905750275, -0.032721057534217834, -0.03050285391509533, -0.008520934730768204, 0.014212805777788162, -0.04823329299688339, 0.015776710584759712, 0.0007579110097140074, -0.005878058262169361, 0.020859552547335625, -0.002296332037076354, 0.044796742498874664, 0.02065739780664444, 0.01842338964343071, -0.063507579267025, 0.023562241345643997, -0.0075173755176365376, 0.05270061641931534, -0.03505033627152443, 0.0009063687175512314, -0.001893584500066936, -0.013386575505137444, 0.030827833339571953, -0.003273995593190193, -0.020114511251449585, 0.005766749382019043, -0.033830881118774414, -0.06348608434200287, -0.00953222531825304, 0.01687208004295826, 0.00462732557207346, 0.002857474610209465, -0.031032301485538483, 0.054308630526065826, 0.03294283151626587, -0.038313306868076324, 0.06553563475608826, 0.04297464340925217, -0.03872527927160263, 0.019179919734597206, 0.001967507181689143, -0.011033027432858944, -0.051791053265333176, 0.06908851116895676, 0.04036835953593254, 0.007262991741299629, -0.010267283767461777, -0.03160702437162399, -0.008538646623492241, 0.004190534818917513, 0.030299585312604904, -0.00411702785640955, -0.014392171055078506, 0.030594652518630028, 0.021801771596074104, -0.07489483058452606, 0.01576509140431881, -0.04551566764712334, -0.049306951463222504, -0.04027597978711128, -0.03855229914188385, 0.039244867861270905, 0.0355738028883934, 0.000009810285519051831, 0.002968015382066369, -0.002004894195124507, 0.042433928698301315, 0.00371688068844378, 0.044991277158260345, -0.03491635620594025, 0.04963391646742821, 0.036874014884233475, 0.00241057388484478, -0.011126306839287281, 0.031114988029003143, -0.022750461474061012, 0.009471298195421696, -0.0004595900827553123, 0.00814114324748516, 0.04350799322128296, 0.019434964284300804, 0.0208649393171072, 0.012066836468875408, 0.058015719056129456, -0.020712770521640778, -0.006022782996296883, 0.004869362339377403, 0.0019752064254134893, 0.023159552365541458, 0.018785720691084862, -0.019299307838082314, 0.005117196124047041, -0.055613841861486435, -0.032898370176553726, 0.01071204338222742, 0.024781275540590286, 0.07951905578374863, -0.0883505716919899, 0.0622200146317482, -0.014672080986201763, -0.025617139413952827, 0.04050678759813309, -0.06435753405094147, -0.024877768009901047, 0.023153088986873627, -0.001964656636118889, 0.04995708912611008, -0.041176728904247284, -0.0031268869061022997, -0.011534519493579865, 0.03353020176291466, 0.029383907094597816, 0.035617247223854065, 0.0557381734251976, -0.015947949141263962, 0.023254094645380974, -0.053544364869594574, -0.02005496807396412, 0.0018932888051494956, -0.04455162212252617, -0.01084162387996912, -0.007550039794296026, -0.02503237873315811, -0.047033607959747314, 0.01867544651031494, 0.005207035690546036, 0.034749969840049744, -0.04048806428909302, 0.05531037598848343, 0.00017443577235098928, 0.021045925095677376, 0.05083106458187103, 0.00048730114940553904, 0.016455350443720818, -0.058769337832927704, 0.02626306749880314, -0.008595219813287258, -0.008186508901417255, -0.006017474923282862, -0.021473344415426254, -0.012389548122882843, 0.0010427064262330532, 0.018195100128650665, -0.03470473736524582, -0.031087569892406464, 0.010039996355772018, -0.022264696657657623, 0.013525550253689289, -0.027712751179933548, -0.0118278032168746, -0.022955071181058884, 0.06691554933786392, 0.019273405894637108, -0.04535704851150513, -0.01759769581258297, -0.028227154165506363, 0.0295897014439106, 0.0736488550901413, -0.00995936430990696, -0.04107986390590668, -0.029083387926220894, -0.03279457613825798, -0.03654054179787636, 0.012185700237751007, 0.03798321262001991, -0.01442087534815073, 0.02310028299689293, -0.05160665139555931, 0.02310323901474476, 0.012646831572055817, 0.011607966385781765, -0.01977095566689968, -0.003182895015925169, 0.026100771501660347, -0.008086299523711205, 0.03904435411095619, -0.015446804463863373, -0.0281885527074337, 0.008090976625680923, -0.04936849698424339, 0.0321023128926754, -0.005874965339899063, 0.011258929036557674, 0.013094767928123474, 0.005278407130390406, -0.0008955615921877325, 0.0430559478700161, -0.04459671303629875, 0.02452659048140049, -0.033253636211156845, 0.035499922931194305, -0.046614304184913635, -0.05535731837153435, 0.03815356269478798, -0.023470161482691765, 0.00115843559615314, 0.03846941143274307, 0.030451873317360878, -0.055480506271123886, 0.01562328077852726, 0.056915994733572006, -0.040328122675418854, 0.029408413916826248, -0.0228545144200325, -0.0109469098970294, -0.038655128329992294, -0.027039995416998863, 0.009094633162021637, -0.028393376618623734, 0.031161490827798843, 0.008091181516647339, -0.03217760846018791, -0.046855825930833817, -0.055379677563905716, -0.015808993950486183, -0.00419181864708662, -0.03431321680545807, 0.0008222308824770153, -0.027839042246341705, -0.0030119880102574825, -0.007816261611878872, -0.011150632984936237, 0.0033943357411772013, 0.02412932552397251, -0.026692155748605728, 0.01984778232872486, 0.007238251157104969, 0.02005685120820999, 0.009856519289314747, -0.013720186427235603, -0.0550299771130085, 0.0002111938374582678, 0.005618494004011154, -0.023278435692191124, -0.04170806333422661, -0.03178538382053375, -0.03390936180949211, -0.02277565374970436, 0.010373381897807121, -0.030672719702124596, 0.003418903797864914, 0.02838316559791565, 0.05846187472343445, 0.023483088240027428, 0.013707300648093224, -0.006867589894682169, -0.035489246249198914, 0.041857633739709854, 0.027747662737965584, -0.07490701973438263, -0.0278027206659317, 0.030413124710321426, -0.025544021278619766, 0.04135071858763695, 0.0032759038731455803, -0.016841426491737366, -0.0378713421523571, -0.0773315578699112, -0.01886299066245556, -0.03994760662317276, -0.0028231367468833923, -0.0726742371916771, -0.012074275873601437, -0.02351006679236889, 0.026080695912241936, 0.013509668409824371, -0.01841883175075054, 0.006132781971246004, -0.07550105452537537, 0.015086992643773556, -0.030973389744758606, -0.03403086960315704, -0.03769928961992264, -0.016711924225091934, 0.007798845414072275, 0.05367834120988846, 0.022338243201375008, -0.025040624663233757, -0.010112160816788673, 0.030864087864756584, 0.007107503712177277, 0.0011851050658151507, -0.039537254720926285, -0.05402512103319168, -0.003385679330676794, 0.011849934235215187, -0.014433089643716812, -0.0005753117147833109, -0.04735368490219116, 0.057112786918878555, -0.039679624140262604, 0.018983177840709686, -0.01597311906516552, -0.03388283774256706, -0.011201409623026848, 0.009557759389281273, 0.06566489487886429, -0.015958670526742935, 0.031592488288879395, -0.019570685923099518, 0.04523630812764168, 0.04073353111743927, 0.003171752206981182, -0.05215927213430405, -0.01800759881734848, -0.046485498547554016, -0.03354313224554062, 0.05194820091128349, -0.024083871394395828, -0.005615311674773693, -0.0356595404446125, -0.04107879847288132, 0.05815640836954117, -0.006526721175760031, 0.04410437494516373, 0.059007059782743454, -0.005054096225649118, 0.0127892279997468, 0.0060577006079256535, 0.04093537852168083, 0.013406172394752502, -0.008816838264465332, -0.004191000945866108, -0.021805398166179657, -0.000701378274243325, 0.0027582368347793818, -0.01141201052814722, -0.05634208023548126, -0.03945489972829819, 0.010538622736930847, 0.02187676727771759, -0.026569616049528122, 0.04248730465769768, -0.03182322531938553, -0.03677459806203842, -0.025453682988882065, 0.03816290572285652, -0.011233087629079819, 0.006628160364925861, 0.04834948107600212, 0.00222909078001976, -0.0034651849418878555, 0.004695582669228315, -0.007763642352074385, -0.013132506981492043, -0.06256384402513504, 0.047411154955625534, -0.0008434173068962991, -0.02544548735022545, 0.033744797110557556, 0.06638450920581818, -0.055178891867399216, -0.02812851220369339, -0.0030392466578632593, -0.0008197308052331209, 0.019262827932834625, -0.044228870421648026, 0.0021843526046723127, 0.012256484478712082, -0.01101136114448309, 0.028535181656479836, 0.026057900860905647, -0.023463133722543716, 0.03276032209396362, 0.025300631299614906, 0.0446631945669651, -0.0485738106071949, 0.04958242550492287, 0.048650894314050674, 0.017798466607928276, -0.028340434655547142, -0.060796987265348434, -0.010159614495933056, 0.006848324555903673, -0.032862063497304916, 0.046446286141872406, -0.014740300364792347, -0.007346627302467823, 0.048422880470752716, 0.005986227188259363, 0.02801428735256195, -0.026603154838085175, -0.0077958982437849045, 0.014159992337226868, -0.042982302606105804, -0.05434491112828255, -0.032955098897218704, 0.007702008355408907, 0.004556251224130392, 0.09044753760099411, -0.03152573108673096, 0.014237881638109684, 0.048329249024391174, 0.0320746935904026, -0.006665391847491264, -0.09168586134910583, -0.04279964789748192, -0.05866849049925804, -0.03314754739403725, -0.03966643661260605, -0.009762686677277088, -0.024242181330919266, 0.013707059435546398, 0.03266805037856102, -0.03580286353826523, -0.009465969167649746, 0.007473242934793234, -0.02700519934296608, 0.022800156846642494, -0.04221711680293083, 0.004107065498828888, -0.04507870599627495, -0.05585191026329994, -0.03700413554906845, -0.00484498543664813, -0.008233572356402874, 0.03122241608798504, -0.047416720539331436, 0.011137228459119797, -0.014004469849169254, 0.027968497946858406, -0.00918238703161478, 0.031079094856977463, -0.041113145649433136, -0.03985685110092163, -0.024250412359833717, 0.006635014899075031, 0.008821254596114159, 0.04048699140548706, 0.029734447598457336, 0.01604447513818741, 0.019429082050919533, -0.0005571150104515254, 0.0019707204774022102, -0.022874310612678528, 0.0093024130910635, -0.010466952808201313, -0.0005917549133300781, -0.03214258328080177, -0.03413425013422966, -0.002477282425388694, -0.05916497856378555, 0.027342654764652252, -0.01896342635154724, -0.0003230139263905585, -0.010549693368375301, -0.01718919165432453, 0.02039128728210926, 0.04763739928603172, 0.007210928946733475, 0.023583941161632538, -0.010503699071705341, 0.008776262402534485, -0.013335331343114376, -0.027637241408228874, 0.013133730739355087, 0.009564396925270557, 0.021456312388181686, -0.030514676123857498, 0.0030773887410759926, -0.0069901226088404655, -0.031073134392499924, 0.012548238039016724, -0.00797386933118105, -0.057955361902713776, -0.04947701096534729, -0.022409677505493164, 0.015451210550963879, 0.022714871913194656, 0.025465544313192368, 0.011587074026465416, 0.0058296755887568, -0.030264461413025856, -0.05223023146390915, -0.008283914066851139, -0.06236249953508377, -0.03358296677470207, 0.04522828757762909, -0.030872423201799393, -0.06077820062637329, 0.002237216103821993, -0.027175433933734894, 0.0057102832943201065, -0.004164041485637426, 0.008710329420864582, -0.008484628982841969, 0.03310762345790863, 0.013372141867876053, 0.03512478992342949, -0.016154125332832336, -0.034039970487356186, 0.0007700964924879372, 0.04435209557414055, -0.03796844556927681, -0.024924080818891525, 0.01383761316537857, 0.006566276308149099, -0.0155316898599267, -0.008638301864266396, -0.054174408316612244, 0.010125832632184029, 0.019578339532017708, 0.01758238486945629, -0.020842162892222404, 0.03566007316112518, -0.039725448936223984, 0.0018307087011635303, 0.010960746556520462, 0.022364474833011627, -0.039652302861213684, 0.04096084460616112, 0.002598848193883896, -0.039344869554042816, -0.027985652908682823, 0.02827330119907856, 0.015478149987757206, -0.035553157329559326, 0.054341044276952744, 0.0004803828487638384, 0.03818206861615181, 0.0042134118266403675, 0.011702201329171658, 0.01042119786143303, 0.03450433909893036, 0.04157039150595665, 0.045248184353113174, 0.009394219145178795, 0.0203807782381773, 0.05542654171586037, 0.017272327095270157, -0.00031737578683532774, 0.05535811185836792, 0.0035424605011940002, -0.005833584349602461, 0.010577656328678131, -0.024611761793494225, 0.010137741453945637, 0.013246715068817139, -0.024963872507214546, 0.02103310450911522, -0.05146476998925209, 0.014836758375167847, 0.0035274692345410585, -0.03639429062604904, 0.06381741911172867, -0.02282721921801567, 0.014877836219966412, 0.0010053954320028424, -0.015433479100465775, -0.009823154658079147, 0.005425712559372187, -0.007128056604415178, -0.004132304806262255, 0.03893301635980606, 0.0262411180883646, 0.01231954526156187, 0.030823230743408203, 0.023843025788664818, 0.032868191599845886, -0.03711225837469101, 0.026030970737338066, 0.00033649589749984443, 0.004509742837399244, -0.016439354047179222, -0.031562499701976776, -0.00971930380910635, 0.03003733977675438, -0.035265807062387466, -0.041587453335523605, 0.005944404751062393, -0.03560054674744606, -0.0041402848437428474, -0.04511760175228119, 0.05248503014445305, -0.014284469187259674, 0.003004990518093109, 0.043815433979034424, -0.0029750759713351727, -0.02307058870792389, 0.05014225095510483, -0.019448816776275635, 0.03532544896006584, 0.014169963076710701, 0.0451650507748127, -0.007984917610883713, 0.030722759664058685, 0.07600975781679153, -0.009414710104465485, -0.01983650214970112, 0.0195951946079731, 0.011071271263062954, -0.005100924987345934, -0.023031756281852722, -0.04308944568037987, -0.006149957422167063, -0.03036867454648018, -0.03166399523615837, -0.010717637836933136, 0.04230433702468872, -0.015577736310660839, -0.03828982263803482, -0.029830576851963997, 0.031826067715883255, -0.03310025483369827, -0.007694542407989502, 0.010865394957363605, 0.03587234392762184, -0.0028740318957716227, -0.0014720774488523602, -0.01747692935168743, -0.034601371735334396, 0.007499962113797665, -0.057242684066295624, 0.029813559725880623, -0.003233123105019331, -0.009272981435060501, -0.03378133475780487, -0.05341450497508049, -0.007593304850161076, -0.003591681132093072, -0.035397861152887344, -0.03558512404561043, 0.04733515530824661, 0.03242255002260208, 0.03937803953886032, 0.014469519257545471, -0.007977261207997799, 0.016506187617778778, 0.007344991900026798, 0.044664718210697174, 0.02386144921183586, 0.05155913159251213, 0.030582310631871223, 0.02027072384953499, 0.026587722823023796, -0.018149135634303093, 0.023968661203980446, -0.0064617968164384365, -0.010145068168640137, -0.011194027960300446, 0.0063330866396427155, -0.042037349194288254, -0.057536106556653976, 0.0030709702987223864, 0.021974720060825348, 0.029183538630604744, -0.011898859404027462, -0.06381537765264511, -0.01022518053650856, -0.05018707737326622, 0.018962638452649117, -0.05825159698724747, 0.035570207983255386, -0.016257500275969505, 0.005016787443310022, -0.02733936533331871, -0.04202292859554291, 0.13969886302947998, 0.046770695596933365, 0.05319405347108841, -0.0009867229964584112, 0.016325009986758232, 0.07842038571834564, 0.006195413880050182, -0.005403409246355295, 0.02741769142448902, -0.0015065745683386922, 0.04132934287190437, 0.0005917616654187441, 0.010606418363749981, -0.0026687646750360727, 0.01767880655825138, 0.044697701930999756, -0.03501439467072487, 0.02359773963689804, -0.0010094506433233619, -0.04467064142227173, -0.045101236552000046, 0.04974998161196709, 0.00666733318939805, -0.025480957701802254, 0.0005194103578105569, 0.02639724686741829, 0.007726855110377073, -0.037095069885253906, -0.005787646397948265, -0.02717752382159233, 0.007313332986086607, -0.032077059149742126, 0.014932363294064999, -0.009983115829527378, -0.04909509792923927, 0.07087421417236328, 0.004174435511231422, -0.021191153675317764, -0.014288178645074368, 0.044963475316762924, 0.0019137468189001083, 0.02900518849492073, 0.032360486686229706, -0.039945196360349655, 0.015188595280051231, 0.027497537434101105, -0.044676218181848526, -0.0013776181731373072, 0.02078118920326233, -0.044878266751766205, 0.060143884271383286, -0.052075374871492386, 0.05576325207948685, -0.019423676654696465, -0.031346395611763, -0.014224711805582047, 0.006935269106179476, -0.06626248359680176, 0.0015374456997960806, 0.009366125799715519, 0.029994120821356773, 0.014791498892009258, -0.005669972859323025, -0.0062219626270234585, -0.04624899476766586, -0.0025557749904692173, 0.01938490755856037, 0.005000297911465168, -0.01070481538772583, 0.02512236498296261, -0.020703589543700218, -0.02296094410121441, -0.00047128289588727057, -0.020849067717790604, -0.010901850648224354, 0.02380439080297947, -0.03690250217914581, 0.07301508635282516, -0.00784632284194231, -0.02033006027340889, -0.022686822339892387, -0.009619598276913166, 0.017148735001683235, -0.023328719660639763, 0.0261431522667408, 0.03184652328491211, -0.04660671204328537, -0.02038828656077385, -0.01894560642540455, 0.05288654938340187, 0.02572212927043438, 0.021245479583740234, -0.012400206178426743, -0.017273355275392532, -0.015257918275892735 ]
For other places with the same name, see Jasper (disambiguation). Jasper is a town in Jasper National Park in the Alberta Rockies region of Alberta, Canada. Located in the eastern slope of the Rocky Mountains, Jasper is the shy cousin to bold, brassy Banff and offers a more serene experience. Approximately four hours north of Banff and four hours west of Edmonton, capital of the province of Alberta. Most people enter the park via Edmonton. It can be reached by road or train. Highway 16, the Yellowhead Highway, connects Jasper to Edmonton, which has an international airport and is served by many major airlines. Highway 93, the Icefields Parkway, connects south through the Rockies to Lake Louise and onto Banff. Drivers will have to pay for a park admission pass as the town of Jasper is located within Jasper National Park. There are bus and train connections from Edmonton, Banff and Vancouver. Those driving to the park should be aware that a park fee of $20 per night applies. Annual passes are available for $89. There is no public transit. A few taxis and rental cars are available, and bikes can be rented in the summer. Hitchhikers report that getting a lift in Jasper is very easy. Jasper is small enough that most places can be easily walked to. Tour companies offer bus service to most of the major tourist destination including Maligne Lake, The Columbia Icefields and Miette Hot Springs. The two major companies in town are Brewster and SunDog. Both these companies offer similar tours at the same price. The only difference is the size of the tour group: Brewster uses large buses (seating approx. 50) and SunDog has smaller vehicles (seating approx. 12). Maligne Lake, which has regular boat trips to see the wonder of a lake with water two different colours in different parts. Spirit Island, made famous by a photography competition, is in the middle of Maligne Lake. The most common way to see it is to take the boat cruise (1.5 hours round trip). You can also rent canoes and kayaks, and, if you are prepared to camp at the other end of the lake, paddle the 8+ hours it takes to get there. Angel Glacier, take highway 93A to Mount Edith Cavell and take the 500m hike from the parking lot to view Angel glacier and its lake full of icebergs. A longer 5km trail (500m up) is also available for even better views. Note for 2017 a pass is required (line up at the Jasper into center to obtain for free, from 8-10am daily). The pass is required due to the continuing reconstruction of the parking lot and limited parking available. A few years prior ghost glacier (a smaller glacier next to Angel glacier), fell off the mountain into the lake, causing a tidal wave that destroyed the trail and parking lot below. Excellent camping in the summer. Cross Country and downhill skiing in winter. Rent a bike. Plenty of sport shops offer bikes, which are a great way to see the area. Miette Hot Springs, , are an excellent place to go and relax after a day of hiking. There is also a challenging 4 hour hike advertising the best views in the park that starts from the parking lot next to the hot springs. Maligne Canyon, . The river, up near Maligne Lake, flows in a mighty torrent. When it enters Medicine Lake (named in reference to bad medicine) it does so with great volumes. It does not, however, appear to flow out. Indeed, through the summer months Medicine Lake disappears until, in mid autumn all that is left is a thin channel that itself disappears into the shoreline. In Winter, walk on the canyon bottom to see masses of blue ice where waterfalls flow in the summertime! Athabasca Falls - The Athabasca River thunders through a narrow gorge where the walls have been smoothed and potholes are created by the sheer force of the rushing water carrying sand and rock. Parking and restroom facilities. Paved trail and picnic sites available. Mount Robson (The park's namesake peak is the highest in the Canadian Rockies at 3954 metres. Mount Robson Provincial Park is 217,200 hectares of stunning mountains, valleys, and waterways. Forests of spruce, fir, balsam, cedar and alder are home to an abundant array of wildlife including mountain goats, moose, deer, elk, marmot and squirrels and chipmunks. The Rearguard Falls of the Fraser River is the furthest migration point of the Pacific salmon. GyPSy Guide, Take a guided tour in your own car. The GyPSy Guide is a small electronic device that uses GPS technology to automatically trigger commentary about history, geology, directions and quirky Canadian stories, through your car stereo. Most of the hotels in or near Jasper have restaurants that will meet or beat your expectations for dining in a small community. Some are higher-toned than others, but across the board food is generally very good and portions tend to be hearty. In addition to the hotel restaurants, the town has several noteworthy dining spots as well as numerous restaurants catering to the hungry but penny-pinching skiers and other visiting outdoors-folk. Syrah's of Jasper, 606 Patricia St. Fine dining restauarant with great wine selection. Prices are moderately high, but not out of line for the finer restaurants in Jasper. Dead Dog Bar & Grill, a favorite among locals, the $7 burger & fries deal is probably the cheapest meal in town. Happy hour is on Fridays. Located on Connaught Street. Spooners, 610 Patricia St. Juice bar, gourmet coffees, teas, smoothies, homemade desserts and pastries, sandwiches, soups and salads. Something Else, 621 Patricia St. A Greek restaurant that serves up a variety of cuisine, and pizza. North Face Pizza, 618 Connaught Dr. Excellent pizza, great after a day at Marmot Basin! Sorrentino's Bistro Bar, 96 Geike St. Italian restaurant, popular Canadian chain. Sayuri's Japanese Restaurant, 410 Connaught Dr. Japanese cuisine, sushi. Kimchi House, 407 Patricia St, +1 780 852-5022. Korean cuisine. Jasper Brewing Company, 624 Connaught Dr, +1 780 852-4111. Unique in Jasper, beer is brewed on-site. Earls, 600 Patricia St. Western Canadian cuisine. A restaurant and bar in one, this can get fairly packed out. The staff aren't fantastic, but the food more than makes up for the wait to be seated. Buckles Saloon, Maligne Lodge, W end Connaught Dr, +1 780 852-7074. De'd Dog Bar & Grill, Bsmt, 620 Connaught Dr, +1 780 852-9449. Villa Caruso, Corner, Connaught Dr and Hazel Ave, +1 780 852-3920. The 'B' Ale House, 510 Patricia St, +1 780 852-3386. Chateau Jasper, 96 Geikie St, +1 780 852-5644. Nick's Bar, Juniper St between Connaught Dr and Geikie St, +1 780 852-4966. In the summer, there is excellent camping in the campgrounds operated by Parks Canada. Throughout the year, it is possible to stay in private home accommodation - rooms or suites in residents' homes. Prices vary, but standards are high - full details of what is available can be found in the tourist office in town, or at . Hostelling International runs a series of hostels throughout Jasper National Park. Jasper International is the closest to town (7km south-west from Jasper on Whistlers Road, and is open all year), and four Wilderness Hostels which cater more towards trekkers and those people who "enjoy getting in touch with nature." There are numerous motels and inns within the town, as well as in Hinton, just outside the eastern entrance to the park. Austrian Haven B&B Located at 812 Patricia Street, +1 780 852-4259. Owned and run by a very friendly and welcoming Austrian lady. There are only 2 rooms, which are beautifully decorated with the biggest most comfortable beds you will ever sleep in. Both the rooms have excellent views of the mountains around Jasper. Mount Robson Inn 902 Connaught Drive, +1 780 852-3327. A comfortable well equipped two storey motel style inn. All rooms have air conditioning, cable television, and plenty of room. Reasonable prices. Patricia Lake Bungalows, +1 780 852-3560. Chateau Jasper 96 Geikie St, +1 780 852-5644 Offers exceptional accommodations and amenities complemented by a young, personable staff who extend a warm and sincere welcome. Each guest room is retains the charm of the majestic Rockies. A restaurant and conference facilities are available on-site. Rates vary with season - late Fall being the lowest and Summer being the highest $100-$300. Mount Robson Inn, 902 Connaught Drive, +1 780 852-3327. Offers 80 luxurious, well appointed rooms and suites. $94-325. Jasper Inn Alpine Resort, 98 Geikie Street, +1 780 852-4461. Cozy and tastefully appointed fireside accommodation, comfortable amenities and casual fine dining amid the rugged beauty of the Canadian Rockies. $93-413. Lobstick Lodge, 94 Geikie Street, A favourite among the skiing crowd, Lobstick Lodge features a restaurant onsite, as well as FIVE hot tubs and an indoor pool. Rates: varies with season; Fall has the cheapest rates (<$100 is common), while summer is high season (June - August). Fairmont Jasper Park Lodge, Old Lodge Rd (turn south off highway 16 just east of the townsite, and make a quick right after crossing the river), +1 780 852-3301 or 800-257-7544 ([email protected], fax 780-852-5107), . The Jasper Park Lodge is the premier hotel in Jasper, and one of the most famous and storied mountain resorts in the Canada. Started as a tenting site in conjunction with the Grand Trunk Railway in 1915, it has grown into a renowned destination resort. $400 and up. Bears looking for food are a potential problem. The city has installed bear proof garbage cans and business use bear proof dumpsters. It is a good solution until the bears learn how to read! VIA Rail runs routes through Jasper, which you can often include as a free stop-over if heading between Vancouver and Edmonton. It is also popular to travel down to Lake Louise and Banff, making stops at Athabasca Falls, Peyto Lake, Crowfoot Glacier, and Bow Lake. This page was last edited on 10 September 2017, at 00:28.
[ -0.00796650443226099, -0.0005972750950604677, -0.04061111435294151, -0.009358401410281658, -0.0027557581197470427, -0.029793763533234596, 0.037787433713674545, 0.0317775122821331, 0.01077057421207428, 0.047864627093076706, 0.04925960302352905, -0.029996130615472794, 0.013799416832625866, -0.05651141703128815, 0.006195162422955036, -0.016876183450222015, -0.047630541026592255, -0.020271647721529007, -0.03184500336647034, -0.0003378064720891416, -0.013743314892053604, -0.010635611601173878, -0.045133404433727264, -0.025931691750884056, -0.010422013700008392, 0.029901474714279175, 0.018014930188655853, 0.0024911104701459408, 0.027812674641609192, 0.07449634373188019, -0.026137925684452057, -0.03579866886138916, 0.02162289433181286, -0.030370080843567848, 0.0033215992152690887, -0.016611116006970406, 0.0365118607878685, -0.024699466302990913, -0.02945847623050213, -0.02011445164680481, 0.037072669714689255, -0.014186377637088299, 0.04599066078662872, -0.02501467987895012, -0.009916696697473526, 0.009573590941727161, -0.016943464055657387, -0.02753288298845291, 0.02541331760585308, -0.04528529942035675, 0.01635737158358097, 0.00261742458678782, 0.02873823419213295, 0.011894669383764267, 0.004845318850129843, -0.0010602043475955725, 0.014086118899285793, -0.0008330173441208899, -0.0033226741943508387, 0.042328838258981705, 0.0019586938433349133, -0.012693938799202442, 0.020165488123893738, -0.06226480007171631, 0.037861842662096024, 0.012277651578187943, -0.004692457150667906, -0.011993078514933586, 0.006983601488173008, -0.02250656671822071, -0.0073341913521289825, 0.02149430848658085, -0.01964488811790943, -0.009268878027796745, 0.009992562234401703, -0.0007001659832894802, -0.0008408365538343787, -0.014870013110339642, -0.0018488229252398014, 0.01405844185501337, 0.026858538389205933, 0.032549019902944565, 0.0005953538347966969, 0.017892053350806236, -0.0710124522447586, -0.03183178976178169, -0.029205111786723137, 0.0022402515169233084, 0.0335255041718483, 0.017616435885429382, -0.0068120225332677364, 0.050985030829906464, 0.006775648333132267, -0.01877514272928238, 0.04045950993895531, 0.04145698994398117, -0.05673130974173546, 0.014543558470904827, 0.019028324633836746, -0.017841637134552002, 0.051038920879364014, 0.02190953493118286, 0.015343615785241127, 0.04990186542272568, -0.04262074828147888, -0.03461344167590141, -0.032447826117277145, -0.00398417841643095, 0.02328798919916153, -0.015757933259010315, -0.023697877302765846, -0.01743522845208645, 0.016019120812416077, -0.024632606655359268, 0.0028110989369452, 0.044306132942438126, 0.006834401283413172, 0.03867271915078163, -0.01392858661711216, -0.010879015550017357, 0.023721206933259964, 0.0018392133060842752, 0.04941587522625923, -0.00799301266670227, 0.0047980970703065395, -0.05324527993798256, -0.014913462102413177, 0.07032434642314911, -0.03261544927954674, -0.008985468186438084, 0.003911192063242197, -0.06669469177722931, -0.015923000872135162, 0.002142521785572171, -0.005807822570204735, 0.034316256642341614, -0.010537293739616871, 0.025979159399867058, 0.029758529737591743, -0.053022608160972595, 0.06064547225832939, 0.03539983928203583, 0.020067337900400162, 0.09560549259185791, 0.004490793216973543, 0.03632707521319389, 0.019942663609981537, -0.007521890569478273, -0.04032447934150696, 0.04298923537135124, -0.03852666914463043, 0.01882978528738022, 0.019579695537686348, 0.04484785720705986, -0.02111762948334217, 0.020825684070587158, -0.001012343680486083, -0.0035658488050103188, 0.0019498624606058002, 0.01035952940583229, -0.028261613100767136, 0.028651664033532143, 0.01742105558514595, 0.04466545954346657, -0.018797483295202255, 0.026029761880636215, -0.043227341026067734, -0.012066403403878212, -0.03868842124938965, -0.04993622004985809, 0.028350556269288063, 0.010223595425486565, -0.033731937408447266, 0.021587887778878212, 0.04086124897003174, 0.06630780547857285, 0.03691062703728676, 0.02721581980586052, 0.03560234233736992, 0.04678124561905861, -0.026304621249437332, -0.020367447286844254, -0.009788627736270428, 0.035233885049819946, -0.000597485457547009, 0.0034449221566319466, 0.009539363905787468, -0.005156137049198151, -0.04679538309574127, -0.01694243773818016, -0.008170257322490215, 0.012836828827857971, -0.011977097019553185, 0.024794278666377068, 0.003864001715555787, 0.012423169799149036, -0.02814357727766037, -0.0430646687746048, -0.010344411246478558, -0.06162021681666374, -0.03941626101732254, 0.03042723797261715, -0.0379447303712368, 0.012249683029949665, -0.00296188541688025, -0.04910553991794586, 0.022287636995315552, 0.057829175144433975, -0.01946932263672352, 0.0042043328285217285, 0.02979343570768833, 0.028814632445573807, -0.01911025308072567, 0.0015776845393702388, 0.017663292586803436, 0.004422636702656746, -0.00698459567502141, 0.03863757848739624, 0.017482969909906387, -0.034335531294345856, 0.0005697819287888706, 0.047425221651792526, 0.02742544375360012, 0.07575556635856628, -0.010984690859913826, -0.0024006024468690157, 0.01635504886507988, 0.06126027926802635, -0.014956755563616753, 0.002207178622484207, 0.0005356557667255402, 0.04878160357475281, 0.032794881612062454, 0.040998902171850204, 0.030413368716835976, 0.022677602246403694, 0.0591319315135479, 0.02851622737944126, -0.0238238126039505, -0.006981034763157368, -0.010270684026181698, 0.024505123496055603, 0.04969244450330734, 0.010343763045966625, -0.013361905701458454, 0.031247399747371674, -0.0018532448448240757, -0.02763386256992817, -0.016753505915403366, 0.04820094257593155, 0.020043063908815384, 0.012155601754784584, 0.002540646819397807, 0.04882412403821945, -0.032368481159210205, 0.003825264982879162, 0.04779072850942612, 0.056721270084381104, -0.03596764802932739, -0.01601012423634529, -0.012434910982847214, -0.003897461574524641, -0.00950873177498579, -0.03209134191274643, 0.037470582872629166, 0.03388989344239235, -0.025553999468684196, 0.03745139762759209, -0.0077748787589371204, -0.03593793511390686, -0.005695204250514507, -0.03219257667660713, -0.04352434724569321, -0.0381210558116436, -0.07536089420318604, -0.024602167308330536, 0.06172223016619682, -0.07053495198488235, 0.025397302582859993, -0.0017595195677131414, -0.011560330167412758, -0.04745472967624664, -0.02020873688161373, 0.052105341106653214, 0.024799585342407227, 0.020464535802602768, -0.06160774081945419, 0.03901176527142525, -0.010358051396906376, 0.01767924800515175, -0.019873304292559624, -0.0089887585490942, -0.012223998084664345, -0.027784278616309166, 0.0007801232277415693, -0.010338963940739632, 0.02390439249575138, -0.002034545410424471, -0.038772135972976685, -0.06194273754954338, 0.024099159985780716, 0.010731157846748829, -0.018405338749289513, 0.02006055787205696, -0.048837993294000626, 0.037399038672447205, 0.020393410697579384, -0.011453712359070778, 0.037659578025341034, 0.03391814976930618, -0.04318864643573761, 0.03697364032268524, -0.004120534285902977, 0.03443610295653343, -0.04334799200296402, 0.042401447892189026, 0.022240567952394485, 0.014076229184865952, -0.01868421584367752, -0.016028307378292084, 0.0054011098109185696, 0.014409864321351051, 0.030665608122944832, -0.021751802414655685, -0.037818603217601776, 0.06502200663089752, -0.0034648298751562834, -0.04798493534326553, 0.019791780039668083, -0.016911206766963005, 0.0006213008309714496, -0.03580648452043533, -0.03815416246652603, 0.015031270682811737, 0.010769333690404892, 0.016113843768835068, 0.0097798528149724, -0.013895473442971706, -0.015486372634768486, -0.0005988936754874885, 0.041877176612615585, -0.04347243532538414, -0.018080130219459534, 0.033586546778678894, -0.007961657829582691, 0.04104280099272728, 0.0174973476678133, 0.022350382059812546, -0.0204978808760643, -0.022462980821728706, -0.01046002097427845, -0.0048627713695168495, 0.03434868901968002, 0.01684732735157013, -0.014370305463671684, 0.031906869262456894, -0.04142322018742561, -0.03149626776576042, -0.015549165196716785, 0.017217064276337624, 0.026679378002882004, -0.02888401225209236, 0.028801176697015762, -0.010063719935715199, 0.003220228012651205, -0.05748327076435089, 0.017230546101927757, -0.00956705305725336, 0.057981591671705246, -0.05056176334619522, 0.03425689786672592, 0.0017798314802348614, -0.025756238028407097, 0.032016899436712265, -0.029231345281004906, -0.028559399768710136, 0.04022279009222984, -0.028261572122573853, 0.019930457696318626, -0.018275082111358643, 0.01817908324301243, -0.007757510524243116, -0.0029374794103205204, 0.05085097998380661, 0.024343162775039673, 0.01645929552614689, -0.027835292741656303, -0.03129751607775688, -0.04035082086920738, -0.041005123406648636, 0.002418525516986847, -0.03709964081645012, 0.015933912247419357, -0.014713461510837078, -0.019163280725479126, -0.03745242953300476, 0.0397164560854435, 0.02130819484591484, 0.04758824408054352, -0.0274412352591753, 0.04035373032093048, 0.040531426668167114, 0.02484252117574215, 0.04533884674310684, -0.03470474109053612, -0.017336096614599228, -0.03808655962347984, 0.03145774081349373, 0.02877059578895569, -0.025084441527724266, -0.04217202961444855, -0.018780184909701347, -0.03768621385097504, 0.01563543826341629, 0.01212073490023613, -0.017597127705812454, -0.03846684470772743, 0.04848034307360649, -0.016201404854655266, 0.03571625053882599, -0.036749351769685745, 0.00931142270565033, -0.022828638553619385, 0.0382845401763916, 0.02107664756476879, -0.052652694284915924, 0.03849084675312042, -0.035421222448349, 0.054153185337781906, 0.05847405642271042, 0.018579984083771706, -0.03814195096492767, -0.0020909097511321306, -0.02957785129547119, -0.009874721989035606, -0.008044267073273659, 0.014088688418269157, 0.002155221765860915, -0.00881438609212637, -0.06016030162572861, 0.012445911765098572, 0.005071642808616161, 0.016997886821627617, -0.010264143347740173, -0.0025417725555598736, -0.009124095551669598, -0.00913706049323082, 0.007692901883274317, -0.03302018716931343, -0.045769549906253815, -0.006354454439133406, -0.027826769277453423, -0.005733738653361797, -0.013211018405854702, -0.03236258402466774, 0.018916064873337746, 0.017395315691828728, 0.010658017359673977, 0.007304476574063301, -0.04809240251779556, 0.024266524240374565, 0.006511456798762083, 0.035321783274412155, -0.03198974207043648, -0.03493161499500275, 0.05783113092184067, 0.012423298321664333, -0.03202757239341736, 0.022104987874627113, 0.060144003480672836, -0.017538148909807205, 0.03473171591758728, -0.001165335183031857, -0.04804694652557373, 0.03985258564352989, -0.025678064674139023, 0.017857737839221954, 0.011466487310826778, -0.025602266192436218, 0.029384110122919083, -0.022461241111159325, 0.010220794007182121, 0.0041389139369130135, 0.022530216723680496, -0.023642973974347115, -0.05924728885293007, -0.02611115761101246, 0.003185690613463521, -0.0034986226819455624, 0.028618544340133667, 0.006031740922480822, -0.00945218000560999, -0.0028183674439787865, -0.03170676901936531, 0.01850564405322075, -0.009381446056067944, -0.01794860139489174, 0.03449596092104912, 0.006236642599105835, -0.00254803872667253, 0.029925918206572533, -0.029637904837727547, -0.020401787012815475, 0.02843749150633812, 0.0002095671370625496, -0.010219478979706764, -0.05278302729129791, 0.03765637427568436, -0.027089446783065796, 0.005477612372487783, -0.04130617529153824, -0.010221630334854126, 0.002887208480387926, -0.018395939841866493, 0.02058938890695572, 0.02696547843515873, 0.04123459383845329, 0.013355160132050514, -0.025711577385663986, 0.01782199926674366, 0.020388741046190262, -0.03610024228692055, -0.016405193135142326, 0.015085512772202492, -0.026601072400808334, 0.024877559393644333, -0.018274065107107162, -0.030372867360711098, -0.04060773178935051, -0.055717550218105316, -0.005857556127011776, -0.02769893780350685, -0.009423581883311272, -0.04392465576529503, -0.02469700761139393, -0.0348505973815918, 0.030280636623501778, 0.030631696805357933, 0.011658729054033756, 0.03143565356731415, -0.022901777178049088, -0.012645349837839603, -0.02293325401842594, -0.009371649473905563, -0.032957322895526886, -0.005125819705426693, -0.015304019674658775, 0.07301677763462067, -0.003732524113729596, 0.020289408043026924, 0.01643361710011959, 0.04052566736936569, 0.058064430952072144, -0.015107962302863598, -0.04393330216407776, -0.03796039894223213, -0.01621124893426895, 0.001246832893230021, -0.0025758640840649605, 0.014795983210206032, -0.03462180122733116, 0.08881986141204834, -0.0427699014544487, -0.005515068303793669, 0.0013078844640403986, -0.00866826344281435, -0.04234054684638977, 0.008827965706586838, 0.0484975203871727, -0.025353334844112396, -0.005348582286387682, -0.019971434026956558, 0.0613761767745018, 0.042736493051052094, -0.029776019975543022, -0.014477568678557873, -0.02553613670170307, -0.011560489423573017, -0.06560438126325607, 0.05708988010883331, -0.03635786846280098, -0.023521654307842255, -0.031838271766901016, -0.011945188045501709, 0.036480970680713654, 0.014226934872567654, 0.03107665665447712, 0.05726233869791031, 0.004880863707512617, 0.004208588972687721, -0.022025464102625847, 0.03785252943634987, 0.03363214433193207, 0.016572481021285057, -0.019907856360077858, -0.03236495330929756, -0.018021827563643456, -0.0063054244965314865, -0.04562552273273468, -0.05349564924836159, -0.05434489622712135, -0.02411440946161747, 0.06003261357545853, -0.03360636904835701, 0.05314606800675392, -0.0345156155526638, -0.055904533714056015, -0.060451630502939224, 0.0448625423014164, -0.015658391639590263, 0.00736335339024663, 0.07765774428844452, -0.014769614674150944, -0.006984814070165157, 0.03352907672524452, -0.008591118268668652, 0.011357836425304413, -0.09629969298839569, 0.0722893476486206, -0.015479260124266148, -0.04356221854686737, 0.010333722457289696, 0.04347565397620201, -0.07234345376491547, -0.05029655247926712, 0.0006602825014851987, 0.008580534718930721, -0.004260513465851545, -0.04126773774623871, 0.013761990703642368, -0.009591655805706978, -0.0047888983972370625, -0.014023559167981148, 0.05328721925616264, 0.006429226137697697, 0.05487934127449989, -0.004766365047544241, 0.05723230913281441, -0.029656752943992615, 0.014319367706775665, 0.015418092720210552, -0.007324485573917627, -0.037860073149204254, -0.03382476419210434, -0.00408824160695076, 0.016359252855181694, -0.003010162618011236, 0.060266345739364624, -0.051294956356287, -0.013732614926993847, 0.040101565420627594, 0.0003191787691321224, 0.0567140206694603, 0.018709685653448105, -0.000725704652722925, 0.005976445972919464, 0.0000241875368374167, -0.04797020182013512, -0.05452102795243263, 0.04763640835881233, 0.02356521412730217, 0.03459765762090683, -0.028623152524232864, -0.03937400504946709, 0.022583618760108948, -0.0013375828275457025, -0.038964591920375824, -0.023775393143296242, -0.040919262915849686, -0.043794192373752594, -0.05248119309544563, -0.04549678787589073, -0.037393517792224884, 0.0030693174339830875, -0.01887565106153488, 0.006705512758344412, 0.0033285748213529587, -0.014214674010872841, -0.0037100084591656923, -0.01271580159664154, 0.015955954790115356, -0.019232328981161118, 0.014629808254539967, -0.03848670423030853, -0.05018629878759384, -0.030821992084383965, -0.0011534689692780375, 0.0212855227291584, 0.03403187543153763, -0.019207963719964027, 0.035830214619636536, 0.006098491605371237, 0.040544722229242325, 0.010300904512405396, -0.031917504966259, -0.01891998201608658, -0.028757214546203613, -0.02182195521891117, 0.01996416412293911, -0.002941809594631195, 0.03050803765654564, 0.01732805371284485, 0.00505650183185935, 0.03146139904856682, 0.015798579901456833, -0.024614756926894188, -0.006320585031062365, -0.030295707285404205, -0.030598223209381104, 0.020515158772468567, -0.06647790968418121, -0.008353489451110363, 0.03626316785812378, -0.04459257796406746, 0.026115914806723595, 0.006363649852573872, 0.019609244540333748, 0.012937397696077824, 0.013135889545083046, 0.0080479197204113, 0.0509946346282959, -0.019324015825986862, 0.007606823462992907, 0.0053522116504609585, 0.02443597838282585, -0.01795331947505474, -0.0049781715497374535, 0.029358945786952972, 0.019376544281840324, 0.05291454866528511, -0.016386009752750397, 0.009384381584823132, -0.0014409227296710014, -0.04881291836500168, 0.053557805716991425, -0.026364434510469437, -0.03501112386584282, -0.039959851652383804, -0.040342602878808975, -0.03368571400642395, 0.04188119247555733, 0.030743781477212906, 0.008235204964876175, 0.07016386091709137, -0.04472062364220619, -0.04286295920610428, 0.008888394571840763, -0.07527773827314377, -0.07103666663169861, 0.014906524680554867, -0.004877263680100441, 0.014376901090145111, -0.004372390452772379, -0.01422874815762043, 0.024945557117462158, -0.006139611359685659, -0.01230478473007679, -0.007298710756003857, 0.02477165125310421, -0.013232462108135223, 0.029204020276665688, -0.02849043905735016, -0.019805142655968666, 0.00634561013430357, 0.026426326483488083, -0.08379510790109634, -0.04054512456059456, -0.0003514329728204757, 0.001362401875667274, 0.02645721286535263, 0.0027919476851820946, 0.039253223687410355, 0.012335939332842827, -0.017025521025061607, 0.013783919624984264, -0.0015182534698396921, -0.018732422962784767, 0.004786972887814045, 0.026497451588511467, -0.01285209134221077, -0.01708091050386429, -0.05230674520134926, 0.03791468217968941, -0.002486740704625845, -0.03135085850954056, -0.05162995308637619, 0.044654980301856995, 0.0466855987906456, -0.026057349517941475, 0.0246428232640028, 0.020455973222851753, 0.03866845741868019, -0.03206944838166237, 0.006210395600646734, -0.025346048176288605, 0.011075356975197792, 0.03400392457842827, 0.02469140850007534, 0.003374396590515971, 0.04089285433292389, 0.025097981095314026, -0.018176300451159477, -0.014238434843719006, 0.06916503608226776, 0.02220863662660122, -0.018098797649145126, -0.014222492463886738, 0.0018014031229540706, 0.008087379857897758, 0.018672732636332512, 0.000021103582184878178, 0.019024033099412918, -0.007517714519053698, -0.010352649725973606, -0.020040292292833328, -0.0040175532922148705, 0.04241321608424187, -0.02422357350587845, 0.00802200473845005, -0.014153030700981617, -0.01407241728156805, -0.026375921443104744, 0.03423101082444191, -0.002708321437239647, 0.014733022078871727, 0.010734878480434418, 0.023630045354366302, -0.008511988446116447, 0.04081425815820694, 0.010140322148799896, -0.0013418185990303755, -0.005780303850769997, 0.028031807392835617, -0.01869986020028591, 0.006175163201987743, -0.040036898106336594, -0.006789007689803839, -0.05342917516827583, 0.014380833134055138, -0.05566808208823204, -0.04998335987329483, 0.034616392105817795, -0.032677486538887024, -0.037784021347761154, -0.036978159099817276, 0.04214145615696907, -0.06962072104215622, -0.0014000716619193554, 0.04820317402482033, 0.019133875146508217, 0.0033872993662953377, 0.07047570496797562, -0.011049597524106503, 0.06293697655200958, 0.03341202810406685, 0.04834309220314026, -0.0014720562612637877, 0.011054384522140026, 0.019953737035393715, -0.0017273675184696913, -0.04935777932405472, 0.0014360147761180997, -0.022846544161438942, -0.044344618916511536, -0.015000897459685802, -0.014244423247873783, 0.000619579222984612, -0.01644495688378811, -0.02876126766204834, 0.004316006787121296, 0.04576994478702545, 0.0005353194428607821, -0.05570439249277115, 0.015312355943024158, 0.03741561248898506, -0.01467607356607914, 0.016970567405223846, -0.0015433753142133355, 0.050161171704530716, -0.012500468641519547, -0.03211352601647377, -0.03383704274892807, -0.04856732487678528, 0.01078884769231081, -0.03197794780135155, 0.04790534824132919, 0.0014927660813555121, -0.006253358442336321, 0.0010803352342918515, -0.044117894023656845, -0.03434234857559204, 0.0029342544730752707, -0.0520276203751564, -0.04273122549057007, 0.034161269664764404, 0.02615187130868435, -0.020831670612096786, 0.004301096312701702, -0.03564434126019478, -0.005928677506744862, 0.03205619007349014, 0.06647440046072006, -0.018371859565377235, 0.03100762702524662, 0.03246437385678291, -0.02681252360343933, 0.009331555105745792, -0.025278156623244286, 0.05718614533543587, -0.011551893316209316, -0.028307858854532242, -0.02865469828248024, 0.018692340701818466, -0.02842850796878338, -0.04783984646201134, 0.004571937955915928, -0.0008214437984861434, 0.04748348519206047, -0.03715978562831879, -0.05172814428806305, 0.02056211233139038, -0.024209965020418167, -0.01389713678508997, -0.02095276676118374, 0.011760796420276165, 0.04312623664736748, -0.0037664358969777822, 0.0014522619312629104, -0.041825175285339355, 0.16438445448875427, 0.02615589089691639, 0.05034751817584038, 0.006861749570816755, 0.007904109545052052, 0.03977666422724724, 0.03427799791097641, -0.03891729936003685, 0.00007481575448764488, -0.043210722506046295, 0.015289941802620888, 0.006374152842909098, 0.034703467041254044, 0.019764654338359833, 0.022441145032644272, 0.04203440248966217, -0.026277020573616028, 0.03197496384382248, 0.023840168491005898, -0.04882416874170303, -0.041319720447063446, 0.03227146342396736, -0.020050454884767532, 0.03326699510216713, 0.015271317213773727, -0.007328212261199951, -0.010362878441810608, -0.05632447451353073, -0.002435276983305812, -0.010322829708456993, -0.002972259419038892, -0.052732378244400024, 0.011203335598111153, 0.019582821056246758, -0.04595692455768585, 0.02898550033569336, 0.02453785389661789, -0.0022995637264102697, 0.004736826289445162, -0.011814883910119534, -0.04371552914381027, -0.005278958007693291, 0.047723911702632904, -0.022509586066007614, 0.0009714443003758788, 0.057035963982343674, -0.03680738806724548, 0.012167010456323624, 0.016894659027457237, -0.022179940715432167, 0.06315474212169647, -0.005099566653370857, 0.02017045207321644, -0.01075719390064478, -0.014766420237720013, 0.030486978590488434, 0.010919583961367607, -0.045485690236091614, 0.007400938309729099, -0.008218410424888134, 0.07908105105161667, 0.002988362219184637, -0.00985555350780487, 0.012516720220446587, -0.017242562025785446, 0.0385853573679924, 0.01683436520397663, -0.010811252519488335, -0.038526978343725204, -0.054739657789468765, 0.008876108564436436, -0.026939095929265022, -0.0174754299223423, -0.03331543132662773, 0.02464050054550171, 0.03576891869306564, -0.007725679315626621, 0.030244722962379456, -0.005200215149670839, -0.021525489166378975, -0.007775132078677416, -0.047886673361063004, 0.0030870656482875347, -0.007547080982476473, 0.03941076993942261, 0.0393899641931057, -0.03665655106306076, -0.021352618932724, 0.0052646747790277, 0.05098092183470726, 0.0345960296690464, 0.03238832578063011, -0.035064928233623505, 0.01678890362381935, -0.012307366356253624 ]
โ€“ Theatre was once and can be a forum to present the news of the day. Newswrights United posited themselves as this, but their process of exploring a given topic turned into too lengthy and herculean an exercise to be a reliable methodology for this purpose. It still can be done regularly if the production expectations were scaled down. A group (especially a group of improvisers or sketch comics) could do this as a fly by night weekly or monthly exercise with minimal production value if they didn't take themselves and their material too seriously. โ€“ So many scripted or choreographed projects face pressure in boiling their weeks/months long process into a single, short production that can and often is quickly misinterpreted or underinterpreted. This to me emphasizes the importance of making your work clear enough that the audience will see and understand as much of what you want them to see as possible the first time around. Being vague is not an affordable luxury for the artist with a real message. โ€“ Performing artists worry a lot about the visual in their work but not the emotional tones of their work. This lends value to keeping the physical elements (blocking, choreography, scripting, etc) simple. The more complex those elements, the more difficult it becomes for the performer to allow the valuable undertones to come forth. โ€“ Directing is most challenged when limited to certain parameters, but it strengtens through practice your ability to work with what is available. โ€“ Directing with clarity takes significant, focused and engaged effort in that you want to make your intentions clear but you also want your performers to remain fully open, creative, expressive and generous with their work. โ€“ Giving feedback is important, and so is giving it in manageable, digestible doses. โ€“ Be willing as a director to accept a performer's product that is not what you had envisioned. This is not required and you are free to sculpt what is given, but what the performer gives you may be different and there is value within many of those differences. โ€“ Is moving into a shape of memory a two step process? Moving first into the shape of movement, then finding the sense memory that fully forms the shape of that memory? โ€“ Movement: A form of emotional and mental brainstorming? โ€“ Sense memory and associated movement can evoke a topic for exploration.
[ 0.026986047625541687, 0.0073810541070997715, -0.030407896265387535, -0.023839600384235382, -0.016064902767539024, -0.044358544051647186, 0.00008292467100545764, 0.02432340942323208, -0.000583391054533422, 0.030518842861056328, 0.0159029271453619, -0.001768768299371004, 0.027592942118644714, -0.023998700082302094, -0.018467558547854424, 0.009870643727481365, -0.02746529132127762, -0.02373352088034153, -0.024413486942648888, 0.01278419978916645, -0.0029213211964815855, 0.006414250936359167, -0.055025406181812286, -0.01710936240851879, -0.0335761159658432, 0.04341911897063255, 0.009584927000105381, 0.005807727575302124, 0.07679599523544312, 0.05030766874551773, 0.003422565059736371, -0.03188815340399742, 0.022666459903120995, -0.03976338729262352, -0.01967475190758705, -0.03289789333939552, 0.0195511132478714, -0.0661277249455452, -0.02344362437725067, -0.051713794469833374, -0.004908740054816008, -0.009251711890101433, 0.028164954856038094, -0.04582243040204048, -0.05558095499873161, 0.015341183170676231, -0.0011322225909680128, -0.04645931348204613, -0.008288491517305374, -0.03343791514635086, 0.013102802447974682, -0.02374635636806488, -0.000026122526833205484, 0.0002155616384698078, 0.023066937923431396, 0.02494055964052677, -0.00067380495602265, 0.002132861874997616, -0.03921489045023918, 0.02763666771352291, 0.03621642664074898, 0.014139978215098381, 0.018389839679002762, -0.07766371965408325, 0.024503527209162712, 0.025449180975556374, -0.011281736195087433, -0.029363805428147316, -0.03019600547850132, 0.005153988022357225, -0.03685852885246277, -0.00040669538429938257, -0.02735915407538414, -0.013517308048903942, -0.006030596327036619, -0.008873207494616508, 0.0009288607398048043, 0.003372322069481015, 0.013657595030963421, 0.013233472593128681, 0.017827365547418594, 0.041585974395275116, -0.03147929534316063, 0.017616482451558113, -0.06116166710853577, -0.017264075577259064, 0.004227885976433754, -0.006443834397941828, 0.04093532636761665, -0.008868017233908176, 0.03193949535489082, 0.04294675216078758, -0.0020370641723275185, -0.006685658823698759, 0.03450995311141014, 0.04815319553017616, -0.03948191553354263, 0.03779006004333496, 0.01798172853887081, 0.001706396578811109, 0.020496971905231476, 0.037119437009096146, -0.014764429070055485, 0.03474932909011841, -0.04899430274963379, -0.03276313468813896, 0.004060740116983652, -0.002124688122421503, -0.015004230663180351, -0.044212669134140015, -0.012061331421136856, -0.02933340333402157, 0.02110244892537594, -0.0026625364553183317, -0.014278058893978596, 0.023963961750268936, 0.03465734049677849, 0.06408374011516571, -0.03254924714565277, 0.03552575409412384, 0.013868499547243118, -0.0027148546651005745, 0.019613100215792656, -0.034887343645095825, 0.04782527685165405, -0.013876568526029587, -0.005920598283410072, 0.03944430127739906, -0.02983848936855793, -0.018955636769533157, 0.02193216048181057, -0.04416027292609215, -0.02501283399760723, 0.030852362513542175, 0.005374946631491184, 0.013201658613979816, -0.0076417941600084305, 0.030753279104828835, 0.031626760959625244, -0.054161056876182556, 0.03642898425459862, 0.0065758125856518745, 0.02965145744383335, 0.07886452972888947, 0.01312811579555273, 0.03116287663578987, -0.006619217339903116, -0.0037623357493430376, -0.012882495298981667, 0.03624166175723076, -0.029947428032755852, 0.02371870167553425, -0.005906653590500355, 0.011955811642110348, -0.005200645420700312, -0.041595470160245895, -0.026492305099964142, -0.00008153231465257704, 0.030040258541703224, 0.043650269508361816, -0.027493322268128395, 0.009052697569131851, -0.013507884927093983, 0.0447264090180397, -0.009353777393698692, 0.05626397579908371, -0.03140251711010933, -0.02425498701632023, 0.009706675074994564, -0.0312906913459301, 0.015122346580028534, -0.0006878430140204728, -0.01053730957210064, -0.021698961034417152, 0.0019049964612349868, 0.061929672956466675, 0.031067105010151863, -0.0010925480164587498, 0.0381922610104084, 0.02787107415497303, -0.035999562591314316, -0.016655584797263145, 0.002159245079383254, 0.08957675099372864, 0.006504678633064032, -0.03197002783417702, 0.0018891097279265523, -0.01670517772436142, -0.013216383755207062, -0.009140939451754093, -0.005028999410569668, 0.04718269407749176, -0.04423074424266815, 0.03908267617225647, 0.04774104431271553, 0.0041235145181417465, -0.021150102838873863, -0.0026005851104855537, 0.018130335956811905, -0.061144158244132996, -0.004318881779909134, 0.048973143100738525, -0.04466830566525459, 0.03613945469260216, -0.0118224136531353, -0.01486491784453392, 0.009362051263451576, 0.07359777390956879, -0.04892821982502937, 0.013738286681473255, 0.021236402913928032, 0.008738376200199127, -0.019543632864952087, -0.02096291072666645, 0.012929366901516914, -0.02498362958431244, -0.008750556968152523, 0.03284667432308197, 0.0055771078914403915, -0.005718292202800512, 0.042107854038476944, 0.0075334711000323296, 0.02578992396593094, 0.008514578454196453, 0.010692008771002293, 0.007897421717643738, -0.00023469241568818688, 0.05412568897008896, -0.03712461516261101, 0.011873635463416576, 0.001968163065612316, 0.03945625573396683, 0.01862967014312744, 0.046031441539525986, 0.03481316193938255, 0.022131364792585373, 0.042832136154174805, 0.027908960357308388, 0.014525064267218113, 0.008648587390780449, 0.009930676780641079, 0.020024193450808525, 0.05996380001306534, 0.04545402154326439, -0.014157303608953953, 0.044001076370477676, -0.002660526195541024, -0.026681194081902504, 0.015137466602027416, 0.016344143077731133, -0.023510141298174858, 0.04258831590414047, 0.03242688253521919, 0.012705808505415916, -0.036500126123428345, 0.011150623671710491, 0.017354389652609825, 0.054641883820295334, -0.011721447110176086, -0.0433930940926075, 0.023384835571050644, 0.05814953148365021, -0.00041371173574589193, 0.0011691033141687512, 0.01818867214024067, 0.0002910908660851419, -0.001442406326532364, 0.04290221258997917, -0.04329776391386986, -0.059878990054130554, -0.04133213683962822, -0.06831184774637222, -0.06995264440774918, -0.030630873516201973, -0.03731487691402435, 0.005812833551317453, 0.03926088660955429, -0.05676024779677391, 0.025548480451107025, 0.004188970662653446, -0.00787445530295372, -0.0255061537027359, -0.006172146648168564, 0.05128882825374603, 0.020272271707654, 0.03164860978722572, -0.019715795293450356, 0.05215064063668251, -0.01695113442838192, 0.05582059547305107, -0.01837198995053768, -0.028162000700831413, -0.024080689996480942, -0.010866334661841393, 0.04971688985824585, 0.0041972738690674305, -0.03204411640763283, 0.013881021179258823, -0.03955007344484329, -0.07468310743570328, -0.01468000840395689, -0.009697853587567806, 0.01520561520010233, 0.017103563994169235, -0.043187227100133896, 0.03653380274772644, 0.02229011058807373, -0.03883616626262665, 0.042087629437446594, 0.0097133694216609, -0.03114435449242592, 0.047131601721048355, 0.013054105453193188, 0.020672496408224106, -0.04568268731236458, 0.06734655797481537, 0.05022797733545303, 0.005160828121006489, -0.016227180138230324, -0.03776095062494278, -0.01574449986219406, 0.0035525611601769924, 0.029734378680586815, -0.01935158483684063, -0.06232195720076561, 0.019581176340579987, 0.021204805001616478, -0.07141672074794769, 0.03689572587609291, -0.03289320692420006, -0.042793381959199905, -0.02250591851770878, -0.04343002662062645, 0.0188139658421278, 0.01861029490828514, 0.02953135222196579, -0.00040875980630517006, -0.03513869270682335, -0.0013425423530861735, 0.0417911522090435, 0.05192209780216217, -0.018948454409837723, -0.009497622959315777, 0.01189215574413538, -0.004896838683634996, 0.030264098197221756, 0.007644775789231062, -0.04225181043148041, 0.00728962616994977, 0.01812358945608139, 0.014587624929845333, 0.017607927322387695, 0.007798239588737488, 0.003286176361143589, 0.03638728708028793, 0.030729813501238823, -0.05812661722302437, 0.01406493317335844, -0.006388572510331869, 0.014940020628273487, 0.04334542527794838, 0.007276507094502449, 0.03633134439587593, -0.033502355217933655, -0.03437398746609688, -0.052830860018730164, 0.040016043931245804, 0.010674712248146534, 0.07858631014823914, -0.031209884211421013, 0.0696941390633583, 0.001881947973743081, -0.027983641251921654, 0.011847862973809242, -0.034227024763822556, 0.005181971471756697, 0.043687932193279266, 0.0058684078976511955, 0.04179307445883751, -0.05491897463798523, -0.0002445120771881193, -0.0069105601869523525, 0.02375432662665844, 0.028557930141687393, 0.009125523269176483, 0.021309517323970795, -0.01885782554745674, -0.015018542297184467, -0.004037166479974985, -0.019411394372582436, -0.025209056213498116, -0.01364127267152071, 0.011200949549674988, 0.012553201988339424, -0.04430451616644859, -0.04394539073109627, 0.05339949205517769, 0.04078739136457443, 0.06822983175516129, -0.021184256300330162, 0.03407752141356468, 0.0076109180226922035, 0.015159005299210548, 0.04012373834848404, 0.004564501810818911, 0.00006678899080725387, -0.044304706156253815, 0.02097569778561592, 0.014290071092545986, -0.016903787851333618, -0.012679733335971832, -0.013606737367808819, -0.007979029789566994, 0.01894858106970787, 0.018177298828959465, -0.027659833431243896, -0.05643569305539131, 0.028192931786179543, 0.006981908809393644, 0.011357633396983147, -0.03329180181026459, -0.03669869154691696, 0.010032588616013527, 0.05370928347110748, 0.03441396728157997, -0.035318631678819656, -0.0176211167126894, -0.04856743663549423, 0.0568239726126194, 0.02960263006389141, -0.013263159431517124, -0.038316626101732254, -0.017343565821647644, -0.05673973634839058, -0.06281702220439911, 0.026725053787231445, 0.04096478968858719, 0.0006880224100314081, -0.009243362583220005, -0.03745720535516739, 0.04489637538790703, 0.006717754527926445, 0.0003073466941714287, 0.02796965092420578, -0.012639681808650494, 0.013496534898877144, 0.006548250559717417, 0.02084910124540329, -0.03200151398777962, -0.014581471681594849, -0.0017972411587834358, -0.04952071234583855, -0.002843949245288968, 0.023609593510627747, -0.01085807103663683, 0.008511367253959179, 0.015476769767701626, -0.005077120382338762, 0.04148579761385918, 0.01735217124223709, -0.008819449692964554, -0.025872867554426193, 0.03443938493728638, -0.042591944336891174, -0.027682268992066383, 0.04096626862883568, -0.0007092516752891243, -0.04035543277859688, 0.021607045084238052, 0.027382327243685722, 0.0006264080875553191, -0.021728651598095894, 0.0098415557295084, -0.04003492742776871, 0.007948140613734722, -0.04121270775794983, -0.013102645985782146, -0.014660858549177647, -0.030530311167240143, 0.0013037706958130002, -0.01698613539338112, 0.051749952137470245, 0.0215059332549572, -0.009511328302323818, -0.05251726880669594, -0.03568001091480255, -0.0021533353719860315, -0.01359590981155634, 0.007749045733362436, 0.005899716634303331, 0.026074571534991264, -0.001270787208341062, 0.015962623059749603, -0.021509623154997826, -0.0108523890376091, -0.013315771706402302, -0.027482450008392334, 0.012826045043766499, 0.019841445609927177, 0.02555966004729271, 0.026605963706970215, -0.002902406733483076, -0.021685795858502388, -0.025891872122883797, -0.004590807482600212, -0.0010531037114560604, -0.015739407390356064, -0.02955416403710842, 0.0003037792048417032, 0.004333994816988707, -0.023727886378765106, 0.039550796151161194, -0.005407414864748716, 0.030613740906119347, 0.038103487342596054, 0.004313083365559578, -0.002577833365648985, -0.0066761476919054985, -0.04442238062620163, 0.040360014885663986, 0.005428037140518427, -0.02587815746665001, -0.01605783775448799, 0.029918884858489037, -0.0016337672714143991, 0.029277777299284935, -0.01718255877494812, -0.023917775601148605, -0.05216077342629433, -0.06813476234674454, 0.012018577195703983, -0.04332679137587547, -0.022441398352384567, -0.031244495883584023, -0.01725102961063385, 0.03379209712147713, 0.020937206223607063, 0.0007088265265338123, 0.0022733602672815323, 0.014521929435431957, -0.04544586315751076, -0.0002653590636327863, -0.03368011862039566, -0.004867679439485073, -0.013413025066256523, -0.016650239005684853, 0.000992935267277062, 0.057479798793792725, 0.015023646876215935, 0.05151696130633354, -0.02069322019815445, -0.006801096256822348, 0.054095037281513214, -0.017985209822654724, -0.035358767956495285, -0.05609552934765816, -0.01034584641456604, 0.00995041336864233, 0.02442529797554016, 0.0007841733749955893, -0.03296542540192604, 0.018105119466781616, -0.026147041469812393, 0.011805437505245209, -0.03892921283841133, 0.0014709390234202147, -0.027098989114165306, -0.03441544994711876, 0.07624486833810806, -0.02723655290901661, 0.016823256388306618, -0.029575902968645096, 0.03583156690001488, 0.04577671363949776, -0.018042422831058502, -0.03210897743701935, -0.013742992654442787, -0.04209195449948311, -0.05257156863808632, -0.006214591208845377, -0.025554336607456207, -0.028975430876016617, -0.038712989538908005, 0.01790711097419262, 0.05166887864470482, -0.01811150275170803, 0.015041777864098549, 0.03526464104652405, -0.009065407328307629, 0.008706615306437016, -0.02109127677977085, -0.016126848757267, 0.031961001455783844, -0.006889628246426582, -0.013046257197856903, -0.0004905076930299401, -0.04242834821343422, -0.018140140920877457, -0.028666391968727112, -0.01640704646706581, -0.04553517699241638, -0.0012300013331696391, 0.052197303622961044, -0.0457674078643322, 0.04153278470039368, 0.009198306128382683, -0.04949164390563965, -0.08415769040584564, 0.04300136864185333, 0.0013270203489810228, 0.015375345945358276, 0.0252403412014246, -0.01800384186208248, -0.015778817236423492, -0.01935923658311367, 0.003008222905918956, -0.02358422242105007, -0.025113234296441078, 0.08397006243467331, -0.020833995193243027, -0.05311193689703941, 0.012484772130846977, 0.04932745173573494, -0.037842124700546265, -0.03895870968699455, -0.0019073180155828595, 0.01879510097205639, 0.02099001780152321, -0.042572055011987686, 0.016426561400294304, -0.040153324604034424, 0.01373969204723835, 0.028397925198078156, 0.04805132374167442, -0.028553176671266556, 0.05206785723567009, 0.013702374882996082, 0.014415847137570381, -0.0416608601808548, 0.025249408558011055, 0.0020596557296812534, -0.003931879997253418, -0.028151890262961388, -0.0295042023062706, -0.0047734761610627174, 0.02287929505109787, -0.020482394844293594, 0.05092504993081093, 0.009847505949437618, 0.0024655258748680353, 0.02710685133934021, -0.017453687265515327, 0.029233019798994064, -0.025121573358774185, 0.004767264239490032, 0.024192528799176216, -0.05268348008394241, -0.030217451974749565, -0.025059707462787628, 0.03411281481385231, 0.01272493600845337, 0.029035337269306183, -0.06727737188339233, -0.02353411354124546, 0.03872578591108322, 0.0122887147590518, 0.0016556589398533106, -0.036887139081954956, -0.028277471661567688, -0.05102405324578285, -0.02132287435233593, -0.0018739673541858792, -0.018107859417796135, 0.022859854623675346, 0.02342633344233036, 0.0004257124091964215, -0.04030214250087738, -0.035319410264492035, 0.022928373888134956, -0.0056694140657782555, 0.0019966682884842157, -0.029692085459828377, 0.026734311133623123, 0.0017504519782960415, -0.04480917751789093, -0.03981097415089607, -0.02820015698671341, -0.03661900758743286, -0.019905636087059975, -0.019157549366354942, 0.01754426211118698, -0.02539433166384697, 0.016203349456191063, 0.022409655153751373, -0.005703418515622616, -0.03264162316918373, -0.04817279055714607, 0.012178397737443447, 0.05649511143565178, -0.051633384078741074, 0.04764746129512787, 0.021993421018123627, -0.040962133556604385, 0.009897926822304726, 0.011601416394114494, -0.04237711802124977, -0.02183687314391136, 0.017370138317346573, -0.0075553664937615395, 0.00769098149612546, -0.023092197254300117, -0.0163199994713068, -0.015707222744822502, -0.049025699496269226, 0.043645814061164856, 0.033650536090135574, 0.010241934098303318, 0.0009464766480959952, -0.02445005439221859, 0.009795128367841244, 0.06415648758411407, -0.0013142703101038933, 0.05245882645249367, 0.012412517331540585, -0.005046377424150705, 0.04452909156680107, 0.042864203453063965, 0.029171472415328026, 0.04009385406970978, -0.020998477935791016, -0.018680866807699203, 0.020358506590127945, -0.0017060633981600404, -0.021343812346458435, 0.058179423213005066, -0.014741595834493637, -0.013105381280183792, -0.0076988982036709785, 0.007367832586169243, 0.0014742007479071617, 0.07521960884332657, -0.02068478800356388, -0.025993233546614647, 0.006920210085809231, -0.06341884285211563, -0.021967167034745216, 0.01335952989757061, -0.08059022575616837, -0.0412093847990036, 0.045987073332071304, 0.0029439686331897974, 0.006764999125152826, -0.005375382490456104, -0.01696915738284588, -0.020844392478466034, -0.00887139793485403, 0.009475157596170902, -0.04104025289416313, 0.04281123727560043, -0.030999550595879555, 0.041585251688957214, -0.03832988440990448, -0.0004276659165043384, 0.043761711567640305, 0.025258291512727737, -0.03322721645236015, -0.04739439859986305, 0.00567392073571682, 0.03443430736660957, 0.013931208290159702, -0.007342356722801924, -0.004486080724745989, 0.012037677690386772, 0.012178903445601463, -0.00024115765700116754, 0.009581214748322964, 0.03851005434989929, 0.00987063068896532, 0.018952801823616028, 0.013634225353598595, -0.00427315104752779, -0.027834581211209297, 0.048282526433467865, 0.00260931090451777, 0.0015843737637624145, -0.0525493249297142, 0.05420752242207527, 0.015928737819194794, 0.011380401439964771, 0.029048414900898933, 0.008809125050902367, 0.06004964932799339, -0.03838570788502693, 0.012134295888245106, -0.0014059196691960096, 0.03327608481049538, 0.03215969726443291, 0.0009254112374037504, 0.016341302543878555, 0.007825854234397411, 0.04634769260883331, -0.024096965789794922, -0.005226704757660627, 0.04851052165031433, 0.013498855754733086, -0.058971796184778214, -0.0385093092918396, -0.02859274111688137, 0.03131098300218582, 0.0031854265835136175, -0.01089036837220192, 0.03512679040431976, -0.04025677964091301, -0.012544003315269947, -0.042062968015670776, -0.026401445269584656, 0.04045974463224411, 0.0036340549122542143, -0.014280162751674652, -0.010708940215408802, -0.024345267564058304, -0.008505306206643581, 0.06221341714262962, 0.031103814020752907, 0.017641469836235046, -0.005508193746209145, 0.01012402679771185, 0.0023875636979937553, 0.05522311106324196, 0.026150740683078766, 0.000596022407989949, -0.0294995978474617, 0.010784648358821869, 0.05138222873210907, -0.0025412123650312424, -0.026609109714627266, 0.017472246661782265, -0.012110655196011066, 0.04530273750424385, -0.02398061566054821, -0.007307189516723156, 0.014766012318432331, -0.05834488570690155, 0.0038628855254501104, -0.02985931560397148, 0.03533771261572838, -0.05381534621119499, -0.015360803343355656, 0.003266459098085761, -0.01406557485461235, -0.039350878447294235, 0.04737689718604088, 0.003890595631673932, 0.04847615957260132, 0.003950921818614006, 0.052048277109861374, -0.022824201732873917, 0.03214157745242119, 0.07187804579734802, -0.01444088201969862, -0.013157214038074017, 0.060157500207424164, 0.01156862173229456, -0.04175559803843498, -0.020824983716011047, -0.0668368712067604, -0.038551051169633865, -0.03835303336381912, -0.008698872290551662, -0.006328432820737362, 0.031968601047992706, -0.002902120118960738, -0.03529053181409836, -0.004887937568128109, 0.043082769960165024, -0.055123601108789444, -0.008064327761530876, -0.001049683429300785, 0.00549077894538641, -0.007252119481563568, -0.016019312664866447, -0.006215180270373821, -0.04342828318476677, 0.009855968877673149, -0.05520210787653923, 0.031218839809298515, -0.02320234291255474, -0.0521266907453537, -0.043320182710886, -0.03914763405919075, -0.0016013613203540444, -0.011079387739300728, -0.05133787915110588, -0.046986330300569534, 0.03896249830722809, 0.030121134594082832, 0.014785746112465858, -0.005287504754960537, -0.0339229479432106, 0.001908733625896275, 0.039971210062503815, 0.04247869551181793, -0.004860969260334969, 0.058880388736724854, 0.03891958296298981, -0.02625882998108864, 0.013784435577690601, -0.03602749854326248, 0.03289312124252319, -0.036860063672065735, -0.03769296035170555, -0.02023250237107277, 0.032998453825712204, -0.02469530701637268, -0.04717472195625305, 0.01955457590520382, 0.044005125761032104, 0.005509860813617706, -0.030683482065796852, -0.08215566724538803, -0.01363403256982565, -0.06376413255929947, 0.002451190259307623, -0.04150816425681114, 0.01585652120411396, -0.002211273182183504, -0.02043609321117401, 0.0032448391430079937, -0.04784665256738663, 0.1919306069612503, 0.034734807908535004, 0.058244314044713974, -0.0061041139997541904, -0.006849528290331364, 0.046362053602933884, 0.010837622918188572, -0.01142948493361473, -0.013957366347312927, -0.014826345257461071, 0.023992635309696198, -0.0044735511764883995, 0.020652921870350838, 0.01145427767187357, 0.02881360426545143, 0.0686480849981308, -0.039885494858026505, -0.013300521299242973, 0.0214370209723711, -0.0431072935461998, -0.013232996687293053, 0.029093019664287567, 0.006963978987187147, 0.01903572492301464, -0.03570984676480293, 0.03665610030293465, 0.05041467398405075, -0.02873004972934723, -0.011852165684103966, -0.031913936138153076, 0.004187697544693947, -0.006728340871632099, 0.0559372641146183, -0.01782252825796604, -0.037648916244506836, 0.04624465852975845, -0.004453306086361408, -0.022928116843104362, 0.024586694315075874, -0.0018133559497073293, -0.042375124990940094, 0.008104199543595314, 0.017939012497663498, -0.019413068890571594, 0.000353550654835999, 0.00953003205358982, -0.01608954183757305, -0.0009676399640738964, -0.023806385695934296, -0.04040493071079254, 0.05852966383099556, -0.02731715328991413, 0.036251313984394073, -0.014375440776348114, -0.0307785477489233, -0.013744681142270565, 0.0034187014680355787, -0.005959524307399988, -0.013841424137353897, -0.0011967469472438097, 0.03799309581518173, 0.0026495729107409716, -0.025171492248773575, 0.005672076717019081, -0.010218334384262562, -0.02882702834904194, 0.032147932797670364, 0.008627381175756454, -0.01786661706864834, -0.008583595044910908, -0.025615544989705086, 0.011904186569154263, 0.023195737972855568, -0.023464985191822052, 0.04453353211283684, 0.03716138377785683, -0.01944269798696041, 0.03905963525176048, 0.007810991257429123, -0.02922755479812622, 0.0010502391960471869, -0.036340344697237015, 0.0012519266456365585, -0.01860702969133854, 0.03355466574430466, 0.024182859808206558, -0.05155305191874504, -0.036031439900398254, -0.05585585907101631, 0.03391196206212044, 0.038958948105573654, 0.0337073840200901, -0.008847001008689404, -0.010389642789959908, 0.0067083402536809444 ]
Variety Plus Icon Read Next: 'The Boogeyman' Trailer Resurrects Stephen King's Short Story in New Horror Adaptation Nov 28, 2022 11:45am PT Neon Promotes Andrew Brown to President of Digital Distribution By Michaela Zee Michaela Zee 'Scream 6' Trailer: Hayden Panettiere Returns to Fight Ghostface in New York City 2 weeks ago 'Planet Sex' Trailer: Cara Delevingne Visits a Porn Library and Attends Masturbation Seminars in Hulu Docuseries 2 weeks ago 'The Mandalorian' Season 3 Trailer: Pedro Pascal and Grogu Reunite to Face New Threats on Mandalore and Coruscant 2 weeks ago Randee Wexler Andrew Brown has been promoted to president of Digital Distribution at Neon, the company announced Monday. Under Brown's leadership, the studio launched its home entertainment division and formed Decal, a home entertainment distribution company. "Andrew's knowledge of the players, the platforms and the history of cinema all converge to make him a one-of-a-kind executive," said Tom Quinn, Neon CEO and founder, in a statement. "He's been here from the beginning and we look forward to continuing to grow Neon together." Brown manages Neon's library, as well as oversees the annual Neon FYC DVD box set and the direct-to-consumer digital portal Neon Cinema. He has served as SVP of Digital Strategy, Marketing and Distribution for the company since 2017 and will continue to serve as co-president of Decal. Prior to Neon, Brown began at the forefront of the digital video business at Rainbow Media (now Altice) and INDEMAND. In 2006, he handled the expansion and development of Time Warner Cable's Video On Demand service. After Time Warner Cable's acquisition by Charter in 2016, he joined Neon as SVP of Digital Distribution and Strategy. In addition to his role at Neon, Brown became co-president of Decal in 2021, which serves as a home entertainment distributor for various studios, including Neon, Bleecker Street and XYZ. Neon's upcoming slate includes the release of Laura Poitras' documentary "All the Beauty and the Bloodshed" and Kore-eda's "Broker." Recent releases include Brett Morgan's David Bowie documentary "Moonage Daydream," Sara Dosa's documentary "Fire of Love" and Ruben ร–stlund's "Triangle of Sadness." Andrew Brown,
[ -0.004439051263034344, 0.0011151887010782957, -0.008676537312567234, 0.004941305611282587, 0.0013095559552311897, 0.001750958152115345, -0.012978973798453808, 0.024057259783148766, 0.019377678632736206, 0.016823740676045418, 0.02799694612622261, -0.01448399294167757, 0.014461247250437737, -0.016904812306165695, -0.0014156053075566888, -0.001654466730542481, -0.013367962092161179, -0.00484556145966053, 0.008598452433943748, -0.000419717252952978, 0.0118165984749794, 0.0010838386369869113, -0.060204215347766876, -0.02193538285791874, -0.022172484546899796, 0.045367900282144547, 0.0058234455063939095, -0.015246273018419743, 0.07231434434652328, 0.04750645160675049, -0.012343824841082096, -0.06416760385036469, 0.03275183215737343, -0.04135020449757576, -0.03127487748861313, 0.0040977708995342255, 0.03921595215797424, -0.02504820004105568, -0.03530829772353172, -0.0681394636631012, 0.007908443920314312, -0.03153963387012482, 0.06243015080690384, -0.052426256239414215, -0.052233196794986725, -0.007504086475819349, 0.01778714917600155, -0.006658017169684172, 0.015532739460468292, -0.018131772056221962, 0.0034715135116130114, -0.012132854200899601, 0.021982869133353233, 0.002569323405623436, -0.006941240280866623, -0.02242502197623253, -0.022514425218105316, 0.0044555324129760265, 0.016917815431952477, 0.023067662492394447, 0.02659943886101246, -0.016506453976035118, 0.003222651081159711, -0.04851978272199631, 0.023645872250199318, 0.02351134642958641, 0.011080093681812286, -0.00892436783760786, 0.03853940963745117, 0.002161609474569559, -0.007641668431460857, 0.017981790006160736, -0.03789551183581352, -0.0012821225682273507, -0.009615400806069374, -0.00547394622117281, -0.04865316301584244, -0.0005032819462940097, -0.012575438246130943, -0.02040049433708191, 0.00679839076474309, 0.042589884251356125, 0.0013437182642519474, 0.03192482516169548, -0.04105985909700394, -0.006145523861050606, -0.03134851157665253, 0.024079112336039543, -0.006845489144325256, 0.006490167696028948, 0.01326347328722477, 0.04861920699477196, -0.00873535219579935, -0.015987617895007133, 0.054493293166160583, 0.060173653066158295, -0.0356416217982769, 0.03391195461153984, -0.004413720685988665, -0.020316051319241524, 0.027117077261209488, 0.0161080751568079, -0.025949733331799507, 0.0457746684551239, -0.03286537528038025, -0.017270676791667938, 0.008084536530077457, 0.0013993114698678255, -0.010489502921700478, -0.048385437577962875, 0.01225737389177084, -0.046224649995565414, 0.015389909967780113, -0.019809478893876076, -0.019479990005493164, 0.054076939821243286, -0.003070423612371087, 0.06212141737341881, -0.03776763379573822, -0.003837017575278878, 0.022784555330872536, -0.006149298045784235, 0.04071127250790596, -0.013191885314881802, 0.033614031970500946, -0.02551216259598732, 0.004534205421805382, 0.05356604605913162, -0.029042040929198265, -0.02099776268005371, -0.0043925512582063675, -0.045240119099617004, -0.002794093918055296, 0.007514105644077063, 0.013516088016331196, 0.021558325737714767, 0.00796645786613226, 0.02432583086192608, 0.027076972648501396, -0.05058862641453743, 0.05017920583486557, 0.018193038180470467, 0.006973259150981903, 0.10649633407592773, 0.0046191830188035965, 0.030917439609766006, -0.018965838477015495, 0.0047300513833761215, -0.029673155397176743, 0.029052894562482834, -0.00704378355294466, 0.04005783796310425, -0.006153499241918325, 0.05337143689393997, -0.033846497535705566, 0.007522223982959986, 0.006140250712633133, 0.03592050075531006, 0.033765487372875214, 0.043495483696460724, -0.010851462371647358, 0.0017191669903695583, 0.017720241099596024, 0.048814427107572556, -0.029588749632239342, 0.03911598399281502, -0.04933597147464752, -0.052894044667482376, -0.01274209562689066, -0.030057258903980255, 0.028177116066217422, 0.03025972656905651, 0.002373435301706195, 0.006185086909681559, 0.015055814757943153, 0.03163886070251465, 0.054155133664608, -0.013392557390034199, 0.047774896025657654, 0.023906774818897247, -0.02386825531721115, -0.027540041133761406, 0.01036829873919487, 0.08155380934476852, -0.006470241583883762, 0.0012944045010954142, -0.005723393987864256, -0.03778233379125595, -0.0506984144449234, -0.019661255180835724, -0.022969521582126617, 0.01019100472331047, -0.04658461734652519, 0.034518975764513016, 0.017076745629310608, 0.009038347750902176, -0.0027531094383448362, -0.03783497214317322, 0.008655295707285404, -0.031426478177309036, -0.010356955230236053, 0.04350457340478897, -0.019685417413711548, 0.03270624950528145, -0.001593620516359806, -0.018979491665959358, 0.03832755237817764, 0.06540781259536743, -0.030407659709453583, 0.0010986534180119634, 0.012558488175272942, 0.02190055325627327, -0.010454553179442883, -0.005039392504841089, 0.0029814934823662043, 0.0007056370377540588, -0.02311691828072071, 0.0596177913248539, -0.014813179150223732, 0.0009520041639916599, 0.0018089910736307502, 0.014761976897716522, 0.03213360905647278, 0.05600394308567047, 0.004812338855117559, -0.005671909544616938, 0.02957628294825554, 0.03657224029302597, -0.005093186162412167, -0.032992132008075714, -0.007760758511722088, 0.06500153243541718, 0.019252579659223557, 0.045676201581954956, 0.015484270639717579, 0.02247161604464054, 0.04095271974802017, 0.019419865682721138, -0.004953545518219471, 0.012416447512805462, -0.012336467392742634, -0.01715143211185932, 0.04606817290186882, 0.021534597501158714, -0.01597469672560692, 0.04064371436834335, -0.01051976066082716, -0.044263750314712524, -0.04760175570845604, 0.0316496267914772, -0.0021500810980796814, 0.036980681121349335, 0.03909231722354889, 0.03702852129936218, -0.04813605174422264, -0.0009100015158765018, 0.03300997242331505, 0.06377878785133362, -0.02030957117676735, 0.012888084165751934, -0.028688522055745125, 0.010408596135675907, -0.00157443608622998, 0.02365018241107464, 0.04166876897215843, 0.019751092419028282, -0.03657504916191101, 0.018757430836558342, -0.028706803917884827, -0.039254333823919296, -0.04632340371608734, -0.042025502771139145, -0.025985533371567726, -0.028501387685537338, -0.052813924849033356, -0.021327368915081024, 0.035210832953453064, -0.034361690282821655, 0.01444305945187807, 0.0018232387956231833, -0.006203289609402418, -0.02592761442065239, -0.01944596879184246, 0.032451972365379333, 0.0018964206101372838, 0.03629467636346817, -0.016388555988669395, 0.02086408995091915, -0.009465386159718037, 0.05105418339371681, -0.023858772590756416, 0.007373560685664415, -0.01225744467228651, -0.006444122176617384, 0.03788812831044197, -0.02349705435335636, -0.023880520835518837, -0.03433283418416977, -0.03761773928999901, -0.04460781440138817, -0.003082500770688057, -0.002868510317057371, 0.01534967590123415, -0.005347464699298143, -0.012040738016366959, 0.03325390815734863, 0.03428993374109268, -0.03326090797781944, 0.05155235901474953, 0.037294045090675354, -0.04698430746793747, 0.03342277556657791, 0.05736161023378372, 0.003413150552660227, -0.04212636500597, 0.03513056039810181, 0.04807119816541672, 0.04028714448213577, -0.03456983342766762, -0.0042916410602629185, -0.036565590649843216, 0.0027367747388780117, 0.004991839174181223, -0.00787658803164959, -0.06103183701634407, 0.03780756890773773, 0.02141835168004036, -0.07016529887914658, 0.03934105858206749, -0.0631505623459816, -0.036158133298158646, -0.03207491710782051, -0.019840802997350693, 0.027238884940743446, 0.01288843248039484, 0.05385548993945122, -0.0041036042384803295, -0.027751505374908447, 0.0025199332740157843, 0.034695468842983246, 0.052748601883649826, -0.025323811918497086, 0.01074546854943037, 0.022717716172337532, -0.017804114148020744, 0.05143585801124573, 0.022319698706269264, -0.02899186685681343, -0.002846668241545558, -0.01382213830947876, -0.017147455364465714, 0.01490014884620905, 0.004026935901492834, -0.0075974068604409695, 0.04765714332461357, 0.05921706557273865, -0.024869125336408615, 0.002963996957987547, 0.003828250803053379, 0.014825823716819286, 0.02571702189743519, 0.01677151396870613, 0.016996176913380623, -0.06009038910269737, -0.029386300593614578, -0.05047019571065903, 0.010924853384494781, -0.0011333489092066884, 0.06035807728767395, -0.06548278033733368, 0.02857264317572117, -0.003974734805524349, -0.04074643552303314, 0.03657360002398491, -0.05043033882975578, 0.012622728943824768, 0.040109697729349136, -0.03430045023560524, 0.031751666218042374, -0.05872735381126404, 0.01661158725619316, -0.02687956765294075, 0.027272075414657593, 0.04051961749792099, 0.003425365313887596, 0.04669332504272461, -0.02501211315393448, -0.03299262002110481, 0.002097885822877288, -0.046464696526527405, 0.007365506142377853, -0.06511547416448593, -0.019010398536920547, -0.009377173148095608, -0.06552468985319138, -0.042196258902549744, 0.04684579372406006, 0.019048891961574554, 0.059078849852085114, -0.029731836169958115, 0.044784702360630035, -0.0017995083471760154, 0.025016169995069504, 0.004896752070635557, -0.017585821449756622, 0.029269522055983543, -0.030984871089458466, 0.030623802915215492, 0.004341116175055504, -0.02556072548031807, -0.019271578639745712, -0.0009919567964971066, -0.017672572284936905, 0.0410454161465168, 0.029721396043896675, -0.005727228708565235, -0.015020891092717648, -0.0029371646232903004, -0.022350674495100975, 0.027993328869342804, -0.015788676217198372, -0.0441504642367363, -0.0036804245319217443, 0.04928046092391014, 0.025288837030529976, -0.047888584434986115, 0.013243870809674263, -0.009634651243686676, 0.04725214093923569, 0.057519689202308655, -0.0314323753118515, -0.025740118697285652, -0.031492047011852264, -0.028378190472722054, -0.028524601832032204, 0.04515620321035385, 0.04871268570423126, -0.022167203947901726, -0.0014294263673946261, -0.01665182039141655, 0.024210460484027863, 0.017955517396330833, -0.014946214854717255, 0.0014289000537246466, 0.012993200682103634, 0.014946617186069489, 0.022844236344099045, 0.03343101963400841, 0.010670200921595097, -0.017551520839333534, 0.014896558597683907, -0.047243449836969376, 0.036304764449596405, 0.00953768566250801, -0.02063193917274475, -0.00621790811419487, 0.018182488158345222, 0.02542009763419628, 0.03886204957962036, -0.01328260824084282, 0.028828918933868408, -0.01498004887253046, 0.029447605833411217, -0.04532361775636673, -0.04714862257242203, 0.0491192452609539, 0.021097935736179352, -0.004178301896899939, -0.0032615482341498137, 0.03631213307380676, -0.026386260986328125, 0.0026822523213922977, 0.013226200826466084, -0.06678205728530884, 0.03184107691049576, -0.04196086525917053, -0.0044472371228039265, -0.03180710971355438, -0.04300824552774429, 0.01481558009982109, -0.0021194089204072952, 0.038314104080200195, 0.0036543773021548986, 0.00490329647436738, -0.0485374853014946, -0.04528002068400383, 0.00017906924767885357, -0.008436320349574089, -0.014066754840314388, -0.011960038915276527, -0.0075067258439958096, 0.005998867563903332, -0.040121011435985565, -0.004612542688846588, -0.01637374609708786, 0.007578692398965359, -0.04584117233753204, 0.00838370993733406, 0.01628366857767105, -0.009774553589522839, 0.018595870584249496, -0.03830863535404205, -0.03714503347873688, 0.03890988603234291, 0.009418011642992496, -0.013088990934193134, -0.06908400356769562, -0.002553807571530342, -0.01743130013346672, -0.006235960870981216, -0.04632013291120529, 0.02110418491065502, -0.01742650754749775, 0.023322144523262978, 0.030439581722021103, -0.012978257611393929, 0.006350088864564896, 0.0017380084609612823, -0.02706262469291687, 0.0696064904332161, 0.02860572747886181, -0.025714091956615448, -0.025321317836642265, 0.07881750911474228, -0.023645227774977684, 0.03745070472359657, 0.006017070729285479, -0.029641279950737953, -0.04235468804836273, -0.04799816757440567, -0.016452616080641747, -0.042725641280412674, 0.018080400303006172, -0.037968434393405914, -0.018885934725403786, -0.006885349750518799, 0.03264579549431801, -0.009589791297912598, -0.01598869264125824, -0.004613032564520836, -0.037425823509693146, 0.003332010470330715, -0.030118029564619064, -0.05285003408789635, -0.014088469557464123, -0.01417300570756197, 0.0023762418422847986, 0.06844591349363327, -0.019588645547628403, 0.00778230931609869, 0.0007616063230670989, 0.033275142312049866, 0.027100885286927223, -0.02877587080001831, -0.04507457837462425, -0.018944161012768745, 0.01632077246904373, -0.03435683622956276, 0.0047195544466376305, 0.013430305756628513, -0.04655082896351814, 0.026429038494825363, -0.03618885576725006, -0.03547860309481621, -0.008390757255256176, -0.01695329323410988, -0.012152174487709999, -0.025351881980895996, 0.04240943118929863, -0.030023356899619102, 0.0034007199574261904, -0.025895141065120697, 0.04343138262629509, 0.07077191025018692, 0.02217070944607258, -0.011374440975487232, -0.02939574047923088, -0.030684933066368103, -0.08167196065187454, 0.03217235207557678, -0.05096786841750145, -0.03406376764178276, -0.03968126326799393, -0.02230948768556118, 0.03361893072724342, -0.010384541004896164, 0.05410565808415413, 0.04662804305553436, 0.006518569774925709, 0.0019649735186249018, -0.01758858934044838, 0.013394621200859547, 0.057208817452192307, -0.003783015999943018, -0.013810495845973492, -0.021576307713985443, -0.050985559821128845, 0.0009106364450417459, -0.05266803130507469, -0.045446522533893585, -0.06157279014587402, 0.01841198280453682, 0.06569293886423111, -0.03074677661061287, 0.0407661497592926, -0.010583670809864998, -0.05946383997797966, -0.04430307820439339, 0.052137576043605804, -0.009281224571168423, -0.004823848605155945, 0.05017748102545738, 0.03165709599852562, -0.007338672410696745, 0.015894770622253418, 0.009030742570757866, -0.005622022785246372, -0.023160556331276894, 0.053347956389188766, 0.008972760289907455, -0.05429593473672867, 0.03772306442260742, 0.05341291055083275, -0.04774582386016846, -0.022722015157341957, -0.001773178344592452, -0.01048091147094965, 0.0043856422416865826, -0.025122184306383133, 0.008889595977962017, 0.0032041198574006557, -0.038439396768808365, 0.0016582633834332228, 0.03671324998140335, -0.004598378669470549, 0.04688552767038345, -0.008004681207239628, 0.02798568457365036, -0.03563259169459343, 0.013114264234900475, 0.03086252324283123, -0.021517129614949226, -0.034521449357271194, -0.02397480607032776, -0.01916932873427868, -0.014066176488995552, -0.0010124166728928685, 0.04650430008769035, -0.009593455120921135, 0.027602072805166245, 0.031787462532520294, -0.018188368529081345, 0.06726032495498657, 0.021681837737560272, -0.023571809753775597, 0.01510800700634718, -0.0400724820792675, -0.04087120294570923, -0.03201329708099365, 0.03210673853754997, 0.000167095146025531, 0.02748430147767067, -0.07426737248897552, -0.005096132401376963, 0.025248823687434196, -0.016757430508732796, 0.005025037564337254, -0.05567830428481102, -0.03871593996882439, -0.05129675567150116, -0.03851902857422829, -0.004763196222484112, -0.03415114805102348, 0.0027795429341495037, 0.023768272250890732, 0.01158873364329338, -0.04187539592385292, -0.008270373567938805, -0.005075441673398018, -0.014127428643405437, 0.02717665210366249, -0.0375027060508728, 0.019977644085884094, -0.02896587736904621, -0.04960014671087265, -0.03604437783360481, -0.0021736486814916134, -0.023472147062420845, 0.003669688943773508, -0.020261181518435478, -0.0013280136045068502, 0.017548805102705956, 0.02069423720240593, 0.0012911389349028468, 0.012574438005685806, -0.01993805542588234, -0.05045955628156662, -0.03381410241127014, 0.04643860086798668, 0.00390062783844769, 0.028834717348217964, 0.07251525670289993, -0.031329575926065445, 0.04626312851905823, 0.003985182847827673, -0.015662111341953278, -0.015152232721447945, 0.0170888788998127, -0.018596304580569267, 0.0194240789860487, -0.027759771794080734, -0.016256501898169518, -0.01193131785839796, -0.02519749291241169, 0.03553440049290657, -0.0036129930522292852, 0.023998841643333435, 0.00977393426001072, -0.007386942394077778, -0.025471651926636696, 0.047926656901836395, -0.017182113602757454, 0.031092965975403786, 0.0013678433606401086, 0.0031120318453758955, 0.02618440054357052, 0.0025760948192328215, 0.020813779905438423, 0.033471714705228806, 0.02514941617846489, -0.03556418418884277, -0.01262163370847702, 0.022304082289338112, -0.00852829311043024, 0.009131591767072678, -0.016709433868527412, -0.04676688089966774, -0.03850334882736206, -0.02435947209596634, -0.01862165331840515, 0.028025254607200623, -0.0004534957406576723, -0.004065534099936485, 0.029206914827227592, -0.032848868519067764, -0.05564892292022705, -0.008175650611519814, -0.031073588877916336, -0.03214779868721962, 0.029871568083763123, -0.009105050936341286, -0.00898380484431982, -0.03170856088399887, -0.021598413586616516, -0.001517398632131517, -0.014381331391632557, 0.012303238734602928, -0.037260718643665314, 0.0360877588391304, -0.0009491626406088471, 0.054125867784023285, -0.049841273576021194, 0.005661223083734512, 0.006490697152912617, 0.04982787370681763, -0.043225280940532684, -0.022220458835363388, 0.012281311675906181, 0.03082071617245674, -0.005723900627344847, -0.03453469276428223, -0.01763281412422657, 0.011511181481182575, 0.016453204676508904, 0.002951899077743292, -0.0009048686479218304, 0.0359383188188076, 0.013289237394928932, 0.04961096867918968, -0.0013219468528404832, 0.030993442982435226, -0.029892614111304283, 0.04364394769072533, 0.02043474093079567, -0.0488099679350853, -0.017971912398934364, 0.04023300111293793, 0.059566810727119446, -0.0166921503841877, 0.030142292380332947, 0.04709369316697121, 0.048544518649578094, -0.020924575626850128, 0.006171979941427708, -0.02043604850769043, 0.05307002738118172, 0.014494300819933414, 0.027400707826018333, 0.0041808681562542915, 0.0030570656526833773, 0.03940410912036896, 0.0035026632249355316, -0.004392626695334911, 0.028138091787695885, 0.02346326969563961, -0.008918136358261108, -0.011383602395653725, -0.0077596125192940235, 0.026182064786553383, -0.0140923410654068, 0.00027274704189039767, -0.014638743363320827, -0.026354076340794563, 0.00015714236360508949, 0.01428703311830759, -0.006251382175832987, 0.044628944247961044, -0.02360694482922554, -0.01466636173427105, -0.03207303211092949, -0.008043652400374413, -0.001016075606457889, 0.04434847831726074, 0.019530441612005234, 0.014040331356227398, 0.006806664634495974, 0.02455628290772438, -0.02738930471241474, 0.07684152573347092, 0.02673359401524067, 0.019616227596998215, -0.038555655628442764, 0.010094759054481983, 0.018447939306497574, -0.018727941438555717, -0.0012965380446985364, 0.04411589726805687, -0.05750824511051178, 0.017661558464169502, -0.012938199564814568, -0.046734996140003204, 0.04949166253209114, -0.05694933980703354, -0.015917427837848663, -0.0590977743268013, 0.06634887307882309, -0.041007306426763535, -0.013458702713251114, 0.03916222229599953, -0.01786455698311329, -0.03007291443645954, 0.02515811286866665, -0.03482037037611008, 0.021972589194774628, -0.00823971163481474, 0.013026833534240723, -0.008542601019144058, 0.03688919544219971, 0.053213562816381454, -0.025853553786873817, -0.018261417746543884, 0.03443003073334694, -0.014415908604860306, -0.03070923499763012, -0.01798320561647415, -0.055238399654626846, -0.0003003063320647925, -0.004817304667085409, 0.012360983528196812, 0.015459702350199223, 0.007487814873456955, -0.012292210012674332, -0.03278056159615517, 0.0015232968144118786, 0.039898406714200974, -0.03367568925023079, 0.002338958438485861, 0.03130556643009186, 0.03173445537686348, -0.0028780116699635983, 0.01818428561091423, -0.05573594942688942, -0.029480963945388794, -0.02250482887029648, -0.04165346920490265, 0.020011935383081436, -0.02687988057732582, -0.007830226793885231, -0.016944756731390953, -0.03845486417412758, -0.02763163484632969, -0.027085289359092712, -0.046685390174388885, -0.03352733701467514, 0.03354674205183983, 0.03564346954226494, -0.006502227857708931, 0.026830043643712997, -0.0033698154147714376, 0.002459913492202759, 0.0338461734354496, 0.09136500954627991, -0.016725027933716774, 0.03848645091056824, 0.04503752663731575, 0.017427776008844376, 0.03613375127315521, -0.023687586188316345, 0.011799708008766174, -0.03681528568267822, -0.03654178977012634, -0.025673363357782364, 0.02767220512032509, -0.008827305398881435, -0.06264276802539825, 0.0190812349319458, 0.030658360570669174, 0.030103012919425964, -0.02569272555410862, -0.07855566591024399, -0.01912865601480007, -0.053205084055662155, -0.00987379439175129, -0.03285558149218559, 0.025057122111320496, -0.005478270817548037, 0.0018440313870087266, -0.02282201685011387, -0.04549760743975639, 0.169917032122612, 0.05412282794713974, 0.05947520583868027, 0.022782301530241966, 0.01219760999083519, 0.026232093572616577, 0.012542512267827988, -0.01415884681046009, -0.02199794538319111, -0.03503664210438728, 0.042657166719436646, 0.002469748957082629, 0.03387582674622536, 0.00712251290678978, -0.006824440788477659, 0.06637784838676453, -0.05655510351061821, -0.022754577919840813, 0.02415168285369873, -0.04457804188132286, -0.06382647901773453, 0.001247310428880155, 0.00040507802623324096, 0.010230343788862228, -0.06640084087848663, 0.024988465011119843, 0.043637774884700775, -0.03107454627752304, 0.010903299786150455, -0.026604749262332916, -0.013820021413266659, -0.016004348173737526, 0.03414781764149666, -0.03412120044231415, -0.04764186963438988, 0.034690119326114655, 0.004040430299937725, -0.0025820641312748194, 0.015093115158379078, 0.009768839925527573, -0.011384628713130951, 0.010274626314640045, 0.029694419354200363, -0.037986870855093, 0.022167883813381195, 0.025789344683289528, -0.0165761336684227, -0.023102475330233574, 0.004313584417104721, -0.03407350182533264, 0.08392778784036636, -0.0553794726729393, 0.027446573600172997, -0.005878092255443335, -0.03982152044773102, 0.03175247460603714, 0.01761462911963463, -0.02018328569829464, 0.021940216422080994, 0.017424019053578377, 0.05145832896232605, 0.009200547821819782, -0.02774021402001381, -0.010362867265939713, -0.03574436530470848, 0.013744226656854153, 0.0028785238973796368, 0.034167904406785965, -0.0034020866733044386, -0.018202688544988632, -0.0318354070186615, 0.01705288700759411, 0.020473692566156387, -0.021315107122063637, 0.013790654018521309, 0.01776236668229103, -0.014927969314157963, 0.023618267849087715, 0.01163624506443739, -0.022681180387735367, -0.006369119975715876, -0.053866252303123474, -0.009095951914787292, -0.004121953621506691, 0.03498568385839462, 0.015489279292523861, -0.026224937289953232, -0.032722536474466324, -0.007960975170135498, 0.06017257273197174, 0.030619364231824875, -0.001998116262257099, -0.00005876638897461817, -0.009357132017612457, -0.023700419813394547 ]
Fashionable ladies at the races. Photograph by Horace Nicholls, reproduced with kind permission of the Horace Nicholls Estate. 17 February, 2017 marked the 150th anniversary of the birth of an important and yet comparatively little-known British photographer. Perhaps more than any other photographer, Horace Nicholls has shaped our perception of Britain during the first decades of the twentieth century. Even though his name is probably unfamiliar, you will almost certainly recognise his iconic images of fashionable upper class ladies at Ascot or, in stark contrast, women munitions workers during the First World War. During the early twentieth century, Horace Nicholls was one of Britain's best known photographers. As one of the first photojournalists, Nicholls's work shaped that of succeeding generations. Nicholls photographed the 2nd Anglo-Boer War in South Africa. He clarified legal copyright in photographs in a landmark court case in 1901. He photographed Edwardian social and sporting events and documented the impact of total war on the British people. As Britain's first official photographer on the Home Front, he had unique access, particularly to women war workers. After the war, at the invitation of the Women's War Work Sub Committee, Nicholls became the first head of the new Imperial War Museum's photographic studio where he worked to secure and develop the museum's photographic collections. These five words, which have struck fear into the hearts of many, seem oddly out of place in the Wellcome Collection's impressive Reading Room. It's not just the location, rather that all participants including five from the IWM's Second World War Galleries team, are wearing false moustaches. How better to get into the mind-set of a would-be British Army officer in 1942? To celebrate the opening of the Tavistock Institute Archive papers on the War Office Selection Boards or WOSBs (pronounced wos-bees) at the Wellcome Library, a series of innovative workshops have been created to allow visitors to undergo the same military psychology tests that were used over 70 years ago. Although never kept a secret during the war, it has only been through the doctoral research of Alice White, and the meticulous cataloguing of the Tavistock Institute Archives by Elena Carter, that a wealth of information about the creation and development of the WOSBs testing programme has been uncovered. Co-created with Matt Gieve of the Tavistock Institute, these workshops will no doubt run for more than the initial four sessions planned. It was with great delight and pleasure that I received copies of my book, Dirty Wars: A Century of Counterinsurgency, which was published by The History Press on 6 October and will be published in North America in February 2017. This is the first book written for IWM by a member of staff to fully explore the origins and continuing importance and relevance of counterinsurgency. 'Who is the enemy?' This is the question most asked in modern warfare; gone are the set-piece conventional battles of the past. Once seen as secondary to more traditional conflicts, irregular warfare (as modified and refashioned since the 1990s) now presents a major challenge to the state and the bureaucratic institutions which have ruled the twentieth century, and to the politicians and civil servants who formulate policy. Over the weekend of 18-20 March an international conference took place in Leeds, focusing on resistance to the First World War. The conference, which I helped to organise, brought together academics, community groups, poets and storytellers from across the globe, including delegates who had travelled from Australia and the USA. The conference was envisaged following the suggestion that the prominent narratives during the First World War Centenary were limited to stories of those who had actively participated in the war effort. Stories of resistance to the war were missing from dominant narratives of remembrance and the conference sought to question what war resistance was, how acts of resistance were undertaken, and the significance of war resistance today. The presence of both academic and community focused research on resistance worked particularly well in addressing the many different facets of resistance; including the theoretical underpinnings of pacifism, international and transnational movements for peace, individual acts of conscious and unconscious resistance as well as national and local networks of resistance. On the evening of November 20 1983, 100 million Americans settled down to watch Nicholas Meyer's made-for-TV film The Day After. The film's focus was a familiarly normal community in rural Eastern Kansas in the lead up to, and aftermath of, nuclear war. It is shocking and arrestingly bleak viewing; moreover it was, and remained for years afterwards, the most highly rated TV film in US broadcast history. Its importance however, lies less in its status as a landmark media event than in what it demonstrates about the cultural imagination in the 1980s. The deterioration in relations between NATO and the Warsaw Pact raised for a new generation the meaningful prospect of nuclear apocalypse. The Day After is only one example of a notable manifestation of a contemporaneous burgeoning โ€“ and now largely forgotten โ€“ paranoia in the popular culture of the time. It's my conviction โ€“ and the focus for my PhD research โ€“ that such fictional responses don't just reflect the paranoia that was a product of the period, but that that they ultimately made a necessary and significant contribution to the eventual outcome. 'As soon as the Iron Curtain came down': when did the Cold War begin? East German construction workers, supervised by border guards, building the Berlin Wall, 1961. ยฉ IWM HU 73012. The official history of the Cold War holds that the military and political divide between Eastern and Western blocs was cemented in the immediate aftermath of the Second World War as allied relationships cooled. C Eliot Hodgkin, 'The Haberdashers' Hall, 8th May 1945', tempera on panel, ยฉ IWM, Art.IWM ART LD 5311. June is the month when rosebay willow herb comes into flower, growing from derelict buildings, on wasteland and railway embankments across the UK. During the Second World War and in the following years, its spires of magenta flowers were common to see amidst the ruins and cleared bomb sites, hence the name it was given at the time โ€“ fireweed. Yet to flower in this painting of May 1945, the fireweed is depicted at the very forefront of the remains of Haberdashers' Hall, Staining Lane, which was destroyed during one of the worst night raids of the Blitz on the 28/29 December 1940.
[ 0.006218554452061653, -0.02263486385345459, 0.016957949846982956, -0.004048480652272701, -0.0268170777708292, -0.024020278826355934, -0.00030378365772776306, 0.016939042136073112, 0.04713331535458565, -0.012494239024817944, -0.0007569966837763786, -0.01115122064948082, 0.02448454685509205, -0.03181911259889603, 0.003640115726739168, 0.020418383181095123, -0.007684339303523302, -0.02707100287079811, -0.01711144484579563, -0.01628783531486988, 0.00024589523673057556, -0.008357305079698563, -0.06965485215187073, -0.048890143632888794, 0.003953295294195414, 0.05911058187484741, 0.015529843978583813, -0.0012494283728301525, 0.05101599916815758, 0.04515156149864197, -0.020810814574360847, -0.026303039863705635, 0.031126195564866066, -0.044237080961465836, -0.015820849686861038, -0.02666819654405117, 0.048435501754283905, -0.0527721531689167, -0.01891089603304863, -0.03793035447597504, 0.023598214611411095, -0.021818259730935097, -0.002716155955567956, -0.035654082894325256, -0.042064592242240906, -0.01922975480556488, 0.021858157590031624, -0.01594049111008644, 0.020550251007080078, -0.03511364012956619, -0.0005332092405296862, -0.023637307807803154, 0.01615864783525467, 0.008722019381821156, -0.0019005232024937868, 0.01323799230158329, -0.005199308507144451, -0.006165404338389635, 0.00962279736995697, 0.021209197118878365, 0.010629608295857906, 0.00430551590397954, 0.027172617614269257, -0.054389338940382004, 0.008503497578203678, 0.005979340989142656, 0.004681223072111607, -0.02121804654598236, 0.013753462582826614, -0.04000910744071007, -0.023321285843849182, -0.05212816223502159, -0.028536304831504822, -0.021983321756124496, -0.009425091557204723, -0.03481298312544823, -0.02041121944785118, 0.0019807848148047924, -0.0334467813372612, 0.008990750648081303, 0.02915406972169876, 0.011540625244379044, -0.011241871863603592, 0.018862491473555565, -0.060260847210884094, -0.0038909560535103083, -0.005453118123114109, 0.02459793910384178, 0.03193795308470726, 0.01952696032822132, 0.03847060725092888, 0.057301539927721024, 0.0028961466159671545, -0.020445512607693672, 0.027139119803905487, 0.022163325920701027, -0.022045500576496124, 0.0028393324464559555, 0.014033988118171692, 0.020768482238054276, 0.01740415394306183, 0.016690140590071678, 0.019428329542279243, 0.0673145204782486, -0.04572810232639313, 0.0001674310042290017, -0.02306527830660343, -0.015268377959728241, -0.0023059200029820204, -0.02957552671432495, 0.02401958964765072, -0.03573169559240341, 0.010693516582250595, 0.006320062559098005, 0.0053509934805333614, 0.04555361345410347, 0.006579190492630005, 0.011382807046175003, -0.04283285140991211, 0.020134977996349335, 0.008905242197215557, 0.03183004632592201, 0.037289395928382874, -0.0037173654418438673, 0.0022906449157744646, -0.04470935836434364, -0.02717982418835163, 0.05599822476506233, -0.01008124090731144, -0.031669531017541885, -0.013289487920701504, -0.07217919081449509, -0.014375772327184677, 0.005707385018467903, -0.015687881037592888, 0.004284904338419437, 0.01754828542470932, 0.017838485538959503, -0.005771496798843145, -0.07184287905693054, 0.04995108023285866, 0.01439431682229042, -0.017176462337374687, 0.09210899472236633, -0.01710897497832775, 0.028769109398126602, -0.0013599508674815297, 0.002319989027455449, -0.059595394879579544, 0.02370535582304001, -0.016525018960237503, 0.01205513160675764, -0.0072385226376354694, 0.01813206449151039, -0.004079639911651611, -0.008880021050572395, -0.006745969410985708, 0.023330187425017357, 0.017917148768901825, 0.046543676406145096, -0.045550037175416946, 0.024906257167458534, 0.0007240200648084283, 0.03327285498380661, 0.000013926704923505895, 0.04552330821752548, -0.02916761115193367, -0.010130008682608604, -0.012038196437060833, -0.027295300737023354, -0.005708079319447279, 0.01660190522670746, 0.011509797535836697, 0.03842715546488762, 0.03589572012424469, 0.07578586041927338, 0.048738595098257065, -0.026089129969477654, 0.039579786360263824, 0.02969811111688614, -0.03371037542819977, -0.02635921910405159, -0.00009531810064800084, 0.046623650938272476, -0.0007734998944215477, -0.018812239170074463, 0.00585739454254508, -0.018168188631534576, -0.010366038419306278, -0.026630932465195656, -0.0032856690231710672, 0.020572058856487274, -0.028214389458298683, 0.045043665915727615, 0.01021467987447977, 0.012322199530899525, -0.02830611541867256, -0.006304122973233461, 0.008630865253508091, -0.03752198442816734, -0.0012392851058393717, 0.05948098748922348, -0.049149394035339355, 0.016638537868857384, -0.01565631292760372, -0.021432621404528618, 0.04739885404706001, 0.06599295139312744, -0.051194626837968826, -0.003830721601843834, 0.019781870767474174, 0.012859828770160675, -0.013583493418991566, 0.004714848008006811, 0.025600846856832504, -0.014204292558133602, -0.03175470978021622, 0.043963655829429626, -0.027705058455467224, -0.001308975974097848, 0.022393114864826202, 0.004192912019789219, 0.04620618000626564, 0.05335090681910515, 0.0047689201310276985, 0.014350426383316517, -0.011014338582754135, 0.0658254623413086, -0.02979862131178379, 0.01661815494298935, -0.03182413801550865, 0.08254329860210419, 0.023525498807430267, 0.057801589369773865, 0.0467454232275486, 0.02744879201054573, 0.01959044672548771, 0.044507935643196106, -0.025850409641861916, 0.03444136306643486, -0.016320714727044106, 0.0352904312312603, 0.04847616329789162, 0.046802323311567307, -0.012800784781575203, 0.00776345981284976, -0.04037610441446304, 0.0034083847422152758, -0.0006449124775826931, 0.025822877883911133, -0.00181551871355623, 0.061669301241636276, -0.0054901656694710255, 0.035935498774051666, -0.03845473378896713, -0.015729911625385284, 0.049266256392002106, 0.03864278271794319, -0.012781701982021332, -0.01652066968381405, 0.007384119089692831, 0.036856234073638916, -0.01302939560264349, 0.012507096864283085, 0.04659217968583107, 0.012376128695905209, 0.025862038135528564, 0.02882312797009945, 0.01723053865134716, -0.0485670380294323, -0.031141744926571846, -0.03891293704509735, -0.04964641109108925, -0.03634865954518318, -0.0188885610550642, 0.00465124798938632, 0.0384407639503479, -0.05415251478552818, 0.03109046444296837, -0.003789752023294568, -0.0179433710873127, -0.03645661100745201, -0.024364298209547997, 0.02398775704205036, 0.02507936768233776, -0.015219656750559807, -0.05574106425046921, 0.03369614854454994, -0.00569066172465682, 0.042554132640361786, -0.031638871878385544, -0.014479896984994411, -0.02601929008960724, 0.013027450069785118, 0.025113223120570183, -0.005187343340367079, -0.026814749464392662, 0.006374882534146309, -0.04760756343603134, -0.051096390932798386, 0.000027171809051651508, -0.006876032333821058, -0.007578636519610882, -0.023183559998869896, -0.028651246801018715, 0.033307772129774094, 0.010421072132885456, -0.04041677713394165, 0.032064978033304214, 0.04860229417681694, -0.043263647705316544, 0.06540712714195251, 0.024702271446585655, -0.024866150692105293, -0.04449394717812538, 0.07272613048553467, 0.06427173316478729, -0.015189418569207191, -0.015191108919680119, -0.02312302775681019, -0.04051101952791214, 0.011628949083387852, 0.0042810882441699505, -0.019607342779636383, -0.030150339007377625, 0.07465051859617233, 0.039313189685344696, -0.07691450417041779, 0.0016216268995776772, -0.06045146659016609, -0.019049212336540222, -0.04964737594127655, -0.04791758209466934, 0.01618637889623642, 0.005760397762060165, 0.011352981440722942, 0.0005203657783567905, -0.017175991088151932, 0.02451101318001747, -0.01222643256187439, 0.04169324040412903, -0.026616377755999565, 0.01656973920762539, 0.026276765391230583, -0.006699115037918091, 0.025727294385433197, 0.007857758551836014, -0.03637126833200455, -0.0037737295497208834, -0.0015824241563677788, 0.015556198544800282, 0.0420481376349926, 0.0321040004491806, 0.01588653400540352, -0.0009981748880818486, 0.04744338244199753, -0.047641098499298096, 0.016279026865959167, 0.01793946884572506, 0.0077979182824492455, 0.03608746454119682, 0.012940464541316032, 0.017181552946567535, 0.013561740517616272, -0.048159483820199966, -0.04439352825284004, -0.017628921195864677, -0.006290951278060675, 0.08835102617740631, -0.06136827915906906, 0.051380887627601624, -0.03602093830704689, -0.017167439684271812, 0.035499099642038345, -0.034835200756788254, 0.027454933151602745, 0.07668060809373856, -0.015712633728981018, 0.07849635928869247, -0.027514804154634476, 0.012250769883394241, -0.011565368622541428, -0.0197947695851326, 0.04493550956249237, -0.03753897175192833, 0.02966431714594364, -0.03319956362247467, -0.022070905193686485, 0.00030837778467684984, -0.0054442863911390305, -0.02942601591348648, -0.013292573392391205, -0.019162306562066078, 0.014163126237690449, -0.043322302401065826, -0.045461464673280716, 0.04102390259504318, 0.03799192234873772, 0.03741014003753662, 0.0126207135617733, 0.033935222774744034, 0.00387707375921309, -0.00773184048011899, 0.04908277466893196, -0.016506871208548546, 0.014357120729982853, -0.02878534607589245, 0.01674698479473591, -0.005061506759375334, -0.03754127025604248, -0.0037522639613598585, -0.009481247514486313, -0.02528262324631214, 0.03716864809393883, 0.03218583017587662, -0.015663985162973404, -0.05594876408576965, 0.0005481194821186364, 0.0192148145288229, 0.040006428956985474, -0.030311107635498047, -0.010700265876948833, 0.00859413668513298, 0.05059469863772392, -0.0063180942088365555, -0.027385829016566277, -0.010308279655873775, -0.03758711367845535, 0.05009004473686218, 0.00905809085816145, -0.000011200150765944272, -0.06808953732252121, -0.019684365019202232, -0.018653733655810356, -0.07350095361471176, -0.017507288604974747, 0.043583281338214874, 0.04206907004117966, 0.017649056389927864, -0.04630105569958687, 0.03740173950791359, 0.031572841107845306, -0.02948164753615856, -0.01597975566983223, -0.009103313088417053, 0.037618041038513184, 0.008786534890532494, 0.04375467821955681, 0.012407725676894188, -0.009250874631106853, 0.02780976891517639, -0.0733535960316658, 0.02318269945681095, 0.002096954034641385, -0.045124806463718414, -0.005250190384685993, 0.02028428390622139, 0.013400658965110779, 0.014040842652320862, 0.026975279673933983, -0.008636850863695145, -0.006245841272175312, 0.04536709561944008, -0.05757114291191101, -0.030443081632256508, 0.08655453473329544, -0.0006462914752773941, -0.03713378682732582, 0.022144732996821404, 0.02736634761095047, -0.0005609386134892702, -0.005169566720724106, 0.024339964613318443, -0.05960700288414955, 0.02621355652809143, -0.04383637756109238, 0.011248281225562096, -0.026886845007538795, -0.02892983891069889, 0.022636376321315765, 0.0006856924155727029, 0.025786936283111572, -0.030627716332674026, 0.007838518358767033, -0.05558403953909874, -0.042310044169425964, -0.037399452179670334, 0.006805286277085543, 0.004075312986969948, 0.010192958638072014, 0.01107187382876873, -0.01160519104450941, -0.03136569634079933, -0.01153456512838602, 0.012648679316043854, 0.004696214571595192, -0.029612183570861816, 0.0005983838927932084, -0.0013483213260769844, -0.0008879635715857148, -0.01820041425526142, -0.00427657924592495, -0.02148604206740856, -0.013834675773978233, -0.01640392281115055, 0.006363194901496172, -0.04108677804470062, -0.028593821451067924, -0.03401464968919754, -0.015439733862876892, -0.03071080893278122, -0.025266140699386597, -0.012303650379180908, 0.014356573112308979, 0.01803969219326973, 0.013885765336453915, 0.007887495681643486, 0.016685398295521736, -0.024458784610033035, 0.06722231209278107, 0.023971907794475555, -0.04771560803055763, -0.03084876574575901, 0.05557858198881149, 0.013226722367107868, 0.043329980224370956, 0.0035013933666050434, -0.016778115183115005, 0.006834773346781731, -0.06918356567621231, -0.015787530690431595, -0.032604675740003586, -0.01844741776585579, -0.04105735197663307, -0.02419130504131317, -0.01741463504731655, 0.03979623317718506, 0.013713761232793331, 0.0001301604206673801, -0.008679219521582127, -0.05391864478588104, -0.01148794125765562, 0.00463846605271101, 0.0025073792785406113, -0.03468610346317291, -0.015730179846286774, -0.026803020387887955, 0.056179821491241455, 0.0022833729162812233, 0.00927247665822506, 0.012278462760150433, 0.021961759775877, 0.010959393344819546, -0.030445806682109833, -0.04563630372285843, -0.02130834572017193, -0.0030832455959171057, -0.0023354669101536274, -0.0018654775340110064, 0.025527043268084526, -0.026632990688085556, 0.050100479274988174, -0.03486083075404167, -0.012245126999914646, -0.03184323385357857, -0.029686342924833298, 0.010275444015860558, -0.015469840727746487, 0.05554596707224846, -0.027451369911432266, 0.03767751157283783, -0.006520112976431847, 0.027430951595306396, 0.030740123242139816, -0.006685299798846245, -0.04363015666604042, -0.0061509027145802975, -0.030957907438278198, -0.05632724240422249, 0.019872065633535385, -0.01961490511894226, -0.022332049906253815, -0.021690338850021362, 0.003171578049659729, 0.06395818293094635, -0.01554565504193306, 0.012013548985123634, 0.02400234155356884, -0.04214917868375778, -0.015826672315597534, -0.019979434087872505, -0.000449622719315812, 0.011802819557487965, 0.009481783024966717, 0.006889304146170616, -0.024368057027459145, -0.03936346247792244, 0.048572838306427, -0.047366656363010406, -0.015063419938087463, -0.039127934724092484, -0.020874345675110817, 0.06253755837678909, -0.011496267281472683, 0.020095065236091614, 0.013337904587388039, -0.04512058198451996, -0.023744413629174232, 0.033871110528707504, 0.012690495699644089, 0.0017222703900188208, 0.05062485486268997, 0.002660854486748576, 0.013441912829875946, -0.0030960377771407366, 0.009788013994693756, -0.010236293077468872, -0.0625462457537651, 0.08950050920248032, -0.015012321062386036, -0.04407767206430435, 0.02376101352274418, 0.03656082600355148, -0.05471481382846832, -0.034124068915843964, 0.014980348758399487, -0.020602278411388397, 0.03678412362933159, -0.040754884481430054, 0.020977666601538658, -0.02734195627272129, 0.0031198542565107346, 0.03026166744530201, 0.053133390843868256, -0.011706488206982613, 0.02617354691028595, -0.0005738609470427036, 0.03173643350601196, -0.055054765194654465, 0.02615993097424507, 0.02527387998998165, -0.01819487102329731, -0.039318520575761795, -0.026419159024953842, -0.035755183547735214, -0.0042009493336081505, -0.013031973503530025, 0.02419673465192318, 0.003128883196040988, 0.005712441634386778, 0.03333735838532448, -0.005206409841775894, 0.038224492222070694, -0.01238173060119152, -0.023223090916872025, 0.012588981539011002, -0.02196953073143959, -0.05593433603644371, -0.001790245296433568, 0.031775686889886856, 0.008777357637882233, 0.026729758828878403, -0.07034678012132645, -0.006962912622839212, 0.032198067754507065, 0.016053782775998116, -0.009538646787405014, -0.03335440158843994, -0.05707857385277748, -0.05724932253360748, -0.024756720289587975, -0.01919207163155079, 0.009634955786168575, -0.005912885535508394, 0.004653231240808964, 0.006106602493673563, -0.026237381622195244, 0.006299709435552359, -0.0003463092725723982, -0.041173648089170456, 0.007491232827305794, -0.021958917379379272, 0.021575435996055603, -0.009666400961577892, -0.030732065439224243, -0.01866881176829338, 0.007433727383613586, -0.009856270626187325, -0.013815200887620449, -0.033064499497413635, 0.016016820445656776, 0.001068557845428586, 0.004609967116266489, 0.027830129489302635, 0.0175608079880476, -0.023437025025486946, -0.043100710958242416, -0.015124739147722721, 0.04264237731695175, -0.013397468253970146, 0.02157234586775303, 0.016291458159685135, -0.016668014228343964, 0.04316660016775131, 0.017687058076262474, -0.039419107139110565, -0.01600007899105549, 0.0023667749483138323, 0.019858041778206825, 0.0027151526883244514, -0.022890595719218254, 0.0014116876991465688, 0.010288451798260212, -0.04901652783155441, 0.04269208014011383, -0.04044925794005394, 0.007893410511314869, 0.01029663160443306, 0.010653087869286537, -0.015538513660430908, 0.03712058812379837, 0.03172465041279793, 0.040733080357313156, 0.008291389793157578, 0.017724737524986267, 0.02986997738480568, -0.01042512059211731, 0.005666319280862808, 0.03355898708105087, -0.0031320590060204268, -0.012521462514996529, 0.01638576202094555, 0.02348649688065052, -0.020735571160912514, 0.03602991998195648, -0.018054580315947533, -0.041493579745292664, -0.02296055294573307, -0.02172025665640831, 0.0004559428780339658, 0.020342813804745674, -0.009408378042280674, 0.0006882941233925521, 0.04428423196077347, -0.04773819446563721, -0.033048272132873535, 0.01607382297515869, -0.0828961506485939, -0.0329740084707737, 0.04658479243516922, -0.034959662705659866, -0.01575460471212864, 0.0037778117693960667, -0.06696117669343948, 0.014247724786400795, -0.013719204813241959, -0.020349163562059402, -0.00882420502603054, 0.027977140620350838, -0.015191649086773396, 0.02328900806605816, -0.007204197812825441, 0.014060656540095806, 0.0014909157762303948, 0.02328164130449295, -0.01195571105927229, -0.06252488493919373, 0.015432300046086311, 0.033230554312467575, 0.013593793846666813, -0.019776862114667892, -0.03087078593671322, 0.002168657025322318, -0.01337580755352974, -0.02240678109228611, 0.024572035297751427, 0.03335552662611008, -0.006125541869550943, 0.04026328772306442, 0.014324145391583443, 0.010003556497395039, -0.03023633360862732, 0.026487236842513084, 0.009464981034398079, -0.027750099077820778, -0.031054813414812088, 0.028582707047462463, 0.026908772066235542, 0.005508673842996359, 0.04534958675503731, -0.0021609615068882704, 0.046450089663267136, -0.02078089490532875, 0.016521846875548363, -0.0353185310959816, 0.048626214265823364, 0.024104921147227287, 0.013204211369156837, -0.011417501606047153, 0.06249028816819191, 0.04596152529120445, -0.019741302356123924, -0.00005106195749249309, 0.030442534014582634, 0.045001618564128876, -0.03778456896543503, -0.00912719126790762, -0.031302809715270996, -0.023127205669879913, 0.01800319366157055, -0.02579294517636299, 0.008717420510947704, -0.04968809336423874, -0.033372752368450165, -0.011936601251363754, -0.036977022886276245, 0.03604038432240486, -0.01721956767141819, -0.002116274321451783, -0.0034236616920679808, -0.02372713014483452, 0.031717102974653244, 0.05944792181253433, 0.04267677664756775, 0.041818369179964066, 0.01675228588283062, 0.04386584833264351, -0.023897411301732063, 0.02336098812520504, 0.009452596306800842, 0.0119941346347332, -0.02945631369948387, 0.005333282519131899, 0.013727045617997646, 0.02845611423254013, -0.015777472406625748, 0.011904272250831127, -0.02571503072977066, 0.03466024994850159, -0.019787944853305817, -0.011382629163563251, 0.046188678592443466, -0.03709445893764496, -0.006117082666605711, -0.05971145257353783, 0.03810099884867668, -0.05913952365517616, 0.022041000425815582, 0.039220020174980164, 0.028283681720495224, -0.009455768391489983, 0.04847461357712746, -0.013627844862639904, 0.04307365044951439, 0.0002934844815172255, 0.021724550053477287, 0.005742629058659077, 0.0022443083580583334, 0.04881519079208374, -0.03585558757185936, -0.027218468487262726, 0.01793859899044037, 0.00011215352424187586, -0.040672145783901215, 0.004396482836455107, -0.030939335003495216, 0.0003763791755773127, -0.04502827301621437, -0.015470650978386402, 0.006144918035715818, 0.02496066875755787, 0.021764086559414864, -0.038940053433179855, -0.004304678179323673, 0.014410658739507198, -0.041456274688243866, 0.0309330802410841, -0.01722966879606247, 0.023172814399003983, 0.030885154381394386, -0.0127894077450037, -0.051304809749126434, -0.02244569920003414, -0.014067720621824265, -0.04951295256614685, 0.049183402210474014, 0.010934138670563698, -0.009386175312101841, -0.02588503062725067, -0.051555387675762177, -0.038286056369543076, 0.015157952904701233, -0.04488226771354675, -0.010416846722364426, 0.02842189371585846, 0.035126104950904846, 0.008136598393321037, -0.009657439775764942, -0.03604478761553764, 0.008813198655843735, 0.038083381950855255, 0.07642611116170883, 0.0374823696911335, 0.03652087226510048, 0.025984786450862885, -0.01785387098789215, 0.034111492335796356, -0.015291275456547737, 0.06345001608133316, -0.006177050061523914, -0.013764092698693275, -0.04693613946437836, 0.013161469250917435, -0.015882618725299835, -0.04396833851933479, 0.02194812148809433, 0.0076763140968978405, -0.0036360358353704214, -0.03622370585799217, -0.06356961280107498, 0.010842598043382168, -0.037338078022003174, -0.009149529039859772, -0.02775806374847889, 0.02828718163073063, 0.025237778201699257, 0.011238502338528633, -0.025182070210576057, -0.061430905014276505, 0.17253173887729645, 0.05086674913764, 0.038506265729665756, 0.029776902869343758, 0.007506535388529301, 0.05214884877204895, 0.03269599378108978, -0.019688887521624565, 0.004267360083758831, -0.04932049661874771, 0.02501484751701355, -0.013756473548710346, 0.018154943361878395, -0.030929315835237503, 0.043406981974840164, 0.06815791875123978, -0.03791280463337898, -0.00994536280632019, 0.054942503571510315, -0.04094700515270233, -0.05360887944698334, 0.0364815853536129, -0.033789120614528656, 0.022904472425580025, 0.003297103801742196, 0.02976481057703495, 0.03820490092039108, -0.10647466778755188, -0.004164082929491997, -0.026314739137887955, 0.004746777471154928, -0.012878607027232647, 0.04086000844836235, -0.022754885256290436, -0.03785988315939903, 0.050576724112033844, 0.006801364477723837, -0.018619028851389885, 0.008279758505523205, 0.010888513177633286, -0.012694468721747398, -0.012760773301124573, 0.0210794135928154, -0.016020607203245163, 0.0025416447315365076, 0.04100683704018593, -0.04931304231286049, -0.012737770564854145, 0.04433238506317139, -0.016031084582209587, 0.05781877413392067, -0.027580363675951958, 0.0212921891361475, -0.03209744766354561, -0.013891508802771568, -0.007275850046426058, 0.0006629370618611574, -0.03334687650203705, -0.016121795400977135, 0.0047656153328716755, 0.007088621612638235, 0.011037098243832588, -0.005878392606973648, 0.010083094239234924, -0.02119041420519352, -0.014514841139316559, 0.03642283007502556, 0.021928539499640465, 0.011116717010736465, -0.006931989453732967, -0.005227356683462858, -0.008535749278962612, -0.02790777198970318, -0.010769965127110481, 0.02299858257174492, 0.011690983548760414, -0.03360990807414055, 0.07413481920957565, 0.008575252257287502, -0.07501962780952454, -0.03560882434248924, -0.028400082141160965, -0.020611751824617386, 0.0023364138323813677, 0.041673239320516586, 0.03690095245838165, -0.041143547743558884, -0.033764537423849106, -0.05939638242125511, 0.0451820008456707, 0.04155825451016426, 0.00822572223842144, -0.009566396474838257, 0.004872758872807026, 0.007389148697257042 ]
Q: what does this code block do in this program? Code: temp = inp = int(input()) count = 0 while True: ten = temp//10 one = temp%10 result = ten + one count += 1 temp = int(str(temp%10)+ str(result%10)) if (inp == temp): break print(count) I was wondering what temp = int(str(temp%10) + str(result%10))is doing in this code. This code gets an input from the user, and gets the value of from tens and ones place, adds them, increment count and cycles them by adding the result and the number from the ones place until they become original input. A: In the line : temp = int(str(temp%10) + str(result%10)) First, you are calculating the modulo of temp and result by 10: this gives you 2 numbers. With the str command, you convert the number in string. With the + you are merging the two string one after the other. Then you convert your new string into an integer. For example if temp = 10 and result = 50 temp % 10 = 1 --> in str '1' result % 10 = 5 --> in str '5' You merge the two str: '1'+'5' = '15' --> in int = 15 A: That specific line: * *converts two integers into strings *concatenates the strings *converts the resulting string back to integer again Let's say that the user input is 1. * *temp would be equal to 1. *temp % 10 would evaluate to 1. *result would be equal to (1 // 10) + (1 % 10) = 1. *result % 10 would be 1. *If we convert the types of resulting integers from steps 3 and 4 into str, we can just concatenate them with +. The resulting string would be 11 (Because '1' + '1' is '11') An alternative approach to do that would be: f'{temp % 10}{result % 10}' *Now, passing the resulting string into int() would just convert it into an integer. Hope this helps.
[ 0.009043745696544647, -0.003165982663631439, -0.013511095196008682, -0.002014494501054287, -0.01788570173084736, -0.024977074936032295, 0.007844009436666965, 0.01810513623058796, 0.0019315613899379969, 0.0521458201110363, 0.00002393968497926835, 0.023163650184869766, 0.002812424674630165, -0.039324115961790085, -0.014322195202112198, -0.015519165433943272, -0.019738996401429176, -0.04817141219973564, -0.013904156163334846, 0.006366465240716934, 0.0044614956714212894, 0.004999692086130381, -0.05613574758172035, -0.01768171228468418, -0.03210889548063278, 0.03567645326256752, 0.040560413151979446, -0.00877193920314312, 0.02703063003718853, 0.06786086410284042, -0.006525495555251837, -0.013815482147037983, 0.0323018878698349, -0.05253028869628906, -0.009802306070923805, -0.02928289957344532, 0.050190795212984085, -0.013846507295966148, -0.009729180485010147, -0.031073402613401413, 0.016857992857694626, -0.016227280721068382, 0.032413091510534286, -0.04246247559785843, -0.08629600703716278, -0.00046863939496688545, -0.005842550657689571, -0.0029431774746626616, -0.004422060679644346, -0.027646910399198532, 0.004397846292704344, -0.016858480870723724, 0.023627815768122673, 0.0010664373403415084, -0.0061171227134764194, 0.03057994693517685, 0.015514260157942772, -0.02563316375017166, -0.053336743265390396, -0.0009418635163456202, -0.0010865210788324475, 0.007836369797587395, -0.005763272754848003, -0.045285627245903015, 0.0020532177295535803, 0.003957327455282211, -0.0028263956774026155, -0.03375760838389397, 0.003044131211936474, -0.058823104947805405, -0.015480243600904942, -0.02111184597015381, -0.03527883440256119, -0.0015653135487809777, -0.013661871664226055, 0.041090961545705795, 0.0010063434019684792, 0.028724385425448418, -0.028726179152727127, 0.05070909112691879, 0.008552885614335537, 0.06590906530618668, -0.013864313252270222, 0.04639726132154465, -0.05004492774605751, -0.03162878751754761, -0.0005976441316306591, -0.030232256278395653, -0.0015823958674445748, -0.028044113889336586, 0.006041681859642267, 0.04507334902882576, 0.0008832034654915333, -0.0053861080668866634, 0.0446038544178009, 0.03942554444074631, -0.016455117613077164, 0.03269438073039055, 0.01481191162019968, -0.0024569809902459383, 0.05778800696134567, 0.031636614352464676, -0.01653323508799076, 0.061514776200056076, -0.025371244177222252, -0.009686476550996304, 0.019802093505859375, 0.005281610414385796, -0.032635029405355453, -0.007533105555921793, 0.005940542556345463, -0.011559835635125637, 0.034783657640218735, 0.0013579801889136434, -0.009421708062291145, 0.0735422894358635, 0.0145992087200284, 0.004412599373608828, -0.04578135162591934, 0.0022114869207143784, 0.016982141882181168, -0.0031728227622807026, 0.011542527005076408, -0.012483862228691578, 0.006978388410061598, -0.02833697944879532, -0.034578412771224976, 0.057066354900598526, -0.04381934553384781, -0.030851205810904503, -0.009044588543474674, 0.0063940417021512985, -0.020136607810854912, 0.04603984206914902, -0.024134788662195206, 0.024017969146370888, -0.017214909195899963, 0.04584158957004547, 0.02896869368851185, -0.034590981900691986, 0.026102375239133835, -0.019037671387195587, -0.0004777819267474115, 0.09787964075803757, 0.011773691512644291, 0.012695460580289364, 0.01990840956568718, -0.0012666978873312473, -0.00706800352782011, 0.018348926678299904, -0.06334511935710907, 0.022854994982481003, 0.01903078518807888, -0.0038121386896818876, -0.01398138701915741, 0.016405198723077774, -0.016290290281176567, -0.002932001603767276, -0.004292670171707869, 0.024240221828222275, -0.025859428569674492, -0.003654367057606578, -0.0005567115149460733, 0.024710988625884056, -0.010138156823813915, 0.021900000050663948, -0.050104886293411255, -0.02211780846118927, -0.0170351080596447, -0.01712958700954914, 0.01418261043727398, -0.01873859018087387, -0.01168619655072689, 0.010950934141874313, 0.04238082841038704, 0.051486384123563766, 0.026669401675462723, -0.028862569481134415, 0.004668787587434053, 0.03655209764838219, -0.05926814675331116, 0.014638952910900116, -0.012003232724964619, 0.05542188510298729, 0.05237347260117531, 0.01840164139866829, 0.02177279070019722, -0.014209814369678497, -0.03777429088950157, -0.02645379863679409, 0.014860272407531738, 0.04163297638297081, -0.05400293320417404, 0.0233012568205595, 0.0013980160001665354, 0.017475631088018417, -0.02211190015077591, 0.014396858401596546, -0.04468277841806412, -0.08762989193201065, -0.046415816992521286, 0.021723955869674683, -0.00922315288335085, 0.018736423924565315, -0.012258180417120457, -0.030925339087843895, 0.03307813033461571, 0.06929712742567062, -0.047178275883197784, 0.025247277691960335, 0.021492663770914078, -0.023770663887262344, -0.026659460738301277, 0.0037798045668751, 0.0042626322247087955, -0.01495578046888113, -0.027003435418009758, 0.02793685905635357, -0.002099309116601944, 0.004806355107575655, 0.006280106958001852, 0.03579289838671684, -0.00516922352835536, 0.0430498905479908, -0.018871387466788292, -0.0359707847237587, 0.014149476774036884, 0.04745684936642647, -0.025333555415272713, 0.05425092577934265, 0.0080097122117877, 0.0484248511493206, 0.028138015419244766, 0.04782889410853386, 0.01879974640905857, 0.020252060145139694, 0.04929158464074135, 0.05190275236964226, -0.016723698005080223, 0.005473543424159288, -0.03285450115799904, 0.029201563447713852, 0.0331745520234108, -0.0005675115389749408, -0.006959900725632906, 0.0018242354271933436, -0.004115288145840168, -0.01627354510128498, -0.00943011324852705, 0.03289324790239334, -0.014395678415894508, 0.048829808831214905, 0.02619396150112152, 0.015424465760588646, -0.027193507179617882, -0.0007308512576855719, 0.049241553992033005, 0.051609430462121964, -0.04604994133114815, -0.017996273934841156, 0.019694851711392403, 0.021707547828555107, -0.01218285784125328, -0.017608946189284325, 0.009892540983855724, 0.01851750537753105, 0.03602807596325874, 0.0032661408185958862, -0.01476126629859209, -0.028736935928463936, -0.0406857430934906, -0.04028389975428581, -0.050475794821977615, -0.03141190856695175, -0.041903384029865265, 0.001316761365160346, 0.016199132427573204, -0.027669107541441917, -0.008117656223475933, -0.00946096796542406, -0.0015500670997425914, -0.010134829208254814, -0.01450989581644535, 0.055025264620780945, 0.0006604483933188021, 0.013354016467928886, -0.03921440616250038, 0.015927832573652267, 0.018190793693065643, 0.05496210977435112, -0.01856580749154091, 0.002349808346480131, 0.0024572396650910378, -0.013929908163845539, 0.010169163346290588, -0.0010812698164954782, -0.004269811790436506, -0.011934800073504448, -0.02187603898346424, -0.0594760999083519, -0.04955853521823883, 0.0002916208759415895, -0.005094930529594421, 0.0055789523757994175, -0.02842535823583603, 0.04796876385807991, 0.0255434513092041, -0.04873155429959297, 0.04261089116334915, 0.06027011200785637, -0.03747853636741638, 0.03755730390548706, -0.004801142029464245, 0.004768907558172941, -0.03184502571821213, 0.05452144891023636, 0.04669531434774399, 0.014356800355017185, -0.016430765390396118, -0.04093475639820099, -0.0015574623830616474, 0.026601288467645645, -0.023797083646059036, -0.014270104467868805, -0.03601568937301636, 0.049263592809438705, -0.029324185103178024, -0.05461116135120392, 0.045381274074316025, -0.032277919352054596, -0.024692824110388756, -0.028083287179470062, -0.022928304970264435, 0.04176654666662216, 0.013376815244555473, 0.030563795939087868, 0.017831265926361084, 0.005257932469248772, -0.007403392344713211, -0.006778204347938299, 0.05530562624335289, -0.02772003598511219, -0.0008696739678271115, 0.030486516654491425, 0.007910555228590965, 0.03039327636361122, 0.0068504419177770615, -0.012344153597950935, -0.02038978971540928, -0.004272919148206711, -0.0019350307993590832, 0.03168788179755211, 0.03475702553987503, 0.02460874803364277, -0.005657355301082134, 0.0636223629117012, -0.04926308989524841, -0.015089711174368858, 0.0363367460668087, 0.018863705918192863, 0.019210319966077805, -0.002289506373926997, 0.015395162627100945, 0.00017209506768267602, -0.02830982394516468, -0.04838067665696144, 0.022618917748332024, 0.024991324171423912, 0.05839250981807709, -0.04196246713399887, 0.05670412629842758, 0.008476019836962223, -0.02854723483324051, 0.0421210341155529, -0.030157463625073433, -0.001111549325287342, 0.05007612705230713, -0.010780521668493748, 0.043002236634492874, -0.05336209386587143, 0.014371817000210285, 0.010434839874505997, -0.030269810929894447, 0.035447198897600174, 0.012379281222820282, 0.06858902424573898, -0.025795670226216316, 0.00495503842830658, -0.03158308193087578, -0.004192365799099207, -0.012591908685863018, -0.04771561920642853, 0.011284382082521915, -0.03444395586848259, -0.003315262496471405, -0.06039814651012421, 0.030105717480182648, 0.020265918225049973, 0.04965249449014664, -0.01739928126335144, 0.0207718163728714, -0.004391253925859928, 0.030547896400094032, 0.038827210664749146, -0.011282326653599739, 0.0014633447863161564, -0.007331314962357283, 0.04933229461312294, -0.02044771797955036, -0.01912381872534752, -0.03177507221698761, -0.01721290498971939, 0.001942550064995885, 0.004208114929497242, 0.031518496572971344, -0.014024435542523861, -0.051268771290779114, 0.0339050367474556, -0.018184036016464233, 0.02308754250407219, -0.034705281257629395, -0.05376409739255905, -0.0022753197699785233, 0.014674467965960503, 0.028221258893609047, -0.037878330796957016, 0.019009510055184364, -0.02558356523513794, 0.025171658024191856, 0.03010866418480873, -0.01389261893928051, -0.04749462008476257, -0.02053556777536869, -0.029929915443062782, -0.030716726556420326, 0.014790239743888378, 0.0744856595993042, -0.005733279511332512, 0.01516673993319273, -0.07285917550325394, 0.019376976415514946, 0.03327944502234459, 0.0011693256674334407, -0.005285357590764761, -0.012688578106462955, 0.019686201587319374, -0.0055737183429300785, 0.017874399200081825, 0.006501820869743824, -0.01728539541363716, 0.02696785144507885, -0.07558771222829819, 0.005962065886706114, -0.027694540098309517, 0.018460607156157494, 0.02114056795835495, -0.009148061275482178, -0.02399403229355812, 0.04278285428881645, -0.0254697073251009, -0.025042425841093063, -0.02196229249238968, 0.050476789474487305, -0.05305728688836098, -0.03508388251066208, 0.04888664186000824, 0.008898989297449589, -0.034693483263254166, 0.04992874339222908, 0.019412873312830925, -0.004516351502388716, 0.0046704839915037155, 0.024314632639288902, -0.03507763147354126, 0.021494219079613686, -0.04088651388883591, 0.015623021870851517, -0.03652067855000496, -0.01110382005572319, -0.007065200712531805, -0.052553851157426834, 0.02871152199804783, 0.012291104532778263, -0.02881391905248165, -0.023330144584178925, -0.08496979624032974, -0.0026668247301131487, 0.017558665946125984, -0.009488226845860481, -0.00678609823808074, -0.009667938575148582, -0.010654285550117493, 0.018970364704728127, -0.025713231414556503, 0.011212927289307117, 0.00039249344263225794, -0.010361974127590656, -0.00002912196760007646, 0.01330166682600975, -0.005722292698919773, 0.02574600838124752, -0.006534529849886894, -0.052002616226673126, -0.009455254301428795, -0.03366813063621521, -0.023048946633934975, -0.03078235127031803, 0.001693369704298675, -0.011548249050974846, -0.025379452854394913, -0.041073258966207504, 0.011483030393719673, -0.03136015310883522, 0.0022558390628546476, 0.02407047711312771, 0.0022526001557707787, 0.017435194924473763, 0.0036665357183665037, -0.04105785861611366, 0.044217780232429504, 0.012076391838490963, -0.05895747244358063, -0.004484841134399176, 0.02549646981060505, -0.0031734576914459467, 0.04873253032565117, -0.016637027263641357, -0.05491024628281593, -0.024288462474942207, -0.05396522954106331, 0.03089085780084133, -0.02877948433160782, -0.0016452684067189693, -0.06697192043066025, -0.019435850903391838, -0.03106904774904251, 0.020966121926903725, 0.005474652163684368, -0.03089124523103237, -0.014276030473411083, -0.037116874009370804, 0.028690021485090256, -0.05437096580862999, 0.005416924599558115, -0.0007582180551253259, -0.018004881218075752, -0.015671031549572945, 0.05438552796840668, -0.00047435230226255953, 0.012508198618888855, 0.0048978435806930065, 0.0011476102517917752, 0.04708840698003769, 0.00587651738896966, -0.05432646721601486, -0.005216054152697325, 0.024000179022550583, 0.0020643651951104403, 0.000284891837509349, 0.038715049624443054, -0.042239028960466385, 0.033954743295907974, -0.034035034477710724, 0.012757236137986183, -0.018818115815520287, -0.0184418186545372, -0.026241006329655647, -0.04123775288462639, 0.04955253005027771, -0.028422370553016663, 0.01729658804833889, -0.034356340765953064, 0.06618808209896088, 0.05160389468073845, 0.006775523070245981, -0.02371140383183956, -0.025009628385305405, -0.03537677973508835, -0.057387080043554306, 0.03765733912587166, -0.01464040670543909, -0.015097782015800476, -0.0499686598777771, 0.018258752301335335, 0.07482683658599854, -0.0225134938955307, 0.050258684903383255, 0.0779607966542244, 0.030373765155673027, 0.011668446473777294, 0.004188722465187311, 0.040774308145046234, 0.022570153698325157, -0.025611810386180878, 0.013144813477993011, -0.007998978719115257, -0.03353409469127655, -0.0216478630900383, -0.0190877802670002, -0.07503073662519455, -0.04534418508410454, -0.004206547513604164, 0.07145901024341583, -0.017406027764081955, 0.05352240055799484, -0.01780531369149685, -0.05844242498278618, -0.02467767521739006, 0.03664199635386467, 0.009705073200166225, 0.01599530316889286, 0.06844469904899597, 0.011400061659514904, -0.011944699101150036, 0.01988372392952442, -0.026908203959465027, -0.012711914256215096, -0.04272739589214325, 0.05144885927438736, 0.0030186912044882774, -0.04157184809446335, 0.058578312397003174, 0.02068999409675598, -0.07755359262228012, -0.05277485027909279, -0.006090238690376282, -0.035187624394893646, -0.0047356681898236275, -0.02150961384177208, -0.016037162393331528, 0.0016007799422368407, -0.00724314758554101, 0.015517383813858032, 0.018860062584280968, -0.012902544811367989, 0.021023962646722794, 0.011547586880624294, 0.017108412459492683, -0.050225406885147095, 0.028068874031305313, 0.02788570336997509, 0.0017351850401610136, -0.018114764243364334, -0.047829676419496536, 0.00828857347369194, -0.0006351237534545362, -0.0017688729567453265, 0.05161193758249283, -0.030776193365454674, 0.026109479367733, 0.04431098327040672, -0.0027500304859131575, 0.021868139505386353, -0.005877866875380278, -0.0028153141029179096, -0.008226815611124039, -0.02506042644381523, -0.04206109791994095, -0.002140602096915245, -0.01040942408144474, 0.011340555734932423, 0.061797983944416046, -0.00585298053920269, -0.004123864229768515, 0.03401564434170723, 0.029892055317759514, -0.0219175536185503, -0.04355239495635033, -0.0033962344750761986, -0.03881796449422836, -0.06973206996917725, -0.039520543068647385, -0.009125187993049622, -0.0229227002710104, 0.013701996766030788, -0.005777833051979542, -0.04923924803733826, -0.021895064041018486, 0.002194796223193407, -0.013679626397788525, 0.016536900773644447, -0.06798652559518814, 0.01772594079375267, -0.028076210990548134, -0.036897189915180206, -0.06524941325187683, 0.01524778176099062, -0.03021932952105999, -0.006772998720407486, -0.031870726495981216, 0.02895023114979267, -0.04034161567687988, 0.01797814667224884, -0.01463395543396473, 0.013105814345180988, -0.004664197564125061, -0.02287382073700428, 0.03547943755984306, 0.015328854322433472, -0.021125750616192818, 0.0314934104681015, 0.028945250436663628, 0.013412770815193653, -0.0003101109468843788, -0.00002536844476708211, -0.02549244463443756, -0.015135351568460464, 0.030016234144568443, 0.007400237489491701, -0.004286280367523432, 0.0045187147334218025, 0.0016023711068555713, -0.0037773887161165476, -0.03863302990794182, -0.005405398551374674, -0.011675660498440266, -0.005823790095746517, 0.006059633102267981, -0.007638160604983568, 0.011880995705723763, 0.067293182015419, -0.011115224100649357, 0.0356154665350914, -0.023677019402384758, 0.021217871457338333, 0.022458957508206367, 0.01246722973883152, 0.014132045209407806, 0.03436071053147316, -0.023324817419052124, -0.0006671670707874, 0.0005189740913920105, 0.005435081198811531, -0.017875954508781433, 0.04125397279858589, -0.013101866468787193, -0.0715220645070076, -0.0354544036090374, -0.0012227820698171854, -0.028027428314089775, 0.03260383754968643, 0.02618606574833393, -0.020193377509713173, -0.006427590269595385, -0.04460018128156662, -0.024439139291644096, 0.00314171239733696, -0.06320374459028244, -0.06244003772735596, 0.03442073240876198, -0.02338488958775997, -0.006918313447386026, 0.007089022547006607, -0.009100079536437988, -0.011482028290629387, -0.01144972164183855, -0.006093890406191349, -0.022284263744950294, 0.012262541800737381, 0.0077736699022352695, 0.015944072976708412, -0.022588083520531654, -0.0023297241423279047, 0.006022556219249964, 0.043054211884737015, -0.05834781005978584, -0.0415535643696785, -0.002633345313370228, 0.010700535960495472, 0.021989060565829277, -0.033448945730924606, -0.007677218411117792, 0.0047674281522631645, 0.0077042835764586926, 0.005518818274140358, -0.0013687105383723974, 0.0028127359692007303, 0.0013922572834417224, 0.005320736672729254, -0.0468977652490139, 0.007873998023569584, -0.0440095029771328, 0.02937386929988861, -0.009472290053963661, -0.011515212245285511, -0.023241309449076653, 0.04088468477129936, 0.02700231783092022, -0.009595807641744614, 0.04023972153663635, 0.026196196675300598, 0.04367082566022873, 0.007364396005868912, 0.0035502263344824314, -0.014218361116945744, 0.03723340108990669, 0.05984194949269295, 0.05013013631105423, 0.028142189607024193, 0.019149189814925194, 0.01210684236139059, 0.010365472175180912, -0.01871166005730629, 0.025560757145285606, 0.029446162283420563, 0.018002519384026527, 0.007956638000905514, -0.02511506713926792, 0.0018615107983350754, 0.016232436522841454, -0.023268556222319603, 0.019032971933484077, -0.022989021614193916, 0.01918095350265503, -0.017247667536139488, -0.02560662478208542, 0.04564361646771431, -0.013281457126140594, -0.05004226788878441, 0.0013477557804435492, -0.01829363964498043, 0.018577411770820618, 0.04313957691192627, -0.029101934283971786, -0.017521729692816734, 0.044733431190252304, 0.05953320115804672, 0.03064810112118721, 0.02857585810124874, 0.026200370863080025, 0.013123824261128902, -0.02385329268872738, 0.0062444149516522884, -0.005140046589076519, 0.036933910101652145, 0.006593775469809771, -0.029860151931643486, -0.051519498229026794, 0.018147537484765053, -0.0372493751347065, 0.010608943179249763, 0.03354702517390251, -0.023631004616618156, -0.002528761513531208, -0.05637599900364876, 0.06236983835697174, -0.02431448921561241, 0.0019672971684485674, 0.03497271612286568, -0.01124265044927597, -0.02858835458755493, 0.06532220542430878, 0.019139155745506287, 0.018926218152046204, -0.02205124869942665, 0.0969887375831604, 0.015080784447491169, 0.06705333292484283, 0.04691382125020027, -0.0306872446089983, -0.012720687314867973, 0.06957010924816132, -0.00055196403991431, -0.04373769462108612, -0.026194049045443535, -0.028656944632530212, 0.022960400208830833, -0.011420462280511856, -0.029579874128103256, 0.0020943719428032637, 0.023210251703858376, 0.007458345964550972, -0.04111282154917717, 0.0034798835404217243, 0.02593451924622059, -0.05448734015226364, 0.040471356362104416, 0.00729329651221633, 0.028730912134051323, 0.002329236827790737, -0.022295260801911354, -0.007397700101137161, -0.02805512212216854, 0.02196316421031952, -0.035910606384277344, 0.017223859205842018, -0.028662964701652527, -0.036948736757040024, -0.038254208862781525, -0.03685637190937996, -0.030070025473833084, 0.030918452888727188, -0.007991975173354149, -0.04725102707743645, 0.049894385039806366, 0.03285840526223183, 0.025095967575907707, 0.005042234435677528, -0.024899307638406754, 0.008234340697526932, 0.06002814322710037, 0.05327335000038147, 0.01141036581248045, 0.06454173475503922, 0.04091044142842293, -0.015612299554049969, 0.026888813823461533, -0.029548490419983864, 0.045516908168792725, 0.016747890040278435, 0.019058655947446823, 0.006447369232773781, 0.011835062876343727, -0.03758528456091881, -0.05114253982901573, -0.018048474565148354, 0.05738211050629616, -0.007745444308966398, -0.017606087028980255, -0.09101738780736923, -0.020481068640947342, -0.0743059366941452, -0.003212536917999387, -0.05706367641687393, 0.01900414749979973, -0.03353537991642952, 0.00536600174382329, 0.004225604701787233, -0.059732913970947266, 0.17268376052379608, 0.05311745032668114, 0.031914010643959045, -0.0027055873069912195, 0.03905743733048439, 0.066459521651268, 0.010930394753813744, -0.0053893704898655415, 0.014853080734610558, -0.03783970698714256, 0.06109776720404625, -0.001109784352593124, 0.01943717710673809, 0.05800410360097885, 0.0291326604783535, 0.022324632853269577, -0.043544426560401917, 0.001296298811212182, 0.015287086367607117, -0.034427739679813385, -0.053729478269815445, 0.043384045362472534, 0.022346774116158485, 0.050936002284288406, -0.021809857338666916, 0.02691880241036415, 0.031134653836488724, -0.05545485392212868, -0.00009211540600517765, -0.03877376765012741, 0.021799756214022636, -0.03338908404111862, 0.03653174638748169, 0.006237892434000969, -0.0005898676463402808, 0.03364264965057373, -0.0008901379769667983, -0.011345145292580128, -0.022543830797076225, 0.01068190298974514, 0.0022660521790385246, -0.02815820463001728, -0.0023336787708103657, -0.027824025601148605, -0.006242336705327034, 0.038261521607637405, -0.042426493018865585, 0.0446745939552784, 0.018870694562792778, -0.04799983650445938, 0.04097117856144905, -0.02359492890536785, -0.004821780603379011, -0.016702622175216675, -0.027800830081105232, 0.023138610646128654, 0.023245787248015404, -0.027197102084755898, -0.028443308547139168, 0.01683098077774048, 0.019824286922812462, 0.012491206638514996, 0.002542282221838832, 0.02045237086713314, -0.04132414609193802, -0.01903003826737404, -0.001129640149883926, 0.03232321888208389, -0.04110465198755264, -0.014024805277585983, -0.012451955117285252, -0.007641729433089495, 0.009137174114584923, -0.05000882223248482, 0.006432891357690096, 0.04317439720034599, -0.016347330063581467, 0.03782359138131142, 0.031846221536397934, -0.046545080840587616, -0.010630200617015362, -0.013349536806344986, -0.007323247380554676, -0.014439691789448261, 0.022186392918229103, 0.04285946860909462, -0.05999312922358513, -0.026918744668364525, 0.007270939648151398, 0.02090984210371971, 0.04074845835566521, 0.037586428225040436, -0.011850839480757713, -0.006293529644608498, -0.006139492616057396 ]
Where Will the S&P 500 Be in a Year? How high can US equity markets go? For a sense of the S&P 500's direction, we conducted an informal poll of readers of CFA Institute Financial NewsBrief for their perspective on where they see the index a year from now. Despite the euphoria in the Hillary Clinton and Donald Trump camps, there remains a great deal of uncertainty about the outcome of this election and what it will mean for the United States and the country's standing on the world stage. This uncertainty extends to the effect of US elections on stock prices, judging by the voluminous and often contradictory research on the topic. Investors should fear missing out on the best gains more than suffering the worst losses, says Michael Batnick, CFA. If you never attempt to avoid the worst weeks, you'll never have to worry about missing the best weeks. Despite Wall Street expectations that the S&P 500 would rise 8% in 2016, the index fell 7% in December and January. Five points of that decline came in January alone. But January's slide was only just greater than one standard deviation move. As we'll see, one month can handily destroy expectations going forward. Poll: What Poses the Greatest Threat to Global Equity Markets? As most global stock markets have been on a tear of late, we thought it would be timely to ask readers what posed the greatest threat to equity markets. Over 37% of the 974 respondents to this poll believe that a global economic slowdown is the greatest risk to stocks. Depending on who you talk to, or which articles and headlines you read, the responses run the gamut. Here's a quick summary of some of the most recent research on how presidential politics impacts equities.
[ 0.0046366010792553425, 0.018002508208155632, -0.021802488714456558, 0.006707861553877592, -0.01959792897105217, -0.008090432733297348, 0.0013440921902656555, 0.026384804397821426, 0.017943689599633217, 0.02858128398656845, 0.020167900249361992, -0.008277826942503452, -0.006556791253387928, -0.017249008640646935, -0.009977107867598534, 0.016939815133810043, -0.0004477326583582908, -0.02462800405919552, 0.014662585221230984, -0.001831292873248458, -0.004624362103641033, -0.00786503218114376, -0.0746900886297226, -0.013778536580502987, -0.013030951842665672, 0.05308911204338074, 0.02354258857667446, -0.004872417077422142, 0.08550887554883957, 0.07061243057250977, -0.00824662484228611, -0.03332589194178581, -0.002538644475862384, -0.08388545364141464, -0.041846711188554764, -0.01128010917454958, 0.025205504149198532, -0.010294530540704727, -0.0338326096534729, -0.016952576115727425, 0.007613352499902248, -0.022502116858959198, 0.04411443695425987, -0.016533007845282555, -0.03746639937162399, -0.015179859474301338, -0.03564833104610443, -0.05292775109410286, -0.032030683010816574, -0.023868214339017868, 0.004959494341164827, -0.01664084754884243, 0.0149537343531847, -0.017026696354150772, 0.02314000017940998, 0.019937485456466675, 0.000013044999832345638, -0.0037122294306755066, -0.025866826996207237, 0.026294296607375145, 0.03466113284230232, 0.0036845121067017317, 0.04842466115951538, -0.06561208516359329, 0.025226976722478867, 0.03621664643287659, 0.002206518780440092, -0.007683428470045328, 0.01990843005478382, -0.00613750796765089, 0.0005611507222056389, 0.007068762090057135, -0.038563258945941925, 0.017071494832634926, -0.020571790635585785, -0.024496549740433693, 0.008831473998725414, 0.004925589542835951, -0.013725058175623417, -0.03152364492416382, -0.003427234711125493, 0.040898844599723816, -0.0010217530652880669, 0.01321200467646122, -0.03857290372252464, -0.021859584376215935, -0.003204659791663289, 0.0187668539583683, 0.009980159811675549, 0.018709903582930565, -0.00017919922538567334, 0.036132682114839554, -0.009428991936147213, 0.0003693575272336602, 0.014185827225446701, 0.044771403074264526, -0.04125826060771942, 0.024442054331302643, -0.000170063620316796, 0.011753401719033718, 0.051909543573856354, 0.018248679116368294, -0.02702062949538231, 0.04203135147690773, -0.0658169835805893, -0.011436833068728447, 0.009472884237766266, -0.041517604142427444, 0.0032967226579785347, -0.04885948449373245, -0.001549869659356773, -0.00549106951802969, 0.014301048591732979, 0.015743449330329895, -0.009823872707784176, 0.03183884173631668, -0.0226378683000803, 0.01964424178004265, -0.03483079373836517, 0.008724160492420197, 0.013080829754471779, 0.009311818517744541, 0.049193501472473145, -0.02244257740676403, 0.0016272406792268157, -0.016825024038553238, -0.03401460871100426, 0.06113122031092644, -0.05203879252076149, -0.0029735774733126163, -0.03758001700043678, -0.009905039332807064, -0.006480422802269459, 0.03994700312614441, 0.0022148550488054752, 0.019387690350413322, -0.03842129185795784, 0.01658426597714424, 0.013291843235492706, -0.05597572401165962, 0.0516936257481575, 0.007899651303887367, -0.013430672697722912, 0.0715632513165474, -0.013296096585690975, 0.018993934616446495, 0.004328375216573477, -0.03877351060509682, -0.012607341632246971, 0.05679140239953995, -0.02482004277408123, 0.05433490872383118, -0.013126627542078495, -0.003758949227631092, -0.011409630067646503, -0.012042997404932976, -0.01543161179870367, -0.011369138956069946, 0.03891637176275253, 0.03545864298939705, -0.02973722666501999, -0.00881581287831068, -0.04187753424048424, 0.03858640044927597, -0.009607509709894657, 0.05643676593899727, -0.007511765696108341, -0.008106152527034283, 0.01654028333723545, -0.031042765825986862, 0.017612561583518982, -0.009218806400895119, -0.04633517190814018, 0.01045401580631733, -0.0010062470100820065, 0.06323374807834625, 0.04870111122727394, -0.011840436607599258, 0.06699733436107635, 0.06463570147752762, -0.053496528416872025, 0.032214924693107605, 0.0000709656160324812, 0.05573229119181633, -0.011723188683390617, -0.0005702365306206048, 0.01268461812287569, -0.0019363465253263712, -0.010438165627419949, -0.020077480003237724, -0.02624884806573391, 0.03207769989967346, 0.017618227750062943, 0.04416918754577637, 0.0003034305409528315, -0.008713879622519016, -0.03964126855134964, 0.029446467757225037, 0.030595969408750534, -0.029895830899477005, -0.036224979907274246, 0.026045914739370346, -0.044276751577854156, 0.05198260396718979, -0.024267926812171936, -0.03829417750239372, 0.026869792491197586, 0.07252821326255798, -0.04083666577935219, -0.01749696582555771, 0.024175183847546577, 0.009297502227127552, -0.010133403353393078, -0.042536649852991104, 0.04156734421849251, -0.012636944651603699, -0.0393233560025692, 0.04526899382472038, 0.004392638802528381, -0.02116084098815918, 0.035516224801540375, 0.015668250620365143, 0.018361084163188934, 0.06668131053447723, 0.013109351508319378, -0.00941399298608303, 0.03214484080672264, 0.04610775038599968, -0.027798233553767204, 0.00774593697860837, 0.012397034093737602, 0.04756879061460495, 0.00924300029873848, 0.03582114353775978, 0.04436614736914635, 0.017556577920913696, 0.032535772770643234, 0.052749693393707275, -0.026594923809170723, 0.012519161216914654, 0.016309287399053574, 0.007569288834929466, 0.07569721341133118, 0.0397912971675396, -0.01072215661406517, 0.024601703509688377, -0.016323572024703026, -0.003917398396879435, -0.03519321233034134, 0.03967605531215668, -0.023450011387467384, 0.010997246950864792, 0.03915299475193024, 0.0443757139146328, -0.018778840079903603, 0.03301039710640907, 0.013463257811963558, 0.0657038688659668, -0.02746821567416191, -0.014712381176650524, 0.002292907563969493, 0.03211317956447601, -0.00439470773562789, -0.0005170521908439696, 0.028608892112970352, 0.020487304776906967, 0.010648176074028015, 0.022147387266159058, 0.02172086387872696, -0.036062419414520264, -0.01630965806543827, -0.0385277234017849, -0.04503575339913368, -0.044999465346336365, -0.05719934403896332, 0.003759954357519746, 0.03343091160058975, -0.048537105321884155, 0.02234296314418316, -0.03606007620692253, -0.029286563396453857, 0.003639622125774622, 0.009011458605527878, 0.053709350526332855, 0.01773226074874401, 0.03519584983587265, -0.043570488691329956, 0.042082883417606354, -0.0018976152641698718, 0.010357976891100407, -0.03154272213578224, -0.013528464362025261, -0.0176087636500597, -0.012074626982212067, 0.05514391511678696, -0.015628790482878685, -0.024355784058570862, -0.017389994114637375, -0.0113668292760849, -0.06443951278924942, -0.00440976582467556, 0.0280179250985384, -0.0029203614685684443, -0.0012902335729449987, -0.029371773824095726, 0.04463474452495575, 0.021007739007472992, -0.04118046164512634, 0.05285603553056717, 0.03529668226838112, -0.03176125884056091, 0.02207745797932148, 0.035200316458940506, 0.008219522424042225, -0.03846545144915581, 0.06240146607160568, 0.06261617690324783, -0.005778019316494465, -0.0027612869162112474, -0.010751770809292793, 0.0006816598470322788, 0.007413549814373255, 0.023034892976284027, -0.03686060756444931, -0.014975362457334995, 0.04133407771587372, 0.042797982692718506, -0.07291296124458313, 0.027061747387051582, -0.06607608497142792, -0.04824086278676987, -0.01743842102587223, -0.03480369970202446, 0.027439238503575325, 0.029682833701372147, 0.04605576768517494, 0.01347537711262703, -0.033467914909124374, -0.0024762293323874474, 0.01292684767395258, 0.0532674677670002, -0.05092634633183479, 0.03976309299468994, 0.03745068237185478, -0.0377286858856678, 0.013622358441352844, 0.04676353931427002, -0.004670316819101572, -0.008966044522821903, 0.03664885088801384, -0.017062345519661903, 0.012193996459245682, 0.011979877948760986, -0.0010869026882573962, 0.00113102444447577, 0.0629475936293602, -0.03491311892867088, 0.050411421805620193, -0.0008826942066662014, 0.014598343521356583, 0.003509700298309326, -0.008259247988462448, 0.0194998886436224, 0.013598073273897171, -0.03245947137475014, -0.04848349094390869, 0.014969446696341038, 0.021175365895032883, 0.05606253072619438, -0.029164733365178108, 0.043540943413972855, -0.014141797088086605, -0.02221168391406536, 0.027853088453412056, -0.056733887642621994, 0.0062328302301466465, 0.020813101902604103, -0.01551367249339819, 0.02814403362572193, -0.04796771705150604, 0.01829090528190136, -0.035161495208740234, 0.05707932263612747, 0.027141490951180458, 0.004730528220534325, 0.039334435015916824, -0.027095193043351173, 0.0014441373059526086, -0.035652678459882736, -0.012212214060127735, -0.00568061787635088, -0.011881820857524872, 0.027544910088181496, 0.020816568285226822, -0.053911786526441574, -0.0701090469956398, 0.01645486056804657, 0.04520544037222862, -0.0019468608079478145, -0.002917355392128229, 0.04088934510946274, -0.016090381890535355, 0.022622277960181236, 0.020812736824154854, 0.009726355783641338, 0.002153742127120495, -0.03830105811357498, 0.05896332487463951, 0.005731665063649416, -0.018400417640805244, 0.006205396261066198, -0.005008968058973551, -0.005641740281134844, 0.009689152240753174, -0.006474033929407597, -0.03176400065422058, -0.00571999978274107, 0.012583518400788307, 0.012288656085729599, 0.034208957105875015, -0.01706085540354252, -0.01644138991832733, -0.007874284870922565, 0.008280144073069096, 0.02184220962226391, -0.046539898961782455, 0.013063815422356129, -0.041592635214328766, 0.033085234463214874, 0.03856178745627403, -0.035861723124980927, -0.03734937682747841, -0.021718768402934074, -0.042851824313402176, -0.0425153486430645, 0.0040563736110925674, 0.0458647646009922, -0.016464682295918465, 0.0002322374057257548, -0.04911847785115242, 0.03446924313902855, 0.04374987632036209, 0.026086190715432167, -0.04538261517882347, 0.02558516524732113, 0.006042944733053446, -0.008469820022583008, 0.04793747514486313, -0.006109696347266436, -0.003835696494206786, 0.02562703751027584, -0.0721772164106369, 0.01313744019716978, -0.01276578102260828, -0.032135602086782455, 0.015763523057103157, 0.013285364024341106, -0.0029544380959123373, 0.02804667502641678, -0.0182338859885931, 0.02389349602162838, -0.018234683200716972, 0.028336575254797935, -0.03728269413113594, -0.04405180364847183, 0.03245731070637703, -0.0007340089068748057, -0.007753622252494097, 0.05536773055791855, 0.02596230059862137, 0.002277685096487403, 0.0052541340701282024, 0.05055566132068634, -0.03670506924390793, 0.024406107142567635, -0.00647102203220129, 0.011561173014342785, -0.03319419175386429, -0.06426167488098145, 0.0027786572463810444, -0.04106995090842247, 0.045400235801935196, -0.010919725522398949, -0.02333882451057434, -0.055732302367687225, -0.05639510601758957, -0.0003613579901866615, -0.0020366846583783627, -0.014668640680611134, 0.031974878162145615, -0.01238701120018959, 0.009737890213727951, 0.014259516261518002, -0.01812567748129368, 0.009367702528834343, 0.02215244248509407, -0.004337140824645758, -0.019300976768136024, -0.02270176261663437, 0.003591815009713173, 0.028168952092528343, -0.02956228516995907, -0.06477585434913635, 0.013907319866120815, -0.01891966536641121, -0.050546061247587204, -0.039260122925043106, -0.01614658161997795, -0.04404621571302414, -0.028817443177103996, -0.020542819052934647, 0.0020683633629232645, 0.004140996839851141, 0.05224573239684105, 0.01310468465089798, -0.018402185291051865, 0.007816287688910961, 0.005035652779042721, 0.025533858686685562, 0.027941474691033363, 0.0424446202814579, -0.03900323435664177, -0.02427380532026291, 0.03987233713269234, -0.045266930013895035, 0.05976776033639908, -0.007244174834340811, -0.0021237260662019253, -0.03892476111650467, -0.05107789486646652, -0.013673929497599602, -0.006874907296150923, -0.02659359574317932, -0.045976608991622925, -0.03212461993098259, 0.021707110106945038, 0.03949848189949989, 0.0027400513645261526, 0.016415119171142578, -0.006194037385284901, -0.06185824051499367, 0.016875172033905983, -0.02802405133843422, -0.032515160739421844, -0.01608247309923172, -0.04167361184954643, -0.007072789594531059, 0.07236731052398682, -0.014943026937544346, 0.027066320180892944, 0.0037630614824593067, -0.004104997031390667, 0.01640954054892063, 0.006560716312378645, -0.046716563403606415, -0.06697303056716919, 0.012668968178331852, 0.029076972976326942, 0.020505379885435104, -0.045675285160541534, -0.033789392560720444, 0.06760486960411072, -0.020797142758965492, 0.03177667036652565, -0.026225706562399864, -0.0287945494055748, -0.02367563731968403, 0.002079632133245468, 0.0662846788764, -0.028375469148159027, 0.03139405697584152, -0.01813202165067196, 0.06315427273511887, 0.0610809400677681, 0.024518609046936035, -0.022151770070195198, -0.026240596547722816, -0.029245998710393906, -0.07341974228620529, 0.035391196608543396, -0.03889171779155731, -0.007748387288302183, -0.03349079191684723, -0.014317148365080357, 0.03339407220482826, -0.019600117579102516, 0.01394769735634327, 0.060093022882938385, -0.0074239857494831085, -0.007396801374852657, 0.015486622229218483, -0.0032733266707509756, 0.035251226276159286, 0.013736715540289879, 0.005364736542105675, -0.04390554130077362, -0.0228610560297966, -0.017308223992586136, -0.05293736979365349, -0.0376986600458622, -0.0660620704293251, 0.002090682275593281, 0.0862816572189331, -0.0486072413623333, 0.04920266196131706, -0.007425930816680193, -0.032595809549093246, -0.02209731750190258, 0.05092664062976837, 0.011646636761724949, 0.038065146654844284, 0.044771675020456314, -0.006777032744139433, 0.0018607599195092916, 0.011409220285713673, 0.011118960566818714, -0.016113001853227615, -0.020890185609459877, 0.05107381194829941, -0.040642689913511276, -0.04470857232809067, 0.02976357191801071, 0.0780358836054802, -0.03855644166469574, -0.022810811176896095, 0.004408068489283323, 0.016818836331367493, 0.02300943434238434, -0.032236117869615555, 0.030518148094415665, 0.00931580550968647, -0.02621714398264885, 0.011839121580123901, 0.05188824608922005, -0.01345661748200655, 0.04035123810172081, 0.031954389065504074, 0.019356191158294678, -0.03814582899212837, 0.019399048760533333, 0.026411399245262146, -0.020953042432665825, -0.011842215433716774, -0.023405849933624268, 0.012026380747556686, 0.007600470911711454, -0.01637977361679077, 0.03848487511277199, -0.005271478556096554, -0.006065645255148411, 0.05473481863737106, -0.0386989451944828, 0.041453827172517776, -0.0038731631357222795, -0.01912408322095871, 0.0050235833041369915, -0.028204165399074554, -0.037544868886470795, -0.02963212877511978, 0.019131042063236237, 0.003274494083598256, 0.05653746426105499, -0.03198828920722008, -0.023996874690055847, 0.027028460055589676, -0.011308150365948677, -0.03341279178857803, -0.06888207048177719, -0.027995547279715538, -0.036121971905231476, -0.035118378698825836, -0.022579297423362732, -0.006891121622174978, -0.03205917775630951, 0.0750967264175415, 0.04072924703359604, -0.037552691996097565, 0.007236807607114315, 0.012508455663919449, -0.007092370186001062, -0.00960634183138609, -0.017886381596326828, -0.0009704043040983379, -0.007241825107485056, -0.033912740647792816, -0.04703235998749733, 0.004175995942205191, -0.0035177210811525583, 0.026153234764933586, 0.006805802695453167, 0.031244078651070595, -0.044390566647052765, 0.026233794167637825, -0.003703356720507145, 0.0000253702346526552, -0.0027950291987508535, -0.024935146793723106, -0.024083072319626808, 0.032778166234493256, -0.025056462734937668, 0.03991434723138809, 0.03882889077067375, -0.02123096212744713, 0.02570183016359806, -0.004809780977666378, -0.015507575124502182, -0.008474418893456459, 0.023046666756272316, -0.015441952273249626, 0.010698485188186169, -0.03502596542239189, -0.04519426077604294, 0.00028596536139957607, -0.03367319330573082, -0.011267772875726223, -0.05895065888762474, 0.015457706525921822, -0.004829946905374527, -0.013795784674584866, -0.002017736667767167, 0.027225160971283913, -0.0022997024934738874, 0.04066198691725731, 0.004687055014073849, 0.03837394714355469, 0.02335277386009693, -0.00694638304412365, 0.014304597862064838, 0.016157466918230057, 0.029028767719864845, -0.060541827231645584, -0.032580792903900146, 0.007596185896545649, -0.01686200499534607, 0.014738211408257484, 0.0002665901556611061, -0.013658484444022179, -0.04934536665678024, -0.022935444489121437, -0.013447411358356476, 0.059849418699741364, 0.021130472421646118, 0.011757947504520416, 0.004318182356655598, -0.041326798498630524, -0.04020926356315613, -0.0031278280075639486, -0.04132742062211037, -0.024372989311814308, 0.04643571376800537, 0.0012692362070083618, -0.022292152047157288, 0.010264714248478413, -0.02118643932044506, 0.009847092442214489, -0.03151804208755493, -0.033676180988550186, -0.04418540000915527, 0.01034313440322876, 0.0029133656062185764, 0.015082871541380882, 0.00683229137212038, -0.006501094903796911, -0.006195095833390951, 0.06143737956881523, -0.03865797072649002, -0.05353361740708351, 0.014344834722578526, -0.008932838216423988, -0.0010030431440100074, 0.0064283679239451885, -0.00763320317491889, -0.0011863152030855417, 0.0026693977415561676, -0.012349449098110199, 0.020092299208045006, 0.03219421207904816, -0.031534962356090546, 0.0018597337184473872, 0.04127230495214462, 0.0015594839351251721, -0.06189801171422005, 0.013788321055471897, -0.031449101865291595, -0.03465278074145317, -0.030255714431405067, 0.04131743684411049, 0.03920571878552437, 0.002379041165113449, 0.03189706802368164, 0.004950443282723427, 0.02671067602932453, -0.01168801635503769, 0.018830638378858566, 0.0041276016272604465, 0.065522201359272, 0.03581349179148674, 0.027428187429904938, 0.01760498248040676, 0.06655581295490265, 0.029893213883042336, -0.02890637144446373, -0.0032246983610093594, 0.03090829961001873, 0.03334939107298851, -0.020298803225159645, -0.026657965034246445, -0.03841671347618103, 0.029592683538794518, -0.0018937357235699892, -0.015598471276462078, 0.015634790062904358, -0.01310192234814167, 0.017107633873820305, -0.015010389499366283, -0.04061662033200264, 0.06872245669364929, -0.02102750726044178, -0.0060953195206820965, -0.008916836231946945, -0.040800679475069046, -0.00054015195928514, 0.02661297470331192, 0.009181165136396885, 0.03083098493516445, 0.024876147508621216, 0.02199912630021572, 0.0329497866332531, 0.04490114375948906, 0.051449839025735855, 0.008254455402493477, -0.01742420345544815, 0.016105661168694496, 0.013116944581270218, -0.011311913840472698, -0.048675961792469025, 0.000018532869944465347, -0.0343979187309742, 0.03868519887328148, -0.01131615974009037, -0.007273574825376272, 0.03181295841932297, -0.07916394621133804, -0.0035067859571427107, -0.05127210542559624, 0.035944849252700806, -0.04626188054680824, -0.032336536794900894, 0.017250197008252144, -0.030024603009223938, -0.002444454003125429, 0.032719582319259644, -0.006408513057976961, 0.0010852430714294314, -0.012652778998017311, 0.058006566017866135, 0.0007361694588325918, 0.025302786380052567, 0.06603967398405075, -0.0027568989899009466, -0.01293979212641716, 0.03657470643520355, 0.009531536139547825, -0.017795460298657417, -0.017106031998991966, -0.04289105162024498, -0.014263325370848179, -0.044940073043107986, -0.009353570640087128, -0.0018222384387627244, 0.035186074674129486, 0.0071822116151452065, -0.04925250634551048, -0.0037170876748859882, -0.004371833521872759, -0.032685939222574234, 0.007093633059412241, 0.0012591080740094185, 0.016851475462317467, -0.021688736975193024, -0.013526163063943386, -0.00715064350515604, -0.05800951272249222, 0.0010015692096203566, -0.043310921639204025, 0.03818807378411293, 0.01672588475048542, -0.031107980757951736, -0.0509302094578743, -0.049948371946811676, 0.006175970658659935, -0.0034359595738351345, -0.028483906760811806, -0.07625792920589447, 0.015439582988619804, 0.05843457207083702, 0.01657768525183201, -0.013199156150221825, -0.021457402035593987, 0.00896942988038063, 0.004086048807948828, 0.056121427565813065, 0.0022998976055532694, 0.030197998508810997, 0.03060777485370636, 0.012170879170298576, 0.017653929069638252, -0.039218366146087646, 0.010792143642902374, -0.012366595678031445, -0.013086358085274696, -0.03437720611691475, 0.037511471658945084, -0.025647711008787155, -0.06551969051361084, 0.03418692573904991, 0.046972811222076416, 0.020464513450860977, -0.05037287250161171, -0.06232205778360367, -0.00018200116755906492, -0.04588399454951286, 0.0010203694691881537, -0.019271867349743843, 0.011129907332360744, -0.003034771652892232, 0.007053455803543329, -0.028926467522978783, -0.06957988440990448, 0.13337528705596924, 0.05923246219754219, 0.02939845435321331, -0.0017522249836474657, 0.05101197212934494, 0.03289526328444481, 0.012040727771818638, -0.02769535966217518, 0.0027967984788119793, -0.026490652933716774, 0.04121287539601326, 0.009501449763774872, 0.02532723732292652, 0.00301966886036098, 0.025110140442848206, 0.04436246678233147, -0.02770422212779522, 0.0035161511041224003, 0.016149897128343582, -0.058897845447063446, -0.05770144984126091, 0.02471005916595459, 0.009566538035869598, -0.00784764438867569, 0.005294415168464184, 0.007412820588797331, 0.012442978098988533, -0.031339380890131, -0.0072615500539541245, -0.015365106984972954, 0.028828240931034088, -0.05014974623918533, 0.02768944762647152, -0.031156431883573532, -0.029926644638180733, 0.07523796707391739, 0.006094587501138449, -0.01569792814552784, -0.0026397816836833954, 0.0011521490523591638, -0.03762947395443916, 0.004549028817564249, 0.03193465247750282, -0.0558699332177639, -0.00282957567833364, -0.00725093949586153, -0.014525314792990685, -0.004496993497014046, -0.01986372470855713, -0.046478159725666046, 0.02717694081366062, -0.043719369918107986, 0.036729104816913605, -0.004404930397868156, -0.029613107442855835, 0.027684731408953667, -0.01829187572002411, -0.006227743346244097, 0.006342045031487942, 0.03228071704506874, 0.03183590620756149, 0.028368011116981506, -0.0035840850323438644, 0.0091087706387043, -0.04410068318247795, 0.013984949328005314, 0.04106929898262024, -0.002180442912504077, -0.00397462910041213, -0.026561832055449486, -0.03457803279161453, 0.013647862710058689, -0.026852911338210106, -0.008945544250309467, 0.015629181638360023, 0.008363265544176102, -0.020967889577150345, 0.027869554236531258, -0.009307730942964554, -0.02410759963095188, -0.022729991003870964, -0.021769993007183075, -0.026044482365250587, -0.01475690957158804, 0.02832687646150589, 0.03613324090838432, -0.03754967451095581, -0.04968225210905075, -0.0019039302133023739, 0.0600612610578537, 0.019562512636184692, 0.02310882695019245, 0.009102561511099339, -0.035029198974370956, -0.023814808577299118 ]
Are you finding this site of value to you? This site, articles, and podcast are offered free of charge, without advertisements. That would not be possible without your generosity. Just scan the QR code with your mobile device, or with your mobile device browser click on the button below.
[ -0.0013788117794319987, 0.023916244506835938, -0.03616408631205559, -0.000500167952850461, -0.0015497428830713034, -0.006746110040694475, 0.01111849769949913, 0.04041554406285286, 0.0016673404024913907, 0.03133305907249451, 0.05708608403801918, 0.004656184930354357, 0.019657736644148827, -0.024529747664928436, -0.00451568653807044, -0.012119368650019169, 0.020916905254125595, -0.01649671606719494, -0.004184343386441469, -0.0029148694593459368, 0.0015363077400252223, 0.0084462258964777, -0.06325655430555344, -0.036905962973833084, -0.03264264017343521, 0.03498328477144241, 0.010720863938331604, -0.012104020453989506, 0.06676606833934784, 0.08715301007032394, -0.01377087738364935, -0.04051633179187775, 0.023155927658081055, -0.043362073600292206, -0.03347022458910942, -0.006148680578917265, 0.01681969314813614, -0.053912464529275894, -0.052299413830041885, -0.022616714239120483, -0.009942933917045593, 0.0201808400452137, 0.04681984335184097, -0.03629341349005699, -0.03228769451379776, 0.01708100363612175, -0.019500425085425377, -0.030183136463165283, -0.0003696624771691859, -0.013254368677735329, 0.008410364389419556, 0.0037057623267173767, 0.03149253502488136, 0.005034474190324545, 0.010122623294591904, 0.018945375457406044, 0.02105358988046646, -0.016848545521497726, -0.04749363288283348, 0.022854143753647804, 0.027002787217497826, 0.0003218980273231864, 0.023034868761897087, -0.050457168370485306, 0.022902486845850945, 0.05078255757689476, -0.01660134084522724, -0.015828169882297516, 0.021375073119997978, -0.03820279613137245, -0.012051238678395748, 0.003728941548615694, -0.020171647891402245, -0.013738235458731651, 0.004229580517858267, -0.02301393821835518, -0.011514601297676563, -0.020434075966477394, -0.013728057034313679, 0.02717667445540428, 0.012143977917730808, 0.03478742390871048, 0.011425204575061798, 0.038524940609931946, -0.043593522161245346, -0.005693153478205204, -0.00016070582205429673, -0.030751541256904602, 0.018323611468076706, -0.009614195674657822, 0.0014611334772780538, 0.0761089101433754, 0.03187873214483261, -0.023513151332736015, 0.024811536073684692, 0.06801390647888184, -0.018448496237397194, 0.050306133925914764, 0.02150910161435604, -0.0035056332126259804, 0.04870795086026192, 0.00024283798120450228, -0.03796915337443352, 0.05426935851573944, -0.0222595427185297, -0.009638296440243721, 0.0011821879306808114, -0.014385429210960865, -0.03018100932240486, -0.03890177235007286, -0.010502679273486137, -0.026144791394472122, 0.02023676410317421, -0.006177883129566908, -0.03631318360567093, 0.02006305567920208, -0.013839648105204105, 0.021029822528362274, -0.02571290358901024, 0.016895364969968796, -0.002280075801536441, 0.007671460974961519, 0.013166442513465881, -0.008913123048841953, 0.019672418013215065, -0.06253515928983688, 0.007094623055309057, 0.037107303738594055, -0.024285616353154182, -0.0029883079696446657, 0.009814864955842495, -0.027921447530388832, -0.021646270528435707, 0.004615481942892075, -0.01280531007796526, -0.005717878695577383, -0.018602464348077774, 0.014184865169227123, -0.0027350832242518663, -0.03833315894007683, 0.032480187714099884, 0.0030074450187385082, -0.0227174311876297, 0.09072598814964294, 0.022247307002544403, 0.025773786008358, -0.00027064321329817176, -0.02794848009943962, -0.02660762332379818, 0.05101102963089943, 0.0012549537932500243, 0.007854543626308441, -0.01047331839799881, 0.04236453026533127, -0.010643414221704006, 0.010367991402745247, 0.00829033087939024, 0.025451961904764175, 0.007962977513670921, 0.04170755296945572, 0.003907949663698673, 0.03841177001595497, -0.013337955810129642, 0.05448836833238602, -0.020786527544260025, 0.06380826979875565, -0.037671126425266266, -0.034409672021865845, 0.01707610860466957, -0.03748621791601181, 0.024917038157582283, 0.0003167262184433639, -0.02049885503947735, 0.020176133140921593, 0.024152785539627075, 0.033968158066272736, 0.03603999316692352, -0.001907933154143393, 0.05368013679981232, 0.05034317448735237, -0.011543609201908112, -0.012421402148902416, -0.007236712612211704, 0.0924452394247055, 0.013077188283205032, -0.0005898346425965428, 0.009860132820904255, -0.00647681625559926, -0.04502212628722191, -0.03296472504734993, 0.00445495406165719, 0.034848932176828384, -0.0724165290594101, 0.016991980373859406, 0.012599054723978043, 0.01356534194201231, -0.023255761712789536, -0.02953232079744339, -0.0024177918676286936, -0.10020167380571365, -0.029880627989768982, 0.03674078732728958, -0.02340811863541603, 0.022944914177060127, 0.005808879155665636, -0.009386553429067135, 0.04207899048924446, 0.08080333471298218, -0.03623642027378082, -0.00407011341303587, 0.04515324532985687, 0.025893550366163254, -0.025732064619660378, -0.03600495681166649, 0.008846276439726353, -0.015031138435006142, -0.029704654589295387, 0.05350511148571968, -0.014421371743083, -0.029338069260120392, 0.01517312228679657, 0.015089541673660278, 0.028544161468744278, 0.05253733694553375, -0.017304327338933945, 0.014364746399223804, 0.023872122168540955, 0.06389457732439041, -0.04742307960987091, -0.0042287856340408325, -0.012616910971701145, 0.06016959249973297, 0.01668335683643818, 0.07860089093446732, 0.01871958188712597, 0.013286009430885315, 0.03797086700797081, 0.028372179716825485, 0.02059016190469265, 0.03536621481180191, -0.017751170322299004, 0.008818450383841991, 0.05378352850675583, 0.006618804298341274, -0.02356829307973385, 0.01421959325671196, -0.00309047126211226, 0.026394454762339592, -0.05021892860531807, 0.021635955199599266, 0.010748365893959999, 0.03514259308576584, 0.019620660692453384, 0.056608833372592926, -0.02401772513985634, -0.016964130103588104, 0.054552361369132996, 0.06465715914964676, -0.03582822531461716, -0.004686302505433559, 0.004978390876203775, 0.07672039419412613, -0.0006333896890282631, 0.0007942710653878748, 0.025514444336295128, -0.0205178651958704, -0.005714905448257923, 0.04027354717254639, -0.007339316885918379, -0.03365010395646095, -0.04074712097644806, -0.06775566190481186, -0.042519841343164444, -0.03544960543513298, -0.022022776305675507, -0.004752707667648792, 0.033861882984638214, -0.05183017626404762, 0.01476242858916521, -0.019203944131731987, 0.0038340904284268618, -0.021217260509729385, -0.025558169931173325, 0.048413850367069244, 0.03974488005042076, 0.042131684720516205, -0.04675005003809929, 0.03960666432976723, -0.01850801333785057, 0.023157265037298203, -0.019354458898305893, 0.0005661399918608367, 0.01543649286031723, -0.028035463765263557, 0.04027082026004791, 0.002299852902069688, -0.004195003770291805, -0.015781311318278313, -0.037944305688142776, -0.03873741254210472, 0.0016398242441937327, 0.016741730272769928, 0.004991845227777958, 0.014881525188684464, -0.023289158940315247, 0.03296688199043274, 0.01449396088719368, -0.010963964276015759, 0.038032397627830505, 0.04750595614314079, -0.039178021252155304, 0.03150632232427597, 0.026523388922214508, 0.018603703007102013, -0.03933321684598923, 0.038190923631191254, 0.04980272799730301, -0.000627502566203475, -0.017030909657478333, -0.005751555785536766, -0.04043729230761528, -0.011918162927031517, 0.006191246211528778, -0.014600309543311596, -0.027206527069211006, 0.027290306985378265, 0.022851236164569855, -0.08843952417373657, 0.008641785010695457, -0.055820003151893616, -0.039516840130090714, -0.033839304000139236, -0.017958082258701324, 0.01774091273546219, -0.0021273416932672262, 0.003795794676989317, 0.014474475756287575, -0.022270092740654945, 0.020241882652044296, 0.010878363624215126, 0.04481618106365204, -0.0009850378846749663, 0.00027876882813870907, 0.03428203985095024, -0.00036267549148760736, -0.001267764950171113, -0.011194639839231968, -0.01609363965690136, -0.00217384472489357, 0.011319717392325401, -0.01706070825457573, 0.013961849734187126, -0.0008609302458353341, 0.02627590298652649, 0.010158807970583439, 0.060084108263254166, -0.044859450310468674, -0.004115151707082987, 0.016923001036047935, 0.014572329819202423, 0.034676630049943924, 0.011322692967951298, 0.026509104296565056, -0.02081756293773651, -0.013351363129913807, -0.03685789182782173, 0.02613498829305172, 0.01081877201795578, 0.049051497131586075, -0.051471829414367676, 0.08887942880392075, 0.017247820273041725, -0.03942175582051277, 0.059117674827575684, -0.06367912143468857, 0.011216260492801666, 0.06190110743045807, -0.03845052421092987, 0.030581722036004066, -0.05187029018998146, 0.0031947437673807144, -0.035834092646837234, 0.03326127678155899, 0.07406367361545563, -0.0039190687239170074, 0.01677197404205799, 0.0067550018429756165, -0.02427009493112564, -0.020485855638980865, -0.003618568880483508, -0.04800305515527725, -0.002428476931527257, 0.021915312856435776, -0.015195625834167004, -0.03797588869929314, -0.041943687945604324, 0.029930181801319122, 0.028700079768896103, 0.038695842027664185, -0.0001611667830729857, 0.05119984969496727, 0.007973378524184227, 0.05604587867856026, 0.04239903762936592, -0.0014732604613527656, -0.013111337088048458, -0.034358590841293335, 0.04125814512372017, -0.001714122947305441, -0.022137949243187904, -0.020878929644823074, -0.023222191259264946, -0.012755176983773708, 0.03569604456424713, 0.03270600736141205, -0.008442566730082035, -0.04815131053328514, 0.020867817103862762, -0.03439808264374733, 0.014808489009737968, -0.019378941506147385, 0.0008551005157642066, -0.04293826222419739, 0.056053079664707184, 0.04721490666270256, -0.033999402076005936, 0.005318572744727135, -0.024969518184661865, 0.03329366818070412, 0.04495258629322052, -0.0023952294141054153, -0.04187123849987984, -0.025738833472132683, -0.05673982575535774, -0.013300230726599693, 0.013812718912959099, 0.0073041715659201145, 0.007880792021751404, -0.012234673835337162, -0.017938658595085144, 0.01825452223420143, 0.028385264798998833, 0.01727435737848282, 0.00370032642967999, -0.027804600074887276, 0.0009429525816813111, -0.0004327793139964342, 0.04092058911919594, -0.01897803507745266, -0.036849915981292725, 0.043222054839134216, -0.06551150232553482, 0.007937086746096611, 0.008885151706635952, -0.002503060968592763, -0.01891472004354, 0.03222964331507683, -0.012200149707496166, 0.04009205102920532, -0.01279429905116558, 0.0354219526052475, 0.029028408229351044, 0.04420530050992966, -0.04083072394132614, -0.02471357211470604, 0.023964131250977516, -0.012437188997864723, -0.017389947548508644, 0.013223923742771149, 0.056368034332990646, -0.01112514641135931, 0.04255921021103859, 0.0013157287612557411, -0.05820109322667122, 0.031764209270477295, -0.03897304832935333, 0.009213922545313835, -0.00709758885204792, -0.030858492478728294, 0.04380215331912041, -0.06347624212503433, 0.02050475776195526, -0.0028939000330865383, 0.0008199735311791301, -0.05831807851791382, -0.03831874579191208, -0.02967675030231476, 0.019449735060334206, -0.034149590879678726, 0.029819615185260773, -0.0017750855768099427, -0.03169719874858856, -0.014090376906096935, -0.01675359345972538, -0.000628352805506438, -0.0015204781666398048, -0.03007405251264572, -0.001301646581850946, 0.008917068131268024, 0.006384356878697872, 0.011232035234570503, -0.0310161504894495, -0.023069875314831734, 0.008172702044248581, 0.0040391841903328896, -0.015598585829138756, -0.05309139937162399, -0.012419226579368114, 0.023205408826470375, -0.03642871603369713, -0.0036983350291848183, 0.02609766647219658, -0.028532404452562332, -0.013510119169950485, 0.034889623522758484, -0.0040161991491913795, 0.03227800875902176, 0.011310417205095291, -0.038052964955568314, 0.04775160178542137, 0.01319331955164671, -0.04651350900530815, -0.03175926208496094, 0.02268642745912075, -0.0007145723793655634, 0.05129900947213173, -0.00033091232762672007, -0.048629071563482285, -0.03189218044281006, -0.03319615125656128, -0.006936831399798393, -0.030300205573439598, -0.02131200022995472, -0.049185823649168015, -0.05806291103363037, -0.04769662395119667, 0.053223468363285065, 0.002089589834213257, 0.004706177860498428, 0.019218433648347855, -0.04681172966957092, -0.0031512738205492496, -0.03242438659071922, 0.019120844081044197, -0.019370930269360542, -0.023195842280983925, 0.007206374313682318, 0.05984530225396156, 0.02377934753894806, -0.013918834738433361, -0.012014060281217098, 0.0076050907373428345, 0.000014973834367992822, -0.014711381867527962, -0.0412115752696991, -0.02941627986729145, 0.0016497138421982527, 0.01953364536166191, -0.0300237275660038, 0.0074608102440834045, -0.036191921681165695, 0.056087762117385864, -0.03825223073363304, 0.010655305348336697, -0.027247967198491096, -0.024862922728061676, -0.007394711021333933, 0.004945136606693268, 0.03838619962334633, -0.03775491192936897, -0.002731315791606903, -0.021605273708701134, 0.059120580554008484, 0.00744201522320509, -0.014194785617291927, -0.057056695222854614, -0.012103257700800896, -0.02824185974895954, -0.038261767476797104, -0.014451571740210056, -0.01543428935110569, -0.013997307047247887, -0.016953598707914352, -0.012873019091784954, 0.026915766298770905, -0.016505343839526176, 0.006659138016402721, 0.07706843316555023, -0.010115028358995914, -0.02507803961634636, -0.05734630301594734, 0.0470963753759861, 0.04228363186120987, -0.011675316840410233, 0.009829815477132797, -0.000394262169720605, -0.024547385051846504, 0.004847714677453041, -0.03685622289776802, -0.02985185757279396, -0.050622690469026566, -0.00970330461859703, 0.05051673203706741, -0.0227898508310318, 0.025046711787581444, 0.011769337579607964, -0.06488737463951111, -0.02665509469807148, 0.03696205094456673, 0.013591951690614223, 0.031926508992910385, 0.05987086519598961, 0.026330145075917244, -0.01216927170753479, 0.012287541292607784, -0.005480986554175615, 0.011864078231155872, -0.05256698653101921, 0.06884051859378815, -0.01863269694149494, -0.03566230461001396, 0.0037812902592122555, 0.06707870960235596, -0.05494898930191994, -0.04512115567922592, -0.015357008203864098, 0.005130360834300518, 0.008848343975841999, -0.016001366078853607, 0.027891522273421288, -0.019650518894195557, -0.014317682944238186, 0.003194204531610012, 0.03234831243753433, -0.0008551727514714003, 0.029264966025948524, 0.012830176390707493, 0.03580432012677193, -0.059191375970840454, 0.021912695840001106, 0.03952597454190254, -0.0005030701868236065, -0.04292619600892067, -0.03431877866387367, 0.0019795126281678677, -0.007940639741718769, 0.0031169955618679523, 0.03263898566365242, -0.027271203696727753, -0.002359179314225912, 0.021272584795951843, 0.010559848509728909, 0.03561986982822418, 0.0344209223985672, -0.016948668286204338, 0.024022046476602554, -0.026744725182652473, -0.07129257172346115, -0.04571752995252609, 0.0015587967354804277, -0.001220111851580441, 0.02766161598265171, -0.07064861804246902, 0.03529929742217064, 0.025535842403769493, -0.017504576593637466, -0.0193881057202816, -0.05404658988118172, -0.029714729636907578, -0.03870881348848343, -0.04229924827814102, -0.02900753915309906, -0.0327453687787056, -0.01687588542699814, 0.029816048219799995, -0.012547936290502548, -0.030489644035696983, -0.010853620246052742, 0.029390225186944008, -0.0018587007652968168, 0.001803422230295837, -0.05529142543673515, 0.031147556379437447, -0.04034418240189552, -0.049721430987119675, -0.03567606583237648, -0.0016588442958891392, -0.02131255529820919, -0.005088492762297392, -0.02933269925415516, 0.014520027674734592, -0.001879753079265356, 0.03205971047282219, -0.009473184123635292, 0.020580904558300972, -0.024408521130681038, -0.013610506430268288, 0.018528906628489494, 0.031480204313993454, -0.014059938490390778, 0.03907354921102524, 0.029605038464069366, -0.01742837205529213, 0.01980871520936489, 0.009278621524572372, -0.02518896944820881, -0.04003448784351349, -0.006912583485245705, -0.015926681458950043, 0.01784355379641056, -0.031226472929120064, -0.02115500345826149, 0.0009551018592901528, -0.04965575784444809, 0.014610971324145794, -0.023883575573563576, 0.019380180165171623, 0.023170700296759605, -0.028677908703684807, -0.006782985758036375, 0.03661539778113365, -0.02266572043299675, 0.018493372946977615, -0.010773146525025368, 0.04979047551751137, -0.0022150876466184855, -0.024332169443368912, 0.06805667281150818, 0.017884984612464905, 0.037282295525074005, -0.023785144090652466, -0.0018142719054594636, 0.01135562639683485, -0.04029853641986847, 0.032587211579084396, -0.022984078153967857, -0.02245400846004486, -0.06911211460828781, -0.0186774879693985, 0.002389084780588746, 0.029559576883912086, 0.021358175203204155, 0.017366359010338783, 0.024526720866560936, -0.048035796731710434, -0.02723092772066593, 0.026548966765403748, -0.07389353215694427, -0.04901141673326492, 0.06240829825401306, -0.0447533018887043, 0.01621152274310589, -0.030283814296126366, -0.04196952283382416, -0.013320324011147022, -0.020472077652812004, -0.015767836943268776, -0.010097269900143147, 0.05506587028503418, -0.01300140656530857, 0.04430687054991722, 0.028805706650018692, 0.00593869062140584, -0.012458291836082935, 0.05312850698828697, -0.034704867750406265, -0.06712274253368378, 0.01735866069793701, 0.011656210757791996, 0.017859114333987236, -0.03244785964488983, 0.003035175148397684, -0.0010015005245804787, -0.0022469402756541967, 0.024379881098866463, 0.008752888068556786, 0.049031469970941544, -0.011941717937588692, 0.04376880079507828, -0.011564107611775398, 0.021978037431836128, -0.023726657032966614, 0.03004102036356926, 0.01810310408473015, -0.025720642879605293, -0.01336593646556139, 0.03491015359759331, 0.04108279570937157, -0.008133715949952602, 0.018030362203717232, 0.02932189777493477, 0.03434152901172638, -0.014076941646635532, -0.004272154066711664, 0.009980406612157822, 0.015351535752415657, 0.047933585941791534, 0.03829934820532799, -0.014116579666733742, 0.028206519782543182, 0.03804197907447815, 0.0031957325991243124, -0.004709526430815458, 0.009891198948025703, 0.012910176068544388, -0.053547609597444534, -0.016613507643342018, -0.007956236600875854, 0.018008360639214516, 0.011379551142454147, -0.014289711602032185, -0.022339072078466415, -0.04316125065088272, -0.024993455037474632, -0.025148214772343636, -0.029769469052553177, 0.0689820796251297, -0.023083971813321114, 0.021828213706612587, -0.019284619018435478, -0.019452854990959167, -0.01919577084481716, 0.01618015207350254, 0.005264929495751858, -0.020315101370215416, 0.030963143333792686, 0.04829981178045273, -0.013621106743812561, 0.039047833532094955, 0.015958450734615326, 0.024433474987745285, -0.033391352742910385, 0.017361698672175407, 0.005652932915836573, 0.008241677656769753, -0.013152070343494415, -0.014529491774737835, -0.02996859699487686, 0.03142321854829788, -0.018764497712254524, -0.01920164003968239, 0.04297000169754028, -0.0460822656750679, 0.00509916665032506, -0.05249964818358421, 0.01013833750039339, -0.04544157162308693, -0.037659335881471634, 0.019914811477065086, 0.00950416550040245, -0.016977835446596146, 0.040965307503938675, -0.003333559026941657, 0.0439089760184288, -0.008888805285096169, 0.035004764795303345, -0.021307697519659996, 0.04054434970021248, 0.0739738941192627, -0.01838509738445282, 0.015336539596319199, 0.022796962410211563, 0.01057950034737587, -0.03206003084778786, -0.0011992536019533873, -0.040728479623794556, -0.007700631394982338, -0.006539262365549803, -0.020037133246660233, -0.03453214839100838, 0.026752600446343422, 0.02879788912832737, -0.043342266231775284, -0.027553806081414223, 0.02559960074722767, -0.035191137343645096, 0.011742424219846725, 0.010363862849771976, 0.02282588556408882, -0.018305184319615364, -0.05367942526936531, 0.002862130757421255, -0.024774322286248207, 0.00026110332692041993, -0.04743077605962753, 0.043097350746393204, -0.02231469936668873, -0.028699006885290146, -0.046912986785173416, -0.043781403452157974, -0.010066518560051918, -0.009873920120298862, -0.05748511105775833, -0.057043783366680145, 0.019163398072123528, 0.031986407935619354, -0.007340872194617987, 0.012038081884384155, -0.009629284031689167, -0.00035527910222299397, 0.030642585828900337, 0.05348359793424606, 0.01916959136724472, 0.06457725167274475, 0.07175859063863754, 0.01171944197267294, 0.013556985184550285, -0.020892390981316566, 0.030261198058724403, -0.0009704328840598464, -0.025496140122413635, -0.030973931774497032, 0.0002666176587808877, -0.04040749371051788, -0.04218186065554619, 0.02588922716677189, 0.04391248896718025, 0.0014501359546557069, -0.022848889231681824, -0.07506898790597916, -0.00705777807161212, -0.03559551015496254, -0.010181503370404243, -0.06250299513339996, 0.017426544800400734, 0.015498307533562183, -0.0008383794338442385, -0.02072255313396454, -0.06424319744110107, 0.13877126574516296, 0.05369729921221733, 0.052266448736190796, 0.00628763809800148, 0.011850797571241856, 0.045600879937410355, 0.031235385686159134, -0.00859486311674118, 0.018694689497351646, -0.03451303020119667, 0.036090899258852005, -0.011214155703783035, 0.02636914886534214, 0.014068970456719398, 0.007452256046235561, 0.04502289742231369, -0.00986394938081503, -0.02428301051259041, 0.0055771758779883385, -0.02715008705854416, -0.05915099009871483, 0.023387575522065163, -0.006227314937859774, 0.022515058517456055, 0.013110707513988018, 0.02180636301636696, 0.010697931051254272, -0.03902953863143921, -0.022999197244644165, -0.012373195961117744, 0.03789361193776131, -0.02512812428176403, 0.035822272300720215, -0.009895105846226215, -0.05917568877339363, 0.0418076328933239, 0.004674599505960941, 0.0029339315369725227, 0.01502631139010191, 0.03925865516066551, -0.03362215310335159, -0.017623858526349068, 0.032179154455661774, -0.04060254618525505, -0.0012838148977607489, 0.04392480105161667, -0.028266267850995064, 0.009459693916141987, 0.007575015537440777, -0.035545896738767624, 0.03926519677042961, -0.003728961804881692, 0.01603272557258606, -0.03733383119106293, -0.032752182334661484, 0.02701823227107525, 0.04893190786242485, -0.012798752635717392, -0.008001454174518585, -0.02158939838409424, 0.014014571905136108, 0.03408602997660637, -0.03388157859444618, -0.008459593169391155, -0.03343818709254265, 0.013216801919043064, 0.02458213083446026, 0.033388957381248474, 0.026165781542658806, 0.0006819973350502551, -0.03335486352443695, -0.008144757710397243, -0.022164706140756607, -0.04508739337325096, 0.011288325302302837, 0.041456710547208786, 0.004855696577578783, 0.021119270473718643, -0.0020597123075276613, -0.04152194783091545, -0.015023174695670605, -0.04115687683224678, -0.010700901038944721, -0.029189372435212135, 0.03332555294036865, 0.018722331151366234, -0.03402522951364517, -0.04257970303297043, -0.04004046320915222, 0.06266363710165024, 0.04377580061554909, 0.015069224871695042, 0.010025757364928722, -0.019768089056015015, 0.008163373917341232 ]
Insights from industry Expanding Life Science Capabilities with Optical Fluorescence Interview conducted by Will SoutterMar 3 2014 In this interview, Dr. Mark R. Munch, president of Bruker Nano Surfaces and Bruker MAT Group, talks to AZoNano about the strategy behind the recent acquisition of Prairie Technologies, and how their optical fluorescence technology compliments Bruker Nano Surfaces' existing product lines. Bruker's Nano Surfaces division recently acquired Prairie Technologies. To begin with, can you tell us the strategy behind this acquisition? Our strategy for the acquisition was based on four things. First, it opens new markets for the Bruker Nano Surfaces division. We have been seeing growth in optical fluorescence and life science, and those are nice market segments for us to go into to grow our microscopy portfolio. The second reason is that it strengthens our position in life science overall. Bruker Nano Surfaces already has a significant presence in life science through our bio-AFM platforms and, with optical fluorescence microscopy being such a predominant tool in that field, it's a really great addition to our portfolio. The third reason is related to that combination of technologies. There is a lot of synergy between optical fluorescence microscopy and bio-AFM. For example, we have an optical integrated AFMโ€”our BioScope Catalyst. Every Catalyst we sell ends up integrated with a fluorescence confocal microscope, so it's a natural step to try and gain that capability ourselves. The fourth reason is that we want to build on that synergy. We see that we can offer new ways to do experiments if we offer both capabilities. There is a lot of talk about correlative microscopy and combining results from more than one method. Not only can we do that, we can go beyond correlative microscopy and offer entirely new platforms for experimentation. We can imagine stimulus response measurements, for example, where we probe with an AFM and then watch the response optically. So there are a lot of reasons behind the move into this space. These are the four main ones, and they are pretty compelling to us. The Opterra Multipoint Scanning Confocal Microscope from Bruker's new Fluorescence Microscopy business (formerly Prairie Technologies) Can you tell us a bit about the technology and products that Prairie has to offer? Prairie's technology is based on two main platforms: multi-photon microscopy and multipoint scanning confocal microscopy. There is a lot of specialization within those platforms, but it's all really based on that. Prairie Technologies pioneered the multi-photon microscopy space commercially. Prairie was the first to offer apparatus allowing two-photon research, and that is their main platform in terms of sales. More recently, they have moved into multipoint scanning confocal microscopy. Most people in the world are using spinning disk systems, but Prairie's technology is based on laser galvanos, which offers some nice advantages over the spinning disk technologies. Across both those areas, Prairie offers a lot in terms of photoactivation, allowing users to ablate certain regions or stimulate the occurrence of certain events. Most people would concur that Prairie has some great leading technology in that area, and that it is applicable across both multi-photon and multipoint scanning microscopy. What does this technology bring to Bruker Nano Surfaces, and how does it complement your existing product lines? Multiphoton microscopy is a dominant technique in neurobiology because it allows you to inspect much deeper into tissues, using much longer wavelengths. You can also select wavelengths with less scattering and still harness the multiphoton or two-photon excitation to excite the molecules effectively. This technique has proven very useful, and it complements our existing products nicely because we have been doing a lot of work with applications of AFM in neurobiology. Multipoint scanning confocal microscopy is very useful in terms of live-cell imaging and picking up fast, dynamic events. Of course, that is also an area where AFMs are increasingly used, as well, with products such as our FastScan Bio. So the technology is certainly complementary in an application sense. How long has this acquisition deal been in the pipeline, and how did the discussion start? We started really studying the market in depth in 2012. A team here did a really deep survey into different segments of life science, and we started to get a grasp on what the real growth areas are and who had some leading capabilities in the space. Coming out of 2012 and into early 2013, we then started acting on it in terms of specific conversations, and we spent a lot of time getting to know Prairie. That process then led to closing the acquisition in the fall, in September through October. Did you know from quite early in the process that life science in general, and fluorescence microscopy in particular, was the area you wanted to look at? Absolutely. As part of our strategy as far back as 2010-2011, we had targeted that space. In 2012 we started executing on that strategy, sorting out the detail of who to target, and Prairie stood out as an ideal match with their leading technology in that area. Bruker Nano Surfaces has launched a number of new products in the bioscience space recently, and this is a strong growth area for Bruker as a whole. Is this an indicator of increased market demand in this sector? For Bruker Nano Surfaces specifically, it definitely strengthens our position and offering in life science. We have had a lot of activity in that area recently, beginning with the launch of the FastScan Bio AFM, which is capable of imaging dynamic events in a way that AFMs traditionally haven't been able to do. We've also made a lot of improvements to the Bioscope Catalyst optical integrated AFM. Now we are adding the Prairie products. We just released the Opterra Multipoint Scanning Confocal Microscope at ASCB in December. We are contributing a lot to the life science market, and this acquisition represents a commitment to do more. It's not just our product lines, either. This acquisition is also about strengthening our applications knowledge, being able to address customer needs, and offering better solutions in life science. Bruker as a whole has always been very active in life science, from identifying protein crystallization structures to preclinical imaging, and all those areas of life science are still very strong. Bruker currently spans many dimensions in life science, from whole-animal imaging in preclinical studies, right down to studies on the cellular or even electrical level. Is Prairie Technologies fully integrated within Bruker as a division or business unit? Where do they sit within the structure of Bruker Nano Surfaces? Prairie is a wholly intact business unit within Bruker Nano Surfaces. That means that Prairie operates as it always has. Existing customers won't notice a difference in responsiveness or customer service. Prairie has always been very responsive in terms of support, and also in terms of tailoring products to their customers' needs, and that will continue. Also, Prairie has always been very focused on North America. Being part of the Bruker Nano Surfaces division will enable them to offer their products to the rest of the world, as well, by leveraging our broader capabilities in sales, application support and service support. So customers will really see the best of both worlds, and Prairie will benefit from that as well. Bruker Nano Surfaces has conducted a number of acquisitions to bring in new product lines. Is this a longer term strategy for growth? The Bruker Nano Surfaces division does have a very strong business foundation from which to do acquisitions, but our primary objective is growing the businesses we have and delivering value to our customers. If an opportunity arises, as it did with Prairie, and it makes sense strategically for us, we will certainly look at those opportunities. But we will only consider further acquisitions in certain special cases. Our strategy is really to focus on organic growth from this point on, not to target growth through acquisitions. It has been a few months since the acquisition now. What has the response been, both internally and from customers, now that Prairie is settled in as part of Bruker? The response from all sides has been very positive. It's a great acquisition and a great fit. We've had very positive comments already from both sides of the customer base, from Prairie's existing customers and from our AFM users, and that's always very encouraging to see. About Mark Munch Dr. Mark R. Munch, Ph.D. is President of Bruker Nano, Inc. and Bruker MAT Group, a wholly-owned subsidiary of Bruker Corp. Dr. Munch has served since September 2012 as President of Bruker MAT Group, with responsibility for management of the global operations of the company Bruker MAT Group, which manufactures and distributes the company's advanced analytical X-ray technologies and spark-optical emission spectroscopy, atomic force microscopy and stylus and optical metrology instrumentation used in non-destructive molecular, materials and elemental analysis. Dr. Munch has also served as President of Bruker Nano, Inc., a wholly-owned subsidiary of the Company, since October 2010. Prior to joining Bruker Nano, Inc., from February 2008 to October 2010, Dr. Munch was Executive Vice President of Veeco Instruments Inc. Dr. Munch has also served as a Senior Vice President of Coherent, Inc. from February 2006 to January 2008 and as President and Chief Executive Officer of Cooligy, Inc., a subsidiary of Emerson Electric, from 2004 to 2006. Dr. Munch's background includes over 23 years of experience in marketing, product development, operations and sales, as well as experience in managing business units of multi-national corporations. Dr. Munch holds a Bachelor of Science degree in Chemical Engineering from the University of Colorado and a Master of Science degree and Ph.D. in Chemical Engineering from Stanford University. Disclaimer: The views expressed here are those of the interviewee and do not necessarily represent the views of AZoM.com Limited (T/A) AZoNetwork, the owner and operator of this website. This disclaimer forms part of the Terms and Conditions of use of this website. Bruker Nano Surfaces. (2019, January 16). Expanding Life Science Capabilities with Optical Fluorescence. AZoNano. Retrieved on February 01, 2023 from https://www.azonano.com/article.aspx?ArticleID=3814. Bruker Nano Surfaces. "Expanding Life Science Capabilities with Optical Fluorescence". AZoNano. 01 February 2023. <https://www.azonano.com/article.aspx?ArticleID=3814>. Bruker Nano Surfaces. "Expanding Life Science Capabilities with Optical Fluorescence". AZoNano. https://www.azonano.com/article.aspx?ArticleID=3814. (accessed February 01, 2023). Bruker Nano Surfaces. 2019. Expanding Life Science Capabilities with Optical Fluorescence. AZoNano, viewed 01 February 2023, https://www.azonano.com/article.aspx?ArticleID=3814. Nanobrรผcken 2022: Nanomechanical Testing Conference How to Detect Biological Samples in Nanoscale Detail Bruker Launches IconIR Nanoscale IR Spectroscopy Platform
[ -0.010216980241239071, -0.03107115626335144, -0.026249239221215248, 0.007074702065438032, -0.009634191170334816, 0.027258697897195816, -0.011579740792512894, 0.020861655473709106, 0.043483853340148926, 0.0255099069327116, 0.03380013257265091, -0.027500340715050697, 0.01079308707267046, -0.023513350635766983, -0.012177514843642712, 0.014466733671724796, 0.026600385084748268, -0.020732490345835686, -0.012515426613390446, -0.0020336078014224768, -0.01979893259704113, -0.007558717392385006, -0.054209835827350616, -0.005757196340709925, -0.030775761231780052, 0.059232305735349655, 0.009524158202111721, -0.012291239574551582, 0.07523282617330551, 0.04722463712096214, -0.03651116043329239, -0.0662989467382431, 0.013965031132102013, -0.06683949381113052, -0.0250987708568573, -0.031244006007909775, 0.038089677691459656, -0.019324176013469696, -0.051436133682727814, -0.03397122025489807, 0.01571536436676979, -0.012974477373063564, 0.0427272692322731, -0.041453443467617035, -0.02694263868033886, 0.015906626358628273, -0.003023869823664427, -0.03317496180534363, 0.0072014289908111095, -0.024823712185025215, 0.011278114281594753, 0.018905222415924072, 0.003535840194672346, 0.006287228316068649, 0.016370737925171852, 0.007499073166400194, 0.011091511696577072, -0.001735855475999415, -0.029804501682519913, 0.032127849757671356, 0.04016656428575516, -0.02660151943564415, 0.01458409707993269, -0.03728899732232094, 0.04102174565196037, 0.06308706104755402, 0.007815675809979439, -0.02126126177608967, 0.0319906510412693, -0.030770324170589447, -0.01041525136679411, -0.001599117531441152, -0.03046543337404728, -0.02122013084590435, 0.008695140480995178, -0.021059134975075722, 0.004523525945842266, 0.005069343838840723, -0.017152441665530205, -0.0024846054147928953, 0.011463349685072899, 0.033871401101350784, -0.027520205825567245, 0.030073801055550575, -0.042905427515506744, -0.012911243364214897, -0.02745402418076992, 0.013168287463486195, 0.028962843120098114, 0.015885114669799805, 0.022467773407697678, 0.06486968696117401, 0.013477470725774765, -0.01178305596113205, 0.02887152135372162, 0.04587063565850258, -0.05864375829696655, 0.020878927782177925, -0.007311651948839426, -0.00090065598487854, 0.04477629065513611, 0.03569116070866585, 0.0012207209365442395, 0.05735284090042114, -0.045543912798166275, 0.003413063706830144, 0.010282055474817753, 0.005222849547863007, -0.003670408157631755, -0.05120939388871193, -0.020964128896594048, -0.02705361694097519, 0.0054120575077831745, 0.001113217556849122, -0.033347237855196, 0.05362565815448761, -0.02329126000404358, 0.036931004375219345, -0.029459504410624504, 0.011288199573755264, 0.003812006674706936, -0.011397410184144974, 0.048874709755182266, -0.036576803773641586, 0.019555741921067238, -0.009899684228003025, -0.03468860685825348, 0.03985155001282692, -0.020585769787430763, -0.004948493558913469, 0.0012702331878244877, -0.04754626378417015, -0.019821934401988983, 0.028217775747179985, -0.00405370956286788, -0.01864408142864704, 0.007103608455508947, 0.01782388985157013, 0.006119121331721544, -0.0264248289167881, 0.03526134788990021, 0.034924235194921494, -0.0021724409889429808, 0.0848952904343605, 0.008602401241660118, 0.03968089818954468, -0.026271143928170204, -0.039323046803474426, -0.024089660495519638, 0.024061189964413643, -0.02616848796606064, 0.016479648649692535, 0.0076806615106761456, 0.01949436031281948, 0.002231990685686469, 0.005758357234299183, -0.023402150720357895, 0.030292075127363205, 0.04514206573367119, -0.013589990325272083, -0.010796762071549892, 0.014717611484229565, -0.018667055293917656, 0.03531048446893692, -0.02922368422150612, 0.026976238936185837, -0.011639098636806011, -0.012106315232813358, 0.013680709525942802, -0.021449055522680283, 0.023568056523799896, 0.008104638196527958, -0.010919900611042976, 0.02934667281806469, 0.04769035428762436, 0.031464606523513794, 0.07271377742290497, 0.030354833230376244, 0.020336372777819633, 0.038425762206315994, -0.048078037798404694, -0.024131769314408302, -0.02092343010008335, 0.07409371435642242, 0.0262013990432024, -0.006107862573117018, -0.010142209008336067, -0.02157602831721306, -0.021630190312862396, -0.046458594501018524, -0.008570816367864609, 0.03692515566945076, -0.029474223032593727, 0.03035871312022209, -0.034089379012584686, 0.002552388235926628, -0.0011461072135716677, 0.022470572963356972, -0.010174873284995556, -0.03629985824227333, -0.002332924632355571, 0.009403886273503304, -0.04422194883227348, 0.028109349310398102, 0.0018019921844825149, -0.013221383094787598, 0.03260218724608421, 0.048736996948719025, -0.08126505464315414, 0.013729235157370567, 0.047281984239816666, 0.0070882923901081085, -0.01964590698480606, -0.02226773090660572, 0.011149420402944088, -0.030456453561782837, -0.008575472049415112, 0.02787642739713192, -0.011974664404988289, 0.0023431451991200447, 0.014055573381483555, -0.02615661546587944, 0.025867043063044548, 0.007168494630604982, -0.021167410537600517, 0.00971005018800497, 0.017352450639009476, 0.04363469034433365, -0.022661268711090088, -0.024995606392621994, -0.014937574043869972, 0.06968190521001816, 0.013937952928245068, 0.07716955244541168, 0.026446420699357986, 0.04037770628929138, 0.0453396700322628, 0.016995450481772423, -0.004371859133243561, -0.004746193997561932, 0.005183437839150429, 0.010784003883600235, 0.016295354813337326, 0.03252594918012619, 0.002453150926157832, 0.015236429870128632, -0.03231174498796463, -0.015857022255659103, -0.026855887845158577, 0.03412135690450668, -0.03842214122414589, 0.05208207666873932, 0.013434137217700481, 0.031347282230854034, -0.04010751470923424, 0.002660488011315465, 0.011964029632508755, 0.03625398501753807, -0.035900503396987915, -0.038331951946020126, 0.006504320539534092, 0.04763754457235336, -0.026726922020316124, 0.013791225850582123, 0.05329989269375801, 0.039383258670568466, -0.010762136429548264, 0.023462118580937386, -0.020775064826011658, -0.03832405433058739, -0.05000888928771019, -0.06691797822713852, -0.0400240533053875, -0.027013111859560013, -0.05453735589981079, -0.030135218054056168, 0.06380712985992432, -0.025318779051303864, 0.018657322973012924, 0.03362376615405083, 0.00813661701977253, -0.006303086411207914, -0.017808008939027786, 0.04062048718333244, 0.019321219995617867, 0.051527395844459534, -0.0021532841492444277, 0.055050309747457504, -0.018355727195739746, 0.030808325856924057, -0.03292515501379967, -0.0011428284924477339, -0.027013534680008888, -0.026288220658898354, 0.032268933951854706, 0.022063933312892914, -0.020615775138139725, -0.022034363821148872, -0.02228846400976181, -0.04123375192284584, -0.020433424040675163, 0.005295029375702143, 0.00925787165760994, -0.011335726827383041, -0.019562162458896637, 0.0591747984290123, 0.023831404745578766, -0.01599668152630329, 0.056458961218595505, 0.04311554506421089, -0.06821727752685547, 0.04870431125164032, 0.01957765594124794, 0.01261177659034729, -0.04591141268610954, 0.05067940056324005, 0.05220804736018181, -0.0066574737429618835, 0.007317068986594677, -0.0160222128033638, -0.03473711386322975, 0.00333951017819345, 0.03114834614098072, -0.029346683993935585, -0.06317397207021713, 0.038696691393852234, 0.009731046855449677, -0.06976485252380371, 0.04199258238077164, -0.026715897023677826, -0.0527506023645401, -0.02932889573276043, -0.023358594626188278, 0.0474776066839695, -0.0023752539418637753, -0.0005048478487879038, 0.007666066754609346, -0.017194559797644615, -0.001993283862248063, 0.018400538712739944, 0.059591859579086304, -0.040932007133960724, 0.018441643565893173, 0.03378348797559738, 0.025868838652968407, 0.015878627076745033, 0.03690607100725174, -0.023927239701151848, 0.03449644893407822, -0.02003893442451954, -0.010019699111580849, -0.009172984398901463, -0.0026358484756201506, -0.01191627699881792, -0.012362870387732983, 0.039918333292007446, -0.02524818480014801, 0.0044776676222682, -0.0024199378676712513, -0.0005333916051313281, 0.01866045594215393, 0.006582270376384258, 0.013349836692214012, -0.018686464056372643, -0.06915836036205292, -0.04274719953536987, 0.018996387720108032, -0.02178184501826763, 0.06365668773651123, -0.059327200055122375, 0.04569867253303528, -0.025010662153363228, -0.027892524376511574, 0.03604511544108391, -0.03985945135354996, 0.021699437871575356, 0.04457717761397362, -0.016156235709786415, 0.04527764394879341, -0.06258087605237961, 0.0007772999815642834, -0.008189457468688488, 0.02567027509212494, 0.03248849883675575, 0.004765999503433704, 0.028533441945910454, -0.007067977916449308, -0.004794500768184662, -0.01840396784245968, -0.0143183758482337, -0.013460488058626652, -0.02728138118982315, -0.013724132440984249, 0.017031647264957428, -0.024475065991282463, -0.04010042920708656, 0.04803798720240593, 0.021292956545948982, 0.029673708602786064, -0.006814315915107727, 0.04111339524388313, 0.008575167506933212, 0.05362631380558014, 0.04426681622862816, -0.010695220902562141, 0.007577323820441961, -0.03023453801870346, 0.012301335111260414, 0.005294854287058115, -0.02068944461643696, -0.030547762289643288, -0.00024377323279622942, -0.01728426292538643, 0.0386689156293869, 0.00411689467728138, -0.03243578225374222, -0.053909845650196075, 0.03152865171432495, -0.004614336881786585, 0.02226937748491764, -0.026360172778367996, -0.019803036004304886, -0.028192859143018723, 0.04188977926969528, 0.045496050268411636, -0.050921350717544556, 0.020122088491916656, -0.0349695049226284, 0.048303939402103424, 0.0390893816947937, -0.012688028626143932, -0.037268105894327164, -0.02022623084485531, -0.03851794824004173, -0.02319689840078354, 0.013315523974597454, 0.06040744110941887, -0.02767004817724228, 0.03270568698644638, -0.025942251086235046, 0.0021279409993439913, -0.00739749101921916, -0.007948930375277996, -0.01074137631803751, -0.01124727725982666, 0.04775048419833183, -0.0038277707062661648, 0.02355942875146866, -0.018989739939570427, -0.006566093768924475, 0.030913759022951126, -0.06057600677013397, 0.02557404898107052, 0.0020101533737033606, -0.013624350540339947, 0.019802996888756752, 0.026201998814940453, 0.005795015953481197, 0.047155268490314484, 0.00815074797719717, 0.009374593384563923, -0.01637410931289196, 0.0433235801756382, -0.05954497307538986, -0.022842207923531532, 0.04394885152578354, 0.0081829484552145, -0.013662382960319519, 0.0369429737329483, 0.053278643637895584, 0.003789273789152503, 0.012292561121284962, 0.0373932346701622, -0.07361575216054916, 0.04161014407873154, -0.024695394560694695, 0.01398067269474268, 0.012039345689117908, -0.04841792955994606, 0.006516956724226475, -0.02093346044421196, 0.02804664336144924, -0.0006947202491573989, 0.004369288217276335, -0.021896883845329285, -0.04599038138985634, -0.010314727202057838, 0.006126261316239834, -0.025041772052645683, 0.02884146012365818, 0.0048581743612885475, 0.016568338498473167, 0.007912269793450832, -0.014346002601087093, -0.01858828216791153, 0.0011107886675745249, -0.003551296191290021, 0.004885133355855942, 0.019254354760050774, 0.01045474223792553, -0.011557728052139282, -0.03637012839317322, -0.050575416535139084, 0.022237461060285568, -0.02114919014275074, -0.02489534579217434, -0.024083029478788376, 0.0034186497796326876, -0.021995076909661293, -0.016617268323898315, -0.02090153470635414, 0.022812599316239357, -0.0026836544275283813, 0.007270328234881163, 0.010937604121863842, 0.004935700446367264, -0.011339014396071434, 0.008681789971888065, -0.02771650068461895, 0.06693236529827118, 0.04005357623100281, -0.03991851583123207, -0.06206536293029785, 0.07206510007381439, -0.020068615674972534, 0.04135746881365776, 0.003798511577770114, -0.03259174898266792, -0.015971297398209572, -0.03154421225190163, 0.012033347971737385, -0.04858269914984703, -0.002800779649987817, -0.07120468467473984, -0.00802148412913084, -0.007243590895086527, 0.045634254813194275, -0.012803896330296993, -0.013538694009184837, 0.010777491144835949, -0.042279139161109924, -0.02801710180938244, -0.019543860107660294, -0.04235503822565079, -0.03517111390829086, -0.032818909734487534, -0.0001268991909455508, 0.05373071879148483, 0.01414548885077238, -0.003669990925118327, -0.021908767521381378, 0.017915088683366776, 0.053545720875263214, -0.0014741315972059965, -0.03563573583960533, -0.057028040289878845, -0.013644971884787083, 0.015884550288319588, -0.0064523848704993725, 0.002531495876610279, -0.032501548528671265, 0.04123634099960327, -0.06884615868330002, -0.0024260091595351696, -0.016773724928498268, -0.014195653609931469, -0.004166400525718927, -0.009523130021989346, 0.05941804125905037, -0.02310921438038349, -0.00024565550847910345, -0.03522582724690437, 0.05260208994150162, 0.050491832196712494, 0.021051330491900444, -0.044693876057863235, -0.04128256440162659, -0.05078452080488205, -0.08208782225847244, 0.015331557020545006, -0.04026690870523453, -0.024831805378198624, -0.02294684574007988, -0.002994721522554755, 0.0356154628098011, -0.014671560376882553, 0.04733468219637871, 0.029220053926110268, -0.02090049721300602, -0.0327816866338253, -0.012088453397154808, 0.011869006790220737, 0.03865322470664978, -0.026956014335155487, -0.02304617315530777, -0.008418327197432518, -0.027208004146814346, -0.013189650140702724, -0.019882649183273315, -0.04125253111124039, -0.06120450794696808, 0.0108750956133008, 0.05729082599282265, -0.02446705289185047, 0.020477650687098503, -0.003317492315545678, -0.0426480807363987, -0.014173953793942928, 0.049808163195848465, -0.006503133103251457, 0.0037607578560709953, 0.027055080980062485, -0.004800550639629364, -0.007923155091702938, -0.0008067259332165122, -0.00009042860619956627, -0.003057146444916725, -0.04450427368283272, 0.0790242850780487, -0.010969807393848896, -0.048644937574863434, 0.02224855311214924, 0.04348848760128021, -0.06503506004810333, -0.04098503664135933, 0.015372654423117638, 0.016818298026919365, 0.004167931620031595, -0.02721903659403324, 0.009439315646886826, -0.009500705637037754, -0.025893839076161385, -0.005866803228855133, 0.05610394477844238, -0.026341984048485756, 0.04338724911212921, 0.004117733798921108, 0.018872123211622238, -0.03632281348109245, 0.007965140976011753, 0.0364663191139698, 0.0039920499548316, -0.040677424520254135, -0.027703149244189262, -0.009883117862045765, 0.01622212864458561, -0.026164298877120018, 0.04586487263441086, -0.0024545269552618265, 0.024234401062130928, 0.046217046678066254, 0.00972332339733839, 0.04813006892800331, 0.027919014915823936, -0.027049865573644638, 0.02397230640053749, -0.0016838099109008908, -0.045555196702480316, -0.04414723441004753, 0.02110188640654087, 0.04828296974301338, 0.048920776695013046, -0.05090208724141121, -0.0007262714207172394, 0.03223199024796486, -0.01472714263945818, -0.008912562392652035, -0.059665169566869736, -0.05101567506790161, -0.06617634743452072, -0.01822626404464245, -0.028193924576044083, -0.049179039895534515, 0.0014497794909402728, 0.024408401921391487, 0.01578805409371853, 0.007758658844977617, -0.0077578346244990826, 0.016011187806725502, -0.0012213708832859993, -0.014789734035730362, -0.02461979351937771, 0.013107238337397575, -0.04541584476828575, -0.051353566348552704, -0.04846322536468506, -0.00671909935772419, -0.009314938448369503, 0.01715311035513878, -0.033113185316324234, -0.0010976294288411736, 0.001669969642534852, 0.032901495695114136, -0.005780765321105719, 0.012181367725133896, -0.04991128668189049, -0.05733604356646538, -0.02712804637849331, 0.04657372832298279, -0.03576523810625076, 0.048790447413921356, 0.0386076457798481, -0.016000304371118546, 0.02380465902388096, 0.027769621461629868, -0.0257906261831522, -0.041718173772096634, 0.010980634018778801, -0.010658301413059235, 0.01841593347489834, 0.0032547740265727043, -0.014343996532261372, 0.026757271960377693, -0.035290639847517014, 0.006830345373600721, 0.01749078929424286, 0.015325701795518398, 0.025651412084698677, -0.0013289118651300669, 0.004007001873105764, 0.055641088634729385, 0.016137443482875824, 0.03031739592552185, -0.005995767191052437, 0.03255516663193703, 0.027053840458393097, 0.00602186843752861, 0.03505420312285423, 0.014949889853596687, 0.004511900711804628, -0.045682914555072784, 0.012056048028171062, 0.037480615079402924, -0.03184739127755165, 0.03232559189200401, -0.0014721759362146258, -0.0040642451494932175, -0.06146635115146637, -0.033290695399045944, -0.005106369964778423, 0.04721006378531456, 0.005138359498232603, 0.0074267019517719746, 0.03491795063018799, -0.036817386746406555, -0.0225272998213768, 0.009343280456960201, -0.04976531118154526, -0.04936831444501877, 0.029997820034623146, -0.02258235029876232, -0.03839530795812607, -0.00997653603553772, -0.031708572059869766, -0.009344739839434624, 0.002419851254671812, -0.01817808486521244, -0.027717841789126396, 0.025435805320739746, 0.02064708061516285, 0.015861524268984795, -0.005399357993155718, 0.01260171178728342, 0.012441464699804783, 0.019740544259548187, -0.061390746384859085, -0.043618835508823395, 0.009574218653142452, 0.029305586591362953, 0.010515830479562283, -0.004507595207542181, -0.002065301639959216, -0.0038220672868192196, 0.016841663047671318, 0.029971454292535782, 0.008331876248121262, 0.03604401275515556, -0.032338522374629974, 0.05350377410650253, 0.011553728953003883, 0.016862042248249054, -0.027508387342095375, 0.02438836172223091, -0.011102460324764252, -0.034982841461896896, -0.03523845970630646, 0.04443170130252838, 0.05083899945020676, -0.01866517961025238, 0.05630277469754219, 0.01571383886039257, 0.04148067161440849, -0.01001834124326706, 0.018501348793506622, -0.007031486369669437, 0.023473193868994713, 0.05780772119760513, 0.04711137339472771, 0.009098988026380539, 0.03728054463863373, 0.06073432043194771, -0.00515968119725585, -0.005114848259836435, 0.015006422996520996, 0.03297242149710655, -0.04566981643438339, 0.00881731417030096, -0.029464812949299812, 0.02546144649386406, 0.0014761416241526604, -0.013556936755776405, -0.0071509224362671375, -0.012911049649119377, -0.012967629358172417, 0.017512500286102295, -0.03777028247714043, 0.03385615348815918, -0.02777392603456974, -0.015065419487655163, -0.023556364700198174, -0.016233403235673904, -0.0008130233618430793, 0.013732598163187504, 0.023470554500818253, -0.019727429375052452, 0.0496506504714489, 0.04555847868323326, -0.026750367134809494, 0.045826397836208344, -0.005534331779927015, 0.0005676940781995654, -0.025678586214780807, -0.00809453520923853, 0.028328172862529755, 0.015414300374686718, -0.03321361914277077, -0.008329923264682293, -0.027861760929226875, 0.04509242996573448, -0.02471870370209217, -0.013393227942287922, 0.022172734141349792, -0.03031136468052864, -0.016209593042731285, -0.06057652831077576, 0.02478265017271042, -0.07533875107765198, -0.030976640060544014, 0.03883446007966995, -0.03673161193728447, -0.017892003059387207, 0.03559593856334686, -0.017750419676303864, 0.033163685351610184, 0.0020606601610779762, 0.046509239822626114, -0.015656331554055214, 0.060272276401519775, 0.046919915825128555, -0.002915389137342572, -0.01335050631314516, 0.031938668340444565, -0.030510779470205307, -0.01413594651967287, -0.012970681302249432, -0.03239251300692558, -0.004992354195564985, -0.016726762056350708, -0.01422935351729393, -0.0021085573825985193, 0.05472207069396973, -0.005654342006891966, -0.03489382937550545, -0.016610633581876755, 0.04708808660507202, -0.0386655256152153, 0.005617077928036451, 0.00795778539031744, 0.038818903267383575, 0.019301285967230797, -0.021936947479844093, -0.036663997918367386, 0.0018919745925813913, -0.005195715930312872, -0.019679538905620575, 0.02139309234917164, 0.0050467681139707565, -0.0019844069611281157, -0.040833644568920135, -0.0712813213467598, -0.03385384753346443, -0.022909196093678474, -0.037791065871715546, -0.06560131162405014, 0.02569722756743431, 0.024925190955400467, 0.005407834891229868, -0.025077136233448982, -0.02435917593538761, 0.0018866591854020953, 0.034029893577098846, 0.06895413994789124, 0.02910098247230053, 0.06215246021747589, 0.05400940775871277, 0.016002345830202103, 0.023769712075591087, 0.015957197174429893, 0.009628643281757832, -0.011036052368581295, -0.011059540323913097, -0.026143060997128487, 0.027992792427539825, -0.021030224859714508, -0.07807744294404984, 0.027401311323046684, 0.017561957240104675, 0.006361187435686588, -0.019232673570513725, -0.058661218732595444, 0.01344385463744402, -0.04473181441426277, -0.00655247550457716, -0.023635052144527435, 0.015529798343777657, 0.009992309845983982, -0.011662797071039677, 0.004180926363915205, -0.06022066995501518, 0.1515095829963684, 0.03391208499670029, 0.04947136342525482, -0.018982240930199623, 0.03552032634615898, 0.017214585095643997, 0.03901015967130661, -0.019042527303099632, 0.005452587269246578, -0.0347815677523613, 0.013947520405054092, 0.005393614061176777, 0.03323701024055481, 0.00124609493650496, 0.02904907613992691, 0.05143829062581062, -0.04927254840731621, 0.009413735941052437, 0.027558382600545883, -0.059788305312395096, -0.04509109631180763, 0.04794314131140709, 0.02156432904303074, -0.02443397045135498, -0.005970437079668045, 0.04200556129217148, 0.024312766268849373, -0.018335815519094467, -0.028889311477541924, -0.014189827255904675, 0.007303853053599596, -0.030194491147994995, 0.01741967350244522, -0.026687977835536003, -0.05627182498574257, 0.042545899748802185, 0.008810331113636494, -0.02922295778989792, 0.006001720204949379, 0.05335799232125282, 0.0058519914746284485, 0.01870858669281006, 0.02110256813466549, -0.016481488943099976, 0.00785523559898138, 0.009179220534861088, -0.04248542711138725, 0.0015770640457049012, 0.0102049820125103, -0.051263418048620224, 0.0511925145983696, -0.04698793962597847, 0.04343898221850395, 0.003918476402759552, -0.0025719134137034416, -0.003094392130151391, 0.007737795822322369, -0.05401718616485596, -0.013079007156193256, -0.016148583963513374, 0.05804508924484253, 0.005580345634371042, -0.021801162511110306, -0.0170118547976017, 0.0011494759237393737, -0.017868177965283394, 0.022885095328092575, 0.019159549847245216, -0.0007146148127503693, 0.001095373067073524, -0.034951988607645035, -0.009468101896345615, -0.015656301751732826, -0.03296790271997452, 0.011223578825592995, 0.01082043256610632, -0.026661526411771774, 0.024003325030207634, -0.024093542248010635, -0.03544536605477333, -0.0016508197877556086, -0.04563649743795395, 0.0034879669547080994, 0.010072545148432255, 0.03203367441892624, 0.04147486388683319, -0.04148406535387039, -0.07155176252126694, -0.04850774630904198, 0.04163707047700882, 0.06763947010040283, 0.0293644480407238, -0.017476361244916916, -0.043669868260622025, -0.003344109980389476 ]
The ABC drama continues to grow by triple digits with time-shifting. Winning primetime with its Patriots-Texans match-up, NBC's Sunday Night Football averaged a dominant 13.9 overnight rating among households on Sunday. Its tentative score in the key demo of adults 18-49, based on Fast National stats that will be adjusted upwards when time zones are taken into account, is a 6.2 rating. With very strong football overrun for a lead-in, Fox had steady outings of The Simpsons (2.4 adults), Brooklyn Nine-Nine (1.7 adults), Family Guy (1.7 adults) and The Last Man on Earth (1.3 adults). On CBS, football overrun also delayed 60 Minutes. The news show netted an average 1.6 rating among adults 18-49 before the network's trio of dramas. Madam Secretary (1.3 adults) and CSI: Cyber (0.8 adults) were both steady, while The Good Wife ticked up two-tenths of a point to an average 1.1 rating among adults 18-49.
[ 0.018602021038532257, 0.005102356430143118, -0.010085441172122955, 0.010258973576128483, -0.011993230320513248, 0.011164022609591484, -0.025215424597263336, 0.04184652492403984, 0.003991248551756144, 0.006383590400218964, 0.04566362872719765, 0.003185039618983865, 0.014570299535989761, -0.02781435288488865, -0.023360542953014374, -0.006903382949531078, -0.019764050841331482, -0.03635592758655548, -0.009727392345666885, 0.0004105329280719161, -0.004011933226138353, 0.02808188460767269, -0.06281451880931854, -0.0028040038887411356, -0.026569560170173645, 0.062065884470939636, 0.02757897600531578, -0.013311418704688549, 0.03468538820743561, 0.03995702788233757, -0.016676440834999084, -0.04780783876776695, 0.023044269531965256, -0.07292424887418747, -0.002617928432300687, -0.03809363767504692, 0.06511685997247696, -0.0013871467672288418, -0.02320682816207409, -0.04860163480043411, 0.018851682543754578, -0.04497945308685303, 0.02665393240749836, -0.03340499475598335, -0.03168387711048126, -0.0000343084211635869, 0.022535862401127815, -0.04252062365412712, 0.010277962312102318, -0.03408246487379074, 0.011853715404868126, -0.01514232624322176, 0.0002632109390106052, -0.018288442865014076, 0.004541981033980846, 0.011676252819597721, 0.023906012997031212, -0.013331920839846134, -0.014798752032220364, 0.021033277735114098, 0.050710082054138184, -0.01756681129336357, 0.019854119047522545, -0.03330497071146965, 0.0030592207331210375, -0.0032100242096930742, 0.009162576869130135, -0.008424351923167706, 0.05323672294616699, 0.016341421753168106, 0.015148619189858437, 0.00008638988219900057, -0.04175330325961113, -0.007193440571427345, 0.006936756893992424, 0.015599883161485195, -0.007325959391891956, 0.011627161875367165, -0.014090847223997116, 0.019400207325816154, -0.01858610473573208, 0.046723105013370514, 0.038065627217292786, 0.008553181774914265, -0.023375514894723892, -0.02999955601990223, 0.03108496591448784, 0.023503465577960014, 0.01475740596652031, 0.014766962267458439, -0.005462437868118286, 0.025982027873396873, -0.01264511700719595, -0.03824103996157646, 0.046147871762514114, 0.0536297932267189, -0.031334586441516876, -0.0015548978699371219, 0.019048919901251793, 0.019167117774486542, 0.0035530757158994675, 0.01606806181371212, -0.039578504860401154, 0.05036816745996475, -0.05070270225405693, 0.010946083813905716, 0.04630200192332268, -0.03922753036022186, -0.01677429862320423, -0.03923550993204117, -0.004821022041141987, -0.02394682541489601, 0.024921385571360588, 0.004248694982379675, -0.015414930880069733, 0.05621388554573059, -0.0009372152271680534, 0.03230777382850647, -0.03850914537906647, 0.014776689000427723, 0.05506809055805206, -0.0032598210964351892, 0.07043179124593735, -0.02465469017624855, 0.029416872188448906, -0.016226651147007942, -0.027753127738833427, 0.054316792637109756, -0.06150483712553978, -0.06549900025129318, -0.02137448638677597, -0.044818077236413956, 0.004636337980628014, 0.02082001604139805, -0.014678668230772018, 0.0347035713493824, 0.0032746309880167246, 0.008673260919749737, 0.030782336369156837, -0.06007419154047966, 0.020254282280802727, 0.010459107346832752, -0.024346526712179184, 0.10884398221969604, 0.04378987476229668, -0.012405219487845898, -0.021424550563097, 0.008890662342309952, -0.011610807850956917, 0.04457918927073479, -0.038108401000499725, 0.043039970099925995, -0.00045302684884518385, 0.0148245794698596, -0.00796330627053976, -0.059239547699689865, -0.018176300451159477, 0.01044413261115551, 0.03471565619111061, 0.026049278676509857, -0.040055882185697556, 0.007067527621984482, -0.02391895093023777, 0.049947548657655716, -0.040481746196746826, 0.051745615899562836, -0.027488093823194504, -0.030552823096513748, -0.0062543838284909725, -0.013381825760006905, 0.04086124897003174, -0.02352301962673664, 0.010764502920210361, 0.0056071095168590546, 0.042445551604032516, 0.011589659377932549, 0.028888728469610214, -0.030470654368400574, 0.05282571166753769, 0.02741156704723835, -0.03551812469959259, 0.0005245395004749298, -0.03729172423481941, 0.09568127989768982, 0.03530944138765335, 0.014711371622979641, -0.005407742224633694, -0.04429914057254791, -0.049999285489320755, -0.02739134430885315, -0.01062160637229681, 0.016657961532473564, -0.014473958872258663, 0.0569542795419693, 0.03436855599284172, -0.018491551280021667, -0.005029281135648489, 0.00112933199852705, 0.002599569736048579, -0.05705144256353378, -0.036126501858234406, 0.0321672186255455, -0.04877766966819763, 0.05390604957938194, -0.03480701148509979, -0.017012551426887512, 0.03195234760642052, 0.04886162281036377, -0.048157915472984314, -0.00006682993262074888, 0.047442469745874405, 0.02653176710009575, -0.019328391179442406, 0.024469180032610893, -0.005838046781718731, -0.00455136364325881, -0.024857528507709503, 0.05944707989692688, -0.01312147919088602, -0.02880675718188286, 0.011326538398861885, 0.011204337701201439, 0.037797871977090836, 0.021981386467814445, 0.018310394138097763, -0.0011393427848815918, -0.014969008043408394, 0.0051545649766922, -0.009099832735955715, 0.010391863994300365, 0.007606943603605032, 0.026444006711244583, 0.015963388606905937, 0.04120497778058052, 0.03153429180383682, 0.00666086096316576, 0.04035329446196556, 0.0047028255648911, -0.033967118710279465, 0.025094863027334213, -0.03657474368810654, -0.0025356437545269728, 0.03595295175909996, 0.017911825329065323, -0.028216971084475517, 0.041568636894226074, -0.0192809347063303, -0.021261468529701233, -0.03433668240904808, 0.01884450763463974, 0.03567449003458023, 0.039183422923088074, 0.07333351671695709, 0.04757720232009888, -0.016964003443717957, 0.009987370111048222, 0.04253208264708519, 0.0970485731959343, -0.027947796508669853, 0.05230594053864479, -0.015951458364725113, 0.021500278264284134, 0.0038356126751750708, 0.04208344221115112, 0.02278212644159794, 0.001995394704863429, -0.02633885107934475, 0.02004447765648365, 0.010395091027021408, -0.04922521114349365, -0.04185647517442703, -0.053718969225883484, -0.014316465705633163, -0.040751196444034576, -0.046886637806892395, -0.008792340755462646, 0.017137721180915833, -0.03373529016971588, 0.010522999800741673, 0.005442958790808916, -0.02542312815785408, 0.004158572759479284, -0.010963188484311104, 0.054674483835697174, 0.008094417862594128, 0.04031679779291153, -0.04504876956343651, 0.007960806600749493, 0.011477760970592499, 0.035492394119501114, -0.04098089039325714, -0.003911562729626894, -0.010132533498108387, 0.0005701479385606945, 0.038853589445352554, -0.019465850666165352, -0.01051572896540165, 0.005828975699841976, -0.03935699909925461, -0.08091425895690918, 0.02779950574040413, -0.005792512558400631, 0.013691493310034275, -0.009554806165397167, -0.033456992357969284, 0.039925042539834976, 0.011981481686234474, -0.049802202731370926, 0.046117983758449554, 0.051792655140161514, -0.0370977446436882, 0.05539412423968315, 0.03508052974939346, 0.0025210364256054163, -0.04793146997690201, 0.06130576506257057, 0.040353450924158096, 0.01146495807915926, -0.021516893059015274, -0.030431414023041725, -0.017064431682229042, -0.023886723443865776, 0.016967108473181725, -0.013542931526899338, -0.06579606980085373, 0.018104204908013344, 0.021483879536390305, -0.06827143579721451, 0.02643551304936409, -0.04718165844678879, -0.06791231781244278, -0.007542569190263748, -0.03653755411505699, 0.012258811853826046, 0.015616841614246368, 0.026580631732940674, 0.006778732407838106, -0.020951880142092705, 0.020150309428572655, 0.026464171707630157, 0.037750568240880966, -0.026293419301509857, 0.010209070518612862, 0.04641266539692879, -0.020846964791417122, 0.01652606576681137, 0.01569584384560585, -0.01797669567167759, -0.007513962686061859, 0.012866603210568428, -0.02345062606036663, 0.043561745434999466, 0.02169799618422985, 0.013160428032279015, 0.02926277555525303, 0.023435575887560844, -0.026377638801932335, 0.0013429139507934451, 0.005397212691605091, 0.022865459322929382, 0.025048712268471718, 0.011649693362414837, 0.008527019061148167, -0.027805805206298828, -0.000071379603468813, -0.026277171447873116, 0.047043442726135254, -0.005615477915853262, 0.04931437596678734, -0.0691806972026825, 0.031922128051519394, 0.007938329130411148, -0.006567239295691252, 0.03592576086521149, -0.051229678094387054, 0.005860271397978067, 0.04466129094362259, -0.03119909204542637, 0.023709293454885483, -0.03355806693434715, 0.0457097589969635, -0.04264402016997337, 0.0007908158586360514, 0.02866286225616932, -0.004014855250716209, 0.02280139923095703, -0.04729171097278595, -0.01913059689104557, -0.010708644986152649, -0.024825768545269966, -0.017052192240953445, -0.03561749681830406, -0.0038511143065989017, -0.023056725040078163, -0.05448903888463974, -0.022888951003551483, 0.035123106092214584, 0.04955938830971718, 0.021687472239136696, -0.008486420847475529, 0.025596346706151962, -0.028597690165042877, -0.028247103095054626, 0.018616076558828354, -0.0169144868850708, 0.005504119209945202, -0.030376866459846497, 0.04678316414356232, -0.0015642961952835321, -0.023735588416457176, -0.013926384970545769, -0.035824116319417953, -0.004977331962436438, 0.020754441618919373, 0.00843872781842947, -0.015298237092792988, -0.008022667840123177, 0.04048926755785942, 0.009586705826222897, 0.017468487843871117, -0.006235922686755657, -0.003360479837283492, 0.005384746007621288, 0.028228724375367165, 0.04231574386358261, -0.03411445394158363, -0.007758770138025284, -0.03673848509788513, 0.0669991746544838, 0.01938074640929699, -0.0010557420318946242, -0.023667609319090843, -0.017440836876630783, -0.044516075402498245, 0.01656896062195301, 0.03095119260251522, 0.06513632833957672, -0.009341932833194733, 0.0021842012647539377, -0.014817414805293083, 0.023322129622101784, 0.01292218454182148, -0.005479693412780762, 0.006131545640528202, 0.013203547336161137, 0.007173761259764433, 0.032257240265607834, 0.0358760803937912, 0.0056417519226670265, -0.02992590330541134, 0.048779357224702835, -0.0500614270567894, 0.03936731442809105, -0.004838595166802406, -0.03693150728940964, 0.007550911977887154, 0.01456861849874258, -0.0060278489254415035, 0.03817802295088768, -0.01684395782649517, 0.020353535190224648, -0.02776351384818554, 0.044942159205675125, -0.061916228383779526, -0.019677666947245598, 0.05395431071519852, -0.0022936540190130472, -0.019405052065849304, 0.011709983460605145, 0.03256623446941376, -0.013945257291197777, -0.023867469280958176, 0.037157054990530014, -0.033533357083797455, 0.048541922122240067, -0.016807174310088158, 0.003881891956552863, -0.02825063094496727, -0.03347909450531006, -0.008283897303044796, -0.016545167192816734, 0.010750029236078262, -0.022346405312418938, -0.021656878292560577, -0.044560614973306656, -0.04408220946788788, -0.008613958954811096, 0.004216453991830349, -0.001270751003175974, 0.022045301273465157, -0.006421609316021204, -0.0010206201113760471, -0.02448532171547413, -0.014506274834275246, -0.017517222091555595, 0.01520992536097765, -0.007205411791801453, 0.01581861823797226, -0.0068436129949986935, 0.0076315444894135, -0.009877213276922703, -0.05554654821753502, -0.03903134539723396, 0.007571934722363949, -0.007034563459455967, -0.013361085206270218, -0.05894486606121063, 0.0030845170840620995, -0.024796102195978165, -0.005749308969825506, -0.04316353797912598, 0.0501222126185894, -0.022253459319472313, 0.03428759425878525, 0.007383823394775391, 0.020883936434984207, 0.005223642103374004, 0.0341256707906723, -0.010038386099040508, 0.024697480723261833, -0.008030455559492111, -0.054796475917100906, -0.024213820695877075, 0.03286004066467285, -0.021729953587055206, 0.055370673537254333, -0.0034583823289722204, -0.02493351325392723, -0.06333448737859726, -0.07048945128917694, -0.012021888047456741, -0.010737065225839615, -0.03948172181844711, -0.028178704902529716, -0.005587344989180565, -0.01654009521007538, 0.0021356125362217426, 0.005086417309939861, 0.004820880014449358, -0.035469263792037964, -0.037092745304107666, 0.03833314776420593, -0.02106579765677452, -0.020838871598243713, -0.005446072667837143, -0.009305993095040321, -0.002133003668859601, 0.03189345449209213, 0.029278887435793877, 0.005727773532271385, -0.006390310823917389, -0.007302595768123865, 0.01871366612613201, -0.024394413456320763, -0.05468159541487694, -0.028230588883161545, -0.005956149660050869, -0.02864064648747444, 0.017087383195757866, -0.03474246710538864, -0.02417795918881893, 0.023289445787668228, -0.04598456993699074, -0.010896106250584126, 0.0006723983678966761, -0.019440576434135437, -0.005517199169844389, -0.015658363699913025, 0.0656590610742569, -0.008874424733221531, 0.0077414256520569324, -0.0002487176388967782, 0.03931328281760216, 0.04803317412734032, 0.02001282200217247, -0.01684359461069107, -0.010008112527430058, -0.041152071207761765, -0.07566247880458832, 0.0020507778972387314, -0.019311079755425453, -0.013338127173483372, -0.03060220368206501, 0.008899849839508533, 0.026602404192090034, -0.018603499978780746, 0.058363452553749084, 0.03551613911986351, -0.01923387683928013, -0.009662773460149765, -0.019966693595051765, -0.003377006622031331, 0.03405581787228584, -0.008225345984101295, -0.014826739206910133, -0.02095644548535347, 0.0020995289087295532, -0.01583896391093731, -0.033948685973882675, -0.0384758859872818, -0.05040636658668518, 0.017654718831181526, 0.06843814253807068, -0.002199030015617609, 0.0786164253950119, 0.006531586870551109, -0.04611930996179581, -0.04415632039308548, 0.03885549306869507, 0.00851830281317234, 0.014445834793150425, 0.04251207411289215, -0.017307080328464508, -0.04887588694691658, -0.004408109933137894, 0.024297982454299927, -0.02994079701602459, -0.04341823607683182, 0.029791902750730515, -0.02425333298742771, -0.04616697505116463, 0.045883290469646454, 0.034028902649879456, -0.0605514831840992, -0.03535507619380951, 0.0037986563984304667, 0.018141578882932663, 0.01380514819175005, -0.026600724086165428, -0.005130909848958254, -0.0013098615454509854, -0.05657907575368881, 0.031160615384578705, 0.012692006304860115, 0.017455771565437317, 0.042177714407444, -0.007575946860015392, 0.05258859321475029, -0.02180057018995285, 0.03519591689109802, 0.004659595433622599, -0.029580671340227127, -0.022073185071349144, -0.03448261693120003, -0.007161853369325399, 0.020113352686166763, -0.026627633720636368, 0.05697162076830864, -0.01099611446261406, -0.0004855789302382618, 0.03970020264387131, -0.02033326029777527, 0.025120632722973824, -0.021473711356520653, -0.02113986760377884, 0.02148584835231304, -0.01782456412911415, -0.0704193040728569, -0.05619280785322189, 0.02606537751853466, 0.0005538107943721116, 0.0472952239215374, -0.05212903395295143, 0.005304997321218252, 0.0385071337223053, -0.034229826182127, 0.024436283856630325, -0.06302114576101303, -0.054783642292022705, -0.055862776935100555, -0.06202854961156845, -0.0034206730779260397, -0.025294743478298187, -0.004307704512029886, 0.06127985566854477, 0.025745345279574394, -0.05706006661057472, -0.00967805553227663, 0.01160812471061945, -0.011658526957035065, 0.007936518639326096, -0.03429926931858063, 0.04973869025707245, -0.011525465175509453, -0.07689787447452545, -0.05613512545824051, 0.009191066958010197, -0.029146244749426842, -0.03647531941533089, -0.002368638990446925, 0.018856171518564224, -0.012638013809919357, 0.014255093410611153, 0.02088674157857895, 0.003909756895154715, -0.015336843207478523, -0.042123373597860336, -0.016668610274791718, 0.038962431252002716, -0.012645418755710125, 0.037197887897491455, 0.04580947756767273, -0.04247241094708443, 0.0193452388048172, -0.01876327581703663, -0.020168887451291084, 0.006865016184747219, 0.008380279876291752, -0.009506376460194588, 0.010405309498310089, -0.004488717298954725, -0.02635902166366577, -0.003077042754739523, -0.0018775815842673182, 0.01915688067674637, -0.00673479912802577, 0.003315889975056052, 0.007182904053479433, -0.010429023765027523, 0.008869186975061893, 0.08513866364955902, 0.010590282268822193, 0.025178031995892525, 0.0036698817275464535, -0.027113180607557297, -0.0024696066975593567, 0.014937242493033409, 0.03405609354376793, 0.0035613880027085543, 0.04563262313604355, -0.03907155990600586, 0.012554304674267769, -0.02965647168457508, -0.022245192900300026, 0.04521617665886879, 0.004336744546890259, -0.05613676831126213, -0.04199788719415665, -0.02961907908320427, 0.02393338829278946, 0.046411141753196716, 0.030978547409176826, -0.003788640256971121, 0.017414866015315056, -0.026326488703489304, -0.05112177133560181, 0.011684803292155266, -0.05552150681614876, -0.02454216778278351, 0.04450482502579689, -0.010025394149124622, 0.00008293921564472839, -0.03707162290811539, -0.0216185562312603, 0.03386504575610161, -0.007047541905194521, -0.004050396382808685, -0.03564658761024475, 0.030630309134721756, -0.02330544777214527, 0.0716298520565033, -0.011719025671482086, -0.023767994716763496, 0.02856593392789364, 0.06150265783071518, -0.03415505215525627, -0.04545694589614868, 0.023950347676873207, 0.0309353768825531, 0.017885606735944748, 0.02189386822283268, -0.040602583438158035, 0.05387842655181885, 0.02979350835084915, -0.01346740871667862, 0.009236937388777733, 0.02477799914777279, 0.007692259736359119, 0.036537010222673416, -0.006444329861551523, 0.0035635842941701412, -0.022291364148259163, 0.05010802298784256, -0.015125572681427002, -0.018511701375246048, -0.04810287430882454, 0.029001673683524132, 0.01877495087683201, -0.02205323614180088, 0.028696883469820023, 0.021533560007810593, 0.041642483323812485, -0.03814151510596275, -0.004042033106088638, -0.008424699306488037, 0.062453027814626694, 0.024499056860804558, 0.009641196578741074, -0.01065391581505537, 0.021845482289791107, 0.030476925894618034, 0.0011068175081163645, 0.013304509222507477, 0.006347185000777245, -0.0008497667731717229, -0.01733916811645031, -0.0104206008836627, -0.030234895646572113, 0.01480687316507101, -0.04221601411700249, -0.02132737636566162, -0.004311185795813799, 0.007595790084451437, 0.002579932799562812, -0.04095403105020523, -0.03309764340519905, 0.07965075224637985, -0.027275536209344864, 0.010306982323527336, -0.004572167526930571, -0.008562269620597363, 0.0024949004873633385, 0.04069455713033676, -0.0266647357493639, 0.012872668914496899, 0.012086395174264908, -0.006366242654621601, -0.030194003134965897, 0.055196236819028854, 0.01850321516394615, -0.002206312259659171, -0.03193676471710205, 0.011069519445300102, 0.015242345631122589, -0.011974576860666275, -0.018983308225870132, 0.01689913682639599, -0.044691406190395355, 0.02491426095366478, 0.024357950314879417, 0.0005487162270583212, 0.02458341047167778, -0.06283474713563919, -0.030304476618766785, -0.049215324223041534, 0.07552659511566162, -0.044697485864162445, 0.021411139518022537, 0.020458081737160683, -0.018464917317032814, -0.020675556734204292, 0.052546948194503784, 0.03390110656619072, 0.027672553434967995, 0.012583930045366287, 0.03873702883720398, -0.009431581012904644, 0.06405465304851532, 0.0599491111934185, -0.04851493239402771, 0.002574730198830366, 0.04039587453007698, -0.02101314626634121, -0.04848167300224304, -0.039752088487148285, -0.023681633174419403, 0.002504231408238411, -0.02806002087891102, 0.0016619388479739428, -0.012302706018090248, 0.03222311660647392, -0.0010582589311525226, -0.027698487043380737, -0.01517876423895359, 0.020726405084133148, -0.0523383766412735, 0.013849718496203423, 0.024820977821946144, 0.04828290641307831, -0.004481079522520304, -0.004594448953866959, -0.007204937748610973, -0.052801184356212616, 0.011715499684214592, -0.010272953659296036, 0.0066356901079416275, -0.029581325128674507, 0.0023991717025637627, -0.0340910404920578, -0.040449999272823334, -0.008895752020180225, 0.0001311074011027813, -0.04880538210272789, -0.06237974017858505, 0.044268254190683365, 0.019064946100115776, 0.03422384336590767, 0.03536107391119003, 0.000026592510039336048, 0.00999030563980341, 0.0006039401632733643, 0.06808774173259735, -0.0322713777422905, 0.018322736024856567, 0.030118638649582863, 0.022961948066949844, 0.02072206698358059, -0.029844440519809723, 0.012135821394622326, -0.046775586903095245, -0.017874296754598618, -0.01863969676196575, 0.030315794050693512, 0.016809578984975815, -0.05252741649746895, 0.01349398773163557, 0.01716669648885727, -0.007832636125385761, -0.024547956883907318, -0.05184086412191391, -0.006577131804078817, -0.04756397753953934, 0.011288696900010109, -0.011814197525382042, 0.05470217019319534, -0.017297448590397835, 0.031934190541505814, -0.03492439165711403, -0.05330793187022209, 0.15543299913406372, 0.030469588935375214, 0.005839371122419834, 0.00850564707070589, 0.024600572884082794, -0.004210640676319599, 0.0411965548992157, -0.014378130435943604, -0.0007646502344869077, 0.0031708553433418274, 0.049123842269182205, -0.015510608442127705, 0.05391387268900871, 0.009507653303444386, 0.02440420724451542, 0.047162994742393494, -0.009081041440367699, -0.05701709911227226, -0.0050497474148869514, -0.03625408560037613, -0.044884610921144485, -0.00703778862953186, 0.024717481806874275, 0.04206009954214096, -0.021102765575051308, 0.010813332162797451, 0.0372176356613636, -0.06303290277719498, -0.019040998071432114, -0.0056934840977191925, 0.022967766970396042, -0.03694118931889534, 0.022871069610118866, -0.002579574938863516, -0.04066954553127289, 0.04643753543496132, -0.009050038643181324, 0.0010533927707001567, 0.009490822441875935, 0.007078476715832949, -0.03383788466453552, 0.012053824961185455, 0.01995375007390976, -0.04657479748129845, 0.016513003036379814, 0.022470708936452866, -0.024493636563420296, -0.025227593258023262, 0.023298010230064392, -0.037020813673734665, 0.04540998488664627, -0.03233904391527176, 0.046641312539577484, -0.017736976966261864, -0.0027818328235298395, 0.0311028603464365, 0.017941808328032494, -0.009068888612091541, 0.031427692621946335, 0.007430709898471832, 0.05639820545911789, 0.011019047349691391, -0.012607558630406857, 0.003034614957869053, -0.034566085785627365, -0.015156812965869904, 0.0010660735424607992, -0.017521575093269348, -0.02437026984989643, -0.01941918022930622, -0.0038155424408614635, 0.013863536529242992, -0.01961848884820938, -0.0017597744008526206, 0.03739393502473831, 0.011258061043918133, -0.03567688912153244, 0.024829471483826637, 0.010517039336264133, -0.009897633455693722, -0.032971713691949844, -0.033359456807374954, -0.01046573556959629, 0.00801759958267212, 0.03827441483736038, 0.040691472589969635, -0.022643854841589928, -0.023084508255124092, -0.012705259025096893, 0.03991471603512764, 0.019425295293331146, 0.022408902645111084, -0.011312589980661869, -0.028992250561714172, 0.004845439922064543 ]
Q: Split string at space not inside quotes in C# Possible Duplicate: Regular Expression to split on spaces unless in quotes I need to split a specified string at all spaces in order to get arguments, however, I need all the text inside quotes to stay "un-split". For example: ab "c d" This needs to be split into 2 strings: 1. ab, 2. "c d". I attempted to use regex or write my own method to parse it, but had no luck. A: Definitely a duplicate as Bala R mentioned above. Regex regex = new Regex(@"\w+|""[\w\s]*"""); var str = "ab \"c d\""; var x = regex.Matches(str).Cast<Match>().ToList();
[ -0.0068489075638353825, -0.0020031300373375416, 0.004213463049381971, 0.0006741334800608456, -0.027682216838002205, -0.03246022015810013, 0.012510400265455246, 0.05434935912489891, 0.017282087355852127, 0.0442231148481369, 0.033039309084415436, 0.033074792474508286, -0.0074863797053694725, -0.0470350980758667, -0.033669956028461456, -0.00043321700650267303, 0.01859409175813198, -0.03653396666049957, 0.00327111454680562, 0.0095186373218894, -0.027083316817879677, 0.010007362812757492, -0.07869860529899597, -0.006824855227023363, -0.02820969745516777, 0.02307535521686077, 0.03904835879802704, 0.023641113191843033, 0.06124526634812355, 0.06124846264719963, -0.008134680800139904, -0.04439779371023178, 0.02889402024447918, -0.04895014315843582, -0.01925056055188179, 0.0029910802841186523, 0.06133517250418663, 0.012315773405134678, -0.02300959825515747, -0.050696615129709244, 0.0014478028751909733, -0.04429600015282631, 0.05549894645810127, -0.04037034139037132, -0.03651537373661995, -0.014650099910795689, 0.03241478651762009, 0.005527832079678774, -0.03563898056745529, -0.003147567855194211, -0.030277660116553307, -0.012522079981863499, 0.05278196185827255, 0.018027041107416153, -0.015720125287771225, 0.026931775733828545, 0.04384640231728554, 0.0058582439087331295, -0.01695827767252922, 0.029224205762147903, -0.011756404303014278, 0.015100606717169285, 0.017106790095567703, -0.02850595861673355, 0.011274048127233982, -0.005301305558532476, -0.012774534523487091, 0.032170530408620834, 0.007987904362380505, -0.032385360449552536, -0.023838572204113007, 0.008962596766650677, -0.029598819091916084, -0.024687498807907104, -0.004430943168699741, -0.01405782625079155, 0.0006970179965719581, -0.012426182627677917, -0.02087501995265484, 0.040665403008461, -0.01974393241107464, 0.08328375220298767, 0.0333423838019371, 0.021940838545560837, -0.07188945263624191, -0.04299445450305939, -0.00026874165632762015, 0.009776031598448753, 0.0218302421271801, -0.01732628419995308, -0.040297672152519226, 0.02947959117591381, -0.002886946080252528, -0.0014358266489580274, -0.007893236353993416, 0.04002826660871506, -0.015886574983596802, 0.02258032187819481, 0.002265769522637129, 0.02799941599369049, 0.0530933141708374, 0.03133460134267807, -0.015870200470089912, 0.03802073374390602, -0.05796512961387634, 0.026135751977562904, 0.013441122137010098, -0.0014423473039641976, -0.013653702102601528, -0.02451784536242485, -0.020880883559584618, -0.01684257574379444, 0.04326871410012245, 0.014045805670320988, -0.018485644832253456, 0.02748250402510166, 0.0068710013292729855, 0.014397880993783474, 0.005186801310628653, 0.02297709882259369, 0.04694560915231705, -0.010683467611670494, 0.03570662811398506, -0.047752123326063156, -0.0072323475033044815, -0.019549695774912834, -0.024898286908864975, 0.030734336003661156, -0.023635389283299446, -0.029652826488018036, 0.027779605239629745, -0.006454752758145332, 0.015813704580068588, -0.008695310913026333, 0.028391404077410698, -0.001440518070012331, 0.0011946181766688824, 0.036528460681438446, -0.0006093955016694963, -0.06116321682929993, 0.043705474585294724, 0.02218661457300186, 0.009541410952806473, 0.0802110880613327, 0.010972501710057259, 0.030230527743697166, 0.031934186816215515, 0.018693197518587112, -0.02712482586503029, -0.008613898418843746, -0.06658152490854263, 0.03592543676495552, -0.01024862751364708, 0.0022805926855653524, -0.040619801729917526, 0.0062008025124669075, -0.013218022882938385, 0.010378568433225155, 0.02302897348999977, 0.016837861388921738, 0.00010847009252756834, -0.010514471679925919, -0.03868059813976288, 0.03979110345244408, -0.00805677380412817, 0.03555169701576233, -0.03572474792599678, -0.010180461220443249, 0.017652234062552452, -0.017654260620474815, -0.004050632007420063, -0.007101728580892086, -0.027733542025089264, 0.012872125953435898, 0.004529809113591909, 0.06180661916732788, 0.02963535115122795, -0.02736762911081314, 0.04392809048295021, 0.04272010549902916, -0.04639149457216263, -0.005484370980411768, -0.01839389279484749, 0.0606163926422596, 0.008761695586144924, 0.0008284316281788051, 0.0387747585773468, -0.035155754536390305, -0.056897398084402084, -0.03564932942390442, 0.043849699199199677, 0.028429564088582993, -0.008497597649693489, 0.03484222665429115, 0.0023422427475452423, 0.01334147434681654, -0.025534737855196, 0.03569886088371277, -0.0465383417904377, -0.04474201798439026, -0.016146747395396233, 0.03623694181442261, -0.009171511977910995, 0.02487739734351635, -0.019180139526724815, -0.03849150240421295, 0.026301007717847824, 0.07233733683824539, -0.030538953840732574, 0.030128024518489838, 0.030604256317019463, 0.01767476461827755, -0.01245223917067051, 0.008734780363738537, 0.0199416596442461, -0.01567784696817398, -0.05014984309673309, 0.031190922483801842, 0.011907185427844524, 0.005454148631542921, -0.03139495104551315, 0.026645824313163757, 0.011013695038855076, 0.059091921895742416, -0.005512700881808996, -0.02171516604721546, 0.027250006794929504, 0.05285600945353508, -0.013979013077914715, -0.016179559752345085, 0.001683659851551056, 0.03523669019341469, -0.0019959094934165478, 0.038182035088539124, 0.01648111641407013, 0.0524812713265419, 0.03253881260752678, 0.0538700670003891, -0.0020602315198630095, 0.030260959640145302, -0.020780202001333237, 0.04272354021668434, 0.016866622492671013, 0.03720426931977272, -0.009732047095894814, -0.00658886693418026, -0.022183505818247795, 0.005912792403250933, -0.0065770745277404785, 0.056162212044000626, -0.03368984907865524, 0.03664442151784897, 0.05833997204899788, 0.035388074815273285, -0.029964519664645195, -0.00732860341668129, 0.04313315078616142, 0.03152317926287651, -0.05090131238102913, 0.004411736503243446, 0.012615690939128399, 0.021467383950948715, -0.014177674427628517, -0.007988778874278069, 0.046544305980205536, 0.018592819571495056, 0.05889233201742172, -0.01391993835568428, 0.0020977517124265432, -0.06419536471366882, -0.0390375591814518, -0.06478804349899292, -0.036792121827602386, -0.025326494127511978, -0.0407148078083992, -0.0033667085226625204, 0.03358521685004234, -0.04446101933717728, 0.0114973159506917, -0.027275800704956055, -0.025886952877044678, -0.02949821762740612, -0.05276073142886162, 0.026644911617040634, 0.007991609163582325, -0.010462667793035507, -0.00961855798959732, 0.05241861194372177, 0.02304515428841114, 0.089203841984272, -0.05555480346083641, -0.023797661066055298, 0.006495158653706312, -0.01224526483565569, 0.009377451613545418, -0.008548643440008163, -0.0015311060706153512, 0.007949763908982277, -0.0407135896384716, -0.03685077652335167, 0.004679367411881685, 0.004255408421158791, -0.008310391567647457, 0.005619270261377096, -0.03780059888958931, 0.0668090283870697, 0.05014612898230553, -0.04926955699920654, 0.029764793813228607, 0.03573131561279297, -0.03884502127766609, 0.05628567561507225, 0.02870091237127781, -0.0008956798701547086, -0.03765702620148659, 0.029926057904958725, 0.049642469733953476, 0.009531551972031593, -0.03568638861179352, -0.01966659538447857, -0.028033209964632988, -0.004838468041270971, 0.00553907873108983, -0.0036721890792250633, -0.03342844173312187, 0.043749935925006866, -0.015057988464832306, -0.045325230807065964, 0.02869628183543682, -0.03746956214308739, -0.004662211053073406, -0.020984936505556107, -0.021741636097431183, 0.03471004217863083, 0.027369040995836258, 0.002673794748261571, -0.041328314691782, -0.029958631843328476, 0.04421653226017952, 0.008136982098221779, 0.02833770401775837, -0.04385608434677124, 0.011964187026023865, 0.019513726234436035, 0.01915394328534603, -0.010843328200280666, -0.0062217251397669315, -0.013606644235551357, 0.0012775828363373876, 0.007539203390479088, -0.037854958325624466, 0.008759122341871262, 0.03987423703074455, 0.022817088291049004, 0.008797891438007355, 0.049118392169475555, -0.04471448436379433, 0.016326747834682465, 0.049751635640859604, 0.014737910591065884, 0.048549834638834, 0.003986543044447899, 0.003729135263711214, -0.033400487154722214, -0.026745092123746872, -0.06535156071186066, 0.005579913035035133, 0.02562783844769001, 0.012021040543913841, -0.056517329066991806, 0.03169800713658333, -0.007146297488361597, -0.018429799005389214, 0.06840774416923523, -0.042523615062236786, -0.028104392811655998, 0.06698647141456604, -0.03093147464096546, 0.052773162722587585, -0.04991136118769646, -0.0016716409008949995, -0.018284399062395096, 0.010549069382250309, 0.05542450025677681, 0.02547777071595192, 0.051609013229608536, -0.02667808160185814, -0.020555546507239342, -0.02362469583749771, -0.01444608811289072, 0.008055003359913826, -0.007664931006729603, 0.027356602251529694, 0.007555019576102495, -0.04599741846323013, -0.023376407101750374, 0.012136023491621017, 0.02695341780781746, 0.059628926217556, 0.008527319878339767, 0.016940834000706673, -0.015318370424211025, 0.02882561646401882, 0.04097466915845871, -0.021791689097881317, 0.032424647361040115, -0.012423142790794373, 0.053649622946977615, 0.012857075780630112, 0.01122357603162527, -0.031817443668842316, -0.03610347583889961, -0.025010330602526665, 0.047268543392419815, -0.0009732945472933352, -0.005328558385372162, -0.034214846789836884, 0.011651934124529362, 0.003880515694618225, 0.03980878368020058, -0.03440747782588005, -0.037446096539497375, 0.0008668547379784286, 0.02397429198026657, 0.05153471231460571, -0.06573915481567383, 0.006330914329737425, -0.029166314750909805, 0.04755454510450363, 0.021190878003835678, -0.02993302419781685, -0.020615942776203156, -0.012361240573227406, -0.029987702146172523, -0.04405459016561508, 0.004451128654181957, 0.017289455980062485, -0.0112122418358922, 0.002491764025762677, -0.04465850815176964, 0.0007608212763443589, 0.034218013286590576, -0.009092147462069988, 0.020461365580558777, -0.012439955957233906, 0.0031121927313506603, -0.008972286246716976, 0.04146039858460426, -0.04034959524869919, -0.01748049631714821, 0.02527434565126896, -0.055243656039237976, -0.024232951924204826, -0.03780842572450638, -0.019870448857545853, -0.02734976075589657, 0.0010243403958156705, 0.014438576065003872, 0.027562841773033142, -0.01008894108235836, -0.006566776428371668, -0.030674435198307037, 0.008407363668084145, -0.050958529114723206, -0.04221877083182335, 0.06313783675432205, -0.024508731439709663, -0.05213173106312752, 0.03224605321884155, 0.030993018299341202, -0.007830343209207058, -0.009763466194272041, 0.025776727125048637, -0.008439292199909687, 0.006650956813246012, -0.03885693848133087, 0.014048381708562374, -0.04996180534362793, -0.028465693816542625, -0.013323458842933178, -0.05069590359926224, 0.041945457458496094, 0.032862599939107895, -0.03734655678272247, -0.021143166348338127, -0.05874871835112572, -0.006222646217793226, -0.009207396768033504, 0.006613356526941061, -0.004383991472423077, -0.01768641732633114, 0.014702723361551762, 0.03787044435739517, -0.014614870771765709, 0.0025294271763414145, -0.021652139723300934, 0.006498909555375576, 0.001066088443621993, -0.022905496880412102, 0.0047688870690763, 0.04766952618956566, -0.00853677373379469, -0.05171447619795799, 0.0060671595856547356, 0.01842508651316166, -0.032554835081100464, -0.02900870330631733, 0.004207868129014969, 0.003343727206811309, 0.008364351466298103, -0.02478557452559471, 0.030143748968839645, -0.045167166739702225, 0.017914338037371635, 0.03368425369262695, 0.028098389506340027, 0.020963357761502266, 0.027594473212957382, -0.01375253964215517, 0.043034713715314865, 0.04780978336930275, -0.0411248579621315, -0.010548996739089489, 0.06367317587137222, -0.0077880085445940495, 0.038872890174388885, 0.03385227546095848, 0.0012693983735516667, -0.04818098619580269, -0.029477475211024284, 0.01957632042467594, -0.04204857349395752, -0.03174731135368347, -0.0591433048248291, -0.004467065911740065, -0.011425814591348171, 0.08195789158344269, -0.01735728234052658, -0.050613950937986374, -0.020960919559001923, -0.03324773535132408, -0.0013860322069376707, -0.02639441378414631, 0.0017423230456188321, -0.03291270509362221, 0.008429749868810177, 0.006682801991701126, 0.04412594065070152, -0.01819174364209175, 0.06313326209783554, 0.021598266437649727, 0.011944115161895752, 0.020913977175951004, -0.013728901743888855, -0.049969833344221115, -0.03253071382641792, 0.020739706233143806, -0.020977376028895378, 0.0019178588408976793, 0.0024592992849648, -0.027459274977445602, 0.00942177977412939, -0.05402760952711105, -0.0037462436594069004, 0.0003407436015550047, 0.02472659759223461, 0.0001476761681260541, -0.0026911802124232054, 0.04085947573184967, -0.00632447237148881, -0.023202503100037575, -0.007480345666408539, 0.07166147232055664, 0.025064488872885704, 0.02852417156100273, -0.023807499557733536, -0.011330152861773968, -0.056274909526109695, -0.04572907090187073, -0.015556342899799347, -0.016908522695302963, -0.025310495868325233, -0.007436732761561871, -0.003909287042915821, 0.08185402303934097, -0.02685132622718811, 0.04798579216003418, 0.07598964869976044, -0.01252575684338808, 0.033681709319353104, -0.026039257645606995, 0.019444704055786133, 0.02352195978164673, -0.024145182222127914, -0.018831856548786163, -0.014226681552827358, -0.07026246935129166, -0.01109688077121973, -0.06437820196151733, -0.03385816514492035, -0.04470430687069893, -0.035969942808151245, 0.07532583922147751, -0.029630890116095543, 0.030667997896671295, 0.029773276299238205, -0.03412381559610367, -0.06044551357626915, 0.048370856791734695, 0.005110851023346186, 0.008897908963263035, 0.04220141842961311, -0.023379070684313774, -0.016697712242603302, 0.01872170716524124, -0.01155166421085596, -0.004567471332848072, -0.043499656021595, 0.05361548066139221, -0.013296549208462238, -0.011950815096497536, 0.025817591696977615, 0.013530272990465164, -0.04520733654499054, -0.025162767618894577, 0.014013499952852726, -0.0019154471810907125, -0.018071778118610382, -0.020838458091020584, -0.017774950712919235, -0.008863241411745548, -0.010866953991353512, 0.001284422934986651, 0.03328876569867134, 0.02537905052304268, 0.03579400107264519, 0.0027481482829898596, 0.017306579276919365, -0.008991122245788574, 0.028053339570760727, 0.016166357323527336, 0.006192972883582115, 0.023653142154216766, -0.05076836422085762, -0.006223594304174185, 0.006254099775105715, 0.008622650988399982, 0.04633171856403351, 0.006936088670045137, 0.035579267889261246, 0.0206166822463274, 0.0013436537701636553, 0.04157751426100731, -0.008958031423389912, -0.016054345294833183, 0.009807826019823551, -0.027014916762709618, -0.052531398832798004, -0.0037475936114788055, 0.019622446969151497, -0.02006305754184723, 0.04961748048663139, -0.048753056675195694, -0.007237586192786694, 0.028575576841831207, 0.012402528896927834, 0.009624681435525417, -0.0601385124027729, -0.014065688475966454, -0.03693145886063576, -0.0397123359143734, -0.0011218078434467316, -0.046840716153383255, 0.007302200887352228, 0.025187596678733826, -0.010947302915155888, -0.0307243000715971, 0.01114371232688427, -0.001924192882142961, -0.00032784719951450825, 0.00220375950448215, -0.02781900018453598, 0.03930531442165375, -0.03415253758430481, -0.03414011746644974, -0.05463305860757828, 0.0071215503849089146, -0.017279604449868202, -0.011717417277395725, -0.00023964163847267628, 0.028249284252524376, -0.023380255326628685, 0.02499142289161682, -0.0038486807607114315, 0.02016214095056057, 0.011364356614649296, -0.03404051810503006, -0.004498099908232689, 0.028151821345090866, 0.008075227029621601, 0.06130598857998848, 0.04077307507395744, -0.0005856637144461274, -0.0033856818918138742, 0.0002313696313649416, -0.01484149880707264, -0.008009390905499458, 0.02964051626622677, 0.0028864822816103697, 0.012042964808642864, 0.009840021841228008, -0.042437680065631866, -0.02376239374279976, -0.038260191679000854, 0.03814367204904556, 0.008721143938601017, 0.003333666594699025, 0.03363281115889549, -0.001783925574272871, 0.013760112226009369, 0.08476027846336365, -0.01603809930384159, 0.003945534583181143, 0.004842486698180437, 0.0323076955974102, 0.0063756126910448074, 0.001274626818485558, 0.0011149047641083598, -0.018968811258673668, 0.004037202335894108, -0.013250433839857578, 0.011602926068007946, 0.024374565109610558, -0.010938992723822594, 0.01292740274220705, 0.010705879889428616, -0.04281454160809517, -0.03474152460694313, 0.005643036682158709, -0.032597415149211884, 0.021844742819666862, 0.035613588988780975, -0.013609805144369602, 0.012639228254556656, -0.031029971316456795, -0.050390567630529404, -0.0018065037438645959, -0.056054577231407166, -0.0525665357708931, 0.04863867163658142, -0.00981958955526352, -0.011972453445196152, -0.015494820661842823, -0.061126355081796646, -0.035299960523843765, -0.03367070481181145, -0.009128623642027378, -0.02696896903216839, 0.04102908819913864, 0.017924536019563675, 0.016770891845226288, -0.019338510930538177, 0.024479243904352188, -0.010209489613771439, 0.01645814999938011, -0.05767754092812538, -0.022926421836018562, -0.00023347734531853348, 0.023746073246002197, 0.008302867412567139, 0.011528277769684792, -0.011393137276172638, 0.01344313658773899, 0.012219402007758617, 0.01980769820511341, 0.031042853370308876, -0.009658201597630978, 0.0093757975846529, -0.013394780457019806, -0.02692464552819729, -0.00011914814240299165, -0.03431752324104309, 0.027321211993694305, 0.003087118733674288, -0.032073237001895905, -0.029565852135419846, 0.051333218812942505, 0.052870504558086395, -0.00908457487821579, 0.044611427932977676, -0.0029628335032612085, 0.022702578455209732, -0.0034153368324041367, -0.004484168719500303, 0.002646330976858735, 0.01550826895982027, 0.05652559921145439, 0.021696679294109344, -0.02695860154926777, 0.014891630969941616, 0.03514878824353218, 0.0018190158298239112, -0.037269122898578644, 0.04479627311229706, 0.01934227906167507, -0.023622430860996246, -0.012299794703722, -0.016383493319153786, -0.017522703856229782, -0.0034263182897120714, -0.04862205311655998, 0.011130427941679955, -0.05150318145751953, -0.02191426418721676, -0.053835753351449966, -0.032225918024778366, 0.045199573040008545, 0.004156939685344696, -0.0022550036665052176, 0.010648377239704132, -0.005560148973017931, -0.03547437861561775, 0.050862666219472885, -0.00033509524655528367, -0.027623867616057396, 0.04005645588040352, 0.02094286121428013, 0.021390167996287346, 0.022757774218916893, 0.025545485317707062, 0.019136866554617882, -0.014795003458857536, 0.023199180141091347, 0.013956820592284203, 0.014686429873108864, -0.021659402176737785, 0.011099115945398808, -0.06943785399198532, 0.024602780118584633, -0.0352206826210022, -0.004355719778686762, 0.05796936899423599, -0.05439497157931328, 0.015585246495902538, -0.025068487972021103, 0.033387746661901474, -0.014864104799926281, -0.003976114094257355, 0.032438524067401886, -0.03576883301138878, -0.03532253950834274, 0.04152671620249748, -0.009998630732297897, 0.031723976135253906, -0.011317956261336803, 0.06669735163450241, 0.015607669949531555, 0.04132504388689995, 0.05229078605771065, -0.05404581129550934, -0.00017314631259068847, 0.019833529368042946, 0.0027867560274899006, -0.05049838125705719, -0.006941100582480431, -0.032999277114868164, -0.017352625727653503, -0.061016932129859924, 0.009177817031741142, 0.0007574271294288337, 0.057312678545713425, 0.003715917468070984, -0.06660860031843185, -0.02655363269150257, 0.030019965022802353, -0.049945224076509476, 0.02361864410340786, 0.04118123650550842, 0.02374253049492836, -0.005132739897817373, -0.05611535534262657, -0.016728917136788368, -0.022835692390799522, -0.0028270280454307795, -0.039845533668994904, 0.03274344652891159, -0.02919459529221058, -0.05063674971461296, -0.018718980252742767, -0.03818417340517044, -0.011568686924874783, -0.004610108677297831, -0.022967491298913956, -0.06929253786802292, 0.03329165652394295, 0.049061454832553864, 0.0062640649266541, 0.011313721537590027, -0.02967345155775547, -0.0037405614275485277, 0.02438759244978428, 0.04907860979437828, 0.011817104183137417, 0.058733731508255005, 0.016885168850421906, -0.015375110320746899, 0.03643059358000755, -0.023447396233677864, 0.019473662599921227, -0.02923416905105114, -0.030488552525639534, -0.00009497004066361114, 0.025329705327749252, -0.039768971502780914, -0.042999155819416046, 0.01965782605111599, 0.011886459775269032, 0.009887526743113995, -0.029109599068760872, -0.08109328150749207, 0.013295353390276432, -0.06271421164274216, -0.007784768007695675, -0.05036972463130951, 0.0044112494215369225, -0.0027698685880750418, -0.019173365086317062, -0.0069711352698504925, -0.04940532520413399, 0.1386622190475464, 0.040341150015592575, 0.022059857845306396, -0.015066694468259811, -0.008187994360923767, 0.036320656538009644, -0.026128049939870834, -0.015430898405611515, -0.0038961987011134624, -0.023954888805747032, 0.053247515112161636, -0.02630814164876938, 0.04481886327266693, 0.028277812525629997, 0.006329404190182686, 0.07154379785060883, -0.04483402147889137, -0.007334494031965733, 0.020326871424913406, -0.04102126881480217, -0.0479021891951561, 0.04898178577423096, 0.033390242606401443, 0.0502372607588768, -0.009560915641486645, 0.004346767440438271, 0.017820997163653374, -0.007463887799531221, -0.04502628743648529, -0.03525692969560623, 0.04926655441522598, 0.005980577785521746, 0.043246980756521225, -0.004147392697632313, -0.004091333597898483, 0.0419098325073719, 0.021139493212103844, -0.04701782763004303, 0.0021924315951764584, 0.002211087616160512, 0.0018568414961919188, -0.035272322595119476, 0.001533985254354775, -0.032591138035058975, 0.004015942104160786, 0.00624207966029644, -0.015430171974003315, 0.03458906710147858, 0.01875021494925022, -0.05005257576704025, 0.03839021921157837, -0.017126847058534622, 0.05472452938556671, -0.04450053721666336, -0.022270284593105316, 0.005635731387883425, -0.021124660968780518, -0.01687144860625267, -0.008886507712304592, -0.018520832061767578, 0.018221687525510788, 0.026597706601023674, -0.010301823727786541, 0.0075887152925133705, -0.025137225165963173, 0.018885405734181404, 0.028321845456957817, 0.0008542853756807745, -0.034427572041749954, -0.02049313113093376, -0.029693512246012688, -0.03807343915104866, 0.027905652299523354, -0.03561845421791077, 0.02818312682211399, 0.018249064683914185, -0.011448520235717297, 0.02164936624467373, 0.05105302482843399, 0.002080686157569289, -0.016578424721956253, -0.052436359226703644, -0.012347646057605743, -0.011878798715770245, -0.008516666479408741, 0.051905617117881775, -0.03575428947806358, -0.027988608926534653, -0.04337098449468613, 0.03381491079926491, 0.048227325081825256, 0.026381902396678925, -0.0003371690690983087, -0.01929052174091339, -0.033057812601327896 ]
My lady and our 5 girls, single malts, big game hunting with a pointy stick, downhill skiing, things that go bang, breathing underwater, adding value to entrepreneurial endevours. Markspring1978 replied to El Presidente's topic in Cigars Discussion Forum "the water hole" Markspring1978 replied to FatherOfPugs's topic in Cigars Discussion Forum "the water hole" @FatherOfPugs, this is awesome. Cherish the moment, the time each of my girls was born is among my greatest memories. I'll guess May 23rd at 0352 Are you going to set aside a box with the date code of the birth? I have a box of Sir Winston set aside with the month of my latest daughter's birthdate. Exhibition #4 MCS FEB 06- very nice smoke. Markspring1978 posted a topic in Cigars Discussion Forum "the water hole" I was pretty excited about this smoke. The Genios/Robusto Extra (52x140) is my favorite size, the Connie A most notably, and that's what the Hermitage comes in at. The wrapper is smooth and a lovely rosado color. I decided to pair this with a 2012 LBV Port. The serious port drinkers here like @Ken Gargett and @BrightonCorgi would likely not be impressed with my selection, but hey, here in Montana it's slim pickings for Port. A cold draw yielded aromas of cedar and barnyard. However, I could tell right away that this cigar might have construction issues as the draw was just off. This fella is just about 18 months old, I was concerned about it being too young, this is the first I have smoked from this box. I keep my humidor at 65%, I did not drybox before smoking. After lighting up I was immediately greeted with all the markers of a cigar that is too young; bitterness with a slightly sweet aftertaste, a bit like walnuts, although not exactly in a good sense. Over the first 1/3 the bitterness was also very tannic and dried my mouth out and I was left with an aftertaste of minerals and ash. The burn was really poor and uneven with the draw exacerbating the subpar flavors. As the first third moved into the second, I was encouraged to start to get some positive notes of dark chocolate and toasted tobacco. But they were more whiffs than full flavors. The lousy burn persisted and I had to re-light about 6 times. As I came down the home-stretch on the second third, nothing had given me too much to be excited about. This included the 38 degree temperatures and landscape of snow on my porch. So, I called it a day. So, you're probably picking up on a general dissatisfaction in this smoke. I was excited about this one, and it was pretty much a complete disappointment. These definitely need more time down, and hopefully that will improve them. As this stands right now I would rate this a 6 out of 10 or a 63 out of 100. Markspring1978 replied to Markspring1978's topic in Cigars Discussion Forum "the water hole" Picked one up, have been meaning to for some time. Perhaps because I live in Montana where it's pretty dry, I rarely experience draw issues. I keep my humidor at 65/65. My thought was unlucky run. @FatherOfPugs - I have been thinking about a future box pass that has a whiskey element, not whole bottles, just samples. Something to think about... Anyway, a couple pickups in Vegas. Whiskey selection in Montana is lousy. I stored the cigars in a small Pelican hard case with a 65% Boveda. Interesting comments, I suppose that it is possible that the higher temps in Vegas caused more moisture to be released and that may have resulted in higher MC in the cigars. As there were no issues the day before, I didn't consider that, but possible. Hindsight, I would have dryboxed and then traveled with no Boveda. Had an awesome trip, except for day 2 with the cigars. I bet on Texas Tech straight up, and that worked out well. Took Auburn with the points, so that worked out as well, even though everyone is sure to remind me of what a wus I am. Also took a trip to Top Golf, we don't have those in Montana. What a blast! Had a great weekend in Vegas for a friend's bachelor party. Saturday was a great cigar day, excellent '16 Connie A, an '09 Choix, and a '15 Mag 56. All were remarkable cigars. Sunday was officially my worst cigar day ever. Started with a '15 Punch DC, intending to do a review for the weekend comp. Was really looking forward to this smoke, unfortunately it was plugged and after 30 minutes I had a terrible headache and gave up. After an hour or so, the banging subsided in my head, I lit up a '17 CoRo. Couldn't believe the same result. Plugged. I tried to hang in there, but the cigar was a disaster. Completely blew apart, terrible burn. That night I lit up a '15 Party E2, hoping to end on a positive note. Couldn't believe it, third plugged in a row. Not as bad as the DC and CoRo, but still not good. I guess it was bad luck. Fortunately, the previous day was awesome, and my bad luck was only with cigars, and didn't extend to the craps table!
[ 0.005099337548017502, -0.012200524099171162, -0.01911509968340397, -0.00927913747727871, -0.0222224872559309, -0.005116102285683155, -0.00273658474907279, 0.05461394041776657, 0.03369536250829697, 0.02483651228249073, 0.03116030804812908, 0.011550632305443287, 0.002023020526394248, 0.007324615493416786, 0.004462594632059336, -0.008726940490305424, -0.0024668353144079447, -0.02701340802013874, -0.022962236776947975, 0.011461426503956318, 0.015607343055307865, 0.01696442812681198, -0.05991785600781441, -0.018643317744135857, -0.002989775501191616, 0.05980944260954857, 0.012998312711715698, 0.015894968062639236, 0.04550505429506302, 0.06837766617536545, -0.026432352140545845, -0.04451586678624153, 0.047508955001831055, -0.05436339229345322, -0.03952387347817421, -0.02776999957859516, 0.031364940106868744, -0.0185634084045887, -0.014336302876472473, -0.034310922026634216, -0.005451948847621679, -0.0005689171957783401, 0.054651208221912384, -0.018601741641759872, -0.014847231097519398, 0.00472221476957202, -0.011977391317486763, -0.01721358112990856, 0.02015179954469204, -0.057466134428977966, 0.0390738919377327, -0.025566106662154198, 0.03617750108242035, -0.0015474746469408274, 0.006745691876858473, 0.03193014860153198, -0.0011723549105226994, -0.01366856973618269, -0.012549522332847118, 0.02241988480091095, 0.04022163897752762, -0.008366364054381847, 0.025566065683960915, -0.07029362767934799, 0.04443831741809845, 0.03070228174328804, -0.018376978114247322, -0.014860165305435658, 0.03264642879366875, 0.02220132015645504, 0.005978526081889868, 0.021806461736559868, -0.017216768115758896, -0.007695874664932489, -0.012517193332314491, -0.011612849310040474, 0.003937933593988419, -0.003313025226816535, -0.010017612017691135, -0.0004823317867703736, -0.0029499789234250784, 0.045880865305662155, 0.0220439862459898, 0.03273014724254608, -0.0732145756483078, -0.028143461793661118, 0.0012924353359267116, 0.04682318866252899, 0.006227646954357624, 0.008436927571892738, 0.037807174026966095, 0.02925287000834942, 0.008748185820877552, -0.011808538809418678, 0.05464254319667816, 0.03664750978350639, -0.041269589215517044, 0.04497542604804039, 0.008937391452491283, -0.009774740785360336, 0.03300429880619049, 0.029691729694604874, -0.01060762070119381, 0.02748878486454487, -0.026568835601210594, -0.008593731559813023, 0.010117526166141033, -0.008764911442995071, -0.00509817898273468, -0.06133033707737923, 0.005726492032408714, 0.005029453430324793, -0.0013615553034469485, 0.004675551317632198, -0.011727754026651382, 0.06295505166053772, 0.005311029031872749, 0.03623032942414284, -0.03585348278284073, 0.015785889700055122, 0.00691856537014246, 0.022000523284077644, 0.06384897977113724, -0.02162577211856842, 0.009041208773851395, -0.03383587673306465, -0.020646406337618828, 0.04488445445895195, -0.03286884352564812, 0.0038796919398009777, 0.007131645921617746, -0.037873078137636185, 0.001969367265701294, 0.0211755633354187, 0.02772737294435501, 0.010703126899898052, -0.019027316942811012, 0.03701629862189293, 0.029656056314706802, -0.05988563224673271, 0.053955551236867905, 0.023315636441111565, 0.0030149819795042276, 0.08813581615686417, -0.0003287895815446973, 0.03340035676956177, 0.015886101871728897, -0.004451898392289877, -0.03735524043440819, 0.007025070022791624, -0.03345276415348053, 0.022033166140317917, -0.01805926114320755, 0.005385719705373049, 0.0036916194949299097, 0.020798522979021072, 0.0010965733090415597, 0.014292887412011623, 0.02934378571808338, 0.022232096642255783, -0.02150806225836277, 0.011493070051074028, -0.012365049682557583, 0.03173552453517914, -0.0246394295245409, 0.04120400547981262, 0.003971961792558432, -0.00407573813572526, -0.02118545211851597, -0.0303669236600399, 0.01813502423465252, 0.002153327688574791, 0.000714268593583256, 0.012052786536514759, 0.017887413501739502, 0.026338044553995132, 0.03141762316226959, -0.007056164555251598, 0.03581388667225838, 0.0495351180434227, -0.019347019493579865, -0.01956300251185894, 0.0031923307105898857, 0.07063999772071838, 0.020964888855814934, -0.01763813942670822, -0.009231217205524445, -0.008495335467159748, -0.05686713382601738, -0.026764897629618645, -0.02149316295981407, 0.016883669421076775, 0.01725207082927227, 0.02714122273027897, 0.02376818098127842, 0.009395169094204903, -0.029620446264743805, -0.012133732438087463, -0.013405230827629566, -0.04586760699748993, -0.009904096834361553, 0.07132439315319061, -0.010684286244213581, 0.04273775592446327, 0.008487442508339882, -0.036458805203437805, 0.008252203464508057, 0.05699814110994339, -0.03579001873731613, -0.002700864104554057, 0.038366686552762985, 0.0206354521214962, -0.007609648164361715, -0.025320881977677345, -0.0137384794652462, -0.020650336518883705, -0.032202959060668945, 0.043611519038677216, -0.02056295797228813, 0.005980832036584616, 0.025820575654506683, 0.015846749767661095, 0.03779536485671997, 0.06266441196203232, 0.014496508054435253, -0.006566955707967281, -0.008086463436484337, 0.049750518053770065, -0.01455644890666008, -0.02011416107416153, -0.02823816053569317, 0.025773057714104652, 0.037092238664627075, 0.06741737574338913, 0.05303264036774635, 0.019950006157159805, 0.02941623143851757, 0.04325966164469719, -0.010417156852781773, 0.026795614510774612, -0.0005761758657172322, 0.01583859696984291, 0.021205220371484756, 0.010886222124099731, -0.02756083942949772, 0.04192220792174339, -0.004955273121595383, 0.009017222560942173, 0.009130044840276241, 0.05656438320875168, -0.034157413989305496, 0.04516153037548065, 0.00003349782127770595, 0.04890458285808563, -0.0266730934381485, 0.010193085297942162, 0.029921500012278557, 0.06999991834163666, -0.0076811835169792175, -0.015868112444877625, -0.0069612362422049046, 0.0057664657942950726, -0.02373550646007061, -0.039084699004888535, 0.013162153773009777, 0.03593393415212631, -0.005457014311105013, 0.018651332706212997, -0.012076647020876408, -0.05455082282423973, -0.04974878206849098, -0.07419533282518387, -0.052008505910634995, -0.05858249217271805, -0.06033933162689209, 0.019357191398739815, 0.044673699885606766, -0.038136813789606094, 0.026820961385965347, -0.02111814357340336, -0.013218197971582413, -0.001152218785136938, -0.010379035025835037, 0.027943529188632965, -0.026348188519477844, 0.045134883373975754, -0.0259470846503973, 0.022457975894212723, -0.001372302882373333, 0.029243862256407738, -0.037768665701150894, 0.017970815300941467, -0.007341169286519289, -0.033316291868686676, 0.013107347302138805, 0.007424577139317989, -0.01825171522796154, -0.011227287352085114, -0.021301202476024628, -0.06297885626554489, -0.007935230620205402, 0.0076422179117798805, 0.006302414927631617, -0.013955206610262394, -0.05352137237787247, 0.022679271176457405, 0.02004898339509964, -0.024550409987568855, 0.012535282410681248, 0.04218583181500435, -0.053367167711257935, 0.024404436349868774, 0.03087812103331089, 0.011013384908437729, -0.06647477298974991, 0.03820423409342766, 0.03018234483897686, 0.012700837105512619, -0.02269052341580391, -0.021232420578598976, -0.04312349110841751, 0.020105374976992607, 0.012400781735777855, -0.01429853867739439, -0.05006152018904686, 0.05241299420595169, 0.03777498006820679, -0.04352395609021187, 0.06306512653827667, -0.03446941822767258, -0.05172869190573692, -0.03327861428260803, -0.03502798452973366, 0.03221254423260689, 0.016511207446455956, 0.02805524878203869, -0.000020389505152706988, -0.04102400317788124, 0.000691102584823966, 0.04708857089281082, 0.06723787635564804, -0.027688005939126015, -0.0027538216672837734, 0.034576475620269775, -0.013757568784058094, 0.013110275380313396, 0.03385044261813164, -0.06411623954772949, -0.024049172177910805, 0.03744984418153763, -0.025667820125818253, 0.027171973139047623, 0.052729059010744095, -0.012003226205706596, -0.0011685307836160064, 0.058050841093063354, -0.038833994418382645, 0.000036842400731984526, 0.03271583840250969, 0.005478769540786743, 0.015908706933259964, 0.011843920685350895, 0.013757635839283466, -0.011073816567659378, -0.018746012821793556, -0.0650167390704155, 0.026941698044538498, -0.01213073916733265, 0.05684913322329521, -0.07560648024082184, 0.07162370532751083, 0.008128284476697445, -0.05796917900443077, 0.019019048660993576, -0.047770872712135315, -0.007110865321010351, 0.024607790634036064, -0.0027301032096147537, 0.03302549198269844, -0.016974013298749924, 0.03141072019934654, -0.009091020561754704, 0.024584637954831123, 0.022532103583216667, 0.006239024922251701, 0.028218962252140045, -0.029963597655296326, -0.015731096267700195, -0.006198915187269449, -0.028019560500979424, -0.00489721680060029, -0.023485828191041946, 0.006103302352130413, 0.0005468321614898741, -0.050538115203380585, -0.03782040253281593, 0.041239432990550995, 0.029814040288329124, 0.03791390359401703, 0.0006426253239624202, 0.023021072149276733, 0.01017674058675766, 0.027469592168927193, 0.0205298513174057, -0.00011431965685915202, 0.02671155147254467, -0.06406083703041077, 0.06284662336111069, 0.026883365586400032, -0.014086158014833927, -0.04785247892141342, -0.008822641335427761, -0.02681243233382702, 0.017150435596704483, 0.02756919153034687, -0.02348220720887184, -0.08058559894561768, 0.04074670374393463, -0.010838033631443977, 0.027827918529510498, -0.03240489214658737, -0.013945682905614376, -0.009572447277605534, 0.0291829165071249, 0.014066697098314762, -0.07980527728796005, 0.0023541373666375875, -0.04629407450556755, 0.030594494193792343, 0.037523604929447174, -0.006303797010332346, -0.01294452603906393, -0.012837129645049572, -0.02018662728369236, -0.03611912578344345, 0.021138614043593407, 0.04269343614578247, 0.014374226331710815, 0.0005980559508316219, -0.03968336060643196, 0.023225486278533936, 0.04070928692817688, -0.0077629052102565765, -0.0011150558711960912, 0.0009197551989927888, 0.03464590013027191, 0.00439862348139286, 0.04947584494948387, -0.008347883820533752, -0.03555319830775261, 0.02485204115509987, -0.04809199646115303, -0.010225317440927029, 0.01691250689327717, -0.029935648664832115, 0.012208044528961182, 0.04313536733388901, 0.014441885985434055, 0.047710660845041275, -0.0021447583567351103, 0.004185321740806103, -0.0035457646008580923, 0.02135639823973179, -0.03103691339492798, -0.04101482778787613, 0.018910109996795654, 0.0015542367473244667, -0.05150863900780678, -0.0005160141154192388, 0.03232463076710701, -0.01639847829937935, 0.02061307057738304, 0.03855328634381294, -0.054761625826358795, 0.01764906384050846, -0.00016387856157962233, 0.03603117913007736, 0.002429269254207611, -0.010048060677945614, 0.007645552046597004, -0.03255317360162735, 0.04012763872742653, -0.01859896443784237, -0.03224023059010506, -0.0446619875729084, -0.061615459620952606, -0.033979322761297226, -0.011160480789840221, -0.018370164558291435, 0.004513654392212629, 0.03784780204296112, -0.03769266977906227, 0.008861713111400604, -0.03869568556547165, -0.01664087362587452, -0.016441838815808296, -0.023928390815854073, -0.002901362720876932, 0.009862758219242096, 0.04986150562763214, 0.02610158361494541, 0.0142407501116395, -0.04767738655209541, 0.002918042242527008, -0.01985880173742771, -0.009210855700075626, -0.07095550745725632, 0.02108702063560486, -0.040622126311063766, 0.013035589829087257, -0.023004768416285515, -0.000716574490070343, -0.023456649854779243, 0.002129694214090705, 0.001600495190359652, -0.0026115456130355597, -0.00043800019193440676, 0.013031277805566788, -0.02852138690650463, 0.052931372076272964, 0.04318656772375107, -0.06589311361312866, -0.043888967484235764, 0.04533722624182701, -0.020627927035093307, 0.04539746046066284, -0.012346819043159485, -0.03897130861878395, -0.03785376623272896, -0.06871461123228073, 0.005561119876801968, -0.030868683010339737, -0.020937731489539146, -0.05116584151983261, -0.0507468543946743, -0.013750877231359482, 0.04011021554470062, 0.00428109522908926, -0.0020022799726575613, 0.018996231257915497, -0.03357433155179024, 0.000828519812785089, -0.016303764656186104, -0.009090123698115349, -0.0587298646569252, -0.014158319681882858, -0.02378137595951557, 0.03447198495268822, -0.0010535070905461907, 0.04425352066755295, -0.0030129270162433386, -0.0003125018847640604, 0.013490695506334305, -0.01374026108533144, -0.040729720145463943, -0.04692915454506874, -0.005363921169191599, 0.0020399466156959534, -0.004801707807928324, -0.011818939819931984, -0.0634356364607811, 0.046689920127391815, -0.05232412740588188, 0.005376881454139948, 0.0015600231708958745, -0.018869563937187195, -0.03442557156085968, -0.022507186979055405, 0.06051167473196983, -0.012528409250080585, 0.021645698696374893, -0.03234151750802994, 0.020798752084374428, 0.03559929132461548, 0.028109829872846603, -0.02639462985098362, -0.01746528595685959, -0.05148616433143616, -0.04428853094577789, 0.040297284722328186, -0.040951404720544815, -0.019702909514307976, -0.06363516300916672, -0.012071489356458187, 0.034057728946208954, 0.015818588435649872, 0.023912683129310608, 0.06676008552312851, -0.03829875588417053, -0.013050151988863945, -0.03291739523410797, 0.01111446414142847, 0.0147878872230649, 0.0020146442111581564, -0.0070626623928546906, -0.014943180605769157, -0.04309173300862312, -0.02338474430143833, -0.028032366186380386, -0.034788262099027634, -0.0454351082444191, -0.011016781441867352, 0.09624075889587402, -0.0007727384800091386, 0.049072157591581345, 0.013605363667011261, -0.04849143326282501, -0.05514694005250931, 0.04716787487268448, 0.0009786156006157398, 0.048402123153209686, 0.033850446343421936, -0.011332834139466286, -0.038692642003297806, 0.011289075016975403, 0.021224915981292725, -0.013685747981071472, -0.04974428936839104, 0.061948880553245544, -0.018193474039435387, -0.03148568794131279, 0.03974350914359093, 0.03234366700053215, -0.04140657186508179, -0.030340122058987617, 0.012145381420850754, -0.004760321695357561, -0.0070156799629330635, 0.012322716414928436, 0.02158854901790619, -0.030218278989195824, -0.02722390927374363, 0.010133344680070877, 0.026529895141720772, 0.018446579575538635, 0.039423633366823196, -0.02227494865655899, 0.0199330635368824, -0.039214689284563065, 0.026616867631673813, 0.014551270753145218, -0.05135616660118103, 0.006936463061720133, -0.041602328419685364, 0.016935180872678757, -0.007213084027171135, 0.001003713347017765, 0.035838089883327484, -0.030490487813949585, 0.003831871785223484, 0.014286345802247524, -0.003496497869491577, 0.04045712202787399, 0.014451472088694572, -0.00404653325676918, 0.01482198666781187, -0.03719206899404526, -0.06240854412317276, -0.05650586634874344, 0.031801894307136536, -0.022842703387141228, 0.023373011499643326, -0.04054822027683258, 0.006487763952463865, 0.043148223310709, 0.01038969587534666, -0.019924094900488853, -0.03382265940308571, -0.06047235429286957, -0.04595838114619255, -0.022874047979712486, -0.04674869775772095, -0.025319475680589676, -0.02955975942313671, 0.036547619849443436, -0.0013550634030252695, -0.005964429583400488, 0.010731680318713188, 0.010844621807336807, -0.02386043220758438, -0.0023226612247526646, -0.019741710275411606, 0.016754671931266785, -0.04576878249645233, -0.058770716190338135, -0.037497758865356445, -0.005890172440558672, -0.01116397324949503, 0.00792421493679285, 0.02724030613899231, 0.05037708953022957, -0.007438143249601126, 0.015725428238511086, 0.0248897485435009, -0.002471919171512127, -0.00036089145578444004, -0.051531024277210236, -0.010042219422757626, 0.024844558909535408, -0.022967634722590446, 0.03252291679382324, 0.01494729146361351, -0.022986937314271927, 0.033982012420892715, 0.005032139364629984, -0.04310126602649689, 0.003698545042425394, -0.004600360058248043, -0.0037345041055232286, -0.008752129971981049, -0.057319436222314835, -0.034184105694293976, -0.005910903215408325, -0.03742294758558273, 0.017481975257396698, -0.015133567154407501, 0.022991802543401718, -0.013813148252665997, -0.0130459014326334, 0.0007010403205640614, 0.03603093698620796, 0.015910416841506958, 0.044908225536346436, -0.007190946023911238, 0.03184660151600838, 0.0164217259734869, 0.015613558702170849, 0.022741464897990227, -0.005857400130480528, 0.028434881940484047, -0.03554437682032585, 0.0068541537038981915, 0.05485047027468681, -0.0231007169932127, 0.06016764044761658, -0.0051826429553329945, -0.03414811193943024, -0.06841833144426346, -0.0022946703247725964, -0.025378849357366562, 0.04237177222967148, -0.0027205024380236864, 0.00469623738899827, 0.011799692176282406, -0.028986288234591484, -0.04723527655005455, -0.010241937823593616, -0.06848170608282089, -0.024170581251382828, 0.04963231459259987, 0.00018166804511565715, -0.003292759647592902, -0.022489963099360466, -0.033608440309762955, 0.015572401694953442, 0.0059103891253471375, -0.009676062501966953, 0.002856259001418948, 0.028672736138105392, -0.014826838858425617, 0.044465914368629456, -0.027778122574090958, 0.0005812666495330632, 0.014931394718587399, 0.03781454637646675, -0.044313494116067886, -0.05583829805254936, 0.007100054994225502, 0.03351183980703354, 0.011043725535273552, 0.020402444526553154, -0.011913067661225796, 0.031383685767650604, -0.013561958447098732, -0.010155529715120792, 0.005020109470933676, 0.010954374447464943, -0.003985978197306395, 0.0183254424482584, 0.005265104118734598, -0.026367265731096268, -0.027635745704174042, 0.017191683873534203, -0.008811675012111664, -0.018091673031449318, -0.0404801145195961, 0.028533414006233215, 0.01672225259244442, -0.0205402635037899, 0.0496002696454525, 0.023430241271853447, 0.010076797567307949, -0.021569285541772842, 0.0127308564260602, -0.0189986489713192, 0.03928980603814125, 0.04170453920960426, 0.035178717225790024, -0.033212821930646896, 0.008628816343843937, 0.05221325159072876, -0.0024635030422359705, 0.014533990994095802, 0.029151184484362602, 0.042869098484516144, -0.003703656140714884, 0.004741953685879707, -0.03741101175546646, 0.008191867731511593, 0.009664231911301613, -0.019898461177945137, -0.024365341290831566, -0.02251403033733368, -0.0051527791656553745, -0.010082898661494255, -0.019544923678040504, 0.027308981865644455, 0.0030750122386962175, 0.019938021898269653, -0.022072410210967064, -0.010814724490046501, 0.004604153335094452, 0.049363017082214355, -0.0003945445059798658, 0.031198082491755486, 0.03468216955661774, 0.0199438389390707, -0.013912839815020561, 0.03426448255777359, 0.010042648762464523, 0.02516324818134308, -0.026390019804239273, -0.001648323843255639, 0.04607005417346954, -0.02340686321258545, -0.07329122722148895, 0.009868155233561993, -0.029166730120778084, 0.0400298647582531, -0.02473401464521885, -0.01950572244822979, 0.019980566576123238, -0.04231937974691391, -0.01210224162787199, -0.04654800891876221, 0.03515961021184921, -0.029525350779294968, -0.02860628440976143, 0.033919040113687515, -0.028893262147903442, 0.0037853107787668705, 0.04753098264336586, 0.0016457198653370142, 0.04518948122859001, -0.01665724813938141, 0.05905012786388397, -0.008461584337055683, -0.0012567676603794098, 0.06260588020086288, -0.002961526857689023, -0.008946516551077366, 0.04434945806860924, -0.0059659285470843315, -0.032437436282634735, 0.0005430380697362125, -0.02477826364338398, -0.0025052360724657774, -0.013290544971823692, -0.028799602761864662, 0.006261969450861216, 0.0438036248087883, 0.0020051051396876574, -0.06221536174416542, -0.007227762136608362, 0.004755523521453142, -0.0492343008518219, 0.011083725839853287, 0.0016944388626143336, 0.05181184783577919, -0.028303351253271103, 0.014374987222254276, -0.03250603377819061, -0.02942727506160736, 0.004192855674773455, -0.04848629608750343, 0.05443747714161873, -0.010326718911528587, -0.050679050385951996, -0.03843817859888077, -0.04133026301860809, -0.005150155164301395, -0.015750311315059662, -0.042048148810863495, -0.0469004288315773, 0.007444330025464296, 0.04627157002687454, 0.015420367941260338, 0.010988609865307808, -0.028185300529003143, 0.011418640613555908, 0.02431146800518036, 0.050114382058382034, 0.012705917470157146, 0.018992042168974876, 0.029439803212881088, -0.015933331102132797, 0.02393561415374279, -0.059550050646066666, 0.03678407892584801, -0.009088534861803055, 0.011804824694991112, -0.051148753613233566, 0.008119937963783741, 0.0001973522885236889, -0.04833439365029335, -0.0029668898787349463, 0.010254153050482273, 0.004996391478925943, -0.038454942405223846, -0.09403631836175919, -0.00005827013592352159, -0.05325311794877052, -0.018882930278778076, -0.027152402326464653, 0.0413333922624588, 0.0004940447979606688, 0.005794998724013567, 0.002019516658037901, -0.07342473417520523, 0.17872121930122375, 0.018892012536525726, 0.03898553177714348, -0.01105695404112339, 0.019387850537896156, 0.021739445626735687, 0.027534544467926025, 0.006287287920713425, 0.019715163856744766, -0.0280997883528471, 0.029239213094115257, -0.004174147266894579, 0.020445704460144043, 0.02105291187763214, 0.04106629639863968, 0.061152663081884384, -0.02403239905834198, -0.01090534869581461, 0.02498123236000538, -0.057436950504779816, -0.027369435876607895, 0.003749674651771784, 0.022548168897628784, 0.026573315262794495, 0.006332091521471739, 0.010748239234089851, 0.030412303283810616, -0.05350261926651001, 0.007381225470453501, -0.021829908713698387, 0.03419974818825722, -0.013440193608403206, 0.052199605852365494, -0.010063056834042072, -0.03352362662553787, 0.023275503888726234, -0.0024911027867347, -0.017099326476454735, 0.016872825101017952, 0.01884363405406475, -0.018337279558181763, 0.008346705697476864, 0.043324533849954605, -0.03579803183674812, 0.016832910478115082, 0.011657609604299068, -0.02272556908428669, 0.023524519056081772, 0.002561368281021714, -0.036084845662117004, 0.06065133213996887, -0.047437261790037155, 0.05388171598315239, -0.01927291415631771, -0.029387453570961952, 0.02693445235490799, 0.012455238960683346, -0.02939906343817711, -0.00817912444472313, 0.018556511029601097, 0.026998300105333328, -0.0002356616168981418, -0.009332817979156971, 0.0003585592203307897, -0.027019452303647995, 0.0451994352042675, 0.03715090826153755, -0.013991747982800007, -0.005362507421523333, -0.011685389094054699, -0.02435494400560856, -0.015434175729751587, -0.02962607704102993, -0.04109970107674599, 0.026778025552630424, 0.023859085515141487, -0.01120423711836338, 0.004776743706315756, 0.0037696990184485912, -0.011898434720933437, -0.03772703558206558, -0.0518878810107708, -0.03934650123119354, -0.014799133874475956, 0.03280248865485191, 0.024417588487267494, -0.028349656611680984, -0.05168592929840088, -0.02304050326347351, 0.05857723206281662, 0.029656289145350456, 0.030967801809310913, -0.03138668090105057, 0.0032783367205411196, -0.01080432627350092 ]
October 8, 2020 by Kate Rosen Meet Gail Boudreaux Throughout her life, Gail Boudreaux has exhibited a strong commitment to athletics as a means to develop leadership skills. She has been quoted as saying, "By playing sports, I learned a great deal that helped me to be successful in businessโ€”how to be part of a team, how to work hard, how to overcome adversity." Many of the lessons Gail learned through athletics have stuck with her as she has risen to the top ranks of Corporate America. Gail Boudreaux is President and Chief Executive Officer of Anthem, Inc., a Fortune 50 company and leading health benefits company dedicated to improving lives and communities and to making healthcare simpler, more affordable and more accessible. Through its affiliated companies, Anthem serves more than 106 million people. Prior to her time at Anthem, she founded her own healthcare strategy and business advisory firm and was the CEO of United Healthcare. Boudreaux's track record of success is widely recognized across the business world. She has made both Forbes and Fortune magazines' lists of Most Powerful Women multiple times and was listed among the Top 100 Most Influential Leaders in Healthcare by Modern Healthcare. Boudreaux currently serves on the board of directors for Zimmer Biomet Holdings, the Central Indiana Corporate Partnership, Inc., and the Blue Cross Blue Shield Association (BCBSA), and was formerly on the boards of trustees for Dartmouth College and the Chicago Field Museum of Natural History. In 2018, Gail was honored with the Billie Jean King Contribution Award, which is an annual award granted by the Women's Sports Foundation to an individual or group who has made significant contributions to the development and advancement of women's sports. Boudreaux graduated cum laude from Dartmouth College and graduated with high honors from business school at Columbia University. At Dartmouth, Boudreaux was one of the best athletes in the school's history, becoming an All-American in both basketball and track and field. She still holds multiple school scoring records in basketball and won four consecutive Ivy League shot put titles. She won the exclusive NCAA Silver Anniversary Award for outstanding professionalism and athletic achievement winner and was inducted into the New England Basketball Hall of Fame as well as the Dartmouth Wearer of the Green Hall of Fame. Post tagsacademydevelopmenteducationgirls sportsleadership
[ -0.004916945938020945, -0.010260921902954578, -0.012900360859930515, 0.007704324554651976, -0.0054945372976362705, 0.0019222277915105224, -0.005620112176984549, 0.00304134888574481, 0.01497602742165327, 0.002905376721173525, 0.013417626731097698, 0.008582955226302147, 0.02236000820994377, -0.041042912751436234, -0.012442248873412609, 0.012084552086889744, -0.014533203095197678, -0.035897210240364075, -0.025598948821425438, -0.013419810682535172, -0.00881209410727024, 0.007334857247769833, -0.0767003521323204, -0.023919902741909027, -0.013723106123507023, 0.022241316735744476, 0.026909317821264267, -0.01079013105481863, 0.06307562440633774, 0.05262630432844162, -0.014056830666959286, -0.04984736815094948, 0.034391243010759354, -0.0637269839644432, -0.04594250023365021, -0.017649507150053978, 0.030682377517223358, -0.036475200206041336, -0.04852606728672981, -0.023496413603425026, -0.0028572415467351675, -0.013470455072820187, 0.029588919132947922, -0.03537103906273842, -0.07057343423366547, 0.004842556547373533, -0.00003473765173112042, -0.030609479174017906, 0.026288116350769997, -0.05331466346979141, 0.023053409531712532, 0.012263001874089241, 0.03268798440694809, 0.009370533749461174, 0.007946374826133251, 0.0257831159979105, 0.01384588610380888, -0.010158433578908443, -0.0003491312963888049, 0.031124809756875038, 0.03383682668209076, -0.012373250909149647, 0.036291610449552536, -0.04555169865489006, 0.047955311834812164, 0.001232688082382083, 0.017933299764990807, -0.019424166530370712, -0.008572704158723354, -0.02918008156120777, 0.010785511694848537, -0.02984551712870598, -0.04552673548460007, -0.010268851183354855, 0.013740806840360165, -0.008575020357966423, 0.009664900600910187, -0.006017960142344236, -0.01174874883145094, -0.02151878923177719, -0.019375761970877647, 0.06086129695177078, 0.0035094362683594227, 0.01828739419579506, -0.05593341588973999, -0.024291330948472023, -0.05139508843421936, 0.024247698485851288, 0.007149955257773399, 0.004064221400767565, -0.00009844593296293169, 0.034290019422769547, -0.010001986287534237, -0.020044803619384766, 0.024322956800460815, 0.04195570573210716, -0.04011881723999977, 0.02008085697889328, 0.012845729477703571, 0.001502174069173634, 0.028017017990350723, 0.028103750199079514, 0.024457909166812897, 0.053143519908189774, -0.022848308086395264, -0.01951652765274048, 0.024118172004818916, -0.02754184789955616, 0.03079664334654808, -0.03463384136557579, 0.012388249859213829, -0.02259640581905842, 0.01983264647424221, -0.0126333711668849, -0.002405973616987467, 0.04843465983867645, 0.025412667542696, 0.040682870894670486, -0.0405772402882576, 0.04441828653216362, 0.013001262210309505, -0.008562195114791393, 0.055496152490377426, -0.030454276129603386, 0.0459648072719574, 0.002875545062124729, -0.018620381131768227, 0.04527538642287254, -0.016988184303045273, -0.02918955497443676, 0.012641326524317265, -0.05504908040165901, -0.031035345047712326, -0.00880871806293726, -0.012600290589034557, 0.012746800668537617, -0.022103367373347282, 0.036114245653152466, 0.045685287564992905, -0.058880239725112915, 0.051754456013441086, 0.056152474135160446, 0.027441268786787987, 0.10515997558832169, -0.028091901913285255, 0.037231311202049255, -0.007706931792199612, -0.008576355874538422, -0.017037460580468178, 0.01506097987294197, -0.03653370216488838, 0.04480103403329849, -0.007286106236279011, 0.012844287790358067, -0.016607843339443207, -0.0026990054175257683, -0.011151866056025028, 0.023566989228129387, 0.005555176641792059, 0.012867306359112263, -0.044489677995443344, 0.016927365213632584, -0.01920354552567005, 0.0636335089802742, -0.011579976417124271, 0.047477081418037415, -0.014867560006678104, -0.010448474436998367, -0.018864234909415245, -0.006392255425453186, 0.04585573449730873, -0.003110825549811125, -0.01936035230755806, -0.006773087196052074, 0.00043619281495921314, 0.05773701146245003, 0.037984516471624374, -0.004697536583989859, 0.013987799175083637, 0.050044797360897064, -0.045829251408576965, -0.04243621602654457, 0.004106131847947836, 0.10005731880664825, 0.0056013623252511024, -0.012304894626140594, 0.006935756187886, -0.031210100278258324, -0.04140321537852287, -0.028100378811359406, 0.0008174323011189699, 0.03822210058569908, -0.01571721024811268, 0.03159617260098457, 0.014499520882964134, 0.004811929073184729, -0.02902103401720524, 0.011649727821350098, 0.004139759112149477, -0.04379025101661682, 0.01830514334142208, 0.03169712796807289, -0.041724346578121185, 0.043733518570661545, -0.015749100595712662, -0.022882303223013878, 0.01576332561671734, 0.05837530642747879, -0.060235802084207535, 0.0003360052651260048, 0.05394485220313072, 0.02787846326828003, -0.008064703084528446, -0.0017358073964715004, 0.014867124147713184, -0.029669886454939842, -0.027496373280882835, 0.04936746880412102, 0.014196932315826416, -0.0006004085880704224, 0.00837412104010582, 0.01050648745149374, 0.0367514044046402, 0.026468852534890175, -0.005118956323713064, -0.02261286787688732, 0.009642727673053741, 0.048535823822021484, -0.04469430446624756, -0.02345496043562889, 0.004108176566660404, 0.03535832464694977, 0.00843269843608141, 0.06466750055551529, 0.03400686755776405, 0.03200283274054527, 0.027962390333414078, 0.06482641398906708, 0.028477951884269714, 0.03517502173781395, -0.006550532300025225, 0.008478994481265545, 0.061551783233881, 0.034216977655887604, -0.008932099677622318, -0.005295418668538332, -0.044898953288793564, 0.0021410773042589426, -0.03238939493894577, 0.05177203193306923, -0.027527596801519394, 0.03612617403268814, 0.03730536997318268, 0.032903313636779785, -0.033871885389089584, 0.01940031722187996, 0.035187043249607086, 0.059178419411182404, -0.01815958321094513, 0.004848531913012266, 0.004777880851179361, -0.002779719652608037, -0.021366145461797714, 0.0065980758517980576, 0.04702809080481529, 0.024667760357260704, -0.013024304993450642, 0.04148217663168907, 0.0007573796319775283, -0.046955645084381104, 0.005540232174098492, -0.07220488786697388, -0.04621458798646927, -0.04704456031322479, -0.049284886568784714, 0.02148701809346676, 0.03428203985095024, -0.0351690798997879, 0.03200860321521759, -0.02816864103078842, -0.018360789865255356, -0.018131183460354805, -0.018095972016453743, 0.05753111466765404, 0.025277135893702507, 0.03430551663041115, -0.034445472061634064, 0.02327113412320614, -0.04537379369139671, 0.021425239741802216, -0.013035498559474945, 0.03623132035136223, -0.007635996211320162, -0.02898705191910267, 0.05483591929078102, -0.017469899728894234, 0.005537751596421003, -0.002858162159100175, -0.0712578147649765, -0.06257467716932297, -0.0062974970787763596, 0.028593098744750023, 0.017028795555233955, 0.015121844597160816, -0.024559738114476204, 0.05049750953912735, 0.006830111611634493, -0.03479217365384102, 0.037600092589855194, 0.04366099089384079, -0.040540121495723724, 0.04076225310564041, 0.03358222171664238, -0.001030559535138309, -0.05548209697008133, 0.04259011521935463, 0.05332791805267334, -0.0041579753160476685, -0.031840577721595764, -0.013618011958897114, -0.05190599337220192, -0.021899057552218437, 0.007978403940796852, -0.015622449107468128, -0.03304826468229294, 0.02778823859989643, 0.01900453492999077, -0.059270165860652924, 0.02720041386783123, -0.043028127402067184, -0.02257930487394333, -0.04414917901158333, -0.04180748388171196, 0.020632946863770485, 0.0324707068502903, -0.0028891214169561863, 0.0291184950619936, -0.03300773724913597, 0.02427108772099018, 0.0075476523488759995, 0.0170355886220932, 0.014404717832803726, 0.022861840203404427, 0.045153696089982986, -0.006794864311814308, 0.007090589497238398, 0.007429220713675022, -0.018730781972408295, 0.00112096534576267, 0.023891238495707512, -0.025288144126534462, -0.002080459613353014, 0.02166120335459709, 0.004566464107483625, 0.01505287829786539, 0.01676538772881031, -0.05555489659309387, 0.03314293548464775, -0.010545814409852028, 0.032596152275800705, 0.023222075775265694, 0.02380676381289959, 0.01948423869907856, -0.0011257267324253917, -0.06830849498510361, -0.04786946251988411, 0.019438715651631355, 0.026581447571516037, 0.06944132596254349, -0.03200569748878479, 0.06927942484617233, 0.02056424506008625, -0.005906528793275356, 0.03526245802640915, -0.05905626341700554, 0.0005751926801167428, 0.058691203594207764, -0.017285022884607315, 0.034432005137205124, -0.03098241053521633, 0.013971911743283272, -0.01951896771788597, 0.04217063635587692, 0.011810180731117725, -0.010389372706413269, 0.011390511877834797, -0.031146420165896416, -0.00553976371884346, 0.029768165200948715, 0.00003942723560612649, -0.005285048391669989, -0.0379963219165802, 0.007992583326995373, -0.013523698784410954, -0.038492441177368164, -0.038322292268276215, 0.04982459545135498, 0.035336222499608994, 0.04541170224547386, -0.030412614345550537, 0.044680312275886536, 0.015615483745932579, 0.018685955554246902, 0.035644251853227615, -0.008737086318433285, 0.015989581122994423, -0.055115971714258194, 0.003961795940995216, 0.006962879095226526, -0.006180949974805117, -0.04137396439909935, -0.00557103892788291, -0.006338918581604958, 0.029490912333130836, 0.02621833235025406, -0.045321766287088394, -0.032210346311330795, 0.018202317878603935, -0.0038489962462335825, 0.05770483613014221, -0.05008450895547867, -0.01183143351227045, -0.012643448077142239, 0.05214768648147583, 0.015433182939887047, -0.07204873114824295, 0.004447154700756073, -0.07612189650535583, 0.046614352613687515, 0.021240174770355225, -0.03469328582286835, -0.043784886598587036, -0.008135922253131866, -0.010438470169901848, -0.027048729360103607, -0.011304917745292187, 0.041971247643232346, -0.02383994124829769, 0.019233163446187973, -0.04206206277012825, 0.01710771583020687, -0.004774850327521563, -0.012146239168941975, -0.012406385503709316, 0.0010156715288758278, 0.02372979372739792, 0.025079119950532913, 0.03132407367229462, -0.016856640577316284, -0.030042478814721107, 0.0440792478621006, -0.05556526780128479, 0.019656678661704063, 0.02253248356282711, -0.03267607465386391, -0.010224476456642151, -0.0027153666596859694, 0.027178319171071053, 0.012652800418436527, -0.02805451676249504, 0.0016136531485244632, -0.009162530303001404, 0.039040856063365936, -0.018208341673016548, 0.010591364465653896, 0.09430748969316483, -0.002873609308153391, -0.014747587963938713, 0.02228500135242939, 0.058742377907037735, -0.006666381843388081, -0.015134560875594616, 0.004533177241683006, -0.052498120814561844, 0.07851769030094147, -0.00949884857982397, 0.025795334950089455, -0.018824253231287003, -0.041466716676950455, 0.029685553163290024, -0.010686329565942287, 0.021076520904898643, 0.0010605648858472705, -0.011188064701855183, -0.027638258412480354, -0.03921947255730629, -0.012008953839540482, -0.013501089997589588, -0.019221680238842964, 0.006130588706582785, 0.03321465849876404, -0.010534575209021568, -0.027800027281045914, -0.007456684019416571, -0.0038246482145041227, 0.012207583524286747, 0.0003142589412163943, 0.012879632413387299, -0.0019015285652130842, -0.02587961219251156, 0.01833159476518631, -0.024932553991675377, -0.024073103442788124, 0.0033033466897904873, 0.0039849537424743176, -0.03499225154519081, -0.03623479604721069, -0.03415612876415253, -0.04640742763876915, 0.006604088004678488, -0.031017985194921494, 0.00824705883860588, -0.003462775144726038, 0.04829733446240425, 0.04931890591979027, 0.017583012580871582, -0.004139743745326996, 0.03386899083852768, -0.020682288333773613, 0.05981271713972092, 0.01396865863353014, -0.0514797642827034, -0.04483916237950325, 0.06777866929769516, -0.041234683245420456, 0.055559661239385605, -0.013356288895010948, -0.03860742598772049, -0.024180175736546516, -0.04046277329325676, 0.0023634086828678846, -0.008947807364165783, -0.03302810713648796, -0.031034719198942184, -0.04186125099658966, -0.021315570920705795, 0.058706898242235184, -0.002052152995020151, 0.006918025203049183, 0.009635219350457191, -0.02829410880804062, 0.003360030008479953, -0.034274421632289886, -0.007997886277735233, -0.03598390519618988, -0.009425520896911621, 0.024603890255093575, 0.04734528437256813, 0.012750285677611828, 0.015806294977664948, 0.020733438432216644, 0.027370087802410126, 0.014185848645865917, -0.018406610935926437, -0.04136275127530098, -0.02519453503191471, 0.0048147342167794704, -0.01553137693554163, 0.010363675653934479, 0.001968385186046362, -0.02939305640757084, 0.07060007750988007, -0.039370592683553696, -0.017427608370780945, -0.025907911360263824, -0.019243547692894936, -0.015628838911652565, -0.004208703525364399, 0.05564133822917938, -0.038384225219488144, 0.010956784710288048, -0.026528233662247658, 0.023790322244167328, 0.054907672107219696, -0.006687745917588472, -0.03222804516553879, -0.03387732431292534, -0.008222194388508797, -0.07738862186670303, 0.021975358948111534, -0.013164165429770947, -0.03261234983801842, -0.03884081915020943, -0.03309248387813568, 0.056330908089876175, -0.002336877631023526, 0.05887879431247711, 0.050646886229515076, -0.018866000697016716, -0.014417961239814758, -0.02771633304655552, 0.002275200793519616, 0.018228670582175255, -0.005221933592110872, 0.007995286956429482, -0.03641240671277046, -0.02668817527592182, -0.009864461608231068, -0.03573359549045563, -0.025780916213989258, -0.03893135115504265, -0.0024289621505886316, 0.04466511681675911, -0.0257160272449255, 0.024545487016439438, -0.00717992102727294, -0.028007136657834053, -0.05478702485561371, 0.04954446479678154, -0.015144365839660168, -0.0034960831981152296, 0.035826485604047775, 0.01157685462385416, -0.01705976203083992, 0.00834768544882536, -0.010302108712494373, 0.017925569787621498, -0.044575028121471405, 0.06025005877017975, -0.0012440124992281199, -0.03623664379119873, 0.03042905405163765, 0.049343548715114594, -0.06113329902291298, -0.026664961129426956, 0.007312043569982052, 0.0035583360586315393, 0.00365203944966197, -0.01913934387266636, 0.004448972176760435, 0.02576739527285099, -0.0041348896920681, -0.004534971434623003, 0.04261806607246399, -0.02935902774333954, 0.04174511507153511, -0.03590264171361923, 0.04219803214073181, -0.053894251585006714, -0.0024987859651446342, 0.018625911325216293, -0.020509708672761917, -0.01485969964414835, -0.05678505823016167, -0.00022995278413873166, -0.004028252325952053, 0.010947687551379204, 0.0584581196308136, -0.01132627110928297, -0.0002880109823308885, 0.01185221690684557, -0.01043632160872221, 0.05102243646979332, 0.008963963016867638, -0.035998161882162094, 0.0032007647678256035, -0.021400252357125282, -0.025641407817602158, -0.06370729953050613, 0.006393000483512878, -0.001990413060411811, 0.05852437764406204, -0.044613033533096313, 0.0017455947818234563, 0.05647654086351395, -0.026145225390791893, 0.019166164100170135, -0.04049476981163025, -0.04535405710339546, -0.03986169397830963, -0.06686826795339584, -0.030160212889313698, -0.024203738197684288, -0.005418804474174976, 0.03310133516788483, 0.025173861533403397, -0.005550782661885023, -0.004614090546965599, 0.0022757353726774454, -0.002924673492088914, -0.01739603467285633, -0.005098097492009401, 0.02196360193192959, -0.026593321934342384, -0.05676422640681267, -0.040540046989917755, 0.00890143308788538, -0.01792125403881073, 0.0019350507063791156, -0.01409051101654768, 0.030907930806279182, 0.00886138342320919, 0.025499584153294563, 0.011112461797893047, 0.009980865754187107, -0.021839972585439682, -0.04674847424030304, 0.008707205764949322, 0.035200659185647964, 0.01694471761584282, 0.010391644202172756, 0.06012316048145294, -0.02736090123653412, 0.03402243182063103, 0.01840263418853283, -0.03744623810052872, -0.03262688219547272, 0.0014880220405757427, -0.020595494657754898, -0.029092906042933464, -0.029212361201643944, -0.044372715055942535, -0.008130566217005253, -0.046730589121580124, 0.02992343343794346, 0.031041406095027924, 0.0018446961184963584, 0.020751668140292168, 0.004083660431206226, -0.019915396347641945, 0.06373444199562073, -0.03152884915471077, 0.028413165360689163, 0.0076867747120559216, 0.016689220443367958, 0.033055324107408524, 0.007319471798837185, 0.028440330177545547, 0.07236511260271072, 0.03000814840197563, -0.03949468582868576, 0.011716052889823914, -0.004975118208676577, -0.013195767067372799, 0.035051245242357254, -0.016752449795603752, -0.03299615532159805, -0.06863338500261307, -0.030563045293092728, 0.014530856162309647, 0.03437027335166931, 0.009583954699337482, -0.001203482854180038, 0.02678249403834343, -0.04927502200007439, -0.03639649227261543, -0.011659418232738972, -0.07281265407800674, -0.002578185871243477, 0.03978053852915764, -0.013792195357382298, -0.009450649842619896, 0.008158927783370018, -0.03542507812380791, -0.021793747320771217, -0.012746057473123074, -0.005437180865556002, -0.05149311572313309, 0.029711058363318443, 0.00218211580067873, 0.008915860205888748, -0.0012681864900514483, -0.02091938816010952, 0.01942327804863453, 0.044350817799568176, -0.037421878427267075, -0.0325445830821991, 0.013619993813335896, 0.004626940935850143, 0.02933759242296219, -0.02418524958193302, 0.008241282775998116, -0.0071729072369635105, -0.0056677889078855515, 0.017501268535852432, -0.024723613634705544, 0.02600766159594059, 0.011600802652537823, 0.0027031218633055687, -0.007944749668240547, -0.005172051023691893, -0.01448493730276823, 0.01615041308104992, 0.012012685649096966, -0.027747800573706627, -0.021668631583452225, 0.053754404187202454, 0.029417086392641068, -0.0437270887196064, 0.02958955056965351, 0.0039218720048666, 0.027229521423578262, -0.03512513265013695, 0.013460634276270866, -0.01960585080087185, 0.04551682993769646, 0.051253702491521835, 0.04126554727554321, 0.0020376802422106266, 0.002327364170923829, 0.05061154067516327, 0.003897258313372731, -0.007908949628472328, 0.01834580861032009, 0.03465091437101364, -0.057284433394670486, -0.004300640895962715, -0.01848924718797207, 0.006074168253690004, 0.007747049443423748, -0.027669105678796768, -0.015684474259614944, -0.03404694050550461, -0.016783513128757477, 0.005222886335104704, -0.011048703454434872, 0.0404469259083271, -0.03297074884176254, 0.009357105940580368, 0.0245756134390831, -0.051153507083654404, -0.04033704102039337, 0.033921342343091965, 0.03130041062831879, -0.008164233528077602, 0.021146144717931747, 0.027701126411557198, -0.0017186751356348395, 0.03952043876051903, 0.004789970349520445, -0.023831075057387352, -0.0014346990501508117, -0.016939973458647728, 0.03277505189180374, 0.0010933472076430917, -0.04835628345608711, 0.006446089595556259, -0.025864847004413605, 0.05329979583621025, -0.030562706291675568, -0.018723564222455025, 0.07522314786911011, -0.043030623346567154, -0.02673211321234703, -0.04385799914598465, 0.01845920830965042, -0.018400929868221283, -0.018411794677376747, 0.026562238112092018, -0.012963895685970783, -0.00838672835379839, 0.04232463240623474, 0.02622264437377453, 0.026374805718660355, -0.0016029360704123974, 0.013256411999464035, 0.012847214937210083, 0.014512598514556885, 0.04798536375164986, -0.018668847158551216, -0.03448508307337761, 0.020437676459550858, -0.02760028839111328, -0.04273753985762596, 0.0032430957071483135, -0.0033387013245373964, -0.007702896371483803, -0.032847654074430466, 0.006630588322877884, -0.023502493277192116, 0.008248004131019115, 0.005057409405708313, -0.04074199125170708, -0.019649047404527664, 0.04608231782913208, -0.03435758501291275, 0.03235554322600365, -0.00020663435861933976, 0.01218619104474783, -0.0006955597782507539, -0.039595384150743484, -0.0003759426181204617, -0.038091596215963364, 0.02838553488254547, -0.044881679117679596, 0.04985406994819641, 0.007943805307149887, -0.02034299075603485, -0.0006010271608829498, -0.06948878616094589, -0.026364600285887718, 0.02396513894200325, -0.06785223633050919, -0.055640675127506256, 0.010668017901480198, 0.028690028935670853, 0.012063119560480118, -0.008731975220143795, -0.007883477956056595, -0.019252071157097816, 0.01453250739723444, 0.061234697699546814, 0.007172193843871355, 0.024762453511357307, 0.00992843322455883, 0.004338478669524193, 0.016710076481103897, -0.022058915346860886, 0.03713630139827728, -0.01837087981402874, -0.021882906556129456, -0.025529518723487854, 0.02116149291396141, 0.004815275780856609, -0.08648363500833511, 0.009631616063416004, -0.004903530236333609, 0.007267648354172707, -0.022746652364730835, -0.06368226557970047, -0.008930480107665062, -0.014126337133347988, -0.008719872683286667, -0.04827212542295456, 0.02069418504834175, 0.03699414059519768, 0.01619778573513031, 0.002282490488141775, -0.06660915911197662, 0.15574799478054047, 0.03417180851101875, 0.005907943472266197, -0.029785700142383575, 0.029673876240849495, 0.04595987871289253, 0.023773280903697014, -0.01615910604596138, 0.010115927085280418, -0.03793809935450554, -0.0006113183917477727, 0.007825274020433426, 0.021970314905047417, 0.0060155680403113365, 0.009253118187189102, 0.05881888046860695, -0.026792187243700027, -0.03026318922638893, 0.011212100274860859, -0.04062970355153084, -0.040073711425065994, 0.020941302180290222, -0.0014891260070726275, 0.012394021265208721, 0.00209556776098907, 0.009925223886966705, 0.009904858656227589, -0.04200749099254608, 0.02156766690313816, -0.01081120315939188, 0.02990025281906128, 0.003465852700173855, 0.022260254248976707, -0.019759034737944603, -0.013759410940110683, 0.0564948208630085, -0.006705384235829115, -0.04420820623636246, -0.0014974159421399236, 0.03066972829401493, 0.00009502374450676143, -0.006534429267048836, 0.00885876826941967, -0.06376133114099503, 0.01424452941864729, 0.011121774092316628, -0.05621317774057388, -0.014878684654831886, -0.0035050378646701574, -0.03706687316298485, 0.052040234208106995, -0.025199657306075096, 0.05194822698831558, 0.029775723814964294, 0.030562451109290123, 0.029506025835871696, 0.005133278202265501, -0.019314436241984367, 0.003960456699132919, 0.025342673063278198, 0.025532254949212074, -0.00906184408813715, -0.016229497268795967, 0.024467747658491135, -0.029768450185656548, 0.04371044039726257, 0.02892308309674263, 0.009604387916624546, -0.005486045498400927, -0.020396970212459564, -0.00277962745167315, 0.00036292418371886015, -0.02965623326599598, -0.05638469383120537, 0.04954768717288971, -0.0052703325636684895, -0.028191372752189636, 0.05039064586162567, 0.014295769855380058, -0.014833918772637844, 0.011678269132971764, -0.027885081246495247, -0.00700527336448431, -0.010830204002559185, 0.005748215597122908, 0.03460047021508217, -0.035409409552812576, -0.04526044800877571, -0.04450009763240814, 0.05165413022041321, 0.03471580892801285, 0.018945083022117615, -0.025635242462158203, -0.015402684919536114, -0.003449845127761364 ]
U.S. State Department Warns China Has Begun Secretly Testing Nuclear Weapons Evidence of activity at the Lop Nur test site indicates banned testing on&nbsp17th April 2020 @ 1.00pm The State Department says it has evidence China is conducting banned nuclear tests The U.S. State Department has warned that China has begun secretly conducting banned testing of nuclear weapons. Officials say they have evidence China may have secretly set off low-level underground nuclear test explosions. Such activity has been discovered despite the Communist Party of China (CPC) claiming to observe an international pact banning such testing. The State Department revealed the discovery in a new report that could further fray U.S.-Chinese relations. Ties are already strained after President Donald Trump said the United States is investigating the possibility that coronavirus escaped from a Wuhan lab and was covered up by Beijing. Chinese foreign ministry spokesman Zhao Lijian told a daily briefing in Beijing that the U.S. is making false accusations, insisting that China was committed to a moratorium on nuclear tests. The report says there is disturbing evidence of secret activity at the remote Lop Nur test site in the western province of Xinjang The State Department report does not prove that China violated nuclear test ban treaties, but says there is disturbing evidence of secret activity at the remote Lop Nur test site in the western province of Xinjiang. Lop Nur was China's sole nuclear testing site until 1996 when both China and the U.S. signed the Comprehensive Test Ban Treaty and vowed to adhere to its terms. Now, the U.S. State Department says that suspicious activity at the site throughout 2019 raises concerns that Beijing is breaching the treaty's "zero yield" standard for test blasts. Zero yield refers to a nuclear test in which there is no explosive chain reaction of the type ignited by the detonation of a nuclear warhead. "China's possible preparation to operate its Lop Nur test site year-round, its use of explosive containment chambers, extensive excavation activities at Lop Nur and a lack of transparency on its nuclear testing activities ... raise concerns regarding its adherence to the zero yield standard," the State Department report said. Beijing's lack of transparency included blocking data transmissions from sensors linked to a monitoring center operated by the international agency that verifies compliance with a treaty banning nuclear test explosions. The 1996 Comprehensive Test Ban Treaty (CTBT) allows activities designed to ensure the safety of nuclear weapons. A spokeswoman for the Comprehensive Test Ban Treaty Organization, which verifies compliance with the pact, told the Wall Street Journal there had been no interruptions in data transmissions from China's five sensor stations since the end of August 2019 following an interruption that began in 2018. A senior U.S. official said the concerns about China's testing activities buttressed President Trump's case for getting China to join the United States and Russia in talks on an arms control accord to replace the 2010 New START treaty between Washington and Moscow that expires in February. New START restricted the United States and Russia to deploying no more than 1,550 nuclear warheads, the lowest level in decades, and limited the land- and submarine-based missiles and bombers that deliver them. "The pace and manner by which the Chinese government is modernizing its stockpile is worrying, destabilizing, and illustrates why China should be brought into the global arms control framework," said the senior U.S. official on condition of anonymity. Chinese foreign ministry spokesman Zhao Lijian told a daily briefing in Beijing: "China has always adopted a responsible attitude, earnestly fulfilling the international obligations and promises it has assumed. "The U.S. criticism of China is entirely groundless, without foundation, and not worth refuting." A military parade shows China's Dongfeng 21D anti-ship ballistic missiles, capable of traveling more than 1,500 kilometers China, estimated to have about 300 nuclear weapons, has repeatedly rejected Trump's proposal, arguing its nuclear force is defensive and poses no threat. Russia, France, and Britain - three of the world's five internationally recognized nuclear powers - signed and ratified the Comprehensive Test Ban Treaty, which still requires ratification by 44 countries to become international law. China and the United States are among eight signatories that have not ratified it. But China has declared its adherence to its terms, while the United States has observed a unilateral testing moratorium since 1992. It comes after President Trump said on Wednesday the U.S. is trying to determine whether the coronavirus first crossed to humans accidentally during experiments with bats at the Wuhan Institute of Virology Lab. After information about the outbreak finally became public, Chinese leaders were quick to blame Wuhan's "wet market" where wild animals -- though not bats -- are sold for consumption, leading one source to tell Fox News the debacle is the "costliest government coverup of all time." "Patient zero" worked at the Wuhan lab, and spread the virus into the local population after leaving work, sources who had been briefed on intelligence told the outlet. [RELATED] Coronavirus Came from Chinese Lab, China Covered it Up, Bombshell Report Claims tags: China | Nuclear Weapons Trump to 'Terminate' China-Owned Telecom Firm, Ban from Operating in America President's administration moves to 'revoke' Communist Party-controlled China Telecom Corp 10th April 2020 @ 7.00pm Chinese Communist Party: With Biden in Charge, China Can Enter the 'Next Phase' China's Foreign Minister Wang Yi celebrates prospect of Joe Biden taking the presidency 10th December 2020 @ 11.00pm
[ -0.03974039480090141, -0.002678661374375224, 0.009513480588793755, 0.015714211389422417, -0.02954818308353424, 0.0017970376648008823, -0.02451566606760025, 0.04089249297976494, 0.008229822851717472, 0.033077891916036606, 0.05039174482226372, -0.012179196812212467, 0.010771654546260834, -0.03905709832906723, -0.03658938407897949, -0.0314691886305809, -0.012316607870161533, 0.021540449932217598, 0.006113997660577297, 0.01218485552817583, -0.012012818828225136, 0.013405254110693932, -0.07044494897127151, -0.03584859147667885, -0.008375052362680435, 0.03771257773041725, 0.015289947390556335, -0.020110955461859703, 0.06938547641038895, 0.05656149983406067, -0.0296971146017313, -0.03631264716386795, 0.02020890824496746, -0.05136915296316147, -0.015385662205517292, -0.010723675601184368, 0.07151342928409576, 0.002419646829366684, -0.0021575551945716143, -0.06688380986452103, -0.023616328835487366, -0.012391438707709312, 0.02500062808394432, -0.036242518573999405, -0.032787732779979706, -0.016670100390911102, -0.01924268901348114, -0.026854325085878372, 0.019437076523900032, -0.018518071621656418, 0.008967142552137375, 0.045064929872751236, 0.05390452593564987, 0.011375506408512592, -0.012035016901791096, -0.020076069980859756, -0.006825384683907032, -0.01635698415338993, 0.0035105047281831503, 0.04262189939618111, 0.019480522722005844, 0.007921155542135239, 0.03428924083709717, -0.06573260575532913, 0.01006366964429617, 0.024920908734202385, 0.01614098995923996, -0.006555665284395218, 0.032190728932619095, -0.011697361245751381, 0.0018803937127813697, 0.029747165739536285, -0.04320353642106056, -0.04127459228038788, -0.008161855861544609, -0.009747114032506943, 0.0075651612132787704, 0.030698101967573166, -0.0256498996168375, -0.01594005525112152, 0.020270295441150665, 0.045152369886636734, 0.02059025876224041, 0.008024764247238636, -0.04846761003136635, 0.004433345980942249, 0.012171910144388676, 0.036046624183654785, 0.009814251214265823, 0.017631078138947487, -0.017775628715753555, 0.046003226190805435, -0.023324210196733475, -0.010367287322878838, 0.018583765253424644, 0.023375893011689186, -0.01274397224187851, 0.039388928562402725, 0.005735388025641441, -0.014924698509275913, 0.01935504749417305, 0.0379343256354332, -0.01473306119441986, 0.04820076376199722, -0.03202413022518158, -0.01843937858939171, -0.0016183339757844806, -0.009582065045833588, -0.008362813852727413, -0.040886953473091125, 0.013491800986230373, -0.006727295927703381, -0.015394282527267933, 0.0019371038069948554, -0.01720186322927475, 0.042523402720689774, 0.02130166068673134, 0.010413575917482376, -0.042084116488695145, 0.003331531770527363, 0.00834656786173582, -0.016454286873340607, 0.031103862449526787, -0.020502708852291107, 0.027061188593506813, -0.021795444190502167, 0.0011125319870188832, 0.00892920047044754, -0.029948711395263672, -0.034516267478466034, 0.027148818597197533, -0.019839158281683922, 0.013512514531612396, 0.010781572200357914, -0.026352224871516228, 0.0065025812946259975, -0.0179811492562294, 0.027764402329921722, 0.03346705064177513, -0.05552121251821518, 0.047227829694747925, 0.017488248646259308, -0.009624973870813847, 0.09671179205179214, 0.018515639007091522, 0.027654262259602547, 0.01463360246270895, -0.002311534248292446, -0.008670426905155182, 0.02409958839416504, -0.060538534075021744, 0.00031299915281124413, -0.00019768728816416115, 0.016503719612956047, 0.001692377612926066, 0.005331333260983229, -0.011797398328781128, 0.027051057666540146, 0.0059186494909226894, 0.026110593229532242, -0.01378645934164524, 0.03253171592950821, -0.0006751108448952436, 0.013968456536531448, -0.005831863731145859, 0.020538033917546272, -0.04804826155304909, -0.018546856939792633, -0.019743215292692184, -0.0536443330347538, 0.028938185423612595, 0.008009410463273525, -0.04957224428653717, 0.040955252945423126, 0.028979364782571793, 0.04465251788496971, 0.05690839886665344, 0.019884005188941956, 0.036022137850522995, 0.07506205886602402, -0.02354121208190918, -0.008073994889855385, -0.0010580663802102208, 0.04889918491244316, -0.002869667951017618, -0.011873094365000725, -0.0251975916326046, -0.014895514585077763, -0.022867217659950256, -0.02325916662812233, -0.025666216388344765, -0.014196326956152916, -0.003294718684628606, 0.03528624027967453, 0.000987269333563745, 0.02464992366731167, -0.030457191169261932, 0.013206721283495426, 0.0017454350600019097, -0.04819225147366524, -0.01753990352153778, 0.043245308101177216, -0.026891250163316727, 0.030272673815488815, -0.019634434953331947, -0.023794639855623245, 0.06491182744503021, 0.07229598611593246, -0.049521852284669876, -0.005141329951584339, 0.029046103358268738, 0.024006247520446777, 0.0030517075210809708, -0.00856469664722681, 0.021626101806759834, -0.014373905956745148, -0.045617274940013885, 0.03358260542154312, -0.00983789935708046, 0.0135933393612504, 0.005532251205295324, 0.012250911444425583, 0.030268173664808273, 0.03904251754283905, 0.035498157143592834, -0.0227962713688612, 0.02218192256987095, 0.05894716829061508, -0.016670139506459236, -0.017560390755534172, 0.012798613868653774, 0.04872794821858406, 0.01399971079081297, 0.05859673023223877, 0.049968864768743515, 0.004138493910431862, 0.025362994521856308, 0.026303257793188095, 0.008210159838199615, 0.03988663852214813, -0.013993759639561176, -0.003254650393500924, 0.030222779139876366, 0.018510323017835617, 0.008344830945134163, 0.029030967503786087, -0.017252668738365173, -0.020148588344454765, -0.019852926954627037, 0.012509029358625412, 0.02790496125817299, 0.0498434342443943, 0.023918654769659042, 0.0645410344004631, -0.012318187393248081, -0.004434001632034779, 0.017702225595712662, 0.0547218881547451, -0.0369691364467144, -0.03533484414219856, 0.005800275132060051, 0.006648068316280842, -0.016943659633398056, -0.025280997157096863, 0.024945951998233795, 0.03150166571140289, -0.03579283133149147, -0.00023134399089030921, -0.004644289147108793, -0.06278915703296661, -0.029202111065387726, -0.032851435244083405, -0.03336310386657715, -0.07258124649524689, -0.06628159433603287, 0.00901704654097557, 0.04102709889411926, -0.04962536320090294, 0.0003684520779643208, -0.03515246883034706, -0.03851250931620598, -0.01868496648967266, -0.004359389189630747, 0.04400844871997833, 0.022877352312207222, 0.03854941576719284, -0.04761981964111328, 0.01855100877583027, -0.002654189243912697, 0.043845292180776596, -0.05653662607073784, 0.006938640959560871, -0.02652679942548275, -0.0030470790807157755, 0.03224184364080429, -0.010067415423691273, 0.0033881377894431353, 0.0015264692483469844, -0.005716905929148197, -0.027173973619937897, 0.03462664410471916, 0.016145149245858192, -0.003066491102799773, 0.007198275066912174, -0.041000887751579285, 0.04909135028719902, 0.03531886637210846, -0.013986289501190186, 0.03466702625155449, 0.04545016586780548, -0.028401954099535942, 0.03203343600034714, 0.01949629746377468, 0.012504681013524532, -0.05000416561961174, 0.05429388955235481, 0.051738254725933075, -0.005883211735635996, -0.015546352602541447, -0.00793833564966917, -0.044897016137838364, 0.017177922651171684, 0.02422800473868847, -0.025917256250977516, -0.04488157108426094, 0.03251238167285919, 0.018184246495366096, -0.05808719992637634, 0.03417874127626419, -0.058081306517124176, -0.020997552201151848, -0.004003790207207203, -0.01214730553328991, 0.03448745608329773, 0.030153127387166023, 0.014358839951455593, -0.030054178088903427, -0.028507694602012634, -0.02846696600317955, 0.016738897189497948, 0.050831083208322525, -0.02229633554816246, 0.036883287131786346, 0.051706694066524506, 0.0006267684511840343, 0.027974026277661324, 0.0069643547758460045, -0.014994713477790356, 0.0010136275086551905, -0.009963901713490486, -0.0014755241572856903, 0.01689225435256958, 0.008076784200966358, 0.02008083276450634, -0.024283763021230698, 0.07736777514219284, -0.03537856414914131, -0.01652897149324417, 0.02297239936888218, 0.015003618784248829, 0.012756635434925556, 0.003659174544736743, 0.012939940206706524, 0.010145964100956917, -0.03750365227460861, -0.06186269596219063, -0.006010186392813921, 0.011383650824427605, 0.05595851689577103, -0.08212326467037201, 0.04141434282064438, -0.04609661176800728, -0.005848725326359272, 0.01455757673829794, -0.04619579389691353, -0.013498282991349697, 0.055411744862794876, -0.007982047274708748, 0.04330134391784668, -0.06046517193317413, -0.0012777982046827674, 0.011247821152210236, -0.000035451976145850495, 0.01737111061811447, -0.009335757233202457, 0.018998747691512108, -0.004687103442847729, -0.011958057060837746, 0.0028460512403398752, -0.016813552007079124, -0.01115642674267292, -0.05233299732208252, -0.0034950124099850655, 0.013621711172163486, -0.028449291363358498, -0.06658896803855896, 0.05507253482937813, 0.045151256024837494, 0.031019898131489754, 0.007039341144263744, 0.061809927225112915, 0.007268688641488552, 0.004562800750136375, 0.01164228469133377, -0.012291221879422665, 0.0062729958444833755, -0.0068108453415334225, 0.04890373349189758, -0.010188686661422253, -0.032754700630903244, -0.014407471753656864, -0.02953002043068409, -0.04188308119773865, 0.0031272703781723976, 0.03215952217578888, -0.018364164978265762, -0.014125495217740536, 0.019590681418776512, 0.00672383327037096, 0.019308021292090416, -0.060585010796785355, -0.02218269743025303, -0.021985024213790894, 0.023313244804739952, 0.0480799563229084, -0.053609732538461685, 0.001777400029823184, -0.05142679065465927, 0.04568830132484436, 0.07603064924478531, -0.005474179517477751, -0.051742419600486755, -0.042185600847005844, -0.03156396374106407, -0.0658956840634346, -0.00040638045175001025, 0.039898861199617386, -0.015745216980576515, 0.003159125102683902, -0.02571326121687889, 0.0029243011958897114, 0.02079867199063301, -0.010274613276124, -0.015782879665493965, 0.007281271740794182, -0.0073267389088869095, 0.011264233849942684, 0.022745851427316666, -0.01148881297558546, -0.01791725680232048, 0.059767041355371475, -0.05286252126097679, 0.028936533257365227, -0.0460393987596035, -0.02645273320376873, -0.012675714679062366, 0.03274574130773544, 0.008555661886930466, 0.030536480247974396, -0.040908556431531906, -0.009304728358983994, 0.014762602746486664, 0.047970354557037354, -0.06385158747434616, -0.022393979132175446, 0.058164846152067184, -0.00942276418209076, -0.04313681647181511, 0.01185875665396452, 0.01711164228618145, -0.018372442573308945, 0.03729923442006111, 0.022156141698360443, -0.03496190533041954, 0.02529039792716503, -0.03372570872306824, 0.03270820900797844, -0.00836945790797472, -0.02093525417149067, 0.002403243677690625, -0.034910257905721664, 0.03369436413049698, -0.027440251782536507, -0.03374320641160011, -0.03534189984202385, -0.07972284406423569, -0.019084136933088303, 0.02439749427139759, -0.011136225424706936, 0.02574598602950573, -0.012052977457642555, -0.0031378581188619137, -0.007049868814647198, -0.02177368849515915, -0.0176249947398901, 0.025638265535235405, -0.02747962437570095, -0.02354985848069191, -0.005344532895833254, 0.03763065114617348, 0.025280755013227463, -0.040731798857450485, -0.03250541910529137, 0.030604131519794464, -0.02955089882016182, -0.020826872438192368, -0.047298699617385864, 0.0014954820508137345, -0.02884051576256752, 0.01850874535739422, -0.031318653374910355, -0.006647614762187004, -0.020555373281240463, -0.008121068589389324, 0.024873988702893257, -0.001765551744028926, 0.011840309016406536, -0.008258170448243618, -0.05111953243613243, 0.053079087287187576, 0.02061963453888893, -0.04631702974438667, -0.0248511154204607, 0.030231304466724396, -0.017070963978767395, 0.03711390122771263, -0.00872624758630991, -0.03690043464303017, -0.06139422580599785, -0.020814094692468643, -0.010735602118074894, -0.02983788214623928, -0.007401076145470142, -0.06262505799531937, -0.02721969597041607, -0.007450717501342297, 0.0551634319126606, 0.011952472850680351, -0.006751644890755415, -0.006787895690649748, -0.03167000040411949, 0.0004492546140681952, -0.026629189029335976, 0.008209730498492718, -0.014991947449743748, -0.05894435942173004, -0.00817788951098919, 0.07248508930206299, 0.004368468653410673, 0.010996994562447071, 0.03681936860084534, 0.023443950340151787, 0.016553698107600212, -0.007873201742768288, -0.047602683305740356, -0.034127846360206604, 0.0007803028565831482, 0.028203969821333885, -0.014079931192100048, -0.01795690692961216, -0.06470349431037903, 0.03994467109441757, -0.0499955378472805, 0.009592763148248196, -0.037838198244571686, -0.034128084778785706, -0.01727398857474327, 0.015067784115672112, 0.041995368897914886, -0.025499185547232628, 0.05051324889063835, 0.01212380826473236, 0.07458523660898209, 0.0247002262622118, 0.021484004333615303, -0.0005734600126743317, -0.05951395258307457, -0.015969162806868553, -0.07146579027175903, 0.0510079450905323, -0.027223452925682068, -0.024310750886797905, -0.021261271089315414, -0.032548174262046814, 0.030148625373840332, -0.016072120517492294, 0.0526888333261013, 0.035457924008369446, -0.007138698361814022, -0.03693836182355881, -0.01085328683257103, 0.0165159422904253, 0.020035870373249054, 0.0009974248241633177, 0.011530531570315361, -0.006813697516918182, -0.019297050312161446, 0.027315950021147728, -0.04656446352601051, -0.05185367912054062, -0.07984241843223572, -0.03445081040263176, 0.0758272260427475, 0.006594362203031778, 0.03746209293603897, -0.009073729626834393, -0.036589041352272034, -0.05345793440937996, 0.04114018380641937, 0.013877385295927525, 0.04417600855231285, 0.03726958483457565, 0.023599091917276382, -0.010855418629944324, 0.04957567900419235, 0.011218855157494545, 0.0032631889916956425, -0.04842323809862137, 0.07322928309440613, -0.008815131150186062, -0.0779828205704689, -0.012886307202279568, 0.07301720231771469, -0.04998082295060158, -0.05053873360157013, -0.00461824843659997, -0.020380668342113495, 0.021318957209587097, -0.020954273641109467, -0.03231893107295036, -0.028114495798945427, -0.004975853022187948, -0.01550010871142149, 0.03770144283771515, 0.0291140154004097, 0.032204851508140564, 0.0005875456845387816, 0.00648586917668581, -0.006712074391543865, 0.0025722654536366463, 0.035111237317323685, 0.018789194524288177, -0.026445530354976654, -0.03655572608113289, -0.025685524567961693, 0.014151888899505138, 0.01562918908894062, 0.029230529442429543, 0.011010109446942806, 0.031174229457974434, 0.04880532994866371, -0.00589965283870697, 0.07756902277469635, -0.016000276431441307, -0.010985304601490498, 0.03791187331080437, 0.0019180980743840337, -0.06298854202032089, -0.033241041004657745, 0.01631215400993824, 0.0010397672886028886, 0.042298588901758194, -0.06091972440481186, -0.013851301744580269, 0.029331250116229057, -0.022166326642036438, 0.001919409492984414, -0.0365421287715435, -0.05635317414999008, -0.039842668920755386, -0.04260794445872307, 0.004711463116109371, -0.020923038944602013, -0.004506953526288271, 0.025006838142871857, 0.014396784827113152, -0.03757384791970253, -0.013380035758018494, 0.012447727844119072, -0.022238196805119514, 0.028917431831359863, -0.0204162560403347, 0.015028955414891243, -0.05409932881593704, -0.03225791081786156, -0.03538479283452034, -0.014251778833568096, -0.019648145884275436, 0.0027173387352377176, 0.0037048652302473783, 0.014684588648378849, 0.028399929404258728, 0.030453938990831375, 0.010120892897248268, 0.0006150872795842588, -0.013033760711550713, -0.04210015386343002, -0.03095981664955616, 0.021599559113383293, 0.019445041194558144, 0.04001191258430481, 0.0508391447365284, -0.017092784866690636, 0.043867938220500946, -0.008121896535158157, -0.02105899713933468, -0.0036155786365270615, 0.015366564504802227, 0.010316860862076283, 0.009870881214737892, -0.03924752399325371, -0.03982703015208244, 0.00640259450301528, -0.041233811527490616, 0.025167077779769897, -0.05046198517084122, 0.0055245463736355305, 0.018003316596150398, -0.012344544753432274, 0.0006922989850863814, 0.04565398395061493, -0.002458518836647272, 0.060879044234752655, 0.007448787800967693, 0.0321737565100193, 0.01674753427505493, 0.007023909594863653, 0.036453407257795334, 0.01076577603816986, 0.04015162214636803, 0.008658637292683125, -0.0037965024821460247, 0.012268004938960075, 0.00587040139362216, 0.04740755259990692, -0.00548655167222023, -0.04520175978541374, 0.00023760047042742372, -0.017919793725013733, -0.027452079579234123, 0.07282119244337082, 0.014508809894323349, 0.006327350158244371, 0.038691196590662, -0.01921911910176277, -0.05458030477166176, 0.008087058551609516, -0.0815231204032898, -0.039104167371988297, 0.01798192970454693, -0.016339918598532677, -0.007616531569510698, -0.011098284274339676, -0.049207597970962524, -0.004831397440284491, -0.02129504084587097, -0.017627231776714325, -0.01650826260447502, 0.017191091552376747, -0.016269773244857788, 0.07410059869289398, 0.013299663551151752, 0.007533622439950705, 0.0034603793174028397, 0.01854857988655567, -0.05404982343316078, -0.05612326040863991, 0.009278267621994019, 0.028916141018271446, 0.00001239364701177692, 0.008245395496487617, 0.003822249360382557, -0.011013094335794449, -0.04551044479012489, -0.012284820899367332, -0.0017266629729419947, 0.0018651927821338177, 0.01346012856811285, 0.024040091782808304, -0.04113892838358879, 0.01787322200834751, -0.011815115809440613, 0.030587349086999893, -0.018633998930454254, -0.03855983167886734, -0.04888898879289627, -0.0009961244650185108, 0.010456454008817673, -0.010071870870888233, 0.01573614403605461, 0.002416321076452732, 0.02272815629839897, -0.020136192440986633, 0.033376093953847885, -0.015604926273226738, 0.062196824699640274, 0.02459212951362133, 0.06528611481189728, -0.02651243656873703, 0.03619920089840889, 0.05048147588968277, -0.0384189747273922, -0.02248608134686947, 0.05618421733379364, 0.0039894492365419865, -0.0047873142175376415, 0.008828459307551384, -0.02666190266609192, 0.014588797464966774, 0.04081161692738533, -0.02630683034658432, -0.022050369530916214, -0.026615722104907036, 0.008465483784675598, -0.031318843364715576, -0.017862306907773018, 0.06042778864502907, -0.02658861316740513, 0.024137862026691437, -0.02875662036240101, -0.011412341147661209, 0.019101489335298538, 0.014077707193791866, -0.012918319553136826, 0.018675148487091064, 0.054061926901340485, 0.03493122756481171, -0.026389511302113533, 0.037816502153873444, 0.00236110738478601, 0.037111714482307434, -0.044851116836071014, 0.04351755604147911, -0.016607044264674187, 0.02717473730444908, -0.020766956731677055, 0.019251348450779915, -0.0244618970900774, 0.0343380868434906, -0.008458148688077927, -0.0017771919956430793, 0.04046441987156868, -0.026740752160549164, -0.01696063205599785, -0.05627979338169098, 0.039875540882349014, -0.0494254045188427, -0.035281579941511154, 0.029101401567459106, 0.009828256443142891, -0.0232244860380888, 0.02930983528494835, 0.009181473404169083, 0.01756957732141018, 0.05189058929681778, 0.05861970782279968, 0.01714356802403927, 0.03269598260521889, 0.035482876002788544, -0.028726918622851372, 0.005109743215143681, 0.008194131776690483, -0.029122741892933846, -0.03139832243323326, -0.024155883118510246, -0.0325607992708683, 0.011565458960831165, 0.004186536651104689, -0.0068541401997208595, 0.005388546269387007, 0.02400730736553669, 0.004215858411043882, -0.0671611800789833, 0.022927317768335342, 0.010588124394416809, -0.03212300315499306, -0.012237115763127804, 0.024123305454850197, 0.05444316193461418, -0.01269825641065836, -0.003037133486941457, -0.019305601716041565, -0.0142055694013834, -0.006256882566958666, -0.03651798889040947, 0.030582992359995842, -0.005985989235341549, -0.01930057816207409, -0.0153130404651165, -0.050026968121528625, -0.027804970741271973, -0.003215215867385268, -0.03757217898964882, -0.041663989424705505, 0.0338185615837574, 0.06375093013048172, 0.0304616317152977, 0.03269033506512642, -0.04658978804945946, 0.01677667163312435, 0.0048769256100058556, 0.04316088184714317, 0.020552489906549454, 0.023594634607434273, 0.0640171617269516, 0.00660162977874279, 0.01957271620631218, -0.005068620201200247, 0.03811318054795265, -0.018691735342144966, -0.030578671023249626, -0.031184425577521324, 0.0028913829009979963, -0.025959722697734833, -0.056410036981105804, 0.009863175451755524, 0.02785094454884529, 0.00016714791127014905, -0.01324855163693428, -0.03805965930223465, -0.019957084208726883, -0.04590901359915733, -0.004196920897811651, -0.02760009467601776, -0.010666427202522755, -0.010786275379359722, -0.002290969481691718, 0.0036998381838202477, -0.05912531539797783, 0.13386426866054535, 0.034887198358774185, 0.024365007877349854, -0.011036615818738937, 0.037035927176475525, 0.03197849914431572, 0.006743155885487795, -0.0465213842689991, -0.003396150190383196, -0.014901010319590569, 0.015193937346339226, -0.0074128275737166405, 0.018343105912208557, 0.016151539981365204, -0.0010270586935803294, 0.06582767516374588, -0.03464028239250183, -0.003852213965728879, 0.014241641387343407, -0.044027816504240036, -0.030266927555203438, 0.026221144944429398, 0.005796266254037619, 0.00991087593138218, -0.0022579962387681007, -0.009281420148909092, 0.00836569257080555, -0.04621822386980057, -0.003515348769724369, -0.02481362596154213, 0.005442502908408642, -0.05002428963780403, 0.025487292557954788, 0.021651800721883774, -0.045526377856731415, 0.026368556544184685, 0.01712777465581894, -0.018595902249217033, 0.02053583785891533, 0.007334243971854448, 0.009154075756669044, 0.008520111441612244, 0.03412973880767822, -0.040094729512929916, 0.01648736745119095, 0.0605354830622673, -0.032122980803251266, 0.016215458512306213, 0.0430791936814785, -0.0366118922829628, 0.04215104877948761, -0.0026311713736504316, 0.06738574802875519, -0.014474548399448395, -0.050690215080976486, 0.03253225237131119, 0.0012981027830392122, -0.024240940809249878, -0.008602786809206009, 0.013517445884644985, 0.018778681755065918, 0.026640724390745163, -0.02019740641117096, 0.0010451932903379202, -0.030355099588632584, 0.01827300153672695, 0.017472965642809868, -0.03940123692154884, -0.018700622022151947, -0.015952585265040398, -0.008795192465186119, -0.007517011370509863, -0.015100551769137383, -0.007899772375822067, 0.023977546021342278, 0.05177120491862297, -0.02442951314151287, 0.019069431349635124, -0.027037058025598526, -0.03172685578465462, -0.0008613599929958582, -0.05697755143046379, -0.009655020199716091, -0.0034475724678486586, 0.027514636516571045, 0.02407912351191044, -0.04064023867249489, -0.02154122106730938, -0.02083491161465645, 0.058551523834466934, 0.03648380562663078, 0.01988437958061695, -0.014112686738371849, -0.02527240291237831, 0.0009980505565181375 ]
The previously discussed I-IV-V chord progressions of major triads is a subsequence of the circle progression, which ascends by perfect fourths and descends by perfect fifths: Perfect fifths and perfect fourths are inverse intervals, because one reaches the same pitch class by either ascending by a perfect fourth (five semitones) or descending by a perfect fifth (seven semitones). For example, the jazz standard Autumn Leaves contains the iv7-VII7-VIM7-iiรธ7-i circle-of-fifths chord-progression;[80] its sevenths occur in the tertian harmonization in sevenths of the minor scale.[81] Other subsequences of the fifths-circle chord-progression are used in music. In particular, the ii-V-I progression is the most important chord progression in jazz music. Justin is an instructor with that rare combination that encompasses great playing in conjunction with a thoughtful, likable personality. Justin's instruction is extremely intelligent because he's smart enough to know the 'basics' don't have to be served 'raw' - Justin keenly serves the information covered in chocolate. Justin's site is like a free pass in a candy store! A string's gauge is how thick it is. As a general rule, the thicker a string is the warmer its response will be and the more volume it will produce. However, thicker strings are also stiffer. This makes it harder to fret the string and makes it more difficult to execute heavy string bends. Thinner strings are generally brighter and easier to play, but on some instruments they can sound thin and tinny. There are many different styles of play. Chords are played by strumming all of the strings. Classical guitarists pluck the strings with their fingers and always play sitting down. Slide guitarists slide along the strings with a slide made of metal or glass. Whether you're interested in classical, bluegrass, flamenco, folk or blues, the acoustic guitar is something you can enjoy playing alone or in a group. With the massive range of options available, you'd have to spend the whole day here to go through every one. There are six and twelve-strings, models specifically made for beginners, limited edition double necks; you name it, you'll find it! For a real classic, strap on a Rickenbacker 330 electric guitar. A staple in 60's mod culture, the unique hollowbody construction, slim neck and contoured body make the Rickenbacker 330 so easy to play that it has held the status as one of the all-time greatest guitars for decades. Electric guitars and bass guitars have to be used with a guitar amplifier and loudspeaker or a bass amplifier and speaker, respectively, in order to make enough sound to be heard by the performer and audience. Electric guitars and bass guitars almost always use magnetic pickups, which generate an electric signal when the musician plucks, strums or otherwise plays the instrument. The amplifier and speaker strengthen this signal using a power amplifier and a loudspeaker. Acoustic guitars that are equipped with a piezoelectric pickup or microphone can also be plugged into an instrument amplifier, acoustic guitar amp or PA system to make them louder. With electric guitar and bass, the amplifier and speaker are not just used to make the instrument louder; by adjusting the equalizer controls, the preamplifier, and any onboard effects units (reverb, distortion/overdrive, etc.) the player can also modify the tone (aka timbre or "colour") and sound of the instrument. Acoustic guitar players can also use the amp to change the sound of their instrument, but in general, acoustic guitar amps are used to make the natural acoustic sound of the instrument louder without changing its sound that much. Guitar chords are dramatically simplified by the class of alternative tunings called regular tunings. In each regularย tuning, the musicalย intervals are the same for each pair of consecutive strings. Regular tunings include major-thirds (M3), all-fourths, augmented-fourths, and all-fifths tunings. For each regular tuning, chord patterns may be diagonally shifted down the fretboard, a property that simplifies beginners' learning of chords and that simplifies advanced players' improvisation.[70][71][72] The diagonal shifting of a C major chord in M3 tuning appears in a diagram. Most electric guitar bodies are made of wood and include a plastic pick guard. Boards wide enough to use as a solid body are very expensive due to the worldwide depletion of hardwood stock since the 1970s, so the wood is rarely one solid piece. Most bodies are made from two pieces of wood with some of them including a seam running down the center line of the body. The most common woods used for electric guitar body construction include maple, basswood, ash, poplar, alder, and mahogany. Many bodies consist of good-sounding, but inexpensive woods, like ash, with a "top", or thin layer of another, more attractive wood (such as maple with a natural "flame" pattern) glued to the top of the basic wood. Guitars constructed like this are often called "flame tops". The body is usually carved or routed to accept the other elements, such as the bridge, pickup, neck, and other electronic components. Most electrics have a polyurethane or nitrocellulose lacquer finish. Other alternative materials to wood are used in guitar body construction. Some of these include carbon composites, plastic material, such as polycarbonate, and aluminum alloys. Minor chords arise as the tonic notes of minor keys that share the same key signature with major keys. From the major key's I-ii-iii-IV-V-vi-viio progression, the "secondary" (minor) triads ii-iii-vi appear in the relative minor key's corresponding chord progression as i-iv-v (or i-iv-V or i-iv-V7): For example, from C's vi-ii-iii progression Am-Dm-Em, the chord Em is often played as E or E7 in a minor chord progression.[24] Among basic chords, the minor chords (D,E,A) are the tonic chords of the relative minors of the three major-keys (F,G,C): The modern word guitar, and its antecedents, has been applied to a wide variety of chordophones since classical times and as such causes confusion. The English word guitar, the German Gitarre, and the French guitare were all adopted from the Spanish guitarra, which comes from the Andalusian Arabic ู‚ูŠุซุงุฑุฉ (qฤซthฤrah)[4] and the Latin cithara, which in turn came from the Ancient Greek ฮบฮนฮธฮฌฯฮฑ (kithara).[A] which comes from Persian word Sihtar. We can see this kind of naming in Setar, Tar, Dutar and Sitar. The word "Tar" at the end of all of these words is a Persian word that means "string".[6] There are three main types of modern acoustic guitar: the classical guitar (nylon-string guitar), the steel-string acoustic guitar, and the archtop guitar, which is sometimes called a "jazz guitar". The tone of an acoustic guitar is produced by the strings' vibration, amplified by the hollow body of the guitar, which acts as a resonating chamber. The classical guitar is often played as a solo instrument using a comprehensive finger-picking technique where each string is plucked individually by the player's fingers, as opposed to being strummed. The term "finger-picking" can also refer to a specific tradition of folk, blues, bluegrass, and country guitar playing in the United States. The acoustic bass guitar is a low-pitched instrument that is one octave below a regular guitar. By now, you've already decided whether to stick with the Guitar or to drop it. If you're one of the lucky few that stuck with it, in spite of having an extremely busy schedule with work and family obligations, congratulations. Contrary to popular belief, taking the time out for routine Guitar practice has tremendous benefits, even for the busiest of people. Instructor ProfileArlen RothThe King of All Guitar TeachersMusic lesson pioneer Arlen Roth is the quintessential guitarist. An accomplished and brilliant musician โ€” and one of the very few who can honestly say he's done it all โ€” Roth has, over the course of his celebrated 35-year career, played on the world's grandest stages, accompanied many of the greatest figures in modern music and revolutionized the concept of teaching guitar. Read More...Lessons Wes Montgomery-style Octaves Jake Jackson's publications, as writer, editor or contributor, include The Beginner's Guide to Reading Music, How to Play Classic Riffs and Play Flamenco. As guitarist and songwriter he has been in a few bands, including Slice, The Harmonics and Starbank and has studied a form of Flamenco guitar. Although Jake has a range of fine guitars in his house his favourite music software is Sibelius and, having worked with Cubase for many years, is now moving over to Logic Pro. Electric guitars can have solid, semi-hollow, or hollow bodies; solid bodies produce little sound without amplification. Electromagnetic pickups convert the vibration of the steel strings into signals, which are fed to an amplifier through a patch cable or radio transmitter. The sound is frequently modified by other electronic devices (effects units) or the natural distortion of valves (vacuum tubes) or the pre-amp in the amplifier. There are two main types of magnetic pickups, single- and double-coil (or humbucker), each of which can be passive or active. The electric guitar is used extensively in jazz, blues, R & B, and rock and roll. The first successful magnetic pickup for a guitar was invented by George Beauchamp, and incorporated into the 1931 Ro-Pat-In (later Rickenbacker) "Frying Pan" lap steel; other manufacturers, notably Gibson, soon began to install pickups in archtop models. After World War II the completely solid-body electric was popularized by Gibson in collaboration with Les Paul, and independently by Leo Fender of Fender Music. The lower fretboard action (the height of the strings from the fingerboard), lighter (thinner) strings, and its electrical amplification lend the electric guitar to techniques less frequently used on acoustic guitars. These include tapping, extensive use of legato through pull-offs and hammer-ons (also known as slurs), pinch harmonics, volume swells, and use of a tremolo arm or effects pedals. As their categorical name suggests, extended chords indeed extend seventh chords by stacking one or more additional third-intervals, successively constructing ninth, eleventh, and finally thirteenth chords; thirteenth chords contain all seven notes of the diatonic scale. In closed position, extended chords contain dissonant intervals or may sound supersaturated, particularly thirteenth chords with their seven notes. Consequently, extended chords are often played with the omission of one or more tones, especially the fifth and often the third,[92][93] as already noted for seventh chords; similarly, eleventh chords often omit the ninth, and thirteenth chords the ninth or eleventh. Often, the third is raised an octave, mimicking its position in the root's sequence of harmonics.[92] The main purpose of the bridge on an acoustic guitar is to transfer the vibration from the strings to the soundboard, which vibrates the air inside of the guitar, thereby amplifying the sound produced by the strings. On all electric, acoustic and original guitars, the bridge holds the strings in place on the body. There are many varied bridge designs. There may be some mechanism for raising or lowering the bridge saddles to adjust the distance between the strings and the fretboard (action), or fine-tuning the intonation of the instrument. Some are spring-loaded and feature a "whammy bar", a removable arm that lets the player modulate the pitch by changing the tension on the strings. The whammy bar is sometimes also called a "tremolo bar". (The effect of rapidly changing pitch is properly called "vibrato". See Tremolo for further discussion of this term.) Some bridges also allow for alternate tunings at the touch of a button. So with that in mind, would you like to learn the guitar on your own or with others? The choice is yours at Guitar Center. If you prefer one-on-one instruction, that's absolutely doable - in fact, you'll find our schedule to be very flexible. Of course, learning in a group is an excellent way to meet like-minded musicians with similar tastes and share ideas on how to improve one another's craft. Who knows, you might even leave a group guitar lesson with plans to start a band with your newfound musical companions. Either way, our group and private guitar lessons are very entertaining and informative. When you get right down to it, Guitar Center's friendly instructors will do everything they can to help you reach your highest level of musical potential. And remember, guitar lessons are available for both newcomers to the instrument, as well as experienced players who want to push the limits of their performance to even greater heights. If you would like to learn more about any upcoming workshops at a Guitar Center near you, feel free to give us a shout via phone or email. Any info you need can be found on our Guitar Center Lessons homepage and we'll gladly answer any questions you may have. This book is smaller than I thought it would be, but it's fairly thick. The book is 6.5 inches wide, 9.5 inches 'tall', and slightly more than 1 inch thick. It is not spiral bound and so it does not lay flat very well at all. After I located a song that I wanted to play, I tried to force the book to lay flat by pushing down on the spine. It didn't help much and it is frustrating when the book wants to close while you're reading it. I might have to take it somewhere to have it spiral bound. The songs are listed in alphabetical order which makes it easy to find the song you're looking for if you know the title. And here is the part that surprised me: The book contains lyrics, chord diagrams, and chord names "only". It ... full review This is a thick little book with nice big chord diagrams and shows chords in various positions. I like that it is spiral bound. The only thing missing is tabs for the letter sections so that you an easily flip to the letter note/chord you're searching for rather than having to turn a lot of pages to get to what you want. I plan to put in my own divider tabs. Ive been playing guitar for about 3 years, and this is the best song book I have ever learned from. Songs range from sweet home alabama by lynard skynard all the way to raining blood by slayer. All of the songs are accurate and complete with notes, tabs, lyrics, and copyright info. If you are like me, and you prefer to learn songs the way they were meant to be played than this book is for you. Are you stuck in a musical rut? New tunings and tricks can help you keep learning guitar in fresh, fun ways. Try one of these great tips from guitar teacher Samuel B. to breathe new life into your guitar playing... One of the first things I tell any new student is that I don't specialize in a formal discipline. If jazz or classical training is your objective, then I'm not your guy. Instead, I specialize primarily in American roots music (that which we tend to casually lump together as "folk" โ€ฆ Read More A chord is inverted when the bass note is not the root note. Chord inversion is especially simple in M3 tuning. Chords are inverted simply by raising one or two notes by three strings; each raised note is played with the same finger as the original note. Inverted major and minor chords can be played on two frets in M3 tuning.[56][74] In standard tuning, the shape of inversions depends on the involvement of the irregular major-third, and can involve four frets.[75] The standard guitar has six strings, but four-, seven-, eight-, nine-, ten-, eleven-, twelve-, thirteen- and eighteen-string guitars are also available. Classical and flamenco guitars historically used gut strings, but these have been superseded by polymer materials, such as nylon and fluorocarbon. Modern guitar strings are constructed from metal, polymers, or animal or plant product materials. Instruments utilizing "steel" strings may have strings made from alloys incorporating steel, nickel or phosphor bronze. Bass strings for both instruments are wound rather than monofilament. Only two or three frets are needed for the guitar chordsโ€”major, minor, and dominant seventhsโ€”which are emphasized in introductions to guitar-playing and to the fundamentals of music.[87][88] Each major and minor chord can be played on exactly two successive frets on exactly three successive strings, and therefore each needs only two fingers. Other chordsโ€”seconds, fourths, sevenths, and ninthsโ€”are played on only three successive frets.[89] As with most chords in this list, a clear G major chord depends on curling your first finger so the open fourth string rings clearly. Strum all six strings. Sometimes, it makes sense to play a G major chord using your third finger on the sixth string, your second finger on the fifth string, and your fourth (pinky) finger on the first string. This fingering makes the move to a C major chord much easier. If you're looking for some of our older videos - you can browse the guitar lessons archive. You may also be interested browsing our guitar lessons on YouTube. There you can learn how to play guitar with all of our most popular beginner guitar lessons, rhythm guitar lessons, lead guitar lessons, and blues guitar lessons. We have something for guitar students of all skill levels. In 1977, the Guitar Institute of Technology (GIT) revolutionized contemporary music education with the first full-time program to offer hands-on professional training for the electric guitarist. Over three decades later, MI remains the leader in guitar education, besting other colleges for guitar players, with a unique system that combines technical, creative and professional development in a performance-based program.
[ 0.004600506275892258, 0.00026986925513483584, 0.011194566264748573, 0.0024097913410514593, -0.005307418759912252, -0.001802733982913196, -0.018018735572695732, -0.0006198322516866028, 0.030513597652316093, 0.0684983879327774, 0.055106837302446365, 0.013572088442742825, -0.013254549354314804, -0.0526115745306015, -0.004148694686591625, 0.00806946586817503, -0.052280839532613754, -0.047782860696315765, -0.04432806000113487, 0.025040194392204285, 0.01045636460185051, -0.008395032957196236, -0.07022848725318909, -0.009479315020143986, -0.008088337257504463, 0.06839878857135773, 0.03312109038233757, 0.02210834249854088, 0.051584161818027496, 0.05968089401721954, 0.001285684178583324, -0.05051416531205177, 0.02622903510928154, -0.044018980115652084, -0.06413534283638, -0.04234122484922409, 0.03365861997008324, -0.013792379759252071, 0.01681799814105034, -0.045474641025066376, 0.003649192163720727, -0.0394752137362957, 0.02582329697906971, -0.034107357263565063, -0.061072513461112976, -0.032711729407310486, -0.004502606578171253, -0.056436192244291306, -0.012980193831026554, -0.043861016631126404, -0.005860511679202318, -0.041238248348236084, 0.058535367250442505, 0.018205957487225533, 0.024389805272221565, 0.025363925844430923, 0.04018139839172363, -0.009897662326693535, -0.022366678342223167, 0.03244304656982422, 0.013198957778513432, 0.01065420638769865, 0.009078934788703918, -0.05721372365951538, -0.030439265072345734, 0.023431450128555298, -0.03023846633732319, -0.03406577929854393, 0.014650088734924793, -0.053363360464572906, -0.041034162044525146, 0.00029052174068056047, -0.009074250236153603, 0.01854792609810829, -0.018551133573055267, 0.02973630279302597, 0.020644981414079666, -0.02574276365339756, -0.00989046972244978, 0.01320907287299633, 0.019773809239268303, 0.06767675280570984, 0.0030632163397967815, 0.03106890618801117, -0.04872480779886246, 0.003869627369567752, -0.005822313018143177, 0.005975585430860519, 0.013064847327768803, -0.0044609853066504, 0.03884540870785713, 0.05720742046833038, -0.024259772151708603, -0.03742023929953575, 0.02445012703537941, 0.036649975925683975, -0.01672470197081566, 0.01522433664649725, 0.012939296662807465, -0.012952321209013462, 0.061454445123672485, -0.022029396146535873, -0.011152549646794796, 0.03243295103311539, -0.06738155335187912, -0.022481773048639297, 0.00834615994244814, 0.01695900410413742, 0.028663000091910362, -0.06100275740027428, -0.0027383961714804173, -0.027884311974048615, 0.018524106591939926, 0.011843446642160416, -0.0068178907968103886, 0.03145376220345497, 0.04796592518687248, 0.06667939573526382, -0.018035145476460457, 0.0020890154410153627, -0.004820604342967272, 0.013614503666758537, 0.03974032402038574, -0.031148189678788185, 0.0002254864521091804, -0.02931845560669899, -0.07389917969703674, 0.039668306708335876, -0.07040342688560486, 0.006708832923322916, 0.027914920821785927, -0.043504126369953156, -0.009607330895960331, 0.02004275657236576, 0.0054960404522717, 0.01912161335349083, -0.02985835075378418, 0.051320839673280716, 0.019943488761782646, -0.03699595108628273, 0.04974515363574028, 0.005800328683108091, -0.002466405276209116, 0.09554804116487503, 0.019172316417098045, 0.01295559760183096, 0.008335588499903679, 0.005787741392850876, -0.007950805127620697, 0.023863783106207848, -0.027199726551771164, 0.020791808143258095, -0.009153027087450027, 0.0172293521463871, -0.021714050322771072, -0.013437733985483646, -0.017953407019376755, 0.031070930883288383, -0.002630912931635976, 0.027808906510472298, 0.012984300963580608, 0.004862016998231411, 0.007769013289362192, 0.017128923907876015, -0.01779266819357872, 0.02399345301091671, -0.0454351007938385, -0.025744924321770668, 0.03299892321228981, -0.007754614111036062, 0.03275405243039131, -0.0032860836945474148, -0.005186384543776512, 0.00672702444717288, 0.023711955174803734, 0.06150823086500168, 0.04499022290110588, -0.0181931983679533, 0.025616521015763283, 0.045553646981716156, -0.037299979478120804, -0.011631310917437077, 0.008570757694542408, 0.043499868363142014, 0.028730813413858414, 0.0012915825936943293, -0.03450687974691391, -0.008604995906352997, -0.03382934629917145, -0.021210266277194023, -0.009035012684762478, 0.024206632748246193, 0.012655527330935001, -0.009631785564124584, -0.0008276077569462359, -0.002349875634536147, -0.039223313331604004, 0.0011100025149062276, 0.008544220589101315, -0.0694100633263588, -0.028639469295740128, 0.021955808624625206, -0.02533586695790291, 0.03847070783376694, -0.0203748419880867, -0.023241423070430756, 0.032768405973911285, 0.05910691246390343, -0.044378750026226044, -0.0036059641279280186, 0.020416200160980225, -0.023048967123031616, -0.03251756727695465, 0.006179971154779196, 0.005651415791362524, -0.023490136489272118, -0.01833590492606163, 0.049234043806791306, -0.002423768164590001, 0.023903891444206238, 0.008317114785313606, 0.019719423726201057, 0.034096140414476395, 0.04953351989388466, -0.008978004567325115, -0.011403881944715977, 0.009645367972552776, 0.051812298595905304, -0.005486572161316872, 0.024366838857531548, -0.013134947046637535, 0.05824897810816765, 0.04800397902727127, 0.04500310495495796, 0.03963252529501915, 0.004957104567438364, 0.027144528925418854, 0.059887420386075974, -0.011006922461092472, 0.010877535678446293, 0.025136830285191536, 0.037999145686626434, 0.03977178409695625, 0.02101658470928669, -0.04063515365123749, 0.045681312680244446, -0.014362312853336334, 0.015655485913157463, -0.007481225300580263, 0.007109492551535368, -0.014776162803173065, 0.059049658477306366, 0.030334917828440666, 0.009691400453448296, -0.01449788361787796, 0.04647040367126465, 0.055980753153562546, 0.047076284885406494, -0.030371729284524918, -0.010244835168123245, 0.015565353445708752, 0.022282857447862625, 0.004061505664139986, 0.022799288854002953, 0.01803993247449398, 0.016843050718307495, 0.015242804773151875, 0.011861826293170452, 0.001307707279920578, -0.03819430619478226, -0.06332391500473022, -0.05977744981646538, -0.03199823200702667, -0.039753224700689316, -0.030742211267352104, 0.016017086803913116, 0.053792670369148254, -0.020562175661325455, 0.032890595495700836, 0.009433438070118427, -0.01422196626663208, -0.029670801013708115, -0.028192423284053802, 0.0436461940407753, 0.020079854875802994, 0.032226789742708206, -0.053963303565979004, 0.025625476613640785, -0.005414834711700678, 0.03898775577545166, -0.025408001616597176, -0.026561075821518898, -0.0030422492418438196, -0.007531185634434223, 0.022592585533857346, -0.008050450123846531, -0.013467099517583847, 0.0009802246931940317, -0.024145442992448807, -0.07443792372941971, 0.016659563407301903, 0.025520682334899902, 0.00468784011900425, -0.01772867888212204, -0.037951093167066574, 0.051402416080236435, 0.009984856471419334, -0.03589388728141785, 0.029752345755696297, 0.042707230895757675, -0.06341738998889923, 0.07081349939107895, 0.025081012398004532, 0.009349103085696697, -0.031922269612550735, 0.03735668212175369, 0.05091208219528198, -0.013011356815695763, -0.007518497761338949, -0.021328169852495193, -0.03066367283463478, 0.005270673427730799, 0.047112837433815, -0.029377102851867676, -0.014075838960707188, 0.06301074475049973, 0.010381766594946384, -0.07872088998556137, 0.024932729080319405, -0.06645467877388, -0.04059453308582306, -0.01948840729892254, -0.013998081907629967, 0.04822058975696564, -0.006286201067268848, 0.04904574528336525, -0.01670061983168125, -0.03994036465883255, 0.03117632307112217, 0.0336347371339798, 0.06101115047931671, -0.030732065439224243, 0.008549276739358902, 0.043642558157444, 0.0016511526191607118, 0.00675704563036561, 0.03436167538166046, -0.0015038674464449286, -0.01283962931483984, 0.033626049757003784, -0.030145911499857903, 0.00917760469019413, 0.01523151807487011, -0.003924319054931402, -0.003770243376493454, 0.03713933750987053, -0.013861402869224548, -0.026862768456339836, 0.008063784800469875, 0.027415631338953972, -0.0023702867329120636, 0.000938510405831039, 0.019986944273114204, 0.0000013932951787865022, -0.013009898364543915, -0.06460811197757721, 0.018660038709640503, 0.005350928287953138, 0.0443318746984005, -0.04280802235007286, 0.04946253076195717, 0.021013492718338966, -0.028100304305553436, 0.03816423937678337, -0.03956499695777893, -0.005249176174402237, 0.04019838199019432, -0.014168420806527138, 0.00013701860734727234, -0.022932443767786026, 0.003639506408944726, -0.01123097911477089, 0.012619215995073318, 0.04822802171111107, -0.010527501814067364, 0.02587236650288105, -0.042935002595186234, -0.048962630331516266, -0.055034711956977844, -0.020715415477752686, -0.037793103605508804, -0.009523101150989532, 0.024969065561890602, -0.014921680092811584, 0.000796614505816251, -0.029795242473483086, 0.020775875076651573, 0.05577268823981285, 0.03745556250214577, 0.02656661719083786, 0.01579779013991356, 0.02654258720576763, 0.021540958434343338, 0.030736654996871948, -0.016735568642616272, -0.007811828516423702, -0.03888583183288574, 0.015522907488048077, 0.035208702087402344, -0.014900436624884605, -0.017941007390618324, -0.022441226989030838, -0.019909784197807312, 0.025504929944872856, -0.002090924186632037, -0.02455386333167553, -0.04941008612513542, 0.010281570255756378, -0.029693767428398132, 0.018105993047356606, -0.0071932473219931126, -0.019830215722322464, -0.0342092290520668, 0.04332371801137924, 0.026723232120275497, -0.036466680467128754, 0.010155189782381058, -0.04719901084899902, 0.0472262017428875, 0.03216450661420822, -0.0155343571677804, -0.027896635234355927, -0.037337251007556915, -0.05990816280245781, -0.02703762799501419, -0.0050627486780285835, 0.03853630647063255, -0.012525892816483974, -0.0023804032243788242, -0.06672662496566772, 0.03774092346429825, 0.023410171270370483, -0.0010850224643945694, -0.010828659869730473, -0.0005965617019683123, 0.022427095100283623, -0.015334969386458397, 0.05715828016400337, -0.009741980582475662, -0.0325535386800766, 0.027025435119867325, -0.07384984940290451, -0.0021204552613198757, 0.00859859213232994, -0.010968640446662903, 0.0024267074186354876, -0.015508366748690605, 0.016773438081145287, 0.033620502799749374, -0.01605173572897911, 0.003531345631927252, -0.0165337435901165, 0.024214880540966988, -0.009875715710222721, -0.03728112205862999, 0.05093145743012428, -0.01930101029574871, -0.016306405887007713, 0.0316799096763134, 0.035902731120586395, 0.011039971373975277, 0.019918175414204597, 0.036017511039972305, -0.0489264540374279, 0.014621837064623833, -0.05440695956349373, 0.015187975019216537, -0.016130007803440094, -0.02795441448688507, 0.018151845782995224, -0.030003344640135765, 0.02637145295739174, 0.00436442531645298, -0.039561573415994644, -0.04485460743308067, -0.06959033757448196, -0.0219394713640213, -0.01694762334227562, -0.024578727781772614, -0.005323509685695171, 0.010742946527898312, -0.0010074872989207506, 0.005273893009871244, -0.011493735946714878, 0.012681911699473858, -0.040849469602108, -0.02638145536184311, 0.008019092492759228, 0.016402365639805794, 0.022923776879906654, 0.03287985175848007, 0.006250662263482809, -0.035398148000240326, -0.012417720630764961, -0.01566510647535324, 0.0011099140392616391, -0.027950741350650787, 0.02542027086019516, -0.01661604642868042, 0.0067438059486448765, 0.0009247296839021146, 0.004948933608829975, -0.027194328606128693, 0.024144204333424568, 0.010364769957959652, 0.0335669182240963, -0.008511257357895374, 0.00557470740750432, -0.03895530477166176, 0.034417763352394104, 0.0013408428058028221, -0.05406540259718895, -0.000769859179854393, 0.04969602823257446, -0.020259354263544083, 0.03484795615077019, -0.02842511422932148, -0.004915320780128241, -0.03996311500668526, -0.05555102974176407, 0.018901199102401733, -0.032919205725193024, -0.024099191650748253, -0.05527599900960922, -0.015755318105220795, -0.048344142735004425, 0.009345673955976963, -0.015125975012779236, -0.044057611376047134, -0.007999391295015812, -0.05244985222816467, 0.005858070682734251, -0.004117307253181934, -0.00013430514081846923, -0.029577281326055527, -0.02089894935488701, -0.00469584483653307, 0.04082329943776131, 0.0012127726804465055, 0.03708106279373169, 0.027800796553492546, 0.00892448890954256, 0.050330422818660736, -0.014622543007135391, -0.04670245200395584, -0.03022111766040325, -0.0037690787576138973, 0.027118535712361336, 0.01580789126455784, -0.006004804745316505, -0.044942617416381836, 0.048821400851011276, -0.023889295756816864, 0.015446093864738941, -0.006606840528547764, -0.012201674282550812, -0.008716951124370098, 0.016180584207177162, 0.04728519171476364, -0.03780537098646164, -0.015679124742746353, -0.03157626837491989, 0.028322651982307434, 0.040928591042757034, -0.005441001616418362, -0.03340774029493332, -0.04321090504527092, -0.025834959000349045, -0.03836127370595932, -0.014320943504571915, -0.019483361393213272, -0.03194260597229004, -0.0646536648273468, -0.004315543454140425, 0.04635965824127197, -0.004109480883926153, 0.028749099001288414, 0.06787990778684616, 0.013373088091611862, 0.010211172513663769, -0.024372698739171028, 0.015608889982104301, 0.05046849325299263, 0.006794860120862722, 0.009010707028210163, -0.005616110749542713, -0.014223516918718815, 0.01023828610777855, -0.030054455623030663, -0.033545251935720444, -0.044399525970220566, -0.014162910170853138, 0.050006140023469925, -0.030026081949472427, 0.041805773973464966, 0.01475562248378992, -0.03090921975672245, -0.02467372454702854, 0.04981483891606331, -0.006131626199930906, -0.002629767172038555, 0.02355659008026123, -0.0037111896090209484, -0.026189399883151054, 0.0272708497941494, 0.002971366746351123, -0.018345506861805916, -0.029294297099113464, 0.07625929266214371, -0.022763827815651894, -0.031571537256240845, 0.01929166354238987, 0.010617725551128387, -0.08270193636417389, -0.0359148345887661, -0.01507918443530798, -0.012486782856285572, 0.003183819120749831, -0.03977824002504349, 0.012982726097106934, 0.006143901031464338, 0.005659718532115221, -0.004670791327953339, 0.04208166524767876, -0.035523612052202225, 0.04797621816396713, 0.012142243795096874, 0.018728218972682953, -0.03284387290477753, 0.04525580257177353, 0.03313480690121651, 0.0252436101436615, -0.04286239668726921, -0.02741464041173458, 0.0021079727448523045, 0.039676837623119354, -0.014347321353852749, 0.07219357788562775, -0.011856546625494957, 0.022608114406466484, -0.00176062376704067, 0.014938131906092167, 0.00639678118750453, -0.010640552267432213, 0.0011158937122672796, 0.007581369485706091, -0.02879462204873562, -0.05246170982718468, -0.05538768321275711, -0.002058175625279546, -0.00601227767765522, 0.05071871355175972, -0.048901937901973724, -0.003101738402619958, 0.03485966473817825, 0.03611685708165169, -0.01889794133603573, -0.06062009185552597, -0.05332779139280319, -0.04424420744180679, -0.04539426788687706, -0.05002870038151741, -0.03971708565950394, -0.013112127780914307, 0.019217699766159058, 0.02084253914654255, -0.0028820489533245564, 0.011672565713524818, -0.01066121831536293, -0.03027283400297165, 0.008247259072959423, -0.05847415700554848, 0.016546053811907768, -0.012693813070654869, -0.0402836799621582, -0.030298396944999695, 0.011133384890854359, -0.03756324574351311, -0.013103551231324673, 0.0022186734713613987, 0.035544633865356445, 0.004549003206193447, 0.036175381392240524, -0.005232812371104956, -0.010725375264883041, 0.010132303461432457, -0.015667354688048363, 0.004406964406371117, 0.037987615913152695, -0.003949102014303207, 0.03580476716160774, 0.022781161591410637, -0.013796977698802948, 0.02619895525276661, 0.007608276326209307, -0.009947984479367733, -0.029407154768705368, 0.0003117132291663438, 0.0014860114315524697, -0.008713076822459698, -0.022044207900762558, -0.03026890568435192, -0.01624573953449726, -0.027767596766352654, 0.018492963165044785, -0.017507534474134445, -0.006162416655570269, -0.00456011388450861, -0.013102982193231583, 0.005084867589175701, 0.06371007859706879, -0.0005330769345164299, 0.028357723727822304, -0.005698919761925936, 0.021186325699090958, -0.004774569999426603, 0.017809893935918808, 0.0023505284916609526, 0.02992251142859459, 0.015301944687962532, -0.03850894793868065, 0.005933281499892473, -0.0005764556699432433, -0.023197641596198082, 0.027892442420125008, -0.005331791937351227, -0.03254018723964691, -0.03377421572804451, 0.0040624747052788734, 0.009076647460460663, 0.05468092858791351, 0.003765852889046073, -0.03900095820426941, 0.0260064247995615, -0.0376950204372406, -0.03204571455717087, 0.02624981477856636, -0.05782550573348999, -0.04591142386198044, 0.008766880258917809, 0.005069521721452475, -0.009576704353094101, -0.017097216099500656, -0.00989065133035183, -0.011289943940937519, -0.004706721752882004, 0.024236438795924187, 0.003157797735184431, 0.029551947489380836, 0.012885057367384434, 0.045367565006017685, 0.013416030444204807, -0.00025291254860349, 0.012471331283450127, 0.07052411884069443, -0.07792207598686218, -0.05442565307021141, 0.031025731936097145, 0.005986373871564865, 0.011129481717944145, -0.011767377145588398, 0.000333324569510296, -0.010960185900330544, 0.0070345355197787285, 0.013803059235215187, 0.024104073643684387, 0.014785450883209705, -0.029876694083213806, 0.000795735337305814, -0.015504784882068634, -0.024456169456243515, -0.03902379795908928, 0.04482907056808472, -0.0015182120259851217, -0.04124622419476509, -0.037135932594537735, 0.030187243595719337, 0.03281085193157196, -0.009868189692497253, 0.04820559173822403, 0.019410012289881706, 0.048394907265901566, 0.007672974374145269, -0.004251216538250446, 0.01374010369181633, 0.03785271942615509, 0.017695875838398933, 0.04190155863761902, 0.003908846527338028, 0.02036474086344242, 0.06441894918680191, -0.03576665744185448, 0.009297116659581661, 0.041437890380620956, 0.001481844810768962, -0.013207552023231983, -0.013377281837165356, -0.01614878512918949, 0.019200649112462997, 0.030958209186792374, -0.015169861726462841, 0.006483066361397505, -0.02737490087747574, -0.009398233145475388, -0.024430515244603157, -0.014413704164326191, 0.050494659692049026, -0.03788694739341736, 0.020725324749946594, -0.004654980264604092, -0.028444424271583557, 0.023366717621684074, 0.033672183752059937, 0.016608070582151413, 0.022516192868351936, 0.06318151205778122, 0.021306237205863, -0.0050074937753379345, 0.04263390600681305, 0.024163732305169106, 0.02375081554055214, -0.03426307439804077, 0.024359814822673798, 0.015978215262293816, 0.002129564993083477, -0.025101883336901665, -0.024827156215906143, -0.05182977393269539, 0.005982181988656521, -0.056487083435058594, -0.05128437653183937, 0.05106322467327118, -0.027048446238040924, 0.0008516771486029029, -0.015151400119066238, 0.054251909255981445, -0.02276538498699665, 0.005477902013808489, 0.06839131563901901, -0.00426105922088027, -0.028506310656666756, 0.08234208822250366, 0.03373323008418083, 0.03518989309668541, 0.02186327986419201, 0.05928253382444382, -0.015406095422804356, 0.04799719527363777, 0.06594575941562653, -0.005321497563272715, 0.0031319132540374994, 0.031678516417741776, -0.004637258592993021, -0.03157271444797516, -0.014951645396649837, -0.01945164054632187, -0.015054356306791306, -0.016671085730195045, -0.018326401710510254, -0.03888118267059326, 0.012750187888741493, -0.016617270186543465, -0.034868814051151276, -0.007123847957700491, 0.017491742968559265, -0.05497711896896362, 0.02981128729879856, 0.00693441042676568, 0.03288986533880234, -0.03189289569854736, -0.028519822284579277, -0.03703713044524193, -0.02669411711394787, -0.01044347882270813, -0.04220234602689743, 0.031091181561350822, -0.010951493866741657, -0.005232331342995167, -0.03602762892842293, -0.035972367972135544, -0.044471368193626404, 0.018389992415905, -0.03875235095620155, -0.056123748421669006, 0.045031726360321045, 0.02054322138428688, 0.011517466977238655, -0.00587836978957057, -0.04158741980791092, 0.002817881293594837, 0.03535827249288559, 0.031472232192754745, -0.006830387283116579, 0.048975806683301926, 0.03609328716993332, -0.0061477734707295895, 0.0116521455347538, 0.0049972222186625, 0.03072023205459118, -0.03316130489110947, 0.016490712761878967, -0.033041492104530334, 0.025295285508036613, -0.02430836297571659, -0.058800388127565384, 0.03369775414466858, 0.012793824076652527, -0.016465647146105766, -0.02708091214299202, -0.08747941255569458, -0.003530933288857341, -0.05356847122311592, 0.0027427198365330696, -0.04624537378549576, 0.019085828214883804, -0.005496460013091564, -0.013467391952872276, -0.002105310093611479, -0.07326994091272354, 0.14136290550231934, 0.024858219549059868, 0.029843581840395927, -0.010141381062567234, -0.007338316645473242, 0.0497015081346035, -0.00227606063708663, -0.0389702245593071, 0.01673634722828865, -0.050419315695762634, 0.03778227046132088, -0.023815393447875977, 0.03443646430969238, 0.00720934895798564, 0.030659055337309837, 0.053285203874111176, -0.008656357415020466, -0.00588108878582716, 0.019319094717502594, -0.0832735002040863, -0.04272521287202835, 0.04723889380693436, 0.017567431554198265, 0.04110117629170418, -0.013715488836169243, 0.015656189993023872, 0.012635060586035252, -0.05100801959633827, -0.02013738639652729, 0.0015255229081958532, 0.018518755212426186, -0.04149108752608299, 0.018388206139206886, -0.01794075034558773, -0.0023132427595555782, 0.040805913507938385, 0.01839391514658928, -0.0009260326623916626, -0.01728569157421589, 0.01985841989517212, -0.014876984991133213, 0.002528104931116104, 0.031702011823654175, -0.05279475450515747, 0.0037346994504332542, 0.016649287194013596, -0.03760898858308792, 0.015001505613327026, -0.003193899057805538, -0.017560293897986412, 0.06767315417528152, -0.05168800801038742, 0.02278399094939232, -0.0034437901340425014, -0.0445004440844059, 0.05324013903737068, 0.016803234815597534, -0.003179658902809024, 0.007838723249733448, 0.010380970314145088, -0.0055807046592235565, 0.002546688774600625, -0.0376562625169754, -0.00526809599250555, -0.04983111843466759, 0.004814207088202238, 0.02150784246623516, 0.013658811338245869, 0.02206340804696083, -0.028404278680682182, -0.0007171544129960239, -0.03600352630019188, -0.003983879927545786, -0.02901678904891014, 0.02470296248793602, 0.044822677969932556, -0.026921983808279037, 0.05551557615399361, 0.0032175465021282434, -0.013715913519263268, -0.04330864176154137, -0.022884588688611984, -0.02578575722873211, -0.0033479982521384954, 0.05633661523461342, 0.040147989988327026, -0.03274906426668167, -0.02819712460041046, -0.03819767385721207, 0.05541454628109932, 0.023544244468212128, 0.030952777713537216, 0.011903040111064911, -0.003249580506235361, -0.02378831058740616 ]
Home > How Does a Surety Bond Work? You are starting a new venture and have just been informed that you need to get a surety bond. You feel like your never ending list just to get started has expanded into an area you know nothing about. Well rest easy, we're here to make this as simple as possible. Read on to learn what surety bonds are, what they do, what they cost, and potential issues you may encounter. In this article we will specifically be referring to commercial bonds, click here to learn how contract bonds work. First, what is a surety bond and why do I need it? The abbreviated story is a surety bond is a three party agreement. It involves you, the surety (typically a large insurance company) and the people telling you to get a bond (the obligee). The bond is put in place to guarantee something, there are a lot of surety bonds types out there, but in short they all guarantee you will abide the rules. These bonds do not protect you, but rather your customer (or the obligee in the case of financial guarantee bonds). Get more detailed information on what surety bonds are here. What do you need to get bonded? Are you ready to get going? Commercial bonds will be underwritten using a verity of tools; among them are person credit, personal and business financials, and the legal language used on the bond form itself. Learn more about the information you must provide to get bonded here. After a review of the above information, you will be assigned a rate by your underwriter. This rate multiplied by the bond amount required will get you your annual premium. For example, if you are required to get a $25,000 Florida Motor Vehicle Dealer Bondm, and the underwriter assigns you a 2% Rate, then you yearly premium will be $500. Read on here to learn more about the cost of a surety bond, and ways to reduce your premium. Now that your surety bond is in place it's time to learn how it really works, and you may be surprised. As we discussed earlier, a bond is there to guarantee something. Let's revisit the previous example of the $25,000 Florida Motor Vehicle dealer bond. Let's say the bond is now on file with the obligee (the state is the obligee in this instance) and the dealer has opened for business. If the auto dealer abides by the rules and regulations of his auto dealership license as set forth by the state, then the bond itself goes mostly unnoticed. The surety bond only goes to work when a claim is filed. Pretend in this example scenario, the Florida MVD was to sell a car, yet never transfer the title to the customer's name after the purchase. The customer who bought the car could file a claim against the auto dealer's bond for the cost of the car. The surety would then investigate, and if they found the claim to be legitimate, the bond would pay out to the customer. As you can see from this example, surety bonds are required as consumer protection guarantees. This is sounding a lot like insurance isn't it? Well a surety bond is very different than insurance. With traditional insurance, you pay your premiums, and if you have an incident, the insurance covers the damages. Sure, your premiums might go up a little bit, but all is forgiven. Surety bonds are not like that. When a bond claim is paid on your bond, the surety will look to you for repayment in full. Further, a paid bond claim may affect your future ability to get bonded. So why do I need a surety bond? Why can't I just take the risk that somebody sues me someday? If these don't protect me, why should I pay for them? These are typical questions new business owners ask themselves. As confusing and scary as surety bonds can sound, the bottom line is, if you've been told you need a surety bond, you simply cannot legally operate your business without one. The reality of business is, consumers want to know they are protected. But, if you run a responsible business and resolve issues as they come up, you won't ever have to worry about your bonds being paid out. Finally, most bonds are renewed annually (though some have specific language on the bond form that calls for a different term). Bryant Surety will automatically shop the lowest rates for you each year, and contact you with your lowest possible rate at renewal time, so all you need to worry about is your day to day operations, and we take care of the rest.
[ 0.012710724025964737, 0.03201431408524513, -0.023585885763168335, 0.018508069217205048, 0.0038800023030489683, 0.01983879692852497, -0.002597498707473278, 0.006993310991674662, 0.030799824744462967, 0.03767066448926926, 0.061654239892959595, 0.00004723946040030569, 0.00831981748342514, -0.02726646140217781, -0.010628054849803448, 0.038895606994628906, -0.004257934633642435, -0.018259454518556595, 0.000465835357317701, 0.01219336036592722, -0.0019994517788290977, -0.027719728648662567, -0.07375006377696991, -0.03128763288259506, -0.04075389727950096, 0.03673878312110901, 0.03705952316522598, -0.010302059352397919, 0.04994708299636841, 0.071193166077137, -0.02490835450589657, -0.021545814350247383, 0.006900250446051359, -0.030866043642163277, -0.04147055745124817, -0.01373276673257351, 0.041504014283418655, -0.04116826504468918, -0.0298359002918005, -0.03945997357368469, 0.01277297642081976, 0.0329585075378418, 0.026652738451957703, -0.024873914197087288, -0.07809007167816162, 0.0008880220120772719, -0.028380736708641052, -0.04254277050495148, 0.023588327690958977, -0.03828152269124985, -0.007900944910943508, 0.008916910737752914, 0.02470499463379383, -0.014835873618721962, -0.002772858366370201, 0.02258572168648243, 0.0022718124091625214, 0.009344780817627907, -0.002943169791251421, 0.04887160286307335, 0.02507992647588253, -0.005578651558607817, 0.01335494127124548, -0.0404265820980072, -0.025199197232723236, 0.026936165988445282, -0.017847171053290367, -0.002937647281214595, 0.016544010490179062, 0.00932810828089714, 0.033850740641355515, 0.02957960218191147, -0.010794978588819504, 0.0050151776522397995, 0.006216555833816528, -0.004248511977493763, 0.004208111669868231, 0.013989368453621864, -0.01817137561738491, 0.0041358256712555885, 0.025762293487787247, 0.04751627519726753, 0.026675574481487274, 0.02689085155725479, -0.055081482976675034, -0.029324254021048546, -0.02079036831855774, -0.003831880632787943, 0.020949723199009895, -0.0044448357075452805, 0.0059576681815087795, 0.04639654606580734, -0.004852962214499712, -0.011643796227872372, 0.012208565138280392, 0.03281817585229874, -0.052793070673942566, 0.02247420698404312, 0.023403089493513107, 0.022206567227840424, 0.005719416309148073, 0.03107902780175209, 0.023620866239070892, 0.04853658005595207, -0.03129633516073227, 0.01974671147763729, 0.04008009284734726, -0.028303636237978935, -0.03988008573651314, -0.02212868630886078, -0.004404837731271982, -0.04918445274233818, 0.017634665593504906, -0.015875451266765594, -0.0011193538084626198, 0.04562121629714966, -0.0011455030180513859, 0.023165779188275337, -0.01749400980770588, 0.007512201555073261, 0.03835548460483551, 0.0015734639018774033, 0.04978412762284279, -0.015296152792870998, 0.010500780306756496, -0.024265212938189507, -0.02581360749900341, 0.03655446320772171, -0.042543962597846985, -0.023002680391073227, 0.01170460693538189, -0.03576677665114403, -0.01666048914194107, 0.055035077035427094, -0.018428253009915352, 0.004620102234184742, -0.0016066341195255518, 0.06276176869869232, 0.04967811331152916, -0.02946767397224903, 0.04910658299922943, 0.007599241100251675, 0.02290213108062744, 0.06793543696403503, 0.015646571293473244, 0.020105760544538498, 0.034248776733875275, -0.029119739308953285, -0.03159455582499504, 0.06395170092582703, -0.03233210742473602, 0.010951416566967964, 0.007542487699538469, -0.005360445473343134, -0.004476052708923817, -0.00023764578509144485, 0.02825954742729664, 0.012192074209451675, -0.016537722200155258, 0.009690561331808567, 0.003659543814137578, 0.0028097201138734818, 0.007250337395817041, 0.025976616889238358, -0.031240189447999, 0.014549577608704567, -0.04025467485189438, -0.02698017656803131, -0.03159479796886444, -0.014222710393369198, 0.022073060274124146, 0.01953601837158203, -0.028509531170129776, 0.01149786077439785, 0.03559667617082596, 0.031824298202991486, 0.04623648151755333, 0.0016930261626839638, 0.028948567807674408, 0.03892360255122185, -0.06281337887048721, -0.007175317034125328, -0.02592608705163002, 0.07541494816541672, 0.027288392186164856, -0.012180614285171032, -0.014259778894484043, -0.01820158027112484, -0.03335488215088844, -0.005210369359701872, 0.00540434755384922, 0.051148273050785065, -0.047093141824007034, 0.038368918001651764, -0.00007822198676876724, 0.010124361142516136, -0.022718951106071472, -0.027353458106517792, -0.014878658577799797, -0.04960671812295914, -0.023503566160798073, -0.0003945473290514201, -0.04010721296072006, 0.040474869310855865, -0.02013026736676693, -0.012862666510045528, 0.039682548493146896, 0.05943690985441208, -0.052213527262210846, 0.01287150289863348, 0.023635895922780037, 0.006341088563203812, -0.009268769063055515, -0.016026001423597336, 0.004071124363690615, 0.013359319418668747, -0.03225647285580635, 0.050554610788822174, -0.010919181630015373, -0.022490300238132477, -0.004973232746124268, 0.027540618553757668, 0.015447339043021202, 0.059878647327423096, 0.00315894209779799, -0.023319628089666367, 0.02383839339017868, 0.037550751119852066, -0.03483840823173523, -0.004219498485326767, 0.006798838265240192, 0.05066366493701935, 0.022386746481060982, 0.07812165468931198, 0.031621649861335754, 0.028682127594947815, 0.05388453230261803, 0.027258412912487984, 0.006098179612308741, 0.03431322053074837, -0.010025182738900185, 0.05257833003997803, 0.03203194960951805, 0.028024645522236824, -0.011050241999328136, 0.009653243236243725, 0.007700348272919655, -0.009597777388989925, 0.012159619480371475, 0.02689010091125965, -0.000050127106078434736, 0.056536078453063965, 0.007648000493645668, 0.05522149056196213, -0.01921295002102852, -0.0006542786723002791, 0.04043181240558624, 0.04574861750006676, -0.04572775959968567, -0.01710611954331398, -0.00894961692392826, 0.03858247399330139, -0.02463027648627758, -0.02795691415667534, 0.009067513048648834, 0.022420940920710564, 0.016337312757968903, 0.020629556849598885, -0.0021012811921536922, -0.05567537620663643, -0.040101438760757446, -0.07832540571689606, -0.046318162232637405, -0.04106982424855232, -0.03824043646454811, 0.012614410370588303, 0.03281058371067047, -0.040422823280096054, 0.004176425747573376, -0.03984175622463226, -0.012834128923714161, 0.008942296728491783, -0.04839581623673439, 0.06901096552610397, 0.012983735650777817, 0.02695823833346367, -0.034999992698431015, 0.044172823429107666, -0.007454203441739082, 0.028220899403095245, -0.021555110812187195, -0.023561442270874977, -0.027100488543510437, -0.026008332148194313, 0.04739713296294212, -0.021649101749062538, -0.007431329693645239, -0.012333150953054428, -0.04281993955373764, -0.041132405400276184, 0.001131287426687777, -0.01844017021358013, 0.022344065830111504, 0.01890726387500763, -0.07034819573163986, 0.05050753802061081, 0.046309441328048706, -0.02463374100625515, 0.004950405564159155, 0.05756344646215439, -0.05449988692998886, 0.0639972910284996, 0.0267318245023489, 0.012608896009624004, -0.04419240355491638, 0.051178209483623505, 0.0739506408572197, -0.016737794503569603, 0.005860672798007727, -0.03458369895815849, 0.00017644579929765314, 0.0389782153069973, -0.000027602907721302472, -0.013604111038148403, -0.024631477892398834, 0.05554644763469696, 0.024683812633156776, -0.04444035887718201, 0.01905808597803116, -0.046904321759939194, -0.03147664666175842, -0.04524989426136017, -0.03386449068784714, -0.0030333991162478924, 0.016163315623998642, 0.025631019845604897, -0.012853343971073627, -0.02246095798909664, 0.014513824135065079, 0.010665681213140488, 0.048340726643800735, -0.024078695103526115, 0.04031765088438988, 0.030285274609923363, 0.004331408534198999, 0.016212590038776398, 0.02970634028315544, -0.02300245314836502, -0.01702311635017395, 0.015889642760157585, -0.013360381126403809, 0.023125384002923965, 0.007967320270836353, -0.019350094720721245, -0.0029803579673171043, 0.0394430011510849, -0.013360278680920601, -0.008753116242587566, 0.013604339212179184, 0.02710234560072422, 0.03901277109980583, 0.026691801846027374, 0.02536001056432724, 0.011063016951084137, -0.0307910218834877, -0.05889251083135605, 0.014954688958823681, 0.012861120514571667, 0.05341323837637901, -0.049967244267463684, 0.08026394993066788, 0.024762015789747238, -0.049143265932798386, 0.03715355694293976, -0.05919582024216652, -0.050607919692993164, 0.004954962525516748, -0.03612679988145828, 0.03019607625901699, -0.04536401480436325, 0.028242260217666626, -0.0017194169340655208, 0.013228206895291805, 0.011856649070978165, 0.013244020752608776, 0.032883379608392715, -0.02722429484128952, -0.010391763411462307, -0.040222007781267166, -0.020397787913680077, -0.030352644622325897, -0.03809356689453125, -0.017342060804367065, -0.016793055459856987, -0.040817055851221085, -0.027186790481209755, 0.021914716809988022, 0.02083939127624035, 0.002468026475980878, -0.016122881323099136, 0.0279953945428133, 0.029179630801081657, 0.012813976965844631, 0.0007330525550059974, -0.03693610802292824, 0.021015089005231857, -0.02315082773566246, 0.04238824173808098, 0.01901070587337017, -0.01534145325422287, -0.05780839920043945, -0.017164699733257294, -0.03212891146540642, 0.021321844309568405, -0.00007090604776749387, -0.021158404648303986, -0.036803651601076126, 0.017054585739970207, -0.004234058782458305, -0.029500853270292282, -0.04707163944840431, -0.05274423584342003, -0.02661989815533161, 0.042278263717889786, 0.046429332345724106, -0.04381148889660835, -0.00917946919798851, -0.033592332154512405, 0.015561610460281372, 0.015297673642635345, -0.006289665121585131, -0.044404786080121994, -0.011993871070444584, -0.024655215442180634, -0.011417495086789131, -0.03281792625784874, 0.012142525054514408, -0.01056631188839674, -0.0010841770563274622, -0.034025683999061584, 0.023417429998517036, 0.03276047110557556, -0.013737604953348637, -0.007094660773873329, -0.0009536973666399717, 0.03936484828591347, 0.00020055101776961237, 0.021943988278508186, 0.013908762484788895, -0.015555055812001228, 0.015524684451520443, -0.0677838996052742, 0.01938236877322197, -0.0018499406287446618, -0.036455973982810974, 0.002968069165945053, 0.03400259092450142, 0.020145677030086517, 0.03215791657567024, -0.01254094298928976, 0.016577821224927902, -0.02057846076786518, 0.03663139417767525, -0.07593070715665817, -0.01771634630858898, 0.03686010465025902, -0.02653430961072445, -0.01583646424114704, 0.029111025854945183, -0.004092215094715357, 0.0048743863590061665, 0.012541685253381729, 0.026460235938429832, -0.03740192577242851, 0.019516773521900177, -0.060721416026353836, 0.019647443667054176, -0.024773873388767242, -0.04114849865436554, 0.02760281227529049, -0.023738108575344086, 0.04695681855082512, 0.0028405599296092987, -0.02769508771598339, -0.060329243540763855, -0.08562509715557098, 0.0008166046463884413, 0.02075374685227871, -0.01957189291715622, 0.02237110212445259, 0.02292310819029808, -0.003362510818988085, -0.03326176106929779, -0.03399961069226265, -0.0008090566261671484, 0.014553557150065899, -0.03587717190384865, 0.030601762235164642, 0.0009474728140048683, 0.012707111425697803, 0.037721604108810425, -0.020302416756749153, -0.057639967650175095, 0.009172034449875355, -0.0272117517888546, -0.004330761265009642, -0.024787915870547295, -0.00716750742867589, -0.03476075455546379, -0.01603810302913189, -0.021060403436422348, 0.021305128931999207, -0.006970989517867565, 0.02358292043209076, 0.07030049711465836, 0.012795118615031242, 0.011536997742950916, -0.006163965445011854, -0.04706686735153198, 0.026811694726347923, 0.016773711889982224, -0.015573722310364246, -0.06080429628491402, 0.03747507184743881, -0.011166536249220371, 0.03297526389360428, -0.002631754381582141, -0.0038250095676630735, -0.06063578277826309, -0.032719310373067856, -0.008115209639072418, -0.02942602150142193, -0.01918344758450985, -0.021544715389609337, -0.02290954813361168, 0.007052088156342506, 0.045576103031635284, 0.026517583057284355, -0.04642696678638458, -0.011577736586332321, -0.05703607201576233, 0.003673178143799305, -0.06050664186477661, 0.016539402306079865, -0.013463619165122509, -0.0072477636858820915, -0.02071094512939453, 0.051061857491731644, 0.021134953945875168, 0.006888404954224825, -0.041415680199861526, 0.0014794598100706935, 0.05659590661525726, -0.0077214366756379604, -0.06383586674928665, -0.02406289614737034, -0.00934133306145668, 0.0010101437801495194, -0.002432674402371049, -0.001212787115946412, -0.0282947588711977, 0.05190149322152138, -0.02971695549786091, 0.02712746523320675, -0.02901642583310604, -0.023596778512001038, -0.002950020832940936, -0.014031591825187206, 0.04236353188753128, -0.033400848507881165, -0.010484575293958187, -0.05021774768829346, 0.027806274592876434, 0.05091359093785286, -0.0015052201924845576, -0.0589107871055603, -0.03785689175128937, -0.03487628698348999, -0.0658409595489502, 0.024380376562476158, -0.00576001824811101, -0.018652424216270447, -0.05205271393060684, -0.0046008918434381485, 0.04169299453496933, -0.019363848492503166, 0.036737825721502304, 0.038854777812957764, -0.009678356349468231, 0.007755623199045658, -0.011964983306825161, 0.05076388269662857, 0.04210972785949707, -0.03586195036768913, -0.0003313193446956575, 0.0026016458868980408, -0.020434636622667313, 0.005995478946715593, -0.04247032105922699, -0.02440071664750576, -0.059151582419872284, 0.007555863820016384, 0.05374360457062721, -0.01549290120601654, 0.02689386159181595, -0.022425085306167603, -0.020259644836187363, -0.007257458753883839, 0.05787580832839012, 0.031768932938575745, 0.02654143050312996, 0.062334612011909485, -0.0077494410797953606, -0.03272203356027603, 0.03171083331108093, -0.013318321667611599, -0.0029333618003875017, -0.037691548466682434, 0.06242731586098671, 0.01899384893476963, -0.027788836508989334, 0.02358737401664257, 0.05352764576673508, -0.03686126321554184, -0.003878723131492734, -0.011553743854165077, 0.0002736118040047586, -0.022580690681934357, -0.055065810680389404, 0.04639897868037224, -0.0038199115078896284, -0.015593213960528374, 0.009967905469238758, 0.03656371682882309, -0.04107162728905678, 0.058311767876148224, -0.011420016176998615, 0.07636062055826187, -0.046715736389160156, -0.01999649964272976, 0.01800188608467579, 0.016368813812732697, -0.021160904318094254, -0.05282418429851532, 0.02059520035982132, 0.007198983803391457, -0.018817901611328125, 0.03939544036984444, -0.015957271680235863, -0.019851678982377052, 0.002577923471108079, -0.0169050469994545, 0.04445241391658783, -0.01039164699614048, 0.009918110445141792, 0.040944889187812805, -0.03955080360174179, -0.037887092679739, -0.026513321325182915, 0.018504856154322624, 0.002222230425104499, 0.01584688574075699, -0.07709098607301712, -0.015114032663404942, 0.020122550427913666, -0.009698937647044659, -0.017135968431830406, -0.045885439962148666, -0.052673500031232834, -0.018237804993987083, -0.02524707280099392, -0.02512923628091812, -0.04160052537918091, -0.0002048206515610218, 0.03789304569363594, 0.010251866653561592, -0.02825304865837097, 0.009964051656425, -0.01087662298232317, -0.013651702553033829, 0.009070339612662792, -0.04512732848525047, 0.030427053570747375, -0.029530784115195274, -0.0675300806760788, -0.030491795390844345, -0.005353241693228483, -0.020564107224345207, -0.00990839209407568, -0.00506851589307189, 0.008635466918349266, 0.010643658228218555, 0.02001979760825634, 0.008862367831170559, 0.006100842263549566, -0.02113877795636654, -0.03882553428411484, 0.032235510647296906, 0.04776768758893013, -0.012374389916658401, 0.04952822998166084, 0.0045633623376488686, -0.04696916788816452, 0.018064910545945168, -0.030410373583436012, -0.028836211189627647, 0.017831245437264442, 0.018651891499757767, 0.0057548354379832745, 0.01213518064469099, -0.030005576089024544, -0.01586918905377388, -0.02513716369867325, -0.04522043466567993, 0.01630980893969536, -0.02098376303911209, 0.013831004500389099, 0.011260787956416607, 0.0037841107696294785, -0.021867381408810616, 0.029733579605817795, -0.03080958127975464, 0.014465919695794582, 0.001790574169717729, -0.02070293202996254, 0.04075837880373001, 0.01650293730199337, 0.01585712842643261, 0.0015664700185880065, 0.021719688549637794, 0.01913457363843918, 0.01922488585114479, 0.019004808738827705, -0.04806011542677879, 0.018456969410181046, -0.008048240095376968, -0.02409018948674202, -0.044141389429569244, -0.008035967126488686, -0.026370791718363762, 0.03148449957370758, 0.01042679138481617, 0.01640259474515915, -0.005099988542497158, -0.03617759793996811, -0.046647924929857254, 0.008352933451533318, -0.06494202464818954, -0.027438674122095108, 0.04278848320245743, 0.005922044161707163, -0.021414346992969513, -0.0031127010006457567, -0.019850758835673332, -0.012013683095574379, -0.035438548773527145, -0.03750858083367348, -0.0333980955183506, 0.049676381051540375, -0.01722394861280918, 0.002337418030947447, 0.005224854219704866, 0.0023374338634312153, 0.02196766436100006, 0.04795445129275322, -0.021932102739810944, -0.04974331334233284, 0.009943808428943157, 0.02284187823534012, -0.016043679788708687, -0.0064137340523302555, -0.0032841984648257494, 0.007011281326413155, 0.010151827707886696, 0.04357035458087921, 0.026937264949083328, 0.03198754042387009, -0.020787714049220085, 0.022955594584345818, -0.019062984734773636, 0.0006811718922108412, -0.04788495972752571, 0.023765716701745987, -0.0031516794115304947, -0.032076578587293625, -0.024274345487356186, 0.03244694322347641, 0.026866082102060318, -0.012091417796909809, 0.024751747027039528, -0.0005786519031971693, 0.030104828998446465, -0.0005109122721478343, 0.039050180464982986, -0.021287519484758377, 0.027792317792773247, 0.049720399081707, 0.055875264108181, -0.008821643888950348, 0.020484182983636856, 0.06920096278190613, 0.010614261031150818, -0.02765626274049282, 0.03579609468579292, 0.004701694007962942, -0.031232893466949463, -0.0011877372162416577, 0.0018622417701408267, 0.012798264622688293, -0.0020330962724983692, -0.0024582091718912125, 0.0088110426440835, -0.030636534094810486, -0.007900363765656948, -0.03554394096136093, -0.005908268503844738, 0.04336358234286308, -0.01122299674898386, 0.008092858828604221, -0.00041283603059127927, -0.05186433345079422, 0.006392700597643852, 0.03819698467850685, 0.005334810819476843, -0.024800097569823265, 0.053459543734788895, 0.03530702367424965, -0.0025546494871377945, 0.026276975870132446, 0.027903225272893906, 0.012632157653570175, -0.06244383379817009, -0.026845941320061684, 0.001142771216109395, 0.005556066520512104, -0.02319115772843361, 0.011356119066476822, -0.062489140778779984, -0.0006282561807893217, -0.023304037749767303, -0.008874763734638691, 0.010477473959326744, -0.05499373376369476, 0.0358639694750309, -0.030936554074287415, 0.059046562761068344, -0.04399138689041138, -0.01226927898824215, 0.02778777852654457, -0.026291947811841965, -0.05190252512693405, 0.05009519308805466, 0.005297505296766758, 0.06392043083906174, 0.0007729174103587866, 0.04549074172973633, 0.024733928963541985, 0.058670081198215485, 0.04571108892560005, -0.036953575909137726, 0.020281312987208366, 0.022349758073687553, 0.0012412939686328173, -0.05133967101573944, 0.022249333560466766, -0.046646203845739365, -0.006531322840601206, -0.025589080527424812, -0.02470148354768753, -0.03170318156480789, 0.060805950313806534, -0.022505158558487892, -0.05091158300638199, 0.0071564847603440285, 0.04625706747174263, -0.02721121348440647, 0.040508806705474854, -0.006925680674612522, 0.042546771466732025, 0.02207607589662075, -0.021083155646920204, -0.011576779186725616, -0.039422571659088135, 0.00756843201816082, -0.04096002131700516, 0.02454822137951851, -0.006580876186490059, 0.0030257850885391235, -0.061952654272317886, -0.03534980118274689, -0.014522434212267399, -0.008675439283251762, -0.04193201661109924, -0.052221767604351044, 0.03669886663556099, 0.030644824728369713, 0.017998095601797104, -0.023356374353170395, -0.01537205372005701, 0.008569606579840183, 0.03474600985646248, 0.059971582144498825, -0.010631742887198925, 0.056159500032663345, 0.03476564213633537, -0.010332277044653893, 0.041909150779247284, 0.002573775826022029, 0.03510449826717377, -0.025643598288297653, -0.009930236265063286, -0.006363383494317532, 0.01863813027739525, -0.006970833521336317, -0.05518059432506561, 0.008053046651184559, 0.04745860397815704, -0.012095881626009941, -0.029585586860775948, -0.05598854273557663, -0.003927975427359343, -0.04822554439306259, -0.035008471459150314, -0.04013865441083908, -0.00007546736014774069, 0.03599781170487404, 0.0006593842408619821, 0.026764972135424614, -0.06604503840208054, 0.15907248854637146, 0.023689767345786095, 0.02998274192214012, 0.005327853374183178, 0.0472722053527832, 0.050594884902238846, 0.020414289087057114, 0.007488164585083723, -0.001758176484145224, -0.048330869525671005, 0.012133370153605938, -0.016848081722855568, 0.0009711733437143266, -0.01158662885427475, 0.01963804103434086, 0.049310628324747086, -0.03430047631263733, 0.016517706215381622, 0.0321243554353714, -0.030351964756846428, -0.03590582311153412, -0.01535764429718256, 0.02032320573925972, 0.04777069762349129, 0.00889493990689516, 0.008134869858622551, 0.012463935650885105, -0.05914881080389023, 0.011023920960724354, -0.0300484299659729, 0.03207221254706383, -0.034126196056604385, 0.04798194020986557, -0.02507348544895649, -0.05927813798189163, 0.040299613028764725, 0.005474579520523548, 0.006268109194934368, -0.01464120764285326, 0.02590162679553032, -0.014299523085355759, 0.012141380459070206, 0.039876509457826614, -0.03221333399415016, -0.0035231623332947493, 0.025430234149098396, -0.04769475385546684, 0.03200830519199371, 0.0024472642689943314, -0.017152637243270874, 0.036137815564870834, -0.03593643382191658, 0.05439957603812218, 0.003397335298359394, -0.02579730935394764, 0.02680087648332119, 0.02243955060839653, -0.018991762772202492, -0.019504709169268608, -0.005474673118442297, 0.032816141843795776, 0.015103337354958057, -0.03537857532501221, 0.012388968840241432, -0.018270760774612427, -0.015985747799277306, -0.02650233916938305, 0.036744117736816406, 0.004861935041844845, -0.020319296047091484, -0.007570597343146801, -0.018490852788090706, 0.009828926995396614, -0.03930995240807533, 0.06127016618847847, 0.02619667910039425, -0.016533955931663513, 0.04106610640883446, 0.030909603461623192, -0.020593658089637756, -0.004797002300620079, -0.05439789965748787, -0.020592106506228447, -0.006870359648019075, 0.03486807644367218, 0.03291846066713333, -0.0006815757951699197, -0.05052456632256508, -0.011934101581573486, 0.0511389784514904, 0.016188977286219597, 0.036684680730104446, -0.005697907414287329, 0.019007287919521332, -0.005585449282079935 ]
Die Liste von Sakralbauten in Rheinland-Pfalz umfasst die Kirchengebรคude, Moscheen, Synagogen, Tempel und รคhnliche Sakralbauten in Rheinland-Pfalz. Sie ist nach den Landkreisen und kreisfreien Stรคdten gegliedert. Liste Landkreis Ahrweiler Liste von Sakralbauten im Landkreis Ahrweiler Landkreis Altenkirchen Evangelische Pfarrkirche, Almersbach Neuapostolische Kirche Gemeinde Altenkirchen, Altenkirchen Katholische Pfarrkirche St. Ignatius, Betzdorf Evangelische Kirche, Birnbach Evangelische Pfarrkirche, Daaden Evangelische Pfarrkirche St. Michael, Flammersfeld Katholische Pfarrkirche St. Aloisius, Herdorf Katholische Pfarrkirche St. Petrus, Peterslahr Kloster Marienthal, Seelbach bei Hamm (Sieg) Landkreis Alzey-Worms Kleine Kirche, Alzey Nikolaikirche, Alzey Zum Heilgen Blut Christi, Armsheim St. Lambert; Bechtheim Simultankirche, Bechtolsheim Beller Kirche, Eckelsheim Simultankirche, Gau-Odernheim Evangelische Kirche, Wรถrrstadt, Stadtteil Rommersheim Laurentiuskirche, Wรถrrstadt Mennonitenkirche Monsheim Landkreis Bad Dรผrkheim Liste von Sakralbauten im Landkreis Bad Dรผrkheim Landkreis Bad Kreuznach Heilig-Kreuz-Kirche, Bad Kreuznach Nikolauskirche, Bad Kreuznach Pauluskirche, Bad Kreuznach St. Matthรคuskirche, Bad Sobernheim St. Matthiaskirche, Bad Sobernheim Eremitage, Bretzenheim Protestantische Kirche, Callbach Templerkommende Iben, Fรผrfeld Protestantische Kirche, Hochstรคtten Schlosskirche, Meisenheim Stiftskirche (Pfaffen-Schwabenheim) Evangelische Kirche, Roxheim Kloster Sankt Katharinen, Sankt Katharinen Pfarr- und Wallfahrtskirche Mariรค Himmelfahrt, Spabrรผcken Kloster Disibodenberg, Staudernheim Evangelische Bergkirche St. Peter, Waldbรถckelheim Evangelische Martinskirche, Waldlaubersheim Landkreis Bernkastel-Wittlich Kloster Himmerod Kloster Springiersbach St. Remigius (Krรถv) Grabkapelle Kesselstadt Landkreis Birkenfeld Felsenkirche (Idar-Oberstein) St. Peter und Paul (Idar-Oberstein) Landkreis Cochem-Zell Bergkapelle Alf, Alf Kloster Karmel St. Josef, Auderath Kloster Rosenthal, Binningen Kloster Stuben, Bremm Kloster Ebernach, Cochem, Stadtteil Sehl St. Pankratius, Kaisersesch Katholische Waldkapelle, Kaisersesch Wallfahrtskirche Mater Dolorosa, Lutzerath, Ortsteil Driesch Wallfahrtskirche Maria Martental, Leienkaul Schwanenkirche, Roes Kloster Maria Engelport, Treis-Karden St. Castor, Treis-Karden Donnersbergkreis Liste von Sakralbauten im Donnersbergkreis Eifelkreis Bitburg-Prรผm Katholische Pfarrkirche Liebfrauen zu Bitburg Katholische Filialkirche St. Nikolaus, Bitburg, Stadtteil Mรถtsch Katholische Mariรค-Himmelfahrt-Kirche, Bleialf Katholische Pfarrkirche St. Michael, Bollendorf Katholische Aloysiuskapelle, Daleiden Katholische Pfarrkirche Maria Kรถnigin, Dudeldorf Katholische Pfarrkirche St. Laurentius, Erdorf Katholische Filialkirche St. Johannes der Tรคufer, Gentingen Katholische Pfarrkirche St. Nikolaus, Neuerburg Katholische Filialkirche St. Dionysius, Niedersgegen Katholische Pfarrkirche St. Johannes Evangelist, Niederweis Abtei Prรผm, Prรผm Sankt-Salvator-Basilika, Prรผm Benediktinerinnenkloster Niederprรผm, Prรผm-Niederprรผm Katholische Filialkirche St. Nikolaus, Prรผmzurlay Wallfahrtskapelle Schankweiler Klause, Schankweiler Katholische Pfarrkirche St. Philippus und Jakobus, Speicher Alt St. Hubertus, Wolsfeld Frankenthal St. Cyriakus (Frankenthal-Eppstein) Dreifaltigkeitskirche (Frankenthal) Erkenbert-Ruine Mennonitenkirche Eppstein Zwรถlf-Apostel-Kirche (Frankenthal) Landkreis Germersheim Liste von Sakralbauten im Landkreis Germersheim Kaiserslautern Apostelkirche (Kaiserslautern) Christuskirche (Kaiserslautern) Evangelische Kirche (Siegelbach) Gelรถbniskirche Maria Schutz Unionskirche (Kaiserslautern) (bis 2018 Kleine Kirche) Marienkirche (Kaiserslautern) Martinskirche (Kaiserslautern) Rochuskapelle (Hohenecken) Stiftskirche (Kaiserslautern) St. Blasius (Mรถlschbach) St. Rochus (Hohenecken) Landkreis Kaiserslautern Abteikirche Otterberg, Otterberg St. Norbert, Enkenbach-Alsenborn Protestantische Kirche in Alsenborn, Enkenbach-Alsenborn Kloster Fischbach (Fischbach bei Kaiserslautern) Protestantische Kirche in Trippstadt, Trippstadt Schlosskirche (Neuhemsbach) Pfarrkirche Kollweiler Simultankirche St. Philipp und Jakob (Vogelbach) Mennonitenkirche Kรผhbรถrncheshof in Katzweiler-Kรผhbรถrncheshof Mennonitenkirche Sembach Mennonitisches Gemeindehaus Enkenbach in Enkenbach-Alsenborn St. Martin (Martinshรถhe) Alte Kapelle (Landstuhl) Evangelische Stadtkirche Landstuhl Blasiuskirche (Aschbacherhof) Mariรค Heimsuchung (Kindsbach/Pfalz) Mariรค Himmelfahrt (Otterbach) Koblenz Liste von Sakralbauten in Koblenz Landkreis Kusel Liste von Sakralbauten im Landkreis Kusel Landau in der Pfalz Katholische Kirche zum heiligen Kreuz Katholische Stadtpfarrkirche St. Maria Evangelische Stiftskirche St. Pirmin (Godramstein) Ludwigshafen am Rhein Liste von Sakralbauten in Ludwigshafen am Rhein Mainz Siehe: Liste von Sakralbauten in Mainz, Liste der Kapellen in Mainz Landkreis Mainz-Bingen Evangelische Pfarrkirche St. Peter, Bacharach Wernerkapelle, Bacharach St. Martin, Bingen am Rhein St. Gordianus und Epimachus, Bingen am Rhein, Stadtteil Dietersheim Wallfahrtskirche St. Rochus, auch Rochuskapelle, Bingen am Rhein Ehemaliges Kloster Rupertsberg, Bingen am Rhein Katholische Pfarrkirche St. Viktor, Guntersblum Evangelische Pfarrkirche, Guntersblum Katholische Pfarrkirche St. Remigius, Ingelheim am Rhein, Stadtteil Nieder-Ingelheim Evangelische Pfarrkirche, sogenannte Saalkirche, Ingelheim am Rhein, Stadtteil Nieder-Ingelheim Katholische Pfarrkirche St. Gereon, Nackenheim Katholische Pfarrkirche St. Michael, Ingelheim am Rhein, Stadtteil Ober-Ingelheim Evangelische Pfarrkirche, sogenannte Burgkirche, Ingelheim am Rhein, Stadtteil Ober-Ingelheim Ehemaliges Kloster Ingelheimerhausen, Ingelheim am Rhein Ehemaliges Kloster Engelthal, Ingelheim am Rhein, Stadtteil Ober-Ingelheim Evangelische Pfarrkirche St. Martin, Jugenheim in Rheinhessen Evangelische Pfarrkirche, auch Selztaldom, Ingelheim am Rhein, Stadtteil GroรŸwinternheim St. Mauritius (Oberdiebach) Kloster Jakobsberg, Ockenheim Katharinenkirche, Oppenheim โ†’ Siehe auch: Oppenheimer Sakralbauten Ehemalige Pfarrkirche St. Clemens, auch Clemenskapelle, Trechtingshausen Landkreis Mayen-Koblenz Liste von Sakralbauten im Landkreis Mayen-Koblenz Neustadt an der WeinstraรŸe Liste von Sakralbauten in Neustadt an der WeinstraรŸe Landkreis Neuwied Kloster Ehrenstein, Asbach (Westerwald) Katholische Pfarrkirche St. Johannes Baptist, Bruchhausen Evangelische Pfarrkirche, Dierdorf Katholische Pfarrkirche St. Clemens, Dierdorf Katholische Pfarrkirche St. Severinus, Erpel Katholische Pfarrkirche St. Bonifatius, GroรŸmaischeid Katholische Pfarrkirche St. Georg, Hammerstein, Ortsteil Oberhammerstein Katholische Pfarrkirche St. Walburgis, Leubsdorf Katholische Pfarrkirche St. Martin, Linz am Rhein Evangelische Marktkirche, Neuwied Katholische Pfarrkirche St. Matthias, Neuwied Mennonitenkirche, Neuwied Katholische Pfarrkirche St. Martin, Neuwied, Stadtteil Engers Evangelische Pfarrkirche, Neuwied, Stadtteil Engers Historische Feldkirche, Neuwied, Stadtteil Feldkirchen Katholische Pfarrkirche Maria Himmelfahrt, Neuwied, Stadtteil Gladbach Klosterkirche St. Peter, auch Wรผlfersberg-Kapelle, Neuwied, Stadtteil Gladbach Katholische Pfarrkirche St. Margaretha, Neuwied, Stadtteil Heimbach-Weis Abtei Rommersdorf, Neuwied, Stadtteil Heimbach-Weis Katholische Pfarrkirche St. Peter und Paul, Neuwied, Stadtteil Irlich Evangelische Kirche, Neuwied, Stadtteil Niederbieber Evangelische Kirche, Neuwied, Stadtteil Oberbieber Kloster St. Katharinen, Sankt Katharinen Evangelische Kirche, Raubach Katholische Pfarrkirche St. Pantaleon, Unkel Evangelische Kirche, Urbach (Westerwald) Kloster Marienhaus, Waldbreitbach St. Kastor (Rengsdorf) Pirmasens Liste von Sakralbauten in Pirmasens Rhein-Hunsrรผck-Kreis Katholische Pfarrkirche St. Severus, Boppard Karmeliterkirche und ehemaliges Karmeliterkloster, Boppard Ehemaliges Kloster Marienberg, Boppard Ehemaliges Franziskanerkloster, Boppard Ehemaliges Kloster St. Martin, Boppard Evangelische Christuskirche, Boppard Katholische Pfarrkirche St. Aegidius, Boppard, Ortsbezirk Bad Salzig Ehemalige katholische Kirche St. Sebastian, Boppard, Ortsbezirk Buchholz Katholische Pfarrkirche St. Pankratius, Boppard, Ortsbezirk Herschwiesen Katholische Pfarrkirche St. Bartholomรคus, Boppard, Ortsbezirk Hirzenach Evangelische Kirche, Boppard, Ortsbezirk Holzfeld Katholische Kirche St. Sebastian, Boppard, Ortsbezirk Rheinbay Katholische Kirche St. Peter in Ketten, Boppard, Ortsbezirk Weiler Simultankirche St. Antonius, Hahn Bartholomรคuskapelle, Korweiler Liebfrauenkirche, Oberwesel St. Martin (Oberwesel) Uter-Rosa-Kapelle, ehemalige Wernerkapelle, Oberwesel Kloster Ravengiersburg, Ravengiersburg Stiftskirche, Sankt Goar Wallfahrtskirche Nunkirche, Sargenroth Kirchenruine Hellkirch, Woppenroth Rhein-Lahn-Kreis Evangelische Pfarrkirche St. Kastor, Dausenau Stiftskirche St. Maria, Diez Kloster Dierstein, Diez Maria Empfรคngnis, Hahnstรคtten, Ortsteil Zollhaus Kloster Bornhofen, Kamp-Bornhofen Katholische Pfarrkirche St. Martin, Lahnstein Kloster Allerheiligenberg, Lahnstein Allerheiligenbergkapelle, Lahnstein Hospitalkapelle St. Jakobus, Lahnstein Katholische Johanniskirche, Lahnstein Kloster Arnstein, Obernhof Klosterruine Brunnenburg, Obernhof Klosterruine Bรคrbach, Schรถnborn Kloster Schรถnau, Strรผth Evangelische Kirche (Sankt Goarshausen) St. Johannes (Sankt Goarshausen) Rhein-Pfalz-Kreis Liste von Sakralbauten im Rhein-Pfalz-Kreis Speyer Allerheiligenstift (Speyer) Auferstehungskirche (Speyer) St. Bernhard (Speyer) Christuskirche (Speyer) Dreifaltigkeitskirche (Speyer) Gedรคchtniskirche der Protestation (Speyer) St. Joseph (Speyer) Speyerer Dom St. Bartholomรคus (Speyer) St. German (Speyer) St. Guido (Speyer) St. Jakob (Speyer) St. Johannes (Speyer) St. Konrad (Speyer) Kloster St. Magdalena (Speyer) St. Markus (Speyer) St. Moritz (Speyer) St. Peter (Speyer) Landkreis Sรผdliche WeinstraรŸe Liste von Sakralbauten im Landkreis Sรผdliche WeinstraรŸe Landkreis Sรผdwestpfalz St. Michael (Bobenthal) Evangelische Kirche (Battweiler) St. Laurentius (Contwig) St. Pirminius (Eppenbrunn) Ulrichskapelle (Fischbach bei Dahn) St. Martin (GroรŸbundenbach) Christkรถnig-Kirche (Hauenstein) Kloster Hornbach, Hornbach Protestantische Klosterkirche (Hornbach) St. Pirminius (Hornbach) St. Laurentius (Niederschlettenbach) Protestantische Kirche Nรผnschweiler Marienkirche (Rodalben) Christuskirche (Rumbach) Maria Kรถnigin der Engel (Stambach) Meisenbacher Kapelle St. Joseph (Waldfischbach) Trier Liste von Sakralbauten in Trier Landkreis Trier-Saarburg Mariรค Heimsuchung (Beurig) Kirche Sankt Maria, allerseligste Jungfrau, Aach, Ortsteil Hohensonne Evangelische Kirche Konz-Karthaus Katholische Pfarrkirche St. Ursula, Krettnach Evangelische Kirche (Saarburg) Landkreis Vulkaneifel Heyerbergkapelle, Borler Katholische Pfarrkirche St. Apollonia, Bodenbach Katholische Pfarrkirche St. Nikolaus, Daun Weinfelder Kirche, Daun Evangelische Erlรถserkirche, Gerolstein Katholische Filialkirche St. Quirinus, Gunderath Katholische Pfarrkirche St. Martin, Hillesheim Katholische Kapelle St. Donatus, Kelberg, Ortsteil Zermรผllen Katholische Kapelle St. Maria Magdalena, Kelberg, Ortsteil Hรผnerbach Katholische Kapelle St. Matthias, Kelberg, Ortsteil Kรถttelbach Katholische Pfarrkirche St. Vincentius und Nikolaus, Kelberg Katholische Kapelle auf dem Schwarzenberg, Kelberg Katholische Pfarrkirche St. Martin, Nohn Katholische Pfarrkirche St. Remaclus, Uersfeld Katholische Pfarrkirche St. Lucia, UeรŸ Katholische Pfarrkirche Mariรค Himmelfahrt, รœxheim Katholische Filialkirche St. Joseph, รœxheim, Ortsteil Ahรผtte Kloster Niederehe, รœxheim, Ortsteil Niederehe Katholische Pfarrkirche St. Chrysantius und Daria, Welcherath Katholische Erlรถserkirche, Wiesbaum, Ortsteil Mirbach Westerwaldkreis Evangelische Pfarrkirche, Alpenrod Evangelische Pfarrkirche, Alsbach Katholische Pfarrkirche St. Peter und Paul, Arzbach Katholische Pfarrkirche Mariรค Himmelfahrt, Bad Marienberg (Westerwald) Neuapostolische Kirche Gemeinde Bad Marienberg, Bad Marienberg Katholische Pfarrkirche Mariรค Himmelfahrt, Boden Evangelische Dreifaltigkeitskirche, Dreifelden Katholische Pfarrkirche Mariรค Himmelfahrt, Eitelborn Katholische Pfarrkirche St. Bartholomรคus und Sebastian, Gackenbach Alte Katholische Pfarrkirche St. Bartholomรคus und Sebastian, Gackenbach, Ortsteil Kirchรคhr Katholische Pfarrkirche St. Jacobus Maior, Girod Katholische Kirche St. Johannes, Guckheim Marienwaldkapelle, Guckheim Evangelische Pfarrkirche, Hachenburg, Stadtteil Altstadt Katholische Pfarrkirche Mariรค Himmelfahrt, Heilberscheid Katholische Pfarrkirche St. Petrus und Marcellinus, Heiligenroth Kath. Pfarrkirche Mariรค Heimsuchung, Hรถhn Evangelische Erlรถserkirche, Neuhรคusel Katholische Pfarrkirche St. Anna, Neuhรคusel Abtei Marienstatt, Streithausen Katholische Pfarrkirche St. Hubertus, Rennerod Wallfahrtskirche Unserer Lieben Frau vom Reichenstein, auch Liebfrauenkirche, Westerburg Worms Wormser Dom St. Amandus (Worms) Andreasstift (Worms) Bergkirche (Worms-Hochheim) St. Bonifatius (Worms-Abenheim) St. Bonifatius (Worms-Weinsheim) Cyriakuskapelle (Worms) Dreifaltigkeitskirche (Worms) Evangelische Kirche Worms-Heppenheim Evangelische Kirche Worms-Leiselheim Evangelische Kirche (Worms-Neuhausen) Evangelisches Gemeindehaus Pfeddersheim (ehemalige lutherische Kirche) Friedhofskapelle (Worms-Horchheim) Friedrichskirche (Worms) Heilig-Kreuz-Kirche (Worms-Horchheim) Gustav-Adolf-Kirche (Worms-Horchheim) Gottliebenkapelle Jesus-Christus-Kirche Worms-Pfiffligheim Klausenbergkapelle (Worms) Kloster Kirschgarten (Worms) Kloster Liebenau St. Laurentius (Worms-Leiselheim) Liebfrauenkirche (Worms) Lukaskirche (Worms) Lutherkirche (Worms) Magnuskirche (Worms) Matthรคuskirche (Worms) St. Maria Himmelskron (Worms-Hochheim) St. Martin (Worms) St. Martin (Worms-Wiesoppenheim) Mennonitenkirche Ibersheim St. Paulus (Worms) St. Peter (Worms-Herrnsheim) Simultankirche Worms-Pfeddersheim Simultankirche Worms-Rheindรผrkheim Zweibrรผcken Liste von Sakralbauten in Zweibrรผcken Siehe auch Liste der Kulturdenkmรคler in Rheinland-Pfalz Liste von Kriegsgrรคberstรคtten in Rheinland-Pfalz Liste der GroรŸsteingrรคber in Rheinland-Pfalz Weblinks Rheinland-Pfalz ! Sakralbauten in Rheinland-Pfalz
[ -0.030805282294750214, 0.007279001176357269, 0.02771819941699505, 0.028561370447278023, -0.022042900323867798, -0.02246813289821148, -0.0032111776527017355, 0.010151482187211514, 0.020578879863023758, 0.021892890334129333, 0.05521983280777931, -0.01890062913298607, 0.025563064962625504, -0.023388415575027466, -0.0023001031950116158, -0.00886597577482462, -0.006765852682292461, -0.034871578216552734, -0.022216878831386566, -0.003525267820805311, 0.004643245134502649, 0.002099292352795601, -0.06940840184688568, -0.022678930312395096, -0.02939181961119175, 0.0532802939414978, 0.019233714789152145, -0.010277809575200081, 0.04143673926591873, 0.06378161907196045, -0.005353754386305809, -0.07116082310676575, -0.0063390182331204414, -0.036585547029972076, -0.05181216076016426, -0.02959582209587097, 0.03702300414443016, -0.03467324748635292, -0.0033801160752773285, -0.0718570426106453, 0.007775321137160063, -0.05127294361591339, 0.033117327839136124, -0.03331293165683746, -0.03640202432870865, -0.002209349302574992, 0.00808111671358347, -0.01933368295431137, 0.0054719713516533375, -0.04927325248718262, 0.004353436641395092, 0.02311859093606472, 0.005286283325403929, 0.0193999744951725, 0.021152103319764137, 0.006093889940530062, 0.018620535731315613, -0.03799182549118996, -0.01834387332201004, 0.007212460972368717, 0.003388033015653491, 0.0025946160312741995, 0.028542211279273033, -0.03190561383962631, 0.026490982621908188, 0.022638460621237755, -0.00047502483357675374, 0.013060197234153748, 0.008789964951574802, -0.07149475067853928, 0.005039619281888008, -0.011837258003652096, -0.0038549103774130344, -0.051300693303346634, -0.009682311676442623, 0.0016799923032522202, -0.018022259697318077, 0.02160690352320671, 0.007052325643599033, 0.019721051678061485, 0.000322879379382357, 0.027957098558545113, 0.01476260181516409, 0.014982852153480053, -0.040670476853847504, -0.025025174021720886, -0.012837311252951622, 0.011879290454089642, 0.007224847096949816, 0.018687767907977104, -0.008144679479300976, 0.03872203081846237, 0.012772796675562859, -0.011312753893435001, 0.0494554303586483, 0.04716949164867401, -0.02261592447757721, 0.05069148540496826, 0.001510549453087151, 0.003394738771021366, 0.05368399620056152, 0.026414941996335983, -0.011371703818440437, 0.04053825885057449, -0.02650180086493492, -0.0024405592121183872, 0.005378603469580412, 0.027892444282770157, 0.011375979520380497, -0.039301805198192596, -0.00931796059012413, -0.016550768166780472, 0.017065035179257393, -0.016781676560640335, 0.023518476635217667, 0.033024128526449203, -0.033662304282188416, 0.014147168025374413, -0.028377192094922066, 0.01532716490328312, 0.017262402921915054, 0.0031313030049204826, 0.04997023940086365, 0.0015412286156788468, 0.017819195985794067, -0.02312115579843521, -0.0283233430236578, 0.062223050743341446, -0.015633966773748398, -0.0166143961250782, 0.0029276846908032894, -0.05859517678618431, -0.03293594717979431, 0.0252141784876585, -0.017366016283631325, 0.02126237377524376, -0.015120645053684711, 0.013195045292377472, 0.018153224140405655, -0.024320868775248528, 0.04196150228381157, 0.01416994258761406, -0.030365832149982452, 0.09184908866882324, -0.007031381130218506, 0.029805820435285568, -0.0011343141086399555, -0.020547103136777878, -0.042535167187452316, -0.006752660032361746, -0.05292680859565735, -0.0032672204542905092, 0.03597588464617729, 0.0060768648982048035, 0.026299839839339256, 0.018382132053375244, -0.01357955951243639, 0.007538666948676109, 0.01167207583785057, 0.024117207154631615, -0.0289863720536232, -0.001573404180817306, -0.0020923870615661144, 0.040678154677152634, -0.01636463962495327, 0.036622919142246246, -0.007469280622899532, 0.004519912879914045, -0.009722145274281502, -0.06702437251806259, 0.02211456000804901, 0.008983383886516094, 0.00559403607621789, 0.021485276520252228, 0.004583520814776421, 0.025189757347106934, 0.04712015762925148, 0.012302935123443604, 0.053724102675914764, 0.05621509626507759, -0.02889161929488182, 0.006513055879622698, -0.007051448803395033, 0.05177123099565506, 0.026260260492563248, -0.03381659835577011, -0.01153443194925785, -0.0316215455532074, -0.023787209764122963, -0.05080060660839081, 0.010837244801223278, 0.03670312836766243, -0.002284836955368519, 0.025538725778460503, -0.011035049334168434, 0.0012151084374636412, -0.032255567610263824, 0.03799222782254219, -0.008094840683043003, -0.041131652891635895, -0.035893652588129044, 0.03134988620877266, 0.001586842117831111, 0.03538976609706879, 0.020577186718583107, -0.0092729851603508, 0.04130598157644272, 0.03109907917678356, -0.027570493519306183, -0.013278658501803875, 0.04355921223759651, -0.003043001750484109, -0.03802431747317314, 0.007929537445306778, 0.013874639756977558, -0.02341870404779911, -0.0043782335706055164, 0.05083601176738739, -0.045405153185129166, -0.025458000600337982, 0.02724328823387623, 0.02038903534412384, 0.04311482235789299, 0.04853062331676483, -0.03019973263144493, -0.004193592816591263, -0.010074172168970108, 0.051238302141427994, -0.020288271829485893, -0.02030595764517784, -0.02758481539785862, 0.010044429451227188, 0.027163885533809662, 0.05780838429927826, 0.010631364770233631, 0.014527888968586922, 0.05395929142832756, 0.024059737101197243, -0.015302220359444618, 0.012368835508823395, -0.0025837025605142117, 0.017128141596913338, 0.04234106093645096, 0.03073418326675892, -0.025821687653660774, 0.02911137416958809, 0.0031835990957915783, -0.010311205871403217, -0.02180933766067028, 0.027798740193247795, 0.010558311827480793, 0.002581693697720766, -0.032686326652765274, 0.028872013092041016, -0.0493023581802845, -0.010194924660027027, 0.018192797899246216, 0.07104192674160004, -0.04250573366880417, 0.002970322733744979, -0.010908511467278004, 0.0124611034989357, 0.0038985556457191706, -0.0078003597445786, 0.032931096851825714, 0.04589463397860527, 0.04789640009403229, 0.019740477204322815, -0.006960944272577763, -0.03653475642204285, -0.02008836343884468, -0.04227739945054054, -0.019905121996998787, -0.03673892095685005, -0.06165149062871933, 0.0010905035305768251, 0.05202273279428482, -0.026360847055912018, 0.03955885022878647, 0.007201237604022026, 0.00022384784824680537, 0.0016354061663150787, -0.021045222878456116, 0.040529944002628326, 0.023052694275975227, 0.06307429820299149, -0.02150084264576435, 0.0357552133500576, -0.008111359551548958, 0.02761518582701683, -0.02406517043709755, -0.025981083512306213, -0.03235137462615967, -0.00903154443949461, 0.007824653759598732, 0.022002631798386574, 0.007932288572192192, -0.02272852696478367, -0.010621028952300549, -0.04939214885234833, -0.016059869900345802, 0.01458108238875866, -0.03800066187977791, -0.014648563228547573, -0.02812005579471588, 0.04652691259980202, 0.02803446538746357, -0.01367767620831728, 0.04720935598015785, 0.05011634901165962, -0.04351309686899185, 0.0645984634757042, 0.03784259036183357, 0.011731733568012714, -0.04376842826604843, 0.06017706170678139, 0.07268485426902771, 0.023628704249858856, -0.02978028543293476, 0.00729823624715209, -0.04627466946840286, 0.005092275328934193, 0.021483108401298523, -0.020595485344529152, -0.038362596184015274, 0.054686255753040314, 0.0008024957496672869, -0.06022454798221588, 0.03924048691987991, 0.015230944380164146, -0.057545389980077744, -0.05493505299091339, -0.031516678631305695, 0.019421996548771858, -0.0028019980527460575, 0.009474270045757294, -0.006136120297014713, -0.011118686757981777, 0.013856662437319756, 0.011231937445700169, 0.039932239800691605, -0.03275097534060478, 0.031715214252471924, 0.015870068222284317, 0.013536382466554642, 0.02641214430332184, 0.001420556684024632, -0.002380290301516652, 0.03519127890467644, -0.03128063678741455, 0.01874137669801712, 0.015404888428747654, 0.025323066860437393, 0.04007615149021149, 0.012137469835579395, 0.07928478717803955, -0.015476821921765804, 0.0043152496218681335, 0.02185605652630329, 0.03833795711398125, 0.053918980062007904, 0.012447882443666458, -0.0035698546562343836, -0.0011595716932788491, -0.018213855102658272, -0.04795840010046959, 0.013680494390428066, 0.01968243345618248, 0.054345399141311646, -0.07831957191228867, 0.07157529890537262, 0.013402874581515789, -0.020070182159543037, 0.044021714478731155, -0.03897255286574364, 0.006828976795077324, 0.040485281497240067, -0.00743725523352623, 0.05975867435336113, 0.02534054033458233, 0.011408102698624134, 0.017958227545022964, -0.013618318364024162, 0.010233045555651188, 0.02114572562277317, 0.019375277683138847, -0.007260405458509922, -0.0021861582063138485, -0.027907507494091988, -0.040976595133543015, -0.0017600780120119452, -0.025963537395000458, 0.01043885201215744, -0.005911422893404961, -0.04692036285996437, -0.056172531098127365, 0.05411296337842941, -0.004627823363989592, 0.033340271562337875, -0.02083965763449669, 0.013237698934972286, 0.017224576324224472, 0.024682234972715378, 0.039559680968523026, -0.019671719521284103, 0.02088308148086071, -0.044309377670288086, 0.0672469288110733, 0.0067949253134429455, 0.019482558593153954, -0.004700004123151302, 0.013822154141962528, -0.051876816898584366, 0.033549949526786804, 0.008196617476642132, -0.01861688867211342, -0.07734911143779755, 0.009733731858432293, -0.008725669234991074, -0.01719575934112072, 0.001980641856789589, -0.018893247470259666, 0.013190221972763538, 0.012089264579117298, 0.03421824797987938, -0.04115185886621475, -0.009738745167851448, -0.016028951853513718, 0.03848199173808098, 0.04951447248458862, -0.015712877735495567, -0.025751665234565735, -0.06719700247049332, -0.007177171763032675, -0.01946992054581642, -0.017439959570765495, 0.044071927666664124, -0.003919408190995455, -0.0077958484180271626, -0.034962959587574005, 0.007492804899811745, 0.019274920225143433, -0.005608562845736742, 0.004345368593931198, -0.01361850555986166, 0.016504190862178802, -0.016705261543393135, 0.04261050000786781, 0.00885439570993185, -0.023575402796268463, -0.01283222995698452, -0.06867673993110657, 0.00550908362492919, -0.0185177531093359, 0.01998971216380596, 0.021414829418063164, 0.017623452469706535, 0.00862670037895441, 0.01344346534460783, -0.016461987048387527, 0.007791957352310419, 0.013790426775813103, 0.0042000263929367065, -0.04434578865766525, -0.04000493884086609, 0.02262546308338642, -0.03561124950647354, -0.03098135255277157, 0.03803686052560806, 0.02443329431116581, -0.01903976872563362, -0.020524339750409126, 0.0600646510720253, -0.05338332802057266, 0.04497658833861351, -0.031407397240400314, 0.0213478934019804, -0.009459733963012695, -0.0324486643075943, 0.0317196287214756, -0.02166483737528324, -0.0042600794695317745, 0.0006576207815669477, -0.02167057804763317, -0.03978269174695015, -0.043684057891368866, -0.009113292209804058, 0.010291795246303082, -0.012230033986270428, 0.015760796144604683, 0.0032411504071205854, -0.013900953345000744, -0.0054459162056446075, -0.02465800940990448, 0.0069940644316375256, -0.02437566965818405, -0.030068229883909225, 0.04383079707622528, 0.009586658328771591, 0.022171566262841225, 0.0011591592337936163, 0.001842154422774911, -0.043189018964767456, -0.008494662120938301, 0.0112778190523386, 0.0039054439403116703, -0.03533993288874626, 0.01895650289952755, -0.011152938939630985, -0.007416539825499058, -0.03328843042254448, -0.004647597670555115, -0.007964646443724632, 0.011380470357835293, 0.007895145565271378, 0.0002010446332860738, 0.028799327090382576, 0.0051575470715761185, -0.02867329679429531, 0.05022595822811127, 0.03969479724764824, -0.06191784143447876, -0.002563793445006013, 0.02179012820124626, -0.011845136061310768, 0.040527474135160446, 0.0318257100880146, -0.01267983578145504, -0.06885875016450882, -0.07512955367565155, -0.01610673777759075, -0.06821854412555695, -0.0324116013944149, -0.03501996025443077, -0.016808515414595604, -0.03170216456055641, 0.02649294026196003, 0.008418467827141285, -0.04073096439242363, 0.001776081626303494, -0.03919241577386856, -0.01128041185438633, -0.03924916312098503, -0.057258240878582, -0.0267009437084198, 0.010987984947860241, -0.012869582511484623, 0.04072529450058937, 0.0014755657175555825, -0.00010121423110831529, -0.010544244199991226, 0.00945032387971878, 0.04366399347782135, -0.012808827683329582, -0.04521377384662628, -0.0429101288318634, -0.040406886488199234, -0.007104802876710892, -0.013374644331634045, 0.005707739386707544, -0.03415917977690697, 0.062330130487680435, -0.04789268225431442, 0.0003683447721414268, -0.024108367040753365, -0.029276007786393166, -0.019431551918387413, -0.021476181223988533, 0.026288524270057678, -0.008576150983572006, 0.019874900579452515, 0.017454514279961586, 0.06086817756295204, 0.01738523319363594, -0.00954541563987732, -0.03874799981713295, -0.028722232207655907, -0.05539977177977562, -0.04238952323794365, 0.03544793650507927, -0.019500812515616417, -0.03211794048547745, -0.013393891975283623, -0.024283451959490776, 0.058604512363672256, 0.011027922853827477, 0.020001625642180443, 0.047234516590833664, -0.01123165711760521, 0.01178688183426857, -0.013688253238797188, 0.027805885300040245, 0.030440330505371094, -0.01663125306367874, -0.021889468654990196, 0.0115585308521986, -0.017469938844442368, 0.05218076333403587, -0.019542692229151726, -0.0554627887904644, -0.08564173430204391, -0.012383760884404182, 0.06407196819782257, -0.015930471941828728, 0.05690133571624756, -0.013804695568978786, -0.06668807566165924, -0.04770297184586525, 0.047287557274103165, 0.004373419564217329, 0.0009395477245561779, 0.04175939783453941, -0.02674875780940056, 0.010074343532323837, 0.004354173317551613, 0.017562394961714745, 0.014068188145756721, -0.042234938591718674, 0.0366290807723999, -0.014029253274202347, -0.05779369920492172, 0.02560260333120823, 0.06260368973016739, -0.03859071061015129, -0.03144335374236107, -0.005797595251351595, 0.01715165376663208, 0.00029030628502368927, -0.028172718361020088, 0.018468251451849937, -0.00021388776076491922, -0.003507298184558749, 0.005012002307921648, 0.01604348234832287, -0.012939883396029472, 0.05598616227507591, 0.004066214431077242, 0.039451345801353455, -0.0177898108959198, 0.018701573833823204, 0.02173941396176815, -0.01639566197991371, -0.04895979166030884, -0.03699076920747757, -0.01842203363776207, 0.014078866690397263, -0.00268816901370883, 0.04839982092380524, 0.004845640156418085, 0.01924940012395382, 0.025239868089556694, -0.0020556950476020575, 0.040950898081064224, 0.009670449420809746, -0.021564992144703865, -0.004319062922149897, -0.021236194297671318, -0.06622116267681122, -0.027227047830820084, 0.020085111260414124, 0.012429388239979744, 0.07566651701927185, -0.025901446118950844, 0.013656305149197578, 0.07229027152061462, 0.010278847068548203, -0.006674481555819511, -0.04847924783825874, -0.023051179945468903, -0.04167991876602173, -0.030337251722812653, -0.03584283962845802, -0.02388140559196472, -0.029346751049160957, -0.00531436363235116, -0.0026524553541094065, -0.045529309660196304, 0.03142547234892845, 0.017905233427882195, -0.030428066849708557, 0.03776080161333084, -0.019853318110108376, -0.015894057229161263, -0.00903475284576416, -0.03720138967037201, -0.03637179359793663, 0.0032076409552246332, -0.008755704388022423, 0.010355806909501553, -0.0705377608537674, 0.01737653836607933, -0.0010744893224909902, 0.018088189885020256, 0.025641638785600662, 0.0057905432768166065, -0.017711861059069633, -0.05310121923685074, 0.005788544658571482, 0.008376714773476124, -0.006454023532569408, 0.030288517475128174, 0.019605262205004692, -0.0011701376643031836, 0.010435470379889011, -0.015038582496345043, 0.011815161444246769, 0.011749564670026302, 0.008427323773503304, 0.04252192750573158, -0.012557467445731163, -0.041739679872989655, -0.05312354117631912, -0.006214585620909929, -0.027466578409075737, 0.017434166744351387, -0.010219181887805462, 0.013375439681112766, -0.023894380778074265, -0.016697505488991737, 0.04309340566396713, 0.044344935566186905, 0.009859557263553143, -0.008213989436626434, -0.0056618982926011086, 0.01472491305321455, -0.02564457431435585, -0.026095064356923103, 0.018002446740865707, 0.03320300206542015, 0.02421230636537075, -0.024837641045451164, 0.022961867973208427, 0.028005395084619522, 0.006765299942344427, 0.014865671284496784, -0.03743079677224159, -0.034622691571712494, -0.047466062009334564, -0.043853435665369034, 0.026728738099336624, 0.033818792551755905, -0.005623694974929094, -0.005398864857852459, 0.007323086727410555, -0.019288210198283195, -0.045953504741191864, 0.03081197291612625, -0.08190447092056274, -0.03345080092549324, 0.050375912338495255, -0.011126285418868065, -0.009047509171068668, -0.022423511371016502, -0.05410471558570862, 0.013955745846033096, -0.018439989537000656, -0.007976595312356949, -0.014586595818400383, 0.028460970148444176, 0.019545113667845726, 0.04705357551574707, 0.01461603119969368, -0.012764954939484596, 0.02775323949754238, 0.0475887656211853, -0.04295126721262932, -0.04035687446594238, 0.012202260084450245, -0.009813590906560421, 0.010816799476742744, -0.0036332893650978804, 0.003679298795759678, -0.010683183558285236, -0.019960833713412285, -0.005748857744038105, 0.01975235901772976, 0.03093656152486801, -0.008224406279623508, 0.030004626139998436, -0.02736644633114338, -0.000040372357034357265, -0.05958680808544159, 0.03893720358610153, -0.015924278646707535, -0.03115869127213955, -0.029318397864699364, 0.057742390781641006, 0.052743468433618546, -0.024268807843327522, 0.04864445701241493, 0.02325322851538658, 0.0245512742549181, -0.010959945619106293, -0.0041113183833658695, -0.01588907465338707, 0.03359278663992882, 0.03226735070347786, 0.04505184665322304, 0.009249694645404816, 0.026877451688051224, 0.03551063686609268, 0.014326616190373898, -0.0023519822861999273, 0.0013601226964965463, 0.014859283342957497, -0.018833434209227562, 0.01070875208824873, -0.015276441350579262, 0.028509875759482384, 0.058106258511543274, -0.003288534702733159, 0.01972481608390808, -0.03604944795370102, 0.004991480614989996, 0.004955959040671587, -0.004616590216755867, 0.0476987361907959, -0.02972383238375187, 0.0056510246358811855, -0.00488952687010169, -0.035310812294483185, -0.005913803353905678, 0.02125573717057705, 0.011539749801158905, -0.024210229516029358, 0.06826423853635788, 0.05204545333981514, -0.02617817558348179, 0.05360216274857521, 0.01631397195160389, -0.003819328034296632, -0.0013567584101110697, 0.023879367858171463, 0.005198927596211433, -0.03895876556634903, -0.05071210488677025, -0.003325545694679022, -0.012984304688870907, 0.021244758740067482, -0.04782067984342575, -0.027247324585914612, 0.028203820809721947, -0.020044678822159767, -0.007169345393776894, -0.06415057927370071, 0.03620602935552597, -0.017700009047985077, 0.006161577068269253, 0.039146918803453445, 0.00025570689467713237, -0.022840024903416634, 0.06165620684623718, -0.00822366401553154, 0.01237496081739664, -0.0029078666120767593, 0.05263476446270943, -0.008069025352597237, 0.020747371017932892, 0.04313264042139053, -0.01563061960041523, -0.03016490489244461, 0.02113269455730915, 0.01058911345899105, -0.04219919070601463, -0.045401912182569504, -0.0394318588078022, 0.02334931120276451, -0.00481371721252799, -0.03803163021802902, -0.013142507523298264, 0.058081965893507004, 0.0008554027299396694, -0.07542695850133896, 0.0004068092966917902, 0.008801370859146118, -0.05274522677063942, 0.0050019770860672, 0.0058214846067130566, 0.05963245406746864, 0.021812129765748978, -0.03995269536972046, -0.017380453646183014, -0.024990422651171684, -0.011939916759729385, -0.043419595807790756, 0.04925372824072838, -0.038130324333906174, -0.005492759868502617, -0.03781826049089432, -0.051996245980262756, 0.005990602076053619, 0.006958614569157362, -0.01592637598514557, 0.0019054681761190295, 0.020641298964619637, 0.05201622471213341, 0.007457858417183161, 0.0220210961997509, -0.03124721348285675, 0.042417529970407486, 0.030551230534911156, 0.046260178089141846, 0.00691178860142827, 0.016746053472161293, 0.03110865317285061, -0.008814450353384018, 0.028382202610373497, -0.012058542110025883, 0.03042743168771267, 0.01156753208488226, -0.029661869630217552, -0.022394204512238503, 0.02433191053569317, -0.012410423718392849, -0.08682473003864288, 0.021634593605995178, 0.040094099938869476, -0.009380745701491833, -0.024420296773314476, -0.06308531016111374, -0.0022958500776439905, -0.05682186409831047, 0.026536118239164352, -0.05024637281894684, -0.01601569540798664, 0.013464218936860561, -0.022727120667696, 0.010393473319709301, -0.03818521648645401, 0.13755211234092712, 0.032506395131349564, 0.005426932591944933, 0.011210483498871326, 0.001847084960900247, 0.06887633353471756, 0.02658219262957573, -0.021602852270007133, -0.0020112809725105762, -0.026865655556321144, 0.019621537998318672, 0.020327087491750717, 0.01317031029611826, -0.0026072633918374777, 0.04165589436888695, 0.08767109364271164, -0.04615234583616257, 0.05210047587752342, 0.028889929875731468, -0.05781770870089531, -0.03622269257903099, 0.025271570309996605, 0.0017876930069178343, 0.017476240172982216, -0.005653425119817257, 0.027895862236618996, 0.032247159630060196, -0.035866279155015945, -0.01649622619152069, -0.05798487365245819, 0.005340296309441328, -0.07134208083152771, 0.0348445363342762, -0.024242272600531578, -0.038807209581136703, 0.026563366875052452, -0.026787692680954933, -0.02325713261961937, 0.012489895336329937, 0.002618561265990138, -0.02464425377547741, -0.011001171544194221, 0.0750051811337471, -0.05076773464679718, 0.050787314772605896, 0.034955646842718124, -0.05535722151398659, -0.01138677541166544, 0.017062058672308922, -0.024103403091430664, 0.06702146679162979, -0.040006671100854874, 0.01317353080958128, -0.014352140948176384, -0.04723837971687317, -0.004688397515565157, 0.024905428290367126, -0.03672323375940323, -0.0012270839652046561, -0.006942821200937033, 0.03714081645011902, 0.018141133710741997, -0.003296145936474204, 0.004810777027159929, -0.056084807962179184, 0.00023531987972091883, 0.009784753434360027, -0.02800643816590309, -0.0278604868799448, -0.003208773909136653, -0.026033077389001846, -0.029422882944345474, -0.022654760628938675, -0.02340931072831154, 0.009629609994590282, 0.02506832219660282, -0.0021597982849925756, 0.01544309500604868, 0.00785484816879034, -0.051659949123859406, 0.01934206485748291, -0.00891923438757658, 0.02496483363211155, -0.018850112333893776, 0.0358460508286953, 0.03876761719584465, -0.08559127151966095, -0.04458067566156387, -0.01724398136138916, 0.05785474181175232, 0.05687420070171356, 0.032095905393362045, -0.03612440079450607, -0.032472070306539536, -0.012231959030032158 ]
Published on December 13th, 2021 | by Andrew Bistak Paramount+ Media Alert: Paramount+ Debuts HALO First Look Trailer During The Game Awards. Coming Soon To Paramount+. During the eighth Annual Game Awards livestream, Paramount+ revealed the first look trailer for HALO, the service's highly anticipated upcoming original series based on the iconic Xbox franchise. HALO will launch on Paramount+ in the U.S. and in all international markets where the streaming service will be available in 2022. As a live-action series exclusively for Paramount+, HALO will take place in the universe that first came to be in 2001 with the launch of Xboxยฎ's first "Halo" game. Dramatizing an epic 26th-century conflict between humanity and an alien threat known as the Covenant, HALO the series will weave deeply drawn personal stories with action, adventure and a richly imagined vision of the future. The series stars Pablo Schreiber ("American Gods") as the Master Chief, Spartan-117; Natascha McElhone ("Californication") as Dr. Halsey, the brilliant, conflicted and inscrutable creator of the Spartan super soldiers; and Jen Taylor ("Halo" game series, RWBY) as Cortana, the most advanced AI in human history, and potentially the key to the survival of the human race. Additional stars include Bokeem Woodbine ("Fargo"), Shabana Azmi ("Fire"), Natasha Culzac ("The Witcher"), Olive Gray ("Half Moon Investigations"), Yerin Ha ("Reef Break"), Bentley Kalu ("Avengers: Age of Ultron"), Kate Kennedy ("Catastrophe"), Charlie Murphy ("Peaky Blinders") and Danny Sapani ("Penny Dreadful"). Also joining the cast as original characters are Ryan McParland ("6Degrees"), Burn Gorman ("The Expanse") and Fiona O'Shaughnessy ("Nina Forever"). "Halo" reinvented how people think about video games and has grown into a global entertainment phenomenon, having sold more than 82 million copies worldwide and grossing more than $6 billion in lifetime total sales revenue. HALO is produced by SHOWTIMEยฎ in partnership with 343 Industries, along with Amblin Television. HALO is executive produced by Steven Kane, alongside Steven Spielberg, Darryl Frank and Justin Falvey for Amblin Television in partnership with 343 Industries, director Otto Bathurst and Toby Leslie for One Big Picture, and Kyle Killen and Scott Pennington for Chapter Eleven. Kiki Wolfkill, Frank O'Connor and Bonnie Ross serve as executive producers for 343 Industries. Andrew Bistak When he's not trying to save the world, Andrew enjoys travel (although loathes turbulence), going to the movies, reading and being a dad to his two dogs (and now twins) with his wife.
[ -0.0005270998808555305, -0.0023740751203149557, -0.01863974891602993, 0.01966044493019581, 0.028054948896169662, 0.012827713042497635, -0.03206274285912514, 0.025860590860247612, 0.009254819713532925, -0.0077491397969424725, 0.034229788929224014, -0.010170605033636093, 0.0072462246753275394, -0.03522964194417, -0.01238513458520174, -0.008641727268695831, -0.017044011503458023, -0.017964163795113564, -0.014919813722372055, -0.018804065883159637, 0.010560726746916771, 0.012969906441867352, -0.07530059665441513, -0.054351966828107834, -0.04637494310736656, 0.047355614602565765, 0.012176829390227795, -0.02002119831740856, 0.06177198141813278, 0.033621031790971756, -0.006600020918995142, -0.05311814323067665, 0.0258276779204607, -0.04096662625670433, -0.02826479636132717, -0.014489725232124329, 0.05664890632033348, -0.02486187219619751, -0.04471178725361824, -0.07574018090963364, 0.03763351961970329, -0.009482533670961857, 0.028328949585556984, -0.04146086797118187, -0.03786033019423485, 0.013722156174480915, 0.013965235091745853, -0.022873837500810623, 0.02694237418472767, -0.018084105104207993, 0.0031442877370864153, -0.021098079159855843, 0.006671370472759008, 0.0021508100908249617, 0.007545460481196642, 0.010723749175667763, 0.02602609433233738, 0.012158633209764957, 0.0045579844154417515, 0.015442252159118652, 0.0201973095536232, -0.0008968684705905616, 0.011685527861118317, -0.05125001445412636, 0.018807582557201385, 0.002712621819227934, 0.017679451033473015, -0.02672935649752617, 0.03790298104286194, 0.02490111067891121, 0.005905999336391687, 0.02880060113966465, -0.029054364189505577, -0.00917005818337202, 0.00036156660644337535, 0.02169627510011196, -0.025175057351589203, -0.014398764818906784, 0.005417216569185257, -0.01679173670709133, 0.015542036853730679, 0.06908493489027023, 0.025709571316838264, 0.02180543728172779, -0.043826110661029816, -0.015440912917256355, -0.005235422868281603, 0.01694260723888874, -0.00864099059253931, -0.004019853193312883, 0.004085007589310408, 0.04505329579114914, 0.009001088328659534, -0.01006408128887415, 0.010657577775418758, 0.05287794768810272, -0.0037118270993232727, 0.026239238679409027, -0.01845335215330124, -0.00771703664213419, 0.03523483872413635, 0.05078648403286934, -0.022502684965729713, 0.06900762766599655, -0.042895592749118805, -0.018995782360434532, 0.0028816701378673315, -0.021201860159635544, 0.004496932961046696, -0.034567493945360184, 0.02046450413763523, -0.02001935802400112, 0.02336331456899643, -0.01431133970618248, -0.0028755697421729565, 0.035941388458013535, -0.015516001731157303, 0.031680285930633545, -0.040125440806150436, 0.012831457890570164, -0.0043810708448290825, 0.016827687621116638, 0.04961913079023361, -0.009159678593277931, 0.020032139495015144, -0.028307439759373665, 0.009336672723293304, 0.02625335566699505, -0.054314155131578445, -0.02630186639726162, 0.0022270334884524345, -0.05702098459005356, -0.0016120565123856068, 0.03180960938334465, -0.0009265102562494576, 0.0352308452129364, 0.024576473981142044, 0.030649030581116676, 0.032298311591148376, -0.0864085927605629, 0.04794720560312271, 0.027642305940389633, 0.00912740733474493, 0.09918871521949768, 0.02518288977444172, 0.025171903893351555, -0.02731640264391899, 0.00036583864130079746, -0.035828977823257446, 0.03167392313480377, -0.0424485057592392, 0.023759424686431885, -0.020698068663477898, 0.025813382118940353, -0.01053939200937748, -0.000690456188749522, -0.010058620013296604, 0.04246380180120468, 0.006093957461416721, 0.02799949049949646, -0.03475740924477577, 0.015121088363230228, 0.005411791615188122, 0.016628270968794823, -0.02582239732146263, 0.04305970296263695, -0.05101411044597626, -0.00613217381760478, -0.009757263585925102, -0.021797744557261467, 0.056439802050590515, -0.021871579810976982, -0.01939704827964306, 0.0060493736527860165, 0.007294266950339079, 0.023219550028443336, 0.03756806626915932, -0.02546069212257862, 0.04332273453474045, 0.02367478981614113, -0.017259014770388603, 0.0029364998918026686, -0.005651223007589579, 0.0822107195854187, 0.0008076727972365916, -0.02621058002114296, -0.013599379919469357, -0.041688334196805954, -0.04432962089776993, -0.02778199315071106, -0.011568969115614891, -0.012214167974889278, -0.0013845643261447549, 0.045955345034599304, 0.009504317305982113, 0.019860951229929924, -0.03240223228931427, -0.038882702589035034, -0.0012925831833854318, -0.039514414966106415, 0.02547016553580761, 0.04379584267735481, -0.027419211342930794, 0.022764507681131363, -0.03416489064693451, 0.0066102067939937115, 0.022098319604992867, 0.05490049347281456, -0.04040934145450592, 0.0074502406641840935, 0.019266534596681595, 0.01628298871219158, -0.015550305135548115, 0.022757893428206444, 0.022274022921919823, -0.0009687577257864177, -0.05541945993900299, 0.06922484189271927, -0.0272735133767128, 0.005162446293979883, 0.013744211755692959, 0.0010128035210072994, 0.029737697914242744, 0.04497387260198593, -0.009517543949186802, 0.021234583109617233, 0.02283511683344841, 0.040581438690423965, -0.03449086472392082, -0.05125362426042557, 0.02279033325612545, 0.035598721355199814, 0.012769115157425404, 0.07011343538761139, 0.020828288048505783, 0.012897809036076069, 0.032113078981637955, 0.022767260670661926, -0.009491045959293842, -0.007864405401051044, -0.010459108278155327, -0.02903108298778534, 0.04778105765581131, 0.05403837561607361, -0.01904073730111122, 0.02340535819530487, -0.00354228843934834, -0.032932765781879425, -0.012599245645105839, 0.022725842893123627, 0.025723524391651154, 0.015864601358771324, 0.016111213713884354, 0.013225100003182888, -0.06197819858789444, -0.0020706718787550926, 0.03591549023985863, 0.06805434823036194, -0.02527438849210739, 0.012791533954441547, -0.0207297932356596, 0.014207386411726475, -0.0015452130464836955, 0.016071690246462822, 0.003046179423108697, 0.025646457448601723, -0.02334209345281124, 0.01013147458434105, 0.004684177227318287, -0.06519046425819397, -0.04177083447575569, -0.05723477154970169, -0.04409721866250038, -0.031219061464071274, -0.04097481071949005, 0.01980450004339218, 0.046495500952005386, -0.0284065380692482, 0.01632288657128811, 0.012977187521755695, -0.022743940353393555, -0.016715211793780327, -0.0304569024592638, 0.029148463159799576, 0.03460095077753067, 0.021281758323311806, -0.050268590450286865, 0.036045655608177185, 0.0008048383751884103, 0.06576976180076599, -0.030515938997268677, 0.020861739292740822, 0.006726232822984457, -0.016205191612243652, 0.014141176827251911, -0.02790054678916931, -0.02405446581542492, -0.03449977934360504, -0.02579556591808796, -0.04354678839445114, 0.03493387997150421, -0.0002767498081084341, 0.021726811304688454, 0.019699078053236008, -0.03141361474990845, 0.027885226532816887, 0.041972093284130096, -0.04921901971101761, 0.04916354641318321, 0.030941210687160492, -0.05776139721274376, 0.059025511145591736, 0.009637272916734219, 0.02342975325882435, -0.04626503214240074, 0.05334450677037239, 0.04092704877257347, 0.021372415125370026, -0.021599004045128822, -0.023973513394594193, -0.031968604773283005, -0.02357061207294464, -0.013937871903181076, -0.03415342792868614, -0.056718870997428894, 0.03577765077352524, 0.01179623231291771, -0.07317011058330536, 0.041404884308576584, -0.06332520395517349, -0.051695067435503006, -0.031135475262999535, -0.05318506062030792, 0.03303417190909386, -0.0005207821959629655, 0.030760226771235466, 0.00982031412422657, -0.015113241039216518, -0.006109952926635742, 0.04216250032186508, 0.029420865699648857, -0.01731584407389164, 0.016478057950735092, 0.044484950602054596, -0.016015727072954178, 0.04061159864068031, 0.03772386908531189, -0.010021273978054523, -0.002176046371459961, 0.022476892918348312, -0.01691468246281147, 0.023200150579214096, 0.008711299858987331, 0.005938271526247263, 0.03200192749500275, 0.05221306160092354, -0.044219426810741425, 0.005337577313184738, 0.022331641986966133, -0.009740297682583332, 0.03228429704904556, 0.016863815486431122, 0.000421240198193118, -0.030976779758930206, -0.026967765763401985, -0.036995839327573776, 0.009531577117741108, 0.04046441614627838, 0.0379188135266304, -0.0583045594394207, 0.03381497412919998, 0.00037374842213466763, -0.04252482205629349, 0.04095563665032387, -0.06900294870138168, 0.03077443316578865, 0.04423726350069046, -0.05404636263847351, 0.04398346692323685, -0.047749023884534836, 0.032306820154190063, -0.021956518292427063, 0.010748499073088169, 0.04094057157635689, -0.016665583476424217, 0.039180826395750046, -0.017176512628793716, -0.003207822097465396, 0.010277663357555866, -0.012658568099141121, -0.001295007299631834, -0.06304173916578293, -0.010163180530071259, -0.022227637469768524, -0.06986206769943237, -0.04282887279987335, 0.027088265866041183, 0.07026398181915283, 0.06050572916865349, -0.010971194133162498, 0.05044609680771828, -0.03180953487753868, 0.006434344220906496, 0.024760384112596512, -0.01687507890164852, 0.024576712399721146, -0.05303497985005379, 0.041394125670194626, 0.0009647079859860241, -0.025670384988188744, -0.014273745007812977, -0.014948336407542229, -0.037887655198574066, 0.03532109037041664, -0.0029237261041998863, -0.02110391855239868, -0.03586055338382721, 0.01612136699259281, -0.02652912586927414, 0.019656604155898094, -0.011935031972825527, -0.02461070567369461, -0.014653532765805721, 0.036280639469623566, 0.026618052273988724, -0.049504563212394714, -0.011581283994019032, -0.033915963023900986, 0.06016910821199417, 0.03927042707800865, -0.02754899486899376, -0.02844441495835781, -0.028388654813170433, -0.045429158955812454, -0.006949978414922953, 0.025557739660143852, 0.024472618475556374, 0.0005120518035255373, 0.023297708481550217, -0.02641969732940197, 0.02665223553776741, 0.010248175822198391, -0.004788973834365606, -0.011430416256189346, 0.01411149837076664, -0.000013577308891399298, 0.02012542635202408, 0.049740370362997055, -0.02741270326077938, -0.023321833461523056, 0.03267627954483032, -0.03141592815518379, 0.037829235196113586, -0.00008540305134374648, -0.004816475789994001, 0.002094438998028636, 0.0012975868303328753, 0.014904549345374107, 0.03185445815324783, -0.007942981086671352, 0.005750754382461309, -0.03558754920959473, 0.038324400782585144, -0.05264037102460861, -0.026703519746661186, 0.05452047288417816, -0.014945094473659992, -0.016679782420396805, 0.003107956610620022, 0.04889873415231705, -0.010313666425645351, 0.025336503982543945, 0.013220956549048424, -0.037295855581760406, 0.028877630829811096, -0.03222506493330002, 0.0269364845007658, -0.030447302386164665, -0.008925816975533962, 0.0031902764458209276, -0.03389788046479225, 0.0295733492821455, -0.0033641604240983725, -0.004265988245606422, -0.06477297842502594, -0.04208417236804962, 0.006650897674262524, -0.002085514599457383, 0.0006423965678550303, 0.005087709054350853, -0.011812896467745304, -0.00467463955283165, -0.01804933324456215, -0.014150239527225494, -0.028509562835097313, -0.014740771614015102, -0.02591991238296032, 0.004394193645566702, -0.020379992201924324, -0.020427914336323738, -0.00042600175947882235, -0.03085904009640217, -0.021866239607334137, -0.0022719702683389187, -0.004132656380534172, -0.003199635073542595, -0.08430121093988419, -0.009214317426085472, -0.04645974561572075, 0.007723822258412838, -0.025037866085767746, 0.014928609132766724, -0.012671676464378834, 0.03844331577420235, 0.02216395176947117, 0.032872289419174194, -0.017096325755119324, -0.012270741164684296, -0.01041320338845253, 0.04803439974784851, 0.030956117436289787, -0.025605233386158943, -0.04069974273443222, 0.05892235413193703, -0.009343959391117096, 0.03751007467508316, -0.02904573455452919, -0.013880612328648567, -0.020233700051903725, 0.0007055256282910705, -0.005954951047897339, -0.021294934675097466, 0.007953100837767124, -0.03464008495211601, -0.03750200569629669, -0.004060433711856604, 0.0519525371491909, -0.0203718114644289, -0.04495425894856453, -0.004625206813216209, -0.03385702893137932, 0.022308411076664925, -0.044134169816970825, -0.04408358410000801, -0.012592693790793419, -0.02838403545320034, -0.011274504475295544, 0.03918630629777908, -0.003865784965455532, 0.02459041401743889, 0.015726270154118538, 0.042545661330223083, 0.008164644241333008, -0.011361630633473396, -0.02799151837825775, -0.023268431425094604, 0.005602281540632248, -0.005497093312442303, -0.01918250136077404, 0.03724467754364014, -0.02476884424686432, 0.02315828576683998, -0.018380600959062576, -0.039611559361219406, -0.009465971030294895, -0.0032014937605708838, 0.0034347756300121546, 0.010096647776663303, 0.05671745538711548, -0.02167569100856781, 0.011308669112622738, 0.010783836245536804, 0.04178881645202637, 0.07265518605709076, 0.006663253530859947, -0.008702697232365608, -0.02850867249071598, -0.019013574346899986, -0.047850776463747025, 0.03595592826604843, -0.052785724401474, -0.02508077397942543, -0.03734079375863075, -0.03697919845581055, 0.040041159838438034, -0.03371122479438782, 0.05048904940485954, 0.03699523210525513, -0.02231070213019848, 0.011376733891665936, -0.024668263271450996, -0.004766953643411398, 0.03767940029501915, 0.011398745700716972, -0.030110295861959457, 0.007127121556550264, -0.0035301619209349155, 0.003999496344476938, -0.06575590372085571, -0.0489703007042408, -0.07436267286539078, 0.020974595099687576, 0.0357808917760849, -0.018235228955745697, 0.038478873670101166, 0.010649080388247967, -0.04629509896039963, -0.05604077875614166, 0.0395231693983078, -0.018655825406312943, 0.008453989401459694, 0.028640422970056534, 0.045425914227962494, -0.04263199120759964, 0.01929483935236931, 0.020275752991437912, -0.004655495285987854, -0.039693091064691544, 0.05133397504687309, -0.008891796693205833, -0.019246479496359825, 0.042324576526880264, 0.05593308061361313, -0.06240689381957054, -0.06380206346511841, -0.020375650376081467, 0.010658820159733295, 0.01897633820772171, -0.04542692378163338, -0.01759571209549904, -0.005714676342904568, -0.00596323749050498, -0.023943869397044182, -0.0008413346949964762, 0.018748076632618904, 0.06130892038345337, -0.02332279644906521, 0.023519333451986313, -0.029952064156532288, 0.014203078113496304, 0.020811177790164948, -0.0034238980151712894, -0.04739736020565033, -0.03259623050689697, -0.019682863727211952, -0.016377728432416916, -0.0010088203707709908, 0.0185779370367527, -0.026443593204021454, 0.03198268637061119, 0.023567644879221916, -0.015150213614106178, 0.03353128209710121, -0.017108747735619545, -0.00822538509964943, 0.03147763013839722, -0.03749445825815201, -0.027380622923374176, -0.03620140254497528, 0.008416415192186832, -0.016880756244063377, 0.03717654198408127, -0.06209557503461838, -0.008159741759300232, 0.04872099682688713, -0.04034627601504326, 0.008183772675693035, -0.05547143146395683, -0.03339499607682228, -0.04637995362281799, -0.03997914120554924, 0.013313435949385166, -0.023018518462777138, -0.011568526737391949, 0.0311890821903944, 0.04040740430355072, -0.030874893069267273, -0.018894357606768608, -0.005415152758359909, 0.002785881981253624, 0.003288981504738331, -0.03442572429776192, 0.06473850458860397, -0.023811955004930496, -0.04484393447637558, -0.05442875251173973, -0.025453876703977585, -0.02783716283738613, 0.0008411171729676425, 0.005400651600211859, 0.01652543991804123, 0.029355114325881004, 0.015860123559832573, 0.008368315175175667, 0.018385300412774086, -0.038618262857198715, -0.049706995487213135, -0.013048350811004639, 0.059196773916482925, -0.0025718591641634703, 0.04996029660105705, 0.050036221742630005, -0.04910403862595558, 0.041201647371053696, 0.00106579321436584, -0.034812573343515396, -0.026003094390034676, 0.052686356008052826, 0.032691214233636856, 0.013257740996778011, -0.057049959897994995, -0.005819086916744709, -0.009870347566902637, -0.04982943832874298, 0.02463393658399582, 0.01624174416065216, 0.006187072955071926, 0.014021200127899647, -0.00783571507781744, -0.010359239764511585, 0.06741444766521454, 0.010903053916990757, 0.03823094442486763, 0.029121413826942444, 0.02229388989508152, 0.02458987757563591, -0.04754790663719177, -0.015742816030979156, 0.01854361966252327, 0.040016137063503265, -0.047757767140865326, 0.005960535258054733, 0.03487703204154968, 0.008367405273020267, 0.01605054922401905, -0.016079500317573547, -0.042129989713430405, -0.03950091078877449, -0.0035627842880785465, 0.005146177485585213, 0.023969506844878197, 0.0041329083032906055, 0.027481477707624435, 0.02259604074060917, -0.03248761221766472, -0.05687939003109932, -0.002526330528780818, -0.013294436037540436, -0.020466836169362068, 0.03812338411808014, -0.041099824011325836, -0.0002897348895203322, -0.0098450081422925, -0.019846010953187943, 0.006296453066170216, -0.015611770562827587, 0.02176177315413952, -0.03578696399927139, 0.05073070153594017, 0.012859947979450226, 0.043920084834098816, -0.023096386343240738, -0.06283661723136902, -0.016570784151554108, 0.06172335520386696, -0.041199471801519394, -0.036107514053583145, 0.0028093289583921432, 0.0021247605327516794, 0.011634709313511848, 0.008698035031557083, -0.02344922535121441, -0.003530846443027258, 0.01479197759181261, -0.000019624980268417858, -0.010385392233729362, 0.021180860698223114, 0.011080899275839329, 0.06896749138832092, -0.026574090123176575, 0.006806457415223122, 0.00908765010535717, 0.030378010123968124, 0.021150249987840652, -0.032496318221092224, -0.021933773532509804, 0.030835486948490143, 0.0626719519495964, -0.03771788254380226, 0.041780367493629456, 0.027972349897027016, 0.01107724104076624, -0.03111382946372032, 0.01668298803269863, 0.00864951778203249, 0.03397181257605553, 0.015670539811253548, 0.04705747961997986, -0.042812880128622055, 0.007961539551615715, 0.029705898836255074, -0.0049265301786363125, 0.0017467824509367347, 0.04514557868242264, 0.027318567037582397, -0.01765066757798195, 0.005940692499279976, -0.013595390133559704, 0.0013886329252272844, 0.0036456745583564043, -0.007960030809044838, -0.01645289734005928, -0.0319724977016449, -0.016497591510415077, -0.02969186194241047, -0.010186332277953625, 0.04219328984618187, -0.017959987744688988, 0.0165904201567173, -0.010249998420476913, 0.001708792056888342, 0.017163246870040894, 0.02785809338092804, 0.009964297525584698, 0.024413565173745155, 0.011651313863694668, 0.007906305603682995, -0.033960986882448196, 0.03940558061003685, 0.015737799927592278, 0.026960499584674835, -0.03646376356482506, 0.013015354983508587, 0.034577131271362305, -0.029364630579948425, -0.024163169786334038, 0.027368707582354546, -0.032764483243227005, 0.06398694217205048, -0.009299971163272858, -0.03619116544723511, 0.058088768273591995, -0.05560930445790291, -0.022103985771536827, -0.05746396258473396, 0.05662502720952034, -0.032862309366464615, -0.011114106513559818, 0.029061581939458847, 0.0023030501324683428, -0.024514326825737953, 0.04539105296134949, -0.00537900859490037, 0.04666396230459213, 0.013356804847717285, 0.048168789595365524, -0.00022394285770133138, 0.050172798335552216, 0.05084891989827156, -0.0021144484635442495, -0.022805169224739075, 0.014514915645122528, -0.02881704829633236, -0.04100533947348595, -0.0008481587283313274, -0.03194780647754669, 0.002436072565615177, -0.01120526622980833, 0.01747562363743782, -0.0020918059162795544, 0.047388117760419846, 0.00030848890310153365, -0.036774713546037674, 0.02621402032673359, 0.015185631811618805, -0.05097733810544014, -0.017318958416581154, 0.004824693314731121, 0.043486300855875015, -0.0031233562622219324, -0.006744293496012688, -0.038074977695941925, -0.04847738891839981, -0.00006746103463228792, -0.028427768498659134, 0.02139325812458992, -0.018412498757243156, 0.008813027292490005, -0.02081027254462242, -0.05479133501648903, -0.05241452157497406, -0.027695966884493828, -0.019760223105549812, -0.03479325771331787, 0.03284008428454399, 0.06808337569236755, 0.027106767520308495, 0.01837662234902382, -0.04386868327856064, 0.006777873728424311, 0.020873604342341423, 0.0668058916926384, -0.01558604184538126, 0.03346120938658714, 0.053381629288196564, 0.012250656262040138, 0.019753752276301384, -0.018808631226420403, 0.02099907211959362, -0.03947586566209793, -0.02142726071178913, -0.040410030633211136, 0.010455343872308731, -0.009957422502338886, -0.05881882086396217, 0.021231135353446007, 0.012203669175505638, 0.00016909420082811266, -0.03545859828591347, -0.06282316148281097, -0.020717550069093704, -0.03993469849228859, -0.018335387110710144, -0.027711838483810425, 0.024470508098602295, -0.009782961569726467, 0.02207709290087223, -0.018439803272485733, -0.05206979066133499, 0.14244858920574188, 0.052045788615942, 0.05679767206311226, 0.019131580367684364, 0.0460960790514946, 0.058009687811136246, 0.03185425326228142, -0.005618766415864229, 0.016543079167604446, -0.014591156505048275, 0.03206862881779671, 0.010900751687586308, 0.04209165275096893, 0.01166603434830904, 0.013877910561859608, 0.0722205713391304, -0.04949093610048294, 0.02961678057909012, 0.007782886270433664, -0.05503112077713013, -0.05974501371383667, -0.02020874246954918, 0.010497729294002056, -0.03032357431948185, -0.020231954753398895, 0.0024321647360920906, 0.05603896081447601, -0.009258639998733997, -0.011317006312310696, 0.0026024854741990566, -0.014563578180968761, 0.009402266703546047, 0.021402891725301743, -0.03628529608249664, -0.04697851836681366, 0.05325009301304817, 0.01768612675368786, -0.017154812812805176, 0.018426978960633278, 0.04152877628803253, -0.03130469471216202, 0.013064391911029816, 0.03141646832227707, -0.03028622642159462, 0.012180622667074203, -0.00692462082952261, -0.021499956026673317, -0.029977627098560333, 0.01141544058918953, -0.029721204191446304, 0.07209479063749313, -0.018188530579209328, 0.04062304645776749, -0.01949736475944519, -0.01102389208972454, 0.01190295722335577, -0.00796642154455185, 0.002980944700539112, -0.03159613534808159, 0.01053919643163681, 0.03558912128210068, 0.008057745173573494, -0.03604022040963173, -0.018236463889479637, -0.017450250685214996, 0.025460898876190186, 0.0263699758797884, 0.0254443921148777, 0.008368472568690777, -0.01868622936308384, -0.026839250698685646, -0.0030475619714707136, -0.024208147078752518, -0.01731298491358757, 0.029294151812791824, 0.0068802060559391975, 0.005103726405650377, 0.007468563504517078, 0.023822376504540443, -0.00738860247656703, -0.022592924535274506, -0.02313607558608055, -0.0050310599617660046, -0.0008553936495445669, 0.00353746279142797, -0.0009614338632673025, -0.008374609984457493, -0.030150920152664185, -0.022164374589920044, 0.04215533658862114, 0.014329313300549984, 0.03647429123520851, -0.025170478969812393, 0.01123064011335373, -0.0323239266872406 ]
Prosecuting Elder Abuse Cases: Basic Tools and Strategies addresses evidentiary matters and use of experts, highlighting lessons drawn from three successful prosecutions. An evidence checklist that outlines the types and sources of evidence that may be needed to build cases and prove elder abuse crimes is provided. Prosecuting Elder Abuse Cases: Proposed Performance Measures introduces eight measures that may be used by prosecutors to document activity and achieve more effective outcomes. It offers strategies for "flagging" elder abuse cases and provides logistics and tools required to collect, analyze and interpret each measure. Prosecution Guide to Effective Collaboration on Elder Abuse describes how prosecutors can provide leadership in multidisciplinary collaborations to more effectively identify and prosecute individual elder abuse cases as well as improve community responses and prevention efforts. It features examples of state and local collaboration and provides online resources. Identifying and Responding to Elder Abuse: A for Judges provides a template of strategies that courts can take to improve their response. The benchcard can be modified to reflect state statutes, court remediation and management tools, and local resources. The Legal Assistance Developer (LAD) plays a key role in ensuring that legal services are effectively provided to older persons with the greatest social and economic needs in each state. This summer, a two-part webinar series explored the key aspects of the LAD role and detailed how LADs can significantly strengthen their state's legal delivery system. In the first webinar, LAD 101, presenters explored the LAD role, including how LADs can target legal assistance to those who need it most and how to prioritize the most critical issues for legal help. In LAD 102, the presenters took a deeper dive into the LAD's role in developing Statewide Standards. Watch the LAD 101 webinar here, and the LAD 102 webinar here. The webinars are accompanied by an issue brief on State Standards and an issue brief on legal Capacity Assessments. Conducts research, policy development, advocacy, education, training, and through assistance to lawyers, bar associations, and other groups working on issues of aging, including elder rights and elder abuse prevention. Special areas of interest include Capacity Assessment, Dispute Resolution and Mediation, Elder Abuse, Equal Access to Justice, Ethics and Counseling Older Clients, Guardianship Law and Practice, Health Care Decision-Making, International Rights of Older Persons, Long-Term Services and Supports, Medicare, and Voting and Cognitive Impairments. National Alliance of Victims' Rights Attorneys & Advocates (NAVRA), Offers CLE trainings on crime victim advocacy.
[ -0.004096402321010828, 0.0017037817742675543, -0.023312054574489594, 0.03183601424098015, -0.030143216252326965, -0.024352604523301125, -0.013863282278180122, 0.021610373631119728, 0.014909216202795506, 0.05136510357260704, 0.016531694680452347, 0.0021702831145375967, 0.0029589072801172733, -0.02064930833876133, 0.016424138098955154, 0.005541585851460695, -0.03588176146149635, -0.010367041453719139, -0.005057089030742645, -0.010472873225808144, 0.03043549507856369, 0.014246881939470768, -0.03560810908675194, -0.034912437200546265, -0.024764513596892357, 0.012834364548325539, 0.01576320454478264, -0.0005316473543643951, 0.06911103427410126, 0.025077683851122856, -0.0347796268761158, -0.04588600993156433, 0.020612120628356934, -0.054914623498916626, -0.038174986839294434, -0.04271534085273743, 0.02039349637925625, -0.035742953419685364, -0.00935615599155426, -0.04274382442235947, 0.01011485792696476, -0.004181684460490942, 0.07860396057367325, -0.053137872368097305, -0.07986554503440857, -0.0000014430158898903755, -0.019588185474276543, -0.03297659009695053, 0.019237656146287918, -0.04778943955898285, 0.0055163041688501835, 0.007456714287400246, 0.030551182106137276, -0.00979974027723074, -0.006385240703821182, 0.004593916703015566, 0.021981073543429375, -0.034179333597421646, -0.01634378172457218, 0.03513040021061897, 0.03125971928238869, -0.00197318266145885, 0.005236159544438124, -0.07864329218864441, 0.005201030522584915, 0.03261063992977142, -0.001919546048156917, -0.01385250873863697, -0.018411092460155487, -0.01659577339887619, -0.006008567754179239, -0.009696666151285172, -0.024849576875567436, 0.009367427788674831, 0.004753208253532648, -0.0033751698210835457, -0.021313605830073357, -0.010750051587820053, 0.01512298546731472, 0.01707959733903408, 0.007868568412959576, 0.06306355446577072, 0.025186002254486084, 0.03589920327067375, -0.03726348280906677, -0.04420670494437218, -0.0120652224868536, 0.01658167690038681, 0.0059870462864637375, 0.016768604516983032, -0.013934757560491562, 0.056571219116449356, -0.008353864774107933, 0.006677781697362661, 0.03706113249063492, 0.03848962113261223, -0.045262571424245834, 0.036819834262132645, 0.023662110790610313, -0.006700611673295498, 0.043382011353969574, 0.029881631955504417, 0.004915406461805105, 0.05174927040934563, -0.054835472255945206, 0.012208888307213783, -0.005141362082213163, -0.030045870691537857, -0.0002652665716595948, -0.03497999906539917, -0.002898027189075947, -0.029198745265603065, 0.04882127419114113, 0.005369411315768957, -0.022945968434214592, 0.03247162327170372, 0.013912767171859741, 0.004261528607457876, -0.034254807978868484, 0.041545502841472626, 0.02671036869287491, -0.00441701477393508, 0.041634734719991684, -0.023623809218406677, 0.002128033433109522, -0.01419493742287159, -0.009302345104515553, 0.03737311810255051, -0.023192116990685463, -0.011954174377024174, 0.0067361872643232346, -0.03297656029462814, 0.0007437416352331638, 0.036193158477544785, 0.018314993008971214, 0.029338546097278595, 0.017342563718557358, 0.024192504584789276, 0.031154444441199303, -0.05863848328590393, 0.018955230712890625, 0.013206357136368752, -0.0003904016048181802, 0.075199656188488, 0.02862953580915928, 0.03863520547747612, -0.03857136890292168, 0.02058316580951214, -0.028710195794701576, 0.03686428815126419, -0.035605933517217636, 0.02207181043922901, 0.01795768178999424, 0.03718697279691696, 0.010205471888184547, -0.03887961059808731, 0.011661915108561516, -0.004106089938431978, 0.023801295086741447, 0.02059602551162243, -0.032755929976701736, -0.00684374151751399, -0.04723774641752243, 0.034435153007507324, -0.009031246416270733, 0.018447212874889374, -0.03334943205118179, -0.014840254560112953, 0.001771154929883778, -0.054320547729730606, 0.008241905830800533, -0.0011349034029990435, -0.028193466365337372, 0.0083674481138587, 0.03070140816271305, 0.024743612855672836, 0.05319163575768471, 0.0044494736939668655, 0.026698322966694832, 0.058855943381786346, -0.014408315531909466, -0.003134693717584014, -0.005043491721153259, 0.0596281923353672, 0.024390993639826775, -0.0008618200663477182, 0.021096359938383102, -0.029271917417645454, -0.05384451895952225, -0.03617168217897415, 0.0007682524155825377, 0.028189854696393013, -0.009899824857711792, 0.050990618765354156, 0.011638199910521507, 0.013052407652139664, -0.006684171035885811, 0.00019391838577575982, -0.0019066891400143504, -0.04659464955329895, -0.036333583295345306, 0.010665238834917545, -0.015480133704841137, -0.0042108832858502865, 0.00249725254252553, -0.020144835114479065, 0.03478015586733818, 0.03567098081111908, -0.05424266681075096, 0.0067092180252075195, 0.044987037777900696, 0.024972282350063324, 0.004729260224848986, -0.012729734182357788, 0.022529177367687225, -0.0064480844885110855, -0.037835292518138885, 0.043831925839185715, -0.011916711926460266, -0.007343178149312735, 0.0014873822219669819, 0.011593077331781387, 0.027484219521284103, 0.03541206195950508, -0.008404716849327087, -0.0487118735909462, 0.02430206723511219, 0.028294144198298454, -0.024022070690989494, -0.003571049775928259, 0.00947280041873455, 0.05249346047639847, 0.04289068281650543, 0.07306351512670517, 0.041475020349025726, 0.018185395747423172, 0.04030803591012955, 0.0495515912771225, -0.0020671351812779903, 0.01979360356926918, 0.0017139740521088243, -0.005692017264664173, 0.025164145976305008, 0.014908814802765846, -0.023264819756150246, 0.026851395145058632, -0.01765608973801136, 0.006560563109815121, -0.05093256011605263, 0.029436897486448288, -0.019463228061795235, 0.05176970735192299, 0.020964564755558968, 0.04218965396285057, -0.03307284787297249, 0.00430383300408721, 0.04257364198565483, 0.056652601808309555, -0.02950429357588291, -0.018714729696512222, 0.01082637533545494, 0.0004408022796269506, -0.015790989622473717, 0.011801518499851227, 0.016428697854280472, 0.015095620416104794, 0.012821190990507603, 0.02343582734465599, -0.036135487258434296, -0.04216383770108223, -0.05267580598592758, -0.0542050339281559, -0.046992916613817215, -0.022244567051529884, -0.053475044667720795, 0.005904432851821184, 0.002454664558172226, -0.0507105253636837, 0.010708548128604889, -0.031664539128541946, -0.007518275640904903, 0.0031414013355970383, -0.0181447584182024, 0.030312679708003998, 0.05392097309231758, 0.05389415845274925, -0.04837101325392723, 0.019972246140241623, 0.02240574173629284, 0.03848135843873024, -0.019971244037151337, 0.007223850581794977, -0.02431454509496689, -0.013769729062914848, 0.06321453303098679, -0.008223447017371655, -0.022141816094517708, -0.001051112893037498, -0.05817078799009323, -0.057847581803798676, 0.008468080312013626, -0.011819807812571526, 0.0023433074820786715, -0.00046946443035267293, -0.05539935082197189, 0.04596109315752983, 0.021685639396309853, -0.02632739208638668, 0.048842016607522964, 0.0401531457901001, -0.048789769411087036, 0.05482641980051994, 0.03316470980644226, -0.0006478016148321331, -0.052541185170412064, 0.07647892087697983, 0.020772796124219894, -0.034150540828704834, -0.012092840857803822, -0.033552996814250946, -0.018123671412467957, -0.013726217672228813, -0.0018779387464746833, -0.027829468250274658, -0.062147196382284164, 0.030320925638079643, 0.02089506760239601, -0.09296101331710815, 0.020251717418432236, -0.023444252088665962, -0.026328187435865402, -0.034544866532087326, -0.006395507138222456, -0.0035407422110438347, -0.01840605027973652, 0.016622452065348625, -0.02261798456311226, -0.03423396497964859, -0.007728238124400377, 0.02372113987803459, 0.056432221084833145, -0.04350753873586655, 0.032371796667575836, 0.022869722917675972, -0.012576106004416943, 0.007747927214950323, 0.006520644295960665, -0.012463388964533806, 0.00876429583877325, -0.0023942645639181137, -0.0016266219317913055, 0.025796150788664818, 0.03210156783461571, -0.033303871750831604, 0.03831493481993675, 0.05175163596868515, -0.0591796450316906, -0.033207885921001434, 0.012850191444158554, 0.03997229412198067, 0.02773173153400421, 0.009293854236602783, 0.0013184136478230357, -0.0062923431396484375, -0.03406158834695816, -0.022767554968595505, 0.04203709587454796, 0.004708291031420231, 0.041343431919813156, -0.059426505118608475, 0.05268743261694908, -0.00004786987119587138, -0.05069027841091156, 0.0563233457505703, -0.04620237648487091, -0.030865702778100967, 0.042949143797159195, 0.01060426328331232, 0.05607026070356369, -0.04158715158700943, 0.011425921693444252, 0.00342471688054502, 0.028020069003105164, 0.06486975401639938, -0.021344980224967003, 0.034000661224126816, -0.013736849650740623, -0.007417401298880577, -0.018127918243408203, 0.000537452579010278, -0.020594337955117226, -0.012608450837433338, 0.0117147546261549, -0.015435914508998394, -0.03613440319895744, -0.01757737249135971, 0.017333567142486572, 0.03133181482553482, 0.07075496762990952, -0.03226631507277489, 0.030958766117691994, 0.00952313281595707, 0.05694059282541275, 0.02894562855362892, -0.018343959003686905, -0.0029509796295315027, -0.053936634212732315, 0.03379936143755913, 0.005001414101570845, -0.02673277258872986, -0.006590088363736868, -0.021641619503498077, -0.017677631229162216, 0.038994200527668, 0.0060808975249528885, -0.025014230981469154, -0.022516589611768723, 0.023163504898548126, 0.0055279177613556385, 0.035492416471242905, -0.02884158119559288, -0.0004190035106148571, 0.016978196799755096, 0.022623635828495026, 0.046619903296232224, -0.028011346235871315, 0.001988326897844672, -0.05593280494213104, 0.06533128768205643, 0.03595547378063202, -0.01162297185510397, -0.02723706141114235, 0.005421081092208624, -0.010006907396018505, 0.013874744065105915, 0.029727190732955933, 0.01832289807498455, 0.024610739201307297, -0.010778002440929413, -0.026059025898575783, 0.029787464067339897, 0.010015018284320831, 0.02681352011859417, -0.01571783237159252, 0.020017730072140694, 0.00408136984333396, 0.01083095371723175, 0.01831136643886566, 0.015213198028504848, -0.02193954959511757, 0.0005429891753010452, -0.03595103323459625, 0.03712952509522438, -0.019794724881649017, -0.008798623457551003, 0.000010555722838034853, 0.043704304844141006, 0.019076937809586525, 0.034472331404685974, -0.0201703030616045, -0.020158492028713226, 0.0063816942274570465, -0.0022966437973082066, -0.041897933930158615, -0.02755540981888771, 0.02561269700527191, -0.03602764382958412, -0.017864519730210304, 0.04917934164404869, 0.015330213122069836, -0.048362065106630325, 0.01138629112392664, 0.0007731285877525806, -0.040145143866539, 0.021388506516814232, -0.023889726027846336, 0.0006110707181505859, 0.0071741072461009026, -0.045381251722574234, 0.023873910307884216, -0.02250230871140957, 0.04587140306830406, -0.0030139607843011618, -0.00931632798165083, -0.03470364585518837, -0.04237773269414902, -0.005868503823876381, 0.015705306082963943, -0.016201402992010117, -0.008213484659790993, -0.004014883190393448, -0.02505532093346119, -0.015918660908937454, -0.005040829535573721, -0.019166285172104836, 0.009692286141216755, -0.016951652243733406, -0.02047964558005333, -0.005397717002779245, 0.007326366845518351, 0.032155875116586685, -0.012735487893223763, -0.025862429291009903, -0.02717817947268486, -0.006302217021584511, -0.04473051801323891, -0.028373345732688904, 0.02779155597090721, -0.0279083214700222, 0.004201882518827915, -0.026452841237187386, 0.00946114119142294, -0.03565354272723198, 0.021499397233128548, 0.04712327942252159, 0.0002613646211102605, 0.04328756406903267, 0.012536208145320415, -0.05373113974928856, 0.05750322714447975, 0.04055311903357506, -0.046765584498643875, -0.025930972769856453, 0.023951945826411247, -0.03560744225978851, 0.03897465392947197, 0.003796597244217992, -0.019491583108901978, -0.03940536081790924, -0.05187510699033737, 0.01820850744843483, -0.051865704357624054, -0.04711262509226799, -0.04236146807670593, -0.007521260064095259, 0.007200366351753473, 0.04193799942731857, 0.016744758933782578, -0.0017351950518786907, -0.007177785970270634, -0.06901471316814423, 0.01665986329317093, -0.027668049558997154, -0.026280242949724197, -0.011043758131563663, -0.04503731057047844, 0.01941366121172905, 0.05967637524008751, 0.06959716230630875, 0.012738773599267006, -0.017813170328736305, -0.009401812218129635, 0.03204057365655899, -0.03064696304500103, -0.04042751342058182, -0.06368651241064072, 0.00918668508529663, 0.004334882367402315, -0.007257484830915928, -0.00505432253703475, -0.01589692384004593, 0.026366904377937317, -0.05292129889130592, 0.011333814822137356, 0.006468735169619322, -0.02357255294919014, -0.02927202545106411, -0.01834617368876934, 0.07286788523197174, -0.021299341693520546, 0.013214685022830963, -0.004286895040422678, 0.06053590029478073, 0.02874891459941864, 0.02110912837088108, -0.011776379309594631, -0.017582550644874573, -0.026757119223475456, -0.05604314059019089, 0.019718969240784645, -0.006175079848617315, 0.0028218289371579885, -0.03622658550739288, -0.03220135346055031, 0.024862190708518028, -0.0015025065513327718, 0.04612194374203682, 0.048988182097673416, -0.005030520260334015, -0.02420477196574211, -0.008900216780602932, 0.04860098659992218, 0.032701268792152405, -0.0326865017414093, -0.005838189739733934, -0.017025427892804146, -0.04285997897386551, -0.02772687003016472, -0.06993605941534042, -0.03695789352059364, -0.042185861617326736, 0.017041297629475594, 0.07197783887386322, -0.035110462456941605, 0.05916841700673103, -0.002203146694228053, -0.048147913068532944, -0.04025733470916748, 0.05015838146209717, -0.018425554037094116, 0.02731439098715782, 0.03827902674674988, -0.026007704436779022, -0.026191266253590584, 0.02901770919561386, -0.023796338587999344, 0.002317549893632531, -0.03454281762242317, 0.05539197102189064, 0.0005709528923034668, -0.04735701531171799, -0.0039032544009387493, 0.05504247173666954, -0.04498998075723648, -0.016127392649650574, 0.004827637225389481, 0.00670376792550087, -0.0032115448266267776, -0.04811495169997215, -0.00048474979121237993, 0.008664746768772602, 0.003109041368588805, 0.010070685297250748, 0.03722552955150604, -0.0164033155888319, 0.04032760113477707, -0.007206379901617765, 0.050638142973184586, -0.025477483868598938, -0.0028298483230173588, 0.001449838513508439, 0.022352421656250954, -0.029670938849449158, -0.0027094355318695307, -0.0029820934869349003, 0.015804175287485123, 0.028506333008408546, 0.056631650775671005, -0.040406484156847, -0.019827909767627716, 0.03328286483883858, 0.019448542967438698, 0.041779883205890656, 0.0006447400082834065, -0.020266976207494736, 0.0005923575954511762, -0.03271050378680229, -0.051016878336668015, -0.03448634594678879, 0.01347504835575819, 0.017413772642612457, 0.029187576845288277, -0.07453082501888275, -0.0028831451199948788, 0.0293857604265213, 0.030567197129130363, 0.022307366132736206, -0.07878477871417999, -0.06660089641809464, -0.05878438428044319, -0.03445131704211235, -0.007491289172321558, -0.019429422914981842, 0.0235296580940485, 0.0010406260844320059, 0.0003679814690258354, -0.07742594927549362, -0.013072516769170761, 0.038244832307100296, -0.03399493172764778, -0.0096941152587533, -0.04933007434010506, 0.05595121160149574, -0.03777836635708809, -0.05932755768299103, -0.02333960123360157, 0.031730566173791885, -0.012007039971649647, -0.0011776839382946491, -0.0036403529811650515, 0.009654008783400059, 0.014771850779652596, 0.03713192045688629, 0.012918664142489433, 0.02408480830490589, -0.025896867737174034, -0.03232349082827568, -0.023896489292383194, 0.039530206471681595, -0.0020131359342485666, 0.02130964957177639, 0.016972459852695465, -0.019225841388106346, 0.03594527021050453, -0.035305798053741455, -0.042807526886463165, -0.01041574589908123, 0.010741150006651878, -0.010376824997365475, -0.015431542880833149, -0.058817148208618164, -0.03790029510855675, -0.009391657076776028, -0.024311397224664688, 0.020782802253961563, -0.01363332662731409, -0.01343515980988741, -0.016772814095020294, -0.0024029093328863382, -0.01539909653365612, 0.0260304044932127, 0.0014177255798131227, 0.036771200597286224, -0.011865215376019478, 0.022545309737324715, 0.009670589119195938, 0.04100418463349342, 0.03833281248807907, 0.033687375485897064, 0.00828313734382391, 0.013316445052623749, 0.042845916002988815, 0.006092291325330734, -0.020113341510295868, 0.03656487539410591, -0.025273682549595833, -0.06970887631177902, -0.039488229900598526, -0.010393429547548294, 0.0015024567255750299, 0.053108569234609604, -0.027214230969548225, 0.008801634423434734, 0.0012989853275939822, 0.028264248743653297, -0.057424865663051605, 0.01718706078827381, -0.07438593357801437, -0.03658502921462059, 0.034629277884960175, -0.006135968025773764, -0.016116812825202942, -0.001571346540004015, -0.028584400191903114, -0.019967032596468925, -0.010088970884680748, 0.0046189213171601295, -0.034330423921346664, 0.030755793675780296, -0.017841868102550507, 0.05698559805750847, 0.0034627995919436216, 0.03412732481956482, 0.005591769237071276, 0.02526569366455078, -0.05372601002454758, -0.047267138957977295, -0.005199487321078777, 0.02619399130344391, 0.0011282163904979825, -0.02480444312095642, 0.0009710252052173018, 0.018670348450541496, -0.03952447697520256, 0.04889390990138054, 0.008722362108528614, 0.023467261344194412, 0.006565592251718044, 0.014162018895149231, -0.008564600721001625, 0.0147206149995327, -0.04309787601232529, 0.0305912084877491, -0.0011089949402958155, -0.0360233411192894, -0.029604317620396614, 0.03570077568292618, 0.004809393081814051, -0.027956843376159668, 0.046884357929229736, -0.005825181026011705, 0.04887839034199715, -0.016049493104219437, 0.001806681975722313, -0.011990022845566273, 0.05303217098116875, 0.05268426239490509, 0.019351396709680557, 0.005699660629034042, 0.021725589409470558, 0.054472241550683975, -0.004778550937771797, -0.011071957647800446, 0.03601522371172905, -0.0021862532012164593, -0.0028661207761615515, -0.016711631789803505, -0.04553018510341644, 0.017302842810750008, 0.03630618378520012, -0.012957422994077206, 0.024195751175284386, -0.04673033952713013, 0.010457277297973633, -0.04711609333753586, -0.051952894777059555, 0.06987490504980087, -0.04867599159479141, -0.002745680045336485, -0.0017378127668052912, 0.0014628453645855188, 0.009603351354598999, 0.04841894283890724, 0.03500094264745712, -0.00554220424965024, 0.04558328539133072, 0.05397739261388779, -0.024380061775445938, 0.017867153510451317, 0.0028655959758907557, 0.0258211400359869, -0.04244186729192734, -0.01939919963479042, 0.008097348734736443, 0.0018544214544817805, -0.03233450651168823, 0.01615816541016102, -0.00281584938056767, 0.03648633137345314, -0.005504890810698271, -0.010411679744720459, 0.051725711673498154, -0.06079380586743355, -0.009798763319849968, -0.011232351884245872, 0.0425824373960495, -0.015340900979936123, -0.03722786530852318, 0.04872036352753639, -0.0029241754673421383, 0.006105258595198393, 0.046153947710990906, -0.0014110103948041797, 0.0037419800646603107, 0.01240065973252058, 0.05359727516770363, -0.005847197491675615, 0.027857735753059387, 0.055283866822719574, -0.04865448549389839, -0.030370717868208885, 0.02255924791097641, -0.004538578446954489, -0.05892758443951607, -0.0455397292971611, -0.01515941135585308, -0.031696926802396774, -0.013061758130788803, -0.007612398825585842, -0.0024417925160378218, 0.03714614734053612, -0.01944708079099655, -0.040979668498039246, 0.01157253235578537, 0.04423230141401291, -0.05563530698418617, 0.02404416725039482, 0.023866504430770874, 0.019705774262547493, 0.005729301366955042, -0.017403241246938705, -0.0004130793095100671, -0.020498210564255714, -0.013314872980117798, -0.029629116877913475, 0.04894981160759926, 0.004920957610011101, -0.043747153133153915, -0.050929345190525055, -0.035137780010700226, 0.00219079595990479, -0.014484458602964878, -0.03508143872022629, -0.033615801483392715, 0.012966964393854141, 0.07020118832588196, 0.020401598885655403, 0.02267608791589737, -0.03171847015619278, 0.005541334860026836, 0.06121180206537247, 0.06882280111312866, 0.011869417503476143, 0.04469430074095726, 0.0408652238547802, 0.00359282991848886, 0.017249705269932747, -0.02505984716117382, 0.004455596674233675, -0.009320219978690147, -0.0171434935182333, -0.029958575963974, 0.017987925559282303, -0.008579071611166, -0.07078032195568085, -0.007105894852429628, 0.039908938109874725, 0.02057413011789322, -0.009843464009463787, -0.031468190252780914, 0.027986325323581696, -0.030032426118850708, -0.00695653073489666, -0.02115185745060444, 0.02029425837099552, -0.009667111560702324, -0.023527860641479492, -0.01836039312183857, -0.06136421114206314, 0.1473342627286911, 0.03214143589138985, 0.011200505308806896, -0.009434551000595093, -0.009042857214808464, 0.07417343556880951, 0.025268977507948875, -0.006681031547486782, -0.00626089982688427, -0.020346883684396744, 0.023782143369317055, -0.002311170566827059, 0.026021992787718773, -0.01724119298160076, 0.02455798350274563, 0.053355082869529724, -0.03248436376452446, -0.03032820299267769, 0.004864835646003485, -0.05136454477906227, -0.031388264149427414, 0.013126038014888763, -0.016505299136042595, 0.004452044609934092, 0.002997787669301033, 0.028155669569969177, 0.042581625282764435, -0.047629136592149734, 0.018009185791015625, -0.015346060506999493, 0.01155296340584755, -0.040121134370565414, 0.02537033148109913, -0.028356418013572693, -0.024608854204416275, 0.08026552945375443, 0.01197855919599533, -0.03840194642543793, -0.013850254006683826, 0.040166910737752914, -0.002234947867691517, 0.0013943454250693321, 0.02102619595825672, -0.0318981371819973, -0.007190041709691286, 0.053343262523412704, -0.040796976536512375, 0.012374531477689743, 0.03965570405125618, -0.03361322730779648, 0.036907825618982315, -0.05933411791920662, 0.006963573861867189, -0.010929813608527184, -0.03899300470948219, 0.012121790088713169, 0.01595240645110607, -0.02356600947678089, -0.02854430116713047, -0.014976046979427338, 0.04109085351228714, 0.02417825162410736, 0.00026379319024272263, 0.0037964731454849243, -0.012664513662457466, -0.009957862086594105, 0.03239696845412254, -0.01755017787218094, -0.011915810406208038, -0.0071844058111310005, -0.02017752267420292, -0.011390939354896545, -0.005793747957795858, -0.007434563245624304, 0.04860049486160278, 0.04538213089108467, -0.0003816625103354454, 0.029538117349147797, -0.01071243453770876, -0.039898574352264404, -0.012570790015161037, -0.01677829399704933, 0.005495891440659761, -0.007626518607139587, -0.0018493856769055128, 0.0592314675450325, -0.037674665451049805, -0.03144672513008118, -0.0247639212757349, 0.03872695192694664, 0.02781323343515396, -0.028560331091284752, -0.011822589673101902, -0.00042953676893375814, 0.004316967912018299 ]
How Fleetwood Mac Changed When Christine McVie Joined The Lineup By William Kennedy/Dec. 1, 2022 10:15 am EST After a brief illness, singer-songwriter Christine McVie died peacefully on November 30 at the age of 79, according to a post on behalf of the McVie family on her official Instagram account. The exact nature of the illness was not disclosed, though last June she told Rolling Stone she was in "quite bad health," especially plagued with debilitating back problems. McVie was in the hospital and surrounded by family when she died, the McVie family statement read (via CNN). Fleetwood Mac also confirmed the death of their bandmate on Twitter. Born in 1943, McVie, also a solo artist, was perhaps best known for her work with the English-American rock band Fleetwood Mac. McVie was married to Fleetwood Mac band member John McVie when she joined the already-established group in 1970. At that time, Fleetwood Mac was known for playing blues-rock music, and founding member Peter Green had just recently left the lineup, as Smooth Radio explains. With McVie in the band, Fleetwood Mac released "Rumours," one of the best-selling albums in history (per AllMusic). Only a matter of months before she died, the musician told The Guardian that her place in the band was far from assured, and her addition helped change the band's overall sound and direction. McVie played in a band called Chicken Shack before she joined Fleetwood Mac John Downing/Getty Images Born Christine Perfect, McVie (pictured) married Fleetwood Mac bassist John McVie in 1968. Her father was a college professor and concert violinist, and she was training to be a classical pianist, a career objective thoroughly derailed when she discovered American rock and roll, writes Rolling Stone. Early on in her career, she played in a British blues-rock band called Chicken Shack, with a sound not unlike early Fleetwood Mac. With that, Christine was a rare woman in a 1960s-era blues-rock music scene dominated for the most part by men, according to her 2022 interview with The Guardian. Of those early days, Christine said (via The Guardian), "there were very few women, especially playing the blues, but I never felt singled out." She continued, "It just all came very naturally to me when I was with Chicken Shack and things started happening for them. ... It just all fell into place and was really fantastic." Because of her connection to Chicken Shack and blues music, and her marriage to John McVie, Christine may have seemed a good fit when Peter Green left the group. According to Christine, though, when she was approached to play keyboards in the band, she felt the band's sound might have to change. Not long after she joined, Fleetwood Mac moved to the U.S. to begin their most successful pop era after two more musicians, Lindsay Buckingham and Stevie Nicks, joined the lineup (via Britannica). Chicken Shack opened for Fleetwood Mac As McVie went on to explain in her 2022 Guardian interview, her early band Chicken Shack opened for Fleetwood Mac, and one day after Peter Green left, the band was rehearsing in their U.K. practice space as McVie socialized with the wives of other band members. As McVie recalled, the band emerged from their rehearsal room and said, "'Hey Chris, do you want to join?' I couldn't believe my luck," McVie said. "Are you serious?!" she responded. "I'm just a girl who plays piano ... The style had to change because I was a keyboard player," McVie continued, and as a result, the music "developed a more commercial bent. It was thrilling, and I have to say to this day it still kind of is, knowing that I did that," McVie said. In 2020, Fleetwood Mac founding member Mick Fleetwood also remembered his band's transformation during this time period, speaking with Ultimate-Guitar.com. "โ€‹โ€‹(W)e sort of disappeared. And then we went to America and came back sometime later with a very different lineup," Fleetwood said, and as result, fans responded, "Oh my God, it's a different band!' But for me and John (McVie, bass) and Christine (McVie, vocals and keyboards) to some large extent, we just morphed our way without really realizing we were changing that much because we were just carrying on undercover in a different country," Fleetwood added. According to Smooth Radio, Christine and John McVie divorced in 1976 but continued to perform in Fleetwood Mac together.
[ -0.018438022583723068, -0.01095572765916586, -0.014926167204976082, -0.004163527395576239, 0.0016095653409138322, -0.01389175932854414, -0.015107812359929085, 0.013497192412614822, 0.0056860679760575294, 0.020014144480228424, 0.06677345186471939, -0.045548468828201294, 0.02409541793167591, -0.04314007982611656, -0.04190446436405182, 0.015748851001262665, -0.02205946482717991, -0.02087058499455452, -0.01344015821814537, 0.009763246402144432, 0.029927190393209457, -0.006785093806684017, -0.04772644862532616, 0.0016387749928981066, -0.03733150288462639, 0.06734190881252289, 0.03317444771528244, 0.00779536459594965, 0.054120615124702454, 0.033501192927360535, -0.03845664858818054, -0.038695212453603745, 0.042343053966760635, -0.04407034069299698, -0.005638173781335354, -0.02879653498530388, 0.030777178704738617, -0.03677063435316086, -0.035973962396383286, -0.05447528138756752, 0.01735624670982361, -0.04051836580038071, 0.030228950083255768, -0.03887558355927467, -0.03010573983192444, -0.004290903452783823, -0.0024195241276174784, -0.01949060894548893, 0.020723575726151466, -0.0195425134152174, 0.008036811836063862, -0.02975326031446457, 0.04719991236925125, 0.001890847459435463, 0.01515329722315073, 0.02094298042356968, -0.00507028354331851, -0.02461416833102703, -0.012356208637356758, 0.018282417207956314, 0.020184801891446114, -0.020994707942008972, 0.02130281925201416, -0.07523787021636963, 0.02190995030105114, 0.034111108630895615, -0.002902053762227297, -0.03963247314095497, 0.007670768070966005, -0.022055204957723618, 0.004357465077191591, -0.006525110453367233, -0.05082564055919647, -0.03216278553009033, -0.0030185887590050697, -0.0014625010080635548, -0.010295369662344456, 0.010616501793265343, -0.02465411275625229, -0.0098724951967597, 0.008504681289196014, 0.06723745167255402, 0.0023209487553685904, 0.036788977682590485, -0.08423547446727753, -0.015355824492871761, -0.0529189370572567, 0.01708126813173294, -0.007506984286010265, 0.009764831513166428, 0.005797635298222303, 0.07028131932020187, 0.010266232304275036, -0.021846868097782135, 0.030556200072169304, 0.04992831125855446, -0.043744031339883804, -0.004689808003604412, -0.018999895080924034, 0.014601272530853748, 0.04191136360168457, 0.023090453818440437, 0.00007016817107796669, 0.03612858057022095, -0.06581731140613556, -0.014308751560747623, 0.02296208217740059, 0.0016477818135172129, 0.011447574943304062, -0.04672113433480263, 0.012319459579885006, -0.03583671152591705, 0.05120909959077835, 0.031482912600040436, 0.017361313104629517, 0.021598858758807182, 0.021012311801314354, 0.06348375231027603, -0.03049434721469879, 0.0023555175866931677, 0.036656755954027176, 0.02815372310578823, 0.039047278463840485, -0.04155559837818146, 0.011712564155459404, -0.02657124027609825, -0.04779845476150513, 0.0766131803393364, -0.01547294668853283, -0.01764105260372162, 0.024360105395317078, -0.05412768945097923, 0.003369178157299757, 0.00914657860994339, 0.01561677735298872, 0.0073999278247356415, -0.005583083722740412, 0.03191876411437988, 0.003524411004036665, -0.08376798778772354, 0.058830030262470245, 0.022155648097395897, -0.014060172252357006, 0.08232180774211884, 0.008432340808212757, 0.04785868152976036, -0.020236734300851822, -0.03127431496977806, -0.02145104482769966, 0.012127415277063847, -0.044988855719566345, 0.04374999180436134, 0.0026475396007299423, 0.02157001569867134, 0.015361831523478031, 0.04243382811546326, -0.027819644659757614, 0.01273680292069912, 0.005229592323303223, 0.030268067494034767, -0.04058083891868591, -0.01251627504825592, 0.04999501258134842, 0.041813626885414124, -0.04035518690943718, 0.0071394843980669975, -0.023757005110383034, -0.005580003838986158, -0.007567349821329117, -0.04250076785683632, 0.027413804084062576, 0.005610065534710884, -0.030419858172535896, 0.0063035814091563225, 0.01098527293652296, 0.031183788552880287, 0.05514413118362427, -0.04330150783061981, 0.028138283640146255, 0.020944463089108467, -0.06268499046564102, -0.005114269908517599, 0.021857041865587234, 0.028919700533151627, 0.00045037196832709014, -0.027063466608524323, -0.0008959227125160396, -0.026527535170316696, -0.043765947222709656, -0.019336961209774017, -0.008214832283556461, 0.02009422332048416, -0.04769781231880188, 0.01950875110924244, 0.004700696561485529, -0.0008937586098909378, -0.007099745329469442, -0.013842214830219746, 0.014820202253758907, -0.02334981970489025, -0.00962029118090868, 0.038758471608161926, -0.024882324039936066, 0.0355023629963398, 0.028415847569704056, -0.059338029474020004, 0.019806422293186188, 0.06186792254447937, -0.054136715829372406, 0.014979011379182339, 0.040774788707494736, -0.006410154514014721, -0.006133121903985739, -0.03702240809798241, -0.005432967562228441, -0.015374385751783848, 0.0014658496947959065, 0.06695347279310226, -0.01989658549427986, 0.005056515336036682, 0.03548915684223175, 0.015911906957626343, 0.05158676207065582, 0.024294961243867874, -0.006716945208609104, 0.015673300251364708, 0.008163999766111374, 0.019609784707427025, -0.030472906306385994, -0.035225339233875275, -0.016291167587041855, 0.033508267253637314, 0.026622969657182693, 0.07874173671007156, 0.03743855282664299, -0.0011637348216027021, 0.048078764230012894, 0.036566346883773804, -0.007351920008659363, 0.019963456317782402, -0.012421258725225925, 0.000526683172211051, 0.039469823241233826, 0.028619913384318352, -0.009037408977746964, 0.029321609064936638, 0.010720895603299141, -0.011986063793301582, 0.020168185234069824, 0.036356471478939056, 0.027562936767935753, 0.07112915068864822, 0.026778047904372215, 0.02423805743455887, -0.020617112517356873, 0.0307011678814888, 0.028047965839505196, 0.046009235084056854, -0.009962148033082485, 0.014906289055943489, 0.0002502739371266216, 0.012791979126632214, -0.03800695389509201, 0.0004969630972482264, 0.030551716685295105, 0.019326036795973778, -0.03228071331977844, 0.046777691692113876, -0.008757091127336025, -0.045278191566467285, -0.013237429782748222, -0.03914399817585945, -0.0021404274739325047, -0.043313466012477875, -0.039679039269685745, 0.02116060070693493, 0.03372945263981819, -0.01162792555987835, 0.022597182542085648, 0.016885437071323395, -0.02039947174489498, -0.019617261365056038, -0.02044922672212124, 0.03924562782049179, 0.018973199650645256, 0.048266153782606125, -0.06255315989255905, 0.05151789262890816, -0.02028617262840271, 0.04901663959026337, -0.0038496737834066153, -0.026979180052876472, -0.00807820726186037, -0.028076810762286186, 0.04590669274330139, -0.029664766043424606, -0.018340976908802986, 0.00046446442138403654, -0.045247409492731094, -0.053659964352846146, 0.02150995470583439, 0.02970767393708229, 0.02546215057373047, 0.010360573418438435, -0.038324106484651566, 0.04783758893609047, 0.00613982742652297, -0.04354707524180412, 0.041401077061891556, 0.05276992917060852, -0.04617319256067276, 0.045491717755794525, 0.06326659023761749, 0.0057176267728209496, -0.03403022512793541, 0.025965692475438118, 0.05617312341928482, -0.006548890378326178, -0.030653370544314384, 0.011813866905868053, -0.012273314408957958, -0.0063729844987392426, -0.005705234128981829, 0.001545008854009211, -0.06401482224464417, 0.042796436697244644, -0.0054825181141495705, -0.05170019343495369, 0.0019998704083263874, -0.023593805730342865, -0.01278419978916645, -0.004656227305531502, -0.039126280695199966, 0.04112961143255234, 0.033218130469322205, 0.017053423449397087, 0.01262971106916666, -0.010639705695211887, 0.005047873593866825, 0.05786387249827385, 0.030219128355383873, -0.04092011600732803, 0.0375119149684906, 0.03547022491693497, -0.008982731960713863, -0.0011308254906907678, 0.008170321583747864, -0.006158995907753706, -0.05230934917926788, 0.01970142126083374, -0.002207043580710888, 0.007681021932512522, 0.04701115936040878, -0.013402682729065418, 0.000844845431856811, 0.04573442414402962, -0.011696740984916687, -0.04053497686982155, 0.0014866671990603209, -0.006170570384711027, 0.026322778314352036, -0.020987799391150475, -0.015978140756487846, 0.00149701745249331, -0.03352420777082443, -0.04313516616821289, 0.02003513090312481, -0.01525466050952673, 0.04894200339913368, -0.04897630959749222, 0.056879982352256775, 0.011149483732879162, -0.02557387761771679, 0.05537894740700722, -0.05186981335282326, 0.01977706141769886, 0.0687471255660057, -0.0014113360084593296, 0.036746446043252945, -0.03237949684262276, 0.02966224029660225, -0.061901483684778214, 0.01225327979773283, 0.03980547562241554, -0.018143678084015846, -0.0009071421227417886, -0.04335794970393181, -0.042103201150894165, -0.005330216139554977, -0.02071232721209526, -0.027808357030153275, -0.03840315341949463, 0.0007717771804891527, 0.00418109493330121, -0.03387373685836792, -0.03277518227696419, 0.030850473791360855, 0.04891069233417511, 0.023851020261645317, 0.012747366912662983, 0.04873892292380333, 0.026417532935738564, 0.018512796610593796, 0.017302628606557846, -0.01149123813956976, 0.006824845913797617, -0.05352619290351868, 0.022494301199913025, 0.0003668111457955092, -0.012400214560329914, -0.026021242141723633, -0.009727527387440205, -0.040280651301145554, 0.035138171166181564, 0.007967456243932247, -0.03595910966396332, -0.036448460072278976, 0.008601534180343151, -0.04811979457736015, -0.013005676679313183, -0.057066816836595535, -0.02348041906952858, -0.013512627221643925, 0.01017451286315918, 0.023276392370462418, -0.05163347348570824, 0.028133699670433998, -0.0715281292796135, 0.07453787326812744, 0.005869138985872269, -0.006381676997989416, -0.038413576781749725, -0.02343343012034893, -0.04147026315331459, -0.03497187793254852, -0.0052127777598798275, 0.05520074442028999, 0.013553805649280548, 0.0020262193866074085, -0.042676884680986404, 0.034558460116386414, 0.030062153935432434, 0.00555202504619956, 0.0119828125461936, 0.008806855417788029, 0.035111743956804276, -0.011394229717552662, 0.01395350880920887, -0.005472993012517691, -0.016996579244732857, 0.021781662479043007, -0.05064304918050766, 0.013557356782257557, -0.005579077638685703, -0.03707405552268028, 0.007419661618769169, 0.00532977981492877, 0.01677035540342331, 0.018307633697986603, -0.0005610777297988534, -0.01034970860928297, -0.03347640484571457, 0.04200391471385956, -0.01624969206750393, -0.012592562474310398, 0.06700053811073303, 0.008491124957799911, -0.02327040024101734, 0.043122563511133194, 0.07795243710279465, -0.0026971122715622187, -0.0004106394771952182, 0.03402741998434067, -0.06142479553818703, 0.029757263138890266, -0.05086972936987877, 0.02226964384317398, -0.029552415013313293, -0.036781225353479385, -0.0016147114802151918, -0.01868663728237152, 0.03810552507638931, 0.012296946719288826, 0.0008148474735207856, -0.036842361092567444, -0.07160065323114395, -0.019520875066518784, 0.004250659141689539, 0.009121845476329327, 0.016285734251141548, 0.031370311975479126, -0.004684389568865299, -0.01792670041322708, 0.012627377174794674, 0.025256972759962082, 0.008257639594376087, -0.016388453543186188, -0.031285617500543594, -0.010574616491794586, 0.0005187244969420135, 0.03469636291265488, -0.012646384537220001, -0.005780773237347603, 0.02503175102174282, 0.028403853997588158, -0.03886324167251587, -0.04271747171878815, -0.03025016188621521, -0.016953010112047195, -0.024506641551852226, -0.02203388325870037, -0.01344962790608406, 0.0012713148025795817, -0.003226030385121703, 0.030772898346185684, 0.014801324345171452, 0.0008438288932666183, 0.023762080818414688, -0.011456422507762909, 0.0357133187353611, 0.009194305166602135, -0.014584271237254143, 0.004241653252393007, 0.040361709892749786, 0.010940131731331348, 0.04906724765896797, 0.0019055587472394109, -0.03130523860454559, -0.03515201807022095, -0.026735277846455574, 0.0140139851719141, -0.01779226027429104, -0.022441577166318893, -0.04618595167994499, -0.01978907734155655, -0.04408745467662811, 0.0436905175447464, -0.012308720499277115, -0.024861030280590057, -0.0002685105719137937, -0.004519715905189514, -0.004038652870804071, -0.010715341195464134, -0.031019357964396477, -0.024354813620448112, -0.003594217589125037, -0.002206408651545644, 0.05459979549050331, -0.040372177958488464, 0.050550103187561035, -0.006279339082539082, -0.0025162792298942804, 0.018498696386814117, -0.023258429020643234, -0.046118561178445816, -0.03388288617134094, -0.02493041381239891, 0.01327021699398756, 0.00460614962503314, -0.0041291252709925175, -0.0497761033475399, 0.04121635854244232, -0.03524495288729668, 0.014799191616475582, -0.008221323601901531, -0.018739666789770126, -0.004447996616363525, 0.03367368131875992, 0.08067474514245987, -0.050700731575489044, 0.0038653225637972355, -0.03466655686497688, 0.05261610448360443, 0.04888300970196724, 0.018042752519249916, -0.001321824500337243, -0.01620197482407093, -0.024006474763154984, -0.053498513996601105, 0.040416400879621506, -0.00480088172480464, -0.028683705255389214, -0.06067918986082077, 0.01820025034248829, 0.03674140200018883, -0.006217981223016977, 0.05158787965774536, 0.03837764635682106, -0.031456369906663895, 0.0023067526053637266, -0.03904598951339722, 0.006980077363550663, 0.04961049184203148, -0.013817103579640388, 0.010303645394742489, 0.006821036338806152, -0.01979457214474678, -0.029837701469659805, -0.05295396223664284, -0.03935578092932701, -0.04012829437851906, -0.04747676104307175, 0.04411818087100983, -0.015763334929943085, 0.03960612416267395, -0.023235347121953964, -0.015628226101398468, -0.050657372921705246, 0.05497817322611809, -0.014381283894181252, -0.0021044048480689526, 0.0350971519947052, -0.007235373370349407, -0.00573367765173316, 0.01294640265405178, -0.004695549141615629, -0.006136500742286444, -0.05065098777413368, 0.03670857101678848, -0.01577191799879074, -0.0539313480257988, 0.06790400296449661, 0.03707398846745491, -0.06199372559785843, -0.06534997373819351, -0.01402685884386301, -0.00821102224290371, 0.007299224846065044, -0.015786731615662575, 0.03954768925905228, 0.0052029830403625965, -0.007844296284019947, -0.00038119714008644223, 0.058666378259658813, 0.007204495836049318, 0.027504904195666313, 0.0040782843716442585, 0.04432043433189392, -0.016723059117794037, -0.005759689956903458, 0.02120397239923477, 0.02430565468966961, -0.038697272539138794, -0.01284700259566307, -0.007499653846025467, 0.010943860746920109, -0.0006127894157543778, 0.05794550105929375, -0.04086485877633095, 0.02990119345486164, -0.01708100363612175, -0.010324333794414997, 0.0019737465772777796, 0.022467799484729767, -0.012195276096463203, 0.0037090221885591745, -0.015309067443013191, -0.07017500698566437, -0.006926737260073423, 0.03516198322176933, -0.01646587997674942, 0.04197148233652115, -0.018512805923819542, -0.011276382952928543, 0.02140842378139496, 0.00957728922367096, -0.012622487731277943, -0.05607606843113899, -0.07105884701013565, -0.018940726295113564, -0.03835849091410637, 0.012285090051591396, -0.021451152861118317, -0.009044545702636242, 0.03357305750250816, 0.02503914386034012, -0.031001653522253036, -0.010987547226250172, 0.042945344001054764, -0.017251387238502502, 0.034074973315000534, -0.04695114865899086, 0.018615376204252243, -0.014323987998068333, -0.009909022599458694, -0.06856361776590347, -0.005318832583725452, -0.053426072001457214, -0.03266796097159386, -0.0020047470461577177, 0.008619946427643299, -0.00677125621587038, 0.03003920428454876, 0.027061307802796364, -0.0031605008989572525, -0.02846093662083149, -0.03662971779704094, 0.0030385644640773535, 0.03216247260570526, -0.003959276247769594, 0.06526587158441544, 0.03826557844877243, -0.0582205131649971, 0.06097572669386864, 0.01964375376701355, -0.010613832622766495, -0.012445769272744656, -0.0091974763199687, -0.002846305724233389, 0.014020420610904694, -0.05189172923564911, -0.024407772347331047, -0.004614296369254589, -0.06679088622331619, 0.05081281065940857, 0.023778744041919708, 0.024291275069117546, 0.004476863890886307, -0.032005149871110916, -0.010769198648631573, 0.021274985745549202, -0.005834665615111589, 0.03496471419930458, 0.00027210148982703686, 0.0043794093653559685, -0.027676530182361603, -0.007588078733533621, -0.0005550525966100395, 0.03356344997882843, 0.012080693617463112, -0.0436091423034668, 0.020680895075201988, 0.00577556062489748, -0.013105373829603195, 0.03496657684445381, -0.04969409853219986, -0.04172821342945099, -0.018382905051112175, -0.0029015718027949333, 0.026388006284832954, 0.043695323169231415, 0.0028001752216368914, -0.024407269433140755, 0.020455509424209595, -0.035331398248672485, -0.06566853821277618, 0.010152447037398815, -0.06188011169433594, -0.017477432265877724, 0.03642330318689346, -0.00009932084503816441, -0.016393503174185753, -0.028434310108423233, -0.03306649997830391, 0.012869829311966896, -0.01135811023414135, 0.0068880910985171795, -0.004093151073902845, 0.025096915662288666, 0.0016754409298300743, 0.04680418595671654, -0.000152329244883731, 0.002236634958535433, 0.0009806286543607712, 0.03474464640021324, -0.029718901962041855, -0.04266338795423508, 0.01247544214129448, 0.01322664599865675, -0.0006371601484715939, 0.015697337687015533, 0.009528184309601784, 0.011792439967393875, 0.016641540452837944, -0.036436211317777634, 0.022874770686030388, 0.02357909083366394, 0.02047174982726574, 0.05342317000031471, -0.026077939197421074, 0.005297508556395769, -0.048596907407045364, 0.03717094287276268, 0.02196377143263817, -0.05145324021577835, -0.013894195668399334, 0.03311445564031601, 0.026910843327641487, -0.0054854340851306915, 0.03533957526087761, 0.0221128948032856, 0.06498370319604874, -0.003923407290130854, 0.029656168073415756, -0.006348264869302511, 0.050033919513225555, 0.014671331271529198, 0.013622169382870197, 0.01026481669396162, 0.040961217135190964, 0.0792030543088913, -0.017430119216442108, 0.02117113396525383, 0.02938835881650448, 0.014504577964544296, -0.0446091890335083, -0.012725749984383583, -0.03562319278717041, 0.007440190762281418, -0.0008094006916508079, -0.006022023037075996, 0.010150209069252014, -0.0009105420904234052, 0.0028028429951518774, -0.04675387963652611, 0.024021290242671967, 0.026037365198135376, -0.016122451052069664, 0.006463759578764439, 0.0006566722877323627, 0.020389394834637642, -0.01729673705995083, 0.04855547472834587, 0.0020919600501656532, 0.01681431755423546, 0.011726809665560722, 0.024474268779158592, -0.003105843672528863, 0.03844933956861496, 0.027989741414785385, -0.02130948193371296, -0.04417044296860695, 0.012088104151189327, 0.022432832047343254, -0.009869469329714775, -0.042049843817949295, 0.009364087134599686, -0.02709749899804592, -0.004913019016385078, -0.019905202090740204, 0.0008501029224134982, 0.022989248856902122, -0.025010203942656517, -0.0013603642582893372, -0.0520029254257679, 0.02960016205906868, -0.03278389200568199, 0.026920313015580177, 0.03804032877087593, 0.011714956723153591, -0.021368879824876785, 0.03887582942843437, 0.022078171372413635, 0.03179503604769707, -0.00579064479097724, 0.023043982684612274, -0.017303550615906715, 0.007792862132191658, 0.08099984377622604, -0.0203754510730505, -0.04879726469516754, 0.023018773645162582, -0.0331515334546566, -0.050339169800281525, -0.011416302062571049, -0.011992880143225193, -0.007810011971741915, 0.01290386263281107, 0.015081203542649746, -0.006584726739674807, 0.012505641207098961, -0.005561633035540581, -0.06488507986068726, -0.003682543756440282, 0.029115354642271996, -0.028047045692801476, 0.030589861795306206, 0.013026206754148006, 0.03740030527114868, -0.023117700591683388, -0.042192526161670685, -0.03530919551849365, -0.03304561227560043, 0.023394446820020676, -0.04060272127389908, 0.02409379743039608, -0.034375615417957306, -0.0005889010499231517, -0.025292841717600822, -0.041277576237916946, -0.032952725887298584, 0.011676996946334839, -0.056218601763248444, -0.03947440907359123, 0.009349330328404903, 0.02943497523665428, 0.017745792865753174, 0.02674447000026703, -0.022792784497141838, 0.034655965864658356, 0.002275848528370261, 0.05098862200975418, -0.021542232483625412, 0.05194365978240967, 0.02946639247238636, -0.04029978811740875, 0.02194312959909439, -0.012224134057760239, 0.03436030074954033, -0.03638743236660957, -0.017135139554739, -0.03567248582839966, 0.01874750293791294, -0.012519939802587032, -0.04531191661953926, 0.04243510216474533, 0.05399305000901222, 0.01772143691778183, -0.03428357094526291, -0.065500907599926, -0.005089468322694302, -0.0582219734787941, -0.020776420831680298, -0.030251841992139816, 0.02000354789197445, 0.004959816113114357, -0.011195293627679348, -0.018743781372904778, -0.08382102847099304, 0.13217778503894806, 0.032598674297332764, 0.010160556994378567, -0.005181571934372187, 0.025096219033002853, 0.015086671337485313, -0.0019528961274772882, -0.004976937547326088, -0.004688766319304705, -0.032115716487169266, 0.027170594781637192, 0.009925195015966892, 0.01359815988689661, 0.003474055789411068, 0.0007110603037290275, 0.06883741915225983, -0.009383037686347961, 0.012480976060032845, 0.0034479761961847544, -0.04578106477856636, -0.03779268637299538, 0.03181983530521393, -0.005167766474187374, 0.04361491650342941, -0.0173104889690876, 0.026060739532113075, 0.04583042860031128, -0.04072030261158943, -0.014354093000292778, -0.031025996431708336, 0.036548081785440445, -0.03876364976167679, 0.039175622165203094, -0.014364884234964848, -0.0315886028110981, 0.048594020307064056, -0.014663523994386196, -0.014484074898064137, 0.0031476381700485945, 0.020046908408403397, -0.01563303917646408, 0.03033614344894886, 0.025225622579455376, -0.02071097493171692, 0.015996087342500687, 0.03466956317424774, -0.06476553529500961, 0.010683072730898857, 0.010011432692408562, -0.017269985750317574, 0.03696250170469284, 0.023150315508246422, 0.04247700423002243, -0.031875625252723694, -0.029713397845625877, 0.025327593088150024, 0.010082795284688473, -0.008122773841023445, -0.035595692694187164, -0.02772657200694084, 0.017437173053622246, 0.016666170209646225, -0.04704546928405762, -0.002730687614530325, -0.03515797108411789, 0.0020608946215361357, 0.034925393760204315, -0.022651908919215202, -0.026797309517860413, -0.0036534022074192762, -0.007415597792714834, -0.007069367449730635, -0.014993785880506039, -0.0038395628798753023, 0.02431812323629856, -0.009296493604779243, -0.029216429218649864, 0.03251668065786362, 0.020688634365797043, -0.010498866438865662, -0.02923593856394291, -0.04250319302082062, 0.019021110609173775, -0.01784110814332962, 0.02100309170782566, 0.0202625785022974, -0.03747605159878731, -0.043463099747896194, -0.014769937843084335, 0.05942219868302345, 0.0474967285990715, 0.017222605645656586, -0.04173329100012779, 0.010195832699537277, -0.029591381549835205 ]
For obvious reasons, direct expressions of protest during slavery were dangerous. Yet, it is very clear that some of the songs created by enslaved people served as expressions of protest. Creators of the songs went to considerable lengths to disguise the true meaning of the lyrics. For those within the enslaved community, however, the meanings were very clear. The best example of a protest spiritual is the song commonly called "I Got Shoes," but also known as "Heav'n, Heav'n."
[ -0.025719240307807922, 0.0035752884577959776, -0.0266264621168375, 0.013808305375277996, -0.0035318138543516397, -0.010990558192133904, -0.018022922798991203, 0.014719151891767979, 0.02425503544509411, 0.026401551440358162, 0.037648387253284454, -0.00032068544533103704, 0.024649132043123245, -0.04455189406871796, 0.0011885014828294516, -0.009337206371128559, -0.024987030774354935, -0.030862636864185333, -0.009994137100875378, 0.021608680486679077, 0.01839541457593441, -0.01823420450091362, -0.07034175843000412, -0.01802339218556881, 0.005977609194815159, 0.04060984402894974, 0.021242177113890648, -0.0016556375194340944, 0.06282875686883926, 0.057718925178050995, -0.005948737263679504, -0.024243494495749474, 0.04765563830733299, -0.06129354611039162, -0.020993612706661224, -0.017443634569644928, 0.049498483538627625, -0.021449295803904533, -0.0260180477052927, -0.044907476752996445, -0.0233014989644289, -0.01470597367733717, 0.022916384041309357, -0.032994288951158524, -0.05243414267897606, -0.02859078161418438, -0.022208625450730324, -0.014796343632042408, 0.04968028888106346, 0.006577199324965477, 0.007895034737884998, -0.021413464099168777, 0.013703546486794949, 0.01817866414785385, 0.011530020274221897, 0.02144908346235752, 0.0010812758700922132, -0.05477134510874748, -0.040723636746406555, 0.0200358796864748, 0.00461173988878727, -0.01303238607943058, 0.046510353684425354, -0.07678352296352386, -0.0034047786612063646, 0.0010510736610740423, -0.029703013598918915, -0.02978501096367836, -0.023199446499347687, -0.03155745565891266, 0.020700905472040176, 0.011486988514661789, 0.004508322104811668, -0.01910676807165146, 0.020379815250635147, -0.006320612970739603, -0.02976059913635254, 0.0033973923418670893, 0.0005039656534790993, -0.0007465133676305413, -0.010247725993394852, 0.058909106999635696, -0.012948336079716682, 0.009399517439305782, -0.0725424587726593, 0.0011348269181326032, -0.030414501205086708, -0.0014757270691916347, 0.011597894132137299, -0.016979295760393143, -0.005309063941240311, 0.05664544552564621, 0.0019222010159865022, 0.002217174507677555, 0.048434920608997345, 0.06302916258573532, -0.028161805123090744, 0.04014064371585846, 0.0013019382022321224, 0.002565225586295128, 0.03730000555515289, 0.024328364059329033, -0.02811194397509098, 0.03538671135902405, -0.05322367325425148, -0.016243478283286095, 0.03286987170577049, 0.008585169911384583, -0.012078449130058289, -0.010667169466614723, -0.005204122979193926, -0.0011566353496164083, 0.05263456329703331, -0.0008126229513436556, -0.020299140363931656, 0.04041129723191261, 0.008559185080230236, 0.045398976653814316, -0.02013671025633812, 0.016731414943933487, 0.009038381278514862, -0.0064643570221960545, 0.03252628445625305, -0.025188112631440163, 0.018392512574791908, -0.03148966655135155, -0.024670874699950218, 0.04225859045982361, -0.0469699390232563, 0.0016396279679611325, 0.04583381861448288, -0.03280825540423393, 0.015833057463169098, 0.02568272314965725, -0.025602998211979866, 0.018049098551273346, -0.0025285130832344294, 0.0419146828353405, 0.033524736762046814, -0.06868526339530945, 0.012043832801282406, 0.032011743634939194, 0.008068828843533993, 0.08588038384914398, 0.0067534055560827255, 0.028283586725592613, 0.017412396147847176, 0.044417694211006165, -0.0350535586476326, -0.014037051238119602, -0.011742276139557362, 0.014611942693591118, -0.003151669166982174, 0.008034591563045979, 0.010509438812732697, -0.006003820803016424, 0.022138243541121483, 0.011503094807267189, 0.015904409810900688, 0.04170579835772514, -0.027334952726960182, 0.025325588881969452, -0.0032421876676380634, 0.02844599448144436, 0.007719776593148708, 0.030836209654808044, -0.022631511092185974, -0.010373982600867748, -0.004982166923582554, -0.01839229092001915, 0.0028005894273519516, -0.021332483738660812, -0.02089422568678856, -0.006572578102350235, 0.015509144403040409, 0.04349507391452789, 0.041911136358976364, 0.009946039877831936, 0.037238866090774536, 0.04495980963110924, -0.016834629699587822, -0.009729639627039433, -0.005986850243061781, 0.0644725114107132, -0.020880907773971558, -0.025736434385180473, 0.01711306907236576, -0.00570807745680213, -0.05955027788877487, -0.02565380372107029, -0.0054802363738417625, 0.027494758367538452, -0.03904156759381294, 0.007541124243289232, 0.036574117839336395, 0.012812725268304348, -0.04445851221680641, -0.025300726294517517, -0.024523528292775154, -0.07124760001897812, -0.00594411650672555, 0.04449325054883957, -0.05531482771039009, 0.05251075699925423, -0.01534986775368452, -0.016249220818281174, 0.02813919261097908, 0.05610450357198715, -0.031389884650707245, 0.019745666533708572, 0.018720263615250587, 0.0024299961514770985, 0.008769008331000805, -0.013611610978841782, -0.011292046867311, -0.00037709323805756867, 0.0024707121774554253, 0.03333478420972824, -0.027574265375733376, 0.006385384127497673, 0.011119542643427849, 0.018163731321692467, 0.042258378118276596, 0.04021427407860756, 0.01507347822189331, -0.018864262849092484, 0.03834184259176254, 0.05494802072644234, -0.032627686858177185, -0.03521168231964111, 0.004197572823613882, 0.05594886839389801, 0.03889377787709236, 0.02293570339679718, 0.05048178881406784, 0.02530049905180931, 0.02780110202729702, 0.0441504567861557, -0.015083210542798042, 0.03863959386944771, -0.014710367657244205, 0.013817464001476765, 0.04081825166940689, 0.04943650960922241, -0.025394748896360397, -0.002922794548794627, -0.0032270352821797132, 0.0052465288899838924, 0.036692891269922256, 0.04576585069298744, -0.013655690476298332, 0.05864986404776573, 0.039088424295186996, 0.05522633343935013, -0.05493767186999321, 0.013591726310551167, 0.03734687715768814, 0.04300811514258385, -0.007866079919040203, -0.035261981189250946, 0.012281524948775768, 0.03449626266956329, 0.0030830721370875835, 0.019299698993563652, 0.04680798202753067, 0.0007559648365713656, 0.004991094581782818, 0.03515613079071045, -0.04313071072101593, -0.042914267629384995, -0.03539362549781799, -0.06644245982170105, -0.04051964730024338, -0.026573147624731064, -0.008119083009660244, 0.043025098741054535, 0.03374950960278511, -0.03566267713904381, 0.01043584756553173, 0.005237874574959278, -0.030603453516960144, -0.0052613927982747555, -0.005260112229734659, 0.0023902899120002985, 0.02472641132771969, 0.03392631933093071, -0.023861350491642952, 0.03387610614299774, -0.015128085389733315, 0.04113490879535675, 0.007810864131897688, -0.031201351433992386, 0.006421044003218412, -0.019109675660729408, 0.04659700766205788, 0.0032347908709198236, -0.014761167578399181, -0.012798648327589035, -0.02289646863937378, -0.06665628403425217, 0.004475932102650404, -0.0025544066447764635, -0.043565522879362106, -0.016536716371774673, -0.05856972187757492, 0.05005403980612755, 0.03246168792247772, -0.04224124178290367, 0.04375812038779259, 0.0644405260682106, -0.04507480561733246, 0.04153028130531311, 0.005580524913966656, 0.03472762182354927, -0.05603689327836037, 0.058112360537052155, 0.04399621859192848, 0.0033131646923720837, -0.040818970650434494, -0.020332977175712585, -0.0534893274307251, 0.010259928181767464, 0.01251239888370037, -0.012956219725310802, -0.02579343132674694, 0.03299776092171669, 0.004298687446862459, -0.07112618535757065, 0.01995285600423813, -0.047514766454696655, -0.012888725847005844, -0.03722289577126503, -0.014655505307018757, 0.020998459309339523, 0.018131380900740623, 0.022858627140522003, -0.022674744948744774, -0.02528732642531395, -0.006052977871149778, 0.036305226385593414, 0.018054954707622528, -0.016413211822509766, 0.016250697895884514, 0.025096427649259567, -0.01422390528023243, 0.01119837537407875, 0.0018255367176607251, -0.023942314088344574, 0.02122332900762558, 0.006858441978693008, 0.022578423842787743, -0.0024631002452224493, 0.018240096047520638, -0.0117024602368474, 0.009165878407657146, 0.038407064974308014, -0.02511514537036419, -0.00965412613004446, 0.017241861671209335, 0.015219387598335743, 0.02098282426595688, 0.010678178630769253, 0.022266903892159462, -0.012581335380673409, -0.027121122926473618, -0.0450439378619194, 0.017252929508686066, -0.004580874461680651, 0.053309354931116104, -0.05512732267379761, 0.05529055371880531, -0.008563890121877193, -0.029130298644304276, 0.05071529746055603, -0.06693218648433685, 0.00016961056098807603, 0.05326329544186592, -0.03217271342873573, 0.03517816215753555, -0.0454617477953434, 0.018239563331007957, -0.026281509548425674, 0.04314239323139191, 0.02415006421506405, 0.018077654764056206, 0.007762717083096504, -0.05585445091128349, -0.022184768691658974, -0.010995161719620228, -0.006006230600178242, -0.02474069781601429, -0.010807904414832592, 0.0297263041138649, -0.008676739409565926, -0.039948586374521255, -0.036751504987478256, 0.03371398523449898, -0.0035464095417410135, 0.047500450164079666, 0.003089669393375516, 0.03714245185256004, 0.012903322465717793, -0.0017754224827513099, 0.02437913417816162, -0.02800716646015644, -0.015735434368252754, -0.02735588327050209, 0.03015163354575634, 0.013586663641035557, -0.05914372205734253, -0.00022190934396348894, -0.028801007196307182, -0.0608644038438797, 0.019587606191635132, -0.004153089132159948, -0.008652843534946442, -0.021281635388731956, 0.03462894260883331, 0.018883926793932915, 0.0025361457373946905, -0.03708752617239952, -0.010254831053316593, -0.016782458871603012, 0.03052392229437828, 0.043623439967632294, -0.035895753651857376, 0.03257320821285248, -0.05115291848778725, 0.03346189856529236, 0.044099897146224976, -0.0015820716507732868, -0.06095467507839203, -0.006861613132059574, -0.03734741359949112, -0.016894998028874397, -0.0043302602134644985, 0.03663721680641174, -0.010070695541799068, 0.007993207313120365, -0.04992173984646797, 0.02313407137989998, 0.033837758004665375, -0.007081282325088978, 0.006857750937342644, 0.016913242638111115, -0.0030429810285568237, -0.012829896993935108, 0.03802431374788284, -0.026534589007496834, -0.0004112513561267406, 0.020335381850600243, -0.07703271508216858, 0.0034547667019069195, -0.015383711084723473, 0.0004310556105338037, 0.03601829335093498, 0.01428235787898302, -0.03277568891644478, 0.04288085177540779, 0.0054106805473566055, -0.020215433090925217, 0.019404778257012367, 0.0353371798992157, -0.038202181458473206, -0.01862388290464878, 0.05017674341797829, -0.0006046474445611238, -0.03008412756025791, 0.0641707107424736, 0.035982415080070496, 0.009498002007603645, 0.009342758916318417, 0.030663730576634407, -0.06066332012414932, 0.026816729456186295, -0.045851945877075195, 0.006044461391866207, -0.03537363186478615, -0.03423841670155525, 0.011368397623300552, -0.02268834412097931, 0.034625884145498276, 0.018256325274705887, -0.0188657958060503, -0.0369827039539814, -0.043336112052202225, -0.009651999920606613, -0.014976424165070057, -0.022841351106762886, -0.010085917077958584, 0.03626864030957222, -0.00007750473741907626, 0.003501997794955969, -0.030616911128163338, 0.03932887315750122, -0.018311725929379463, -0.011832697317004204, -0.012884086929261684, 0.009430497884750366, 0.027481460943818092, 0.03234130144119263, 0.011052194982767105, -0.0474376305937767, 0.00985699612647295, 0.019801916554570198, -0.019555093720555305, -0.026245975866913795, -0.009510282427072525, 0.0075266421772539616, -0.0013586136046797037, -0.019305596128106117, 0.02571474388241768, -0.00790320336818695, 0.01508413627743721, 0.04338711127638817, 0.021078722551465034, -0.001965918345376849, -0.016652660444378853, -0.05597123131155968, 0.039968326687812805, 0.03089720755815506, -0.03283116593956947, -0.029328681528568268, 0.006568551994860172, -0.0085369274020195, 0.04256556183099747, 0.00403636833652854, -0.0052298009395599365, -0.056715380400419235, -0.056079309433698654, 0.02591371163725853, -0.030948808416724205, -0.026345377787947655, -0.041754674166440964, -0.020682532340288162, 0.003377736546099186, 0.06790616363286972, -0.003051303792744875, 0.026632491499185562, -0.031872209161520004, -0.02854744903743267, 0.003863654797896743, -0.01754867099225521, -0.0350426509976387, -0.015269449912011623, -0.03322630375623703, -0.028395863249897957, 0.06117713451385498, 0.025899110361933708, 0.058723825961351395, 0.02888130210340023, 0.005513157695531845, 0.033186011016368866, -0.024881869554519653, -0.02633676491677761, -0.02324804477393627, -0.028710272163152695, -0.015057871118187904, 0.017627349123358727, 0.009681190364062786, -0.03237999603152275, 0.05157911404967308, -0.05534723401069641, -0.014151188544929028, -0.037009745836257935, -0.011315030045807362, 0.01141163520514965, -0.011149102821946144, 0.0460880808532238, -0.02102751098573208, 0.004441523924469948, -0.038071826100349426, 0.026906784623861313, 0.032739315181970596, -0.029393136501312256, -0.019039958715438843, -0.03825554624199867, -0.041175566613674164, -0.02106102928519249, 0.008268027566373348, -0.027070781216025352, -0.02797427400946617, -0.055290039628744125, -0.02666771039366722, 0.06601084768772125, -0.017527805641293526, 0.028574705123901367, 0.06533240526914597, -0.04171788692474365, -0.022779129445552826, -0.019244199618697166, 0.013477545231580734, 0.05296996980905533, -0.04930064082145691, -0.010429452173411846, -0.0018804336432367563, -0.0733921229839325, 0.005997789092361927, -0.01905437372624874, -0.01655147783458233, -0.02911698818206787, -0.02575436420738697, 0.05712885782122612, -0.025097090750932693, 0.05036313086748123, 0.0013439561007544398, -0.02605677954852581, -0.0727199837565422, 0.034276969730854034, -0.003892277367413044, -0.008156418800354004, 0.055562280118465424, -0.026283638551831245, -0.010939431376755238, 0.007694810163229704, 0.027757678180933, -0.023320110514760017, -0.01756553165614605, 0.06825080513954163, -0.007699455134570599, -0.044544268399477005, 0.007362299598753452, 0.03363220393657684, -0.06252846121788025, -0.029835814610123634, 0.015238615684211254, -0.016496261581778526, -0.00575398001819849, -0.03899560496211052, 0.014397316612303257, -0.009128162637352943, 0.02142200991511345, 0.013137275353074074, 0.014977497048676014, -0.03629894182085991, 0.041222523897886276, 0.006080374121665955, 0.054963089525699615, -0.028972428292036057, 0.019342605024576187, 0.0051057967357337475, -0.019404636695981026, -0.008406111970543861, -0.029304414987564087, 0.005353145767003298, 0.003317609429359436, 0.006419578101485968, 0.04497484117746353, -0.02068587951362133, 0.012183240614831448, 0.03269180282950401, -0.044613055884838104, 0.05100511014461517, -0.014078649692237377, -0.01941460371017456, 0.0023598140105605125, -0.0335681214928627, -0.05117833614349365, -0.03702018782496452, 0.017179390415549278, -0.006005512084811926, 0.02693158946931362, -0.052226077765226364, -0.0057183681055903435, 0.022973809391260147, -0.009358937852084637, 0.00023572234204038978, -0.0637446790933609, -0.0486116036772728, -0.02680726908147335, -0.05037279054522514, 0.001996436854824424, 0.00009121642506215721, 0.020921615883708, 0.009956535883247852, 0.008027142845094204, -0.034580767154693604, -0.03534227982163429, 0.01595144532620907, -0.023194827139377594, 0.019021132960915565, -0.04375855624675751, 0.026762893423438072, -0.02860318124294281, -0.05631845444440842, -0.042656805366277695, 0.013035056181252003, -0.019411906599998474, -0.039378572255373, -0.012236129492521286, 0.04553184658288956, 0.011825639754533768, 0.03051650896668434, 0.010692824609577656, 0.01602189429104328, 0.014758254401385784, -0.031156232580542564, 0.028934312984347343, 0.05516872555017471, 0.016624106094241142, 0.03690483793616295, 0.015667425468564034, -0.009712864644825459, 0.03557229042053223, 0.01619987189769745, -0.057568613439798355, -0.02458815835416317, 0.01668979413807392, 0.0007711575599387288, -0.006726359482854605, -0.023761117830872536, -0.059379417449235916, -0.013126866891980171, -0.02369275875389576, 0.028292393311858177, 0.01888503134250641, 0.0010393004631623626, 0.004899540450423956, -0.0036995336413383484, -0.0016394382109865546, 0.06693530082702637, 0.010089884512126446, 0.0418621189892292, -0.004276176914572716, 0.03132689744234085, -0.004129413515329361, 0.03687344491481781, 0.041361331939697266, 0.018839465454220772, 0.012704455293715, -0.03321683034300804, 0.012157090939581394, 0.01617143675684929, -0.016801729798316956, 0.030297379940748215, -0.030615534633398056, -0.04166474938392639, -0.04867546260356903, -0.03739173337817192, -0.010724014602601528, 0.026080023497343063, 0.025549020618200302, -0.01467570848762989, 0.046434611082077026, -0.012742241844534874, -0.045424316078424454, -0.0047679184935987, -0.08203890919685364, -0.02619391866028309, 0.04353584721684456, 0.024113774299621582, -0.011186153627932072, -0.014920277521014214, -0.02843629941344261, 0.00048551626969128847, -0.020673859864473343, -0.02015550620853901, -0.043159063905477524, 0.03280441462993622, -0.03459423407912254, 0.033920399844646454, -0.021213049069046974, 0.015744203701615334, 0.023876747116446495, 0.033051490783691406, -0.04211508855223656, -0.04974678158760071, 0.01759284920990467, 0.04411647841334343, 0.012484659440815449, -0.011189409531652927, -0.020268473774194717, -0.0007749901269562542, -0.026304051280021667, 0.001990386750549078, -0.016421250998973846, 0.028227852657437325, 0.04186878353357315, 0.010409308597445488, 0.012217840179800987, 0.0033208555541932583, -0.015112140215933323, 0.031693216413259506, 0.005369321443140507, -0.04254236817359924, 0.01709030009806156, 0.043657056987285614, 0.03844485059380531, -0.012212663888931274, 0.03200855478644371, 0.010197734460234642, 0.05268083140254021, -0.005359169561415911, 0.01607462577521801, -0.016225604340434074, 0.035256922245025635, 0.015542171895503998, 0.040750451385974884, -0.028883960098028183, 0.023285211995244026, 0.05629979074001312, -0.013151519000530243, 0.004292533732950687, 0.030101429671049118, 0.03223089128732681, -0.003098647575825453, -0.013668800704181194, -0.018020063638687134, 0.0032706528436392546, 0.017233479768037796, -0.03628137335181236, -0.01309049129486084, -0.03206817805767059, -0.005971388891339302, -0.03451758250594139, 0.000935921969357878, 0.028768274933099747, -0.01851179264485836, 0.016728190705180168, 0.001902033924125135, -0.017650974914431572, -0.009836483746767044, 0.05252550169825554, 0.013392999768257141, 0.0138591593131423, 0.04986570030450821, 0.034269191324710846, -0.00476999394595623, 0.05340319126844406, 0.014537261798977852, 0.002862995257601142, -0.03526027873158455, 0.021816883236169815, 0.03857571631669998, -0.016509685665369034, -0.04486389830708504, -0.0006783556309528649, -0.03721842169761658, 0.03914202004671097, -0.04678592085838318, -0.007056495174765587, 0.05279197171330452, -0.018048372119665146, 0.014169870875775814, -0.05770092085003853, 0.062083691358566284, -0.009881330654025078, -0.00862348172813654, 0.02876368537545204, -0.0014440412633121014, -0.024170948192477226, 0.023691996932029724, -0.010010462254285812, 0.049522481858730316, -0.006215756293386221, 0.014489443972706795, -0.015407752245664597, 0.009729713201522827, 0.055213794112205505, -0.0407702699303627, -0.005288374610245228, 0.008961198851466179, 0.010602734982967377, -0.03964773193001747, 0.0022776867263019085, -0.013984319753944874, -0.018955372273921967, -0.014649031683802605, 0.004933063872158527, -0.00212263036519289, 0.02422945573925972, 0.01384533941745758, -0.03387896716594696, -0.02285461686551571, 0.005610966123640537, -0.05174330249428749, 0.03668763488531113, 0.009857100434601307, 0.02366066537797451, 0.0036899240221828222, -0.017571773380041122, -0.041023027151823044, -0.010179481469094753, 0.014782370999455452, -0.02944854274392128, 0.0772395059466362, -0.003216596320271492, -0.05476166680455208, -0.03959845006465912, -0.054733406752347946, -0.01142246462404728, 0.01943320222198963, -0.03359391167759895, -0.022559428587555885, 0.017666051164269447, 0.042548805475234985, 0.032541196793317795, -0.03457139432430267, -0.02364419214427471, -0.019060729071497917, 0.046434398740530014, 0.06647560000419617, -0.014106637798249722, 0.0699133351445198, 0.03087562881410122, -0.052728358656167984, 0.029261235147714615, -0.029134901240468025, 0.049326229840517044, -0.016259130090475082, -0.018896298483014107, -0.035447683185338974, 0.008927948772907257, -0.06347695738077164, -0.06873516738414764, 0.025515634566545486, 0.02870122157037258, 0.03185698762536049, -0.03373635560274124, -0.08148433268070221, 0.0038323821499943733, -0.03505793958902359, -0.02103409729897976, -0.03404492884874344, 0.030146058648824692, 0.02014685980975628, 0.006403546780347824, 0.007363792043179274, -0.04739134758710861, 0.15745989978313446, -0.0030522700399160385, 0.013780990615487099, -0.017794685438275337, -0.0073283035308122635, 0.03083525225520134, 0.03114008530974388, 0.011107045225799084, -0.004251756705343723, -0.05746247619390488, 0.02575911208987236, 0.010241471230983734, 0.031023629009723663, 0.005199233535677195, 0.026836814358830452, 0.0473950132727623, -0.019768178462982178, -0.00894336961209774, 0.023523109033703804, -0.06172550469636917, -0.04448309168219566, -0.001149896183051169, 0.031897228211164474, 0.03579447790980339, -0.021891091018915176, 0.016834618523716927, 0.036326561123132706, -0.07819689810276031, -0.029634948819875717, 0.004006772302091122, 0.023607732728123665, -0.03042307309806347, 0.04213467985391617, -0.01390189491212368, -0.03168812394142151, 0.04985342547297478, 0.023599999025464058, -0.008464480750262737, 0.024933358654379845, 0.026148980483412743, -0.023368166759610176, -0.0014801685465499759, 0.009959275834262371, -0.037012118846178055, -0.011649956926703453, 0.04592527449131012, -0.03672916814684868, 0.00996493175625801, -0.0076757087372243404, -0.025618353858590126, 0.042216505855321884, -0.034754253923892975, 0.03648224100470543, -0.03827589005231857, -0.015799259766936302, 0.010128817521035671, -0.05181882902979851, -0.03428061679005623, -0.022857941687107086, -0.033261604607105255, -0.006024414207786322, 0.00572669692337513, -0.013591138646006584, 0.029340427368879318, -0.033020179718732834, 0.012775717303156853, 0.02285834774374962, -0.035425908863544464, 0.002655050018802285, -0.02532423660159111, -0.013483795337378979, -0.014808308333158493, 0.008245332166552544, -0.04038217291235924, 0.020587120205163956, 0.013470852747559547, -0.026204317808151245, 0.07863336056470871, -0.016927797347307205, -0.01901567541062832, -0.027266891673207283, -0.044669512659311295, -0.018292589113116264, -0.011998827569186687, 0.02374660223722458, 0.03710577264428139, -0.04184219241142273, -0.024156685918569565, -0.01753859408199787, 0.04634552076458931, 0.06698211282491684, 0.032874561846256256, -0.006611665710806847, 0.004275947343558073, -0.018633171916007996 ]
Entry-Level Scan Tool provides all 9 OBD-II test modes. Snap-on Inc. Apr 06, 2005 ScanCheck(TM) OBD-II Scan Tool (MTSC500) enables technicians to retrieve and clear trouble codes on all 1996 and newer ODB-II compliant systems on domestic, European, and Asian vehicles. It supports CAN systems, displays freeze frame data and oxygen sensor readings, and includes manufacturer-specific enhanced P code information for GM, Ford and Chrysler vehicles. Internal software is updated via CD with optional PC computer connection kit. Snap-On's New Entry-Level Scan Tool Offers Powerful Capabilities in an Affordable Package CAN-enabled, Full Function OBD-II Scan Tool KENOSHA, Wis., March 11, 2005 - Technicians and shops looking for an entry-level or secondary scan tool now have an affordable new choice with the introduction of the ScanCheck(TM) OBD-II Scan Tool (MTSC500) from Snap-on Tools Company. The Snap-onยฎ ScanCheck allows technicians to quickly retrieve and clear trouble codes on all 1996 and newer ODB-II compliant systems on Domestic, European and Asian vehicles. The scan tool provides all nine OBD-II test modes and supports Controller Area Network (CAN) systems on the latest vehicles, increasing the technician's ability to accurately identify tough diagnostic problems. The tool's trouble code descriptions are displayed in plain English for easy understanding by all levels of technicians. The Snap-on ScanCheck's software includes manufacturer-specific enhanced P code information for GM, Ford and Chrysler vehicles. The scan tool retrieves and displays live engine datastream and parameters to help gather information necessary to diagnose difficult and intermittent problems. The ScanCheck also displays Freeze Frame data and oxygen sensor readings essential for troubleshooting driveability problems. The ScanCheck's access to all nine modes makes technicians better prepared and equipped to diagnose the toughest OBD-II diagnostic problems. In Mode 9, technicians can retrieve VIN number data and calibration software information from the vehicle's Powertrain Control Module. Not only does this information speed the diagnostic process, it helps ensure the problem is diagnosed correctly the first time. Additional and updated manufacturer-specific enhanced P code information, OBD-II codes and code descriptions will be available with future software updates from Snap-on Tools Company. The ScanCheck kit includes the ScanCheck scan tool, a six-foot detachable J1962 OBD-II diagnostic cable, protective storage pouch, CD-ROM user's manual and a quick reference start guide. The start guide and comprehensive user's manual directs technicians through everything they need to know to put OBD-II diagnostics to use. The ScanCheck's internal software is updated via CD with an optional PC computer connection kit available later this year. Full Spanish language support is built-in as standard on all ScanCheck's diagnostic and other functions. Technicians and shop owners can find out more about the Snap-onยฎ ScanCheck(TM) OBD-II Scan Tool (MTSC500) by contacting their local Snap-on representative, visiting www.snapon.com or calling toll free 877-SNAPON-2. Snap-on Tools Company, LLC is a subsidiary of Snap-on Incorporated, a leading global developer, manufacturer and marketer of tool and equipment solutions for professional tool users. Product lines include hand and power tools, diagnostics and shop equipment, tool storage products, diagnostics software and other solutions for the transportation service, industrial, government, education, agricultural, and other commercial applications, including construction and electrical. Products are sold through its franchisee dealer van, distributor channels and company direct sales, including snapon.com. Founded in 1920, Snap-on Tools is a $2+ billion, S&P 500 company headquartered in Kenosha, Wis., and employs approximately 12,000 worldwide. Precision Adjustable Shim simplifies leveling adjustments. Dairy/Milk Testing Instruments measure bacterial levels. Gas / Chemical Analyzers Hematology Analyzer performs CBC and CRP in 4 minutes. Time and Frequency System features internal GPS receiver.
[ -0.007658354938030243, 0.012506423518061638, 0.00751241622492671, -0.008014172315597534, -0.019527669996023178, 0.0013602953404188156, 0.01831185445189476, -0.0007829431560821831, 0.02965180017054081, 0.057062406092882156, 0.016986478120088577, -0.019719073548913002, 0.0059903147630393505, -0.03812103718519211, -0.015359739772975445, -0.0014059041859582067, 0.013557366095483303, -0.016466541215777397, -0.02213326469063759, -0.007406883407384157, 0.0006887573981657624, -0.021365460008382797, -0.06922607123851776, -0.026152031496167183, -0.028340836986899376, 0.024200305342674255, 0.02080969326198101, -0.038094617426395416, 0.03355710208415985, 0.07028541713953018, -0.05399498715996742, -0.05854106694459915, 0.03294092416763306, -0.043585244566202164, -0.029607998207211494, -0.037819571793079376, 0.03218517079949379, -0.0026899639051407576, -0.028464339673519135, -0.048391103744506836, -0.015868913382291794, 0.012663844041526318, 0.03467458114027977, -0.034225571900606155, -0.021122276782989502, -0.01969459466636181, -0.010842091403901577, -0.025279108434915543, -0.012323894537985325, -0.041316140443086624, -0.0028150794096291065, 0.022762075066566467, 0.023241905495524406, -0.03211319446563721, -0.015671292319893837, 0.019458191469311714, 0.016734886914491653, 0.020188068971037865, -0.03793266415596008, 0.05204879865050316, 0.04932836443185806, -0.008723489940166473, 0.04204985126852989, -0.052562031894922256, -0.004273335449397564, 0.01878594048321247, -0.028519056737422943, -0.013705415651202202, 0.043670278042554855, -0.0017916129436343908, -0.024489395320415497, 0.023765677586197853, -0.026521340012550354, -0.032668039202690125, -0.014484191313385963, 0.0391605943441391, 0.02736719325184822, 0.02911699004471302, -0.015679432079195976, 0.008700612932443619, -0.003912954591214657, 0.05040387436747551, 0.01629243604838848, 0.014036496169865131, -0.04846468195319176, -0.013226328417658806, 0.004601314663887024, -0.0036842988338321447, -0.027987470850348473, -0.005071362014859915, 0.0026245741173624992, 0.07416471838951111, 0.0012985399225726724, 0.01641548052430153, 0.029544418677687645, -0.0031215150374919176, -0.05043044686317444, 0.016481254249811172, 0.028836863115429878, 0.01000902522355318, 0.03785376995801926, 0.04640974476933479, -0.011757897213101387, 0.031505513936281204, -0.05115241929888725, -0.011362580582499504, 0.006964666303247213, -0.024426555261015892, -0.02588645927608013, -0.047082990407943726, 0.0008364187087863684, -0.004086264409124851, 0.006476488895714283, 0.002614905359223485, -0.02971639856696129, 0.044332776218652725, -0.012594616040587425, 0.04726967215538025, -0.011562167666852474, 0.006112508941441774, 0.022285163402557373, 0.013193237595260143, 0.018007507547736168, -0.0241723470389843, -0.010097007267177105, -0.031252421438694, -0.03264043480157852, 0.05153900384902954, -0.044391799718141556, -0.012959093786776066, -0.0005168879288248718, -0.037495844066143036, 0.01098667737096548, 0.04278457164764404, 0.0050919316709041595, 0.02169996127486229, -0.012136696837842464, 0.009281697683036327, 0.007214655168354511, -0.01523193996399641, 0.03571031242609024, 0.0281980037689209, 0.016035763546824455, 0.09854931384325027, 0.008362624794244766, 0.012826905585825443, 0.01494608074426651, -0.02233230322599411, -0.007698376197367907, 0.03863747417926788, -0.03231295943260193, 0.021432019770145416, -0.02086816541850567, 0.018874118104577065, -0.003502744482830167, -0.011985360644757748, -0.007199383806437254, 0.023273879662156105, -0.0030361698009073734, 0.028967980295419693, -0.014958173036575317, 0.005244973115622997, 0.018507342785596848, 0.04779079556465149, -0.024679237976670265, 0.054746102541685104, -0.0039053671061992645, -0.005086366552859545, -0.0020416858606040478, -0.012807164341211319, 0.036224283277988434, -0.0017490830505266786, -0.008120330981910229, 0.01389410812407732, 0.03849583491683006, 0.041085384786129, 0.04075236991047859, 0.014730708673596382, 0.0110030397772789, 0.06038603559136391, -0.04159414395689964, 0.003582837525755167, -0.0003488417132757604, 0.036092158406972885, 0.03538602963089943, 0.005974115338176489, 0.009866185486316681, -0.027510041370987892, -0.038829583674669266, -0.022026116028428078, -0.01673133485019207, 0.011316090822219849, -0.021808844059705734, 0.0018533869879320264, -0.007019206415861845, -0.016330568119883537, -0.02424030378460884, -0.00829255674034357, -0.0062085785903036594, -0.06068211793899536, -0.036971986293792725, 0.04475656896829605, -0.03248043358325958, 0.014406831935048103, -0.03410591930150986, -0.0185098797082901, 0.055669981986284256, 0.04249345511198044, -0.04990239068865776, -0.018107201904058456, 0.04152122884988785, 0.018519362434744835, -0.03577043116092682, 0.006727556232362986, 0.0010804699268192053, -0.014142372645437717, -0.004616796504706144, 0.03389576077461243, 0.000523929251357913, -0.00902485940605402, 0.019840054214000702, 0.023110829293727875, 0.02389870397746563, 0.04042020067572594, 0.00036182397161610425, 0.011280660517513752, -0.002981583820655942, 0.08335526287555695, -0.02112031728029251, 0.006603145506232977, -0.03228142857551575, 0.08030910044908524, 0.02039416693150997, 0.06406176835298538, 0.056807052344083786, 0.03154008090496063, 0.04652760922908783, 0.014855618588626385, -0.028078148141503334, 0.020128844305872917, 0.0068090809509158134, 0.029082879424095154, 0.029833048582077026, 0.019993096590042114, -0.011782640591263771, 0.013979717157781124, -0.029330497607588768, -0.0399792455136776, -0.010555297136306763, 0.008341571316123009, -0.014029722660779953, 0.06206582859158516, 0.003221711376681924, 0.018629614263772964, -0.0029540976975113153, -0.015797164291143417, 0.04767068102955818, 0.058532148599624634, -0.016019713133573532, 0.0046359640546143055, 0.001675585051998496, 0.018969491124153137, 0.008639820851385593, -0.019295092672109604, 0.007423608563840389, 0.0344744510948658, 0.018418751657009125, 0.003597901202738285, 0.0025815535336732864, -0.05664395913481712, -0.039526667445898056, -0.04911678656935692, -0.04259340465068817, -0.037923093885183334, -0.05821072310209274, -0.012798669748008251, 0.028464222326874733, -0.06006774306297302, 0.0069202552549541, -0.028915192931890488, -0.01624610461294651, -0.02683749608695507, -0.02423560805618763, 0.041503727436065674, 0.024548469111323357, 0.03248508274555206, -0.04516582936048508, 0.042582329362630844, 0.006410236470401287, 0.057475924491882324, -0.01895940490067005, -0.05412936583161354, -0.0195362139493227, -0.034623757004737854, 0.010040917433798313, 0.008222362957894802, -0.008183362893760204, -0.02264478988945484, -0.042778223752975464, -0.03865883871912956, 0.013158916495740414, 0.004354740027338266, -0.021962115541100502, -0.019703073427081108, -0.02312086522579193, 0.039024416357278824, 0.011290110647678375, -0.016421109437942505, 0.04067283123731613, 0.07850619405508041, -0.03172541409730911, 0.03042755275964737, 0.0033874555956572294, 0.007017810363322496, -0.030613303184509277, 0.029801947996020317, 0.04539940133690834, -0.021220551803708076, -0.03916393965482712, -0.0004035087185911834, -0.049937181174755096, 0.017921701073646545, -0.002793131396174431, 0.008418909274041653, -0.04054906591773033, 0.041950952261686325, 0.014415943063795567, -0.0777784138917923, 0.022701658308506012, -0.04474621266126633, -0.029286423698067665, -0.01390212494879961, -0.029113303869962692, 0.03890802711248398, 0.04107179120182991, 0.012677558697760105, 0.0000773425490478985, -0.020984428003430367, 0.03936099633574486, 0.04370750114321709, 0.045488085597753525, -0.042911991477012634, 0.016557788476347923, 0.019902614876627922, -0.008458612486720085, -0.008289987221360207, 0.01964951865375042, -0.005024431273341179, -0.016456320881843567, 0.005254375748336315, 0.01082345936447382, 0.026796236634254456, 0.021978281438350677, 0.021731605753302574, 0.012079239822924137, 0.06059221923351288, -0.009362190961837769, -0.009186813607811928, 0.0017154945526272058, 0.0025097450707107782, 0.02865099348127842, -0.0009492094395682216, -0.00031028964440338314, 0.017946207895874977, -0.02930639497935772, -0.049568552523851395, 0.02166903391480446, 0.011358744464814663, 0.027428703382611275, -0.04956666752696037, 0.05302998796105385, -0.0035675133112818003, -0.001799410441890359, 0.055794697254896164, -0.02734970487654209, -0.033257856965065, 0.03262253478169441, -0.020280372351408005, 0.05804692208766937, -0.04824795946478844, 0.03278055414557457, -0.007008152548223734, 0.01212222594767809, 0.04033749923110008, -0.01911952905356884, 0.019395288079977036, 0.00011763993825297803, -0.04616854712367058, -0.030716467648744583, -0.0357106514275074, -0.01955035887658596, -0.020961694419384003, 0.03385115787386894, -0.018934285268187523, -0.06913911551237106, -0.04122480750083923, 0.04691363126039505, 0.058075908571481705, 0.03819805011153221, 0.008723827078938484, 0.0172120351344347, -0.007868656888604164, 0.029564933851361275, 0.03369291126728058, -0.021015146747231483, -0.015612227842211723, -0.009112605825066566, 0.04562234878540039, 0.012968329712748528, -0.04481326416134834, -0.04748006910085678, -0.02893313206732273, -0.023556191474199295, 0.052517715841531754, 0.002697553252801299, -0.031047070398926735, -0.03561965376138687, 0.031014245003461838, -0.035668909549713135, 0.011916399002075195, -0.06814205646514893, 0.0024016713723540306, -0.04651091247797012, 0.03086889162659645, 0.043332841247320175, -0.0629998967051506, 0.0005945080774836242, -0.032335832715034485, 0.04186726734042168, 0.06223171949386597, 0.010468300431966782, -0.04229532554745674, -0.02683205157518387, -0.024845127016305923, -0.02585413306951523, 0.014770328998565674, 0.02560066245496273, 0.0046710725873708725, 0.010571605525910854, -0.04025572910904884, 0.02012934908270836, 0.012153229676187038, -0.010418410412967205, -0.029052847996354103, 0.02575504593551159, 0.03157157823443413, 0.023131223395466805, 0.01789185404777527, -0.018344759941101074, -0.04905343055725098, 0.07048860937356949, -0.0634240135550499, 0.016870131716132164, -0.00633490364998579, -0.026623906567692757, -0.00921578984707594, 0.0372459813952446, 0.017575908452272415, 0.016018051654100418, -0.0072217644192278385, 0.01210231613367796, -0.02599741891026497, 0.04727756604552269, -0.0488407239317894, -0.04992186650633812, 0.03769660368561745, -0.004306499846279621, -0.01455279067158699, 0.023006021976470947, 0.03228619694709778, -0.022553298622369766, 0.028582677245140076, 0.01905428059399128, -0.05118284001946449, 0.030610615387558937, -0.040992408990859985, 0.013548418879508972, 0.0006049375515431166, -0.02801542356610298, 0.006522180046886206, -0.02195889875292778, 0.030633874237537384, 0.01288042776286602, -0.025217309594154358, -0.04335568845272064, -0.07336712628602982, -0.019814223051071167, 0.021418118849396706, 0.012625064700841904, 0.03028452955186367, 0.0015917792916297913, -0.013734889216721058, -0.032438188791275024, 0.003907889127731323, -0.004684413783252239, -0.007521584164351225, -0.03357319161295891, 0.004899824969470501, 0.03834393247961998, 0.021874137222766876, -0.00514204939827323, -0.02316555194556713, -0.05506967753171921, 0.0013589105801656842, 0.0028634818736463785, -0.0384872741997242, -0.06298686563968658, 0.03544391691684723, -0.021227199584245682, 0.0011487482115626335, -0.059671659022569656, 0.03289000689983368, -0.018200291320681572, 0.00947508867830038, 0.033014554530382156, 0.017436407506465912, 0.0015762445982545614, 0.017572231590747833, -0.04502519220113754, 0.053387776017189026, 0.027688980102539062, -0.05155380070209503, -0.03341355547308922, 0.014500830322504044, -0.006855648010969162, 0.03849903494119644, 0.02578144147992134, -0.019059525802731514, -0.023647140711545944, -0.025809677317738533, 0.020581215620040894, -0.03668127954006195, 0.0066289836540818214, -0.022641316056251526, -0.047432683408260345, 0.0013097213814035058, 0.04849151521921158, 0.015310404822230339, -0.044913776218891144, -0.03631478548049927, -0.02760905958712101, 0.002452653367072344, -0.04028061777353287, -0.008700679987668991, -0.030762342736124992, -0.022810932248830795, -0.010135709308087826, 0.05127997323870659, 0.007145830430090427, 0.00820707157254219, -0.031015673652291298, 0.01547059416770935, 0.045180998742580414, 0.0005167066701687872, -0.02151063084602356, -0.06213611364364624, 0.012495675124228, 0.02110644243657589, -0.020616965368390083, -0.001587339211255312, -0.042439453303813934, 0.04440124332904816, -0.03857199475169182, 0.008073652163147926, -0.016460351645946503, 0.0004118398646824062, -0.023434970527887344, -0.016107769683003426, 0.04312850162386894, -0.0433085672557354, 0.015172403305768967, -0.012125479988753796, 0.04614800959825516, 0.03084004856646061, 0.01688132807612419, -0.022513333708047867, -0.03256161883473396, -0.023474955931305885, -0.05492102727293968, 0.023661304265260696, -0.027303820475935936, 0.0014469666639342904, -0.017359765246510506, 0.010272994637489319, 0.0301295705139637, -0.0025859761517494917, 0.0568423755466938, 0.03849583864212036, -0.010726547800004482, -0.0314398854970932, -0.026492610573768616, -0.0037186909466981888, 0.029552314430475235, -0.0009987476514652371, 0.014586510136723518, -0.016326839104294777, -0.037911634892225266, 0.026200393214821815, -0.05544772744178772, -0.04189170151948929, -0.05561135336756706, 0.0016329993959516287, 0.04407818987965584, -0.0033920924179255962, 0.024348633363842964, -0.017801716923713684, -0.036493681371212006, -0.012834570370614529, 0.051877301186323166, -0.017764169722795486, 0.030673379078507423, 0.05753134936094284, 0.008405213244259357, -0.03148438408970833, 0.0000210744037758559, -0.021337417885661125, -0.027365226298570633, -0.03644952550530434, 0.04157942533493042, 0.0000020996949388063513, -0.05478708818554878, 0.027350658550858498, 0.05206496641039848, -0.055836644023656845, -0.05159183591604233, 0.022194672375917435, 0.006376774050295353, -0.02628200128674507, -0.02063443325459957, -0.009560557082295418, -0.008350543677806854, -0.007064861711114645, -0.027441106736660004, 0.04637135565280914, 0.0037220094818621874, 0.027249768376350403, -0.004228068049997091, 0.053316324949264526, -0.0378025583922863, -0.0033093399833887815, 0.02440362423658371, 0.01069272868335247, 0.010327387601137161, -0.04496397078037262, -0.002267954871058464, -0.006862822920084, 0.002763349562883377, 0.044581089168787, -0.02056431584060192, 0.004409825894981623, 0.0063521238043904305, 0.010222703218460083, 0.053604405373334885, -0.0014811796136200428, -0.013134484179317951, 0.04404967650771141, -0.022827690467238426, -0.07305684685707092, -0.02835136465728283, 0.02474147453904152, 0.026276273652911186, 0.015301967039704323, -0.053840961307287216, 0.038995370268821716, 0.04749729856848717, 0.013726669363677502, -0.006914992816746235, -0.07777249068021774, -0.03496045991778374, -0.026913590729236603, -0.04503627121448517, -0.030068568885326385, -0.01112816296517849, 0.0038229788187891245, 0.024799900129437447, 0.0016140192747116089, -0.034459035843610764, -0.015836767852306366, 0.01607426442205906, -0.030610760673880577, -0.002761180279776454, -0.039130792021751404, 0.012615869753062725, -0.040847502648830414, -0.05284556746482849, -0.04715019837021828, 0.028734855353832245, -0.021653423085808754, 0.022624116390943527, -0.029813826084136963, 0.0031557264737784863, 0.02956230938434601, 0.035924527794122696, -0.024582119658589363, 0.005185500718653202, -0.01941235363483429, -0.03513595461845398, -0.015630748122930527, 0.0066276900470256805, -0.0139521025121212, 0.04682484641671181, 0.057882629334926605, -0.01466023363173008, 0.049660202115774155, 0.0016695325030013919, -0.00023367773974314332, -0.03443425893783569, 0.05809125304222107, 0.025080183520913124, 0.04518594592809677, -0.03801453858613968, -0.010990964248776436, -0.03612862527370453, -0.05331333354115486, 0.028123868629336357, -0.0006575774750672281, 0.004106622189283371, 0.0315573550760746, -0.01696896366775036, -0.041530709713697433, 0.0536036416888237, 0.0049563501961529255, 0.017406243830919266, -0.020690130069851875, 0.04083482176065445, 0.018950851634144783, 0.02219693921506405, -0.005065978970378637, 0.001385816023685038, 0.012334330007433891, -0.017536582425236702, 0.011079341173171997, 0.02739085629582405, -0.05288340151309967, 0.048704005777835846, -0.0039894431829452515, -0.014051937498152256, -0.04144902899861336, -0.014951914548873901, 0.019264619797468185, 0.02624056674540043, 0.008780940435826778, 0.00971213262528181, 0.017917679622769356, -0.015815015882253647, -0.0521671436727047, 0.000230172008741647, -0.04316579923033714, -0.03561950847506523, 0.023463455960154533, -0.030497079715132713, -0.013076693750917912, -0.02648863196372986, -0.04016681760549545, 0.01539655588567257, -0.01646185666322708, 0.0020533064380288124, -0.02251167967915535, 0.039994016289711, 0.00021408754400908947, 0.06458509713411331, -0.020062407478690147, 0.021876834332942963, 0.036991268396377563, 0.03587259724736214, -0.03555653989315033, -0.054346099495887756, 0.0018648556433618069, 0.042433492839336395, 0.00011791550787165761, 0.000048461770347785205, -0.02322247251868248, 0.001477029756642878, -0.009511386975646019, -0.007831480354070663, 0.02383626066148281, -0.004189708270132542, -0.00938599556684494, 0.032785814255476, -0.03847428411245346, 0.009807182475924492, -0.045872997492551804, 0.027196498587727547, 0.002749225590378046, -0.02719901315867901, -0.06177004426717758, 0.0006741086253896356, 0.06307345628738403, -0.014170946553349495, 0.028591327369213104, 0.032718319445848465, 0.05336304008960724, -0.009280138649046421, 0.014237059280276299, 0.002262130146846175, 0.03855530545115471, 0.03475019708275795, 0.029903598129749298, -0.009262118488550186, 0.03272409364581108, 0.05921320244669914, -0.022084804251790047, -0.0183748546987772, 0.02501101978123188, 0.014473763294517994, -0.020965544506907463, 0.0022346624173223972, -0.011060812510550022, 0.026349015533924103, -0.006363975815474987, -0.007963231764733791, 0.004530112724751234, -0.0311555415391922, -0.02123500220477581, -0.011356241069734097, -0.032557543367147446, 0.06523875892162323, -0.015950484201312065, -0.014041263610124588, -0.01873273216187954, -0.006780372466892004, 0.0032283994369208813, 0.017791608348488808, 0.000253363570664078, -0.01709958165884018, 0.032231949269771576, 0.04879963397979736, -0.0018696902552619576, 0.049643624573946, 0.031526997685432434, 0.012961597181856632, -0.03348907455801964, 0.04146839678287506, 0.022972235456109047, -0.01367842499166727, -0.027532853186130524, -0.007463913410902023, -0.05365776643157005, 0.018664145842194557, -0.020765317603945732, -0.003365318989381194, 0.05908038839697838, -0.0420675054192543, -0.017215797677636147, -0.06800674647092819, 0.0516696572303772, -0.03382747247815132, -0.006511645391583443, 0.05146557837724686, -0.03142698109149933, -0.03961598128080368, 0.059892624616622925, -0.004760845098644495, 0.03790220990777016, 0.03672438859939575, 0.06390605121850967, 0.01303202286362648, 0.05378109589219093, -0.005650870036333799, -0.0434904582798481, -0.003906851168721914, 0.01344307791441679, -0.040997255593538284, -0.03732075169682503, -0.011915947310626507, -0.02710081823170185, -0.01256224699318409, -0.0168097373098135, -0.03516607731580734, -0.007920436561107635, 0.0325198732316494, -0.01192891038954258, -0.03144911676645279, -0.006656363140791655, 0.03970641642808914, -0.05604469031095505, 0.04088957980275154, 0.02269580215215683, 0.049208082258701324, 0.022303657606244087, -0.03931036219000816, -0.04387668892741203, -0.03654671460390091, -0.02432035654783249, -0.0250533614307642, 0.023989852517843246, -0.0020058336667716503, -0.013149655424058437, -0.01828700676560402, -0.0393429659307003, -0.04631432518362999, -0.0019573564641177654, -0.030370086431503296, -0.05953262746334076, 0.017558231949806213, 0.03741845861077309, -0.00023344162036664784, 0.005519191734492779, -0.034685324877500534, 0.013014489784836769, 0.025234727188944817, 0.06295514106750488, 0.006533166393637657, 0.04795597493648529, 0.06118473783135414, 0.006068889517337084, 0.011994123458862305, -0.031262755393981934, 0.005974586587399244, -0.010086583904922009, 0.005006910767406225, 0.0020966187585145235, 0.0019156585913151503, -0.029540155082941055, -0.050885025411844254, -0.010428817011415958, 0.039125386625528336, 0.017951229587197304, -0.03992132842540741, -0.05830158293247223, -0.008285321295261383, -0.0717160776257515, 0.0015047881752252579, -0.025379279628396034, 0.030012058094143867, 0.003321521682664752, -0.0011313677532598376, 0.0019952720031142235, -0.04976063221693039, 0.16232535243034363, 0.03606314957141876, 0.03297961875796318, 0.0351678803563118, -0.0018889361526817083, 0.04783123359084129, 0.024185562506318092, -0.025549717247486115, -0.00624833395704627, -0.0409182570874691, 0.021754413843154907, 0.020818613469600677, 0.006100079510360956, 0.02343175560235977, 0.01189805194735527, 0.06136118620634079, -0.056862857192754745, -0.0002466299629304558, 0.032081540673971176, -0.06633086502552032, -0.06462784111499786, 0.028973260894417763, -0.001824835198931396, 0.025219231843948364, -0.014085143804550171, 0.04038408026099205, 0.04193643108010292, -0.032288335263729095, -0.0006098787416703999, -0.047359399497509, 0.022817345336079597, -0.035772789269685745, 0.018506042659282684, 0.01691269688308239, -0.03078444115817547, 0.04162263870239258, -0.013480638153851032, -0.033058710396289825, -0.008069545030593872, 0.007488830480724573, -0.000987943378277123, 0.0020988071337342262, 0.060218196362257004, -0.019579915329813957, 0.00939234346151352, 0.03415009379386902, -0.007982960902154446, 0.02878669835627079, 0.039334382861852646, -0.029497448354959488, 0.04635098576545715, -0.013564705848693848, 0.052689410746097565, -0.0014903642004355788, -0.012367072515189648, -0.006107720080763102, -0.030406370759010315, -0.019900694489479065, 0.012786869890987873, -0.010424239560961723, 0.04956931248307228, 0.008705956861376762, -0.00675157317891717, 0.015166579745709896, -0.01214334275573492, 0.0012134447460994124, 0.017911231145262718, 0.04021018370985985, -0.01900200918316841, -0.012646634131669998, 0.009608648717403412, -0.0033159707672894, -0.019963553175330162, -0.01669689454138279, -0.0028673720080405474, 0.05050674080848694, -0.04433607682585716, 0.012588536366820335, -0.012770631350576878, -0.04467127099633217, 0.008910206146538258, -0.0091141602024436, 0.010411374270915985, -0.02481728605926037, 0.03149036318063736, 0.05261898413300514, -0.03354713320732117, -0.022105468437075615, -0.049833234399557114, 0.027000071480870247, 0.04075605422258377, 0.025598257780075073, -0.017243321985006332, 0.0010072283912450075, -0.020862044766545296 ]
All recent Geosoft Desktop installs are available for you to download. Haven't found what you are looking for? Contact Support for previous versions or request a DVD. New time domain electromagnetic inversion, enhanced 3D surfaces generated faster, plus new and simplified tools & workflows give you more control and flexibility. This update is for customers who have a current maintenance subscription and will update your software to Oasis montaj 9.5.2, Target 9.5.2, or Target for ArcGIS 9.5.2. Full installs, updates, and release notes for Oasis montaj and Oasis montaj software extensions. Full installs, updates, and release notes for Target and Target software extensions. ะŸะพะปะฝั‹ะต ะฃัั‚ะฐะฝะพะฒะพะบ ะธ ะฟั€ะธะผะตั‡ะฐะฝะธั ะบ ะฒั‹ะฟัƒัะบัƒ ะดะปั ั€ะพััะธะนัะบะพะณะพ ะฟั€ะพะณั€ะฐะผะผะฝะพะณะพ ะพะฑะตัะฟะตั‡ะตะฝะธั. Full installs, updates, and release notes for Target for ArcGIS. Full installs, updates, and release notes for Geochemistry for ArcGIS. Add-in for ArcGIS Pro to import and display Geosoft raster files (.grd) and view section rasters in 3D scenes. Visualize a variety of geospatial formats, integrate datasets in 3D and maps, and share results with others. Plug-in to view and use Geosoft grids and maps as layers in ArcMap. Plug-in to view and use Geosoft grids, shaded grids, and map files in MapInfo. Server technology for publishing, distributing and discovering exploration data. Tools and help resources to create custom GX functionality for Oasis montaj. Enter your comments or questions about this page (up to 1000 characters). If you require technical support, Submit a Support Request.
[ -0.005655000451952219, 0.03549306467175484, -0.02465064823627472, -0.013751138933002949, -0.01958312839269638, 0.006660751532763243, 0.00003251068847021088, 0.0070547196082770824, 0.02050812542438507, 0.022722112014889717, 0.04326307773590088, 0.015015387907624245, 0.02827596478164196, -0.0466722697019577, 0.0069691501557827, 0.007835212163627148, -0.018903572112321854, -0.02222219668328762, -0.00030036544194445014, 0.002601326210424304, 0.019229533150792122, 0.027058837935328484, -0.07055481523275375, -0.05290265753865242, -0.027741989120841026, 0.018829964101314545, 0.03663180395960808, -0.010581607930362225, 0.04326758161187172, 0.06292969733476639, -0.02243836410343647, -0.04699656367301941, 0.01947883889079094, -0.052722007036209106, -0.005631098989397287, -0.023297367617487907, 0.02896321378648281, -0.03922537714242935, 0.0025726899039000273, -0.04102915897965431, -0.0006019113352522254, -0.0033119143918156624, 0.016436977311968803, -0.041545771062374115, -0.04028663411736488, -0.013580218888819218, -0.016058942303061485, -0.04300981014966965, -0.006348484195768833, -0.009215585887432098, 0.010569044388830662, 0.021089067682623863, 0.012749825604259968, -0.027541061863303185, -0.02448875829577446, 0.01812833920121193, 0.0014665779890492558, -0.033868204802274704, -0.027903491631150246, 0.006569306831806898, 0.006056746933609247, 0.038542356342077255, 0.012873243540525436, -0.05385848134756088, 0.027371881529688835, 0.04903491213917732, -0.009710755199193954, -0.007422471884638071, 0.038906943053007126, -0.020983584225177765, -0.019535008817911148, 0.03144018352031708, 0.0156744122505188, -0.0181852038949728, -0.006608136929571629, 0.00368897314183414, 0.0025258040986955166, -0.013512066565454006, 0.00400036433711648, 0.00005290535045787692, 0.015075290575623512, 0.062113817781209946, 0.0036079916171729565, 0.030250709503889084, -0.0426049679517746, -0.031159523874521255, 0.0027878987602889538, 0.0020067275036126375, -0.008868889883160591, 0.023279506713151932, -0.024041911587119102, 0.05050640553236008, 0.01197123434394598, -0.0029944777488708496, 0.03120039775967598, 0.05001586303114891, -0.031890880316495895, 0.027587439864873886, 0.00825774297118187, 0.009152481332421303, 0.039839472621679306, 0.06963299214839935, -0.018201014026999474, 0.043059442192316055, -0.019810162484645844, 0.008041232824325562, 0.019776826724410057, -0.021513786166906357, -0.002405531005933881, -0.04506310820579529, 0.02538847178220749, -0.014739652164280415, 0.015711748972535133, -0.03555631637573242, -0.007155450526624918, 0.06086083501577377, 0.022177640348672867, 0.05750317871570587, -0.026879699900746346, 0.01572105661034584, -0.007084802258759737, -0.012853394262492657, 0.0489661768078804, -0.03697039186954498, -0.017349325120449066, -0.07391960173845291, -0.02019910328090191, 0.05410962551832199, -0.02147434838116169, -0.06327541917562485, -0.014740243554115295, -0.014206652529537678, -0.007931951433420181, 0.027003740891814232, -0.001402391935698688, 0.012346176430583, -0.0005711953854188323, 0.010397813282907009, 0.023891059681773186, -0.056350503116846085, 0.022337842732667923, 0.005558027420192957, 0.010258223861455917, 0.1007758229970932, -0.00900260265916586, 0.026644008234143257, 0.021679243072867393, -0.01943008229136467, -0.04890502989292145, 0.0339229553937912, -0.033834997564554214, 0.024890629574656487, -0.0010958191705867648, 0.028631726279854774, 0.03926457464694977, -0.018650099635124207, 0.0037156357429921627, 0.022083796560764313, 0.032958731055259705, 0.04100360721349716, -0.010926286689937115, 0.013141071423888206, -0.009884131141006947, 0.029352717101573944, -0.01662999577820301, 0.046321697533130646, -0.03877679258584976, -0.036895979195833206, -0.0136161670088768, -0.05078745260834694, 0.03214177489280701, -0.005348864011466503, -0.009531158022582531, 0.017204931005835533, 0.01877581514418125, 0.025724424049258232, 0.033448196947574615, 0.005956641398370266, 0.04106593504548073, 0.03766511753201485, -0.02389030158519745, -0.010730927810072899, 0.02575778029859066, 0.05745440348982811, 0.0013290500501170754, -0.001027856138534844, -0.028715861961245537, -0.01719406433403492, -0.03746595233678818, -0.03494301065802574, -0.004780963994562626, 0.02301819995045662, 0.01075028721243143, 0.027579404413700104, -0.024238402023911476, 0.00604110537096858, -0.024722393602132797, 0.01125907152891159, -0.0029363734647631645, -0.04955343157052994, -0.04305757209658623, 0.059900958091020584, -0.027768410742282867, 0.011373245157301426, 0.007603964302688837, -0.0030210150871425867, 0.008630141615867615, 0.055826880037784576, -0.03311894088983536, 0.0016723405569791794, 0.08262945711612701, -0.006004944443702698, -0.04940183833241463, -0.004240958485752344, 0.012843672186136246, -0.036473993211984634, -0.01501521561294794, 0.074063740670681, -0.014161458238959312, -0.0056850784458220005, 0.018487969413399696, 0.010784345678985119, 0.03057522512972355, 0.04049425572156906, 0.016522720456123352, 0.03691033646464348, 0.020236164331436157, 0.07436437159776688, -0.017430977895855904, 0.004409601911902428, -0.007532288320362568, 0.04032968357205391, 0.021300867199897766, 0.04972658306360245, 0.032057955861091614, 0.03859434276819229, 0.056160882115364075, 0.03738545626401901, -0.005626280792057514, 0.03572074696421623, 0.022774847224354744, 0.000563966459594667, 0.013470219448208809, -0.0026454513426870108, -0.014736850745975971, 0.03944353759288788, 0.006837908178567886, -0.006826473865658045, -0.0023084795102477074, 0.04417010769248009, -0.03269178420305252, 0.023279959335923195, 0.00836449209600687, 0.02890925109386444, -0.0433196984231472, -0.0076992386020720005, 0.05540407449007034, 0.07627305388450623, -0.023953238502144814, -0.0320865735411644, 0.027443574741482735, 0.027408041059970856, 0.005320308264344931, 0.026621242985129356, 0.014764121733605862, 0.055045079439878464, -0.02629936672747135, 0.00003204247332178056, -0.01860852539539337, -0.051715802401304245, -0.06452181935310364, -0.06197237968444824, -0.04463927820324898, -0.040185391902923584, -0.07046721130609512, 0.012242428958415985, 0.0022445782087743282, -0.03371572494506836, 0.0016087065450847149, -0.006977591663599014, 0.017644042149186134, -0.023272991180419922, -0.007545930333435535, 0.022189868614077568, 0.033447861671447754, 0.05209685117006302, -0.017644396051764488, 0.048494353890419006, -0.0014440813101828098, 0.05060518532991409, -0.03465483710169792, -0.01333297323435545, -0.017183776944875717, 0.0158008374273777, -0.0015759835951030254, -0.015244202688336372, 0.016314100474119186, 0.0029393769800662994, -0.01695479266345501, -0.040080878883600235, -0.0058273798786103725, 0.00587445218116045, -0.008771637454628944, -0.0005099725094623864, -0.01869845576584339, 0.04625413566827774, 0.04430156946182251, -0.013040211983025074, 0.04230736196041107, 0.042903609573841095, -0.03667590394616127, 0.042501479387283325, 0.02379670739173889, -0.007108431775122881, -0.05520695820450783, 0.040792595595121384, 0.07894666492938995, -0.025080543011426926, -0.018287941813468933, -0.028641855344176292, -0.023459577932953835, 0.012762059457600117, 0.01645861379802227, -0.007831649854779243, -0.022469298914074898, 0.040038689970970154, 0.017701737582683563, -0.0758657231926918, 0.01894945465028286, -0.035992078483104706, -0.05085495859384537, -0.03760485351085663, -0.022464502602815628, 0.021373465657234192, 0.017028050497174263, 0.03169691935181618, -0.016846084967255592, -0.031036928296089172, 0.020346667617559433, 0.02674296870827675, 0.03529760614037514, -0.03307425603270531, 0.052647605538368225, 0.024486590176820755, 0.010023475624620914, 0.023609178140759468, 0.019664347171783447, -0.006949722766876221, 0.004749121144413948, 0.008627195842564106, 0.004947007168084383, 0.0051445080898702145, 0.007795039098709822, -0.0017229984514415264, 0.03935975208878517, 0.05254001170396805, -0.051544059067964554, -0.012810807675123215, 0.010723448358476162, 0.014575825072824955, 0.02859380654990673, -0.009066751226782799, 0.003693815553560853, -0.013413392007350922, -0.021870683878660202, -0.054324787110090256, 0.03533144295215607, 0.023467378690838814, 0.05277089774608612, -0.053620774298906326, 0.04722898453474045, -0.011356483213603497, -0.04657904431223869, 0.051066577434539795, -0.04055827111005783, -0.008170790039002895, 0.04737377166748047, -0.03214484825730324, 0.024460874497890472, -0.03456146642565727, 0.027185805141925812, -0.024009637534618378, 0.011928793042898178, 0.015068748965859413, 0.01639089174568653, 0.02899794653058052, 0.007094279862940311, -0.00555310258641839, -0.0214020237326622, -0.05483211576938629, -0.014902576804161072, -0.030080975964665413, 0.02575632743537426, -0.011389571242034435, -0.06812954694032669, -0.0716378316283226, 0.04466812312602997, 0.04953910782933235, 0.04910553991794586, 0.0018434639787301421, 0.04733439162373543, 0.006892313715070486, 0.016278501600027084, 0.024185381829738617, -0.015440789051353931, -0.0029615736566483974, -0.07050874829292297, 0.054142724722623825, 0.0189170241355896, -0.021329840645194054, -0.009012329392135143, -0.02481204830110073, -0.04721355065703392, 0.05071229860186577, -0.003761694300919771, -0.012309352867305279, -0.04197121039032936, 0.0015249742427840829, -0.03701412305235863, 0.008841133676469326, -0.015410509891808033, -0.01798349991440773, -0.03560703992843628, 0.02525387331843376, 0.026293152943253517, -0.06861361116170883, -0.03150008246302605, -0.04951412230730057, 0.0316297672688961, 0.02825513482093811, -0.021165357902646065, -0.029516665264964104, -0.03909678012132645, -0.01056055910885334, -0.03425455093383789, 0.013025447726249695, 0.020176926627755165, 0.017200253903865814, 0.003939022775739431, -0.04871191829442978, 0.016818590462207794, 0.018372198566794395, -0.004606490023434162, -0.014554907567799091, -0.0019322804873809218, 0.02142997831106186, 0.004360383376479149, 0.034104473888874054, 0.016403792425990105, -0.01954640820622444, 0.029872365295886993, -0.04766259714961052, 0.03066844865679741, -0.012449745088815689, -0.024425547569990158, 0.011785989627242088, 0.015692103654146194, -0.001252779271453619, 0.04970746114850044, -0.007799314800649881, 0.027414867654442787, 0.014330631121993065, 0.0467306524515152, -0.04852481558918953, -0.036999743431806564, 0.042775992304086685, -0.04899042472243309, -0.010205532424151897, -0.004974770825356245, 0.04076195880770683, -0.030607152730226517, 0.026043133810162544, 0.0025872085243463516, -0.00660368800163269, 0.013949285261332989, -0.04864724725484848, 0.018509456887841225, 0.0013862670166417956, -0.025241723284125328, -0.0011182812741026282, -0.026801757514476776, 0.040436819195747375, 0.0028021663893014193, -0.0011072983033955097, -0.03973352909088135, -0.052188560366630554, -0.005798076745122671, 0.007443518843501806, -0.019136132672429085, 0.033111024647951126, -0.0038308461662381887, -0.031682878732681274, 0.0009446074836887419, -0.010570927523076534, -0.008889378048479557, -0.007310754619538784, -0.006164524704217911, 0.015487270429730415, 0.031735725700855255, 0.011102504096925259, 0.008120893500745296, -0.02326403185725212, -0.038940221071243286, 0.009429315105080605, -0.009162407368421555, -0.028675293549895287, -0.0500272735953331, 0.00578667689114809, -0.024126915261149406, -0.008986248634755611, -0.030153164640069008, -0.01893504709005356, -0.030580421909689903, 0.0070325881242752075, 0.03383413329720497, 0.010975109413266182, 0.004509030841290951, -0.01523530576378107, -0.05610416829586029, 0.050248268991708755, 0.02384774759411812, -0.06649254262447357, -0.02571098878979683, 0.0186481811106205, 0.013067125342786312, 0.0555589534342289, -0.01660822331905365, -0.011449368670582771, -0.04126532003283501, -0.0373680405318737, 0.007060250733047724, -0.04547152668237686, -0.023575568571686745, -0.048531096428632736, -0.05420977994799614, -0.008275662548840046, 0.03737325221300125, 0.04367375746369362, -0.0347135029733181, -0.003909237217158079, -0.03335169702768326, 0.001973944716155529, -0.04918752610683441, -0.016426673159003258, -0.021622678264975548, -0.027567073702812195, 0.004551930818706751, 0.07233185321092606, -0.02559281326830387, -0.0010777059942483902, -0.022724060341715813, 0.027125073596835136, 0.005914743524044752, -0.021665997803211212, -0.04972563683986664, -0.022762436419725418, 0.0007423888309858739, 0.011084521189332008, 0.0033941776491701603, 0.0010409553069621325, -0.04443644359707832, 0.039069388061761856, -0.04898351803421974, 0.002482994692400098, -0.001906757359392941, 0.005408433731645346, -0.02079937793314457, -0.011174769140779972, 0.05116217955946922, -0.007946710102260113, 0.006063631735742092, -0.003150687087327242, 0.059805553406476974, 0.035185303539037704, 0.053315069526433945, -0.03630958870053291, -0.039684467017650604, -0.04600435867905617, -0.050305336713790894, 0.023898271843791008, -0.04158848151564598, -0.026388289406895638, -0.03668032959103584, -0.020276442170143127, 0.030718239024281502, 0.007323334459215403, 0.05980808287858963, 0.0666012093424797, 0.021109599620103836, -0.013228518888354301, -0.03293761610984802, 0.0022247235756367445, 0.03487229347229004, -0.01830727607011795, 0.010813464410603046, -0.01740671508014202, -0.026461008936166763, 0.009519555605947971, -0.03639163449406624, -0.05962248519062996, -0.035486627370119095, 0.004594170954078436, 0.07189785689115524, -0.020815076306462288, 0.04387574642896652, 0.000174619272002019, -0.05746278166770935, -0.030703891068696976, 0.021798890084028244, -0.009031008929014206, 0.015867125242948532, 0.047524672001600266, 0.014868008904159069, 0.008078726939857006, 0.016672132536768913, -0.010734436102211475, 0.01927805133163929, -0.039551347494125366, 0.06438229978084564, -0.006644496228545904, -0.037300627678632736, 0.02788396179676056, 0.06900990754365921, -0.033613283187150955, -0.051505107432603836, 0.017412176355719566, 0.02442229725420475, -0.012041528709232807, -0.056878864765167236, 0.014753238297998905, -0.014611630700528622, -0.0165338683873415, -0.015900174155831337, 0.03977104276418686, 0.020956920459866524, 0.010510108433663845, 0.023428386077284813, 0.0193964671343565, -0.03318023681640625, 0.0006497831200249493, 0.040552228689193726, 0.009341583587229252, -0.04127127304673195, -0.025101594626903534, -0.02467731200158596, -0.009850678034126759, 0.016313714906573296, 0.04718063026666641, -0.012529999017715454, 0.02398800663650036, 0.03771068528294563, 0.029222611337900162, 0.06464353948831558, -0.011420559138059616, 0.003346892772242427, 0.011636518873274326, -0.022973719984292984, -0.10283497720956802, -0.02426726371049881, 0.03012801706790924, 0.016523053869605064, 0.008239300921559334, -0.03884878382086754, 0.009198155254125595, 0.07737908512353897, 0.005883834324777126, -0.006652069743722677, -0.06881456822156906, -0.026035955175757408, -0.0218623299151659, -0.026433536782860756, 0.012435341253876686, -0.035661667585372925, -0.016509195789694786, 0.01085709035396576, 0.002401812933385372, -0.035323843359947205, -0.001495053176768124, 0.013556677848100662, -0.01604294218122959, 0.00915776751935482, -0.034986354410648346, 0.012819412164390087, -0.04074739292263985, -0.05550028383731842, -0.02827451005578041, 0.017103783786296844, -0.007187733426690102, -0.00762526597827673, -0.03601169213652611, 0.009302245453000069, 0.01177071500569582, 0.016162065789103508, -0.00009256674820790067, 0.033209558576345444, -0.01725374162197113, -0.028382427990436554, -0.013769681565463543, 0.005006120074540377, -0.028447549790143967, 0.029441798105835915, 0.056338511407375336, -0.024274539202451706, 0.057328395545482635, 0.000030329447326948866, -0.02362086810171604, -0.021751733496785164, 0.006240212824195623, 0.050222527235746384, -0.013180773705244064, -0.04600254446268082, -0.014593888074159622, 0.0009541908511891961, -0.028679225593805313, 0.01866830699145794, -0.025068381801247597, 0.034972045570611954, 0.021325062960386276, -0.021916646510362625, -0.034947481006383896, 0.044062335044145584, 0.03304845839738846, -0.00561446463689208, 0.012382864952087402, 0.006215663161128759, -0.0096664410084486, -0.026871899142861366, 0.007433088030666113, 0.013502749614417553, 0.02893221750855446, -0.022079812362790108, 0.02509123831987381, 0.008005968295037746, 0.0047079892829060555, 0.03517633303999901, -0.03374190255999565, -0.018977243453264236, -0.024536287412047386, -0.01614798605442047, -0.0015246617840602994, 0.05688134580850601, 0.019124865531921387, 0.02078157104551792, 0.008067002519965172, -0.009336430579423904, -0.05647716298699379, 0.03347035124897957, -0.023565486073493958, -0.05803058296442032, 0.028367862105369568, -0.03629982843995094, -0.007538928184658289, -0.01645621284842491, -0.03311171755194664, -0.004334055352956057, -0.03306925669312477, -0.01794215478003025, -0.0013623451814055443, 0.016349777579307556, 0.013461478054523468, 0.04559545964002609, -0.03475242853164673, 0.004787236452102661, 0.004505999386310577, 0.04218948632478714, -0.050106946378946304, -0.052715033292770386, -0.005011100322008133, 0.037815190851688385, 0.0007018462056294084, -0.005372120998799801, -0.022957677021622658, 0.02717377431690693, -0.020295780152082443, 0.00007406153599731624, 0.007540188729763031, 0.010323292575776577, 0.01386009156703949, 0.02600545808672905, -0.03382506221532822, 0.0261447262018919, -0.03594562038779259, 0.023130394518375397, -0.029976829886436462, -0.03772380203008652, -0.046138763427734375, 0.025893965736031532, 0.03289356082677841, -0.006450732238590717, 0.023621665313839912, 0.017473358660936356, 0.0317128486931324, -0.027794359251856804, 0.005190807394683361, 0.012669453397393227, 0.0272144116461277, 0.06223897635936737, 0.0665399357676506, -0.006002817302942276, 0.02465258352458477, 0.058307748287916183, -0.009606000036001205, -0.009276309981942177, 0.02632097154855728, 0.032497648149728775, -0.014268884435296059, 0.01666235737502575, -0.02203955501317978, 0.01351021695882082, 0.020457835868000984, -0.019906386733055115, -0.007193675730377436, 0.0018144113710150123, -0.014025327749550343, -0.0038430746644735336, -0.019039953127503395, 0.025490926578640938, -0.04102926701307297, -0.000525476410984993, -0.0007585154380649328, -0.02149510197341442, 0.017442921176552773, 0.006247219163924456, 0.021027417853474617, 0.019863862544298172, 0.03778985142707825, 0.05308444797992706, -0.003670665668323636, 0.03893554210662842, 0.01685219071805477, 0.012601965107023716, -0.026502054184675217, 0.012135161086916924, 0.005745782516896725, -0.00561400456354022, -0.026141228154301643, -0.006068426184356213, -0.06534682959318161, 0.01663992740213871, -0.026743557304143906, -0.020861290395259857, 0.03463679179549217, -0.06579282879829407, -0.0480588860809803, -0.07137808948755264, 0.03788001835346222, -0.020365573465824127, -0.01427504699677229, 0.04188239574432373, -0.01238400861620903, -0.03373222053050995, 0.057925209403038025, -0.002694283612072468, 0.03455260023474693, 0.013920464552938938, 0.056015487760305405, -0.01837294176220894, 0.04227465018630028, 0.03579942137002945, -0.011191023513674736, 0.012099545449018478, 0.024832794442772865, -0.03404955193400383, -0.02389865182340145, -0.010184052400290966, -0.011315030045807362, -0.00600134301930666, -0.0027434062212705612, -0.023779217153787613, 0.0021304721012711525, 0.04523695632815361, -0.02348577417433262, -0.028248416259884834, 0.024509822949767113, 0.047014269977808, -0.02256348729133606, 0.012375411577522755, -0.0015472352970391512, 0.026402676478028297, -0.004108770284801722, -0.026433691382408142, -0.03653230145573616, -0.05957711115479469, -0.004366278648376465, -0.05533389747142792, 0.028492014855146408, -0.00041715853149071336, -0.005275516305118799, -0.007312107365578413, -0.03201930969953537, -0.03254371136426926, -0.010336498729884624, -0.03687494620680809, -0.03064882382750511, 0.007017862517386675, 0.05008893087506294, 0.015356131829321384, 0.04036090150475502, -0.027580508962273598, 0.0014617717824876308, 0.01328169833868742, 0.053179483860731125, 0.020708654075860977, 0.04317646846175194, 0.043240152299404144, -0.014172367751598358, -0.0006768123712390661, -0.018360504880547523, 0.009386659599840641, -0.0258026123046875, -0.009970889426767826, 0.004609988071024418, 0.011353484354913235, -0.03826754912734032, -0.08719760924577713, -0.011003884486854076, 0.029832469299435616, -0.0022953911684453487, -0.04005194082856178, -0.03949318453669548, 0.0030121358577162027, -0.06507088243961334, -0.006512558087706566, -0.0434405617415905, -0.0026896530762314796, 0.025583315640687943, -0.0023124893195927143, 0.017939457669854164, -0.0779699981212616, 0.1562647521495819, 0.07003840059041977, 0.024325955659151077, 0.00046960823237895966, 0.04100974276661873, 0.06968759745359421, 0.01118231937289238, 0.00214734417386353, 0.004578247666358948, -0.07362543791532516, 0.03503807261586189, -0.012470502406358719, 0.008623718284070492, -0.0010185352293774486, -0.001586186233907938, 0.049601487815380096, -0.025909027084708214, 0.007674320600926876, 0.026112988591194153, -0.061425644904375076, -0.05540313199162483, 0.021059174090623856, 0.009655521251261234, 0.029784947633743286, 0.018883997574448586, 0.01754426211118698, 0.020695917308330536, -0.05659004673361778, 0.016253262758255005, -0.035606857389211655, -0.0051551321521401405, -0.016276922076940536, 0.011376278474926949, -0.02973339520394802, -0.021119005978107452, 0.053019240498542786, -0.01618947647511959, -0.04469610005617142, -0.00415171030908823, 0.019295604899525642, -0.01583094149827957, -0.011322731152176857, 0.020218372344970703, -0.04105842486023903, 0.0023968787863850594, 0.04216935485601425, -0.037525828927755356, 0.01016987394541502, 0.04002096876502037, -0.019185619428753853, 0.05533459410071373, -0.0531361848115921, 0.00404695887118578, -0.02904539182782173, -0.049108173698186874, -0.010004224255681038, -0.005605795420706272, -0.016003388911485672, -0.000018697142877499573, 0.0065803853794932365, 0.04755420237779617, 0.003933655098080635, -0.036777377128601074, 0.010996540077030659, -0.03283943608403206, 0.014759709127247334, 0.024874361231923103, 0.014432939700782299, -0.008903180249035358, -0.028577042743563652, -0.015496698208153248, -0.01885346695780754, -0.023427627980709076, -0.024623986333608627, 0.0014679711312055588, 0.03594692423939705, 0.0062697939574718475, 0.02556472457945347, 0.005099007859826088, 0.0007657480891793966, -0.021178830415010452, -0.0015171370469033718, -0.0198267363011837, -0.003929399885237217, 0.01645498350262642, 0.04422779008746147, -0.02101488597691059, -0.051402587443590164, -0.018355416133999825, 0.061043255031108856, 0.031626224517822266, 0.02960968390107155, -0.011018214747309685, -0.04161781817674637, -0.011169255711138248 ]
(SOCIAL MEDIA) What exactly is Clubhouse, and why is it the quarantine app sensation? There's a few reasons you should definitely be checking out right now! Anais Dersimonian, Staff Writer The new exclusive app Clubhouse is challenging what social media can be โ€“ and it might possibly be the best thing to blow up during quarantine. Developed by ex-Google employee Rohan Seth and Silicon Valley entrepreneur Paul Davison, Clubhouse has only been gaining in popularity since lockdown. Here's why you need to join immediately: What is Clubhouse? Clubhouse is like if subreddit pages were live podcasts. Or maybe if niche, topic-centric Zoom chatrooms could connect you with people from all over the world. But it's ONLY audio, making it perfect for this period of lockdown where no one truly looks their best. From networking events to heated debates about arts and culture to book clubs, you can truly find anything you want on Clubhouse. And if you don't see a room that peaks your interest, you can make one yourself. Why is it special? Here's my hot take: Clubhouse is democratizing the podcast process. When you enter a room for women entrepreneurs in [insert your industry], you not only hear from the established experts, but you'll also have a chance to listen to up-and-coming users with great questions. And, if you want, you can request to speak as well. If you click anyone's icon, you can see their bio and links to their Instagram, Twitter, etc. For professionals looking to network in a deeper way, Clubhouse is making it easier to find up and coming creatives. If you're not necessarily looking to network, there's still so much niche material to discover on the app. Recently, I spent an hour on Clubhouse listening to users discuss the differences in American and British street fashion. It got heated, but I learned A LOT. The celebrities! Did I mention there's a TON of celebrities on the app? Tiffany Haddish, Virgil Abloh, and Lakeith Stanfield are regulars in rooms โ€“ and often host scheduled events. The proximity to all kinds of people, including the famous, is definitely a huge draw. How do you get on? Anyone with an iPhone can make an account, but as of now you need to be "nominated" by someone in your contacts who is already on the app. Think Google+ but cooler. With lockdown giving us so much free time that our podcasts and shows can't keep up with the demand, Clubhouse is a self-sustaining content mecca. Rooms often go on for days, as users in later time zones will pick up where others left off when they need to get some sleep. And the cycle continues. Though I'm still wrapping my brain around it, I can say with fair certainty that Clubhouse is very, very exciting. If you have an hour (or 24) to spare, try it out for yourself โ€“ I promise, you won't be disappointed. Related Topics:2020AppclubhousequarantineSocial MediaThe News Anaรฏs DerSimonian is a writer, filmmaker, and educator interested in media, culture and the arts. She is Clark University Alumni with a degree in Culture Studies and Screen Studies. She has produced various documentary and narrative projects, including a profile on an NGO in Yerevan, Armenia that provides micro-loans to cottage industries and entrepreneurs based in rural regions to help create jobs, self-sufficiency, and to stimulate the post-Soviet economy. She is currently based in Boston. Besides filmmaking, Anaรฏs enjoys reading good fiction and watching sketch and stand-up comedy. Don't panic! Google has released a new core algorithm (SOCIAL MEDIA) Superpage is a contact page for influencers that also allows users with a fanbase to charge fans money for guaranteed attention on their message. At times, our inboxes can get out of control. Besides email from our family and friends, marketing and spam emails wind up in there, too. While for some of us, it isn't too bad to handle. Some people might find it a little harder to manage because of the great influx of messages they receive. And, some of those people are influencers. Well, that is one company's target โ€“ if you have a fanbase, you have an influence. Superpage is a "contact page for influencers." According to the company's website, their product will help influencers declutter their inboxes and offer them a better communication setup. "DMs & e-mails were built for generic human communication. With huge follower-base & more people seeking their time, influencers need a slightly different communication setup โ€“ designed just for them. That's what we're building at Superpage โ€“ a communication system uniquely crafted for influencers," wrote Superpage Founder Srivatsa Mudumby. Who can get Superpage? Superpage is meant for influencers, creators, artists, writers, entrepreneurs, and just about anyone with a social media presence. The platform allows fans to directly connect with influencers by letting them send a message through the influencer's Superpage. So, instead of hoping to receive a reply from the DM they sent on Instagram or TikTok, Superpage guarantees a reply, as long as it isn't illicit or spammy of course. But, while Superpage lets fans communicate with their idol, it doesn't do so for free. Fans "pay what they want" to send a message. However, the website doesn't make it clear whether what you pay makes a difference. If someone pays more, will their message get prioritized? I doubt a $10 ticket gave anyone the chance to choose between general admission or VIP. You sign up and set up your personalized page by adding a bio, display picture, cover photo, topics you'd like to discuss, etc. Once you link your bank account to your Superpage account, you can share your page on social media, website, or blog post. Through your unique "Superpage link" anyone can send you "Super texts" (messages). In your Dashboard, you can view, manage, and reply to your messages. Superpage uses "restricted messaging", which means each sender receives a limited number of messages to follow-up. Once you're finished replying, the conversation will automatically close. There is no monthly fee to use Superpage. The company makes money by charging a 5% commission plus credit card fees. And, it uses Stripe to process payments directly to the influencer's bank account. "People want to talk to influencers of the world but because of huge volume of messages & poor incentivization, influencers can never respond to everyone mindfully. We spoke to a ton of influencers and almost everyone complained "my inboxes are spammed," wrote Mudumby. Superpage does provide a new way for fans to reach out to their idols, but is it more like a way for them to charge for office hours? One thing is for sure, it's a way for influencers to reach out to fans, but make money in the process, too. It's up to you to decide if it's something you'd put your money into. As for a decluttered inbox, it does seem like all those emails and messages might not end up in your messy inbox. Instead, they will live on the platform's dashboard in a, hopefully, more organized manner. (SOCIAL MEDIA) Gen Z's favorite app TikTok is the modern epicenter for cultural appropriation โ€“ why you as a business owner should care. Quarantine has been the catalyst for a sleuth of new cultural phenomena โ€“ Tiger King, Zoom, and baking addictions, to name a few. Perhaps most notably, TikTok has seen user numbers skyrocket since lockdown. And I don't think those numbers are going down any time soon. TikTok is a very special place. More so than any other social media apps I've engaged with, TikTok feels like a true community where total strangers can use the app's duet or audio features to interact in creative, collaborative ways. However, being able to use another user's original audio or replicate their dance has highlighted the prevalence of cultural appropriation on TikTok: the app, as wholesome as it may be at times, has also become a hot bed for "virtual blackface". The most notable example of appropriation has to do with the Renegade dance and Charli D'Amelio โ€“ who is young, White, and arguably the most famous TikTok influencer (she is second only to Addison Rae, who is also White). The dance, originally created by 14-year-old Black user Jalaiah Harmon, essentially paved the way for D'Amelio's fame and financial success (her net worth is estimated to be $8 million). Only after Twitter backlash did D'Amelio credit Harmon as the original creator of the dance to which she owes her wealth โ€“ up until that point, the assumption was the dance was hers. There is indeed a myriad of exploitative and appropriative examples of TikTok videos. Some of the most cringe-worthy include White users pantomiming black audio, in many cases affecting AAVE (African American Vernacular English). Styles of dance and music that were pioneered by Black artists have now been colonized by White users โ€“ and many TikTokers are not made aware of their cultural origins. And what's worse: TikTok's algorithms favor White users, meaning White-washed iterations of videos tend to get more views, more engagement and, subsequently, more financial gains for the creator. As you can imagine, TikTok's Black community is up in arms. But don't take it from me (a non-Black individual) โ€“ log onto the app and listen to what Black users have to say about cultural appropriation for yourself. Still, the app is one of the fastest growing. Companies are finding creative ways to weave their paid ads and more subliminal marketing strategies into the fabric of the 'For You' page. In many ways, TikTok is the next frontier in social media marketing. With a few relevant locational hashtags and some innovative approaches to advertising, your business could get some serious FREE attention on TikTok. In fact, it's the future. As aware and socially conscious small business owners, we need to make sure that while we are using the app to get ours, that the Black creators and artists who made the app what it is today are also getting theirs. Anything short of direct accountability for the platform and for caustic White users would be offensive. (SOCIAL MEDIA) Twitter has enacted changes to how frequently Promoted Tweets โ€“ i.e., ads โ€“ are seen by users, and in true Twitter fashion, there's mixed opinions. Robert Snodgrass, Staff Writer Did anyone else ever watch the Strong Bad Emails cartoons from Homestarrunner? One of the running gags there โ€“ and subsequently one of my favorite bits โ€“ was when he'd just delete a fan's email outright while insulting the author. Strong Bad was great at laying down the delete hammer and had zero cares in the world about doing it. The idea that you โ€“ as a user, person, entity โ€“ can reclaim a little bit of omniscient authority is powerful. Generally, we like being in control of our lives, and the ability to exercise that authority resonates deeply. Digital companies are still coming to terms with the idea that their users maintain some ability to revolt against their new policies, trying to straddle the line between new features and improved tools while still keeping an existing audience happy. Typing "hate the new" into Google will show results solely around new interfaces and an endless string of abhorrence. The new Facebook layout is bad. The new Gmail is bad and here's how to revert it. I'm sure others exist for any widely used app or service. Sometimes even new logos incite rage. I'm not here to make a statement either way, but usually there's some ground in between pure opinion and justifiable discussions about user interface and experience. Regardless, change can make users upset. Twitter recently rolled out changes to how Promoted Tweets work. You should know first that a promoted tweet is just an ad, and were originally set to appear only once per timeline. However, recent updates to Twitter's internal services has resulted in some users reporting the same ad being shown multiple times in rapid succession, and even repeatedly over and over. Think about Google search results โ€“ there are definitely ads at the top of the first page, and they are usually relevant to the topic at hand and only show up in that area. A user can quickly scroll downward past this and look through other results. But imagine how frustrating it might be to have a first page riddled primarily with ads, effectively choking out other results. Twitter maintains that, "we're thoughtful in how we display Promoted Tweets, and are conservative about the number of Promoted Tweets that people see in a single day." This has led some users to believing this behavior indicates some kind of issue with their internal systems. I like to think about the scene in Office Space where Michael Bolton (not the singer) mentions that he may have put a decimal in the wrong place; that is, there's a configuration error at Twitter instead of some kind of sea change. However, Twitter has said this is not a glitch. In fact, they stated it was intentional, and further clarified that, "We regularly experiment and deploy changes to our advertising experience. We are constantly innovating and testing, and will continue to adapt as we learn." Despite worldwide complaints, Twitter has not officially acknowledged this situation as problematic. As a result, many users have taken to blocking the advertisers involved with the Promoted Tweets. Much like Strong Bad exercising his ultimate authority over his domain, this means that companies are in danger of losing their ability to reach users entirely. As this number grows, the consequences could widespread, and it will be interesting to see if Twitter changes their outlook and/or has potential pressure from advertisers. Twitter has stated that this may simply be temporary to exhaust a surplus of ad inventory, and this remains to be seen. As users continue to voice their complaints, it will be interesting to see how the situation ultimately resolves.
[ 0.027915485203266144, 0.014467079192399979, -0.03691980242729187, 0.019474241882562637, 0.016864217817783356, -0.00899178721010685, -0.010254206135869026, 0.04025905206799507, 0.009709648787975311, 0.01946910098195076, 0.023453334346413612, 0.013726599514484406, 0.0023706417996436357, -0.01926802657544613, 0.009041146375238895, -0.021015994250774384, -0.011647364124655724, 0.0032680241856724024, -0.004901400301605463, 0.014679176732897758, 0.007900765165686607, 0.0337250679731369, -0.0687270537018776, -0.04711231216788292, -0.03802057355642319, 0.048729926347732544, 0.013616722077131271, -0.017246657982468605, 0.08899621665477753, 0.07468796521425247, -0.011611494235694408, -0.06146148592233658, 0.0339662991464138, -0.04331560805439949, -0.04033519700169563, -0.026064055040478706, 0.05825506150722504, -0.040563128888607025, -0.052233003079891205, -0.033049408346414566, -0.0048108333721756935, -0.006763155572116375, 0.04546646773815155, -0.05171240493655205, -0.03930395096540451, 0.005256982520222664, 0.00032667777850292623, -0.02018037810921669, 0.01904868334531784, -0.02135835401713848, 0.0013027063105255365, -0.01826583966612816, 0.019371850416064262, 0.009826578199863434, 0.007221005856990814, -0.013733472675085068, -0.018106920644640923, 0.010809466242790222, -0.007640013936907053, 0.046307243406772614, -0.012847721576690674, 0.0038663113955408335, 0.014310324564576149, -0.03939215838909149, 0.02728504315018654, 0.0184901375323534, 0.005337195470929146, -0.05542570725083351, 0.021298345178365707, -0.037624262273311615, -0.004778622649610043, -0.0021578879095613956, -0.05126189813017845, -0.03837808966636658, 0.006053346674889326, -0.019706089049577713, -0.018293987959623337, -0.004069846123456955, 0.00418423768132925, 0.0004895047168247402, 0.019951893016695976, 0.06303782016038895, 0.008781221695244312, -0.004348305054008961, -0.06967131048440933, -0.0153761375695467, 0.013602501712739468, 0.013989292085170746, -0.0128248305991292, 0.008976343087852001, 0.02168010175228119, 0.04421120136976242, 0.007317158859223127, -0.03208974748849869, 0.03652070835232735, 0.04342808201909065, -0.013299108482897282, 0.02294686809182167, 0.017764737829566002, 0.019887251779437065, 0.030929693952202797, 0.0009790317853912711, 0.002912293653935194, 0.038053303956985474, -0.028365762904286385, -0.011637375690042973, 0.02635939233005047, -0.012268969789147377, -0.017706114798784256, -0.032005369663238525, -0.0067612952552735806, -0.0377483144402504, 0.010271194390952587, -0.011608859524130821, -0.00823569018393755, 0.03266546502709389, -0.003985030110925436, 0.019537700340151787, -0.03237345442175865, 0.031799476593732834, -0.009487251751124859, 0.01605096645653248, 0.01907588355243206, -0.033727943897247314, 0.03411401808261871, -0.029359376057982445, 0.003617603564634919, 0.046993281692266464, -0.027566930279135704, -0.0225302092730999, -0.015484058298170567, -0.04046139866113663, 0.020775875076651573, 0.030505197122693062, -0.0236061904579401, 0.02035350725054741, 0.002335362834855914, 0.039664946496486664, 0.02608826942741871, -0.07225583493709564, 0.042942922562360764, 0.028686797246336937, 0.00827681552618742, 0.09988823533058167, 0.001592346467077732, 0.013445478864014149, -0.0010830591199919581, -0.029235366731882095, -0.03906384855508804, 0.01290966384112835, -0.0007916733738966286, 0.03727760910987854, -0.0221905168145895, 0.020877566188573837, 0.00012429209891706705, 0.006018741521984339, -0.024497706443071365, 0.04669182747602463, 0.010636177845299244, 0.05288564786314964, -0.0394790954887867, 0.015917925164103508, -0.01467894110828638, 0.04225599765777588, -0.0049883900210261345, 0.03207051008939743, -0.02443043328821659, -0.019735870882868767, -0.023547422140836716, -0.01276315376162529, -0.004544827155768871, 0.01936832256615162, -0.012267491780221462, 0.0188642218708992, 0.028852615505456924, 0.04157693311572075, 0.02735244296491146, -0.021676719188690186, 0.044620126485824585, 0.03514575958251953, -0.021338151767849922, -0.007720701862126589, -0.005293135531246662, 0.09179606288671494, -0.010778756812214851, -0.004785201046615839, 0.007563683670014143, -0.030703477561473846, -0.03805306553840637, -0.03371194377541542, -0.031700242310762405, 0.044052813202142715, -0.048747602850198746, 0.027360815554857254, 0.016976898536086082, -0.014096853323280811, -0.042444925755262375, -0.020722366869449615, 0.021731724962592125, -0.07490631937980652, -0.016148794442415237, 0.06545820087194443, -0.04652037099003792, 0.027567297220230103, -0.011574309319257736, -0.0198723915964365, 0.009094308130443096, 0.0706285834312439, -0.06252460926771164, -0.001940226531587541, 0.02105199545621872, 0.021275775507092476, -0.030318953096866608, -0.029107408598065376, 0.0089573347941041, -0.027521828189492226, -0.021062852814793587, 0.056992992758750916, 0.010362070053815842, -0.007788823451846838, 0.016581401228904724, -0.00477594556286931, 0.030495725572109222, 0.05243925377726555, -0.04286453500390053, 0.008530942723155022, 0.010379147715866566, 0.02269635535776615, -0.02287178300321102, -0.0009496402344666421, -0.01357042882591486, 0.05981794744729996, 0.01837415061891079, 0.08346040546894073, 0.05303199216723442, 0.011646565981209278, 0.02918604575097561, 0.05529210343956947, 0.0047762589529156685, 0.03587358817458153, -0.01478943694382906, 0.018064718693494797, 0.030309293419122696, 0.03664860129356384, -0.018061218783259392, 0.01734512485563755, -0.014042316004633904, 0.01598965935409069, -0.02365889586508274, 0.042044688016176224, -0.03189263865351677, 0.06566284596920013, 0.03831341862678528, 0.024414213374257088, -0.04630044102668762, 0.03172026947140694, 0.050209417939186096, 0.06619565933942795, -0.03321097418665886, -0.001868856605142355, 0.0046333069913089275, 0.0023884596303105354, -0.01790699176490307, 0.008332797326147556, 0.04800138622522354, 0.011089226230978966, 0.008709672838449478, 0.055223073810338974, -0.025414321571588516, -0.010543552227318287, -0.04988338053226471, -0.05669623240828514, -0.044381603598594666, -0.024460073560476303, -0.04841799661517143, 0.007292793598026037, 0.033346571028232574, -0.01397157832980156, 0.03520645573735237, -0.028980683535337448, -0.014119287952780724, -0.03013702854514122, 0.0014425023691728711, 0.01730833388864994, 0.01855701021850109, 0.019690290093421936, -0.034354861825704575, 0.002021732274442911, -0.012752245180308819, 0.039829157292842865, -0.04221345856785774, 0.03181176260113716, 0.004712680354714394, -0.024998057633638382, 0.037530284374952316, -0.04030238091945648, -0.014619806781411171, -0.017520323395729065, -0.040899064391851425, -0.024383360520005226, 0.013379496522247791, 0.04273867979645729, -0.005611016880720854, 0.00723522063344717, -0.03248266130685806, 0.03509713336825371, 0.029582539573311806, -0.01747530698776245, 0.06211720034480095, 0.03103785403072834, -0.0246800035238266, 0.04202953726053238, 0.017706643790006638, 0.01282415445894003, -0.056476838886737823, 0.049506548792123795, 0.028968241065740585, 0.018783634528517723, -0.05283423885703087, -0.0013250852935016155, -0.02038944512605667, -0.014176858589053154, -0.020517395809292793, -0.009580510668456554, -0.0235318411141634, 0.031200306490063667, 0.022550292313098907, -0.09341026097536087, 0.03495217487215996, -0.05860109627246857, -0.02223965898156166, -0.04047480225563049, -0.02529703639447689, 0.04353771731257439, 0.021879134699702263, 0.04301581159234047, 0.008778262883424759, -0.026862187311053276, -0.0066916318610310555, 0.019182289019227028, 0.04522638022899628, -0.01877671480178833, 0.020134061574935913, 0.026261068880558014, 0.006304629147052765, 0.022969771176576614, 0.005094662308692932, -0.02109498158097267, -0.03577358275651932, 0.0070851813070476055, -0.0165434330701828, 0.025919348001480103, 0.007373138330876827, 0.003430749289691448, 0.03461265191435814, 0.04236498475074768, -0.04714485630393028, 0.02172902785241604, 0.002894938923418522, 0.0003082437324337661, 0.017986275255680084, 0.024957546964287758, 0.01901834085583687, -0.026084529235959053, -0.03885192424058914, -0.03191658481955528, -0.01176156010478735, 0.023272113874554634, 0.04534079134464264, -0.06554802507162094, 0.05095529183745384, -0.0014980704290792346, -0.04338464513421059, 0.06705128401517868, -0.05913245305418968, -0.0017876527272164822, 0.030919034034013748, -0.023834897205233574, 0.04047534614801407, -0.024820445105433464, 0.0020839169155806303, -0.0013998652575537562, 0.03326752781867981, 0.05175328254699707, -0.012455552816390991, 0.02062656544148922, -0.05902521312236786, -0.033155571669340134, 0.02420886605978012, -0.008118381723761559, -0.022723324596881866, -0.020962808281183243, -0.01861388608813286, 0.002862331224605441, -0.05806170776486397, -0.07047271728515625, 0.035125087946653366, 0.028509506955742836, 0.055197134613990784, -0.011654237285256386, 0.051183588802814484, 0.016200294718146324, 0.0006470006192103028, 0.038832247257232666, 0.010259894654154778, 0.01667202077805996, -0.021895961835980415, 0.019302258267998695, -0.008457467891275883, -0.017717882990837097, -0.04631340876221657, -0.016528954729437828, -0.03217034041881561, 0.01488877460360527, 0.03137772157788277, 0.0013610012829303741, -0.04431425780057907, -0.0038739400915801525, -0.026524988934397697, 0.03060934506356716, -0.04563120752573013, -0.04400712624192238, -0.029016518965363503, 0.039859283715486526, -0.008512020111083984, -0.03214011713862419, 0.003184218890964985, -0.050119221210479736, 0.038293350487947464, 0.030418915674090385, -0.04685518890619278, -0.06876495480537415, -0.0053182034753263, -0.018591519445180893, -0.04132840037345886, 0.02747989073395729, 0.034459587186574936, -0.0012178861070424318, 0.012928375042974949, -0.06573914736509323, 0.02781054377555847, 0.03614819049835205, -0.0003758618840947747, -0.020807400345802307, 0.0012352418852970004, 0.03004608303308487, 0.0075896927155554295, 0.04965656250715256, 0.013818088918924332, -0.01803426630795002, 0.004301146138459444, -0.04369599372148514, 0.025600379332900047, -0.010886888019740582, -0.02200625278055668, -0.02351796254515648, 0.017945392057299614, 0.0304680448025465, 0.01780383288860321, -0.011904492042958736, 0.03488298878073692, -0.017222320660948753, 0.06058178469538689, -0.014821379445493221, -0.04104096069931984, 0.06144684553146362, -0.021675899624824524, -0.03739010915160179, -0.006245525553822517, 0.06324578821659088, -0.012736585922539234, 0.009595680981874466, -0.0010919381165876985, -0.05788133665919304, 0.04404711723327637, -0.025670746341347694, 0.039572823792696, 0.011161153204739094, -0.018823523074388504, 0.010179837234318256, -0.04420881345868111, 0.02794536016881466, 0.018859127536416054, 0.009057901799678802, -0.07638769596815109, -0.03238680213689804, -0.015191929414868355, -0.007029223255813122, -0.0023391966242343187, 0.01556092593818903, 0.012117319740355015, -0.024115921929478645, 0.0064008282497525215, 0.020606456324458122, -0.012046711519360542, 0.013343187049031258, -0.004416399635374546, 0.03289312869310379, -0.004817533772438765, 0.025588922202587128, 0.03858576714992523, -0.01606767810881138, -0.030376136302947998, 0.02235257253050804, 0.0022105060052126646, -0.01697925291955471, -0.0357569120824337, 0.023161176592111588, 0.004663444589823484, -0.012572003528475761, -0.036331500858068466, 0.01999094896018505, -0.03475010395050049, 0.007566646672785282, 0.03647683933377266, 0.003897314425557852, 0.0015775584615767002, -0.0018742374377325177, -0.004303613677620888, 0.025488251820206642, 0.03343397006392479, -0.03221571817994118, -0.014548538252711296, 0.059225063771009445, -0.03194334730505943, 0.04049530252814293, -0.008323928341269493, -0.01623772829771042, -0.03167613223195076, -0.0350809171795845, -0.000011243188055232167, -0.02787473425269127, -0.014117970131337643, -0.013031956739723682, -0.006951595190912485, -0.01989186927676201, 0.04010256752371788, 0.004531149752438068, 0.0056262873113155365, -0.005299825686961412, -0.050131089985370636, -0.003912342246621847, -0.03995102643966675, -0.008483469486236572, -0.008994899690151215, -0.0010926442919299006, -0.004016878083348274, 0.041847992688417435, 0.0014296522131189704, 0.012525295838713646, -0.016920577734708786, 0.025936581194400787, 0.020157359540462494, -0.01699415035545826, -0.054390035569667816, -0.0370599590241909, -0.02712976559996605, -0.009823761880397797, 0.025198698043823242, 0.029462121427059174, -0.0679517313838005, 0.046038668602705, -0.007431244011968374, -0.007083783391863108, -0.0219710823148489, -0.013731924816966057, -0.019266944378614426, -0.004709972534328699, 0.06214059889316559, -0.02923738956451416, 0.01220693439245224, -0.029096079990267754, 0.019730648025870323, 0.07126666605472565, 0.00035797987948171794, -0.0599726177752018, -0.011450317688286304, -0.021554632112383842, -0.05953991413116455, 0.01787750795483589, -0.03911062702536583, -0.021080095320940018, -0.04283404350280762, -0.014599034562706947, 0.017418095842003822, -0.02343630976974964, -0.007267470937222242, 0.05895763635635376, 0.005327233113348484, 0.010096784681081772, -0.05725092440843582, 0.027391202747821808, 0.029013480991125107, 0.005946294870227575, -0.01195130031555891, -0.021236727014183998, -0.02612192928791046, 0.014616522938013077, -0.04892607405781746, -0.003902811324223876, -0.06516120582818985, -0.024519378319382668, 0.06336852163076401, -0.05062001943588257, 0.04191036894917488, -0.013069084845483303, -0.04885261505842209, -0.04626867175102234, 0.015290005132555962, 0.036743391305208206, 0.00018658055341802537, 0.039009641855955124, 0.006149436347186565, -0.022841721773147583, 0.008269846439361572, 0.019260223954916, 0.017442913725972176, -0.0217235516756773, 0.06592924892902374, -0.00281118368729949, -0.030613072216510773, 0.04367459565401077, 0.05762149766087532, -0.05616702511906624, -0.044000525027513504, 0.01513710431754589, -0.018148643895983696, 0.041457075625658035, -0.018739651888608932, 0.016343222931027412, -0.0258950088173151, -0.015932021662592888, 0.03901752457022667, 0.031519658863544464, -0.00008738595352042466, 0.03760378062725067, 0.011558747850358486, 0.037354204803705215, -0.07249781489372253, 0.007998740300536156, 0.015249313786625862, 0.00035680545261129737, -0.024138009175658226, -0.040426094084978104, -0.005214517004787922, -0.014127318747341633, 0.0019006694201380014, 0.053179461508989334, -0.03501589968800545, 0.013320458121597767, 0.019413482397794724, -0.0020144544541835785, 0.038497790694236755, 0.009169936180114746, 0.030694499611854553, 0.00662868982180953, -0.031068289652466774, -0.055799130350351334, 0.009124171920120716, -0.0005437799845822155, -0.019558904692530632, 0.049876242876052856, -0.06406009197235107, 0.001646529883146286, 0.010045760311186314, -0.027676649391651154, -0.0034729940816760063, -0.04704269394278526, -0.04250192269682884, -0.039337407797575, -0.039338551461696625, -0.01279422640800476, 0.011726773343980312, 0.025073904544115067, 0.024869220331311226, 0.007376302499324083, -0.03742275387048721, -0.006429130677133799, -0.0006190904532559216, -0.019079064950346947, 0.010136157274246216, -0.03675631806254387, 0.03956985846161842, -0.03683781623840332, -0.03909618407487869, -0.042484432458877563, 0.00692266458645463, -0.05241759866476059, -0.007700264919549227, -0.02353072538971901, 0.04538936913013458, 0.010312228463590145, 0.030780792236328125, -0.01875646598637104, 0.007614970672875643, -0.04014072194695473, -0.06462203711271286, -0.010833732783794403, 0.03939375281333923, -0.04988165572285652, 0.030454371124505997, 0.0045979819260537624, -0.030850974842905998, 0.005796585697680712, -0.021198436617851257, -0.023342467844486237, -0.02351432666182518, -0.0006717795040458441, -0.0196806900203228, 0.0053747002966701984, -0.03071684204041958, -0.023086419329047203, -0.009287484921514988, -0.03268800303339958, 0.0061719403602182865, 0.0026943841949105263, -0.015058382414281368, 0.008703067898750305, -0.014306613244116306, 0.013219590298831463, 0.0540357269346714, -0.013703662902116776, 0.01751103810966015, 0.02183392457664013, 0.02279101498425007, 0.025999413803219795, -0.01051534153521061, 0.022736933082342148, 0.013957620598375797, -0.021323520690202713, -0.011665990576148033, -0.031093934550881386, -0.004728835076093674, -0.0012167583918198943, 0.021802740171551704, 0.010761823505163193, -0.02880694344639778, -0.0641302540898323, -0.004129614681005478, -0.001166829839348793, 0.024004599079489708, 0.01073695532977581, 0.002430607797577977, 0.036996498703956604, -0.022597894072532654, -0.02871147356927395, -0.017903748899698257, -0.07014589011669159, -0.022491835057735443, 0.028175612911581993, -0.021929385140538216, 0.023303881287574768, -0.03176923841238022, -0.04173125699162483, 0.003864011960104108, 0.005769586656242609, -0.011128127574920654, -0.05559729039669037, 0.00028547714464366436, 0.0038092113099992275, 0.007144813891500235, 0.018091073259711266, -0.006713844370096922, 0.001233867951668799, 0.06332266330718994, -0.020309707149863243, -0.019411221146583557, 0.026731329038739204, 0.03229144960641861, 0.004323786124587059, -0.024953709915280342, -0.010667662136256695, 0.017757313326001167, 0.018847977742552757, 0.0007299834978766739, -0.011506869457662106, 0.03510342910885811, -0.01981290429830551, 0.03497961908578873, 0.006737968884408474, 0.029701804742217064, -0.04230013117194176, 0.017077339813113213, 0.01142908912152052, -0.012640724889934063, -0.01935168169438839, 0.022109854966402054, 0.04325348883867264, -0.00671972194686532, 0.05390520393848419, 0.005748474970459938, 0.028237085789442062, -0.030280303210020065, 0.02375097945332527, -0.0001589251187397167, 0.02391001582145691, 0.05378516763448715, 0.022259123623371124, -0.0021910681389272213, 0.0323152132332325, 0.05789411440491676, -0.002436376176774502, 0.007251869421452284, 0.044933658093214035, 0.015960348770022392, -0.05003231018781662, -0.010732900351285934, -0.009389885701239109, 0.018016532063484192, -0.025058653205633163, -0.016841445118188858, -0.008192242123186588, -0.02228134125471115, 0.0009098030859604478, -0.01762430928647518, -0.024067938327789307, 0.04142002761363983, -0.01222282089293003, 0.024908587336540222, -0.00047799022286199033, -0.011897506192326546, -0.026183100417256355, 0.04033889248967171, -0.020288804545998573, 0.027999214828014374, -0.0008071442716754973, 0.02565443515777588, -0.01658962294459343, 0.05730760097503662, 0.02721116878092289, 0.024637240916490555, -0.004136133473366499, -0.00038774983840994537, 0.004876748193055391, -0.027745602652430534, -0.016092445701360703, 0.03193221986293793, -0.04724309593439102, 0.06014145538210869, -0.02852664142847061, -0.0028510866686701775, 0.04535878449678421, -0.05127327889204025, -0.005696181673556566, -0.056177422404289246, 0.01763446442782879, -0.04713687673211098, -0.02982030250132084, 0.01896669529378414, -0.01470487006008625, -0.017369158565998077, 0.0403636209666729, -0.005097612738609314, 0.017694665119051933, -0.000549664837308228, 0.03504928573966026, -0.011000944301486015, 0.05086091160774231, 0.09322206676006317, -0.041533004492521286, -0.015232223086059093, 0.008687853813171387, 0.008575531654059887, -0.047603268176317215, -0.012856497429311275, -0.038574136793613434, 0.012371215038001537, -0.031008588150143623, -0.028240308165550232, 0.0024842238053679466, 0.020832452923059464, 0.0016605277778580785, -0.033933743834495544, 0.0010073886951431632, 0.02443932555615902, -0.03207261860370636, 0.002561760600656271, 0.026336289942264557, 0.004735535476356745, 0.010331726633012295, -0.028231561183929443, -0.02469158172607422, -0.025605347007513046, 0.013694570399820805, -0.04365585744380951, 0.047597575932741165, -0.019564500078558922, -0.03373214974999428, -0.01734256185591221, -0.04962620139122009, -0.03917057439684868, 0.015817880630493164, -0.0314178504049778, -0.05576410889625549, 0.03975578024983406, 0.05929989740252495, 0.024110324680805206, 0.007297092117369175, -0.02385038696229458, -0.009085450321435928, 0.02946924977004528, 0.08445288240909576, -0.01406766939908266, 0.0660703182220459, 0.023466162383556366, 0.0025903149507939816, 0.04014556482434273, -0.025050006806850433, 0.06754345446825027, -0.03733702003955841, -0.023205984383821487, -0.04025016725063324, 0.015130807645618916, -0.0025057257153093815, -0.04589412361383438, 0.0299710500985384, 0.01679859682917595, 0.015906447544693947, -0.036577608436346054, -0.059775542467832565, -0.02183876931667328, -0.06416599452495575, -0.0026182355359196663, -0.026336997747421265, 0.03339949622750282, 0.022039106115698814, -0.013297626748681068, -0.009172290563583374, -0.07099077850580215, 0.17650090157985687, 0.03316611796617508, 0.017389187589287758, -0.0026237720157951117, 0.019939033314585686, 0.03068266063928604, 0.026576468721032143, -0.008789164945483208, 0.019550329074263573, -0.01835799403488636, 0.002497033914551139, -0.023200318217277527, 0.033168647438287735, 0.00888949353247881, 0.011253798380494118, 0.07241763919591904, -0.022712338715791702, 0.010658103972673416, 0.01654759608209133, -0.03296373784542084, -0.07136769592761993, 0.004252999555319548, 0.02567652240395546, 0.017339957877993584, 0.006040201056748629, 0.029940146952867508, 0.009623601101338863, -0.04031531512737274, 0.008951767347753048, 0.0029542685952037573, 0.03633810207247734, -0.04134983941912651, 0.05109219625592232, -0.01017818134278059, -0.03704916313290596, 0.04259286820888519, -0.006421045400202274, -0.019213907420635223, 0.007779477629810572, 0.04271303489804268, -0.010641277767717838, 0.008393670432269573, 0.037186309695243835, -0.03767013922333717, 0.009717555716633797, 0.005924660712480545, -0.013904452323913574, -0.007041149772703648, 0.021249383687973022, -0.02868020534515381, 0.04129506275057793, -0.04079118371009827, 0.0298166386783123, 0.008288035169243813, 0.014109467156231403, -0.004274988546967506, -0.009311232715845108, -0.03120279870927334, -0.0023113840725272894, 0.034254290163517, 0.0019258038373664021, -0.027791636064648628, -0.02536620758473873, -0.012184352613985538, -0.0037100943736732006, -0.008026044815778732, 0.029018906876444817, -0.007937281392514706, 0.010321483947336674, -0.015741346403956413, -0.023910369724035263, 0.018694942817091942, 0.0044165849685668945, -0.038396287709474564, 0.012240046635270119, 0.025372948497533798, -0.030525239184498787, 0.00616410281509161, -0.0018310768064111471, -0.036316294223070145, -0.028473787009716034, -0.027484094724059105, -0.03718501329421997, 0.0015550779644399881, 0.0400884747505188, 0.024901600554585457, -0.03654356673359871, -0.03930909186601639, -0.0037280244287103415, 0.052168406546115875, 0.04830304905772209, 0.018202977254986763, -0.012804312631487846, -0.012484039179980755, 0.0068861376494169235 ]
Many meatloaf recipes are used with breadcrumbs, and put sugary ketchup on top, and are therefore not keto. To make it keto, I use ground flaxseed (aka flaxmeal) in the recipe below to help keep it sturdy, and I use a sugar-free ketchup instead. 1/2 cup of sugar-free ketchup. I used Alterna Sweets Classic Tomato Ketchup, which I discovered from my monthly Keto Krate subscription box. Remove from oven and spread the ketchup over the top. Put back in oven for another 30 minutes. Check internal temperature. It should be 160 F in the center. If not, bake in 5-10 minute intervals and keep checking temp until 160. Rest for 5 or 10 minutes, then slice and enjoy!
[ -0.018524721264839172, 0.007704609539359808, -0.012906276620924473, -0.0016381703317165375, -0.04254983738064766, 0.012872408144176006, -0.008369694463908672, 0.04404684528708458, -0.0008849594742059708, 0.02074466645717621, 0.022289419546723366, 0.009171489626169205, 0.016657134518027306, -0.055150143802165985, 0.011433452367782593, 0.010134374722838402, -0.027439992874860764, -0.05663549154996872, -0.01744498312473297, 0.031067542731761932, 0.007588466629385948, 0.003203274682164192, -0.0671248584985733, -0.03564941883087158, -0.012648164294660091, 0.029099971055984497, 0.024461882188916206, -0.03546338155865669, 0.0870121493935585, 0.058832090348005295, 0.0012111850082874298, 0.010113775730133057, 0.00980017427355051, -0.052971649914979935, -0.0015641024801880121, -0.035903122276067734, 0.032033663243055344, 0.015634186565876007, -0.031251460313797, -0.06604602187871933, 0.006789750885218382, -0.03621898591518402, 0.01815350539982319, -0.0017319937469437718, -0.029392676427960396, 0.010304711759090424, -0.03932559862732887, -0.022862853482365608, 0.002461308380588889, -0.03710941597819328, 0.01980843022465706, 0.012104405090212822, 0.03849365934729576, -0.02160882204771042, 0.007603487931191921, 0.017222246155142784, -0.004591590724885464, 0.005026377271860838, -0.05688318610191345, 0.03144999220967293, 0.034018777310848236, 0.021802788600325584, 0.024265093728899956, -0.0761256292462349, 0.003782800864428282, 0.004261903464794159, -0.004622229374945164, -0.006987350527197123, 0.031553011387586594, 0.010405202396214008, 0.00780416838824749, -0.02429777756333351, -0.028743579983711243, -0.020527634769678116, 0.01939493976533413, -0.002893297467380762, -0.005963147152215242, 0.009223585948348045, 0.004817088134586811, -0.0355045460164547, -0.00664861686527729, 0.05061337351799011, 0.03992949798703194, 0.01914661005139351, -0.050861116498708725, -0.007772878278046846, 0.00472275959327817, 0.03095301240682602, 0.014128854498267174, -0.004130234941840172, -0.016265608370304108, 0.05237327888607979, -0.012399422004818916, -0.017357397824525833, 0.02162817493081093, 0.034097928553819656, -0.015552758239209652, 0.06564641743898392, 0.01811954937875271, -0.01273549348115921, 0.03184051066637039, 0.015466490760445595, 0.006525822449475527, 0.04648580029606819, -0.02419203147292137, 0.022472072392702103, -0.004289355129003525, 0.0025935545563697815, -0.018730802461504936, -0.02094367705285549, -0.027617599815130234, -0.04161296784877777, 0.019832327961921692, 0.018315302208065987, -0.0015658499905839562, 0.04569616541266441, 0.004886249080300331, 0.040856435894966125, -0.04331498220562935, 0.0077021922916173935, 0.02603203058242798, -0.01727316714823246, 0.03086249530315399, -0.037422001361846924, 0.00016225136641878635, -0.002918659709393978, -0.016934402287006378, 0.03285541385412216, -0.019133737310767174, -0.0029011580627411604, -0.007389433681964874, -0.036127131432294846, 0.04603469744324684, 0.027906611561775208, -0.01796831749379635, 0.019873762503266335, -0.02462521195411682, 0.031699515879154205, 0.01925850659608841, -0.043799690902233124, 0.019238058477640152, 0.0232953242957592, -0.0384492464363575, 0.0879993587732315, 0.003138625994324684, -0.028605762869119644, 0.0044114612974226475, -0.014098536223173141, -0.03303418308496475, 0.028797287493944168, -0.024818969890475273, 0.02625601924955845, 0.018740253522992134, -0.011155347339808941, -0.004266862291842699, -0.004549174103885889, -0.00796678476035595, -0.004674266558140516, -0.004741057753562927, 0.011978373862802982, -0.005769494455307722, 0.02333504520356655, -0.024997808039188385, 0.048011597245931625, -0.011217785999178886, 0.035457637161016464, -0.05198126286268234, -0.026886822655797005, -0.014948880299925804, -0.05901085212826729, 0.01999790221452713, -0.01496968325227499, -0.08202899247407913, 0.021304810419678688, 0.01670507900416851, 0.04976291581988335, 0.03833441436290741, -0.04325318709015846, 0.034179527312517166, 0.04797632247209549, -0.02108141779899597, 0.01045556366443634, -0.023787159472703934, 0.06872973591089249, -0.012080138549208641, -0.007159602828323841, -0.02681979537010193, -0.013128755614161491, -0.027973242104053497, -0.03765956684947014, -0.014025668613612652, 0.04583783820271492, -0.014638647437095642, 0.003746702568605542, -0.004303324036300182, 0.008706492371857166, -0.019132521003484726, 0.044275786727666855, -0.04297146946191788, -0.04500285163521767, -0.031981199979782104, 0.03202007710933685, -0.03391331806778908, 0.01752418465912342, 0.029567144811153412, -0.026212500408291817, 0.010554956272244453, 0.036846671253442764, -0.03667410463094711, -0.00026885265833698213, 0.0037906880024820566, 0.006012312602251768, -0.025222178548574448, 0.005866503808647394, -0.03677099198102951, -0.0019533103331923485, -0.031799327582120895, 0.009890478104352951, -0.02487708255648613, -0.011344420723617077, 0.0026487777940928936, 0.001601285533979535, 0.04789295420050621, 0.0656437948346138, 0.010511433705687523, 0.013267505913972855, -0.004854367580264807, 0.059857577085494995, -0.024188527837395668, 0.002306554466485977, -0.05023405700922012, 0.05736278370022774, 0.028940577059984207, 0.04465298354625702, 0.02114434726536274, 0.03043573722243309, 0.05100913345813751, 0.005018699914216995, 0.020361559465527534, 0.04396805539727211, 0.00006226230470929295, 0.011270192451775074, 0.018289359286427498, 0.031646210700273514, -0.0010923885274678469, 0.06818420439958572, 0.012185465544462204, 0.014495906420052052, 0.004384099505841732, 0.028613295406103134, -0.002219557296484709, 0.007536694873124361, 0.03813011571764946, 0.05035826191306114, -0.009038099087774754, -0.008010354824364185, -0.0022126336116343737, 0.07481751590967178, -0.008990125730633736, -0.0005172593519091606, 0.0031805268954485655, 0.0179942324757576, -0.022353293374180794, 0.0048949746415019035, 0.016596436500549316, 0.02483670972287655, -0.030483299866318703, 0.012372253462672234, 0.01809023693203926, -0.054364245384931564, -0.026972495019435883, -0.06776479631662369, -0.05483594164252281, -0.017555097118020058, -0.06591378152370453, 0.0447048656642437, 0.03601517528295517, -0.029523681849241257, -0.029415780678391457, -0.000026240932129439898, -0.016795648261904716, -0.027777329087257385, -0.005133522674441338, 0.03651375696063042, 0.03086855635046959, 0.05879543349146843, 0.012719613499939442, -0.0009627589606679976, 0.017148340120911598, -0.00569837586954236, -0.03372451290488243, -0.027928732335567474, -0.02353585883975029, 0.01653316617012024, 0.022123685106635094, 0.001972978701815009, -0.020440837368369102, -0.011928937397897243, -0.004140983801335096, -0.06552927941083908, 0.000414036912843585, 0.01600346527993679, -0.009376335889101028, -0.008589929901063442, -0.02998407930135727, -0.005392386578023434, 0.021608272567391396, -0.034232936799526215, 0.027806339785456657, 0.015880923718214035, 0.01883693039417267, 0.06115977466106415, 0.0286199152469635, 0.014228331856429577, -0.0436624139547348, 0.02691810019314289, 0.07568304240703583, 0.04412686079740524, -0.04021478444337845, -0.009224679321050644, -0.02675095945596695, 0.01004884485155344, 0.009807542897760868, -0.0193393025547266, -0.025556592270731926, 0.03963342308998108, -0.005813492927700281, -0.06111777946352959, 0.003441277425736189, -0.018793895840644836, -0.0512976236641407, -0.035390403121709824, -0.017985966056585312, 0.05480247735977173, 0.019270354881882668, 0.010290075093507767, 0.006384449079632759, 0.027425840497016907, 0.010264395736157894, 0.01519059669226408, 0.05696333572268486, -0.013346975669264793, 0.013015743345022202, 0.03440924733877182, -0.02363007329404354, 0.015620262362062931, 0.026526737958192825, -0.016882365569472313, -0.004054004792124033, 0.003774946089833975, -0.0047689094208180904, 0.005360347218811512, 0.030996862798929214, 0.01603272557258606, 0.01174695510417223, 0.061122551560401917, -0.015098062343895435, 0.0031337214168161154, 0.046304650604724884, 0.013404341414570808, 0.023350806906819344, -0.031011255457997322, 0.014712989330291748, 0.004987991880625486, -0.02999761514365673, -0.040449224412441254, 0.08266830444335938, 0.02269158326089382, 0.04170720651745796, -0.06452038139104843, 0.06567147374153137, 0.002218765439465642, -0.02869725413620472, 0.024850018322467804, -0.05351513624191284, -0.01758894883096218, 0.032436877489089966, 0.007240292616188526, 0.048783473670482635, -0.020282695069909096, 0.020591534674167633, -0.02892058715224266, 0.00659056706354022, 0.045311588793992996, -0.017475102096796036, 0.029459962621331215, -0.0470459870994091, 0.0005932867643423378, -0.04724796861410141, 0.008179801516234875, -0.029039431363344193, -0.026967598125338554, 0.059293232858181, -0.011398621834814548, -0.025257322937250137, -0.03807826340198517, -0.01892678253352642, 0.01610776036977768, 0.029237108305096626, -0.0025751430075615644, 0.012196538038551807, -0.01016882061958313, 0.0006620778003707528, 0.05842229351401329, -0.017350943759083748, -0.00394423957914114, -0.054855406284332275, 0.04326924309134483, 0.04859619587659836, 0.00013884199142921716, 0.02283558063209057, -0.010371523909270763, -0.04296969622373581, -0.019278015941381454, -0.0014542585704475641, -0.012998529709875584, -0.02344760298728943, 0.03837057948112488, 0.010171298868954182, 0.04297034814953804, -0.016745423898100853, -0.01650497131049633, -0.00006654071330558509, 0.01982823759317398, 0.01756945252418518, -0.058890603482723236, -0.0015214282320812345, -0.0226746778935194, 0.04961427301168442, 0.005758021492511034, 0.019291741773486137, -0.04326156899333, -0.03347520902752876, -0.06502986699342728, -0.010655623860657215, 0.010923010297119617, 0.04032483696937561, -0.011564170941710472, 0.015375897288322449, -0.051754675805568695, -0.016302378848195076, 0.020452409982681274, 0.015884216874837875, -0.019124159589409828, -0.0055219270288944244, 0.04452190175652504, 0.013355709612369537, 0.052184268832206726, -0.009967380203306675, -0.011768974363803864, 0.017081014811992645, -0.015493659302592278, 0.0189769696444273, 0.005523293744772673, -0.036986637860536575, -0.006415321491658688, 0.05700784549117088, 0.01064878050237894, 0.0284320879727602, -0.03324325755238533, 0.01665477640926838, -0.023662734776735306, 0.02753422223031521, -0.023947823792696, -0.02007746882736683, 0.05481410026550293, -0.027282405644655228, -0.02821306139230728, 0.06123996153473854, 0.06882014870643616, -0.022006966173648834, 0.012631974183022976, 0.024726049974560738, -0.03913692384958267, 0.014146603643894196, -0.052646931260824203, 0.02520979940891266, -0.031196195632219315, -0.008928881026804447, -0.03150450438261032, -0.05346258729696274, 0.032424136996269226, -0.004083162639290094, -0.014196916483342648, -0.011014904826879501, -0.041556525975465775, -0.019555946812033653, 0.0013319904683157802, -0.03694188594818115, 0.007262201979756355, 0.016703391447663307, -0.007220887579023838, -0.01811560057103634, -0.04908110573887825, -0.004664595704525709, -0.016669200733304024, 0.006956940516829491, 0.01966051198542118, -0.022927721962332726, 0.013332386501133442, 0.013630085624754429, -0.021697890013456345, -0.030067332088947296, 0.009219542145729065, -0.03724035248160362, 0.005581486038863659, -0.04918654263019562, -0.020636091008782387, -0.014922824688255787, -0.02826853096485138, -0.02752767689526081, 0.014530986547470093, -0.004667266272008419, -0.004746783524751663, 0.034232888370752335, 0.004002834670245647, 0.039095439016819, 0.005074245855212212, -0.011439722031354904, 0.021314598619937897, -0.0027096557896584272, -0.06223801523447037, -0.05665721371769905, -0.0015305888373404741, -0.004505574237555265, 0.06027436628937721, 0.021949246525764465, -0.009555441327393055, -0.0755021721124649, -0.0508108027279377, -0.005827746819704771, -0.024835223332047462, -0.03731285035610199, -0.035825036466121674, -0.024694105610251427, -0.041592877358198166, 0.06391478329896927, 0.021445101127028465, -0.03881414234638214, -0.0020536414813250303, -0.04346858337521553, -0.017326204106211662, -0.03256445750594139, -0.029527457430958748, -0.0063467444851994514, -0.010553509928286076, 0.000498720386531204, 0.054212428629398346, -0.037823233753442764, 0.05510685220360756, -0.02565232664346695, -0.010876432992517948, 0.017734616994857788, -0.006533466279506683, -0.029006782919168472, -0.03189762681722641, 0.0003287452273070812, 0.0042129321955144405, 0.00697801448404789, 0.03801671043038368, -0.03192386031150818, 0.050163403153419495, -0.04307710379362106, 0.03840463235974312, -0.051878418773412704, 0.0052289096638560295, -0.011632494628429413, -0.015591851435601711, 0.019083915278315544, -0.03513098135590553, -0.004405203275382519, -0.024232957512140274, 0.03936346247792244, 0.05518859624862671, 0.0037570269778370857, -0.022013604640960693, -0.03138699755072594, -0.052765268832445145, -0.06179536506533623, 0.038575250655412674, -0.030377211049199104, -0.016903884708881378, -0.03279612958431244, -0.052937354892492294, 0.007315791677683592, -0.0241964403539896, 0.04479550942778587, 0.08151056617498398, 0.011384299024939537, -0.004839745350182056, -0.03401215001940727, 0.010260255075991154, 0.05196544528007507, -0.04042016714811325, 0.04440087452530861, -0.024340273812413216, -0.031155433505773544, 0.005890595726668835, -0.03841551020741463, -0.03091946430504322, -0.06107786297798157, 0.004802161827683449, 0.065716452896595, -0.028620587661862373, 0.046106137335300446, 0.018855135887861252, -0.053545378148555756, -0.04922090098261833, 0.03480052947998047, 0.025706354528665543, 0.013922682963311672, 0.061227817088365555, 0.019785339012742043, -0.02346031926572323, 0.007174276746809483, 0.011491511017084122, -0.0009505402995273471, -0.04783695563673973, 0.057258110493421555, -0.008601410314440727, -0.057783350348472595, 0.04104258865118027, 0.04467519000172615, -0.06997554004192352, -0.040835458785295486, -0.026234397664666176, 0.007230169139802456, -0.010481814853847027, -0.009838665835559368, -0.012321872636675835, 0.005180925130844116, 0.0167701356112957, 0.04289388656616211, 0.030568450689315796, -0.018113089725375175, 0.03473801910877228, -0.006266513839364052, 0.058173466473817825, -0.0219716913998127, -0.007521600928157568, 0.04558828845620155, -0.015136742033064365, -0.016047755256295204, -0.018950900062918663, 0.02371714636683464, 0.011061432771384716, -0.007767254486680031, 0.03921886160969734, -0.006566546391695738, 0.004953804425895214, 0.023310771211981773, -0.016801588237285614, 0.04672824591398239, 0.004342750646173954, -0.011798872612416744, -0.014604669995605946, -0.02094872109591961, -0.0758398249745369, -0.035716328769922256, 0.0006148956017568707, -0.009492222219705582, 0.013968918472528458, -0.05166688933968544, 0.00600699195638299, 0.04661313816905022, -0.026109736412763596, -0.01022011786699295, -0.04238225519657135, -0.03085562027990818, -0.04593970254063606, -0.05081600695848465, -0.04070455953478813, 0.0005550257628783584, -0.023429682478308678, 0.010316768661141396, 0.030120601877570152, -0.04315660893917084, -0.004914678167551756, 0.00008538537804270163, -0.007172433193773031, -0.005826396401971579, -0.03752552345395088, 0.04457802698016167, -0.03185637295246124, -0.042029377073049545, -0.045631442219018936, 0.004819525871425867, -0.01478656381368637, 0.00430292496457696, -0.004634787328541279, 0.01081789005547762, 0.016915637999773026, 0.03023344837129116, 0.0036551954690366983, 0.0400286465883255, -0.009879027493298054, -0.05444964021444321, -0.00543022807687521, 0.038777198642492294, -0.049602631479501724, 0.035741522908210754, 0.00085531419608742, -0.03669494390487671, 0.041077811270952225, 0.042610183358192444, -0.04555622860789299, -0.04459185525774956, 0.015929223969578743, 0.032117120921611786, 0.030386226251721382, -0.029385600239038467, 0.0012900307774543762, -0.01022188551723957, -0.033946678042411804, 0.05113495513796806, -0.014631630852818489, -0.007053174544125795, 0.021704908460378647, 0.03139738738536835, -0.0014686643844470382, 0.07014846801757812, 0.012592173181474209, 0.003970923367887735, 0.0003490652597974986, 0.01593579724431038, 0.011575252749025822, -0.001113004283979535, 0.021956080570816994, -0.00803325418382883, 0.008089674636721611, -0.017741817981004715, -0.0025576732587069273, 0.025593573227524757, 0.0003270749293733388, 0.005421956069767475, -0.005403546616435051, -0.018926234915852547, -0.009053627029061317, -0.0056844172067940235, 0.018742099404335022, 0.061925631016492844, 0.0001916097680805251, -0.02101570926606655, 0.027894528582692146, -0.022399531677365303, -0.04997517913579941, 0.01956956833600998, -0.06515958160161972, -0.013949183747172356, 0.033314235508441925, -0.010491559281945229, 0.0015388993779197335, -0.0013754526153206825, -0.005428319331258535, 0.007467976305633783, -0.014302875846624374, 0.023962492123246193, -0.02367885783314705, -0.0005108941113576293, -0.0037543096113950014, 0.0487716868519783, -0.026176542043685913, -0.009535440243780613, 0.0014612935483455658, 0.023613732308149338, -0.055264584720134735, -0.016282565891742706, 0.017562787979841232, 0.021826649084687233, 0.034661874175071716, 0.005474021192640066, -0.0027381626423448324, -0.00956621952354908, 0.022988000884652138, 0.01844164729118347, 0.015462029725313187, 0.0088162487372756, -0.01827326789498329, 0.024382948875427246, -0.03097972832620144, -0.03396320343017578, -0.039112210273742676, 0.06597917526960373, -0.05927856266498566, 0.0026993555948138237, -0.013830612413585186, 0.07911001145839691, 0.008590894751250744, -0.022009490057826042, 0.0465845987200737, 0.0036582902539521456, 0.03366128355264664, 0.011800220236182213, 0.02425602450966835, -0.02828923985362053, 0.052721668034791946, 0.028812449425458908, 0.03715091943740845, -0.005622565280646086, 0.024458857253193855, 0.03802739828824997, 0.011295218952000141, 0.006572235841304064, -0.0032775539439171553, 0.005301913246512413, -0.0004255053645465523, 0.019191082566976547, 0.010142861865460873, 0.009601053781807423, -0.0014033884508535266, 0.01494828425347805, -0.020370565354824066, -0.010660989210009575, 0.016401605680584908, -0.032133061438798904, -0.008511538617312908, 0.05323620140552521, -0.07321549206972122, 0.0000769582184148021, 0.00795250665396452, 0.021676896139979362, 0.006860615219920874, 0.05430831015110016, -0.04983567073941231, 0.03350036218762398, 0.037990324199199677, 0.01869594119489193, -0.009565235115587711, 0.04140597581863403, 0.0032664199825376272, -0.02075221762061119, -0.030282258987426758, 0.0228266641497612, 0.014784331433475018, 0.030844716355204582, -0.03525201603770256, -0.003980247303843498, -0.03575269132852554, 0.03997170180082321, -0.03896846994757652, -0.0122950728982687, 0.05060282722115517, -0.023476796224713326, -0.017021827399730682, -0.029083730652928352, 0.02909080684185028, -0.04100100323557854, -0.007245196960866451, 0.018991908058524132, -0.010069368407130241, -0.038329221308231354, 0.02434631437063217, 0.009485132992267609, 0.05283127352595329, 0.023583577945828438, 0.05019208416342735, -0.003470982890576124, 0.031933147460222244, 0.039713140577077866, -0.0503404475748539, -0.009691922925412655, 0.026828689500689507, -0.03804450482130051, -0.03439289331436157, -0.011211142875254154, -0.026403550058603287, -0.031106233596801758, -0.000721856311429292, -0.011303567327558994, -0.020358622074127197, 0.047990310937166214, -0.016515595838427544, -0.03852270543575287, 0.014191359281539917, 0.02223046123981476, -0.03327706456184387, -0.01399041898548603, 0.02842027321457863, 0.06808082014322281, -0.032481517642736435, -0.03704536706209183, -0.029755206778645515, -0.018991872668266296, 0.004644182510674, -0.012210747227072716, 0.040563080459833145, -0.03248288854956627, -0.011210063472390175, -0.03150510415434837, -0.06548534333705902, -0.02072826772928238, 0.025547927245497704, -0.027470149099826813, -0.05034728720784187, 0.06059372425079346, 0.03578178957104683, 0.010397858917713165, -0.016599278897047043, -0.011626194231212139, 0.01250813715159893, 0.012422953732311726, 0.059885647147893906, -0.004006946459412575, 0.06666819751262665, 0.03181261941790581, -0.023740097880363464, 0.03089684247970581, -0.017263304442167282, 0.0356919951736927, -0.03577118739485741, -0.028373319655656815, -0.024096054956316948, 0.024928007274866104, -0.01879066787660122, -0.05035913735628128, -0.002885662717744708, 0.005279298406094313, 0.010422984138131142, -0.030777454376220703, -0.056007806211709976, -0.01458594761788845, -0.05282227322459221, -0.013376643881201744, -0.011369127780199051, 0.013977374881505966, -0.0011303341016173363, -0.02400907874107361, 0.022774429991841316, -0.05429380014538765, 0.14413759112358093, 0.07768785208463669, 0.05645113065838814, -0.0016704153968021274, 0.0335463210940361, 0.02617451921105385, 0.02009093016386032, -0.026656700298190117, -0.039115216583013535, -0.008062005043029785, 0.018049582839012146, -0.020842649042606354, 0.02800068072974682, 0.01843087747693062, 0.011245806701481342, 0.0049552698619663715, -0.02937239222228527, 0.00016566381964366883, 0.014994331635534763, -0.0426177941262722, -0.07536675781011581, 0.015599103644490242, 0.009937119670212269, 0.013355085626244545, -0.0044699315913021564, 0.013781032525002956, 0.01201237179338932, -0.07604041695594788, -0.029653090983629227, -0.04765401408076286, 0.0675160139799118, -0.009335465729236603, 0.033426400274038315, -0.02230137027800083, -0.021986881271004677, 0.06164896860718727, 0.01528389472514391, -0.04786664992570877, 0.011685406789183617, -0.023695500567555428, -0.039993882179260254, 0.023259218782186508, 0.030523603782057762, -0.033155690878629684, 0.024903032928705215, 0.04020162299275398, -0.027626104652881622, 0.033141084015369415, 0.0066010053269565105, -0.05266711860895157, 0.04631693661212921, -0.03869260475039482, 0.022348593920469284, -0.0007516641635447741, -0.04964812099933624, -0.012045474722981453, 0.007727700285613537, -0.01247830968350172, 0.013333391398191452, -0.015523782931268215, 0.023528393357992172, 0.008580964058637619, -0.013711921870708466, -0.006308344192802906, -0.04612067714333534, -0.028775572776794434, 0.016243603080511093, 0.024758413434028625, 0.015506668947637081, -0.04160233587026596, -0.01541053969413042, -0.008153371512889862, 0.007873878814280033, 0.006748192012310028, 0.03913017362356186, 0.02792642079293728, -0.02908788062632084, 0.026475710794329643, 0.03458055853843689, -0.0019254578510299325, 0.0024317430797964334, -0.04000363498926163, -0.023660289123654366, 0.010698527097702026, 0.04231270030140877, 0.03745526820421219, -0.027038637548685074, -0.016217874363064766, -0.029316822066903114, 0.04989394173026085, 0.05642310529947281, 0.028557509183883667, -0.028766967356204987, -0.003251412184908986, -0.018389297649264336 ]
A friend wants me to make him an offer on a Frabil hideout. It's two years old with the arctic material. Can anyone tell me how much you would offer? I really have no idea what it's worth. Ive never seen the hieout. How big is it, tub or suitcase? What shape is it in? The hideout looks like a decent rig though on 72"x72" I find it a tad small for 3 people. For a couple bucks more you can have a nice flip over from Frabill which is much better. I'm going flip next year, just can't afford it this year My Farbill Venture is only a year old, and works great so far but I want one for the "the run and gun days".
[ 0.00818592868745327, -0.008002086542546749, -0.014719202183187008, 0.01812697947025299, -0.0232846736907959, 0.016767891123890877, -0.010096904821693897, 0.044826142489910126, 0.02473275735974312, 0.019779132679104805, 0.0518169142305851, 0.025174517184495926, 0.009331422857940197, -0.027427319437265396, -0.015542574226856232, 0.01775350235402584, -0.021316293627023697, -0.018353218212723732, -0.022102152928709984, 0.00543338805437088, -0.0020018182694911957, -0.013483152724802494, -0.07488462328910828, -0.025430357083678246, -0.013419934548437595, 0.01261791680008173, 0.005692553240805864, 0.004624546505510807, 0.06873473525047302, 0.07768949866294861, 0.006358564831316471, -0.08086477965116501, 0.03499018773436546, -0.027784185484051704, -0.035828184336423874, -0.005669921170920134, 0.017809271812438965, -0.01673002913594246, -0.03214111179113388, -0.039370741695165634, -0.003970173187553883, 0.01865963824093342, 0.05084766075015068, -0.027207408100366592, 0.0005791420699097216, -0.00928034633398056, -0.012118987739086151, -0.032345689833164215, 0.02593037858605385, -0.042402900755405426, -0.008692802861332893, -0.0207659974694252, 0.028168795630335808, -0.022777635604143143, -0.007918951101601124, -0.002756501082330942, -0.0105296541005373, -0.011880718171596527, -0.02251291088759899, 0.04213119298219681, 0.037449173629283905, -0.012102787382900715, 0.03382156044244766, -0.05827731639146805, 0.035529933869838715, 0.034075167030096054, -0.010230389423668385, -0.019154295325279236, 0.009876051917672157, -0.03721478208899498, 0.008697101846337318, 0.03081909567117691, -0.013955269008874893, -0.015563124790787697, 0.004811778664588928, -0.02057446353137493, 0.01195363886654377, 0.01391997467726469, -0.018147552385926247, 0.008373862132430077, 0.03717697039246559, 0.055812668055295944, -0.028959978371858597, -0.0017688818043097854, -0.06941133737564087, -0.01911884732544422, -0.008577139116823673, 0.021738899871706963, 0.050305046141147614, -0.010077948682010174, -0.010897623375058174, 0.05743289366364479, 0.003614865941926837, -0.006174291484057903, 0.038428474217653275, 0.0297625120729208, -0.03599894046783447, 0.040481820702552795, 0.01441753190010786, -0.025739988312125206, 0.0185429397970438, 0.00630559679120779, -0.029235178604722023, 0.021815968677401543, -0.030055202543735504, -0.010648801922798157, 0.005297819152474403, -0.009415186941623688, 0.0010179197415709496, -0.013997773639857769, -0.02580134943127632, -0.019436081871390343, 0.02918137051165104, -0.004844136070460081, 0.03415372222661972, -0.00864448957145214, -0.012204415164887905, 0.00865095667541027, -0.025967832654714584, 0.03277284651994705, 0.01932390406727791, 0.00322995288297534, 0.027387117967009544, -0.013733867555856705, 0.03728386387228966, -0.04398281127214432, -0.012905946932733059, 0.04139862209558487, -0.014956380240619183, -0.020651375874876976, 0.02111699804663658, -0.0468483567237854, -0.024780888110399246, 0.03770451620221138, 0.006876517552882433, 0.018638180568814278, -0.02613632194697857, 0.051487747579813004, 0.010657072067260742, -0.07375210523605347, 0.06591495126485825, 0.023520592600107193, 0.01454387977719307, 0.09624535590410233, -0.006818466354161501, 0.02751937136054039, 0.02857302315533161, -0.017940379679203033, -0.015484715811908245, 0.042529694736003876, -0.03610894829034805, 0.05115716531872749, -0.02330954186618328, 0.009766634553670883, 0.01428968459367752, -0.01966450735926628, -0.016491658985614777, 0.022135896608233452, 0.011136987246572971, 0.042664382606744766, -0.019982172176241875, -0.005729434546083212, -0.02525685541331768, 0.0313725471496582, -0.014208142645657063, 0.02692316100001335, 0.002603127621114254, -0.016994785517454147, -0.0008368759881705046, -0.04653802886605263, -0.01033368892967701, 0.011351845227181911, -0.025471383705735207, 0.011977815069258213, 0.020337089896202087, 0.06620604544878006, 0.0662873238325119, -0.01823427714407444, 0.05240325629711151, 0.04857731983065605, -0.04925877973437309, -0.024189990013837814, 0.008888480253517628, 0.055796924978494644, 0.010371311567723751, -0.03259313479065895, 0.0020601695869117975, -0.018690692260861397, -0.04281358793377876, -0.05244859308004379, -0.014299353584647179, 0.03620123490691185, -0.04218769446015358, 0.04192446544766426, 0.00445690518245101, -0.02065439522266388, 0.009082549251616001, -0.02105235494673252, -0.02501169964671135, -0.06614211201667786, -0.01208192203193903, 0.023989172652363777, -0.028423527255654335, 0.028372546657919884, 0.01388079859316349, -0.04136335477232933, 0.02532772719860077, 0.03690610080957413, -0.055101849138736725, -0.005056416150182486, 0.022539837285876274, 0.019630907103419304, -0.01954004354774952, -0.030643798410892487, -0.01816711574792862, 0.007602755445986986, -0.03006857819855213, 0.057342659682035446, 0.000026300825993530452, -0.011728215031325817, 0.0018859634874388576, 0.01677967794239521, 0.03755560144782066, 0.044589798897504807, -0.01605830155313015, 0.0030015904922038317, -0.015092169865965843, 0.05824332311749458, -0.008096519857645035, 0.009099813178181648, -0.038686756044626236, 0.030134528875350952, 0.007511825300753117, 0.033317115157842636, 0.02741619199514389, -0.01759650930762291, 0.04459981992840767, 0.03469318524003029, -0.02144651487469673, 0.027446554973721504, 0.00015962315956130624, 0.002332550473511219, 0.03473615646362305, -0.0036655855365097523, -0.013721240684390068, 0.03378904238343239, 0.010623348876833916, -0.026013558730483055, -0.018988465890288353, 0.0624365471303463, -0.030387336388230324, 0.031723752617836, 0.004658769816160202, 0.03086422197520733, -0.015799906104803085, -0.00837328564375639, 0.016635656356811523, 0.05470839887857437, -0.028215618804097176, 0.0016015816945582628, -0.013848851434886456, 0.005572215653955936, -0.011088760569691658, 0.024007998406887054, 0.029119256883859634, 0.045397624373435974, 0.001801803125999868, 0.008137084543704987, -0.026648564264178276, -0.024096451699733734, -0.048340458422899246, -0.045611172914505005, -0.047442615032196045, -0.04493677243590355, -0.024135075509548187, 0.016643252223730087, 0.019708897918462753, -0.013939780183136463, 0.02305346168577671, -0.015713641420006752, 0.0030423039570450783, -0.012169646099209785, 0.0011515446240082383, 0.019891083240509033, 0.014150635339319706, 0.026859208941459656, -0.03467507287859917, 0.027883455157279968, 0.006699942052364349, 0.018753325566649437, -0.026205725967884064, 0.016841160133481026, -0.010949572548270226, -0.0341973751783371, 0.005495722405612469, -0.008724509738385677, -0.01852739416062832, -0.03252086788415909, -0.041553106158971786, -0.02810724265873432, -0.0029186978936195374, 0.013959063217043877, 0.0015611402923241258, -0.00220606941729784, -0.044803816825151443, 0.050111234188079834, 0.03626628965139389, -0.055856719613075256, 0.026859356090426445, 0.04588012769818306, -0.021640313789248466, 0.06381012499332428, 0.010648238472640514, -0.001876650145277381, -0.051823463290929794, 0.054099030792713165, 0.017414776608347893, 0.006414487026631832, -0.0372575968503952, -0.007433477323502302, -0.006657590623944998, 0.0010667004389688373, 0.01402290165424347, -0.004943617153912783, -0.02585775963962078, 0.02450963295996189, 0.015183249488472939, -0.06569326668977737, 0.02238238789141178, -0.028355732560157776, -0.02237829938530922, -0.035963740199804306, -0.061366066336631775, 0.023061858490109444, 0.02904108539223671, 0.026579920202493668, 0.018459990620613098, -0.05452529713511467, 0.013563026674091816, 0.04945100471377373, 0.05099765956401825, -0.006671279203146696, 0.0033577438443899155, 0.048704106360673904, -0.01447315514087677, 0.032553210854530334, 0.03568850830197334, -0.01482442021369934, -0.021974820643663406, 0.005782173480838537, -0.008425547741353512, 0.02165095880627632, 0.008108092471957207, 0.006736315321177244, 0.03934149816632271, 0.03695385903120041, -0.044240500777959824, 0.01024967897683382, 0.002292355988174677, 0.032782409340143204, 0.025316987186670303, 0.009786621667444706, 0.02385292947292328, -0.023230595514178276, -0.04193711653351784, -0.032172586768865585, 0.022196616977453232, 0.00858992338180542, 0.061192259192466736, -0.05458477512001991, 0.040397848933935165, 0.023200733587145805, -0.018612131476402283, 0.017329437658190727, -0.040380414575338364, -0.01160304993391037, 0.01603075861930847, -0.020867571234703064, 0.025310702621936798, -0.03948966786265373, 0.025182178243994713, -0.027768807485699654, 0.028927460312843323, 0.029289714992046356, 0.003587559564039111, 0.017674271017313004, -0.03508683294057846, -0.05768115818500519, -0.025578027591109276, 0.0015659640775993466, -0.02547943964600563, -0.0322260707616806, 0.006524999625980854, -0.017401760444045067, -0.012724029831588268, -0.0673866793513298, 0.018491480499505997, 0.01018806267529726, 0.0407094769179821, -0.0062202271074056625, 0.02707265503704548, 0.01662810705602169, 0.0009479541331529617, 0.02816549316048622, -0.0016769074136391282, 0.021594248712062836, -0.03623118996620178, 0.04699214547872543, 0.017494257539510727, -0.029921894893050194, -0.03213725984096527, -0.042712438851594925, -0.022218668833374977, 0.0267198346555233, 0.011859366670250893, -0.03441893309354782, -0.045860014855861664, 0.025635546073317528, -0.016578879207372665, 0.01475606206804514, 0.0009873328963294625, -0.011653196066617966, -0.03776142746210098, 0.02607201412320137, 0.0321284756064415, -0.06538315862417221, 0.03779358044266701, -0.04629112780094147, 0.05263717845082283, 0.05743340402841568, -0.01399819366633892, -0.03029543161392212, -0.016872595995664597, -0.027925021946430206, -0.009652181528508663, 0.009182390756905079, 0.029093798249959946, 0.010931502096354961, 0.018098868429660797, -0.05772199109196663, 0.025832200422883034, 0.026726361364126205, 0.004299627151340246, -0.03749093785881996, 0.010355927050113678, 0.006092442665249109, -0.005403180606663227, 0.036926187574863434, 0.015919532626867294, -0.04302177578210831, 0.006313242018222809, -0.04930760711431503, -0.008731747977435589, -0.025602176785469055, -0.04835202172398567, -0.0065291826613247395, 0.028275221586227417, -0.0031634920742362738, 0.030441807582974434, -0.03314218297600746, 0.008111882954835892, -0.015061785466969013, 0.04553252086043358, -0.04117394611239433, -0.06275149434804916, 0.024570468813180923, 0.013120823539793491, -0.051249291747808456, 0.03244786337018013, 0.06612193584442139, -0.012425150722265244, 0.01953125, 0.03801971673965454, -0.04349410533905029, -0.0010892573045566678, -0.025905907154083252, 0.02426178939640522, -0.036501187831163406, -0.021940212696790695, 0.03585594519972801, -0.043586067855358124, 0.04888666048645973, 0.00403897138312459, 0.014350228011608124, -0.05267578735947609, -0.06416578590869904, -0.019815601408481598, -0.0059021469205617905, -0.01644878275692463, 0.025356736034154892, 0.01021865475922823, -0.010526677593588829, -0.003025977872312069, -0.025796305388212204, 0.0007644620491191745, -0.008976646699011326, -0.039432916790246964, 0.014807065948843956, 0.03895648941397667, 0.025711385533213615, -0.000397005642298609, -0.015974590554833412, -0.01174904778599739, 0.00502437399700284, -0.015811588615179062, -0.00739715714007616, -0.054176028817892075, 0.008337102830410004, 0.003788737813010812, 0.01324437651783228, -0.024889612570405006, -0.0007119592046365142, -0.007365851197391748, 0.020986685529351234, 0.0004809318343177438, -0.0036566774360835552, 0.011940567754209042, -0.026731733232736588, -0.024950973689556122, 0.040231313556432724, 0.026171961799263954, -0.05446229875087738, -0.03935562074184418, 0.041114937514066696, 0.00017802458023652434, 0.031235022470355034, 0.02906385250389576, -0.014759988524019718, -0.04614734649658203, -0.04973696544766426, -0.015349892899394035, -0.03825169801712036, -0.016588060185313225, -0.04544241726398468, -0.035595737397670746, -0.010842550545930862, 0.014074948616325855, 0.020919742062687874, -0.020688960328698158, 0.01590251363813877, -0.0152377774938941, 0.001538745011202991, -0.023757120594382286, -0.04274880886077881, -0.018055656924843788, 0.0014484237181022763, 0.001871727523393929, 0.04367323964834213, -0.013074439950287342, 0.011479927226901054, 0.00033883811556734145, 0.013433359563350677, 0.025944015011191368, 0.011057321913540363, -0.02944524958729744, -0.033532556146383286, 0.011774096637964249, 0.0020474756602197886, -0.012155422940850258, 0.022126588970422745, -0.03573571518063545, 0.056554581969976425, -0.026438239961862564, 0.019668662920594215, -0.01389149110764265, -0.003398394677788019, 0.00006755888898624107, -0.021655602380633354, 0.041225384920835495, 0.0035167387686669827, -0.0034295569639652967, -0.01866346038877964, 0.0536847747862339, 0.053851548582315445, -0.002994495676830411, -0.029911454766988754, -0.034372568130493164, -0.00638845469802618, -0.04598338529467583, 0.05037222057580948, -0.03894296661019325, -0.007250753231346607, -0.0349334254860878, -0.03013152815401554, 0.019263386726379395, -0.007781862746924162, 0.025694286450743675, 0.048297248780727386, -0.03041664883494377, 0.0008630477241240442, -0.054425835609436035, 0.03109687566757202, 0.036678701639175415, 0.012015172280371189, -0.021315259858965874, -0.01220137532800436, -0.011708679609000683, 0.022135721519589424, -0.04857780411839485, -0.05242511257529259, -0.05486417934298515, -0.020400380715727806, 0.03731130063533783, -0.005803471431136131, 0.02946285344660282, -0.02090352587401867, -0.053555406630039215, -0.055003564804792404, 0.03722062706947327, 0.020656591281294823, 0.02434840239584446, 0.03954678773880005, 0.02789667434990406, -0.035796474665403366, 0.030957847833633423, 0.017513256520032883, 0.015160046517848969, -0.05914311110973358, 0.06401292234659195, -0.006302793510258198, -0.03436994552612305, 0.027803421020507812, 0.051158566027879715, -0.05787576735019684, -0.04945296049118042, -0.010623160749673843, -0.013039409182965755, 0.010828587226569653, -0.03445533663034439, 0.018150603398680687, -0.01308711152523756, -0.013749953359365463, 0.019787106662988663, 0.025807974860072136, 0.0048582898452878, 0.05317501351237297, -0.00529475836083293, 0.05994625389575958, -0.06441787630319595, 0.00864440854638815, 0.004090713337063789, -0.010136817581951618, -0.028643859550356865, -0.043206874281167984, -0.023317508399486542, -0.015861302614212036, -0.006944703403860331, 0.01874994859099388, -0.0408439077436924, 0.01813921146094799, 0.0186779722571373, -0.019200054928660393, 0.04071379080414772, 0.04990558326244354, -0.024743197485804558, 0.037678416818380356, -0.041456952691078186, -0.04979722201824188, -0.011588573455810547, 0.013464398682117462, 0.003809042274951935, 0.040183134377002716, -0.04497620090842247, 0.0033267121762037277, 0.051104966551065445, -0.004419824108481407, 0.0015860415296629071, -0.10166561603546143, -0.030137987807393074, -0.017740314826369286, -0.052992064505815506, -0.025166021659970284, -0.02668139524757862, 0.011994292959570885, 0.016339058056473732, 0.003952283412218094, -0.035691648721694946, 0.02586708404123783, 0.016744600608944893, 0.007939638569951057, 0.002090539550408721, -0.038233671337366104, 0.002811053767800331, -0.01797904446721077, -0.06410268694162369, -0.00866667740046978, 0.012620759196579456, -0.015317088924348354, 0.016266267746686935, -0.03804904222488403, -0.004720387514680624, 0.01441892795264721, 0.0066915396600961685, 0.015064450912177563, 0.0021633824799209833, 0.015567688271403313, -0.05600961670279503, -0.004407850559800863, 0.04389822855591774, 0.004936572629958391, 0.044680751860141754, 0.008475614711642265, -0.01632610522210598, 0.04905330017209053, 0.005130944307893515, -0.02007121406495571, 0.017732391133904457, -0.0166470929980278, 0.02490069344639778, -0.002536369953304529, -0.0775035098195076, -0.027566663920879364, 0.008809993043541908, -0.029110120609402657, 0.054702386260032654, -0.0212663933634758, 0.002669168636202812, 0.002412943635135889, -0.03874906525015831, -0.021059434860944748, 0.06377530097961426, -0.019131088629364967, 0.022022301331162453, 0.02580539882183075, 0.018788041546940804, 0.012932234443724155, 0.024488944560289383, 0.03512459993362427, 0.019615385681390762, 0.009877187199890614, -0.03956638649106026, 0.008485259488224983, 0.022216778248548508, -0.034937962889671326, 0.059214409440755844, 0.019082356244325638, -0.02759864367544651, -0.032371535897254944, 0.0007304141763597727, -0.018337326124310493, 0.03583735227584839, 0.02716839872300625, 0.025681592524051666, 0.032554708421230316, -0.022475751116871834, -0.01817299798130989, 0.02530382014811039, -0.05388585478067398, -0.03084779903292656, 0.028904855251312256, -0.009029097855091095, 0.023896468803286552, -0.028443412855267525, -0.03387231007218361, 0.009687020443379879, -0.03166443854570389, -0.02188355103135109, -0.0281973909586668, 0.026899218559265137, -0.004664956592023373, 0.03965643793344498, -0.007526562083512545, -0.02077762968838215, 0.033954598009586334, 0.04453463479876518, -0.04765832796692848, -0.053283244371414185, -0.0009235221659764647, 0.043637149035930634, -0.018108922988176346, 0.008890636265277863, 0.009315901435911655, 0.020353637635707855, 0.005118270870298147, 0.02579568699002266, -0.03524012491106987, 0.012011931277811527, 0.008920419029891491, 0.051567863672971725, 0.007528913207352161, 0.0011071865446865559, -0.011206765659153461, 0.011657513678073883, -0.00019198541122023016, -0.034362588077783585, -0.04692720249295235, 0.03553929179906845, 0.013459974899888039, 0.009468047879636288, 0.03716946393251419, 0.009736873209476471, 0.03723335266113281, -0.03254364803433418, 0.035042691975831985, -0.04337538406252861, 0.030559681355953217, 0.0492183193564415, 0.04832838848233223, -0.00038596169906668365, 0.004280597437173128, 0.02199742943048477, 0.007157132029533386, 0.024123938754200935, 0.04405625909566879, 0.011492233723402023, -0.03405340015888214, 0.007970773614943027, 0.005021542776376009, 0.025133222341537476, -0.014314593747258186, -0.018451828509569168, -0.002242943039163947, -0.03089330717921257, 0.014242205768823624, 0.011224190704524517, 0.001364297466352582, 0.0476452112197876, -0.03350109979510307, 0.0022013410925865173, 0.011704416945576668, -0.011917208321392536, 0.0008720747428014874, 0.03507555276155472, -0.009672659449279308, 0.015471860766410828, 0.038089536130428314, 0.03395790606737137, -0.038332510739564896, 0.059484515339136124, 0.038065217435359955, 0.018066905438899994, -0.04447386413812637, 0.008539528585970402, -0.007658863440155983, -0.012371517717838287, -0.06939447671175003, 0.005194141995161772, -0.06562217324972153, 0.031393442302942276, -0.047704678028821945, -0.019092319533228874, 0.03078446164727211, -0.040150102227926254, -0.016521122306585312, -0.04967852681875229, 0.022623399272561073, -0.05860304459929466, -0.0029611322097480297, 0.014468970708549023, -0.0030545236077159643, -0.04591027647256851, 0.029988136142492294, 0.005506506189703941, 0.03507087379693985, 0.02519463188946247, 0.06321506202220917, -0.026653405278921127, 0.05276476591825485, 0.05260796472430229, -0.025949595496058464, -0.01812482625246048, 0.018918626010417938, -0.032234273850917816, -0.011852072551846504, 0.00414816290140152, -0.035249266773462296, 0.009667919017374516, -0.02356436289846897, -0.03266722336411476, -0.007183946669101715, 0.07148793339729309, -0.00981912948191166, -0.04532310739159584, 0.0014716357691213489, 0.03934778273105621, -0.04994883015751839, -0.002813899191096425, 0.036436647176742554, 0.0672353059053421, -0.03344929963350296, -0.005520890932530165, -0.03612595424056053, -0.059697799384593964, 0.01355340238660574, -0.015492248348891735, 0.05089914798736572, 0.0004819142632186413, -0.05109841004014015, -0.04966359958052635, -0.04632388427853584, -0.03472796082496643, -0.00835003424435854, -0.0796496793627739, -0.02783987671136856, 0.03588525578379631, 0.03673730418086052, 0.015778668224811554, 0.010002493858337402, -0.015661293640732765, -0.010175989009439945, 0.02973468415439129, 0.05871367081999779, -0.0018320356030017138, 0.06092444434762001, 0.039431966841220856, 0.0044533745385706425, 0.008166109211742878, -0.05076533183455467, 0.03213785961270332, -0.011715796776115894, 0.007527557201683521, -0.006714466959238052, -0.006736856885254383, -0.023642729967832565, -0.041846681386232376, -0.018095053732395172, 0.010779754258692265, 0.0349736250936985, -0.032769929617643356, -0.06135806813836098, -0.005072456784546375, -0.06473997235298157, -0.005581497680395842, -0.03311147913336754, 0.012697440572082996, 0.028295602649450302, -0.0031644711270928383, -0.007402587682008743, -0.0573592372238636, 0.17885039746761322, 0.03532581031322479, 0.030698023736476898, 0.012067553587257862, 0.021831557154655457, 0.016475724056363106, 0.027241302654147148, -0.0037575168535113335, -0.01932852528989315, -0.016959553584456444, 0.02990906313061714, -0.02250908501446247, 0.011788556352257729, 0.020720554515719414, 0.051076486706733704, 0.050740815699100494, -0.01506735198199749, 0.035563111305236816, 0.021816544234752655, -0.04442841187119484, -0.037529196590185165, 0.016742141917347908, 0.036420874297618866, 0.03850583732128143, 0.013026716187596321, 0.022890141233801842, 0.013995992951095104, -0.041747670620679855, -0.009309628047049046, -0.029594816267490387, 0.028429660946130753, -0.05824127793312073, 0.030744660645723343, -0.022691071033477783, -0.039306800812482834, 0.059131354093551636, 0.0047370861284434795, -0.010892901569604874, 0.00868056621402502, 0.01044035516679287, -0.012751821428537369, 0.006136199925094843, 0.02040230669081211, -0.05716884136199951, -0.005334329325705767, 0.010346224531531334, -0.02434580773115158, 0.026956850662827492, 0.031111709773540497, -0.061401378363370895, 0.03830241039395332, -0.016640547662973404, 0.02986532263457775, 0.009413986466825008, -0.03354260325431824, 0.04096605256199837, -0.015765564516186714, -0.038619816303253174, 0.003859646851196885, 0.016218384727835655, 0.05273721367120743, -0.010990417562425137, -0.03419532999396324, 0.03626789152622223, -0.033377863466739655, 0.048514384776353836, -0.0039946711622178555, 0.0315157026052475, 0.003401699010282755, -0.06075963005423546, -0.024377012625336647, 0.0010904764058068395, -0.022638775408267975, -0.019140418618917465, 0.013099906034767628, 0.02194010652601719, 0.0025869959499686956, 0.0462496355175972, -0.0008062528213486075, -0.032437704503536224, -0.007239657919853926, -0.057689011096954346, -0.013973090797662735, 0.023292867466807365, 0.0455123707652092, 0.020060734823346138, -0.040249716490507126, -0.044340670108795166, -0.018950819969177246, 0.06945237517356873, 0.036605749279260635, 0.048798948526382446, -0.014808062463998795, 0.015903418883681297, -0.025900322943925858 ]
Q: Python, website request login not working Im trying to login to a website via a script but when I print the websites html content, but I cant see any of the data available after login... Can someone tell what I am missing? Thank you! def main(): headers = { "User-Agent": "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36", } s = requests.session() s.headers.update(headers) s.get('https://www.e-ams.at/eams-sfa-account/p/index.jsf') # Generate the post data data = { 'url': 'https://www.e-ams.at/eams-sfa-account/p/index.jsf', 'j_username': 'username', 'j_password': 'password' } # Perform the post request r = s.post('https://www.e-ams.at/eams-sfa-account/p/index.jsf', data=data) # Try to get data only available after login r = s.get('https://www.e-ams.at/eams-sfa-account/p/EsaSBasisdaten.jsf?eamsTrack=1524234335254') print(r.url) print(r.text) print(r.status_code) A: If it is not part of the html form inputs, specifying the url in data dict is not correct. Your request must be as follows: data = { 'j_username': 'username', 'j_password': 'password' } r = s.post('https://www.e-ams.at/eams-sfa-account/p/index.jsf', data=data) Generally speaking all the input tags of the form (both visible and hidden) must be included in the data dict
[ 0.010582269169390202, -0.007381472736597061, -0.007961842231452465, 0.014000862836837769, -0.023162486031651497, 0.004072221927344799, 0.014861296862363815, 0.017901776358485222, 0.01175239123404026, 0.050383154302835464, 0.0032705101184546947, 0.014712602831423283, 0.015289409086108208, -0.02445675991475582, -0.02247343584895134, -0.00446527823805809, -0.005259987432509661, -0.02309184893965721, -0.016198089346289635, 0.007081836927682161, 0.0013073461595922709, 0.01956760510802269, -0.05052894726395607, -0.03508947417140007, -0.041555583477020264, 0.025483354926109314, 0.02605794556438923, 0.01588168926537037, 0.04340006783604622, 0.05974996089935303, -0.031059278175234795, -0.010031224228441715, 0.02918526530265808, -0.05267218500375748, -0.010652409866452217, -0.04299139976501465, 0.030810227617621422, -0.05220548436045647, -0.05607606843113899, -0.028794964775443077, 0.003568768734112382, -0.014421467669308186, 0.010129894129931927, -0.057603783905506134, -0.041985973715782166, 0.006405038293451071, -0.012158448807895184, -0.008113151416182518, -0.003880808362737298, -0.023796113207936287, 0.032412219792604446, 0.011217824183404446, 0.012234109453856945, 0.026042498648166656, -0.03513459116220474, 0.007020711433142424, -0.0014239762676879764, -0.040648963302373886, -0.04068528860807419, 0.009128833189606667, 0.015802251175045967, 0.026775922626256943, 0.038002293556928635, -0.03819718956947327, 0.017707584425807, 0.016702376306056976, 0.003802155377343297, -0.008806465193629265, -0.009159036912024021, -0.012992930598556995, -0.009446337819099426, -0.002455483190715313, -0.027347564697265625, -0.03605393320322037, -0.005652070511132479, 0.04269295558333397, -0.0272111427038908, 0.008872650563716888, 0.0017414161702618003, 0.05490947887301445, 0.014618326909840107, 0.0636630579829216, 0.0012718559009954333, 0.021972551941871643, -0.05859197676181793, -0.0414445698261261, 0.005462611559778452, -0.022606821730732918, 0.025132959708571434, -0.017135750502347946, -0.00966336764395237, 0.0417843796312809, -0.01905124820768833, -0.012894022278487682, 0.051322340965270996, 0.0535484217107296, -0.04284754395484924, 0.02847190387547016, -0.01012349035590887, 0.00477115623652935, 0.0498834028840065, 0.03836773708462715, -0.02414180152118206, 0.025412913411855698, -0.0008039498352445662, 0.008959144353866577, 0.04133903607726097, -0.004888562951236963, -0.040698930621147156, -0.030233820900321007, 0.010457892902195454, -0.006362161599099636, 0.031491804867982864, -0.008300181478261948, -0.003821051912382245, 0.05777610465884209, 0.013292675837874413, 0.023100698366761208, -0.04200442135334015, -0.028339600190520287, -0.004263052251189947, 0.012798427604138851, 0.015950119122862816, -0.022911423817276955, 0.023225469514727592, -0.03724193572998047, -0.028784459456801414, 0.05358777567744255, -0.014455946162343025, -0.02524705044925213, -0.007304235827177763, 0.008562521077692509, -0.013651533983647823, 0.011558598838746548, -0.01982138305902481, 0.00829984713345766, -0.011167161166667938, 0.038944728672504425, 0.03497562184929848, -0.037090227007865906, 0.005443926434963942, 0.00359812518581748, -0.0016861435724422336, 0.1038052961230278, 0.004976960830390453, 0.02537268027663231, 0.011117834597826004, -0.015762794762849808, -0.02626441977918148, 0.007130644284188747, -0.033438265323638916, 0.00325812422670424, -0.0025237060617655516, 0.020606938749551773, 0.00390405161306262, -0.0024690967984497547, -0.02125636860728264, 0.007052638102322817, 0.012266583740711212, 0.01987418904900551, -0.034495312720537186, 0.03897276148200035, -0.027490481734275818, 0.03817974776029587, 0.009930298663675785, 0.050306834280490875, -0.04327193647623062, -0.04208996146917343, -0.016335012391209602, -0.03998393937945366, 0.00951480120420456, -0.0009998728055506945, -0.010783090256154537, 0.008357067592442036, 0.025791624560952187, 0.02920443005859852, 0.03017410635948181, 0.0000668569264234975, 0.02665473148226738, 0.04320243373513222, -0.046149615198373795, -0.0009995936416089535, 0.01588394306600094, 0.07172789424657822, 0.028220172971487045, -0.02396230772137642, 0.04740540683269501, -0.02324472926557064, -0.03048240765929222, -0.012711707502603531, 0.03068537637591362, 0.00035796695738099515, -0.051733240485191345, 0.020131882280111313, 0.004204342141747475, 0.017045829445123672, -0.017725922167301178, 0.025837600231170654, -0.0020742074120789766, -0.0668100118637085, -0.03170919045805931, 0.028458140790462494, -0.012233830988407135, 0.014403898268938065, 0.03607684001326561, -0.04744844511151314, 0.0225734431296587, 0.05006472021341324, -0.03804609179496765, 0.020338010042905807, 0.06483953446149826, -0.008326804265379906, -0.020075717940926552, -0.012598876841366291, 0.011681449599564075, -0.01871834136545658, -0.044384680688381195, 0.04866543412208557, -0.008664016611874104, -0.015680721029639244, -0.005526409950107336, 0.046434227377176285, 0.007676018867641687, 0.024828018620610237, -0.01452151034027338, 0.011137626133859158, -0.024987954646348953, 0.05311732366681099, -0.016981350257992744, 0.01591847464442253, 0.006533586885780096, 0.03494327887892723, 0.010473105125129223, 0.06391870230436325, 0.02365550585091114, -0.004020987078547478, 0.068168506026268, 0.0366356186568737, 0.0075044650584459305, 0.02672087959945202, -0.04205847531557083, 0.011090690270066261, 0.02467932552099228, 0.012374705635011196, -0.007277637254446745, 0.012785367667675018, -0.02637600712478161, -0.007236601784825325, -0.022096751257777214, 0.03256717696785927, 0.014203116297721863, 0.05276072025299072, 0.04633157700300217, 0.013323869556188583, -0.05636405572295189, -0.008279618807137012, 0.05072452872991562, 0.038032613694667816, -0.03683306649327278, -0.01969030313193798, -0.023434164002537727, 0.041903987526893616, -0.02308782935142517, 0.00010210947948507965, 0.005700434558093548, -0.006804017815738916, 0.035784974694252014, 0.014781415462493896, -0.020919980481266975, -0.05283266305923462, -0.06070588529109955, -0.04652269557118416, -0.06854648888111115, -0.03655339777469635, -0.03884008154273033, -0.013392455875873566, 0.03405572474002838, -0.0451706163585186, 0.009298050776124, -0.011679161339998245, -0.0031086737290024757, -0.010075056925415993, 0.007444949354976416, 0.053820546716451645, 0.029159683734178543, 0.029477976262569427, -0.03131352365016937, 0.022870300337672234, -0.010216638445854187, 0.06647045165300369, -0.04792828485369682, 0.014122240245342255, 0.0005451031029224396, -0.0383254736661911, 0.024706481024622917, 0.0013216885272413492, 0.01395475398749113, -0.007471426390111446, -0.038276851177215576, -0.03864501416683197, -0.03128974512219429, 0.02416791394352913, 0.025464918464422226, 0.012614433653652668, -0.0400024875998497, 0.05647468566894531, 0.037795789539813995, -0.02479422837495804, 0.04440951719880104, 0.05415402352809906, -0.029286425560712814, 0.04543909803032875, 0.008501418866217136, -0.0018558683805167675, -0.040983106940984726, 0.06139886751770973, 0.04442959651350975, 0.016522543504834175, -0.025300810113549232, -0.03936902806162834, -0.011932416819036007, 0.007733923848718405, 0.020023860037326813, -0.0008051854092627764, -0.01880643330514431, 0.04640627279877663, -0.0245144534856081, -0.051087331026792526, 0.035770583897829056, -0.05643269792199135, -0.018406657502055168, -0.030826279893517494, -0.025220297276973724, 0.0243393387645483, 0.023634670302271843, 0.038443729281425476, 0.012164847925305367, -0.01232133712619543, 0.008146327920258045, 0.023866446688771248, 0.058033935725688934, -0.016736142337322235, 0.028045501559972763, 0.02317153476178646, -0.008890673518180847, 0.021437961608171463, 0.011642041616141796, -0.038985542953014374, -0.002921966603025794, 0.020757222548127174, 0.015047779306769371, 0.017230121418833733, 0.040802765637636185, 0.013367271050810814, 0.0030804898124188185, 0.06617186963558197, -0.04565523564815521, 0.0178159698843956, 0.005080902483314276, 0.021699391305446625, 0.022687852382659912, 0.031554412096738815, 0.01713903248310089, 0.0021192801650613546, -0.023892821744084358, -0.06703636050224304, 0.028246644884347916, 0.043552909046411514, 0.08453293889760971, -0.05433160439133644, 0.06844259053468704, -0.0017227637581527233, -0.02087637037038803, 0.01940285414457321, -0.04125872626900673, 0.0011055602226406336, 0.04186202958226204, -0.008366112597286701, 0.03746185079216957, -0.029938695952296257, -0.00020319761824794114, -0.0234457328915596, 0.007935243658721447, 0.04246613383293152, -0.008721787482500076, 0.05937938019633293, -0.016037195920944214, -0.00433993199840188, -0.007929218001663685, -0.009869001805782318, 0.0004979760851711035, -0.03236297890543938, 0.007097837049514055, -0.0005862648249603808, -0.04141328111290932, -0.04804670438170433, 0.019168248400092125, 0.026815107092261314, 0.08292115479707718, -0.026255818083882332, 0.007027698215097189, -0.007982619106769562, 0.03978433832526207, 0.02141876146197319, -0.019629748538136482, -0.0012231244472786784, -0.051059458404779434, 0.05853808671236038, 0.022053487598896027, 0.0017062138067558408, -0.03123210184276104, -0.016390379518270493, -0.012372569181025028, 0.0206194669008255, 0.019919319078326225, -0.015613830648362637, -0.06199255958199501, 0.01892087236046791, -0.020528428256511688, 0.0007818571175448596, -0.0330856554210186, -0.05615612864494324, -0.021197451278567314, 0.05140024051070213, 0.03568672388792038, -0.03288734704256058, 0.013111310079693794, -0.024623339995741844, 0.011222943663597107, 0.011101934127509594, -0.003804171225056052, -0.05323725938796997, -0.03276684135198593, -0.040512844920158386, -0.047642674297094345, -0.0016345919575542212, 0.06172650307416916, -0.01852346584200859, 0.005831679794937372, -0.07557779550552368, 0.018236424773931503, 0.0277599785476923, 0.011213606223464012, 0.0019251845078542829, -0.026363039389252663, -0.001971334218978882, -0.009624196216464043, 0.01969067193567753, -0.015695979818701744, -0.005765119101852179, -0.011028977110981941, -0.0564364530146122, 0.018070029094815254, -0.017493747174739838, -0.0212502833455801, -0.001810208661481738, -0.003638960188254714, -0.0008453218033537269, 0.053474362939596176, -0.028285499662160873, 0.010529364459216595, 0.027374017983675003, 0.01577707566320896, -0.04951322451233864, -0.011929098516702652, 0.05620138719677925, 0.0018215103773400187, -0.01616285741329193, 0.04241636022925377, 0.02714831568300724, -0.0005093943327665329, 0.00668847281485796, 0.011843189597129822, -0.026217462494969368, 0.01942821592092514, -0.033363744616508484, 0.015871571376919746, -0.03142077103257179, -0.025264738127589226, 0.00614819535985589, -0.057559240609407425, 0.054532941430807114, 0.01500625815242529, -0.030273744836449623, -0.010122321546077728, -0.07669367641210556, 0.011810162104666233, 0.01167140994220972, -0.005871893838047981, 0.03666674345731735, 0.006186562590301037, -0.010854458436369896, -0.005677280481904745, -0.030252249911427498, -0.010268365032970905, 0.02515067532658577, 0.0035583158023655415, 0.0025739639531821012, 0.04561781883239746, 0.0032009747810661793, 0.022405117750167847, -0.017853856086730957, -0.07358673959970474, 0.008707582950592041, -0.010540531948208809, -0.020050212740898132, -0.05817128345370293, -0.007775831967592239, 0.0035432549193501472, -0.040044575929641724, -0.04434918239712715, 0.005910739302635193, -0.01677118055522442, 0.005660666152834892, 0.021042989566922188, 0.0030234274454414845, 0.03574041649699211, 0.022989356890320778, -0.0035471811424940825, 0.03678448870778084, 0.015209443867206573, -0.048748232424259186, -0.011207014322280884, 0.020962541922926903, 0.007613865192979574, 0.05211122706532478, 0.024081211537122726, -0.04955616965889931, -0.02917497046291828, -0.04743672162294388, 0.01130091492086649, -0.04142913222312927, 0.0024520638398826122, -0.04627090319991112, -0.021541809663176537, -0.05382034555077553, 0.044116027653217316, 0.03160994499921799, -0.014070004224777222, 0.015178547240793705, -0.02829781174659729, 0.016762910410761833, -0.0474335141479969, 0.010322367772459984, 0.0023880081716924906, -0.01463058590888977, -0.00405105808749795, 0.053511638194322586, -0.0048501156270504, 0.0241383109241724, -0.004031071905046701, -0.008907406590878963, 0.009161317721009254, -0.0007394838612526655, -0.05820564925670624, -0.017005737870931625, 0.028088627383112907, -0.0037575149908661842, -0.018260911107063293, 0.019712619483470917, -0.03306956589221954, 0.019717715680599213, -0.03717930614948273, 0.03803852200508118, -0.02254040539264679, -0.02972736395895481, -0.029658988118171692, 0.014170130714774132, 0.04939794912934303, -0.021167872473597527, -0.003162594046443701, -0.026718145236372948, 0.0625561997294426, 0.031024187803268433, -0.0171480905264616, -0.022679457440972328, -0.01692403480410576, -0.046987783163785934, -0.028663191944360733, 0.019681857898831367, -0.028982747346162796, -0.015643417835235596, -0.05462968349456787, -0.0028521185740828514, 0.04761958867311478, -0.016654372215270996, 0.02785600535571575, 0.0703652948141098, -0.009907737374305725, 0.015279619954526424, -0.027580726891756058, 0.030386611819267273, 0.01865030825138092, -0.020458724349737167, 0.0022462361957877874, 0.00818203017115593, -0.03173527866601944, -0.013097226619720459, -0.011958591639995575, -0.05064409226179123, -0.043467286974191666, -0.031357891857624054, 0.07188746333122253, -0.027167806401848793, 0.04493992403149605, -0.0070525845512747765, -0.07264625281095505, -0.039365388453006744, 0.04672643914818764, 0.017348909750580788, 0.01796453259885311, 0.0485188253223896, 0.0033896134700626135, -0.016334358602762222, 0.0292180385440588, -0.002584872767329216, 0.008428231813013554, -0.03965665027499199, 0.06565427035093307, -0.008298301137983799, -0.025624113157391548, 0.034199122339487076, 0.06269966810941696, -0.04242170974612236, -0.06585657596588135, -0.020772451534867287, -0.017967727035284042, 0.0026885762345045805, -0.024159561842679977, -0.0008069846080616117, -0.017002323642373085, -0.010800657793879509, 0.02020190842449665, 0.02458902634680271, 0.008700567297637463, 0.016778798773884773, 0.006250807549804449, -0.0024944045580923557, -0.044016581028699875, 0.030442573130130768, 0.04377634823322296, -0.010035482235252857, -0.019080713391304016, -0.051387183368206024, 0.009649191983044147, -0.014631843194365501, 0.01189439557492733, 0.07385370135307312, -0.025622349232435226, 0.006547651719301939, 0.04546567425131798, -0.03287240490317345, 0.06855535507202148, 0.008114704862236977, -0.0004605188441928476, -0.015995262190699577, -0.04784439876675606, -0.06205591931939125, -0.022796010598540306, 0.0250442735850811, -0.0005130110075697303, 0.020078133791685104, -0.033396996557712555, 0.006933542434126139, 0.04128929600119591, 0.02177402935922146, -0.04319721460342407, -0.06684361398220062, 0.011226624250411987, -0.04754360392689705, -0.03748646005988121, -0.03292323276400566, -0.008824535645544529, -0.020580807700753212, 0.0046383533626794815, -0.03609880059957504, -0.019756384193897247, -0.038085296750068665, 0.005208177026361227, -0.006980021949857473, -0.008570647798478603, -0.0627930536866188, 0.028450852259993553, -0.059945520013570786, -0.039817217737436295, -0.058484215289354324, 0.017160015180706978, -0.007750494871288538, -0.012609942816197872, -0.014801939018070698, 0.025553252547979355, -0.0440436415374279, 0.012937285006046295, -0.008179937489330769, 0.02429555170238018, -0.013818875886499882, -0.042537469416856766, 0.02715952880680561, -0.0063400473445653915, -0.014167060144245625, 0.02924136072397232, 0.022390395402908325, -0.020383398979902267, 0.024986855685710907, -0.004553725942969322, -0.025353731587529182, -0.03495141863822937, 0.016327427700161934, 0.0011602097656577826, -0.0035874706227332354, -0.028304560109972954, 0.004432947374880314, 0.007390572689473629, -0.0408521443605423, -0.0022031674161553383, -0.009002224542200565, -0.012981020845472813, 0.009359375573694706, -0.007142942398786545, 0.028678108006715775, 0.06187175586819649, -0.022070134058594704, 0.021534353494644165, 0.004212366882711649, 0.022945545613765717, 0.02887682057917118, -0.018601836636662483, 0.009726349264383316, 0.007289472036063671, 0.008780193515121937, -0.018065577372908592, 0.012487759813666344, 0.017812678590416908, -0.03264934942126274, 0.03418262302875519, -0.0205534640699625, -0.045087169855833054, -0.03746171295642853, 0.021082790568470955, -0.010004578158259392, 0.03854013606905937, 0.029990384355187416, -0.0032861989457160234, 0.017202209681272507, -0.03326045349240303, -0.019839145243167877, 0.03408278524875641, -0.0846714898943901, -0.0373162142932415, 0.0419912189245224, -0.02798014134168625, -0.013809485360980034, -0.03944674879312515, -0.03662800043821335, 0.005593320820480585, -0.0032782016787678003, -0.024240421131253242, -0.022447818890213966, 0.005442044232040644, -0.007230477407574654, 0.021512852981686592, -0.022913524881005287, 0.00073429656913504, 0.0037110827397555113, 0.023403914645314217, -0.031470801681280136, -0.04935179650783539, 0.005711892619729042, 0.016935206949710846, 0.05263281613588333, -0.039630260318517685, -0.031724873930215836, 0.00805909838527441, -0.01818411611020565, -0.00934988260269165, 0.041695501655340195, -0.011883843690156937, -0.00028893633862026036, 0.026056749746203423, -0.04126869514584541, -0.0017248240765184164, -0.030501283705234528, 0.02246919274330139, -0.004544015042483807, -0.012862494215369225, -0.009986095130443573, 0.02316083200275898, 0.025252606719732285, -0.019261542707681656, 0.03206317871809006, 0.024576129391789436, 0.02712121047079563, -0.006830262020230293, -0.018094219267368317, -0.015432260930538177, 0.03605036437511444, 0.0694853737950325, 0.04128684476017952, 0.04540209472179413, 0.029473256319761276, 0.02756374329328537, -0.0019048161339014769, -0.005668534431606531, 0.0196805689483881, 0.02234208956360817, -0.022198086604475975, 0.013933944515883923, -0.021178320050239563, 0.016638239845633507, 0.0153310252353549, -0.03423095494508743, 0.00479736877605319, -0.03618569299578667, -0.013689836487174034, -0.030042331665754318, -0.020702548325061798, 0.06156792864203453, -0.004305921029299498, 0.0011906542349606752, -0.015136158093810081, -0.022940391674637794, 0.017086969688534737, 0.05791429802775383, -0.004834231920540333, 0.01607012376189232, 0.047357227653265, 0.039747294038534164, 0.0023927076254040003, 0.07148508727550507, 0.013773364946246147, -0.0017423067474737763, -0.01507220696657896, -0.0006011934601701796, -0.0032965412829071283, 0.011002469807863235, -0.01815258525311947, -0.011819610372185707, -0.06533970683813095, 0.022448716685175896, -0.022395571693778038, 0.02627420797944069, 0.05644000694155693, -0.04236928001046181, 0.007950559258460999, -0.03705669566988945, 0.03589235618710518, -0.03429868444800377, -0.00748617434874177, 0.015589994378387928, -0.0031693356577306986, -0.021025359630584717, 0.032973360270261765, 0.0038715617265552282, 0.06058218702673912, -0.034009721130132675, 0.08645518124103546, 0.013591145165264606, 0.04569360613822937, 0.04411550611257553, -0.023901846259832382, -0.005537871271371841, 0.03488101065158844, -0.00204899231903255, -0.03216072544455528, -0.009272027760744095, 0.0009262591484002769, 0.005466190632432699, -0.04608217254281044, -0.02929873950779438, -0.011843073181807995, 0.023490365594625473, 0.006822180934250355, -0.03326456621289253, 0.016019267961382866, 0.03137049823999405, -0.0391789972782135, 0.017400503158569336, 0.022896070033311844, 0.05245959758758545, -0.024803541600704193, -0.030867278575897217, 0.010491695255041122, -0.021984446793794632, 0.007846307940781116, -0.040876489132642746, 0.027300797402858734, -0.004115157760679722, -0.04780496656894684, -0.039829667657613754, -0.046179868280887604, -0.014859790913760662, 0.0067781321704387665, -0.03757870942354202, -0.03158130869269371, 0.028212832286953926, 0.030647676438093185, 0.04005144163966179, 0.013754155486822128, -0.021267374977469444, 0.019355759024620056, 0.01996108517050743, 0.05900091305375099, 0.016399120911955833, 0.05711095780134201, 0.02073575183749199, -0.046306997537612915, 0.019597794860601425, -0.039695095270872116, 0.021231740713119507, 0.0068733347579836845, -0.015499554574489594, -0.001822852878831327, 0.011648866347968578, -0.033835552632808685, -0.05247945338487625, -0.007511477917432785, 0.030785979703068733, -0.0009952657856047153, -0.02939717099070549, -0.05741581320762634, -0.026233015581965446, -0.07012083381414413, 0.01318966131657362, -0.05814342573285103, 0.033202726393938065, -0.013179347850382328, -0.016874192282557487, 0.015145983546972275, -0.07543383538722992, 0.16139966249465942, 0.06911451369524002, 0.025256657972931862, -0.031613901257514954, 0.0316125825047493, 0.06710060685873032, 0.01300298422574997, 0.02107580378651619, 0.0018805996514856815, -0.038791827857494354, 0.04305817559361458, 0.015748441219329834, 0.030286666005849838, 0.03642476350069046, -0.016235265880823135, 0.025513889268040657, -0.05077958106994629, 0.010578061453998089, -0.0005535250529646873, -0.02717532031238079, -0.0500166118144989, 0.016600439324975014, -0.02303887903690338, 0.054085101932287216, 0.0192437544465065, 0.025655461475253105, 0.019652409479022026, -0.05838676542043686, 0.0014176192926242948, -0.045896366238594055, 0.05778379738330841, -0.022223729640245438, 0.05838857963681221, 0.0005602639866992831, 0.0010466354433447123, 0.02534589171409607, 0.01881127431988716, -0.008226879872381687, -0.04169167950749397, 0.008921466767787933, -0.016985302790999413, -0.03802185878157616, 0.03785085305571556, -0.04740428179502487, 0.019493473693728447, 0.023081982508301735, -0.03620602563023567, 0.029660264030098915, 0.020362110808491707, -0.03437807783484459, 0.03170783817768097, -0.026913784444332123, -0.010275081731379032, -0.035205136984586716, -0.02369547449052334, -0.009051290340721607, 0.03615979105234146, -0.035366643220186234, -0.018626289442181587, 0.01802908442914486, 0.017487332224845886, 0.02826535888016224, -0.01532835140824318, -0.0067190006375312805, -0.03480647876858711, 0.018189340829849243, -0.008237403817474842, 0.04289520904421806, -0.016435271129012108, -0.026094932109117508, -0.019227758049964905, -0.033122554421424866, -0.01073872298002243, -0.0329534113407135, 0.010966469533741474, 0.04185155779123306, -0.010515037924051285, 0.030553417280316353, 0.023641807958483696, -0.043317511677742004, -0.0282256081700325, 0.009722977876663208, -0.005639463197439909, -0.029315490275621414, 0.022387290373444557, 0.057985007762908936, -0.046194128692150116, -0.03896953910589218, -0.002755841240286827, 0.0579867921769619, 0.04269300401210785, 0.012031301856040955, -0.011473175138235092, -0.002872251905500889, -0.0005461398395709693 ]
It is 3.38am now as I'm tapping away and @evonnz is in the bathtub having a soak after our long day! Haven't had the time to update earlier, gosh. Gonna keep it short and sweet if possible cos I feel compiled to update even though I really don't have that much time to! When abroad, time is a huge commodity and wasting any bit of time irks me. On Friday, we went back to Juno Hair again for another shampoo/blowdry, and the staff were so happy to see us again! They are really sweet!! My hairstylist (her name is Shim Sol Lip) did curls for me this time and I really liked the way it looked, sort of tousled and natural and very different from the usual kind of curls! I find that my hair is too short though. Still trying to grow out the hair! Checked into our new hotel at Myeong Dong, after which we cabbed down to Hapjeong to meet Mel, Shine and Melvin, who were in Korea too, coincidentally! The lip color that I'm wearing in the above picture is ร‰tude House's Color Lips-Full liquid lipstick in PK02! It's extremely bright and pigmented and I love how lasting it is! New fetish for liquid lip tints and this is going into my stash of favourites! I love pink lip colors the best. So going for that K-beauty look! Can pass ma? MY FAV, this baby German shepherd puppy that was tooooo adorable!! It was soooo furry and floppy and innocent looking that I fell in love with it! After Bowhaus, all of us headed to Hongdae and we spent hours strolling through the streets, shopping and etc. We visited Style Nanda too and I wasn't really into the clothes but 3CE makeup was ๐Ÿ˜๐Ÿ˜๐Ÿ˜! I controlled myself and only got three items, but @evonnz went on a spree hahahaa. 3CE is not sold in Singapore so I think it's still worth buying! Photobooth print-out from Style Nanda: they had a photo booth inside the shop! Coolios much. We picked a random BBQ restaurant along the streets to have dinner at, and it was decent and quite cheap (less than 10,000 won per pax). Thank goodness I love meat so much cos I'm enjoying it to death in Korea! Like a shiok only! My eyes are closing shut against my will.. Can't update anymore!
[ 0.008081631734967232, -0.00037384862662293017, -0.03775051608681679, 0.0032875877805054188, -0.050028540194034576, -0.037342801690101624, 0.05324332416057587, 0.030118586495518684, 0.028666144236922264, 0.010056526400148869, 0.029345327988266945, 0.03473897650837898, 0.021709101274609566, -0.041747625917196274, -0.02239297516644001, -0.04463526979088783, -0.01731688715517521, -0.02702409215271473, -0.014494364149868488, -0.0018161125481128693, -0.0026209119241684675, 0.029672427102923393, -0.07611522823572159, -0.011688410304486752, -0.015489618293941021, 0.041646577417850494, 0.030804093927145004, -0.007804908789694309, 0.045917823910713196, 0.05283328518271446, -0.007626608479768038, -0.012885167263448238, 0.04416884854435921, -0.017631910741329193, -0.01126056257635355, -0.028049154207110405, 0.030089888721704483, 0.017194485291838646, -0.0026515102945268154, -0.05664995312690735, 0.006606213748455048, -0.035785794258117676, 0.05779848247766495, -0.038294386118650436, -0.037612151354551315, 0.006695300340652466, -0.00987988244742155, -0.021209316328167915, 0.04262975975871086, -0.04559452459216118, 0.02430889941751957, -0.004707234911620617, -0.0025258874520659447, 0.010699507780373096, 0.009491430595517159, -0.006723949685692787, -0.011601448059082031, -0.019779840484261513, -0.03136243298649788, 0.03332308679819107, 0.0017323939828202128, 0.019435308873653412, 0.044168926775455475, -0.07471217215061188, 0.023364907130599022, 0.016230540350079536, -0.022978033870458603, -0.0210726261138916, -0.00855683721601963, -0.025081725791096687, -0.015708794817328453, -0.011189373210072517, -0.020287537947297096, -0.026310307905077934, -0.020277097821235657, -0.01643943600356579, -0.006495929788798094, 0.0034484111238271, -0.010084534995257854, 0.006674296222627163, 0.0026139328256249428, 0.04008423537015915, 0.01627749390900135, 0.034160107374191284, -0.042591486126184464, -0.0016259700059890747, -0.015455085784196854, 0.022838620468974113, 0.0032767695374786854, 0.006503617856651545, 0.0102914497256279, 0.04036870226264, -0.0119373369961977, -0.010706349276006222, 0.05097724124789238, 0.02265264093875885, -0.05096903815865517, 0.010570619255304337, -0.010527252219617367, -0.013988735154271126, 0.031833019107580185, 0.003396021667867899, -0.016292549669742584, 0.03713889792561531, -0.031238216906785965, -0.008743560872972012, -0.008696920238435268, -0.024629471823573112, 0.0014543604338541627, -0.03550959751009941, 0.012444518506526947, -0.02131493203341961, 0.020151423290371895, 0.03827665373682976, 0.004542119335383177, 0.052084360271692276, 0.010004091076552868, 0.01980169489979744, -0.05755845457315445, -0.023047270253300667, 0.03394434228539467, 0.017820974811911583, 0.04697739705443382, -0.01208354439586401, 0.022595562040805817, -0.03858166188001633, -0.015362691134214401, 0.04730536416172981, -0.03850455954670906, -0.01287504006177187, -0.0508597195148468, -0.04652581736445427, 0.017833610996603966, 0.004207898862659931, -0.029189975932240486, 0.04481283947825432, -0.028336165472865105, 0.03404761850833893, 0.0007187401060946286, -0.081052765250206, 0.053569693118333817, 0.03190981224179268, 0.028853805735707283, 0.09118970483541489, 0.016374733299016953, 0.045480500906705856, 0.004679045639932156, 0.0004238786350470036, -0.0323910191655159, -0.010616006329655647, -0.03179791197180748, 0.03872104734182358, -0.0042073484510183334, 0.030518924817442894, -0.024637503549456596, -0.013315551914274693, 0.001626236829906702, 0.024537168443202972, -0.0093791913241148, 0.05253876373171806, 0.002451738342642784, 0.013342008925974369, -0.031468652188777924, 0.03890940546989441, -0.0038092159666121006, 0.029484732076525688, -0.01409081555902958, -0.011130185797810555, 0.0073574562557041645, -0.03744877129793167, 0.011736308224499226, -0.008523308672010899, -0.014899780042469501, 0.020799599587917328, 0.03329802677035332, 0.07100342959165573, 0.03645545244216919, -0.021611714735627174, 0.04948296770453453, 0.022614823654294014, -0.01824110932648182, 0.004281679168343544, -0.014806833118200302, 0.044593069702386856, 0.035748764872550964, 0.002340541686862707, 0.0067179277539253235, -0.02097049355506897, -0.03051084466278553, -0.03689670190215111, -0.042783401906490326, 0.0225833673030138, -0.039553627371788025, 0.0416717492043972, 0.0004466598911676556, -0.005308243911713362, -0.03628892824053764, -0.012273958884179592, 0.022773265838623047, -0.0644570142030716, -0.040924035012722015, 0.07629827409982681, -0.035368844866752625, 0.034168560057878494, 0.010637251660227776, -0.0286908857524395, 0.006788094528019428, 0.04401284456253052, -0.014117242768406868, 0.027041815221309662, 0.019368214532732964, 0.0094899358227849, -0.04700545594096184, -0.04898068681359291, -0.011503447778522968, -0.024956287816166878, 0.005292109679430723, 0.04593459144234657, -0.031412314623594284, -0.0048483265563845634, 0.032380010932683945, 0.03898507356643677, 0.028640691190958023, 0.03383471071720123, -0.016108859330415726, 0.0023048087023198605, 0.03601492568850517, 0.00792828667908907, 0.01109275408089161, 0.004547780845314264, -0.035696156322956085, 0.04007856547832489, 0.06935998052358627, 0.07267163693904877, 0.050929177552461624, 0.033622242510318756, 0.04572877287864685, 0.03462584316730499, 0.01394607499241829, 0.011854536831378937, -0.016871947795152664, 0.0062025380320847034, 0.018824877217411995, 0.022108566015958786, 0.0042197066359221935, 0.026619434356689453, -0.0005960270646028221, -0.0033612088300287724, -0.019664138555526733, 0.035143494606018066, -0.0004528996651060879, 0.0625387653708458, 0.061927758157253265, 0.02849247306585312, -0.04035930708050728, 0.0026825936511158943, 0.04785240441560745, 0.05587735399603844, -0.006949665956199169, -0.0006889497744850814, 0.012907263822853565, -0.012841370888054371, -0.03522581234574318, -0.007799785118550062, 0.03907489404082298, 0.03019683063030243, -0.012274280190467834, 0.023694001138210297, -0.027348345145583153, -0.03772345557808876, -0.043488532304763794, -0.03180904686450958, -0.06096436455845833, -0.04536568745970726, -0.04078583046793938, -0.006085182540118694, 0.0347258485853672, -0.02659420669078827, 0.033558886498212814, -0.00003088460653088987, -0.010954402387142181, -0.05240945518016815, -0.02676868438720703, 0.039669450372457504, 0.02072201296687126, 0.03751557692885399, -0.046814218163490295, 0.041773222386837006, 0.02780025452375412, 0.05983027070760727, -0.03362329304218292, -0.004099069628864527, -0.0034405214246362448, 0.0013853837735950947, -0.010025030933320522, -0.002230164362117648, -0.011848429217934608, 0.0010641354601830244, -0.053955353796482086, -0.027852972969412804, -0.009729964658617973, 0.014292621053755283, -0.025773392990231514, 0.02073339745402336, -0.028901584446430206, 0.048724401742219925, 0.03509946167469025, -0.009664541110396385, 0.03799393028020859, 0.020306551828980446, -0.028770828619599342, 0.030273929238319397, 0.015285145491361618, -0.014334570616483688, -0.050161853432655334, 0.04622569680213928, 0.057160671800374985, 0.02597939968109131, -0.03334226831793785, -0.0011172957019880414, -0.03257055580615997, 0.0043607475236058235, 0.042416710406541824, -0.022191647440195084, -0.033667124807834625, 0.020916635170578957, 0.04561416432261467, -0.06938455998897552, 0.04228753224015236, -0.045350756496191025, -0.0430842787027359, -0.047955796122550964, -0.034675661474466324, 0.0060701449401676655, 0.027433650568127632, 0.031063666567206383, -0.021293992176651955, -0.028086137026548386, -0.004304202739149332, 0.010329498909413815, 0.026998503133654594, -0.018232008442282677, -0.007493853569030762, 0.024357154965400696, -0.02042008936405182, 0.029898127540946007, 0.03567378222942352, -0.05374281853437424, -0.02773890271782875, 0.006960817147046328, 0.003430004697293043, 0.001568045117892325, 0.04749050363898277, 0.030409516766667366, 0.022159447893500328, 0.07248479127883911, -0.038829583674669266, -0.023430947214365005, 0.01443797629326582, 0.0029312819242477417, 0.016611335799098015, 0.026972660794854164, 0.022773850709199905, -0.04588780179619789, -0.050923239439725876, -0.060743559151887894, 0.04928538575768471, 0.005309859290719032, 0.04785822704434395, -0.04440169036388397, 0.029000036418437958, -0.02488904818892479, -0.028920462355017662, 0.03576752915978432, -0.052175410091876984, -0.007664279080927372, 0.0550357960164547, -0.009750382974743843, 0.05106541886925697, -0.030347229912877083, 0.0283088106662035, -0.04272929206490517, 0.00506166135892272, 0.0519014336168766, -0.0014919682871550322, 0.04544254019856453, -0.0344322994351387, -0.047150302678346634, 0.00787131767719984, -0.023095378652215004, 0.012704032473266125, -0.01374307181686163, -0.018982384353876114, -0.02690052054822445, -0.056209713220596313, -0.059230294078588486, 0.025650056079030037, 0.021266905590891838, 0.041928697377443314, -0.001671339268796146, 0.02398465946316719, 0.03351740539073944, 0.024598954245448112, 0.021577078849077225, -0.011933468282222748, 0.033872947096824646, -0.022109387442469597, 0.037234824150800705, 0.043439947068691254, -0.024297425523400307, 0.0030731738079339266, -0.017222527414560318, -0.02188049629330635, 0.029731111600995064, -0.022500932216644287, -0.009792489930987358, -0.04535423219203949, 0.011153875850141048, -0.003635348752140999, 0.01675313152372837, -0.06554397940635681, -0.003580851713195443, -0.02700906991958618, 0.022316766902804375, -0.005590223241597414, -0.031066173687577248, 0.013137989677488804, -0.01814188063144684, 0.05051993578672409, 0.02369789406657219, -0.024950694292783737, -0.05757538974285126, -0.02492058277130127, 0.010707060806453228, -0.053062763065099716, 0.023117421194911003, 0.03705919161438942, -0.011747216805815697, 0.0158533938229084, -0.04883241653442383, 0.047926634550094604, 0.041912682354450226, -0.03820432722568512, 0.01800442300736904, 0.008183865807950497, 0.0379522480070591, 0.0011954102665185928, 0.009663356468081474, 0.014118935912847519, -0.033809907734394073, 0.020518716424703598, -0.05121491849422455, 0.027358705177903175, -0.01191552635282278, -0.02105378732085228, -0.01577499508857727, -0.02771584317088127, 0.05147647485136986, 0.05945286154747009, 0.00471239909529686, 0.011037087067961693, -0.016219476237893105, 0.05644996091723442, -0.021038902923464775, -0.040618788450956345, 0.06435659527778625, 0.03600554168224335, -0.03235333412885666, 0.005647202022373676, 0.06391318887472153, -0.012384890578687191, -0.002819435903802514, 0.0201517753303051, -0.04937655106186867, 0.041368648409843445, -0.04754696786403656, 0.009620691649615765, 0.011177160777151585, -0.032088134437799454, 0.01944597251713276, -0.050585679709911346, 0.01599727012217045, 0.024736616760492325, -0.033613529056310654, -0.02655664272606373, -0.05103372037410736, -0.023398635908961296, -0.018340060487389565, -0.003127179341390729, 0.030538057908415794, 0.01974872127175331, -0.014876743778586388, 0.006556416396051645, 0.020939746871590614, 0.003241121768951416, -0.018418872728943825, -0.03238614276051521, 0.01247758325189352, -0.013627865351736546, -0.004946010187268257, 0.014509045518934727, -0.0067462134175002575, -0.009109493345022202, 0.0029272811952978373, 0.001632607076317072, -0.015066379681229591, -0.03085465542972088, -0.002498715417459607, -0.02480245567858219, -0.013148936443030834, 0.005577408708631992, 0.005279420409351587, -0.004035568330436945, -0.005311247427016497, 0.025438573211431503, 0.015217853710055351, 0.02144303359091282, 0.010489128530025482, -0.026197610422968864, 0.04850531369447708, 0.042198821902275085, -0.04116612300276756, -0.026815420016646385, 0.03942027688026428, 0.016070213168859482, 0.05785778537392616, -0.017231140285730362, -0.01729978621006012, -0.03734211623668671, -0.05938725918531418, -0.023994233459234238, -0.03936869651079178, -0.04454835131764412, -0.0520341731607914, -0.03198197856545448, -0.0376133918762207, 0.02221118099987507, -0.007715409621596336, -0.00605710269883275, 0.005440696608275175, -0.040345367044210434, 0.04872244969010353, -0.035961877554655075, -0.02315078303217888, 0.004591453354805708, -0.022832443937659264, -0.008756008930504322, 0.0366206057369709, -0.02938402071595192, 0.027649356052279472, 0.0017525837756693363, 0.014390462078154087, 0.00005560800855164416, -0.02083992399275303, -0.051969774067401886, -0.06544254720211029, 0.01932225003838539, 0.010827667079865932, -0.021514561027288437, 0.03199651837348938, -0.03825872391462326, 0.07584124803543091, -0.031560689210891724, -0.006962871644645929, -0.02904755435883999, 0.0037863615434616804, 0.001445273170247674, -0.020347576588392258, 0.025935612618923187, -0.01539306715130806, -0.012584395706653595, -0.017588628455996513, 0.042792074382305145, 0.04834878444671631, 0.006423610262572765, -0.015982570126652718, -0.0521278977394104, -0.06956484168767929, -0.06687402725219727, 0.025889398530125618, -0.03868754208087921, -0.009190536104142666, -0.01531254407018423, 0.006075873505324125, 0.022441590204834938, -0.004382179584354162, 0.02255716361105442, 0.040311265736818314, 0.00013747013872489333, 0.008128486573696136, -0.025550169870257378, 0.013386477716267109, 0.01510370522737503, -0.006929703056812286, -0.020007146522402763, -0.022230813279747963, -0.022773385047912598, 0.012875420041382313, -0.042089011520147324, -0.05454624444246292, -0.05143936723470688, -0.020919371396303177, 0.06951463967561722, -0.02319272980093956, 0.05930458381772041, -0.013539248146116734, -0.049005597829818726, -0.05742742866277695, 0.04609621316194534, 0.0056227087043225765, 0.017331022769212723, 0.06580483168363571, 0.021550839766860008, 0.0007127898861654103, 0.0212031789124012, 0.00991525873541832, 0.013166442513465881, -0.04970991611480713, 0.05688577517867088, 0.0024395487271249294, -0.03309716284275055, 0.024332577362656593, 0.035463105887174606, -0.05302930995821953, -0.050707653164863586, 0.002708718180656433, -0.01633935607969761, -0.019614260643720627, -0.041176486760377884, -0.0026639956049621105, -0.016568318009376526, -0.006557307671755552, 0.03118179179728031, 0.035075701773166656, -0.011114995926618576, 0.034505296498537064, 0.0036123779136687517, 0.020388400182127953, -0.024452753365039825, -0.011712688952684402, 0.05501094087958336, -0.011891979724168777, -0.013422223739326, -0.031744830310344696, -0.021986251696944237, -0.014966517686843872, -0.003311051521450281, 0.02318217232823372, -0.017636766657233238, 0.0038678862620145082, 0.035105571150779724, -0.010580637492239475, 0.03744674474000931, -0.009058869443833828, -0.003159561427310109, 0.04321650043129921, -0.022324567660689354, -0.05488615855574608, -0.03299430012702942, 0.022504447028040886, -0.01680888421833515, 0.0017659907462075353, -0.03577619418501854, 0.004415121860802174, 0.024473929777741432, -0.04315755143761635, -0.03043459914624691, -0.05085277929902077, -0.023439688608050346, -0.05128040537238121, -0.024605730548501015, -0.01763080805540085, 0.004353067837655544, -0.023264246061444283, 0.016185227781534195, 0.012044529430568218, -0.05738086625933647, -0.02395275980234146, 0.0014439793303608894, -0.012899847701191902, 0.024365132674574852, -0.04566941782832146, 0.0502181202173233, -0.035177458077669144, -0.06856134533882141, -0.026116758584976196, -0.007870834320783615, -0.015974434092640877, -0.015771305188536644, 0.0005471933400258422, 0.008942767046391964, 0.0115071265026927, 0.024213410913944244, -0.007522018160670996, 0.007589250337332487, -0.01703006774187088, -0.05199258774518967, -0.0035111757460981607, 0.03313619643449783, 0.023948824033141136, 0.01745200715959072, 0.021694976836442947, 0.019611814990639687, 0.02780250459909439, 0.00038369829417206347, -0.01658237725496292, -0.036930106580257416, 0.0021546343341469765, 0.004794455133378506, 0.006103993393480778, -0.025946639478206635, 0.0011242460459470749, -0.01548013649880886, -0.03171658143401146, -0.013930019922554493, -0.028215155005455017, -0.008669483475387096, 0.010857886634767056, 0.006688306573778391, 0.01098592672497034, 0.06013048067688942, 0.037280283868312836, 0.018833601847290993, -0.015982989221811295, 0.026497213169932365, 0.01950124092400074, -0.033431749790906906, 0.020638270303606987, 0.04923342540860176, 0.043204303830862045, -0.02579420432448387, 0.025099007412791252, 0.03166273236274719, -0.0076626744121313095, 0.025166895240545273, -0.019957777112722397, -0.062429461628198624, -0.03330875560641289, 0.009902344085276127, -0.022189028561115265, 0.03648762032389641, 0.030880790203809738, -0.008332948200404644, 0.020649734884500504, -0.02342267893254757, -0.028909670189023018, -0.004130306653678417, -0.053348466753959656, -0.021335799247026443, 0.018978260457515717, -0.029009846970438957, 0.02390783093869686, -0.0002548251941334456, -0.05653175711631775, 0.007005998399108648, -0.005094971042126417, 0.012606700882315636, -0.03159883990883827, -0.0015316481003537774, 0.010817259550094604, 0.04818126931786537, -0.008858568966388702, -0.010806163772940636, 0.013068977743387222, 0.029485248029232025, -0.0261169895529747, -0.07630778849124908, -0.0013411709805950522, -0.006781500298529863, 0.021465253084897995, -0.039674580097198486, 0.011618336662650108, 0.048460133373737335, 0.011075652204453945, -0.01581486128270626, 0.019025657325983047, 0.020313913002610207, -0.0015044796746224165, 0.012585830874741077, 0.019461875781416893, -0.003413489554077387, -0.03269040957093239, 0.019828446209430695, 0.01688023842871189, -0.024583790451288223, -0.0013071163557469845, 0.022501591593027115, 0.006233807187527418, 0.03308866173028946, 0.04842451587319374, 0.0021217474713921547, 0.02917848527431488, -0.03057270497083664, 0.006345545407384634, -0.029660001397132874, 0.024664413183927536, 0.027119580656290054, 0.01136501133441925, -0.014201296493411064, 0.03137259930372238, 0.03814477473497391, -0.009033672511577606, 0.01625082455575466, 0.060019467025995255, 0.011532576754689217, -0.013472218066453934, -0.006895086262375116, -0.010228878818452358, -0.015370418317615986, 0.006203331518918276, -0.01053235586732626, -0.0070529356598854065, -0.02923993207514286, -0.006213209591805935, 0.03553908318281174, -0.022226156666874886, 0.02721250057220459, -0.06625217944383621, 0.02283758483827114, -0.009647330269217491, 0.001705098315142095, 0.010256562381982803, 0.033888548612594604, -0.0022366740740835667, 0.034891724586486816, 0.04334457963705063, 0.01411938015371561, -0.011952214874327183, 0.053366973996162415, 0.0392477847635746, 0.010555212385952473, -0.03104221075773239, -0.011256205849349499, 0.023198500275611877, -0.011039692908525467, -0.010318011045455933, 0.018594076856970787, -0.04021389037370682, 0.05861902981996536, -0.03147861734032631, -0.04812236875295639, 0.036753177642822266, -0.03744736686348915, 0.01499567274004221, -0.06361444294452667, 0.021787134930491447, -0.00983041524887085, -0.0024600138422101736, 0.019756488502025604, -0.013792289420962334, -0.009794007986783981, 0.043391112238168716, -0.0002456087386235595, 0.03837191313505173, 0.023744747042655945, 0.049454279243946075, -0.04747702181339264, 0.02800091728568077, 0.05676215514540672, -0.016034767031669617, -0.026788577437400818, 0.00204165349714458, 0.008770815096795559, -0.022102782502770424, -0.006264278199523687, -0.04712618887424469, 0.02217516303062439, -0.017976395785808563, -0.0031568421982228756, 0.028001869097352028, 0.05430033057928085, -0.011830613948404789, -0.04482538625597954, -0.00894271582365036, 0.002128795487806201, -0.043997667729854584, 0.0113934725522995, 0.010460522957146168, 0.05654878914356232, -0.0003774382930714637, 0.03276161104440689, -0.03138841316103935, -0.011923901736736298, -0.00825253501534462, -0.03832771256566048, 0.02719631977379322, -0.0034130977001041174, -0.03235061094164848, -0.04135232791304588, -0.05177699029445648, -0.020117472857236862, -0.0025159097276628017, -0.021365199238061905, -0.04237760975956917, 0.03479374572634697, 0.06721615046262741, 0.0086005674675107, 0.007349231280386448, -0.038124386221170425, 0.0015855544479563832, 0.023400161415338516, 0.0716974064707756, -0.007684867829084396, 0.041142791509628296, 0.006420821417123079, -0.02413206174969673, 0.031217271462082863, -0.03727243095636368, 0.04041123762726784, -0.005271865054965019, 0.029152987524867058, -0.0286503154784441, 0.04897207394242287, -0.029883377254009247, -0.04211791232228279, 0.005120215937495232, 0.010684228502213955, -0.013031039386987686, -0.05156734958291054, -0.04566211625933647, -0.01287132129073143, -0.053199660032987595, 0.01714213937520981, -0.05266093462705612, 0.06130807846784592, 0.02629796229302883, -0.01157055702060461, -0.022146260365843773, -0.07009510695934296, 0.16008225083351135, 0.07370508462190628, 0.005926476791501045, 0.006220264360308647, 0.05504383146762848, 0.039184629917144775, 0.016017882153391838, 0.010174861177802086, -0.0012912859674543142, -0.012924296781420708, 0.03999145328998566, -0.0012221760116517544, 0.011131992563605309, 0.005087993573397398, 0.043045755475759506, 0.061303846538066864, -0.05765379220247269, 0.015617108903825283, 0.02936134859919548, -0.036553628742694855, -0.03793250396847725, 0.023671502247452736, 0.03103385679423809, 0.00550267705693841, 0.01086654793471098, 0.008028879761695862, 0.00335551961325109, -0.024147499352693558, -0.043577250093221664, -0.030111907050013542, 0.023160645738244057, -0.03767510503530502, 0.039919883012771606, 0.014785961247980595, -0.03525107726454735, 0.0291584562510252, 0.016707012429833412, -0.04124381020665169, 0.007487616501748562, 0.022868705913424492, -0.0263134203851223, -0.0258516576141119, 0.01896965317428112, -0.03985479846596718, 0.023993220180273056, 0.022264210507273674, -0.04807276278734207, -0.005146095063537359, -0.028350315988063812, -0.04449804872274399, 0.05164765566587448, -0.04017939046025276, 0.015738314017653465, -0.03196629136800766, -0.040486808866262436, 0.010712352581322193, 0.016056429594755173, -0.032578032463788986, 0.022208506241440773, 0.0013088998384773731, 0.0231736209243536, 0.014034971594810486, -0.020776931196451187, 0.011578853242099285, -0.051989201456308365, 0.008497561328113079, -0.011712449602782726, 0.008344109170138836, -0.005807877983897924, -0.016908463090658188, -0.012322437949478626, -0.01959446258842945, -0.004644399043172598, 0.004957565572112799, 0.043394703418016434, 0.022928917780518532, -0.03348725661635399, 0.03069569543004036, -0.006339585408568382, -0.021602483466267586, -0.0038275658152997494, -0.043286219239234924, -0.004067340865731239, -0.008038516156375408, 0.03818848356604576, 0.04349347576498985, -0.05048089474439621, -0.011956684291362762, -0.017925463616847992, 0.052554044872522354, 0.03895799443125725, 0.02607792802155018, -0.03475702181458473, -0.020178699865937233, -0.019208673387765884 ]
Affordable Help desk Software & Customer Support Ticket Software. Great value for your money. priority email support and upgrades by extending the support and upgrade contract. You can enjoy another year of priority support and upgrade for a nominal fee of $49.95 for Standard, $59.95 for Professional and $69.95 for Corporate edition. Should you have any questions please feel free to ask us. OneOrZero provides a powerful enterprise help desk, knowledgebase and reporting system backed by a highly configurable and extensible Action & Information Management System which allows you to 'build your own system' on the fly. With workflow (process and actions), metadata (custom fields and item types) and security that is highly configurable out of the box in our easy to use configuration pages, you can extend your system well beyond just being a helpdesk and knowledgebase product. You could create a project management system, a CRM, a change management system - your ideas can be implemented with ease.
[ -0.002523446921259165, -0.009593235328793526, -0.05922660604119301, -0.019984398037195206, -0.003920642659068108, 0.006597522180527449, 0.020955484360456467, 0.023030271753668785, 0.015583885833621025, 0.007711008191108704, 0.025267023593187332, 0.0017867378192022443, 0.0016791787929832935, -0.028285909444093704, 0.004607864189893007, 0.027911676093935966, -0.019385943189263344, -0.016153287142515182, -0.017095815390348434, -0.02673112042248249, 0.016620896756649017, -0.00602114899083972, -0.06056106463074684, -0.05470218136906624, -0.025240739807486534, 0.0486174114048481, 0.014663688838481903, -0.03218014910817146, 0.06361786276102066, 0.06106572598218918, -0.05646303668618202, -0.044535115361213684, 0.023355355486273766, -0.03829856961965561, -0.03361954912543297, -0.021235331892967224, 0.008550641126930714, -0.017773298546671867, -0.04033634066581726, -0.04658884182572365, 0.028680941089987755, -0.011696583591401577, 0.016672838479280472, -0.045832596719264984, -0.08367717266082764, -0.01392934750765562, 0.006581172347068787, -0.022591514512896538, 0.01708211563527584, -0.022718919441103935, 0.017249204218387604, 0.012043283320963383, 0.024845773354172707, -0.015602659434080124, 0.014105725102126598, 0.005598020739853382, 0.027895765379071236, 0.002116760006174445, -0.03602595627307892, 0.017043285071849823, 0.01795906387269497, 0.018305035308003426, 0.05039859190583229, -0.03291663900017738, 0.04241596907377243, 0.04425213485956192, -0.016485072672367096, 0.004745572805404663, 0.016891922801733017, 0.008267092518508434, 0.0025949322152882814, 0.02912682294845581, -0.004816371947526932, -0.022325633093714714, 0.015842920169234276, 0.006130618043243885, -0.018989233300089836, -0.010335676372051239, -0.009338697418570518, -0.02063262090086937, 0.0002682120830286294, 0.049521636217832565, -0.001855002250522375, 0.038111452013254166, -0.054272063076496124, -0.015256905928254128, 0.020371776074171066, 0.00947132334113121, 0.0252396110445261, 0.014365638606250286, 0.014175130985677242, 0.03334968909621239, 0.02622237056493759, 0.016243284568190575, 0.05772116035223007, 0.04378862306475639, -0.04061967507004738, 0.04275556653738022, 0.006351964082568884, 0.011112771928310394, 0.04149157553911209, 0.0193346980959177, 0.005056296940892935, 0.03983436897397041, -0.048598166555166245, -0.015655027702450752, 0.01619012840092182, -0.010049975477159023, -0.01803906261920929, -0.031116943806409836, 0.0008418491925112903, 0.001862486358731985, 0.029597017914056778, 0.010531769134104252, -0.02255958691239357, 0.0583222396671772, -0.004211577121168375, 0.007064431440085173, -0.02240053191781044, 0.004681840538978577, 0.028477611020207405, 0.010929743759334087, 0.038862988352775574, -0.01751578599214554, 0.007891285233199596, -0.03860995173454285, -0.0034695672802627087, 0.03937273472547531, -0.016451558098196983, -0.060335949063301086, -0.013596782460808754, -0.027374697849154472, -0.011892801150679588, 0.036045193672180176, 0.009374982677400112, -0.0015788048040121794, 0.02427118457853794, 0.01189296506345272, 0.038232121616601944, -0.05492227151989937, 0.041290365159511566, 0.015433849766850471, 0.023475119844079018, 0.09959916025400162, 0.012883275747299194, 0.019351501017808914, -0.016469594091176987, -0.013873151503503323, -0.058247145265340805, 0.031088456511497498, -0.008880789391696453, 0.032308392226696014, -0.01157939899712801, 0.025494171306490898, 0.0040587675757706165, -0.018715716898441315, 0.01091124676167965, 0.01024483423680067, 0.037532988935709, 0.02597927302122116, -0.003954208455979824, 0.015362806618213654, -0.006247271317988634, 0.036245375871658325, -0.032611604779958725, 0.019283916801214218, -0.032002802938222885, -0.010056432336568832, 0.0022811901289969683, -0.02518247254192829, 0.037407249212265015, -0.002239465480670333, -0.03070751391351223, -0.0015615016454830766, 0.01955493912100792, 0.04818866401910782, 0.03659482300281525, 0.020307809114456177, 0.03190290555357933, 0.034642551094293594, -0.041471004486083984, -0.00499768415465951, 0.006965265609323978, 0.05501561984419823, 0.004088445100933313, 0.0013032621936872602, 0.02806750312447548, -0.02152356691658497, -0.05979378893971443, -0.0441470742225647, 0.014068182557821274, 0.024860769510269165, -0.04695167765021324, 0.04341976344585419, -0.001622006413526833, -0.014396511018276215, -0.005476657301187515, 0.007040999364107847, 0.007356247399002314, -0.057026565074920654, -0.032297585159540176, 0.04838991165161133, -0.03130094334483147, 0.04609531909227371, 0.008284570649266243, -0.019176868721842766, -0.005483697168529034, 0.028547171503305435, -0.041054755449295044, -0.005242532584816217, 0.053725939244031906, 0.019462937489151955, -0.04906490072607994, -0.03287418559193611, 0.006777782924473286, -0.01222708635032177, -0.019247284159064293, 0.049047086387872696, -0.015608245506882668, 0.0014656392158940434, 0.0006851863581687212, 0.009559325873851776, 0.03285277262330055, 0.04716626554727554, 0.006053450517356396, 0.006710940506309271, 0.007399730384349823, 0.06454655528068542, -0.02929028309881687, -0.009187129326164722, -0.01053638942539692, 0.04811185225844383, 0.02877803146839142, 0.06893593072891235, 0.04497990757226944, 0.03520065173506737, 0.061519742012023926, 0.04172465577721596, -0.0003756033256649971, 0.016663385555148125, -0.01403137482702732, 0.01135442778468132, 0.028092535212635994, -0.003784856991842389, -0.00461508659645915, 0.03224726766347885, -0.004041322972625494, 0.0058584692887961864, -0.02620207518339157, 0.033341653645038605, -0.016319595277309418, 0.04854288697242737, -0.012393230572342873, 0.029735181480646133, -0.047903984785079956, 0.003359941765666008, 0.04940541088581085, 0.07374636083841324, -0.023564355447888374, -0.02503529004752636, 0.004484014585614204, 0.03596292436122894, 0.018021410331130028, 0.008187197148799896, 0.024915264919400215, -0.004229347221553326, -0.011545377783477306, 0.024913307279348373, 0.012216271832585335, -0.04175550490617752, -0.052399929612874985, -0.041397396475076675, -0.06358025968074799, -0.047259144484996796, -0.049480173736810684, 0.02723306603729725, 0.006783461198210716, -0.03818994387984276, 0.023883599787950516, -0.013375258073210716, -0.016232728958129883, -0.053856272250413895, -0.0053511979058384895, 0.03314109146595001, 0.02572966180741787, 0.03947732597589493, -0.030519645661115646, -0.0026800711639225483, -0.029878009110689163, 0.007495333906263113, -0.026030970737338066, -0.009015534073114395, 0.010692255571484566, -0.054192427545785904, 0.015501027926802635, 0.021290481090545654, -0.004125936888158321, 0.027130061760544777, -0.050647057592868805, -0.048561759293079376, -0.02515197917819023, 0.004354203585535288, 0.012350592762231827, 0.01002364419400692, -0.053193431347608566, 0.011733923107385635, 0.01512637734413147, -0.051840681582689285, 0.04256625846028328, 0.03427104651927948, -0.04137915000319481, 0.06883502751588821, 0.008184146136045456, 0.02027878910303116, -0.06134028732776642, 0.03083689883351326, 0.019672825932502747, -0.0059279524721205235, -0.03756581246852875, -0.03170686215162277, -0.009469821117818356, 0.029232772067189217, 0.003917370457202196, -0.0017778485780581832, -0.04367728903889656, 0.019136060029268265, 0.02706295996904373, -0.06781895458698273, 0.023450912907719612, -0.04034758359193802, -0.04813278093934059, -0.054883431643247604, -0.05501551553606987, 0.014797902666032314, 0.008630897849798203, 0.013523287139832973, -0.016817040741443634, -0.017719170078635216, -0.0037672684993594885, 0.03438962996006012, 0.04497620835900307, -0.030730754137039185, 0.03269742801785469, 0.04272592067718506, 0.014391889795660973, 0.004088685382157564, 0.027568332850933075, -0.035445503890514374, -0.012567690573632717, 0.013480188325047493, -0.014647656120359898, 0.0379825234413147, 0.006179660093039274, 0.021038740873336792, 0.05348007753491402, 0.05021588131785393, -0.03574690967798233, -0.005594216752797365, 0.003080751048400998, 0.007613829802721739, 0.0222227331250906, 0.005485708825290203, 0.017146190628409386, -0.04055041819810867, -0.012565613724291325, -0.03361880034208298, 0.021839741617441177, 0.0009053569519892335, 0.0422208234667778, -0.049156516790390015, 0.05078348517417908, -0.005086262710392475, -0.06460586190223694, 0.04304833710193634, -0.037313852459192276, 0.025081468746066093, 0.051076047122478485, -0.019086070358753204, 0.031186901032924652, -0.042500633746385574, 0.025697985664010048, -0.003873297246173024, -0.00045011081965640187, 0.027494100853800774, 0.010601401329040527, 0.017131734639406204, -0.00012220368080306798, -0.0013725997414439917, -0.02095138654112816, -0.03803766518831253, 0.0005911145126447082, -0.003504025051370263, 0.008720790036022663, -0.0024342122487723827, -0.05663524940609932, -0.0460096038877964, 0.040991850197315216, 0.030664438381791115, 0.03487378731369972, -0.01140031311661005, 0.06086874380707741, -0.033272404223680496, 0.007554095238447189, 0.05071486532688141, 0.005122085567563772, -0.0071308426558971405, -0.033852238208055496, 0.04119734838604927, 0.032392796128988266, -0.0014389719581231475, -0.051800649613142014, -0.04635719582438469, -0.030214624479413033, 0.02402929961681366, -0.01689763180911541, -0.030911920592188835, -0.016245026141405106, 0.01037970744073391, 0.014633862301707268, 0.04234345257282257, -0.028942927718162537, -0.026805827394127846, -0.056389275938272476, 0.054006993770599365, 0.03639744594693184, -0.04964020848274231, -0.00462369155138731, -0.04502307251095772, 0.0157595407217741, 0.0517081692814827, -0.03145144507288933, -0.033963121473789215, -0.041503652930259705, 0.002273687394335866, -0.01993451453745365, 0.019436504691839218, 0.010822850279510021, 0.003359264461323619, -0.013565164059400558, -0.05617331713438034, 0.0029045725241303444, 0.06398803740739822, -0.0116617102175951, -0.019448230043053627, 0.00318688852712512, 0.023043781518936157, 0.002208081306889653, 0.029573680832982063, 0.013588488101959229, -0.01654038205742836, 0.012937191873788834, -0.06150006875395775, 0.0022952633444219828, -0.020600151270627975, -0.006890914868563414, -0.011927889660000801, 0.03294791281223297, 0.026854755356907845, 0.032714396715164185, -0.01341802068054676, 0.009133568964898586, -0.041010238230228424, 0.038172315806150436, -0.037565678358078, -0.03900923207402229, 0.038910236209630966, -0.012996303848922253, -0.016312044113874435, 0.025717176496982574, 0.06390594691038132, -0.03746239095926285, 0.03086533583700657, 0.03406654670834541, -0.014485006220638752, 0.030788341537117958, -0.06541953235864639, 0.014030514284968376, -0.039607010781764984, -0.03674584999680519, 0.002309704665094614, -0.03705567866563797, 0.020948201417922974, 0.0032752277329564095, -0.004828054457902908, -0.055987775325775146, -0.048661138862371445, -0.0085679329931736, 0.03407791256904602, -0.020194847136735916, 0.030392950400710106, -0.026190150529146194, 0.0029582299757748842, -0.0130072683095932, -0.0016129440627992153, -0.003282499499619007, -0.002029593102633953, -0.03503831475973129, 0.03531182184815407, 0.018813328817486763, 0.00811669509857893, -0.015750307589769363, -0.03994130715727806, -0.002099135657772422, 0.010305877774953842, 0.009625430218875408, -0.02256339229643345, -0.04982556030154228, -0.02368643507361412, -0.006495150737464428, -0.023966846987605095, -0.04048881679773331, 0.002489508129656315, -0.02456185780465603, 0.00579672260209918, 0.019089478999376297, 0.014342592097818851, -0.0006569389952346683, 0.010546908713877201, -0.03687231242656708, 0.06761275976896286, 0.017749585211277008, -0.035403061658144, -0.046211421489715576, 0.02723521925508976, -0.0029739963356405497, 0.03824806585907936, 0.01057679858058691, -0.012413122691214085, -0.04920780286192894, -0.015873314812779427, 0.012348194606602192, -0.03261537849903107, -0.005217490717768669, -0.04996936768293381, -0.05777483433485031, -0.020757310092449188, 0.018424808979034424, 0.044051505625247955, -0.030493048951029778, 0.0003766200097743422, -0.039994265884160995, -0.003507041372358799, -0.05428031459450722, -0.0012182726059108973, -0.0033317641355097294, -0.011200613342225552, -0.003970657475292683, 0.05760301649570465, -0.012865197844803333, 0.026788368821144104, -0.031009001657366753, 0.01967759057879448, 0.034574106335639954, 0.01074771024286747, -0.073723204433918, -0.024821728467941284, 0.007276130374521017, -0.01846426911652088, -0.010667845606803894, -0.006106269080191851, -0.03273322805762291, 0.0620758943259716, -0.05754777789115906, 0.010300930589437485, -0.0009080815361812711, -0.00587527547031641, -0.04960382729768753, 0.01729942113161087, 0.04485905542969704, -0.023050827905535698, 0.012125066481530666, -0.0025224618148058653, 0.044651590287685394, 0.04524414613842964, 0.010689056478440762, -0.03096151165664196, -0.03820906952023506, -0.04822959378361702, -0.04443049058318138, -0.0006478174473159015, -0.026897065341472626, -0.011051945388317108, -0.036143310368061066, -0.03300052508711815, -0.005305986385792494, -0.013949111104011536, 0.04466991871595383, 0.05574208125472069, 0.0341055691242218, 0.02413582056760788, -0.02019251510500908, 0.06346888840198517, 0.04416867718100548, -0.013291866518557072, -0.00902510341256857, 0.010553630068898201, -0.02601877972483635, -0.03477134183049202, -0.040837932378053665, -0.03741969168186188, -0.05111921578645706, -0.01167428307235241, 0.0446653738617897, -0.026305221021175385, 0.026529569178819656, -0.02091478742659092, -0.05973883345723152, -0.019777126610279083, 0.045935217291116714, 0.007134511601179838, 0.028433745726943016, 0.06413020193576813, 0.011047392152249813, -0.02918105572462082, -0.011547159403562546, -0.011075541377067566, 0.009625648148357868, -0.04427634924650192, 0.06076108664274216, -0.0073512545786798, -0.03432145714759827, 0.041095685213804245, 0.06340980529785156, -0.03726865351200104, -0.06721196323633194, 0.0039216638542711735, 0.02314288169145584, -0.030161190778017044, -0.060320693999528885, 0.028186263516545296, -0.010555109940469265, -0.009191874414682388, 0.003143763169646263, 0.031340762972831726, -0.009724286384880543, 0.032948631793260574, 0.009480046108365059, 0.04191737622022629, -0.06207793951034546, -0.005581685807555914, 0.03188420459628105, -0.006371462717652321, -0.022388337180018425, -0.014301396906375885, -0.0007700444548390806, 0.00455047283321619, 0.01373750064522028, 0.03783115744590759, -0.014780315570533276, 0.010327233001589775, 0.04992477968335152, 0.00532535370439291, 0.04516641050577164, -0.0011437323410063982, -0.03270391374826431, 0.03373159095644951, -0.018245035782456398, -0.05740853771567345, -0.022706253454089165, 0.005073552019894123, 0.003764526220038533, 0.01399056427180767, -0.019264675676822662, 0.019472334533929825, 0.015075224451720715, 0.0010222394485026598, -0.01573587767779827, -0.07437912374734879, -0.015263465233147144, -0.048811789602041245, -0.05836177244782448, -0.008859232999384403, -0.05414702370762825, -0.014282407239079475, 0.02067805640399456, -0.00928593147546053, -0.029564153403043747, -0.02064840868115425, -0.01785214990377426, -0.037039827555418015, -0.01894114352762699, -0.02336104027926922, 0.025915680453181267, -0.0409744530916214, -0.07394246757030487, -0.052633136510849, 0.015342041850090027, -0.006252081133425236, 0.023165086284279823, -0.02662527747452259, 0.014502638019621372, -0.004904419183731079, 0.02845548652112484, -0.01255213562399149, 0.011932721361517906, -0.01981709711253643, -0.03696008399128914, -0.010008788667619228, 0.025948869064450264, -0.005429403856396675, 0.03527628257870674, 0.037467487156391144, -0.011604361236095428, 0.05131863057613373, -0.00987260602414608, -0.009772206656634808, -0.02606935054063797, 0.02847873605787754, -0.012424677610397339, -0.0024995359126478434, -0.03808568790555, -0.017939673736691475, -0.00980396755039692, -0.03657156974077225, 0.01850954070687294, -0.020415470004081726, 0.0188347976654768, 0.010399888269603252, -0.0011398408096283674, -0.012371419928967953, 0.06296809017658234, 0.01815692149102688, 0.040092576295137405, 0.01649589277803898, 0.0298755019903183, -0.000006097243385738693, -0.023155149072408676, 0.01303328387439251, 0.021217992529273033, 0.007849769666790962, -0.023966049775481224, 0.010661560110747814, 0.011243906803429127, -0.01376975979655981, 0.02730611152946949, -0.006729458924382925, -0.045024946331977844, -0.06469109654426575, -0.015512481331825256, -0.013021634891629219, 0.07256568223237991, 0.03195605054497719, 0.021497445181012154, 0.016628142446279526, -0.01406644657254219, -0.0484820194542408, 0.01460531260818243, -0.04997148737311363, -0.04163167625665665, 0.025324158370494843, -0.03404426947236061, -0.0031173827592283487, -0.016455965116620064, -0.0044073788449168205, -0.018395178020000458, -0.004901988431811333, 0.01707165315747261, -0.034782249480485916, 0.008901759050786495, -0.004739191848784685, 0.06294234097003937, -0.03700517863035202, -0.00943626370280981, 0.02228742651641369, 0.059735409915447235, -0.034698594361543655, -0.054219070822000504, -0.010758848860859871, 0.03678049147129059, 0.00042047022725455463, -0.013103840872645378, -0.010260154493153095, 0.02365819923579693, 0.023702776059508324, 0.012479898519814014, 0.025135397911071777, 0.027594154700636864, -0.007446908392012119, 0.03917700797319412, -0.025346161797642708, 0.02905176766216755, -0.022555740550160408, 0.04200456291437149, 0.018067991361021996, -0.013508137315511703, -0.03457562252879143, 0.029111064970493317, 0.02460625395178795, -0.011916061863303185, 0.0399092435836792, 0.017880072817206383, 0.007782460190355778, -0.014095183461904526, 0.021692879498004913, -0.010366305708885193, 0.05899723991751671, 0.04132245108485222, 0.04362931847572327, -0.005052358843386173, 0.008954556658864021, 0.05587046965956688, 0.003903627395629883, 0.007678430061787367, 0.015478501096367836, 0.030615178868174553, -0.019677557051181793, 0.006839341018348932, -0.027326634153723717, 0.0005764321540482342, 0.019614506512880325, 0.00365681410767138, 0.019146161153912544, -0.021820463240146637, 0.019077083095908165, -0.024565622210502625, -0.03882647678256035, 0.034889306873083115, -0.0374862477183342, -0.0015708684222772717, 0.016028612852096558, -0.04382879659533501, -0.0029662365559488535, 0.037730470299720764, 0.024650609120726585, -0.011636407114565372, 0.031672246754169464, 0.03015643171966076, 0.008717350661754608, 0.037551455199718475, 0.04090557247400284, 0.020298518240451813, -0.028999127447605133, -0.008152476511895657, -0.01506403461098671, -0.01365269348025322, -0.02242850884795189, 0.012907790020108223, -0.06243422254920006, 0.024111075326800346, -0.005926716141402721, -0.0037574945017695427, 0.03291141614317894, -0.05515889823436737, -0.010761993005871773, -0.04768699035048485, 0.043617017567157745, -0.05399619787931442, 0.0027950608637183905, 0.022383540868759155, -0.020865755155682564, -0.030232857912778854, 0.030188335105776787, 0.008318038657307625, 0.04716598987579346, 0.00642238138243556, 0.06722709536552429, -0.01994098722934723, 0.0222083181142807, 0.05666819214820862, -0.04170119762420654, 0.0005288889515213668, 0.03355926275253296, -0.027773311361670494, -0.021863358095288277, -0.005967175122350454, -0.03443572670221329, -0.058069128543138504, 0.007411976810544729, 0.00602969154715538, -0.02049882896244526, 0.06254607439041138, -0.012633762322366238, -0.042484499514102936, -0.005621056538075209, 0.05870269238948822, -0.020116571336984634, 0.02517964504659176, 0.017769405618309975, 0.041883260011672974, -0.01406894437968731, -0.03861368075013161, -0.021220531314611435, -0.03915312513709068, 0.013843770138919353, -0.038906022906303406, 0.03726403787732124, -0.02058218978345394, -0.011235233396291733, -0.04417434334754944, -0.04595278948545456, -0.036793697625398636, 0.014151319861412048, -0.018868407234549522, -0.05406223610043526, 0.02832535095512867, 0.03480628877878189, 0.0013161657843738794, 0.018195997923612595, 0.011752362363040447, 0.004529774654656649, 0.04789347946643829, 0.06722545623779297, -0.007515038829296827, 0.03869633749127388, 0.05870543047785759, 0.020668230950832367, -0.0012010564096271992, -0.018577806651592255, 0.02525579184293747, -0.03079254738986492, 0.0009043167228810489, -0.024641864001750946, 0.01136433519423008, -0.030673734843730927, -0.05501434952020645, 0.0029777062591165304, 0.033298805356025696, 0.016518928110599518, -0.034591853618621826, -0.03804831579327583, -0.0011872861068695784, -0.05820011347532272, -0.031924694776535034, -0.040988337248563766, 0.04466203227639198, 0.01965724490582943, 0.006669139489531517, -0.010860932059586048, -0.07038446515798569, 0.1462763100862503, 0.06273222714662552, 0.0021269512362778187, 0.01850513182580471, 0.04565790295600891, 0.049395568668842316, 0.01092295441776514, 0.011349378153681755, 0.0020961109548807144, -0.06289000064134598, 0.01530151255428791, -0.012823713012039661, -0.007263617590069771, 0.023417498916387558, 0.004383113235235214, 0.03961065784096718, -0.033083561807870865, -0.012883408926427364, 0.02144814096391201, -0.0426345020532608, -0.06630871444940567, -0.004055807366967201, 0.00895667728036642, 0.0455121248960495, -0.02392885647714138, 0.0002233651466667652, 0.0029886250849813223, -0.038981854915618896, 0.020625896751880646, -0.034132592380046844, 0.023634368553757668, -0.043053463101387024, 0.020219974219799042, 0.017496826127171516, -0.040949542075395584, 0.050604816526174545, -0.00035090415622107685, -0.02029944770038128, 0.0062415581196546555, 0.009479758329689503, -0.011484204791486263, -0.015164945274591446, 0.0064589595422148705, -0.047087036073207855, 0.008358431980013847, 0.026897571980953217, -0.014414183795452118, 0.008913330733776093, 0.011816607788205147, -0.03786086291074753, 0.06655595451593399, -0.028950633481144905, 0.04390199854969978, 0.02363576367497444, -0.044875115156173706, 0.004879347514361143, 0.012052054516971111, -0.006484345532953739, 0.0015507589560002089, 0.006576593033969402, 0.0679953470826149, 0.011591335758566856, -0.01976197212934494, -0.00532492995262146, -0.039033323526382446, -0.002993603702634573, 0.012754089199006557, 0.0557846799492836, 0.0013795928098261356, 0.02059786394238472, 0.0011331218993291259, -0.024391932412981987, -0.027743879705667496, -0.04588683322072029, 0.05157453939318657, 0.010613366030156612, -0.01645699143409729, 0.04943615198135376, 0.010235289111733437, -0.04304502531886101, 0.012683073058724403, -0.0057678851298987865, -0.0024251691065728664, -0.013045324943959713, 0.014433410950005054, 0.04172192141413689, -0.041461873799562454, -0.008765695616602898, -0.02483741007745266, 0.046628717333078384, 0.024987580254673958, 0.04928144812583923, -0.01387780997902155, 0.007301505655050278, -0.006917142774909735 ]
'The mood is rather flat' - Swansea City expert on whether they can do Bristol City and Middlesbrough a favour against Derby County Anything other than a Derby win will do for City David Byrom Swansea City manager Graham Potter (Image: Ryan Hiscott/JMP) GET THE LATEST ROBINS NEWS STRAIGHT TO YOUR INBOX Bristol City are hoping for a favour this evening. The Robins gave their play-off hopes a shot in the arm with last night's 2-1 victory over Millwall. Goals from Jamie Paterson and Famara Diedhiou helped the Robins come from behind to take a vital three points that leaves them a point behind Derby County and Middlesbrough in the race for sixth place. Yet Derby play Swansea City tonight in a game in hand that could well extinguish the Robins' play-off hopes once and for all. If the Rams take victory, then there will be no chance of the Robins making the top six - but anything less and it will go down to the last game of the season on Saturday. Ahead of the game, Teesside Live spoke to WalesOnline football writer Ian Mitchelmore to get the lowdown on Swansea and whether Middlesbrough and Bristol City can count on a favour from Graham Potter's side. What's the general mood at Swansea after conceding the two late goals to draw with Hull? Matty Taylor of Bristol City is closed down by Declan John of Swansea City (Image: Dougie Allward/JMP) "Having had faint hopes of reaching the play-offs, the mood has quickly turned rather flat after what was a hugely disappointing draw against Hull. "Swansea were in control and led 2-0 with 13 minutes left on the clock. But Hull were much improved in the second half and probably deserved a share of the spoils if truth be told. "The last two matches now feel somewhat irrelevant, and the attention has quickly shifted to the summer transfer window which could be yet another turbulent one." Ahead of that game - and at 2-0 up - was there a genuine belief Swansea could sneak into the top six? "Swansea were huge outsiders, but while there was a mathematical chance of finishing in the final play-off berth, there was still belief. "But with the favours that Swansea would have needed, the general belief that it was never really going to happen." 'They don't want to play for this club again' - Millwall manager Neil Harris gives explosive interview after Bristol City defeat On the back of that 2-2 draw, what do you expect from Swansea on Wednesday? Will they be flat or has Potter got his squad looking at the bigger picture and ahead to next season? "It's all about next season for Swansea. Graham Potter has built a squad that has fully bought into his methods, and the players quite simply love playing for the current manager. "Those on the fringes will be hoping to make a mark with a view to becoming more prominent figures next season while those who are in the set-up will hope to maintain their improvement under Potter in these final two outings. "Swansea are also unbeaten at home in the league in 2019 so that's a record they'll be aiming to keep intact." Bristol City's 11-year high and Jamie Paterson's perfection - Robins talking points after Millwall win How do you expect the Derby game to unfold? "I think it could be quite an open game with the way the two sides play. And with that, there should be goals too. Swansea will be desperate to sign off on a high in what will be their final home game of the season, but Derby are in pole position to finish in sixth place. "For the first time in a while, I'm not predicting a home win, although I fancy Swansea to get a point." Swansea City FC Bristol City FCTyreeq Bakinson reveals why he's swapped Bristol City for Ipswich Town as he seals loan switchLeague One Ipswich Town hold an option to buy the 23-year-old at the end of the season
[ 0.01110288966447115, 0.009950594045221806, -0.02889348939061165, 0.015160304494202137, -0.04421613737940788, -0.026819443330168724, 0.011785079725086689, 0.014748672023415565, 0.007840975187718868, 0.012721245177090168, 0.036216460168361664, -0.007378953043371439, 0.015056140720844269, -0.046245090663433075, -0.02704114466905594, -0.02624313347041607, -0.013692904263734818, -0.010207832790911198, 0.0001788955123629421, 0.012259813025593758, -0.0030074315145611763, 0.008889615535736084, -0.04105440527200699, -0.03425425663590431, -0.022001978009939194, 0.03866715356707573, -0.0010374444536864758, 0.00999502744525671, 0.048039596527814865, 0.044444818049669266, 0.0033135092817246914, -0.05069161206483841, 0.01596001535654068, -0.026134980842471123, -0.026253914460539818, -0.001755033154040575, 0.01629519648849964, -0.03517488017678261, -0.010087808594107628, -0.06019194796681404, 0.032595194876194, 0.0038167943712323904, 0.024297580122947693, -0.029075725004076958, -0.0034879164304584265, -0.02922222763299942, 0.0017761281924322248, -0.027027226984500885, 0.017972297966480255, -0.06010284274816513, 0.004988475237041712, -0.04793184623122215, 0.02009793370962143, -0.020381862297654152, -0.006388647016137838, -0.006299586035311222, 0.002305205212906003, -0.003755418583750725, -0.0023368559777736664, 0.01125999167561531, 0.027800841256976128, 0.013499833643436432, 0.01396800298243761, -0.029677674174308777, 0.012616913765668869, -0.0017443826654925942, -0.001037674373947084, 0.003175624180585146, 0.025451630353927612, -0.03437385335564613, -0.00696631520986557, 0.01749877631664276, -0.011750881560146809, -0.01790090650320053, -0.00842014979571104, 0.004840915556997061, -0.03147673234343529, -0.0046135480515658855, -0.022834576666355133, 0.0098795797675848, 0.030122634023427963, 0.07713007926940918, -0.006715430412441492, 0.009081467986106873, -0.08063954859972, -0.011639888398349285, -0.008384455926716328, 0.031981658190488815, 0.01668878085911274, -0.02411789633333683, -0.0072289155796170235, 0.06397166103124619, 0.0059133488684892654, -0.0013682099524885416, 0.05812479928135872, 0.05126278102397919, -0.04006731137633324, 0.017269888892769814, -0.007875986397266388, 0.0033750066068023443, 0.019297195598483086, 0.02016967162489891, 0.00417894683778286, 0.021359046921133995, -0.04458753019571304, -0.011138755828142166, 0.04135643318295479, 0.002692396752536297, -0.015044134110212326, -0.01381075568497181, -0.007584824226796627, -0.020376892760396004, 0.0316658690571785, 0.005778418853878975, -0.0005279473261907697, 0.043360039591789246, -0.0006338490638881922, 0.03515440970659256, -0.03944006189703941, 0.03528105840086937, 0.035979725420475006, -0.0014820225769653916, 0.02980874665081501, -0.012101562693715096, 0.01540710125118494, 0.003272316651418805, -0.05452543869614601, 0.03906234726309776, -0.03541519120335579, -0.04934290051460266, 0.006398419383913279, -0.04473002627491951, -0.005075992550700903, 0.004028958268463612, 0.017681000754237175, 0.013668550178408623, 0.02058173529803753, 0.07176152616739273, -0.015113811939954758, -0.02853689342737198, 0.04729193076491356, 0.037859976291656494, 0.0067838020622730255, 0.08199527859687805, -0.02866283804178238, 0.03532920405268669, 0.04981442913413048, 0.002024265006184578, -0.023655366152524948, 0.03341703489422798, -0.026821743696928024, 0.012376933358609676, 0.011661341413855553, 0.021570514887571335, -0.013971592299640179, -0.0015817718813195825, 0.0007365175406448543, 0.0025383883621543646, 0.029811905696988106, 0.04530347138643265, -0.04627690091729164, 0.012565466575324535, 0.008628854528069496, 0.05462336540222168, -0.02185760997235775, 0.022346099838614464, -0.02177826501429081, -0.011430495418608189, -0.01004454493522644, -0.05177683383226395, 0.014274043962359428, 0.020080311223864555, 0.003699882421642542, 0.03571803867816925, 0.0304722860455513, 0.07263278216123581, 0.01529647596180439, -0.03245618939399719, 0.07055086642503738, 0.053586892783641815, -0.02708403766155243, -0.02490716241300106, -0.004951089154928923, 0.059849049896001816, 0.007918410934507847, 0.0018031303770840168, 0.025100016966462135, -0.04151209443807602, -0.019394809380173683, -0.02850443124771118, -0.0003747215087059885, 0.017854027450084686, -0.025527287274599075, 0.023983938619494438, -0.009181114844977856, -0.0037819514982402325, 0.03708209842443466, -0.033562611788511276, -0.005798307713121176, -0.05791584774851799, -0.043342288583517075, 0.08262964338064194, -0.031261567026376724, 0.02772437036037445, 0.020233485847711563, -0.05782146379351616, 0.04120059311389923, 0.05306017026305199, -0.01403050310909748, -0.0037834933027625084, 0.053324900567531586, 0.009710886515676975, 0.0026569233741611242, -0.0214077178388834, 0.026180541142821312, 0.0031902913469821215, -0.022568373009562492, 0.04099021852016449, 0.010910583660006523, -0.04268830269575119, 0.015223472379148006, 0.016401061788201332, 0.02523040771484375, 0.02044970728456974, -0.002110221656039357, 0.013937733136117458, -0.01241002045571804, 0.031412288546562195, -0.011619685217738152, -0.029051627963781357, 0.026044514030218124, 0.05116283893585205, 0.004234812222421169, 0.053014494478702545, 0.031033756211400032, 0.006000672001391649, 0.034722160547971725, 0.04221957176923752, -0.012223215773701668, -0.013677948154509068, 0.00017879300867207348, 0.014081472530961037, 0.06278299540281296, 0.02338767983019352, -0.013117289170622826, 0.050244513899087906, -0.027941476553678513, -0.0036770182196050882, -0.016702402383089066, 0.040471021085977554, 0.005154328886419535, 0.025494948029518127, 0.049832783639431, 0.028331967070698738, -0.02918216586112976, -0.01139866840094328, 0.02989893965423107, 0.03930608928203583, -0.03242717683315277, 0.026821430772542953, 0.0045016128569841385, 0.04320738837122917, 0.004494350403547287, -0.030964389443397522, 0.06667929142713547, 0.029110459610819817, -0.004542837850749493, 0.009603578597307205, 0.0024920727591961622, -0.04755284637212753, -0.03488708660006523, -0.056790269911289215, -0.04481780156493187, -0.05204914137721062, -0.06605340540409088, -0.002860879758372903, 0.07610193639993668, -0.0540710985660553, -0.0037664733827114105, -0.0038361966144293547, 0.01213351171463728, -0.035821471363306046, -0.013494319282472134, 0.06312483549118042, 0.019074199721217155, 0.014617102220654488, -0.04284713417291641, 0.06771184504032135, -0.01695368066430092, 0.024302281439304352, -0.06988611072301865, 0.0025228173471987247, 0.003141662571579218, -0.0006566031952388585, 0.03599075600504875, -0.03643820434808731, 0.03849739581346512, -0.010284642688930035, -0.04267815500497818, -0.025790724903345108, 0.011817503720521927, 0.00618034228682518, 0.007429684046655893, -0.011244184337556362, -0.029371511191129684, 0.06314806640148163, 0.013089600019156933, -0.03195179998874664, 0.025801625102758408, 0.012947002425789833, -0.05354052409529686, 0.03223559632897377, 0.029484130442142487, 0.014535456895828247, -0.06172172725200653, 0.04217212274670601, 0.034439243376255035, -0.0110671017318964, 0.012582437135279179, -0.016543038189411163, -0.01729140803217888, 0.016906777396798134, 0.026707930490374565, -0.01923682726919651, -0.02506469376385212, 0.04477990046143532, 0.01521995011717081, -0.04065828025341034, -0.008904830552637577, -0.04635468125343323, -0.03606438636779785, -0.029251497238874435, -0.0491662472486496, 0.028716949746012688, 0.06273345649242401, 0.0543171726167202, 0.03446022421121597, -0.038781244307756424, 0.03525563329458237, -0.004544764291495085, 0.03173304721713066, -0.04437705874443054, 0.04061438515782356, 0.04903167113661766, -0.009173562750220299, 0.028631538152694702, -0.0012853526277467608, -0.010610376484692097, -0.016941046342253685, 0.0037011485546827316, -0.029811985790729523, 0.0001944917457876727, 0.02260500378906727, 0.011503987945616245, 0.0056074559688568115, 0.035432979464530945, -0.022900115698575974, -0.01681080274283886, -0.0041386038064956665, -0.0025003638584166765, 0.024979105219244957, -0.0034342515282332897, 0.010797888040542603, -0.01280730590224266, -0.047095347195863724, -0.05012243613600731, 0.016220392659306526, 0.009153079241514206, 0.0627753883600235, -0.04145840182900429, 0.07547740638256073, -0.022136401385068893, -0.003500628052279353, 0.03951473534107208, -0.05665791779756546, 0.031949482858181, 0.05849739909172058, -0.02655986323952675, 0.03767062723636627, -0.04329211264848709, 0.043766558170318604, -0.024590320885181427, -0.010136851109564304, -0.008444149978458881, 0.04718250781297684, 0.026371661573648453, -0.0035117960069328547, -0.019831115379929543, -0.023820437490940094, -0.014039834029972553, 0.0037761745043098927, -0.04073363170027733, -0.0008363945526070893, -0.015586694702506065, -0.059697963297367096, -0.04094375669956207, 0.01893683336675167, 0.046346936374902725, 0.06728051602840424, 0.0003122826456092298, 0.04151057451963425, -0.03962479904294014, -0.02037760242819786, 0.049587368965148926, -0.029898514971137047, 0.022164219990372658, -0.032431963831186295, 0.033884719014167786, -0.009139389730989933, -0.037429921329021454, -0.039004694670438766, -0.016995789483189583, -0.043598879128694534, 0.03220752254128456, 0.010191098786890507, -0.035957224667072296, -0.016474157571792603, 0.033082906156778336, -0.0025933822616934776, 0.0011371647706255317, -0.0375494621694088, -0.05344664677977562, 0.007132282480597496, 0.027605440467596054, 0.02349635399878025, -0.009968218393623829, 0.01309259794652462, -0.04822654649615288, 0.06663254648447037, 0.057809893041849136, -0.0023877269122749567, -0.03726009279489517, -0.04036630690097809, -0.050201665610075, 0.015375301241874695, 0.017182299867272377, 0.04507732391357422, 0.018676701933145523, -0.013373197987675667, -0.030852554365992546, 0.04343302175402641, 0.019076915457844734, 0.018716003745794296, -0.011557096615433693, 0.009125481359660625, 0.022046124562621117, -0.00522839417681098, 0.05670911446213722, -0.054458264261484146, -0.010004931129515171, 0.00905628316104412, -0.04889409616589546, 0.01785160042345524, -0.006356511730700731, -0.03458608686923981, 0.019049102440476418, -0.024238696321845055, 0.012852082960307598, 0.05680476129055023, -0.028418293222784996, 0.015934493392705917, -0.0006456789560616016, 0.022507093846797943, -0.03807089105248451, -0.014803769066929817, 0.04180142655968666, -0.013639457523822784, -0.03138863295316696, 0.0572860948741436, 0.03430463373661041, -0.01943700574338436, 0.00406258087605238, 0.03505390137434006, -0.0509946271777153, 0.017528316006064415, -0.025388723239302635, -0.0005210700910538435, -0.04050400108098984, -0.036182813346385956, 0.0028219004161655903, -0.01650642603635788, 0.055011894553899765, -0.00615461403504014, 0.011163456365466118, -0.060282908380031586, -0.02981407754123211, -0.03450380638241768, -0.01995001919567585, 0.01588279753923416, 0.02474697306752205, -0.031175170093774796, -0.024350492283701897, 0.02659965492784977, -0.017105013132095337, -0.009165335446596146, 0.011814471334218979, 0.007208814844489098, 0.00941399298608303, 0.0011536417296156287, 0.00695127435028553, -0.00525163346901536, 0.013828312046825886, -0.05685294046998024, 0.02099854126572609, -0.008975295349955559, -0.004833575803786516, -0.048568274825811386, -0.0076064481399953365, -0.014545897021889687, -0.019010884687304497, -0.0159926600754261, 0.029628809541463852, -0.026728713884949684, 0.009528637863695621, 0.00104339059907943, 0.010720491409301758, 0.010938556864857674, 0.039052944630384445, -0.04650619253516197, 0.03548000007867813, 0.01276871282607317, -0.05459119752049446, -0.02861238829791546, 0.02065381035208702, -0.010971590876579285, 0.047570522874593735, -0.03032660111784935, -0.003970700781792402, 0.0008944818400777876, -0.059471022337675095, -0.018346646800637245, -0.03243086114525795, -0.006194024346768856, -0.059555791318416595, -0.002889494877308607, -0.015147631987929344, 0.05134705454111099, 0.015230159275233746, -0.01944572478532791, -0.025652257725596428, -0.0462302602827549, 0.025921782478690147, -0.040235623717308044, -0.03245231509208679, -0.03625966235995293, -0.013817142695188522, 0.0037297848612070084, 0.064570851624012, 0.028058992698788643, 0.0534830242395401, 0.005862334743142128, -0.012259646318852901, -0.016631942242383957, -0.02052374556660652, -0.022641342133283615, -0.01725982315838337, -0.02025054208934307, -0.011329331435263157, 0.016863461583852768, -0.0033134790137410164, -0.028670169413089752, 0.011513466015458107, -0.03754594177007675, 0.042779434472322464, -0.020710188895463943, -0.017131203785538673, -0.011244341731071472, -0.00257322215475142, 0.04929766058921814, -0.026033319532871246, 0.03298069164156914, -0.020175054669380188, 0.03381050005555153, 0.04023611918091774, 0.005106221418827772, -0.022824976593255997, -0.022375522181391716, -0.050625886768102646, -0.025876110419631004, 0.02232382819056511, -0.0546945258975029, -0.03059617057442665, -0.051617320626974106, -0.02189459092915058, 0.04428042471408844, 0.030018605291843414, 0.05083262547850609, 0.05553099885582924, -0.010784327983856201, -0.008901670575141907, -0.026382604613900185, 0.00498726824298501, 0.050439074635505676, -0.005360511131584644, -0.002059017540886998, -0.03850049152970314, 0.0005969807389192283, -0.020895257592201233, -0.06387095153331757, -0.04771038889884949, -0.05074956640601158, -0.017831094563007355, 0.06054743006825447, -0.032971497625112534, 0.02863278053700924, -0.00017540536646265537, -0.033395085483789444, -0.09030929952859879, 0.031334955245256424, 0.03753227740526199, -0.014832288026809692, 0.05058188736438751, -0.00844820961356163, -0.013497498817741871, 0.006565896328538656, 0.043063316494226456, -0.005345501936972141, -0.06802533566951752, 0.056733448058366776, -0.023925187066197395, -0.035978250205516815, 0.04231364652514458, 0.04065798968076706, -0.04738825932145119, -0.03968207165598869, 0.00569686945527792, -0.007499313447624445, -0.032374389469623566, -0.00852600485086441, 0.023116212338209152, -0.03046027198433876, -0.013497266918420792, 0.015254860743880272, 0.039848826825618744, 0.008457943797111511, 0.07496629655361176, -0.017357299104332924, 0.009291326627135277, -0.041444938629865646, 0.03951888531446457, 0.002189499093219638, 0.008886921219527721, -0.003187681781128049, -0.030058203265070915, 0.02263636328279972, -0.00030192354461178184, -0.02750951237976551, 0.05809378996491432, -0.0029309489764273167, 0.017565883696079254, 0.03309999033808708, 0.011587992310523987, 0.010537010617554188, 0.012340604327619076, -0.024015028029680252, 0.026025941595435143, 0.0028791173826903105, -0.016882730647921562, -0.009831280447542667, 0.013219556771218777, 0.028613293543457985, 0.0750638023018837, -0.05493585765361786, 0.03196895867586136, 0.03580774366855621, 0.002504288451746106, 0.03233862295746803, -0.03522684425115585, -0.045266106724739075, -0.0072948262095451355, -0.039064306765794754, -0.045254938304424286, 0.0064521851018071175, -0.01248882431536913, 0.025867797434329987, -0.009968184866011143, -0.03190985321998596, 0.0003690904122777283, 0.01697581261396408, -0.01344230305403471, 0.005959713831543922, -0.04144350066781044, 0.01818099059164524, -0.048692453652620316, -0.05735136941075325, -0.05536290258169174, -0.011255391873419285, -0.0035604906734079123, -0.01290837861597538, -0.024279769510030746, 0.015365072526037693, -0.026458164677023888, 0.020747212693095207, 0.0023426099214702845, -0.010710814967751503, -0.013470659963786602, -0.04206173121929169, -0.015670929104089737, 0.03821825236082077, -0.014335473999381065, 0.05166293680667877, 0.013585341162979603, -0.020676307380199432, 0.034883081912994385, -0.027790328487753868, 0.019015071913599968, 0.004275877960026264, -0.02237508073449135, -0.009604012593626976, -0.009844419546425343, -0.004668171051889658, -0.032642655074596405, -0.01901879720389843, -0.008286803960800171, 0.04419516772031784, -0.006835607811808586, -0.010794775560498238, 0.03963015601038933, -0.020528292283415794, 0.012367770075798035, 0.037603698670864105, -0.0011329182889312506, 0.009784498251974583, -0.008993461728096008, 0.043689362704753876, 0.01566554792225361, 0.005092478822916746, 0.02088984102010727, 0.020235197618603706, 0.03781513869762421, 0.0045299953781068325, 0.023332728073000908, -0.002528928220272064, -0.033469103276729584, 0.030448680743575096, -0.01180767361074686, -0.031373538076877594, -0.030215345323085785, -0.021013766527175903, 0.023380745202302933, 0.03888782113790512, 0.004870585631579161, -0.029516544193029404, 0.00584800262004137, -0.01953815296292305, -0.04795081913471222, 0.0028740516863763332, -0.07079684734344482, -0.015488273464143276, 0.033393822610378265, 0.005627335049211979, -0.031960003077983856, -0.020563384518027306, -0.056107502430677414, 0.031186912208795547, -0.0008236441062763333, 0.007725226227194071, -0.02702704817056656, -0.005304289981722832, -0.0005497241509146988, 0.020205054432153702, -0.04373316466808319, 0.019606830552220345, -0.01054530218243599, 0.03545157238841057, -0.05029122531414032, -0.0401734933257103, 0.043636418879032135, 0.012584283947944641, -0.01339106634259224, 0.0030191659461706877, -0.016390711069107056, 0.017325688153505325, -0.02783218026161194, 0.0027511988300830126, 0.002496411558240652, 0.024249987676739693, 0.018798477947711945, 0.02883422002196312, 0.0016069471603259444, 0.02339627407491207, -0.05630965158343315, 0.059442583471536636, 0.02663901448249817, -0.02600131556391716, -0.020729852840304375, 0.03192480280995369, 0.02205410785973072, -0.04557018354535103, 0.027550972998142242, 0.04374365508556366, 0.06022870913147926, -0.03034926764667034, 0.020835677161812782, 0.0200587697327137, 0.04955369606614113, 0.030835242941975594, 0.03456499055027962, -0.00042309248237870634, 0.04185422509908676, 0.04852517694234848, -0.022608939558267593, 0.013720938935875893, 0.01593802496790886, -0.0006515155546367168, -0.029306601732969284, 0.020762696862220764, -0.0248063076287508, 0.04383213445544243, -0.0030711584258824587, -0.01706446148455143, 0.012764264829456806, -0.011116242967545986, -0.0071565937250852585, -0.015201153233647346, -0.019383342936635017, 0.02346496656537056, -0.004553657490760088, 0.016048450022935867, -0.009871790185570717, -0.02205962873995304, -0.009544508531689644, 0.01629028096795082, -0.021489836275577545, 0.011291910894215107, 0.0068237679079174995, 0.013464190997183323, 0.0156817939132452, 0.044173333793878555, 0.014377287589013577, -0.0023502716794610023, 0.010436255484819412, 0.030022762715816498, 0.04124344512820244, -0.02549864538013935, -0.02650231495499611, -0.0048641422763466835, -0.04011280834674835, 0.030118806287646294, -0.02075139991939068, -0.02411622554063797, -0.003933944273740053, -0.05041765049099922, 0.000180793009349145, -0.01735845021903515, 0.028926396742463112, -0.04956170171499252, 0.007943100295960903, 0.003155617043375969, 0.0046631935983896255, -0.028542237356305122, 0.03649992495775223, 0.012387961149215698, 0.040778908878564835, -0.0006339522660709918, 0.06591171026229858, -0.02088940143585205, 0.044379256665706635, 0.05298206955194473, -0.0375528521835804, -0.027470367029309273, 0.03461948782205582, 0.0007181157125160098, -0.0204530730843544, -0.020742755383253098, -0.037448856979608536, -0.03775618597865105, -0.029066504910588264, -0.056361857801675797, -0.026306068524718285, 0.011572879739105701, -0.01723351515829563, -0.055903054773807526, 0.012503325939178467, 0.04083262011408806, -0.06029348075389862, -0.0002822245005518198, 0.023112142458558083, 0.0019133077003061771, 0.007354987785220146, -0.020404988899827003, -0.03835910186171532, -0.030634110793471336, -0.007968053221702576, -0.042227279394865036, 0.05701752379536629, -0.025862956419587135, -0.0401955246925354, -0.024296646937727928, -0.01818198896944523, -0.020373521372675896, 0.013835503719747066, -0.026092708110809326, -0.040212441235780716, 0.039529118686914444, 0.03463931009173393, 0.023172499611973763, 0.01552102342247963, -0.023226674646139145, 0.0024530026130378246, 0.026848014444112778, 0.03229762613773346, -0.00986687745898962, 0.0033026498276740313, 0.024482645094394684, -0.0482046864926815, 0.02558440901339054, -0.037883058190345764, 0.03676312044262886, -0.011735961772501469, -0.03921370953321457, 0.028535321354866028, 0.012693112716078758, -0.011255941353738308, -0.07370627671480179, 0.021126842126250267, 0.01444458682090044, -0.006695279851555824, 0.01096203550696373, -0.06961186975240707, -0.008136187680065632, -0.02145923674106598, -0.030563225969672203, -0.02887946367263794, 0.03232787549495697, 0.022034458816051483, -0.03399920463562012, -0.014098013751208782, -0.0681409016251564, 0.14070779085159302, 0.051808759570121765, 0.022522665560245514, -0.029388757422566414, 0.019955314695835114, 0.015323145315051079, -0.012921284884214401, 0.00971220526844263, -0.024393746629357338, -0.017096281051635742, 0.05525434762239456, -0.007563469931483269, 0.03789062798023224, 0.00822464656084776, -0.006396347191184759, 0.07987233996391296, -0.03167244419455528, 0.030332012102007866, 0.030458511784672737, -0.038823917508125305, -0.03413023427128792, 0.017418354749679565, 0.01923319138586521, 0.048817481845617294, -0.014010301791131496, 0.024254165589809418, -0.001905528362840414, -0.029429100453853607, -0.017029650509357452, -0.03499213978648186, 0.03243522718548775, -0.05290357768535614, 0.028514204546809196, -0.017358997836709023, -0.053211770951747894, 0.027356887236237526, -0.014946120791137218, -0.01665211096405983, -0.008990749716758728, -0.002818184671923518, 0.0059855044819414616, -0.0006568627431988716, -0.0019309219205752015, -0.035305608063936234, 0.012911486439406872, 0.008928949944674969, -0.05241614207625389, 0.017499737441539764, 0.0061505381017923355, 0.003115357831120491, 0.05973903089761734, -0.012818912044167519, 0.05162268877029419, -0.05644569918513298, -0.012565867975354195, -0.0010433830320835114, -0.014206720516085625, -0.02428353764116764, -0.03240080177783966, 0.005837930832058191, 0.02319892682135105, -0.012643029913306236, -0.02402077242732048, 0.012429142370820045, -0.06342526525259018, 0.002362219151109457, -0.002362087368965149, -0.046302903443574905, -0.023270975798368454, -0.024594876915216446, -0.01313982717692852, 0.024400858208537102, 0.050723928958177567, -0.008941903710365295, 0.03306050971150398, 0.04225234314799309, -0.033695340156555176, 0.018560929223895073, 0.02998761460185051, -0.00015265117690432817, -0.018391702324151993, -0.023677490651607513, 0.039081789553165436, 0.010050646960735321, 0.010731927119195461, 0.02272924967110157, -0.0648505687713623, -0.04627920314669609, -0.016250183805823326, 0.07099978625774384, 0.05388074740767479, 0.004420778714120388, -0.028025778010487556, -0.017942804843187332, -0.03385775163769722 ]
HomeยปMoviesยปMovies by DecadeยปMovies - 1970s Movies - 1970s Movies - F 4 Mins Read Fourth Wish, The (1976) Filmed in Adelaide, the Australian film The Fourth Wish is the story of a 12-year-old boy dying of leukaemia which had already been told as a three-part ABC television series in 1974. It proved popular enough to be repeated shortly after it was first shown, and the writer, Michael Craig, then rewrote the script into a feature film. The boy, Sean, is played by 13-year-old Robert Bettles, and it's a fine performance in a role which requires him to convey many things at once. He is supposed to know that he is dying yet not want to admit that he knows. He is to show concern for his father without being cute about it. In other words, he is supposed to come across as a 12-year-old saint unblemished by sanctimoniousness or awareness beyond his years. And he does it by understating everything and conveying an essential calmness which works well against the more explosive style of John Meillon who plays Casey, Sean's shift-working father whose wife left him to bring up their son alone eight years ago. It's not a great life. When the boy is at home at night, he's at work, the landlord is unsympathetic, and the flat is small and dull. But Sean makes it all worthwhile and Casey can't believe it when the boy, after collapsing at school, is taken to the hospital and diagnosed with leukaemia. But, painfully, he lets himself be convinced and trains himself not to have too much hope in the drugs and the blood transfusions. Instead, he gives up his job and concentrates on making Sean's last months as happy as possible. There is a camping trip and a game in which Sean makes three wishes, which Casey promises to fulfil. He wants a dog and to meet both his mother and the Queen. For Casey this is supposed to be a journey in which he discovers himself, and the script works hard to have it seen that way, but the mechanics are not ingenious enough. The film's best sequences deal with Casey's efforts to grant the second wish, a meeting with the boy's mother, Connie. There are no gimmicks in this part of the story, just a well-drawn picture of a realistic relationship and a great performance by Robyn Nevin as Connie, a woman who thinks she is well beyond caring about anything except whisky. While she pulls herself together long enough to do as Casey asks and not disappoint the boy, the script resists all temptation to become sentimental about her. Meillon's performance is not so interesting. He has done more than any other actor to define a particular Australian type, the sort of man who masks unworldliness with bombast and would rather pretend to be angry than let anyone see that he's hurt. But he is now letting the character calcify. He has done all that Casey does many times before. The mannerisms are too pat. But the film's real trouble is in the writing. It doesn't give Casey and Sean enough people to play off. It surrounds them with caricatures so that it is only in the scenes with Connie that the film really comes alive. It's a complex story given an uncomplicated treatment, which is sad because when it's good, it's very good. The Fourth Wish was nominated for 5 AFI (Australian Film Institute) Awards, including Best Actress in a Lead Role for Robyn Nevin, Best Screenplay for Michael Craig, Best Achievement in Editing for Gerard Turney-Smith, and Best Actress in a Supporting Role for Anne Haddy. In the end, the film won one AFI Award, for Best Actor in a Lead Role, for the movie's star John Meillon. John Meillon Robert Bettles Dr Richardson Michael Craig Dr Kirk Anne Haddy Harbord Ron Haddrick Robyn Nevin Julie Hamilton Julie Dawson Edwin Hodgeman Norman Yemm Don Crosby Patcheck Cul Cullen Gordon McDougall Dennis Olsen Les Foxcroft Mrs Peterson Audrey Stern Mr Peterson Lionel Williams Marilyn Allen Moishe Smith Bill Collins' Golden Years Of Hollywood 1 9 6 6 - 1 9 9 5 (Australia) Bill Collins has been described as "Mr Movies of Australia". Heโ€ฆ Obsession (1976) High melodrama, creeping insanity and barely contained delirium abound in this dizzying tribute to the high-tension thrillers of Alfred Hitchcockโ€ฆ Adventures of Gerry Gee, The 1 9 5 9 - 1 9 6 2 (Australia) 5 minute episodes The first regular live children's television showโ€ฆ Lane End 1 9 7 2 (Australia) 7 x 30 minute episodes Short-lived Aussie serial Lane End debuted on 11 March 1972. Writtenโ€ฆ Bev Harrell Alongside Lynne Randell, petite (4' 9") blonde Bev Harrell was one of the most popular female solo singers on theโ€ฆ Start Living 1 9 6 7 (Australia) 29 x 30 minute episodes This Sunday evening series for young people from Australia's ABC starredโ€ฆ Flirting (1989) Director John Duigan began the coming-of-age story of Danny Embling in the wonderful The Year My Voice Broke (1987), and continuesโ€ฆ Ryan 1 9 7 3 - 1 9 7 4 (Australia) A twist on the conventional cop dramas, English actor Rod Mullinarโ€ฆ Previous ArticleSecret of My Success, The (1965) Next Article International Pop Proms, The Jesus & Mary Chain, The Formed in East Kilbride, Scotland, this indie quartet originally [โ€ฆ] Puka Shells Teen idol David Cassidy's Hawaiian puka shell necklace [โ€ฆ] 1 9 7 5 โ€“ Current (UK) This popular long-running arts [โ€ฆ] Buttercup Chain, The (1970) A lovely, melancholy little gem about lost love and fleeting [โ€ฆ] X (Australia) X was one of the most notorious bands ever to emerge from the [โ€ฆ] One of the most popular intelligent techno acts to emerge during [โ€ฆ]
[ 0.005848243832588196, -0.026113225147128105, 0.005034515168517828, 0.005333248525857925, -0.050959110260009766, -0.02243771404027939, -0.009533264674246311, 0.03174354135990143, -0.007404770702123642, -0.00991622544825077, 0.04753213748335838, -0.008171926252543926, 0.007376111578196287, -0.0241073090583086, -0.029759394004940987, -0.025662917643785477, 0.0037610495928674936, -0.032023776322603226, -0.03317568451166153, 0.027170686051249504, -0.0014186763437464833, 0.03333369642496109, -0.06485804915428162, -0.028303563594818115, -0.013284365646541119, 0.023564035072922707, 0.0418584980070591, -0.017305031418800354, 0.029463184997439384, 0.043839212507009506, -0.011470776051282883, -0.05394693836569786, 0.07262428104877472, -0.037137530744075775, -0.03208114951848984, -0.013277721591293812, 0.05889714136719704, -0.05799512565135956, 0.0032443534582853317, -0.04278344660997391, 0.03060150519013405, -0.03690776973962784, 0.027155106887221336, -0.028324631974101067, -0.05516021326184273, -0.02877429500222206, 0.012284858152270317, -0.03463176265358925, 0.03219575434923172, -0.025726478546857834, -0.0339198037981987, -0.012706190347671509, 0.0353250689804554, -0.00945323333144188, -0.0006535378051921725, 0.03172599896788597, 0.027288902550935745, -0.004396951757371426, -0.04250849038362503, 0.031379371881484985, 0.014466655440628529, -0.012065570801496506, 0.04685042425990105, -0.025396380573511124, 0.018612096086144447, 0.02723938785493374, 0.02287968061864376, 0.012790034525096416, 0.04397345334291458, -0.002486081561073661, -0.029625752940773964, 0.022680003196001053, -0.016315406188368797, -0.017332755029201508, 0.013647320680320263, -0.02156437374651432, 0.004348949063569307, 0.019689373672008514, 0.010142284445464611, 0.000615205557551235, 0.03676683455705643, 0.05548837408423424, -0.007249338552355766, 0.02641979604959488, -0.04968564957380295, -0.04538489878177643, -0.028302129358053207, 0.060647886246442795, 0.029598088935017586, 0.0025520692579448223, 0.004423145670443773, 0.05092359334230423, -0.009751503355801105, -0.02353690005838871, 0.021545466035604477, 0.06523288041353226, -0.04847376421093941, 0.009181501343846321, 0.011179224587976933, -0.01337586808949709, 0.013493949547410011, 0.03907902166247368, -0.027342727407813072, -0.003024843754246831, -0.0014009572332724929, -0.03257512301206589, 0.02914811298251152, -0.0002138925774488598, -0.01888294517993927, -0.031470030546188354, -0.009140610694885254, -0.009732645936310291, 0.022079726681113243, 0.005125651601701975, -0.022500336170196533, 0.048321738839149475, 0.02288607880473137, 0.048169929534196854, -0.03483092412352562, 0.03965046629309654, 0.015539031475782394, 0.0018185353837907314, 0.05113764479756355, -0.03471998870372772, 0.019285300746560097, -0.046654216945171356, -0.02741868980228901, 0.04747448116540909, -0.020434366539120674, -0.021300029009580612, 0.012767503038048744, -0.0398673340678215, -0.01969105936586857, 0.009954065084457397, -0.024540817365050316, 0.008873675018548965, 0.00001607631566002965, 0.02946772426366806, 0.0178753100335598, -0.05845274031162262, 0.0352424681186676, 0.023799946531653404, -0.00428765220567584, 0.08216754347085953, 0.006513213273137808, 0.022172855213284492, -0.009437410160899162, 0.0022770517971366644, -0.03912309184670448, 0.019383464008569717, -0.04963861405849457, -0.012953358702361584, -0.007276872172951698, 0.02848873846232891, 0.015453161671757698, -0.008571462705731392, -0.012359043583273888, -0.0012630247510969639, 0.021448327228426933, 0.021127426996827126, -0.005538262892514467, -0.002220592461526394, -0.003594297217205167, 0.061582084745168686, -0.0018072121310979128, 0.010681462474167347, -0.03007122315466404, -0.0155639024451375, 0.0014407567214220762, -0.014014111831784248, 0.025443734601140022, -0.0053311982192099094, -0.009873799979686737, 0.025835558772087097, 0.023582927882671356, 0.03754732012748718, 0.08125637471675873, -0.009649567306041718, 0.018705470487475395, 0.06344024091959, -0.07676349580287933, -0.015363093465566635, 0.019765911623835564, 0.054574042558670044, -0.0035098884254693985, -0.006562011316418648, -0.007757889572530985, -0.033816829323768616, -0.031219065189361572, -0.018723201006650925, -0.024636901915073395, 0.019880976527929306, -0.04679049551486969, 0.028899146243929863, 0.011014235205948353, -0.015730904415249825, -0.0061478265561163425, -0.05543993413448334, -0.04687834531068802, -0.01990719698369503, -0.021731961518526077, 0.03576880693435669, -0.007292734459042549, 0.03999599069356918, 0.0008765124948695302, -0.0453471876680851, 0.023011451587080956, 0.06823158264160156, -0.018074268475174904, 0.017956452444195747, 0.016894953325390816, -0.00031272973865270615, -0.0034015236888080835, -0.0035606760066002607, -0.0005279405741021037, 0.019944172352552414, -0.0428694486618042, 0.06824114918708801, -0.022023040801286697, 0.00003859035496134311, -0.004480777774006128, 0.044844869524240494, 0.023969920352101326, 0.04572601243853569, -0.02061784826219082, 0.02310553938150406, -0.00525955343618989, 0.04938063025474548, -0.03631165251135826, -0.017310991883277893, -0.010347818955779076, 0.04889650642871857, 0.024629198014736176, 0.04639853537082672, 0.05813492089509964, 0.04483529180288315, 0.03680192306637764, 0.026462243869900703, -0.01577293500304222, 0.019234029576182365, -0.004093932453542948, 0.012504739686846733, 0.07100577652454376, 0.049059946089982986, -0.0020021607633680105, 0.04420150816440582, -0.01703893207013607, -0.02077215351164341, 0.0013129671569913626, -0.00303454021923244, 0.037373680621385574, 0.049326006323099136, 0.035699330270290375, 0.01057954877614975, 0.00512853916734457, 0.0015133493579924107, 0.05092177912592888, 0.06684648245573044, 0.0009380701230838895, -0.00803961418569088, -0.0006659073405899107, 0.030989984050393105, 0.003165244357660413, -0.010091269388794899, 0.05158910155296326, 0.005140839610248804, 0.0034494868014007807, 0.015716619789600372, 0.0083424998447299, -0.07155757397413254, -0.02770235203206539, -0.08163949847221375, -0.010373095981776714, -0.025502193719148636, -0.029518138617277145, 0.006128739099949598, 0.07434485852718353, -0.056125275790691376, 0.031179143115878105, -0.003044465556740761, -0.0236262958496809, -0.046517591923475266, -0.012241847813129425, 0.046837590634822845, 0.027508731931447983, 0.02688787691295147, -0.027948753908276558, 0.03753310814499855, -0.015504717826843262, 0.04842067137360573, -0.0011035981588065624, -0.030608804896473885, 0.013204075396060944, -0.002942129271104932, 0.034913528710603714, -0.025597674772143364, -0.03039279393851757, -0.01723901554942131, -0.06464596092700958, -0.06217436119914055, 0.022479243576526642, 0.039878394454717636, -0.02099168486893177, 0.011006307788193226, -0.031068556010723114, 0.04661877080798149, 0.03473430871963501, -0.031608838587999344, 0.04436138644814491, 0.05375555902719498, -0.05535545200109482, 0.04108990728855133, 0.004687090869992971, 0.02003287896513939, -0.03910905122756958, 0.03382011875510216, 0.013001161627471447, 0.009742340072989464, -0.020739978179335594, -0.009043265134096146, -0.003998471889644861, 0.016867857426404953, 0.053221192210912704, -0.005406808108091354, -0.04789397120475769, 0.04540925845503807, 0.012971611693501472, -0.026776615530252457, 0.024878650903701782, -0.02050592191517353, -0.009550411254167557, -0.023105939850211143, -0.060594961047172546, 0.02974044531583786, 0.010999827645719051, 0.038014382123947144, -0.0055895401164889336, -0.024057434871792793, -0.0006570655386894941, 0.022848432883620262, 0.06610377132892609, 0.009673644788563251, 0.020519312471151352, 0.009283251129090786, 0.000891564937774092, 0.02460205741226673, 0.02442176826298237, -0.0038784800563007593, -0.004709179047495127, 0.013506108894944191, -0.002671503694728017, 0.006387711502611637, 0.04419973865151405, -0.002741511445492506, 0.0048809959553182125, 0.06264780461788177, 0.00492837093770504, -0.007030281238257885, -0.020057711750268936, 0.015482415445148945, 0.03877587988972664, 0.007954444736242294, -0.007770542521029711, 0.02113848552107811, -0.023890981450676918, -0.06320159137248993, 0.030506040900945663, -0.013467051088809967, 0.0855860635638237, -0.03199591115117073, 0.07741973549127579, -0.0037940642796456814, -0.012744528241455555, 0.019139567390084267, -0.027516432106494904, 0.0017344048246741295, 0.04649373143911362, -0.03489089757204056, 0.039326347410678864, -0.027295220643281937, 0.030077876523137093, -0.015174795873463154, 0.016205918043851852, 0.02105216309428215, -0.005508780013769865, 0.02073553018271923, -0.025499481707811356, -0.01798606477677822, -0.032127995043992996, -0.017146309837698936, -0.018174413591623306, -0.027701523154973984, -0.0005410427111200988, -0.023661701008677483, -0.0210197065025568, -0.05095967650413513, 0.04608907550573349, 0.023685166612267494, 0.05120876803994179, 0.00038362780469469726, -0.0005675103748217225, 0.025233473628759384, 0.010082930326461792, 0.027949698269367218, -0.003788989968597889, 0.004566124174743891, -0.0410722978413105, 0.033880092203617096, 0.03097708895802498, -0.032289642840623856, -0.026039423421025276, -0.007106570992618799, -0.030993297696113586, 0.04813609644770622, 0.021099425852298737, -0.02923719771206379, -0.022293489426374435, 0.008687097579240799, -0.03255147114396095, -0.02622797340154648, -0.017481720075011253, -0.018959905952215195, 0.030761942267417908, 0.011719091795384884, -0.005436118226498365, -0.031242595985531807, 0.00915998313575983, -0.0450918935239315, 0.05759592726826668, 0.012082642875611782, 0.004531325772404671, -0.04425825923681259, -0.007739717606455088, -0.050596825778484344, -0.05135932192206383, -0.012936940416693687, 0.04537323862314224, 0.011103138327598572, 0.0006755848880857229, -0.05473377928137779, 0.034170590341091156, 0.026383116841316223, 0.03583486005663872, 0.006967966910451651, 0.009627661667764187, 0.02598094753921032, -0.010830769315361977, 0.00115764990914613, -0.010031499899923801, -0.044694896787405014, 0.004986096173524857, -0.0663965716958046, 0.02765747904777527, 0.011355927214026451, -0.017108725383877754, -0.0034645881969481707, 0.009476997889578342, -0.0027640273328870535, 0.04540180414915085, -0.012275331653654575, -0.013683930970728397, -0.01975744403898716, 0.029662830755114555, -0.058580026030540466, -0.02375960163772106, 0.04166816920042038, 0.015715429559350014, -0.012881333008408546, 0.014743764884769917, 0.0337829664349556, 0.003107836004346609, 0.014708278700709343, 0.007492951117455959, -0.05860389024019241, 0.023387853056192398, -0.05592159181833267, 0.03155685216188431, -0.02535318210721016, -0.02244545891880989, -0.0039485907182097435, -0.011212747544050217, 0.021184317767620087, -0.010840488597750664, 0.0012862620642408729, -0.016829317435622215, -0.05609065666794777, 0.007472140248864889, -0.025735270231962204, -0.011409047991037369, 0.02113049104809761, 0.013031178154051304, -0.007689394522458315, -0.030665719881653786, -0.02489740215241909, -0.00100812001619488, -0.006700122728943825, -0.0219244547188282, 0.006878931075334549, 0.00019799656001850963, 0.01582702435553074, -0.003124471055343747, 0.017678294330835342, -0.03710148110985756, 0.024286074563860893, 0.02604224905371666, -0.015285167843103409, -0.03775801137089729, -0.005744385067373514, -0.03221660107374191, -0.001269647036679089, -0.027349816635251045, 0.020010998472571373, -0.04766780138015747, 0.018304353579878807, 0.013762974180281162, 0.01672871597111225, 0.011339018121361732, -0.009723154827952385, -0.04037458077073097, 0.04904521256685257, 0.0016940797213464975, -0.02932724915444851, -0.046854715794324875, 0.057882096618413925, -0.034369200468063354, 0.03653845191001892, -0.0036073089577257633, -0.032662533223629, -0.08267048746347427, -0.07965045422315598, -0.003173678647726774, -0.040356412529945374, -0.014380358159542084, -0.024477049708366394, -0.037335216999053955, -0.0315706729888916, 0.02971474453806877, 0.021544188261032104, -0.03033551201224327, -0.005977680440992117, -0.0008691195398569107, -0.015504748560488224, -0.016865571960806847, -0.03173057362437248, -0.056352224200963974, -0.02256430871784687, 0.02198067680001259, 0.06546273827552795, -0.012217712588608265, 0.04689176380634308, 0.01210827473551035, -0.02269170992076397, 0.025098677724599838, -0.023387296125292778, -0.052183717489242554, -0.02641916088759899, -0.01976444013416767, 0.018180852755904198, -0.010168341919779778, -0.007831001654267311, -0.03168541193008423, 0.02690167911350727, -0.029223952442407608, -0.007385141681879759, -0.019685106351971626, -0.022432181984186172, 0.001792976981960237, -0.0049521042965352535, 0.058297447860240936, 0.015708506107330322, -0.026920661330223083, -0.02301524020731449, 0.062025286257267, 0.06299710273742676, 0.017749110236763954, -0.04192192852497101, -0.02805512771010399, -0.002584990579634905, -0.040470924228429794, 0.046361520886421204, -0.02790590561926365, -0.032069917768239975, -0.06978833675384521, 0.020479775965213776, 0.031941697001457214, 0.01036120019853115, 0.021182211115956306, 0.037021346390247345, -0.010170466266572475, -0.003401991445571184, -0.007919222116470337, 0.01852613501250744, 0.029997587203979492, -0.035120490938425064, -0.01255660131573677, -0.013192874379456043, 0.0006044740439392626, -0.013430094346404076, -0.03909487649798393, -0.06209637597203255, -0.06439681351184845, -0.0021350730676203966, 0.12122252583503723, -0.031177591532468796, 0.036119244992733, 0.004761162679642439, -0.04516787454485893, -0.05316814035177231, 0.0354473851621151, -0.02579239383339882, -0.006027466617524624, 0.06941358745098114, 0.02728985995054245, -0.03888280317187309, 0.03215286508202553, 0.003093720180913806, -0.027480609714984894, -0.03010905161499977, 0.054678790271282196, -0.025723179802298546, -0.04413981735706329, 0.01613972894847393, 0.03404941037297249, -0.07343241572380066, -0.05077967420220375, -0.019306354224681854, -0.02059704251587391, 0.008814011700451374, -0.010674500837922096, 0.020801041275262833, -0.026864582672715187, 0.014705251902341843, 0.02021419256925583, 0.03790511190891266, -0.004850201774388552, 0.03777457773685455, -0.0014243213227018714, 0.011368501000106335, -0.030261686071753502, 0.049071054905653, 0.010974537581205368, -0.02979663573205471, -0.046938102692365646, -0.03479640558362007, -0.020278871059417725, -0.004936285316944122, -0.013576888479292393, 0.0027852682396769524, -0.02472096122801304, 0.031510449945926666, 0.010242355987429619, -0.040035784244537354, 0.045125123113393784, 0.007246216293424368, -0.02624703198671341, 0.006293796934187412, -0.03290469944477081, -0.04013644531369209, -0.05348260700702667, 0.03804395720362663, 0.0034231424797326326, 0.016499318182468414, -0.07045434415340424, -0.03858469799160957, 0.04314699023962021, 0.036217477172613144, 0.0247028935700655, -0.04260779172182083, -0.041286397725343704, -0.013770658522844315, -0.028995143249630928, -0.011527097783982754, -0.0168145839124918, -0.007658119313418865, 0.005936397239565849, 0.0056287795305252075, -0.029060369357466698, -0.0005271173431538045, -0.008357014507055283, -0.037881143391132355, 0.013129078783094883, -0.028919722884893417, 0.03137072175741196, -0.023557890206575394, -0.007110150530934334, -0.01984431967139244, -0.024289775639772415, -0.0408545657992363, 0.008125048130750656, -0.015569983050227165, 0.024042479693889618, -0.018527833744883537, 0.012402389198541641, -0.0022802583407610655, 0.0077307503670454025, 0.015335199423134327, -0.024626122787594795, 0.008150067180395126, 0.04947886988520622, -0.006073846481740475, 0.03149066120386124, 0.0120729124173522, 0.004018393810838461, 0.027733905240893364, -0.03386887162923813, -0.001948669319972396, -0.01469649188220501, -0.004338770639151335, -0.0223753172904253, 0.008641824126243591, -0.03344268724322319, -0.02578229457139969, 0.007469248957931995, -0.025465767830610275, 0.029236825183033943, -0.0013203984126448631, 0.04564620926976204, -0.004632134456187487, -0.026238828897476196, -0.005308014806360006, 0.03636251017451286, -0.017271706834435463, 0.04863715171813965, 0.0037661020178347826, 0.03986259549856186, 0.014815944246947765, -0.005362300667911768, -0.011438427492976189, 0.04109843447804451, 0.050189655274152756, -0.03496723249554634, -0.0004790990788023919, 0.008877643384039402, -0.028712213039398193, 0.03755122050642967, -0.014214015565812588, -0.010962730273604393, -0.028985604643821716, 0.012510063126683235, 0.020816795527935028, 0.022291185334324837, 0.025018837302923203, -0.02347935177385807, 0.043790094554424286, -0.05934871733188629, -0.05042707920074463, 0.0003873589157592505, -0.06160300597548485, -0.030941417440772057, 0.027104416862130165, -0.0305146723985672, -0.030050938948988914, -0.020361991599202156, -0.04001503810286522, 0.013779958710074425, 0.009490439668297768, -0.0141367856413126, 0.03896472603082657, 0.07253868877887726, -0.005942121148109436, 0.03611808270215988, -0.01515658013522625, -0.011000447906553745, 0.004920776933431625, 0.05637118220329285, -0.04769714176654816, -0.031129367649555206, -0.0016709425253793597, 0.0186802688986063, 0.012761849910020828, 0.006266506388783455, -0.015142214484512806, -0.008294676430523396, -0.028255775570869446, -0.011104848235845566, -0.016720453277230263, 0.02057286724448204, 0.007719358894973993, 0.030011562630534172, -0.012609122321009636, 0.0034129659179598093, -0.016754884272813797, 0.02890344336628914, 0.0401122160255909, -0.02479557879269123, -0.02539876289665699, 0.03720289096236229, 0.05888540297746658, 0.0003077419241890311, 0.031172677874565125, 0.025900328531861305, 0.04958931729197502, -0.01103359367698431, -0.005764205940067768, 0.025147641077637672, 0.06082967668771744, 0.021769952028989792, 0.043612170964479446, 0.002530484227463603, 0.010798423551023006, 0.057261038571596146, -0.02138017863035202, -0.006604010239243507, 0.05271141231060028, 0.04653385654091835, -0.055513180792331696, -0.0027673542499542236, -0.0027093624230474234, -0.0010764565085992217, -0.019770195707678795, -0.01791626587510109, 0.006207747384905815, -0.03909696638584137, -0.009480922482907772, -0.015443689189851284, -0.009944594465196133, 0.06777798384428024, -0.009905087761580944, -0.022413257509469986, -0.00957333855330944, 0.010462221689522266, 0.0002469103201292455, 0.050882209092378616, 0.024645065888762474, 0.022592857480049133, 0.03214426711201668, 0.02241722121834755, -0.00013938333722762764, 0.0340903140604496, -0.0005666177603416145, -0.002988607855513692, -0.020326247438788414, 0.010309909470379353, 0.03271346539258957, 0.003526365617290139, -0.035316258668899536, 0.011868195608258247, -0.05042681470513344, 0.039515476673841476, -0.0060177394188940525, -0.0018124927300959826, 0.018090438097715378, -0.03623836487531662, -0.016232604160904884, -0.04740104451775551, 0.03836141154170036, -0.042270634323358536, 0.006683881860226393, 0.028848811984062195, 0.004318069666624069, 0.002693775575608015, 0.03900778293609619, -0.01821666955947876, 0.0607958547770977, -0.0012849943013861775, 0.01278112642467022, -0.015581528656184673, -0.010525249876081944, 0.05478353798389435, -0.03012355975806713, -0.03261549025774002, 0.034687262028455734, -0.017723718658089638, -0.04217899590730667, -0.0119948023930192, -0.02931591495871544, -0.006667526438832283, -0.012301966547966003, -0.008204621262848377, -0.01866225339472294, 0.012988589704036713, -0.030867990106344223, -0.06779283285140991, -0.005954714957624674, 0.022262783721089363, -0.04925983026623726, 0.01988890767097473, -0.024656351655721664, 0.04550420120358467, -0.022381221875548363, 0.006376879755407572, -0.032563962042331696, -0.0351375937461853, 0.0001714609534246847, -0.01443252433091402, 0.04210912808775902, 0.018713708966970444, -0.026991577818989754, -0.024854455143213272, -0.020780017599463463, -0.054081030189991, -0.024630500003695488, -0.03659052401781082, -0.034928373992443085, 0.06346870213747025, 0.03367449343204498, -0.011144348420202732, 0.02495444566011429, -0.03756669536232948, 0.017891861498355865, 0.029558619484305382, 0.03990989550948143, -0.0338655486702919, 0.04416315257549286, 0.02256486564874649, -0.039831314235925674, 0.032494012266397476, -0.021704280748963356, 0.034558311104774475, -0.04134328290820122, -0.019226547330617905, -0.025312192738056183, 0.03876383975148201, -0.017630113288760185, -0.06487736850976944, 0.0019460715120658278, 0.0062130712904036045, 0.019002461805939674, -0.042746640741825104, -0.07303857058286667, 0.013174443505704403, -0.06481094658374786, -0.013643652200698853, -0.04021702706813812, 0.037334829568862915, -0.015145285055041313, -0.0017300540348514915, -0.004760949406772852, -0.05974472686648369, 0.14683234691619873, 0.05433123931288719, 0.04373912513256073, -0.016295358538627625, 0.01689120940864086, 0.025652190670371056, 0.002105581108480692, -0.01230741199105978, 0.0071191852912306786, -0.0333695113658905, 0.047592420130968094, 0.03004603087902069, 0.031927742063999176, -0.02483757957816124, 0.010139914229512215, 0.07132183015346527, -0.064725860953331, 0.013078270480036736, -0.009918640367686749, -0.02462085336446762, -0.03541624918580055, 0.01604480668902397, -0.006888162344694138, 0.021529292687773705, -0.006278992630541325, 0.03269535303115845, 0.03491418436169624, -0.036409419029951096, -0.005574655253440142, 0.009053096175193787, 0.029115671291947365, -0.061150841414928436, 0.030693793669342995, -0.029683105647563934, -0.01641402766108513, 0.048830609768629074, 0.012013648636639118, -0.03261391818523407, 0.030261121690273285, 0.008340495638549328, -0.019919009879231453, -0.0018419688567519188, 0.012985147535800934, -0.0496414415538311, 0.02265264093875885, 0.015976425260305405, -0.027322376146912575, -0.00736461766064167, 0.005306122358888388, -0.034940123558044434, 0.04297827184200287, -0.023688964545726776, 0.038642652332782745, -0.022719649598002434, -0.04753463342785835, 0.02568494901061058, 0.03680121898651123, 0.0014298969181254506, -0.009703245013952255, 0.007456489372998476, 0.04886236786842346, 0.006769765634089708, -0.008274904452264309, -0.006725080776959658, -0.024167174473404884, 0.029217341914772987, -0.0007581808022223413, -0.021337786689400673, -0.005200487095862627, -0.02720274031162262, -0.010951803997159004, -0.0035284659825265408, -0.00896032527089119, -0.042372532188892365, 0.027954379096627235, 0.009695642627775669, -0.0012757097138091922, 0.038251034915447235, 0.010284528136253357, -0.0225727129727602, -0.026974616572260857, -0.03876837342977524, -0.004597580526024103, -0.02078438550233841, 0.05479210615158081, 0.011049723252654076, -0.04303308576345444, -0.033408306539058685, -0.0171342920511961, 0.0389736071228981, 0.03594361990690231, 0.024226278066635132, -0.02536744251847267, 0.010019881650805473, -0.027518536895513535 ]
Festival Home FAQ & Festival Tips Buy TicketsDonate Jimmy D Lane "Jimmy D. Lane is an incredible guitarist"....Eric Clapton, 1997 Son of the Blues Chicago blues guitarist and singer, Jimmy D. Lane was born into a musical household and first influenced by his father, legendary blues guitarist and singer, Jimmy Rogers. Although formative influences include Chicago legends Howling Wolf and Muddy Waters, Jimmy D. Lane's allegiance to Jimi Hendrix, Albert Collins and Stevie Ray Vaughan show in his rich singing and impressive guitar playing. By 1987 Lane became lead guitarist of the Jimmy Rogers Band as well as forming his own band, Jimmy D. Lane and The Hurricanes and later Blue Train Running. Lane toured extensively with his dad's band while juggling his own solo career. Jimmy D. Lane is someone who really understands the blues, and that fact is impossible to miss in his music. The musicians Jimmy has worked with makes for an impressive resume and include Eric Clapton, Mick Jagger, Keith Richards, B.B. King, Van Morrison, Jonny Lang, Gary Moore, Double Trouble, Taj Mahal, Jeff Healy, Jimmie Lee Robinson, Lowell Fulson, Snooky Pryor, Kim Wilson, Pinetop Perkins, Robert Plant, Jimmy Page, George 'Wild Child' Butler, David 'HoneyBoy' Edwards, Weepin' Willie Robinson, Lazy Lester, Sam Lay, Carey Bell and his father, the legendary Jimmy Rogers. Jimmy has been included on his father's, Jimmy Roger's Mississippi Blues Trail Historical Landmark in Ruleville, Mississippi. Jimmy D. Lane was inducted into the Chicago Blues Hall of Fame on April 28, 2013. Nanaimo Blues Society acknowledges that we are on the traditional and unceded territory of the Coast Salish Peoples, the traditional territory of the Snuneymuxw First Nation.
[ 0.0026175810489803553, 0.013245757669210434, -0.004823364317417145, 0.010875959880650043, -0.010685749351978302, 0.020462550222873688, -0.02095433883368969, 0.0035295237321406603, 0.013113314285874367, 0.034078676253557205, 0.030858952552080154, 0.0044904048554599285, 0.002420170931145549, -0.026341790333390236, -0.013357037678360939, 0.008546971715986729, -0.023089377209544182, -0.025778474286198616, -0.014270554296672344, 0.043879806995391846, 0.025350311771035194, 0.009895965456962585, -0.025284050032496452, -0.030025633051991463, -0.0068197124637663364, 0.05998288840055466, -0.001970130018889904, 0.029441477730870247, 0.032090604305267334, 0.0702068954706192, -0.008936365135014057, -0.05143798515200615, 0.028649814426898956, -0.052139610052108765, -0.0372677780687809, -0.018154526129364967, 0.013973493129014969, -0.027454914525151253, -0.019240353256464005, -0.037273015826940536, -0.016199618577957153, -0.04731645807623863, 0.007660354487597942, -0.02975761517882347, -0.03710177168250084, -0.022089555859565735, -0.007073880173265934, 0.002930625341832638, 0.009840033017098904, -0.022537345066666603, -0.003681439207866788, -0.017856618389487267, 0.04464731365442276, -0.0007121862145140767, 0.012266164645552635, 0.02596617490053177, 0.018052546307444572, -0.012483999133110046, -0.03165075555443764, 0.05234154313802719, 0.021589070558547974, -0.029946336522698402, 0.0031532959546893835, -0.054272133857011795, 0.0071091121062636375, 0.0014342050999403, -0.04017075523734093, -0.010010787285864353, 0.00759245315566659, -0.005790717899799347, 0.020339198410511017, 0.005775128025561571, 0.0013341172598302364, -0.011703601107001305, 0.0024909351486712694, 0.02082165889441967, -0.02396802045404911, -0.014514054171741009, -0.0030817773658782244, 0.01048403698951006, -0.00044428935507312417, 0.067484050989151, 0.005847059190273285, 0.043386392295360565, -0.07778415083885193, -0.022935377433896065, -0.01795167103409767, -0.007545452564954758, -0.004327975679188967, 0.013510972261428833, 0.03428604081273079, 0.06375624984502792, 0.005981420166790485, -0.00883660838007927, 0.043853145092725754, 0.030330831184983253, -0.026662860065698624, 0.038940656930208206, -0.001407775329425931, -0.016474178060889244, 0.04206206649541855, 0.013585754670202732, 0.02514052391052246, 0.05076248571276665, -0.059498172253370285, -0.021210379898548126, -0.011562039144337177, -0.00898959394544363, -0.0062760706059634686, -0.02330889366567135, 0.017438579350709915, -0.025100745260715485, 0.05820639804005623, 0.020294807851314545, -0.0035224531311541796, 0.004278200678527355, 0.02336825057864189, 0.03476237505674362, -0.040692124515771866, -0.004349464550614357, 0.026640279218554497, -0.016522331163287163, 0.04332619532942772, -0.01603124476969242, -0.001253840746358037, -0.028593476861715317, -0.0656842365860939, 0.05579361319541931, -0.018343493342399597, -0.017508739605545998, 0.011152546852827072, -0.05246366187930107, -0.00030988853541202843, -0.005747090559452772, 0.011320178396999836, 0.026780007407069206, -0.017195913940668106, 0.02350146509706974, 0.04171289876103401, -0.0601748488843441, 0.07528064399957657, 0.03997894376516342, 0.007344679441303015, 0.08195141702890396, 0.02083939127624035, 0.03478621318936348, -0.007436147425323725, 0.018902283161878586, -0.0284494049847126, 0.004988160450011492, -0.02099616825580597, 0.011880065314471722, -0.011969099752604961, 0.014456678181886673, 0.02882130816578865, 0.006617437582463026, 0.009864646010100842, 0.019983185455203056, 0.030185844749212265, 0.058251939713954926, -0.0288650244474411, 0.016480065882205963, 0.03445650264620781, 0.028942501172423363, -0.030416293069720268, 0.023655910044908524, -0.0054672532714903355, -0.03167501464486122, 0.018906885758042336, -0.039015814661979675, -0.007075708359479904, 0.0005923972348682582, -0.026303661987185478, 0.007770301774144173, 0.025923239067196846, 0.0441276952624321, 0.054838940501213074, -0.002898867940530181, 0.03442644327878952, 0.04122260585427284, -0.027611618861556053, 0.014236630871891975, 0.013479641638696194, 0.04225602000951767, 0.006115288939327002, -0.014727612026035786, -0.016649549826979637, -0.02369435876607895, -0.04391759634017944, -0.01942499354481697, 0.005312378518283367, 0.03158031404018402, -0.02478603459894657, 0.009312386624515057, -0.008329271338880062, 0.03218318521976471, -0.029583748430013657, -0.03306847810745239, -0.011564483866095543, -0.04995173215866089, -0.005547110456973314, 0.018607137724757195, -0.05027615278959274, 0.02830824814736843, -0.002287039766088128, -0.015401571057736874, 0.052100613713264465, 0.053638797253370285, -0.06315436959266663, 0.019201818853616714, 0.02343393862247467, -0.0045754797756671906, -0.01221795380115509, -0.04150722920894623, -0.02679789811372757, -0.01050338614732027, -0.007061515934765339, 0.04227876290678978, 0.001532874652184546, -0.017702460289001465, 0.0034644727129489183, 0.020068585872650146, 0.07525425404310226, 0.06943682581186295, -0.004279597662389278, -0.0130539545789361, -0.029056185856461525, 0.05113272741436958, -0.03419731184840202, -0.023473374545574188, 0.003129225457087159, 0.025325924158096313, 0.018725262954831123, 0.07738436758518219, 0.025896577164530754, 0.019525932148098946, 0.007128506898880005, 0.03859192505478859, -0.009538772515952587, 0.028938166797161102, 0.012850090861320496, 0.007089041173458099, 0.04931848868727684, 0.013204161077737808, -0.02637421526014805, 0.03188968449831009, -0.028462206944823265, 0.011500060558319092, -0.012186777777969837, 0.016209851950407028, -0.011836433783173561, 0.04030853137373924, 0.029994716867804527, 0.052324678748846054, -0.0025506271049380302, 0.002730270614847541, 0.05874663218855858, 0.03350210562348366, -0.021542681381106377, 0.014883424155414104, 0.0009449020144529641, 0.013045909814536572, -0.041985973715782166, 0.0006744427373632789, 0.03613613545894623, -0.0038702122401446104, -0.014628168195486069, 0.027614563703536987, -0.031372856348752975, -0.03845353052020073, -0.03635361045598984, -0.05962134897708893, -0.013792542740702629, -0.03875790536403656, -0.047063205391168594, 0.009461520239710808, 0.056367747485637665, -0.02439402975142002, 0.018910001963377, 0.0025213519111275673, -0.027269400656223297, -0.021802246570587158, -0.017270008102059364, 0.03747466206550598, 0.026391558349132538, 0.029505915939807892, -0.029871296137571335, 0.04918472096323967, -0.01722019724547863, 0.05348757281899452, -0.024005811661481857, -0.0031198402866721153, -0.017278512939810753, -0.02613097056746483, 0.018292564898729324, -0.0026185333263128996, 0.014091627672314644, 0.008148770779371262, -0.03969826176762581, -0.0524296872317791, 0.011039714328944683, 0.014360524713993073, -0.041371606290340424, -0.01808144524693489, -0.08416108787059784, 0.028212163597345352, 0.02132325991988182, -0.04748402163386345, 0.02812829427421093, 0.057598236948251724, -0.024154948070645332, 0.06238493695855141, 0.038176923990249634, -0.004551209043711424, -0.060417648404836655, 0.056728072464466095, 0.046371251344680786, 0.005852554924786091, -0.024381237104535103, -0.0005795921897515655, -0.029173480346798897, 0.02276493050158024, 0.035354919731616974, -0.030170505866408348, -0.014527920633554459, 0.07368805259466171, 0.027979319915175438, -0.03290308266878128, 0.040386177599430084, -0.054239895194768906, -0.018149742856621742, -0.013110856525599957, -0.029741164296865463, 0.018468869850039482, 0.045860569924116135, 0.011959221214056015, 0.018453989177942276, -0.037019602954387665, -0.003593659494072199, 0.03980806842446327, 0.024506373330950737, 0.004273654893040657, 0.02880050428211689, 0.03088369220495224, -0.014058101922273636, -0.021272234618663788, 0.02179253287613392, -0.04056970775127411, -0.0059935059398412704, 0.01841333508491516, -0.030152149498462677, -0.018124854192137718, 0.01492219977080822, 0.011135345324873924, 0.00950009934604168, 0.05442042276263237, -0.041714996099472046, -0.02107180655002594, 0.018783068284392357, 0.01410506572574377, 0.0458705835044384, 0.007397984620183706, 0.006614138837903738, 0.012152356095612049, -0.032213903963565826, -0.06624133139848709, 0.016097065061330795, 0.028872709721326828, 0.057563479989767075, -0.07408939301967621, 0.07161615043878555, 0.00824767630547285, -0.033282093703746796, 0.04139469936490059, -0.0562744140625, 0.005231780000030994, 0.05018331855535507, -0.027762332931160927, 0.03172361105680466, -0.022291764616966248, 0.003545650513842702, -0.022356661036610603, 0.019510310143232346, 0.04892105609178543, -0.021565373986959457, -0.0074000973254442215, -0.05472031980752945, -0.02415001578629017, -0.014565063640475273, -0.0019908540416508913, -0.03143487498164177, -0.025585776194930077, 0.011730987578630447, 0.004525596275925636, -0.04703308641910553, -0.023592986166477203, 0.04346030578017235, 0.007524659391492605, 0.01661496050655842, -0.01253681443631649, 0.027734655886888504, 0.0018322267569601536, 0.06394150108098984, 0.02387380227446556, -0.02454339899122715, 0.005699590314179659, -0.043113380670547485, 0.02590642124414444, 0.035110827535390854, -0.04159145429730415, -0.015709377825260162, -0.01519426703453064, -0.04237544536590576, 0.025439495220780373, 0.026701880618929863, -0.02941022627055645, -0.0726664662361145, 0.004346402361989021, -0.019778883084654808, 0.02854396589100361, -0.020499197766184807, 0.0016838981537148356, -0.014669051393866539, 0.021707141771912575, 0.04726368561387062, -0.04721229895949364, -0.0051227156072855, -0.006303721107542515, 0.08466757833957672, 0.013679786585271358, -0.00453493557870388, -0.02923417091369629, -0.023429328575730324, -0.06391967087984085, -0.017457257956266403, 0.01012005191296339, 0.0631418377161026, 0.0033185200300067663, 0.005415488500148058, -0.052058763802051544, 0.014797014184296131, 0.022995375096797943, 0.0031120521016418934, -0.011840802617371082, 0.006607039365917444, -0.006050839554518461, -0.039331335574388504, 0.027165157720446587, -0.006675781216472387, -0.02117025852203369, 0.022183675318956375, -0.04449528828263283, 0.02200240083038807, 0.02402476593852043, -0.04740041866898537, 0.01277936715632677, -0.0014476149808615446, 0.02827863208949566, 0.040851891040802, -0.015381217002868652, -0.011632231995463371, 0.01970987766981125, 0.032652050256729126, -0.026636434718966484, -0.030051445588469505, 0.0514916367828846, -0.009883786551654339, -0.0061640385538339615, 0.03360069543123245, 0.07808076590299606, -0.0049910154193639755, 0.04327895864844322, 0.029839346185326576, -0.06605038791894913, 0.0020945104770362377, -0.053119052201509476, 0.008104913868010044, -0.04190210998058319, -0.011858451180160046, -0.006897220388054848, -0.01629343070089817, 0.04584958776831627, 0.008436474949121475, 0.0025016097351908684, -0.027500400319695473, -0.0847262442111969, -0.025651130825281143, -0.017339911311864853, -0.02497030608355999, -0.01648135297000408, 0.011397073045372963, -0.01918158307671547, 0.0032821078784763813, -0.007115102838724852, 0.00994936190545559, -0.01449156366288662, -0.015886951237916946, -0.0007724151364527643, -0.005315412301570177, 0.030795058235526085, 0.012437136843800545, -0.00767230149358511, -0.031627170741558075, -0.008233647793531418, 0.004759852308779955, -0.01424255222082138, -0.044915929436683655, 0.020162971690297127, -0.010902131907641888, -0.0011955414665862918, 0.016405828297138214, -0.0010856889421120286, -0.025687767192721367, -0.000555437698494643, 0.019527576863765717, 0.0009399129776284099, -0.0030111847445368767, 0.01693161018192768, -0.041419874876737595, 0.017970379441976547, 0.025954030454158783, -0.04014236107468605, -0.011221523396670818, 0.05346059054136276, -0.011917494237422943, 0.05762463063001633, 0.004094858653843403, -0.06391721963882446, -0.04969576746225357, -0.03465009853243828, 0.014664476737380028, -0.019456353038549423, -0.021583592519164085, -0.04001226648688316, -0.03914862498641014, -0.022519225254654884, 0.008230725303292274, 0.017458144575357437, 0.0011281510815024376, 0.01253332570195198, -0.013540659099817276, -0.017600955441594124, -0.026536980643868446, -0.007784664165228605, -0.031168054789304733, -0.026641234755516052, 0.007363806013017893, 0.05274294689297676, -0.004029745236039162, 0.014006205834448338, 0.010357196442782879, 0.008069411851465702, 0.04571714252233505, -0.060448016971349716, -0.08170446753501892, -0.030996259301900864, -0.014223680831491947, 0.02209310419857502, -0.00341204646974802, -0.00005050508116255514, -0.02446185052394867, 0.04969121888279915, -0.02401176281273365, 0.006996721029281616, -0.01861688308417797, -0.010046644136309624, 0.01197753380984068, 0.003570024622604251, 0.07460401207208633, -0.02458304911851883, 0.007633250206708908, 0.004456132650375366, 0.030933471396565437, 0.027621421962976456, 0.00048228559899143875, -0.02180163376033306, -0.04948033392429352, -0.018442243337631226, -0.05268344283103943, 0.013243486173450947, -0.01570834219455719, -0.027085144072771072, -0.05518445372581482, -0.010917122475802898, 0.03086923621594906, -0.001593944849446416, 0.05964171886444092, 0.04383983835577965, -0.018717685714364052, -0.03558754548430443, -0.00620886217802763, 0.0012836860259994864, 0.0323665626347065, 0.011656194925308228, -0.049354128539562225, -0.005537230987101793, -0.033851973712444305, 0.02446938492357731, -0.04055146127939224, -0.03541392460465431, -0.04610002785921097, -0.042007699608802795, 0.07372932881116867, -0.013380613178014755, 0.042501579970121384, 0.011888348497450352, -0.03708622604608536, -0.040084902197122574, 0.06082804501056671, 0.007586960215121508, 0.015628930181264877, 0.05099654570221901, -0.013077941723167896, -0.010237256996333599, 0.0328788198530674, -0.011562863364815712, -0.017249450087547302, -0.05491522699594498, 0.09505760669708252, -0.030769869685173035, -0.029718635603785515, 0.05243254080414772, 0.0617128349840641, -0.04932354763150215, -0.04722040519118309, -0.016495028510689735, 0.012269041500985622, 0.0104754026979208, -0.028896408155560493, 0.024493949487805367, -0.01213891338557005, 0.010397931560873985, -0.009870471432805061, 0.04179221764206886, -0.003201831365004182, 0.04389241337776184, -0.009047337807714939, 0.039945196360349655, -0.06615930050611496, 0.008111773058772087, 0.02695537358522415, 0.011648664250969887, -0.016039548441767693, -0.035737231373786926, -0.0031361428555101156, 0.0048739188350737095, -0.03946865350008011, 0.04625316336750984, -0.041392892599105835, 0.009574741125106812, -0.027252987027168274, -0.014551769942045212, 0.039867449551820755, 0.04571984335780144, -0.02911418117582798, -0.0019399735610932112, -0.030021104961633682, -0.056562639772892, -0.02858654409646988, 0.014536608010530472, 0.04324919730424881, 0.03194901719689369, -0.036358099430799484, 0.010235178284347057, 0.028708914294838905, 0.011219752952456474, 0.006078570149838924, -0.061468664556741714, -0.025162583217024803, -0.04317915067076683, -0.04674683138728142, -0.03281911462545395, -0.027295824140310287, -0.022971073165535927, 0.023992463946342468, 0.017771627753973007, -0.02487197518348694, -0.0024242012295871973, 0.0005767596885561943, -0.007209524977952242, 0.007146940566599369, -0.05404290184378624, 0.018464230000972748, -0.06263269484043121, -0.02214321866631508, -0.0125050013884902, -0.0074323867447674274, -0.008727913722395897, 0.011266994290053844, 0.0007885019876994193, 0.001710651209577918, 0.023960210382938385, 0.027545930817723274, -0.0018675673054531217, -0.00588389253243804, -0.014489579014480114, -0.051947806030511856, 0.007516739424318075, 0.05680525675415993, -0.012341649271547794, 0.03828660771250725, 0.055037807673215866, -0.02419119141995907, 0.025058936327695847, 0.017479505389928818, -0.024053817614912987, -0.006880627013742924, -0.007139504421502352, -0.012018103152513504, -0.009596266783773899, -0.05277993902564049, -0.011975431814789772, -0.02292819507420063, -0.05463295802474022, 0.014130180701613426, -0.012106087058782578, 0.005180219653993845, -0.011967946775257587, -0.004109662491828203, -0.004838105756789446, 0.0421646311879158, -0.02435743808746338, 0.017950603738427162, 0.01777506433427334, 0.022871827706694603, 0.021296747028827667, 0.0006726538995280862, -0.015744686126708984, 0.013310885056853294, 0.0203271321952343, -0.03256911039352417, 0.004794938489794731, 0.01254603173583746, -0.013103204779326916, 0.02993733622133732, -0.03008931875228882, -0.02979378215968609, -0.03431395813822746, -0.01903466135263443, 0.013186503201723099, 0.03954193741083145, -0.00576894823461771, -0.026084264740347862, 0.04292629286646843, -0.06102517992258072, -0.04675512760877609, 0.009398013353347778, -0.03666805475950241, -0.016324905678629875, 0.027853146195411682, -0.03223094344139099, -0.017448795959353447, -0.0327158086001873, -0.004400084260851145, -0.0006781498086638749, -0.005854413378983736, -0.0030997830908745527, -0.012363705784082413, 0.053325917571783066, -0.015546153299510479, 0.02308073081076145, -0.01452921237796545, 0.02115434966981411, 0.030285080894827843, 0.041479941457509995, -0.037742093205451965, -0.0511615090072155, 0.038073912262916565, 0.014517834410071373, 0.018579861149191856, -0.00024366937577724457, 0.0069532874040305614, 0.006686448585242033, -0.009076188318431377, -0.020596496760845184, -0.00009072452667169273, 0.01993764005601406, 0.01681690290570259, 0.013596247881650925, 0.016692735254764557, -0.002451234729960561, -0.03545042872428894, 0.051634855568408966, 0.019587289541959763, -0.05565876513719559, -0.03257868438959122, 0.030374659225344658, 0.03593805432319641, -0.026726817712187767, 0.035123199224472046, 0.011653190478682518, 0.06106698885560036, -0.02178478240966797, 0.012535596266388893, -0.0050262766890227795, 0.0379691943526268, 0.016453275457024574, 0.032483939081430435, 0.028172770515084267, 0.05576743185520172, 0.0552278608083725, 0.003300618613138795, 0.03191583976149559, 0.04992590472102165, 0.04077970236539841, -0.05065450817346573, 0.018994752317667007, -0.030975928530097008, 0.014820147305727005, 0.025784051045775414, -0.0068775564432144165, 0.011293533258140087, -0.041015710681676865, 0.008573926985263824, -0.05534505844116211, 0.005189947783946991, 0.052274808287620544, 0.011421607807278633, -0.01651119813323021, 0.01775393821299076, 0.007601255550980568, 0.014622882939875126, 0.03281288966536522, -0.014550727792084217, 0.011297824792563915, 0.032197028398513794, 0.0521908737719059, -0.022820962592959404, 0.02435091882944107, 0.025383494794368744, -0.0014923341805115342, -0.04953692480921745, 0.0006729846936650574, 0.03426773101091385, -0.016208788380026817, -0.04167325422167778, -0.0024562461767345667, -0.02270352467894554, 0.008747860789299011, -0.010284027084708214, -0.018718279898166656, 0.057712603360414505, -0.007223747670650482, -0.005189389921724796, -0.04008343443274498, 0.07209558039903641, -0.029890192672610283, -0.02123327925801277, 0.0425589419901371, 0.014633231796324253, -0.04438153654336929, 0.0443863682448864, 0.002973694121465087, 0.015121479518711567, -0.012627752497792244, 0.03109961934387684, 0.013211608864367008, -0.008016551844775677, 0.06212862208485603, -0.04168053716421127, -0.02688273973762989, 0.02048659324645996, -0.02160308137536049, -0.0659862607717514, 0.0050420621410012245, -0.03925301507115364, -0.019577521830797195, -0.011261767707765102, -0.014787767082452774, 0.00029550876934081316, 0.023157179355621338, -0.015677548944950104, -0.03021823987364769, -0.002928295638412237, 0.02945638820528984, -0.062002409249544144, 0.024454165250062943, 0.03853577747941017, 0.0442119799554348, -0.03524022549390793, -0.03752840682864189, -0.03661733120679855, -0.03603540360927582, -0.004613727796822786, -0.04068794846534729, 0.02936035953462124, -0.022535832598805428, -0.027786685153841972, -0.008215127512812614, -0.03311661258339882, -0.03679666295647621, 0.0008311928249895573, -0.05613365396857262, -0.038079943507909775, 0.02369665540754795, 0.04603160172700882, -0.02640867792069912, -0.00019086348765995353, -0.013351624831557274, 0.011699973605573177, 0.012468571774661541, 0.02459198795258999, -0.005204234272241592, 0.0022896251175552607, 0.016271598637104034, -0.05015046149492264, 0.01785869151353836, -0.0028469932731240988, 0.004610334523022175, -0.02841946855187416, -0.03153742104768753, -0.04356123134493828, 0.029194068163633347, -0.02897757850587368, -0.04348442330956459, 0.01318100094795227, 0.000055326589063042775, 0.038869328796863556, -0.05125990882515907, -0.07465777546167374, 0.010972660966217518, -0.050870124250650406, -0.005063450429588556, -0.027186792343854904, 0.019293881952762604, 0.019383737817406654, 0.0005348909180611372, -0.018213730305433273, -0.06207145005464554, 0.15072648227214813, -0.009387061931192875, 0.0391940139234066, -0.0011452934704720974, 0.0022474746219813824, 0.03396829962730408, 0.003768930910155177, 0.0020890480373054743, -0.0014147135661914945, -0.04577038064599037, 0.037629030644893646, 0.008108971640467644, 0.02812604419887066, 0.008275873027741909, 0.00966684240847826, 0.03989408537745476, -0.033175691962242126, 0.017641179263591766, -0.014839014038443565, -0.07089968770742416, -0.03864867240190506, 0.02217951975762844, -0.017567617818713188, 0.016765303909778595, -0.008990485221147537, 0.013062923215329647, 0.012888578698039055, -0.046752020716667175, 0.008562673814594746, -0.013372000306844711, 0.028580142185091972, 0.020947348326444626, 0.0777357965707779, -0.0069197420962154865, -0.02255363203585148, 0.03825230523943901, 0.017137518152594566, -0.0045395949855446815, 0.009088555350899696, 0.03148648515343666, -0.011653953231871128, -0.0029962626285851, 0.04913865774869919, -0.06458361446857452, 0.013632766902446747, 0.04360515996813774, -0.041493967175483704, 0.02116330713033676, 0.0011325726518407464, -0.015798645094037056, 0.03038434311747551, -0.03557043522596359, 0.026158634573221207, -0.021293725818395615, -0.010395449586212635, 0.04422691836953163, -0.014260181225836277, -0.02258300967514515, -0.04676438495516777, -0.005539581645280123, 0.03744809329509735, -0.0129686975851655, -0.03342663496732712, -0.005834838375449181, -0.01441185176372528, 0.033442821353673935, 0.03381018713116646, -0.01629987172782421, -0.0037016025744378567, -0.020225590094923973, -0.012346891686320305, -0.0012663755333051085, -0.006840090733021498, -0.03913923352956772, 0.02618805132806301, 0.030344881117343903, 0.006113044917583466, 0.048106443136930466, 0.041127901524305344, 0.004356417804956436, -0.01397993415594101, -0.06919532269239426, 0.01892249472439289, -0.01327964011579752, 0.03749461844563484, 0.015493805520236492, -0.0417415015399456, -0.025989405810832977, -0.03490510582923889, 0.05332564190030098, 0.04057943820953369, 0.020521650090813637, -0.029769612476229668, 0.007125726900994778, -0.027154503390192986 ]
The Head of State has instructed the Minister of Posts and Telecommunications to order Internet Service Providers to re-establish internet connection to the regions, a release from the Ministry of Communication has disclosed. Government shut down the internet services to the North West and South West Regions mid-January. We will bring details subsequently.
[ -0.02073618210852146, -0.020946741104125977, -0.048192184418439865, 0.022830650210380554, -0.02633867785334587, -0.013506948947906494, -0.004147958476096392, 0.02055826224386692, 0.02325204387307167, 0.0510530062019825, 0.034593790769577026, -0.003829372813925147, 0.017804492264986038, -0.03789679333567619, -0.03316088393330574, -0.004328262060880661, -0.04913315922021866, -0.04046037048101425, 0.034177351742982864, 0.008580253459513187, -0.001447010668925941, 0.024578651413321495, -0.03150230646133423, -0.031524382531642914, -0.013866743072867393, 0.00970112718641758, -0.0025105662643909454, -0.002637251513078809, 0.05376356840133667, 0.05101383477449417, -0.02101479098200798, -0.04139313846826553, 0.0009352239430882037, -0.03167484328150749, -0.004933824762701988, -0.027211153879761696, 0.014182359911501408, -0.04454917088150978, -0.030903825536370277, -0.027113616466522217, -0.005158854182809591, -0.014754901640117168, 0.04309561103582382, -0.031084049493074417, -0.005983145907521248, -0.015074063092470169, -0.024638572707772255, -0.016792967915534973, 0.006434222683310509, -0.022918246686458588, -0.013726619072258472, 0.0061709037981927395, 0.000005864868398930412, -0.011371160857379436, 0.02901272475719452, -0.0075382813811302185, -0.01130239013582468, -0.013199776411056519, -0.030731527134776115, 0.021091841161251068, 0.023318534716963768, 0.006368339993059635, 0.03135911375284195, -0.04262344911694527, 0.03149618208408356, 0.01366550661623478, -0.0058339256793260574, 0.00704555120319128, 0.05552294850349426, -0.007611935958266258, 0.03110682964324951, 0.009870000183582306, -0.04021599516272545, -0.008045950904488564, 0.023688191547989845, 0.0190729983150959, -0.043898068368434906, -0.04553108289837837, 0.015291614457964897, 0.02926957607269287, -0.006131771951913834, 0.028018124401569366, 0.01893673464655876, -0.0014253311092033982, -0.06205422058701515, -0.018351783975958824, -0.0025119392666965723, 0.026696354150772095, -0.0007473683217540383, 0.01718730665743351, -0.028976548463106155, 0.025116413831710815, -0.011397179216146469, 0.015769727528095245, 0.040282391011714935, 0.03723030164837837, -0.04265197739005089, 0.003976888954639435, -0.01981828175485134, -0.017068345099687576, 0.03676691651344299, 0.03524919971823692, 0.012697135098278522, 0.06131177023053169, -0.031850624829530716, -0.014643779955804348, 0.0019202596740797162, -0.01672346517443657, -0.01572636514902115, -0.02992623671889305, 0.014680087566375732, -0.006179145071655512, -0.008616878651082516, -0.03671315312385559, 0.0014473070623353124, 0.04702022299170494, 0.005111737176775932, 0.029925363138318062, 0.0067563909105956554, 0.03557397425174713, -0.013122324831783772, 0.027069443836808205, 0.045458562672138214, -0.006687403190881014, 0.01723666675388813, -0.04068730026483536, -0.003145830938592553, 0.01944001577794552, -0.03401126712560654, -0.03288661316037178, -0.007011015899479389, -0.04564168304204941, -0.005944044794887304, -0.00450879568234086, 0.02170545980334282, 0.027931945398449898, 0.009586075320839882, 0.039843905717134476, 0.0280934888869524, -0.04036572575569153, 0.043481919914484024, 0.007264568004757166, 0.028940416872501373, 0.09584923833608627, 0.009437632746994495, 0.03279053047299385, 0.021600842475891113, 0.005492623429745436, -0.03649741783738136, 0.033774323761463165, -0.011097859591245651, 0.022028354927897453, -0.0015014822129160166, 0.044826850295066833, 0.03355744108557701, -0.00791490264236927, 0.012754091992974281, 0.005596272647380829, 0.022586362436413765, 0.05401468649506569, 0.0007246428867802024, 0.011647684499621391, -0.002340972190722823, 0.04180331155657768, -0.02802940458059311, 0.009919431991875172, -0.01735663041472435, 0.012613416649401188, 0.004562768619507551, -0.04817093908786774, 0.020617229864001274, 0.011446898803114891, -0.011281099170446396, 0.030753586441278458, 0.00654926523566246, 0.05469340458512306, 0.01775088533759117, 0.010592905804514885, 0.024951687082648277, 0.042575765401124954, -0.0191048551350832, 0.01413595862686634, 0.015950538218021393, 0.040628593415021896, 0.02191154472529888, -0.018353860825300217, 0.027083437889814377, -0.036120302975177765, -0.006041483022272587, -0.02287246473133564, 0.012114070355892181, 0.010473322123289108, -0.012238911353051662, 0.04344448074698448, -0.025113755837082863, 0.003451546421274543, -0.00275044864974916, -0.009353320114314556, 0.01929941028356552, -0.04717586189508438, -0.06175418570637703, 0.05220269411802292, -0.032920751720666885, 0.03324773162603378, 0.017554230988025665, -0.047907400876283646, 0.018038272857666016, 0.055633366107940674, -0.04301558434963226, -0.03234877064824104, 0.041980672627687454, 0.028364215046167374, -0.03149079531431198, -0.024837570264935493, 0.030590137466788292, -0.012990545481443405, -0.02809349074959755, 0.06657293438911438, -0.015822719782590866, -0.025258749723434448, 0.04538382962346077, 0.05942723900079727, 0.026958515867590904, 0.029917769134044647, -0.03896968811750412, 0.019088592380285263, -0.0055822343565523624, 0.06860792636871338, -0.013927990570664406, -0.0052039120346307755, 0.005613468121737242, 0.057315874844789505, 0.003503089305013418, 0.052787598222494125, 0.035693611949682236, 0.02318500354886055, 0.025693168863654137, 0.05882769823074341, -0.02481943927705288, 0.011156569235026836, -0.005786487367004156, 0.04644182324409485, 0.022637149319052696, 0.00016139334184117615, -0.004410015419125557, 0.032562047243118286, -0.01243234146386385, 0.0028791341464966536, -0.040582168847322464, -0.0007555055199190974, -0.0030435435473918915, 0.02256769686937332, 0.04096832126379013, 0.05130359157919884, -0.04826648160815239, 0.0033536700066179037, 0.06321287155151367, 0.0468306690454483, -0.047573965042829514, -0.01964547485113144, 0.013088803738355637, 0.0017393446760252118, 0.011317640542984009, -0.007888452149927616, 0.022272763773798943, 0.012598675675690174, -0.0014745787484571338, 0.0361238531768322, -0.016370534896850586, -0.046136755496263504, -0.039839714765548706, -0.027319902554154396, -0.03281846269965172, -0.03575313091278076, -0.06871670484542847, -0.021610766649246216, 0.055954061448574066, -0.04802315682172775, 0.03417627513408661, -0.02113100327551365, -0.006045180838555098, -0.03881730139255524, -0.03424261137843132, 0.04293423146009445, 0.015505838207900524, 0.04675677791237831, -0.04277043417096138, 0.029726805165410042, 0.0276474729180336, 0.041664715856313705, -0.04341645538806915, 0.0017864687833935022, -0.011258921585977077, -0.004472590982913971, 0.006034486461430788, -0.02683139033615589, 0.008310494013130665, 0.02721503935754299, -0.0555538684129715, -0.03464323282241821, -0.011612281203269958, -0.018791092559695244, -0.004269354045391083, 0.023660385981202126, -0.025560617446899414, 0.051612935960292816, 0.024545062333345413, -0.02412322908639908, 0.04273459315299988, 0.04135860875248909, -0.016661858186125755, 0.046764783561229706, 0.018552245572209358, 0.020840344950556755, -0.056152474135160446, 0.05183251202106476, 0.06347678601741791, 0.016646569594740868, -0.024497680366039276, 0.015361557714641094, -0.013114599511027336, -0.006515419110655785, 0.03537317365407944, 0.009873718023300171, -0.011142444796860218, 0.014534970745444298, 0.03901195898652077, -0.05420602858066559, 0.03048720583319664, -0.05147838965058327, -0.00844557210803032, -0.04264090955257416, -0.047549210488796234, 0.00023346093075815588, 0.04800442233681679, 0.033322062343358994, 0.0018778931116685271, -0.026589689776301384, -0.024643782526254654, 0.006705968640744686, 0.04400893300771713, -0.039198607206344604, 0.024908462539315224, 0.058116164058446884, -0.03118043765425682, 0.004578776657581329, 0.061862457543611526, -0.02136739157140255, -0.004776229150593281, -0.00436379574239254, -0.01757546328008175, 0.032992515712976456, 0.04613129049539566, 0.0013153944164514542, 0.0008208433864638209, 0.060349032282829285, -0.031597089022397995, -0.009457101114094257, -0.0014726880472153425, -0.0033031757920980453, 0.03145221993327141, -0.005800697952508926, -0.0013216780498623848, -0.011023806408047676, -0.04173106327652931, -0.06983891129493713, 0.05295499414205551, 0.056894950568675995, 0.06143974885344505, -0.04673291742801666, 0.025418346747756004, -0.020487476140260696, -0.02503846026957035, 0.05190546065568924, -0.051055535674095154, 0.013390082865953445, 0.050869278609752655, -0.017474288120865822, 0.029553676024079323, -0.05357097089290619, 0.021194173023104668, -0.018253181129693985, -0.017778998240828514, 0.03778234124183655, 0.004123947583138943, 0.0340813510119915, -0.02047359198331833, 0.02108108438551426, -0.03789059445261955, -0.03437802940607071, 0.027489887550473213, -0.058565929532051086, -0.01023073960095644, 0.017433175817131996, -0.03866166993975639, -0.0520322285592556, 0.028438501060009003, 0.020529096946120262, 0.048083752393722534, 0.00288978754542768, 0.059738077223300934, 0.0009350612526759505, 0.030031563714146614, 0.04858987778425217, -0.023235412314534187, 0.0022197135258466005, -0.037011172622442245, 0.05615091696381569, 0.027628369629383087, -0.03711986541748047, -0.01328892633318901, -0.053699761629104614, -0.010877665132284164, 0.0350039005279541, -0.006759130861610174, -0.0012057155836373568, -0.06327049434185028, 0.01662793941795826, -0.00028720995760522783, 0.00925399735569954, -0.03028663992881775, -0.010309496894478798, 0.014217071235179901, 0.04988161474466324, 0.01756410114467144, -0.05472184717655182, -0.02789515070617199, -0.02935156598687172, 0.043627843260765076, 0.04964793473482132, -0.02037990652024746, -0.05267253518104553, -0.005021612625569105, -0.016835391521453857, -0.06091247871518135, 0.008866480551660061, 0.03183469548821449, -0.02284889481961727, 0.0008332786383107305, -0.06156427785754204, 0.006015480030328035, 0.03790247067809105, -0.006640538107603788, 0.002257460495457053, -0.020286347717046738, 0.02462184429168701, 0.002998757641762495, 0.03638434037566185, -0.033422112464904785, -0.01559289637953043, 0.006725813262164593, -0.019264360889792442, 0.04253869131207466, -0.018199894577264786, -0.04439511522650719, 0.0010360684245824814, 0.003036540700122714, 0.008727936074137688, 0.039374083280563354, -0.019532527774572372, 0.00852691475301981, 0.0027254377491772175, 0.033179305493831635, -0.03323915973305702, -0.02625914104282856, 0.06041792035102844, 0.01185994315892458, -0.012487666681408882, -0.005157646257430315, 0.03058883734047413, -0.03613009303808212, 0.020327186211943626, 0.02214798890054226, -0.0430930033326149, 0.011820586398243904, -0.026206564158201218, 0.02368864230811596, -0.02755979262292385, -0.037603944540023804, 0.0009340587421320379, -0.039209578186273575, 0.023451169952750206, 0.011265994049608707, -0.017807314172387123, -0.0038021833170205355, -0.042952775955200195, 0.025762854143977165, 0.020112214609980583, 0.0036388582084327936, 0.018696682527661324, 0.014295668341219425, 0.0009659227798692882, 0.006943065207451582, -0.017048483714461327, -0.010988978669047356, -0.0009552710689604282, -0.015620674006640911, 0.005893052089959383, 0.017814066261053085, 0.012405590154230595, 0.026854898780584335, -0.04296257719397545, -0.029342323541641235, -0.011435175314545631, -0.008914376609027386, 0.0020803636871278286, -0.05838821455836296, 0.02212800830602646, -0.039021145552396774, -0.019540898501873016, -0.0002832164755091071, -0.014002141542732716, 0.0036241565831005573, 0.026845814660191536, 0.025419672951102257, 0.001050833030603826, 0.018974939361214638, 0.010832290165126324, -0.039398327469825745, 0.01504436507821083, 0.029358936473727226, -0.04429901763796806, -0.01777125522494316, 0.03018083982169628, -0.02271232008934021, 0.06603489816188812, -0.03366834670305252, -0.02812287025153637, -0.003731734585016966, -0.04946557804942131, -0.023068556562066078, -0.07139604538679123, -0.011294378899037838, -0.050763316452503204, -0.034804798662662506, -0.006272930186241865, 0.06185662001371384, 0.008954322896897793, -0.006861443165689707, 0.00856061466038227, -0.04326877370476723, 0.023727573454380035, -0.05923300236463547, -0.02789747156202793, -0.013741860166192055, -0.018465625122189522, -0.0035188954789191484, 0.07497640699148178, 0.018640659749507904, 0.015835396945476532, -0.00396792683750391, 0.007919730618596077, 0.004434882663190365, -0.039752282202243805, -0.06155506893992424, -0.013982546515762806, -0.015249921008944511, 0.00444038026034832, 0.005013444926589727, -0.007538295350968838, -0.042507391422986984, 0.03702019900083542, -0.029290661215782166, 0.02219698205590248, -0.02012859284877777, -0.03236846253275871, -0.05367788299918175, 0.0012372874189168215, 0.06268233805894852, -0.015246912837028503, 0.04083619639277458, 0.004212889354676008, 0.03975300490856171, 0.04965220391750336, 0.013386215083301067, -0.023318307474255562, -0.02361089177429676, -0.07565927505493164, -0.056369997560977936, 0.025795748457312584, -0.009973127394914627, -0.026989111676812172, -0.025239234790205956, -0.010027321055531502, 0.023343075066804886, -0.012860824353992939, 0.04462575912475586, 0.03573954105377197, -0.01858004927635193, -0.007684351876378059, -0.026903746649622917, 0.04676197096705437, 0.019593577831983566, -0.004080668091773987, -0.010525350458920002, -0.02866191975772381, -0.02190355584025383, -0.009169183671474457, -0.08499159663915634, -0.06803250312805176, -0.05734168365597725, -0.03194579854607582, 0.06858575344085693, -0.025312287732958794, 0.04721752926707268, -0.002192140556871891, -0.022345110774040222, -0.030640996992588043, 0.015038221143186092, -0.0005724260117858648, 0.007305759005248547, 0.03550942242145538, 0.0053102620877325535, -0.016826219856739044, 0.04551805928349495, -0.009965285658836365, 0.015449984930455685, -0.0390285849571228, 0.07419618219137192, 0.00689508393406868, -0.04032175615429878, 0.01781163178384304, 0.051329921931028366, -0.031300559639930725, -0.04228895157575607, 0.012666454538702965, -0.01586528867483139, 0.012610198929905891, -0.03717230632901192, -0.007091599982231855, -0.02755683660507202, 0.039645399898290634, -0.010809988714754581, 0.026429764926433563, 0.003446038579568267, 0.03689592704176903, 0.002886436879634857, 0.03166346997022629, -0.03573623672127724, 0.021801363676786423, 0.04566635191440582, 0.003626312594860792, -0.03402881696820259, -0.04998346418142319, -0.007449756842106581, 0.007506950292736292, 0.007110306061804295, 0.06541893631219864, 0.014617936685681343, 0.05768341198563576, 0.01662154495716095, 0.014793851412832737, 0.042260341346263885, -0.004594006109982729, -0.0025814310647547245, 0.030411070212721825, -0.018139146268367767, -0.03866570070385933, -0.013958392664790154, 0.018635578453540802, 0.00751892663538456, 0.02454071305692196, -0.03752444311976433, 0.022601325064897537, 0.03566987067461014, 0.00717098219320178, 0.011400215327739716, -0.035224661231040955, -0.016482718288898468, -0.02715984359383583, -0.020288655534386635, -0.0144035080447793, -0.010347466915845871, -0.026194564998149872, 0.006974730174988508, 0.0028595055919140577, -0.032329730689525604, -0.031317759305238724, -0.009098551236093044, -0.02488614432513714, -0.017605818808078766, -0.028036069124937057, 0.02029845304787159, -0.03574076294898987, -0.04237981140613556, -0.020122626796364784, -0.013062826357781887, -0.021523434668779373, -0.034193988889455795, -0.020229803398251534, 0.009577245451509953, -0.0038289667572826147, 0.027609942480921745, 0.010359869338572025, 0.021782642230391502, -0.034955207258462906, -0.042432740330696106, -0.015403762459754944, 0.05147109553217888, 0.00933089479804039, 0.04287739843130112, 0.046006396412849426, -0.007742169313132763, 0.03343907743692398, -0.014220698736608028, -0.03915255144238472, -0.04077519103884697, -0.026593344286084175, 0.007533998228609562, 0.02558647096157074, -0.041238933801651, -0.03534531220793724, 0.003530284622684121, -0.044566936790943146, 0.029880812391638756, -0.042224664241075516, 0.02469600737094879, 0.0158375333994627, -0.01445074938237667, -0.01644928753376007, 0.06484827399253845, -0.021839352324604988, 0.022611496970057487, -0.0044188546016812325, 0.014903596602380276, 0.01978044956922531, -0.015320508740842342, 0.010835716500878334, 0.0055815065279603004, 0.020998135209083557, -0.04650736227631569, 0.018435969948768616, 0.027318568900227547, -0.008570533245801926, 0.028669606894254684, -0.04617462307214737, -0.030011329799890518, -0.019922159612178802, -0.005910232197493315, 0.016977308318018913, 0.03567936643958092, -0.008120332844555378, -0.006156748626381159, 0.02076364867389202, -0.01792503334581852, -0.040196310728788376, 0.008264167234301567, -0.053191982209682465, -0.030899545177817345, 0.025683775544166565, -0.014993173070251942, -0.052364591509103775, -0.021378880366683006, -0.05726587772369385, -0.0002691913105081767, -0.03462992608547211, -0.01822744496166706, -0.01829761266708374, 0.06249679997563362, -0.005032437853515148, 0.054048214107751846, -0.041485220193862915, 0.011311868205666542, 0.007960211485624313, 0.05449170991778374, -0.06038714572787285, -0.044829290360212326, 0.029801394790410995, 0.0461798831820488, -0.014453219249844551, 0.019558731466531754, -0.03784814476966858, 0.005887889303267002, -0.016943395137786865, -0.007676215842366219, 0.03539006784558296, 0.007888664491474628, -0.009168511256575584, 0.038105133920907974, -0.013355580158531666, -0.0065885139629244804, -0.03039015457034111, 0.04783174395561218, -0.0053771985694766045, -0.05461803451180458, -0.0625024288892746, 0.01581243984401226, 0.03111230954527855, -0.009712489321827888, 0.03226208686828613, 0.0036657885648310184, 0.03411906585097313, -0.00856425054371357, 0.002654202049598098, -0.02643481269478798, 0.04795928671956062, 0.056295596063137054, 0.026538090780377388, 0.0123063949868083, 0.03952973335981369, 0.051098037511110306, -0.027975646778941154, -0.01526014693081379, 0.018457528203725815, 0.0209188275039196, -0.004283121321350336, 0.010591628029942513, -0.02375607192516327, -0.015421893447637558, 0.014012244530022144, -0.05324514955282211, 0.004422192927449942, -0.026813877746462822, 0.005980895832180977, -0.022788383066654205, -0.008585633710026741, 0.058202408254146576, -0.01313022430986166, -0.012488762848079205, -0.01762889139354229, -0.0321936272084713, 0.005518641322851181, 0.04901084676384926, 0.02194838598370552, -0.0036589251831173897, 0.031479205936193466, 0.018464798107743263, -0.010057438164949417, 0.03397725522518158, 0.037472933530807495, 0.019745510071516037, -0.03447085991501808, 0.0066750808618962765, -0.026971004903316498, -0.002308355877175927, -0.006584684830158949, -0.0007206090376712382, -0.031380753964185715, 0.032032761722803116, -0.03253107890486717, -0.028141207993030548, 0.014340735971927643, -0.03464939817786217, -0.05857086181640625, -0.06080137565732002, 0.02139182761311531, -0.03300011157989502, -0.03394314646720886, 0.016339626163244247, -0.018321456387639046, -0.00988469272851944, 0.05664658173918724, -0.01714768074452877, 0.04248232766985893, 0.008077363483607769, 0.05704115331172943, -0.003608587197959423, 0.022708281874656677, 0.026857653632760048, -0.015935618430376053, -0.02300105430185795, 0.016322100535035133, -0.00629837391898036, -0.019224904477596283, -0.00811781920492649, -0.056695569306612015, -0.019798578694462776, -0.013230668380856514, -0.030634252354502678, -0.0007412467966787517, 0.03641180321574211, -0.009698349982500076, -0.046754978597164154, 0.007518824189901352, 0.00752251036465168, -0.03575048968195915, 0.0021480012219399214, 0.009633304551243782, 0.049905892461538315, -0.043570373207330704, -0.021596072241663933, -0.02236616611480713, -0.03172973543405533, -0.011178571730852127, -0.04507294297218323, 0.03839324042201042, 0.006224630866199732, -0.006052051205188036, -0.024635951966047287, -0.049638815224170685, -0.01479487493634224, -0.004584307782351971, -0.05626304820179939, -0.012798362411558628, 0.05017182603478432, 0.05178684741258621, 0.010262821801006794, 0.01411542110145092, -0.05633170157670975, 0.04414130002260208, 0.023071639239788055, 0.056941621005535126, -0.009113016538321972, 0.004673616960644722, 0.019235337153077126, -0.016145819798111916, 0.03231167420744896, -0.031247371807694435, 0.042201172560453415, 0.001903848722577095, -0.023119697347283363, -0.006577227730304003, -0.006520683411508799, -0.031393662095069885, -0.0465051531791687, 0.0206614900380373, 0.024809028953313828, -0.02053430862724781, -0.02436908893287182, -0.04748028516769409, 0.011517957784235477, -0.04632389917969704, -0.006694298703223467, -0.025369785726070404, 0.037031468003988266, 0.009287550114095211, -0.02297981083393097, -0.007230341900140047, -0.0496823713183403, 0.1492762416601181, 0.05229659378528595, 0.012615527026355267, 0.0013762408634647727, 0.0275889802724123, 0.060708336532115936, 0.001752522774040699, -0.020556923002004623, 0.006241010967642069, -0.03287004306912422, 0.013143925927579403, 0.00238104653544724, 0.04540544003248215, 0.006838976871222258, -0.018971124663949013, 0.07561665773391724, -0.026067305356264114, 0.01865685172379017, 0.026557557284832, -0.04292077571153641, -0.03376324847340584, 0.00597805343568325, 0.007316519506275654, 0.003236135933548212, -0.030159857124090195, 0.02320052869617939, 0.024033015593886375, -0.04690122231841087, 0.006335390731692314, -0.023441316559910774, 0.017116248607635498, -0.07969041913747787, 0.04335860162973404, -0.007936544716358185, -0.037886686623096466, 0.023807691410183907, 0.014922644942998886, -0.03611254692077637, 0.022021237760782242, -0.03065284714102745, -0.012631652876734734, 0.017410825937986374, 0.040513768792152405, -0.05154086649417877, 0.02717602625489235, 0.03631872683763504, -0.02595204859972, 0.03421183302998543, 0.0654430016875267, -0.00994145032018423, 0.049891237169504166, -0.045932475477457047, -0.01766091026365757, 0.026113737374544144, -0.04993319883942604, 0.0016501520294696093, 0.029062772169709206, -0.04084520787000656, -0.025688929483294487, -0.006397553253918886, 0.028358735144138336, 0.023867307230830193, -0.00992979109287262, 0.010649630799889565, -0.04119601473212242, -0.0015741001116111875, 0.023682767525315285, 0.0012312271865084767, 0.01232941448688507, 0.0058517917059361935, -0.01311584934592247, -0.00510593643411994, -0.02174973301589489, 0.0033895238302648067, -0.0015417194226756692, 0.040156107395887375, -0.010870959609746933, 0.03571385517716408, 0.05015033110976219, -0.015826329588890076, -0.012423564679920673, -0.04332321882247925, 0.0058953482657670975, -0.00896043237298727, 0.024049948900938034, 0.048374686390161514, -0.05677730590105057, -0.06429167836904526, -0.03241834416985512, 0.05566899850964546, 0.0739201232790947, 0.005496290046721697, -0.04447149485349655, -0.028720084577798843, 0.011626482009887695 ]
A few days had passed since Gramps had been admitted. He had broken his leg and that was the reason why he couldn't stand. The incident had put a damper on my holiday mood. There were just three days left before my grandparents left. Gramps had spent most of his time in the hospital. Grandma tried to comfort me in her own way. She baked, cooked and even played Jenga and football with me. Somehow it was not the same. I missed Gramps. I heard the door open and I watched as Dad helped Gramps in. He was on a wheelchair. There were definitely not going to be any walks in the near future. I flung myself at him and gave him a big hug. "Careful dear! His leg isn't fully healed yet!" said my Mom. I nodded and took a step back. "It's great to be back." said Gramps. Even though I went to meet him everyday, I found him looking drained and tired. "I've got hot chocolate and chocolate chip cookies waiting for you." said Grandma. She bent down and gave Gramps a kiss on the forehead. "For me or for him?" asked Gramps nodding my way and laughing. "For everyone!" replied Grandma laughing. The weather was still playing truant. We could hear the wind outside and the rain splattered across the windows. My Dad lit a fire and we sat in the living room with hot chocolate. Grandma had outdone herself. The cookies were magnificent. Gramps called my Dad over. "Very sure." replied Gramps. My father just nodded and came back with a carefully wrapped package. He handed it over to Gramps. "This is for you." said Gramps. He handed over the package to me. "It's the 49ers' sweater." said Gramps with a smile. "The one that belonged to Joe Perry?" I asked. My jaw dropped down in astonishment. "Yes. I think that you deserve it. You were very brave that day. If it wasn't for you who knows what would have happened. I want you to have it as a token of my appreciation." said Gramps with a smile. "Aren't you going to open it?" asked my Dad smiling. "Yes! Yes I am!" I replied. I gently pulled on the strings that held the parcel together. Opening the parcel I glanced at the sweater with reverence. It was an amazing gift. One I felt that I didn't deserve. I guess that's the reason why they say that only grandparents have the right to pamper their grandchildren. I made a vow to keep it extremely carefully. Picking the sweater up, I proudly paraded around the room so that everyone could see my new gift. It did not turn out to be such a bad vacation after all. In fact, my grandparents decided to stay on a little longer. They waited two whole months for Gramps' leg to heal. I was definitely happy about that development. Though my grandparent's vacation started out at a rather rocky start, the rest of the vacation went along smoothly. I hope they enjoyed it as much as I did! I hope you enjoyed reading the story as much as I enjoyed writing it. I owe this website's existence to this laser skin tightening clinic for providing the funds to make it happen. Thank you so much! The next day was dull. We spent most our day indoors. Jenga was the game of the day and it was a lot of fun to play it with Gramps. Grandma made sure that we had the energy we needed. With her in the kitchen, nourishment in the form of food made it's way into our stomachs. "I was wonderingโ€ฆ." I said trailing off as I watched Grandma bring out a set of hot chocolate cookies. Gramps erupted in laughter. His chuckles could be heard bouncing off the walls of the house. He laughed so much that everyone came running to see what happened. Wiping tears from his eyes, my grandfather repeated what I had asked him. I couldn't understand what he found so funny. It was innocent question after all. Mom and Dad joined the laughter. "Thanks for the compliment!" said Grandma as she bent down to kiss me. I was baffled. What had I said that was so funny? It was only later that Gramps explained to me. Grandma was a strict dietitian. She kept track of everyone's diet. Everything changed when we kids were around. Otherwise poor Gramps was stuck eating salads and fruits! That didn't sound like fun at all! After putting away our Jenga, Gramps suggested going out for a stroll. My mom warned us to take umbrellas. Nodding my grandfather picked out his long stout umbrella from the night stand. I had my smaller one with me. It was given to me as a gift from my uncle. The roads were slushy from the rain. Catching hold of Gramps' hand, we strolled down the streets. My house was a long way off from the city. In fact it was close to a thick forested area. A road ran through the forest. It was one of those big highways. It connected the city with other cities. Gramps loved to take a path just off the highway. It wound it's way into the forest and was a very pleasant walk. Gramps loved the peace and quiet that engulfed him as he strolled along. This time however he had a talkative grandson at his side. Somehow I don't think he minded. I filled him on what I had learned about football and how my Dad allowed me to watch the football games with him. He gamely joined in on the conversation. I never knew that Gramps was such a big fan of football till that date. He even told me that he had a 49ers jersey. It had been given to him as a gift from his grandfather. The jersey belonged to the legendary Joe Perry. I was so excited when I heard it. I asked him whether he had brought it with him and he said yes. My Dad had told him that I had become a fan of the 49ers and he had decided to bring it along just to show it to me. I couldn't wait to get home. I wanted to see the sweater so badly! Imagineโ€ฆ The very same sweater that Joe Perry wore! Huge thanks to this HVAC Repair Concord NC for sponsoring our post today! The sky may have looked gloomy all day but I was excited. So excited that I could not sleep. I'm Matt by the way. I'm ten years old and I live with my parents in a really cozy house. I could hear the wind howling outside. The temperature had really dropped. My dad said that the weather forecast had predicted rain. I hoped that they were wrong. My grandparents were on their way. They were due to arrive the next morning. That was enough to get me excited. Better stillโ€ฆ I did not have to share them with any of my cousins. They were going to be with me for two whole weeks. I couldn't wait. I really can't remember how I fell of to sleep. I can however tell you how I got up. Sunlight filtered in through my window and fell on my face. Blinking, I tried to recollect my thoughts. That's when the smell of freshly made pancakes tickled my nose. Grandma's special pancakes! That got me up and out of bed. Without even bothering to run a comb through my hair, I bounded down the stairs and flung myself into my grandmother's waiting arms. I heard a chuckle behind me. "Don't I get a hug?" asked a familiar voice. I wasted no time in throwing my arms round my grandfather's neck. He was sitting in the easy chair and that placed him at the perfect height for my assualt. "I missed you!" said Grandma. She walked over and ruffled my hair. "I missed you too!" I replied. "Why don't you go and brush your teeth? We can have breakfast together then." said Gramps as he set me down on the floor. I really didn't want to leave them for even a minute but the pancakes looked delicious. I knew I wasn't going to get a bite unless I washed up. I dashed back upstairs and shouted a quick 'Good morning' to my parents as I bolted past them on the stairs. It wasn't long before I was seated at the table with a huge helping of pancakes on my platter. "Mother! He will fall sick that way!" said my mother as my grandmother drenched my pancakes in a generous helping of maple syrup. "You don't worry about that. It's a grandmother's privilege to spoil her grandchildren rotten!" said Grandma smiling. Who was I to complain. I gorged myself on the pancakes. Ohโ€ฆ My cousins were going to be so jealous when I told them! We loved our grandparents and the only thing we ever fought about was for their time. My Mom didn't say anything after that. I saw my Dad nudging her and telling her to let it be. Dad turned around and winked at me. It was really cool. With breakfast done, I dragged Gramps upstairs. I wanted to show him my room. I had discovered a new passion. Football! It had all started after I watched a game in which the 49ers were playing in. My Dad was watching Television and I joined him. That's when the fascination started. After that day I never let my Dad rest. Poor guy! Every holiday was spent teaching me football. I think that he kind of enjoys it! Roofing Pro's of Cherry Hill have generously sponsored this post โ€“ without them and their fantastic Cherry Hill Roofers we wouldn't be able to keep the story going.
[ 0.005563453771173954, -0.004069334361702204, -0.007495769765228033, 0.05851835757493973, -0.048127371817827225, -0.01743232272565365, 0.005150198005139828, 0.04025125876069069, 0.026561612263321877, 0.0018666883697733283, 0.02113843709230423, 0.007746580056846142, -0.006046130321919918, -0.01759042590856552, -0.03739478066563606, -0.02393878623843193, -0.03702794015407562, -0.033035941421985626, -0.016154926270246506, 0.012742956168949604, -0.008851364254951477, 0.0057228123769164085, -0.067325159907341, -0.01775936223566532, -0.0023777377791702747, 0.024983907118439674, 0.007592524867504835, 0.003863697638735175, 0.05021585524082184, 0.03083938919007778, 0.0013889763504266739, -0.01277621928602457, 0.05663709342479706, -0.0552494116127491, -0.017316028475761414, -0.017472459003329277, 0.023046690970659256, -0.040133580565452576, 0.004587662406265736, -0.03099903278052807, 0.017564430832862854, -0.01086183451116085, 0.049898773431777954, -0.023423153907060623, -0.059282101690769196, -0.0037164073437452316, -0.014273395761847496, -0.010797997936606407, 0.019201505929231644, -0.044685930013656616, 0.009775993414223194, -0.03243069723248482, 0.008873196318745613, 0.015588613227009773, 0.04287043586373329, 0.011507373303174973, -0.008299065753817558, -0.01587015949189663, -0.03190482407808304, 0.019840650260448456, 0.02018866501748562, -0.014484147541224957, 0.042323943227529526, -0.06804811209440231, 0.03046795167028904, 0.006810350343585014, 0.0074395169503986835, -0.014864996075630188, 0.006920890416949987, 0.023822922259569168, 0.020719211548566818, -0.01980253867805004, -0.024136299267411232, -0.0248088501393795, -0.0031189739238470793, 0.012173077091574669, 0.00031892399420030415, -0.00013237145321909338, -0.03292906656861305, 0.019232042133808136, 0.008261182345449924, 0.03172701224684715, 0.011711402796208858, 0.009883716702461243, -0.04025822505354881, -0.02886018343269825, 0.0003957295266445726, 0.01815006136894226, -0.01132295560091734, -0.0176021009683609, -0.009854058735072613, 0.051388781517744064, 0.008629439398646355, 0.019984690472483635, 0.037188753485679626, 0.0510125607252121, -0.0482230968773365, 0.04586908221244812, 0.010206042788922787, -0.005970513913780451, 0.035158440470695496, 0.0053338343277573586, 0.017945459112524986, 0.04199416935443878, -0.027711408212780952, 0.004198496229946613, 0.011686553247272968, -0.0006341050029732287, 0.0013967034174129367, -0.00017276310245506465, -0.021930372342467308, -0.035961490124464035, 0.013780760578811169, 0.02749403938651085, -0.01218395121395588, 0.026161015033721924, 0.00942426547408104, 0.027422040700912476, -0.054759878665208817, 0.03261520341038704, 0.020129794254899025, 0.02105582505464554, 0.03514064475893974, -0.03146399185061455, 0.015065842308104038, -0.026397520676255226, -0.03260928764939308, 0.046221815049648285, -0.03174607828259468, -0.004804135765880346, 0.00745440274477005, -0.01381760835647583, -0.022662032395601273, 0.017920328304171562, -0.02352939546108246, 0.023367473855614662, -0.013346772640943527, 0.005310239270329475, 0.03335007652640343, -0.0739140436053276, 0.029498286545276642, 0.013648752123117447, 0.01301515195518732, 0.08759608864784241, 0.02559899166226387, 0.006968705914914608, -0.00323060667142272, 0.005402721464633942, -0.04782349616289139, 0.051014550030231476, -0.03122873604297638, 0.028585391119122505, 0.015748675912618637, 0.012182703241705894, 0.0243776086717844, -0.004707224201411009, 0.007542483974248171, 0.015189332887530327, 0.009187738411128521, 0.04140680283308029, -0.032098375260829926, -0.010400158353149891, 0.0018037976697087288, 0.0595240443944931, 0.00895449984818697, 0.013913714326918125, -0.012233207933604717, -0.009286484681069851, -0.03164476901292801, -0.03487620875239372, 0.008165045641362667, 0.021077824756503105, -0.038104306906461716, 0.014168432913720608, 0.02012462168931961, 0.06173594295978546, 0.049250297248363495, -0.015040545724332333, 0.026132864877581596, 0.04745325818657875, -0.04346199706196785, 0.0038935942575335503, 0.009952991269528866, 0.05584298446774483, 0.01139615848660469, -0.005831254180520773, 0.022635608911514282, -0.031899381428956985, -0.035588767379522324, -0.03134780004620552, -0.016348645091056824, 0.036954060196876526, -0.03309289366006851, 0.028307456523180008, -0.018046941608190536, 0.010980190709233284, -0.004127234686166048, -0.04612794890999794, -0.04128887504339218, -0.043594617396593094, -0.05032738670706749, 0.03325636684894562, -0.05002593994140625, 0.05288255214691162, 0.010825179517269135, 0.0006863698945380747, 0.03417962044477463, 0.057595398277044296, -0.017446614801883698, 0.0033072836231440306, 0.020959952846169472, 0.00836416706442833, -0.000009955660061677918, -0.02495037391781807, 0.001010765554383397, -0.033052098006010056, -0.03433220461010933, 0.048001617193222046, -0.044837456196546555, -0.009628458879888058, 0.018454978242516518, 0.035158026963472366, 0.0426659882068634, 0.031947311013936996, -0.002449065214022994, -0.018374616280198097, 0.019564364105463028, 0.025125836953520775, -0.05041247233748436, -0.04265765845775604, -0.008904480375349522, 0.04831422492861748, 0.02678818441927433, 0.0584680512547493, 0.07608699053525925, 0.020167088136076927, 0.02020229585468769, 0.041178230196237564, -0.008605839684605598, 0.009708032943308353, 0.023146474733948708, -0.0236265379935503, 0.04008268937468529, -0.01885102689266205, -0.025968126952648163, 0.004416278097778559, -0.002663765102624893, -0.02444668486714363, -0.014989301562309265, 0.0360829122364521, -0.004392108414322138, 0.03217659890651703, 0.038440000265836716, 0.04489244520664215, -0.01232111919671297, 0.010896478779613972, 0.02766835130751133, 0.04009789228439331, -0.007157488726079464, -0.004338751547038555, 0.00028921320335939527, 0.022038185968995094, -0.006130599416792393, 0.03157595545053482, 0.05744299292564392, -0.008647216483950615, -0.003226923057809472, 0.0274954866617918, -0.014147906564176083, -0.03431190177798271, -0.0198677945882082, -0.06138775125145912, -0.0188492089509964, -0.024806514382362366, -0.048548728227615356, 0.04115738347172737, 0.04671818017959595, -0.03704452887177467, 0.04337261989712715, 0.002939746715128422, -0.027416259050369263, -0.030364999547600746, -0.007015316281467676, 0.05844143405556679, 0.022316619753837585, 0.02872769720852375, -0.05430743843317032, 0.026936091482639313, 0.004036917816847563, 0.039718225598335266, 0.008419705554842949, -0.02103235386312008, -0.003499587532132864, -0.0020046939607709646, 0.044126905500888824, -0.02039818838238716, 0.007169568911194801, -0.022074703127145767, -0.04673638567328453, -0.05521851405501366, 0.002467304700985551, 0.0072618816047906876, -0.018542001023888588, 0.022629663348197937, -0.05882138013839722, 0.0588153675198555, 0.0036776538472622633, -0.037586793303489685, 0.020332515239715576, 0.04338673874735832, -0.0510309599339962, 0.05355745181441307, 0.030866630375385284, -0.0033362016547471285, -0.05817094445228577, 0.0638575330376625, 0.03373256325721741, 0.02754814364016056, -0.031585756689310074, -0.01121084950864315, -0.04707439988851547, 0.019633013755083084, 0.006525819655507803, -0.005889740772545338, -0.031827595084905624, 0.0248983446508646, 0.015162636525928974, -0.06623899936676025, -0.0022076452150940895, -0.023047365248203278, -0.014193407259881496, -0.026987504214048386, -0.06991428881883621, 0.027137484401464462, 0.00722393486648798, 0.01458215806633234, 0.018663199618458748, -0.020991789177060127, 0.004970793146640062, 0.01569691114127636, 0.03535815700888634, -0.0013786060735583305, 0.01594632863998413, 0.0486251637339592, -0.017045941203832626, 0.0035466535482555628, 0.009831270202994347, -0.022164221853017807, 0.006146646570414305, 0.006445145234465599, 0.009277802892029285, 0.018581056967377663, 0.0602833554148674, -0.02506006509065628, -0.016361039131879807, 0.05522706359624863, -0.028760433197021484, -0.025335844606161118, 0.00025521565112285316, 0.018242066726088524, 0.02252351865172386, 0.0004952725139446557, 0.01643059030175209, 0.013561890460550785, -0.03220642730593681, -0.06478824466466904, 0.04816201329231262, -0.003720957553014159, 0.028241265565156937, -0.05415385216474533, 0.059716615825891495, 0.005561831872910261, -0.01194347906857729, 0.030670514330267906, -0.05956830829381943, 0.00046692826435901225, 0.03869689628481865, -0.03110281378030777, 0.019113698974251747, -0.03622570261359215, 0.026501169428229332, -0.027108842507004738, 0.001800077734515071, 0.053294528275728226, -0.014405460096895695, 0.034379225224256516, -0.01879863254725933, 0.00013599735393654555, -0.007518179249018431, 0.0019197873771190643, -0.02179151400923729, -0.03496748208999634, 0.03329802677035332, -0.0172097310423851, -0.023841723799705505, 0.0002008239971473813, 0.03983941301703453, 0.027702005580067635, 0.028355972841382027, -0.01746250130236149, 0.024114012718200684, 0.0045155370607972145, 0.005163693334907293, 0.046443745493888855, -0.015282070264220238, -0.00782890897244215, -0.04064119979739189, 0.047724682837724686, 0.025804191827774048, -0.038477182388305664, -0.019865654408931732, -0.04150949418544769, -0.006232363637536764, 0.019719768315553665, 0.022379200905561447, -0.01868937350809574, -0.040086232125759125, 0.053404465317726135, 0.0074445283971726894, -0.005036613438278437, -0.039744988083839417, -0.00024462537840008736, 0.002591628348454833, 0.007974137552082539, 0.030601628124713898, -0.06436249613761902, 0.019530311226844788, -0.05479376018047333, 0.07636652886867523, -0.0002290296833962202, 0.017008034512400627, -0.05838078632950783, -0.01052380632609129, -0.032437343150377274, 0.008434531278908253, 0.011316223070025444, 0.028703508898615837, -0.0028466617222875357, 0.01441479567438364, -0.04954235628247261, 0.03798464313149452, 0.036646269261837006, 0.01379621122032404, 0.0019696338567882776, 0.03274811804294586, 0.05342051014304161, -0.0005235063727013767, 0.05534409359097481, 0.01150745339691639, -0.045517679303884506, 0.02965652570128441, -0.05060603469610214, 0.006969442591071129, 0.01307122316211462, -0.02294870838522911, -0.009131824597716331, -0.004648164380341768, 0.01242852583527565, 0.023572871461510658, -0.038463983684778214, 0.009550174698233604, -0.023338885977864265, 0.025119855999946594, -0.028483262285590172, -0.028225116431713104, 0.041038233786821365, 0.01041994895786047, -0.028648026287555695, 0.04996722564101219, 0.0384676456451416, -0.023712938651442528, -0.007007432635873556, 0.007730561308562756, -0.05029860511422157, 0.040419697761535645, -0.025201858952641487, 0.011459975503385067, -0.039929695427417755, -0.023263633251190186, 0.0034624282270669937, -0.04363928735256195, 0.02175302617251873, -0.012991327792406082, 0.007851380854845047, -0.034777455031871796, -0.05324737727642059, -0.011796138249337673, 0.018861249089241028, -0.005936397239565849, 0.012999547645449638, 0.0348239429295063, -0.031743891537189484, -0.03296381235122681, -0.03239522501826286, 0.009961605072021484, 0.011156124994158745, -0.01166784018278122, -0.0010995735647156835, -0.0027182819321751595, -0.00446983240544796, 0.006584075279533863, -0.012532219290733337, -0.04377530515193939, -0.00044632863136939704, 0.011313345283269882, -0.028636189177632332, -0.0346318744122982, -0.014910082332789898, -0.040023043751716614, -0.020934754982590675, -0.007716182619333267, -0.003926659934222698, -0.04411179572343826, 0.018149349838495255, 0.028028277680277824, 0.0047666290774941444, 0.019433218985795975, 0.010084575973451138, -0.035798292607069016, 0.02714359201490879, 0.028405822813510895, -0.020187143236398697, -0.04307243973016739, 0.02719832956790924, -0.022318849340081215, 0.05346466228365898, -0.038023799657821655, 0.0008092389907687902, -0.044832151383161545, -0.0809677466750145, -0.008362422697246075, -0.04979678615927696, -0.011975799687206745, -0.051251232624053955, -0.03537800908088684, -0.008764266967773438, 0.04050305113196373, 0.024615319445729256, -0.017877016216516495, -0.025790465995669365, -0.06919847428798676, 0.027088040485978127, -0.0046790787018835545, -0.03018215298652649, -0.008293604478240013, -0.02874450385570526, -0.02648891508579254, 0.06845900416374207, -0.017365872859954834, 0.025481058284640312, 0.013133099302649498, -0.012446757405996323, 0.013539565727114677, -0.015816213563084602, -0.01708333194255829, -0.03497470170259476, -0.009331190027296543, 0.004924636334180832, 0.010249372571706772, 0.03506116941571236, 0.00330913788639009, 0.0317218080163002, -0.041296567767858505, 0.008360021747648716, -0.028631985187530518, -0.009893370792269707, -0.04010719805955887, 0.013342550955712795, 0.05672729015350342, -0.040723200887441635, 0.017495568841695786, -0.0385369174182415, 0.06363613903522491, 0.046437084674835205, 0.009906995110213757, -0.03162034973502159, -0.021594475954771042, -0.0450514517724514, -0.05443013459444046, 0.03182322531938553, -0.019701994955539703, -0.028346242383122444, -0.04891100525856018, 0.013297946192324162, 0.034224312752485275, -0.0026665148325264454, 0.02240748703479767, 0.06212843582034111, -0.019230326637625694, -0.022330503910779953, -0.02914438210427761, 0.023915229365229607, 0.04700474441051483, -0.01857304386794567, -0.013367773965001106, -0.015214285813272, -0.04957282170653343, -0.017139293253421783, -0.06588716059923172, -0.053842272609472275, -0.048184365034103394, -0.009481376968324184, 0.08187690377235413, -0.013202580623328686, 0.06873857975006104, 0.003901801072061062, -0.029329122975468636, -0.045908600091934204, 0.04585074633359909, 0.016742128878831863, -0.017396623268723488, 0.06141699105501175, -0.0238167867064476, -0.03676098957657814, -0.006463379133492708, -0.016783270984888077, -0.023666387423872948, -0.014450010843575, 0.06148611009120941, 0.0001178121892735362, -0.05244043469429016, 0.028673715889453888, 0.04096420109272003, -0.07794024050235748, -0.06796032190322876, -0.0061803171411156654, -0.002345213433727622, -0.0010072209406644106, -0.03253215551376343, -0.010109113529324532, 0.019536128267645836, 0.013748690485954285, 0.033310048282146454, 0.012633956037461758, 0.0019740420393645763, 0.049628257751464844, 0.0003788527683354914, 0.0199455376714468, -0.03614808991551399, 0.025330176576972008, 0.02990332432091236, -0.015789885073900223, -0.021920422092080116, -0.01979801058769226, 0.017193909734487534, -0.00864589586853981, 0.008164528757333755, 0.036820895969867706, -0.024106286466121674, -0.003392841899767518, 0.011892748065292835, -0.011995285749435425, 0.010899736545979977, 0.02168785035610199, -0.010585862211883068, -0.0034198362845927477, -0.01461117435246706, -0.030505498871207237, -0.009460963308811188, 0.00572454696521163, -0.018287135288119316, 0.015700705349445343, -0.058580271899700165, 0.0030332820024341345, 0.02750086411833763, 0.015869755297899246, 0.026282919570803642, -0.05237400531768799, -0.0722440704703331, -0.03582793101668358, -0.04085170105099678, 0.000687510531861335, 0.0034936729352921247, -0.019987761974334717, 0.028876211494207382, 0.03486347571015358, -0.034101296216249466, 0.012374688871204853, 0.038983821868896484, -0.04695941507816315, 0.005619753152132034, -0.0250450000166893, 0.06220494210720062, -0.01054180134087801, -0.05094117298722267, -0.056856051087379456, -0.007107142359018326, -0.005518932361155748, -0.005100633949041367, 0.0001513568131485954, 0.015972593799233437, -0.009152046404778957, 0.037553757429122925, 0.0407593697309494, 0.0023232928942888975, 0.031729526817798615, -0.04062042385339737, 0.01983167789876461, 0.05635105073451996, -0.003101075766608119, 0.018191548064351082, 0.02968696504831314, -0.05922374129295349, 0.025469793006777763, -0.024972600862383842, -0.050274431705474854, -0.030808208510279655, 0.015189297497272491, 0.012378240935504436, -0.023236818611621857, -0.041603051126003265, -0.017708007246255875, -0.016114816069602966, -0.03659135475754738, 0.014358481392264366, -0.005217813421040773, 0.027999144047498703, -0.008788050152361393, 0.00389143917709589, -0.034729667007923126, 0.041160956025123596, 0.005064473021775484, 0.01972980983555317, -0.02026098221540451, 0.04975183680653572, 0.012718108482658863, 0.026021866127848625, 0.01826627366244793, 0.04477846249938011, 0.02325133979320526, -0.0018774591153487563, 0.0030769570730626583, -0.01534872967749834, -0.025821911171078682, 0.028282523155212402, -0.028819987550377846, -0.03574109822511673, -0.041749026626348495, 0.021840928122401237, 0.008029365912079811, 0.04276695474982262, 0.034785959869623184, -0.029429161921143532, 0.040527500212192535, -0.026438681408762932, -0.043150100857019424, 0.019326236099004745, -0.06922200322151184, -0.018148239701986313, 0.028412556275725365, 0.006995649542659521, -0.012760806828737259, 0.007320903241634369, -0.025267355144023895, 0.017057163640856743, -0.003734486410394311, -0.029811162501573563, 0.0003048261860385537, 0.014120667241513729, 0.004761229734867811, 0.058066364377737045, -0.010602258145809174, 0.0021163595374673605, 0.0014889206504449248, 0.04559648409485817, -0.03533000871539116, -0.05180059373378754, 0.016750440001487732, -0.023089315742254257, 0.003281294833868742, 0.007493439596146345, -0.009004262275993824, 0.02032467909157276, -0.02409609965980053, -0.018595639616250992, -0.01027712319046259, 0.016639944165945053, 0.007276768796145916, 0.028173113241791725, -0.00039003221900202334, -0.020040767267346382, -0.04785924404859543, 0.029747355729341507, 0.004758915398269892, -0.018448136746883392, -0.03587308153510094, 0.08469761162996292, 0.028867654502391815, -0.006513581145554781, 0.04853858798742294, 0.012604034505784512, 0.03813287243247032, -0.01773560419678688, -0.005914123263210058, 0.004084103275090456, 0.03818563371896744, 0.0633026510477066, 0.021367551758885384, -0.014746027998626232, 0.04067273810505867, 0.044145163148641586, -0.0010564153781160712, -0.007413613144308329, 0.021796463057398796, 0.034480512142181396, -0.03986615315079689, 0.011209238320589066, -0.020769387483596802, -0.01436016894876957, 0.009254385717213154, -0.018515149131417274, 0.011797755025327206, -0.024740204215049744, -0.024220354855060577, -0.04417469725012779, -0.03629754111170769, 0.054036375135183334, -0.01569913513958454, -0.002810549922287464, 0.017963379621505737, 0.009646945632994175, -0.014907954260706902, 0.04187539592385292, -0.028808988630771637, 0.031155366450548172, 0.04268619790673256, 0.025798948481678963, -0.012273892760276794, 0.04879043623805046, -0.0007274172967299819, -0.0012561313342303038, -0.03721154108643532, -0.015577897429466248, -0.014582396484911442, -0.007461767643690109, -0.017196491360664368, 0.0016454411670565605, -0.025342710316181183, 0.00842620525509119, -0.0164140947163105, -0.019559811800718307, 0.054680366069078445, -0.04275360330939293, 0.010379048995673656, -0.027716990560293198, 0.029599228873848915, -0.031587790697813034, -0.012778247706592083, 0.004738691728562117, -0.0022221712861210108, -0.014796130359172821, 0.023852428421378136, 0.010227584280073643, 0.04875980690121651, 0.005399083718657494, 0.04630247503519058, -0.0016380748711526394, 0.004811994731426239, 0.04603373631834984, -0.026192232966423035, -0.04462282732129097, 0.025944529101252556, -0.020104071125388145, -0.07471899688243866, 0.023979773744940758, -0.04391017556190491, 0.003167260903865099, -0.017339054495096207, -0.00937011931091547, -0.013223893940448761, 0.05420433729887009, -0.024418581277132034, -0.03950663283467293, -0.006633657030761242, 0.02492743544280529, -0.05791668966412544, 0.04268600419163704, 0.007596985436975956, 0.032977450639009476, -0.02351488545536995, -0.010035545565187931, -0.025448264554142952, -0.033750269562006, 0.025286510586738586, -0.022156277671456337, 0.08132468909025192, -0.008177978917956352, -0.021352024748921394, -0.0324631966650486, -0.04565439745783806, -0.014271235093474388, 0.03904793784022331, -0.05168412998318672, -0.04488353431224823, 0.027077151462435722, 0.049730464816093445, 0.011991221457719803, 0.0245706494897604, -0.01778477057814598, 0.00904533639550209, 0.06492753326892853, 0.057286255061626434, 0.0016170931048691273, 0.030597148463129997, 0.03932205215096474, -0.006039577070623636, 0.01586732268333435, -0.05631313845515251, 0.022294024005532265, -0.03180277347564697, -0.014773769304156303, -0.03731271252036095, 0.04211815446615219, -0.011589290574193, -0.06301706284284592, 0.005768618546426296, 0.034892261028289795, 0.010478991083800793, -0.019880417734384537, -0.06861384958028793, -0.015630019828677177, -0.03447023034095764, -0.022116301581263542, -0.027930552139878273, 0.042941536754369736, 0.01649073325097561, 0.01251810323446989, -0.016482999548316002, -0.08116045594215393, 0.14033129811286926, 0.047395944595336914, 0.01292750146239996, -0.021759318187832832, 0.0071908943355083466, 0.062369368970394135, 0.004406913183629513, 0.005582882557064295, 0.00947652105242014, -0.016635064035654068, 0.06746874749660492, -0.02356095425784588, 0.05064140632748604, -0.01869737170636654, 0.04356202110648155, 0.05494517832994461, -0.040275733917951584, 0.03814755752682686, -0.015007734298706055, -0.03273813799023628, -0.027943802997469902, 0.018948493525385857, 0.003989758435636759, 0.029938580468297005, -0.020754920318722725, 0.015241268090903759, 0.024021362885832787, -0.04302828013896942, -0.02068052813410759, 0.006422789301723242, 0.0353340283036232, -0.036746639758348465, 0.02978566847741604, -0.037526585161685944, -0.026054376736283302, 0.05372758209705353, 0.008484366349875927, -0.02294326014816761, -0.03092462569475174, -0.008817795664072037, -0.03738762438297272, 0.009726437740027905, 0.025448068976402283, -0.05918656289577484, 0.016665475443005562, 0.036443714052438736, -0.045854948461055756, 0.033254168927669525, 0.0012236880138516426, -0.03039815090596676, 0.04877417907118797, -0.025937922298908234, 0.015576673671603203, -0.02663472667336464, -0.01954549178481102, 0.03715219348669052, 0.01633378118276596, -0.017662568017840385, -0.02875778265297413, -0.015413613989949226, 0.004344507586210966, 0.009244956076145172, -0.017907772213220596, 0.0021876327227801085, -0.03201522305607796, 0.044033829122781754, 0.0521753765642643, -0.006020591128617525, -0.012251929379999638, -0.029443534091114998, -0.007170569617301226, -0.0028548208065330982, -0.049234773963689804, -0.022208556532859802, 0.03167877718806267, 0.030296452343463898, -0.04908285662531853, 0.056405071169137955, 0.019458549097180367, -0.025240737944841385, -0.01677126996219158, -0.030999617651104927, -0.010455274023115635, -0.009448165073990822, 0.00021135130373295397, 0.05684595927596092, -0.04841618612408638, -0.030665146186947823, -0.018959714099764824, 0.041811928153038025, 0.05779647454619408, 0.03790491446852684, -0.038041166961193085, 0.027980446815490723, -0.012233968824148178 ]
Watch Bill O'Reilly Fail A Basic Statistics Class Whilst Discussing Weed Thu, Feb 2, 2012 at 10:46 AM The Dutch have lower levels of access to, and use of, cannabis among teens compared to Americans โ€” and it's not because they're winning some insane War on Mind Alteration. It's because Bill O'Reilly doesn't live there and bum everyone out. Below, O'Reilly dismisses the Dutch's lower cannabis use rates by acting like he doesn't understand how statistics work, then passing that idiocy onto his lovely viewers. From Sociological Images via Boing Boing: "Gretchen Carlson mentions that 40 percent of Americans in the U.S. report having ingested marijuana, compared to 22 percent of the Dutch. O'Reilly responds with shocking statistical illiteracy (or a willingness to assume the illiteracy of his viewers). Confusing percentages with whole numbers, he says: "The way they do the statistics in the Netherlands is different, plus its a much smaller country, it's a much smaller base to do the stats on."" And that's how you keep the Drug War going, y'all. ยซ Joan Rivers Gets Baked, Eats Mโ€ฆ | Drug War Budget Cuts Might Gutโ€ฆ ยป
[ 0.02320706658065319, -0.02168869599699974, -0.009112783707678318, 0.004779696464538574, -0.008161871694028378, -0.023087920621037483, 0.013174319639801979, 0.04534269496798515, -0.0041983420960605145, 0.051698192954063416, 0.06678222864866257, -0.0017522888956591487, 0.004615827463567257, -0.014813958667218685, -0.027005167677998543, -0.0024527490604668856, -0.0407588817179203, -0.04375000298023224, -0.015749122947454453, 0.012936580926179886, -0.007762387860566378, 0.010690320283174515, -0.03974136337637901, -0.0009402614086866379, -0.00976155512034893, 0.02631744183599949, 0.016615796834230423, -0.005922355223447084, 0.07350889593362808, 0.057408954948186874, -0.0022795340046286583, -0.05705912783741951, 0.021386781707406044, -0.0766964927315712, 0.009163129143416882, -0.034503087401390076, 0.044271618127822876, -0.029762567952275276, -0.029510250315070152, -0.0340382345020771, 0.0034354885574430227, -0.01046689972281456, 0.039497293531894684, -0.007845686748623848, -0.034292660653591156, -0.00189472537022084, -0.031151149421930313, -0.03683074191212654, 0.007976668886840343, 0.004596450831741095, 0.0073939720168709755, -0.03406403586268425, 0.014993248507380486, 0.0046686031855642796, 0.015644583851099014, 0.0038408534601330757, -0.000020568222680594772, 0.0015222703805193305, -0.024831194430589676, 0.03802138566970825, 0.036876577883958817, -0.003439535154029727, 0.005959691014140844, -0.07843132317066193, 0.019721200689673424, -0.024141985923051834, -0.03591228649020195, -0.006239605601876974, 0.017554836347699165, -0.02341361530125141, -0.0186111219227314, -0.0003397167311049998, -0.027207592502236366, -0.024728097021579742, -0.015232137404382229, -0.0019613534677773714, -0.008758556097745895, 0.04121944680809975, -0.006859496235847473, 0.049249157309532166, 0.02246602065861225, 0.04683087021112442, 0.012512780725955963, 0.025881998240947723, -0.03667258471250534, -0.03336039558053017, 0.01533735916018486, 0.0007235110970214009, 0.021586695685982704, 0.006232522428035736, 0.011606687679886818, 0.020001962780952454, -0.02017165906727314, -0.01973823457956314, 0.034669917076826096, 0.04116787016391754, -0.04644055292010307, 0.04093267768621445, 0.020776264369487762, -0.022909732535481453, 0.05493275076150894, 0.026110541075468063, -0.007368887774646282, 0.05542431399226189, -0.034905266016721725, -0.015648510307073593, 0.038330577313899994, 0.010747645050287247, -0.00043748406460508704, -0.043869707733392715, 0.00859488919377327, -0.03107735700905323, 0.01092877984046936, -0.0011701303301379085, -0.00986333005130291, 0.029785171151161194, -0.02254200167953968, 0.03886198624968529, -0.06304872781038284, 0.020406970754265785, -0.028607647866010666, -0.004933957476168871, 0.04785351827740669, -0.019035354256629944, 0.029197216033935547, -0.033303067088127136, -0.038967445492744446, 0.050520166754722595, -0.03341309353709221, -0.03374246880412102, 0.008290652185678482, -0.027187976986169815, -0.0023699926678091288, 0.0058311051689088345, -0.011886325664818287, 0.03203104808926582, 0.01877819001674652, 0.03536629304289818, 0.007227237336337566, -0.039349790662527084, 0.031627994030714035, 0.030775606632232666, -0.003656915156170726, 0.08102080225944519, 0.00012401858111843467, 0.02876560017466545, -0.011746187694370747, -0.02089773863554001, -0.012057985179126263, 0.03867277130484581, -0.0366586372256279, 0.003547176718711853, -0.030214445665478706, 0.0065359375439584255, -0.054010212421417236, -0.028390342369675636, 0.016278740018606186, -0.0006401895661838353, 0.000678811629768461, 0.0203512292355299, -0.023721421137452126, -0.004309618379920721, -0.015162850730121136, 0.049729716032743454, -0.013748264871537685, 0.056986480951309204, -0.0347423329949379, -0.005674179643392563, -0.024467024952173233, -0.029612388461828232, 0.03995675593614578, -0.022147811949253082, -0.013281837105751038, 0.0282836202532053, 0.04758680239319801, 0.05028783157467842, 0.033038124442100525, -0.014375919476151466, 0.04784742742776871, 0.03289584070444107, -0.026375234127044678, -0.012728461064398289, -0.02511521428823471, 0.06366594135761261, 0.000668090011458844, -0.016468439251184464, -0.0016620673704892397, -0.05357779189944267, -0.043193887919187546, -0.021310782060027122, 0.006792135536670685, 0.015523537062108517, -0.01502373069524765, 0.006172244902700186, 0.027422644197940826, 0.010399188846349716, -0.00977171491831541, 0.005612623877823353, 0.007129795383661985, -0.06846911460161209, -0.03923075273633003, 0.04703173786401749, -0.004248426295816898, 0.05848725512623787, -0.013400201685726643, -0.015927553176879883, 0.018814655020833015, 0.07310398668050766, -0.04837330803275108, -0.009627831168472767, 0.04183147847652435, 0.009822280146181583, -0.011349428445100784, -0.01759316399693489, -0.0003801881684921682, -0.019374661147594452, -0.022639574483036995, 0.04928991198539734, -0.001121623208746314, -0.012103435583412647, 0.009709365665912628, 0.02048056572675705, 0.051822371780872345, 0.05899599567055702, 0.02153174765408039, -0.018991507589817047, 0.0024577646981924772, 0.05730564892292023, -0.04829039052128792, 0.005345756653696299, -0.012740718200802803, 0.06266777962446213, 0.005318398121744394, 0.03651794046163559, 0.02445313334465027, 0.00515438849106431, 0.06746713072061539, 0.0181463323533535, 0.007013888563960791, 0.030403804033994675, -0.0013133316533640027, 0.030780473724007607, 0.017628103494644165, 0.01264957431703806, 0.018029775470495224, 0.02102825604379177, -0.019227659329771996, 0.020632654428482056, 0.007193475496023893, 0.030877307057380676, -0.0074507067911326885, 0.05162954702973366, 0.04754035174846649, 0.04088519141077995, -0.022810814902186394, 0.0002363245002925396, 0.039579782634973526, 0.05628425255417824, -0.03970964625477791, -0.028227750211954117, -0.029930997639894485, 0.008631965145468712, -0.004664852749556303, -0.008102747611701488, -0.004750858061015606, 0.0002977416443172842, -0.0027654569130390882, 0.04444032907485962, -0.009538947604596615, -0.0070989737287163734, -0.03674187883734703, -0.06279921531677246, -0.052711937576532364, -0.052179187536239624, -0.05174143239855766, 0.00840317364782095, 0.011995363049209118, -0.03689182177186012, 0.019472796469926834, -0.015590416267514229, -0.015601296909153461, -0.0033242309000343084, 0.014374016784131527, 0.09150394797325134, 0.01021091639995575, 0.04525534063577652, -0.014451616443693638, 0.07754035294055939, 0.002439426025375724, 0.008570568636059761, -0.011689919047057629, -0.02044500969350338, -0.011935380287468433, 0.005668688099831343, 0.019540635868906975, 0.008709939196705818, -0.006634045857936144, 0.010190515778958797, -0.014822373166680336, -0.04752412438392639, -0.012814458459615707, -0.01809091307222843, -0.0020540026016533375, 0.00065775983966887, -0.02913198433816433, 0.04668392241001129, 0.043646469712257385, -0.03444064408540726, 0.050089046359062195, 0.03929201886057854, -0.03294430300593376, 0.01806684397161007, 0.026230504736304283, 0.029153544455766678, -0.050601642578840256, 0.055375900119543076, 0.03359876945614815, 0.0178284402936697, -0.02216937765479088, 0.014517317526042461, -0.03474884852766991, -0.042076900601387024, 0.0061141387559473515, -0.009679523296654224, -0.037065550684928894, 0.031373150646686554, 0.019818158820271492, -0.08585698902606964, 0.03859070688486099, -0.05224931240081787, -0.041661206632852554, -0.021951232105493546, -0.06743708997964859, 0.028641192242503166, 0.028631044551730156, -0.008227857761085033, -0.014879018999636173, -0.020726928487420082, -0.03358927741646767, 0.009040587581694126, 0.04861309006810188, -0.017651239410042763, 0.0018904923927038908, 0.029747871682047844, 0.03645995631814003, 0.051063910126686096, 0.0028014557901769876, 0.021711714565753937, 0.00990111380815506, -0.008412403054535389, 0.025137867778539658, 0.02561488188803196, 0.051676832139492035, 0.013167641125619411, 0.016651125624775887, 0.03964375704526901, -0.02274348959326744, -0.008532335981726646, 0.02598492056131363, -0.020276082679629326, 0.029294287785887718, -0.0012610546546056867, 0.018968140706419945, -0.004835500381886959, -0.030168266966938972, -0.061892878264188766, 0.038585349917411804, -0.012503248639404774, 0.05826624110341072, -0.07769138365983963, 0.04956931248307228, -0.0031572768930345774, -0.010845031589269638, 0.028270099312067032, -0.04647092521190643, -0.009838233701884747, 0.03063233382999897, -0.033950746059417725, 0.02860463224351406, -0.05044225975871086, 0.0010199074167758226, -0.0227885190397501, 0.01197577640414238, 0.0488906130194664, 0.033577609807252884, 0.023753272369503975, -0.0409722626209259, -0.036787617951631546, 0.004523017443716526, -0.027500169351696968, -0.0028601379599422216, -0.039329830557107925, -0.006358441896736622, -0.02397279068827629, -0.04502738267183304, -0.05428814888000488, 0.02636137418448925, 0.02708258293569088, 0.04944607987999916, 0.0038943146355450153, 0.03896307945251465, -0.026461418718099594, 0.01866460032761097, 0.04582159221172333, -0.004844954703003168, -0.038760311901569366, -0.039482079446315765, 0.0373125895857811, 0.022371171042323112, -0.05318528041243553, -0.003615381894633174, 0.0011248041409999132, -0.023098953068256378, 0.0008987558539956808, 0.011609142646193504, -0.0021651217248290777, -0.023749642074108124, 0.00658807810395956, -0.01679224893450737, 0.009420270100235939, -0.025402922183275223, -0.019535347819328308, -0.018384721130132675, 0.049672581255435944, 0.04357287660241127, -0.05911942571401596, -0.015529640018939972, -0.038214195519685745, 0.06649015843868256, 0.05426022410392761, -0.0017148037441074848, -0.04214741289615631, -0.05607470124959946, -0.03958559036254883, -0.032972801476716995, -0.018881507217884064, 0.0514434389770031, -0.0003033897955901921, 0.01374913938343525, -0.029947329312562943, 0.015651078894734383, 0.03373486176133156, 0.011670852079987526, -0.021212343126535416, 0.022658519446849823, 0.04041818529367447, -0.015859093517065048, 0.035573434084653854, -0.007030175533145666, -0.045837439596652985, 0.022282550111413002, -0.058697983622550964, 0.017956072464585304, 0.002435973845422268, -0.015120599418878555, -0.0026052729226648808, 0.03483955189585686, 0.020737098529934883, 0.04001406580209732, -0.016751525923609734, 0.00736140925437212, -0.01611238345503807, 0.01800958253443241, -0.03820085898041725, -0.03512104973196983, 0.05831962823867798, 0.012794884853065014, -0.03433053195476532, 0.03758012130856514, 0.0493575744330883, 0.0022765060421079397, 0.017448222264647484, 0.00796341709792614, -0.0432698056101799, 0.041699644178152084, 0.011648611165583134, 0.021902624517679214, -0.011664442718029022, -0.049023792147636414, 0.011276555247604847, -0.010925844311714172, 0.020022640004754066, 0.001267848419956863, -0.0348690003156662, -0.011762334033846855, -0.07987888157367706, -0.0024664276279509068, 0.005120862741023302, -0.058946218341588974, 0.010411671362817287, 0.00458701653406024, -0.0033438534010201693, -0.013456176966428757, -0.027038222178816795, -0.01740993745625019, 0.01334419846534729, -0.02607383392751217, -0.0070309871807694435, 0.005828842055052519, 0.014817369170486927, 0.015336931683123112, -0.020984036847949028, -0.05596460402011871, 0.0007929179118946195, -0.0073893992230296135, -0.04151444509625435, -0.02908601611852646, 0.0384475477039814, -0.0036681850906461477, -0.007509651128202677, -0.019461749121546745, -0.0046316590160131454, -0.002388807013630867, 0.039217960089445114, -0.0004399823083076626, -0.01947646588087082, 0.017543645575642586, -0.009149505756795406, -0.01782926544547081, 0.08473517000675201, -0.0006972801056690514, -0.04820363596081734, -0.027660327032208443, 0.020820723846554756, -0.030229583382606506, 0.038677897304296494, -0.001783593324944377, -0.04318283125758171, -0.05669249966740608, -0.05378415435552597, -0.007636142894625664, -0.030107367783784866, -0.023201150819659233, -0.033627063035964966, 0.0008650915697216988, -0.025443077087402344, 0.05468039959669113, 0.002549997065216303, -0.014997679740190506, 0.0242939293384552, -0.012498040683567524, -0.008641699329018593, -0.020718028768897057, -0.02813871018588543, 0.005523576866835356, -0.01690487749874592, -0.012278049252927303, 0.022512465715408325, 0.009570010006427765, 0.008399838581681252, 0.00398532347753644, 0.015400160104036331, 0.006377561949193478, -0.020797595381736755, -0.03481718525290489, -0.039033450186252594, -0.005975732114166021, 0.014228583313524723, 0.013849381357431412, -0.010409686714410782, -0.052996404469013214, 0.05776936560869217, -0.043588101863861084, 0.0061644925735890865, -0.019475067034363747, -0.017938941717147827, -0.010170165449380875, 0.003131544217467308, 0.05199082940816879, -0.011141931638121605, 0.004323741886764765, -0.024265654385089874, 0.023372583091259003, 0.050270672887563705, -0.029508912935853004, -0.039968304336071014, -0.020525187253952026, -0.021742772310972214, -0.05624039098620415, 0.03604859113693237, -0.03493642807006836, -0.017837826162576675, -0.047843191772699356, -0.017898276448249817, 0.04327806085348129, -0.02517101541161537, 0.06288927793502808, 0.04348602145910263, 0.010915207676589489, -0.00966111570596695, -0.006624647416174412, 0.05170383304357529, 0.015315256081521511, -0.028095867484807968, -0.0029262732714414597, -0.03250475227832794, -0.03028159588575363, 0.0021238659974187613, -0.04793496057391167, -0.002825134200975299, -0.04334394633769989, -0.018224922940135002, 0.07468599081039429, -0.0011101702693849802, 0.004851777106523514, -0.003415206912904978, -0.0668821707367897, -0.05159679427742958, 0.028104720637202263, 0.021996144205331802, 0.04127500206232071, 0.049306679517030716, -0.004729223437607288, -0.021144170314073563, 0.030723387375473976, 0.015937460586428642, -0.01946774497628212, -0.04761229828000069, 0.060114536434412, -0.0035525262355804443, -0.035205379128456116, 0.041869912296533585, 0.03180563449859619, -0.048197902739048004, -0.03861197084188461, 0.0059645758010447025, -0.036120522767305374, -0.0035230019129812717, -0.015666700899600983, 0.013259002938866615, -0.0029693313408643007, -0.025250017642974854, 0.01309234369546175, 0.01680099405348301, -0.01629585586488247, 0.027089834213256836, -0.017292099073529243, 0.04466027021408081, -0.0371951088309288, 0.01797296106815338, 0.0363534577190876, -0.02038411982357502, -0.018138324841856956, -0.027873564511537552, -0.0076910038478672504, 0.027466734871268272, -0.008699211291968822, 0.04827173054218292, -0.04964201897382736, -0.025147628039121628, 0.031138021498918533, -0.010184787213802338, 0.019184531643986702, 0.001505785621702671, -0.010643785819411278, 0.02150091528892517, -0.03461195528507233, -0.02284381166100502, -0.04672522842884064, 0.025819458067417145, -0.031005220487713814, 0.04973885416984558, -0.04616266116499901, 0.0065608820877969265, 0.01929488405585289, 0.02470715343952179, -0.005429033190011978, -0.03334308788180351, -0.048416487872600555, -0.0366005040705204, -0.07549560815095901, -0.03342859074473381, -0.013433922082185745, 0.0035503413528203964, 0.03996437042951584, 0.01818564534187317, -0.03920024633407593, 0.008299645036458969, 0.00927591323852539, -0.01922154612839222, 0.002418563002720475, -0.02489285171031952, 0.04863117262721062, -0.0373220331966877, -0.02484346739947796, -0.03576405718922615, -0.03462095931172371, 0.00020386718097142875, 0.009043145924806595, -0.0028944588266313076, 0.047550853341817856, 0.016031160950660706, 0.03953424468636513, 0.05887233093380928, 0.010170151479542255, -0.03922167047858238, -0.06948874145746231, -0.005806689616292715, 0.026682276278734207, -0.025335120037198067, 0.02167901024222374, 0.031000332906842232, -0.04006327688694, 0.0031975943129509687, -0.017598193138837814, -0.010511393658816814, 0.0039155310951173306, 0.030827831476926804, -0.010847593657672405, 0.028538653627038002, -0.039459314197301865, -0.038399748504161835, -0.019202372059226036, -0.03261983022093773, 0.013498318381607533, -0.022917428985238075, 0.013837525621056557, -0.008690203540027142, -0.020637966692447662, 0.022966235876083374, 0.06183215230703354, 0.002632558811455965, 0.055680278688669205, 0.01188808586448431, 0.011884748935699463, 0.010589242912828922, 0.009428558871150017, 0.025090964511036873, 0.00952752772718668, -0.002296535298228264, -0.02176119200885296, -0.0047834403812885284, 0.03327418863773346, -0.024586202576756477, 0.008186593651771545, -0.01587471179664135, -0.040180105715990067, -0.013754112645983696, 0.021906694397330284, -0.004814891144633293, 0.06294946372509003, 0.015611743554472923, -0.016515785828232765, 0.016635185107588768, -0.041721995919942856, -0.04073174670338631, 0.02167874202132225, -0.0902005210518837, 0.01003146544098854, 0.041372526437044144, -0.04230430722236633, 0.009585213847458363, 0.006163491867482662, -0.04056843742728233, -0.024724802002310753, -0.014619757421314716, 0.00036632921546697617, -0.022342786192893982, 0.051873743534088135, 0.002880699932575226, 0.04189743474125862, 0.007002128753811121, -0.013033718802034855, 0.011777629144489765, 0.04864949360489845, -0.040976278483867645, -0.03146318718791008, 0.0007325197802856565, 0.05630233511328697, 0.0492560938000679, 0.0020733331330120564, -0.02947969175875187, -0.02461477555334568, 0.004149116575717926, -0.0020716977305710316, 0.010419201105833054, -0.006450568325817585, 0.021655220538377762, 0.018250130116939545, 0.0027915723621845245, 0.00571523979306221, -0.038815438747406006, 0.04373318701982498, -0.010665147565305233, -0.027447901666164398, -0.027465911582112312, 0.05881502851843834, 0.0644056499004364, -0.022468682378530502, 0.021270042285323143, 0.010313152335584164, 0.02425147220492363, -0.019258756190538406, 0.025991134345531464, 0.009183277375996113, 0.06557073444128036, 0.04996824637055397, 0.0361560583114624, 0.0120706083253026, 0.010837207548320293, 0.09154458343982697, -0.03340120241045952, 0.024788271635770798, 0.011216015554964542, -0.0004593887133523822, 0.0016486431704834104, -0.01052228081971407, -0.03055592067539692, 0.015179322101175785, 0.036602575331926346, -0.016925344243645668, -0.002758490387350321, -0.022976677864789963, -0.004093810450285673, 0.0032661615405231714, -0.01151974592357874, 0.07232895493507385, -0.06253274530172348, 0.013760484755039215, -0.002307985443621874, 0.016126273199915886, 0.0047985571436584, 0.0424908809363842, -0.0081838583573699, 0.010075175203382969, 0.04377148300409317, 0.011093229055404663, -0.01933746039867401, 0.020032642409205437, 0.011408934369683266, 0.013617563992738724, -0.049793485552072525, 0.042097341269254684, 0.015802616253495216, -0.010888393968343735, -0.027692236006259918, 0.016222557052969933, -0.05221860483288765, 0.036465127021074295, -0.0019896188750863075, 0.00825322326272726, 0.05393962934613228, -0.026766719296574593, -0.01089219655841589, -0.05495060980319977, 0.04655802249908447, -0.029384812340140343, -0.008741656318306923, 0.024946583434939384, -0.021832255646586418, -0.013830244541168213, 0.015314820222556591, -0.013360604643821716, 0.05416868254542351, -0.017469245940446854, 0.04402187094092369, 0.009254805743694305, 0.05563495680689812, 0.060511913150548935, -0.002878062194213271, -0.02083509974181652, 0.006143171805888414, -0.011896824464201927, -0.022410335019230843, -0.0381256528198719, -0.031942013651132584, -0.005315231159329414, 0.010840523056685925, -0.024055056273937225, -0.0273431409150362, 0.026818418875336647, -0.019810397177934647, -0.03468233346939087, -0.006129472516477108, 0.026903856545686722, -0.041093647480010986, -0.016473909839987755, 0.015195568092167377, 0.024701859802007675, -0.00233655096963048, -0.02228550985455513, -0.02452513761818409, -0.004847031552344561, 0.005794875789433718, -0.011321542784571648, 0.04341708496212959, -0.0156552717089653, -0.0380270816385746, -0.026943201199173927, -0.06267604231834412, -0.04381642863154411, 0.01635139249265194, -0.025155119597911835, -0.050757549703121185, 0.03379997983574867, 0.02582521364092827, 0.010220208205282688, 0.017830049619078636, -0.024466827511787415, 0.006591595243662596, 0.01738402061164379, 0.04153990000486374, -0.029583947733044624, 0.002646851586177945, 0.01718173921108246, -0.016599837690591812, 0.03527378290891647, -0.017254315316677094, 0.02514621987938881, -0.021490631625056267, -0.02031812071800232, -0.04744156822562218, 0.03784297779202461, -0.030015818774700165, -0.07163000851869583, 0.0119255306199193, 0.006791092921048403, 0.008420153521001339, -0.03277723118662834, -0.08677251636981964, -0.01450074277818203, -0.012574558146297932, 0.01802954077720642, -0.02722407877445221, 0.03516165167093277, -0.0011413258034735918, 0.008646028116345406, 0.017202680930495262, -0.05861886218190193, 0.13501539826393127, 0.024089718237519264, 0.027065258473157883, 0.007607503328472376, 0.04064295068383217, 0.02021319419145584, 0.030826963484287262, -0.034491702914237976, 0.028565652668476105, -0.017374875023961067, 0.015660954639315605, -0.009240375831723213, 0.011762101203203201, 0.010132323019206524, 0.03039805218577385, 0.04687837138772011, -0.0412103533744812, -0.01533230859786272, 0.03675876185297966, -0.015527299605309963, -0.04111471399664879, -0.0060300943441689014, 0.014916193671524525, 0.014717839658260345, -0.0012738611549139023, -0.002964733401313424, 0.01223065983504057, -0.07634785771369934, -0.003068057121708989, -0.025259971618652344, 0.043462034314870834, -0.0687849223613739, 0.05062371492385864, -0.026800131425261497, -0.04838194325566292, 0.038415390998125076, -0.0031170037109404802, -0.04084093123674393, 0.0330188050866127, -0.007892835885286331, -0.024879686534404755, -0.0005097027169540524, 0.04290467128157616, -0.019728854298591614, 0.013909440487623215, 0.03152796998620033, -0.050490107387304306, 0.018319498747587204, 0.031106440350413322, -0.03197147697210312, 0.05427657440304756, -0.0459422804415226, 0.03550560027360916, 0.0005427363212220371, -0.007940489798784256, 0.013472971506416798, 0.044443096965551376, -0.02128632180392742, 0.026956867426633835, 0.02056541107594967, 0.04275630787014961, -0.027663903310894966, 0.0039049717597663403, -0.0005833925679326057, -0.0069121322594583035, -0.012332008220255375, 0.019198639318346977, -0.013443413190543652, -0.01359929982572794, -0.006833423860371113, -0.017511481419205666, 0.008206225000321865, -0.02462703548371792, -0.0474943108856678, 0.04869087040424347, 0.0422549694776535, -0.04675763472914696, 0.025226717814803123, -0.0040060244500637054, -0.031220650300383568, -0.020895931869745255, -0.04337913170456886, 0.0012190531706437469, -0.004885555244982243, 0.018054138869047165, 0.03572641685605049, -0.03209398686885834, -0.023825176060199738, -0.014386055991053581, 0.02005452662706375, 0.05728470906615257, 0.013177133165299892, -0.008245567791163921, -0.02584286406636238, 0.01703030988574028 ]
Wisdom of Life.: Are you a gentleman to ladies? I am glad my good friend, Fariza has finally found her ideal partner, a Caucasian and not a Malaysian. She had married once, many lovers and all are local males. Not one could really make her happy in love. Until she brought up her courage to fall in love with a foreigner who is of different culture and faith. I agreed with Fariza, most of our men here are not true gentlemen. In the first place, we are not as romantic as what we claimed. Perhaps romantic to us might be just the few moment on bed and after that, we lost the loving care and attention towards our ladies in attendance. Can't blame our women, they are afraid to fall in love with the courting men, who are inconsiderate! The other weaknesses i personally observed, most of us are arrogance with high ego, especially after falling in love with their ladies. We are selfish and ungenerous, especially on financial matters. Go to the restaurants and observe yourself. Over at the cashier counter, you would notice all bills are shared by their friends. The male has no courtesy to pay for the females, unless he has benefit over the companies. Sometimes even young lovers insist to share their expenses, for every single cent counts. We have not learned the pride to pay for another friend, more so for females. Thanks God! I never allow ladies to pay whenever they are with me. On tipping! We are really bad. We expect high and efficient services but we shy away on tipping. Not only are the men, the ladies are equally the same. I hope my little darling has learned to tip and appreciate those who rendered service to her. Unless we, the males are prepared to change our attitude and approach, we wound never be considered as true gentleman like this Caucasian. Most important, i hope...i had been a gentleman to you too when you were here last.
[ 0.006876982282847166, -0.008649483323097229, -0.025581620633602142, -0.0009995835134759545, -0.037152089178562164, -0.01196441613137722, 0.03208332136273384, 0.045476291328668594, 0.008908716030418873, 0.006845688913017511, 0.03558969497680664, 0.008937478065490723, 0.00294976937584579, -0.022700000554323196, -0.035214949399232864, -0.01658725179731846, -0.016896914690732956, -0.0177658349275589, -0.006186485756188631, -0.009692476131021976, 0.005521682556718588, 0.003945269621908665, -0.0600535087287426, 0.009694157168269157, -0.007603683043271303, 0.061518099159002304, 0.029252445325255394, 0.026072731241583824, 0.06465514004230499, 0.06274084001779556, -0.00787338800728321, 0.011894090101122856, 0.007853970862925053, -0.03903181478381157, -0.008483613841235638, -0.032796088606119156, 0.0005899919779039919, -0.016847793012857437, -0.025826958939433098, -0.04438958317041397, 0.005182159133255482, 0.01258385181427002, 0.055155619978904724, -0.00935205165296793, -0.04164903238415718, 0.004899941384792328, -0.006074118427932262, -0.039613790810108185, -0.008252064697444439, -0.025163525715470314, 0.013086914084851742, -0.03936553746461868, 0.002714940346777439, 0.02072015218436718, 0.0002895340439863503, 0.018249258399009705, -0.006247545126825571, 0.0033596374560147524, -0.021796690300107002, 0.05253801494836807, 0.018147896975278854, 0.04191921278834343, -0.0072024427354335785, -0.05685243755578995, 0.02687978185713291, 0.022987347096204758, -0.001547457417473197, 0.013862336985766888, 0.018904125317931175, -0.007715915329754353, -0.0006076990975998342, 0.0017773390281945467, 0.01639494299888611, -0.012884399853646755, -0.039347533136606216, -0.01335509680211544, 0.0003101886832155287, 0.0023654019460082054, 0.013589907437562943, -0.009954606182873249, 0.034909721463918686, 0.043570395559072495, 0.006363836117088795, 0.017467670142650604, -0.0675092488527298, -0.012029076926410198, 0.02433909848332405, 0.07282581180334091, 0.003418323118239641, -0.011646960861980915, 0.007996315136551857, 0.07342653721570969, 0.002946300432085991, 0.0037057078443467617, 0.05844390019774437, 0.03855755925178528, -0.02107868157327175, 0.02300616353750229, -0.006735297851264477, -0.010603261180222034, 0.026741325855255127, 0.020474053919315338, -0.0013673026114702225, 0.052524518221616745, -0.06404981762170792, -0.009407490491867065, 0.002781905932351947, 0.004673071671277285, 0.016033219173550606, -0.014940259046852589, 0.013606471009552479, -0.022837147116661072, -0.008480161428451538, 0.014077965170145035, -0.013152392581105232, 0.04780904948711395, -0.005226098466664553, 0.03157418966293335, -0.028716210275888443, -0.007308298256248236, 0.032523609697818756, 0.022928068414330482, 0.04184603691101074, -0.000908426009118557, 0.033761344850063324, -0.06498287618160248, -0.0003096408909186721, 0.021896304562687874, -0.03247547522187233, -0.0074364179745316505, 0.018168829381465912, -0.012979407794773579, 0.0069776661694049835, 0.0002057901001535356, 0.0016872858395799994, 0.016239147633314133, -0.011521250009536743, 0.04798248037695885, 0.0055503277108073235, -0.056819312274456024, 0.060515012592077255, 0.03813910484313965, 0.016225866973400116, 0.09258847683668137, 0.004116267431527376, 0.0037944684736430645, 0.014484810642898083, -0.0011056605726480484, -0.026308391243219376, 0.02855391427874565, -0.0332549586892128, 0.026469137519598007, -0.012633146718144417, 0.02743491716682911, 0.007417668122798204, -0.04612473025918007, 0.023897653445601463, 0.0049698734655976295, 0.04461303725838661, 0.013845245353877544, -0.04732548072934151, -0.01641649752855301, -0.013054334558546543, 0.05205133557319641, 0.015170974656939507, 0.046051084995269775, -0.026239102706313133, -0.020952686667442322, 0.011805660091340542, -0.034256402403116226, 0.04214010760188103, -0.004469292238354683, -0.026094580069184303, 0.010161860845983028, 0.016777534037828445, 0.051835425198078156, 0.014608209952712059, -0.01173018291592598, -0.0047963508404791355, 0.03353673964738846, -0.0171840600669384, 0.025246741250157356, 0.001553329173475504, 0.05626102536916733, 0.005627681501209736, -0.01187346875667572, 0.026099402457475662, -0.03895043954253197, -0.05447053909301758, -0.02490653283894062, -0.014272935688495636, 0.03223802149295807, -0.02680906094610691, 0.039583057165145874, 0.017853576689958572, 0.038805510848760605, -0.04193812236189842, -0.01118188165128231, -0.0014799287309870124, -0.05798840895295143, -0.018937431275844574, 0.054627932608127594, -0.040454328060150146, 0.060662779957056046, 0.010093409568071365, -0.03177092224359512, -0.019483882933855057, 0.06007655709981918, -0.03977830708026886, -0.00030817341757938266, 0.02954476699233055, 0.024428296834230423, -0.035970792174339294, -0.03621430695056915, 0.009003076702356339, -0.015463818795979023, -0.026834899559617043, 0.03125897794961929, -0.035269469022750854, 0.002652360824868083, 0.034722741693258286, 0.011964231729507446, 0.009951273910701275, -0.0003713399637490511, -0.008927928283810616, -0.025044267997145653, -0.014705396257340908, 0.038403864949941635, -0.041828904300928116, -0.012575657106935978, -0.022949093952775, 0.050892915576696396, 0.011459161527454853, 0.055125635117292404, 0.054514504969120026, 0.03594063222408295, 0.013304471038281918, 0.054421715438365936, 0.017465028911828995, 0.029801668599247932, -0.007736995816230774, 0.04989433288574219, 0.032154630869627, 0.04246492311358452, -0.04558703303337097, 0.031793560832738876, 0.016918044537305832, -0.006557976361364126, -0.0035298033617436886, 0.043390579521656036, 0.016211722046136856, 0.03857302665710449, 0.02742982655763626, 0.06616023927927017, -0.03463834151625633, 0.035549744963645935, 0.05508501082658768, 0.057335928082466125, -0.0054816496558487415, -0.053581610321998596, -0.006788336206227541, 0.008263763971626759, -0.0014150784118101, 0.0037464809138327837, 0.046639904379844666, 0.008700103498995304, 0.006516740191727877, 0.017148124054074287, -0.021486397832632065, -0.05950583145022392, -0.038097530603408813, -0.04474040865898132, -0.028601406142115593, -0.021127410233020782, -0.031109072268009186, -0.006199702154844999, 0.033449143171310425, -0.03865113481879234, 0.026947250589728355, 0.010437117889523506, -0.038502443581819534, -0.03879684582352638, -0.023329012095928192, 0.03551348298788071, 0.02006813883781433, 0.037175875157117844, -0.03274497389793396, 0.0275939479470253, 0.03482871502637863, 0.05311412736773491, -0.031975895166397095, -0.02272086776793003, -0.024899961426854134, -0.01940094865858555, 0.037537723779678345, -0.011498183012008667, 0.009062636643648148, -0.017299268394708633, -0.07149139791727066, -0.05949264392256737, 0.009348222054541111, -0.0010854336433112621, -0.021747974678874016, 0.009108545258641243, -0.0376770943403244, -0.0012438268167898059, 0.03358875587582588, -0.02584301307797432, 0.033006247133016586, 0.058666061609983444, -0.043521471321582794, 0.010380582883954048, 0.03568539768457413, 0.014118709601461887, -0.042930968105793, 0.06164267286658287, 0.042968928813934326, 0.016301820054650307, -0.03324627876281738, -0.01999848708510399, -0.039044339209795, -0.008944202214479446, 0.03582671284675598, -0.0029763069469481707, -0.033019497990608215, 0.009496702812612057, 0.03700123354792595, -0.07230651378631592, 0.026918821036815643, -0.029517047107219696, -0.03615959361195564, -0.008004358038306236, -0.047093186527490616, 0.04229981079697609, 0.0227665975689888, 0.010713543742895126, 0.022872090339660645, -0.021165532991290092, -0.0016074100276455283, -0.0030440399423241615, 0.021624060347676277, -0.02968532033264637, -0.003424089401960373, 0.05378926917910576, -0.016727106645703316, 0.009645253419876099, 0.018341518938541412, -0.0434398353099823, -0.01475071907043457, -0.005749862175434828, -0.004241214133799076, -0.006128703709691763, 0.014295397326350212, -0.002219469053670764, -0.007735677529126406, 0.06960684061050415, -0.007326530758291483, -0.02029999904334545, 0.0212933961302042, -0.011421680450439453, -0.013583119958639145, 0.03386295214295387, 0.015280431136488914, -0.012035688385367393, -0.02265312522649765, -0.04636946693062782, 0.02449270524084568, 0.0016645834548398852, 0.061808452010154724, -0.03184005990624428, 0.0865778923034668, -0.0175743717700243, -0.0450575090944767, 0.03666149079799652, -0.04959816858172417, 0.03906737640500069, 0.05199200659990311, -0.025213781744241714, 0.017594238743185997, -0.04096515476703644, 0.02509327046573162, -0.024676544591784477, -0.007674161810427904, 0.04724282771348953, -0.01683470420539379, 0.024412119761109352, -0.034074291586875916, -0.02948116324841976, -0.022162051871418953, -0.029527034610509872, -0.00534399226307869, 0.001218488090671599, 0.014029625803232193, 0.005306604318320751, -0.030557459220290184, -0.0701969787478447, 0.03577060252428055, -0.0065719252452254295, 0.016079919412732124, -0.00281265820376575, 0.04183080792427063, 0.011698274873197079, 0.02633073180913925, 0.06416004151105881, -0.020105136558413506, 0.02495252713561058, -0.02256801724433899, 0.02752215974032879, 0.02967156283557415, -0.0407596230506897, -0.022223936393857002, -0.03858406841754913, 0.0025221046525985003, 0.03413331136107445, 0.02326919138431549, -0.03826826065778732, -0.0329977385699749, 0.039859745651483536, -0.006501289550215006, 0.029274851083755493, -0.041821882128715515, -0.04576693847775459, 0.012072465382516384, 0.04377549886703491, 0.008230488747358322, -0.0461236871778965, 0.0055739604867994785, -0.019099034368991852, 0.04293614998459816, 0.02610168233513832, 0.00230424921028316, -0.05458623915910721, -0.013794896192848682, -0.012709198519587517, -0.03646983951330185, -0.025242192670702934, 0.041052497923374176, -0.0010586832650005817, -0.0010324439499527216, -0.04608356952667236, 0.041642505675554276, 0.042537640780210495, 0.02536335028707981, 0.02036689966917038, -0.019770026206970215, 0.0236121267080307, -0.009905154816806316, 0.05659946799278259, -0.015404345467686653, -0.019298307597637177, 0.050926513969898224, -0.05256970226764679, 0.007515904027968645, 0.0024088367354124784, -0.005612456705421209, -0.018489805981516838, -0.010690564289689064, 0.016180530190467834, 0.04370100423693657, -0.019566770642995834, 0.012187870219349861, 0.0034480020403862, 0.028939953073859215, -0.022170577198266983, -0.06132010743021965, 0.03430880606174469, 0.007183992303907871, -0.049536559730768204, 0.006653171963989735, 0.03888329118490219, -0.014668643474578857, 0.007611011154949665, -0.0005415946361608803, -0.03885943442583084, 0.039715129882097244, -0.046058107167482376, 0.01258226577192545, -0.006373343989253044, -0.019349098205566406, -0.0027809133753180504, -0.04518912732601166, 0.0002935937081929296, 0.014300930313766003, -0.03177690505981445, -0.053113795816898346, -0.06789980083703995, -0.02158745564520359, -0.0017662658356130123, -0.009612621739506721, 0.011686981655657291, 0.008561280556023121, -0.017680669203400612, -0.02988085336983204, 0.0036597191356122494, 0.03058190643787384, -0.010467714630067348, -0.024280136451125145, 0.0030407176818698645, -0.007008023094385862, 0.010873165912926197, 0.018356408923864365, -0.016661088913679123, -0.005526087246835232, -0.005707879085093737, -0.021848224103450775, -0.022690128535032272, -0.03750528395175934, 0.01195297297090292, -0.02753438614308834, -0.010817077942192554, -0.036472734063863754, -0.00795383658260107, -0.013009387999773026, -0.017591267824172974, 0.021555019542574883, 0.009334923699498177, 0.011547100730240345, 0.0023513988126069307, -0.04195302352309227, 0.03970637544989586, 0.022092703729867935, -0.048773858696222305, -0.003974745515733957, 0.03219842165708542, 0.016040340065956116, 0.06825776398181915, -0.0016431884141638875, -0.04008810222148895, -0.05675134435296059, -0.0597657635807991, -0.00977261085063219, -0.0367259681224823, -0.05234659090638161, -0.04889024794101715, -0.0015734133776277304, -0.01075399573892355, 0.05641337111592293, -0.023071615025401115, 0.007899759337306023, -0.018118953332304955, -0.07568573206663132, 0.02511502616107464, -0.02317894622683525, -0.016441332176327705, -0.028812022879719734, 0.018662691116333008, -0.03296249359846115, 0.05683044716715813, -0.019174495711922646, 0.03356044739484787, -0.011524726636707783, 0.006221936084330082, 0.027927903458476067, -0.018584012985229492, -0.02983779087662697, -0.05455717071890831, -0.014136658050119877, 0.01564403809607029, -0.02347826398909092, 0.022701216861605644, -0.03348366543650627, 0.03604349493980408, -0.04661453515291214, 0.005266235210001469, -0.01880812831223011, 0.001801606034860015, -0.006613945122808218, -0.03543119505047798, 0.06854936480522156, -0.027120621874928474, 0.0019677940290421247, -0.036606401205062866, 0.02442942187190056, 0.0336749292910099, -0.01192360557615757, -0.04938672110438347, -0.00859411247074604, -0.05882006511092186, -0.0541616789996624, 0.036167219281196594, -0.020514437928795815, 0.001029551844112575, -0.036341629922389984, 0.0009840726852416992, 0.03546716272830963, -0.019875837489962578, 0.03712684288620949, 0.039614446461200714, -0.020699704065918922, -0.022640664130449295, -0.0493902862071991, 0.02742878347635269, 0.04089268296957016, -0.015576082281768322, -0.02003561705350876, -0.01988995261490345, -0.04092518985271454, 0.003119892440736294, -0.03484850004315376, -0.045623816549777985, -0.029203863814473152, -0.010868479497730732, 0.05207807198166847, 0.007240912411361933, 0.043334584683179855, -0.013998058624565601, -0.04759831726551056, -0.07191558927297592, 0.027147043496370316, 0.010040540248155594, 0.010346047580242157, 0.04527585208415985, -0.0008880291716195643, -0.02356259897351265, 0.027043592184782028, 0.006892717909067869, -0.02476380206644535, -0.0608334094285965, 0.06405829638242722, -0.015032145194709301, -0.03248782455921173, 0.017903607338666916, 0.03149131312966347, -0.056666646152734756, -0.04986989498138428, -0.019551172852516174, 0.0005163535824976861, 0.003097106469795108, -0.01682736910879612, 0.01516004279255867, -0.027381531894207, 0.02098044939339161, 0.034708160907030106, 0.037834059447050095, -0.004638632293790579, 0.04973682016134262, 0.006436494179069996, 0.05337992310523987, -0.042107414454221725, -0.0030910803470760584, 0.05566110834479332, -0.028980404138565063, 0.004546815529465675, -0.024768050760030746, 0.01933610625565052, 0.020125234499573708, -0.01142292283475399, 0.06715979427099228, -0.0015515749109908938, 0.005358466878533363, 0.00911406334489584, -0.008805419318377972, 0.033650580793619156, 0.008094949647784233, 0.004952871240675449, 0.01812867820262909, -0.032240722328424454, -0.010502493940293789, -0.03005288355052471, 0.05008934438228607, -0.01994309574365616, 0.012031083926558495, -0.03439173474907875, 0.010168926790356636, 0.0318106971681118, 0.009535140357911587, 0.011411841958761215, -0.015449972823262215, -0.016802232712507248, -0.047883789986371994, -0.04225018993020058, -0.04423883929848671, 0.007750583812594414, -0.005398118868470192, 0.041596945375204086, 0.017322300001978874, -0.04887937381863594, 0.003802045015618205, 0.022771842777729034, -0.01902015320956707, -0.0007022641366347671, -0.04827552288770676, 0.019844766706228256, -0.03426245227456093, -0.059688884764909744, -0.035106413066387177, -0.033034153282642365, 0.0004983002436347306, -0.00664528040215373, -0.01585843227803707, -0.006032219622284174, -0.01595405861735344, 0.028620373457670212, 0.035119615495204926, 0.01580687053501606, 0.0025163679383695126, -0.028318049386143684, 0.01036093384027481, 0.011592254042625427, 0.0005226833163760602, 0.05454172194004059, 0.0041298517026007175, -0.028866935521364212, 0.005530239082872868, -0.009490287862718105, -0.06753373146057129, -0.024893710389733315, -0.022345656529068947, 0.007730219978839159, -0.00462756073102355, -0.06938982754945755, -0.006265050265938044, -0.021623661741614342, -0.02578018046915531, 0.009445472620427608, -0.005423873662948608, -0.0022560935467481613, 0.003085140371695161, 0.013845676556229591, -0.009909949265420437, 0.03492278233170509, 0.019381143152713776, 0.04320644959807396, 0.007890462875366211, 0.05478249117732048, 0.014684404246509075, -0.02460317499935627, 0.02952233888208866, -0.019039051607251167, 0.04696209356188774, 0.008501055650413036, 0.004468724597245455, 0.02447647415101528, -0.019970454275608063, 0.035104792565107346, -0.023550154641270638, -0.05959134176373482, -0.055648498237133026, 0.008226766251027584, -0.02392066828906536, 0.03881407156586647, 0.029557382687926292, -0.020184120163321495, 0.03315119072794914, -0.035891205072402954, -0.03714068979024887, 0.01784754917025566, -0.06059610843658447, -0.017041131854057312, 0.0503574013710022, -0.014602660201489925, -0.00008852564496919513, 0.017200473695993423, -0.06004665046930313, 0.020460406318306923, -0.019220439717173576, 0.007443370763212442, -0.009668901562690735, 0.03038482926785946, -0.016487939283251762, 0.01648126170039177, -0.02009127475321293, -0.009254511445760727, -0.020562291145324707, 0.06327340751886368, -0.038483381271362305, -0.06240727752447128, 0.010575422085821629, -0.0024896280374377966, 0.010655256919562817, -0.013697439804673195, 0.0007842236082069576, 0.029620857909321785, 0.016278007999062538, -0.00820987205952406, -0.009388214908540249, 0.010170180350542068, 0.024244150146842003, 0.04870191961526871, 0.008055493235588074, 0.0024542135652154684, -0.03925994038581848, 0.017526252195239067, 0.03473386541008949, -0.04544970393180847, -0.023305237293243408, 0.04722757264971733, 0.02447640709578991, 0.014546891674399376, 0.045059263706207275, -0.0034661046229302883, 0.0427570603787899, 0.0011765677481889725, 0.017807042226195335, -0.022268427535891533, 0.03276066482067108, 0.03601574897766113, 0.033099040389060974, -0.013487127609550953, 0.005774050485342741, 0.036554474383592606, -0.002136425580829382, -0.02614399790763855, 0.02743399329483509, 0.03804462403059006, -0.013113381341099739, 0.011730487458407879, 0.0070269471034407616, -0.008251822553575039, 0.022393466904759407, -0.003285424318164587, 0.0012629933189600706, -0.0530836395919323, 0.003202181775122881, -0.015089807100594044, -0.0054157804697752, 0.0489797443151474, -0.027024758979678154, 0.03267030417919159, -0.011453992687165737, -0.023990925401449203, 0.030346138402819633, 0.049075666815042496, 0.01366318017244339, -0.0033550597727298737, 0.01629210263490677, 0.01859748549759388, -0.017003964632749557, 0.03479759767651558, 0.011539159342646599, 0.0018028451595455408, -0.06049107015132904, -0.0017495461506769061, 0.0015268365386873484, -0.04422099143266678, -0.013851827010512352, 0.009540877304971218, -0.03878828138113022, 0.04564075171947479, -0.038576677441596985, 0.008810026571154594, 0.014781402423977852, -0.057793714106082916, 0.015219753608107567, -0.024316731840372086, 0.027577845379710197, -0.027425967156887054, -0.02393137849867344, 0.014523318968713284, -0.008246255107223988, -0.015574364922940731, 0.026078026741743088, -0.01121248584240675, 0.037171874195337296, 0.015379414893686771, 0.06759961694478989, -0.012869162485003471, 0.02541891299188137, 0.04989907518029213, -0.0350542850792408, -0.028064638376235962, 0.00467844819650054, -0.005542271304875612, -0.035700473934412, -0.013969076797366142, -0.056478533893823624, -0.01750081405043602, -0.010496607050299644, 0.005370695609599352, -0.000918043137062341, 0.04235849902033806, 0.025112183764576912, -0.04644639790058136, -0.012591608799993992, 0.007425960153341293, -0.028625620529055595, 0.030784059315919876, -0.011719634756445885, 0.025225399062037468, 0.001968799391761422, -0.02828785963356495, -0.026721252128481865, -0.033915579319000244, 0.02021130919456482, -0.07001692056655884, 0.07386230677366257, -0.0075458744540810585, -0.04508202150464058, -0.046624556183815, -0.06205228716135025, -0.01954689621925354, 0.025088222697377205, -0.018085109069943428, -0.04974071681499481, 0.048973411321640015, 0.03813144937157631, -0.007237398065626621, 0.01092025637626648, -0.03812965750694275, -0.019837822765111923, 0.03901350125670433, 0.07649421691894531, -0.015773238614201546, 0.02452686056494713, 0.05194473639130592, -0.026813875883817673, 0.024060478433966637, -0.019852720201015472, 0.019615747034549713, 0.02597764879465103, -0.0034974259324371815, -0.040357623249292374, 0.02612735703587532, -0.03504194691777229, -0.04359859600663185, 0.026493556797504425, 0.04532110318541527, -0.044858332723379135, -0.025580385699868202, -0.08069194108247757, -0.02890620566904545, -0.03931678459048271, -0.025520842522382736, -0.04536725580692291, 0.029993360862135887, 0.02080712839961052, 0.00044077017810195684, 0.005057527683675289, -0.06737848371267319, 0.14102263748645782, 0.0580933503806591, 0.013406913727521896, 0.01186688058078289, 0.03328277915716171, 0.03410632535815239, 0.020164448767900467, -0.002283576875925064, 0.04371530935168266, -0.04293249920010567, 0.04814929515123367, -0.0345284529030323, 0.01615169644355774, -0.007576602045446634, 0.015794457867741585, 0.05718891695141792, -0.033307913690805435, 0.003280421020463109, 0.04523691162467003, -0.04835672676563263, -0.05252864956855774, -0.010090296156704426, 0.023539897054433823, 0.011873872019350529, 0.009988191537559032, 0.005175436846911907, 0.04171469435095787, -0.06644678115844727, -0.008122880011796951, -0.014748436398804188, 0.042670849710702896, -0.03324249014258385, 0.05556423217058182, -0.016124604269862175, -0.02457990124821663, 0.030435072258114815, -0.0028651112224906683, -0.02719724178314209, 0.008162443526089191, 0.020281784236431122, -0.015880635008215904, 0.0272641871124506, 0.019904935732483864, -0.03504432737827301, -0.0036157816648483276, 0.0200794767588377, -0.0410119891166687, 0.02607264555990696, -0.00008799713396001607, -0.046350520104169846, 0.05217274650931358, -0.033230721950531006, 0.006755397189408541, -0.01086749229580164, -0.027704894542694092, 0.028786011040210724, -0.012077677063643932, -0.023958435282111168, -0.008780754171311855, 0.01412826869636774, 0.00827056635171175, 0.005034345202147961, -0.031327906996011734, -0.008280700072646141, -0.030736150220036507, 0.02094988152384758, 0.03475814685225487, 0.010435623116791248, -0.0024625894147902727, -0.017378704622387886, -0.01752525195479393, -0.004096590913832188, -0.03621269017457962, -0.0014303596690297127, 0.023142576217651367, 0.0231088288128376, -0.017727840691804886, 0.04596788436174393, 0.014833844266831875, -0.020760808140039444, -0.023482605814933777, -0.043221376836299896, 0.0052970764227211475, 0.005666451063007116, 0.05147770419716835, 0.05752159282565117, -0.04084600508213043, -0.01460125669836998, -0.05277736485004425, 0.05660327896475792, 0.049938805401325226, 0.004656726028770208, -0.018642142415046692, -0.01814662106335163, -0.02330789901316166 ]
This is a single city, family friendly. bicycle coop tour with 4 coops. It starts at the Redwood City Cal Train station for those wishing to do a train-bike-coop tour! It is only about 5.5 miles of flat, mostly residential streets but you must cross El Camino at a signal. It goes by a community park with restrooms, and food options are available in downtown Redwood City at the start. It has some younger families with kids and chickens! It can be started anywhere along the route.
[ 0.015089232474565506, 0.030155746266245842, -0.005924074910581112, 0.0029123136773705482, -0.0014006912242621183, -0.011016350239515305, -0.030761143192648888, 0.016587024554610252, 0.02591603808104992, 0.015593538992106915, 0.033617984503507614, 0.02249932661652565, 0.011419464834034443, -0.04370900243520737, -0.022622978314757347, -0.02098466455936432, -0.03951280936598778, -0.02353379689157009, -0.019456379115581512, 0.012281891889870167, -0.007102692034095526, 0.018948780372738838, -0.06697611510753632, -0.03350349888205528, -0.030458133667707443, 0.031354960054159164, 0.04230827838182449, -0.022923162207007408, 0.0473560132086277, 0.05155571550130844, -0.009713755920529366, -0.061225928366184235, 0.04509314149618149, -0.011021140962839127, -0.026696333661675453, -0.021076276898384094, 0.040041353553533554, -0.011899861507117748, -0.005378509871661663, -0.06852620840072632, 0.007138506509363651, -0.007505609653890133, 0.030825700610876083, -0.041255392134189606, -0.004897797014564276, -0.009871967136859894, -0.020217295736074448, -0.0319993793964386, 0.019635222852230072, -0.07070464640855789, -0.0005658810259774327, -0.015578857623040676, 0.018215427175164223, 0.002632893156260252, -0.0068755908869206905, -0.0009567710803821683, -0.036957528442144394, 0.00297146150842309, -0.04398748651146889, 0.019290518015623093, 0.019181864336133003, -0.007709892932325602, 0.01487347949296236, -0.042543694376945496, 0.010452724061906338, 0.01844172365963459, -0.0047827246598899364, -0.0235909316688776, 0.030274836346507072, -0.03650280460715294, -0.022857030853629112, -0.004803790245205164, -0.024198725819587708, -0.01707646995782852, 0.003112817881628871, -0.0009780072141438723, 0.01465358305722475, -0.0026402391958981752, -0.014423646964132786, -0.024012790992856026, 0.011836852878332138, 0.04978111386299133, 0.018093673512339592, 0.0013045946834608912, -0.050270434468984604, -0.017653096467256546, 0.0029132214840501547, 0.002201234456151724, -0.013377738185226917, 0.002152262022718787, -0.00284840096719563, 0.06459572166204453, 0.021607989445328712, 0.0021416882518678904, 0.05763920769095421, 0.02284596487879753, -0.05402752384543419, 0.03207270801067352, -0.006040188018232584, -0.0172852985560894, 0.021278923377394676, 0.016875363886356354, -0.009970398619771004, 0.0341239757835865, -0.04760401323437691, 0.0031480547040700912, -0.013058592565357685, -0.02407889999449253, -0.01750711165368557, -0.04058405011892319, 0.013557219877839088, -0.01277266163378954, 0.005015243776142597, -0.0030266502872109413, 0.011939473450183868, 0.04558178782463074, 0.0005330901476554573, 0.016446297988295555, -0.03978309407830238, 0.03826811909675598, 0.014530114829540253, -0.0003942909825127572, 0.030785273760557175, -0.023311296477913857, 0.010479864664375782, -0.039012979716062546, -0.04504053294658661, 0.057008206844329834, -0.041307482868433, -0.005796863231807947, 0.006883952766656876, -0.027884816750884056, -0.007050523534417152, 0.018384283408522606, 0.0009007045882754028, 0.011365327052772045, -0.0049285911954939365, 0.03610195964574814, 0.0265416968613863, -0.06039612740278244, 0.039429668337106705, 0.03487693890929222, -0.01668059453368187, 0.08091101795434952, 0.0266902856528759, 0.04321013763546944, -0.010023817420005798, -0.0032601167913526297, -0.018652217462658882, 0.036367159336805344, -0.004358306061476469, 0.014362730085849762, 0.004896159283816814, -0.0021013906225562096, -0.031701210886240005, 0.016781162470579147, -0.01705649122595787, 0.013304395601153374, 0.01273956336081028, 0.04489106684923172, -0.017948687076568604, 0.024286091327667236, -0.036192506551742554, 0.03039761446416378, -0.02124771848320961, 0.03634418547153473, -0.05440695583820343, -0.013941856101155281, -0.008879682049155235, -0.05584266409277916, -0.01854453608393669, -0.012380721047520638, 0.0023933718912303448, -0.003378317691385746, 0.02625926397740841, 0.019474642351269722, 0.04325195029377937, 0.0269900131970644, 0.03343002870678902, 0.03288205340504646, -0.03163311257958412, 0.008031933568418026, -0.009120123460888863, 0.04583058878779411, -0.0011201620800420642, -0.012575804255902767, -0.009288406930863857, -0.04279213771224022, -0.04528949782252312, -0.04587482288479805, 0.005985104478895664, 0.037277162075042725, -0.033196523785591125, 0.02138138934969902, 0.02512899413704872, 0.021122125908732414, -0.015107551589608192, -0.047864917665719986, -0.014924430288374424, -0.04377128183841705, -0.015492827631533146, 0.030387787148356438, -0.01736905239522457, 0.046902287751436234, -0.03416711091995239, -0.031762879341840744, 0.032598622143268585, 0.09508874267339706, -0.021291440352797508, -0.011683295480906963, 0.04802298545837402, 0.021326035261154175, -0.01741553097963333, -0.0034890584647655487, 0.03812635317444801, -0.016226578503847122, -0.015945423394441605, 0.04522569477558136, 0.018258417025208473, -0.0418165847659111, 0.021335123106837273, 0.00949987955391407, 0.04164363071322441, 0.02795330435037613, 0.01600707694888115, 0.01669536903500557, 0.02443583682179451, 0.05008595809340477, -0.004334503784775734, 0.008424428291618824, -0.01117341872304678, 0.03394319489598274, 0.05557942017912865, 0.029573647305369377, 0.04255825653672218, 0.016511909663677216, 0.04500745236873627, 0.03609268367290497, -0.022557338699698448, 0.023526586592197418, 0.027654560282826424, 0.00926857441663742, 0.06437691301107407, -0.007951362058520317, -0.011651895940303802, 0.04363632574677467, -0.0019497413886711001, -0.020155437290668488, -0.018873214721679688, 0.060240738093853, -0.016206910833716393, 0.01200319454073906, 0.0051803309470415115, 0.03422863408923149, 0.009345815517008305, 0.01761997491121292, 0.03319108858704567, 0.06775296479463577, -0.028600607067346573, -0.0005955796805210412, -0.0066582574509084225, 0.01935853809118271, 0.003326617181301117, -0.002507439348846674, 0.02465924061834812, 0.018753642216324806, -0.01578681729733944, 0.009662383235991001, 0.002211817307397723, -0.042365074157714844, -0.01522395946085453, -0.054988257586956024, -0.04418826103210449, -0.03787080571055412, -0.054141681641340256, -0.0115344924852252, 0.050822921097278595, -0.0021713266614824533, 0.018595591187477112, -0.020884739235043526, -0.0008791939471848309, -0.0454430878162384, -0.004308633040636778, 0.058306317776441574, 0.05357884615659714, 0.033616676926612854, -0.04030792787671089, 0.030813634395599365, 0.003101301845163107, 0.029070040211081505, -0.022972609847784042, -0.005373820196837187, -0.005570179782807827, -0.022402260452508926, 0.029898012056946754, -0.042108867317438126, -0.003572843037545681, -0.003747593844309449, -0.0468975305557251, -0.03985844925045967, 0.026096457615494728, -0.01194869913160801, -0.021741025149822235, 0.02117607370018959, -0.020524678751826286, 0.07089391350746155, 0.022835830226540565, -0.03184639289975166, 0.04949622228741646, 0.04835375025868416, -0.027773337438702583, 0.040748849511146545, 0.03340856730937958, 0.018773211166262627, -0.029833100736141205, 0.05593973770737648, 0.038335513323545456, 0.01589561253786087, -0.026414072141051292, -0.00003470621595624834, -0.04193861782550812, 0.009345106780529022, 0.0026069555897265673, -0.011533176526427269, -0.005826753564178944, 0.04609950631856918, -0.0014543767319992185, -0.06762368977069855, 0.008402311243116856, -0.04607979580760002, -0.010328193195164204, -0.04894000664353371, -0.02566411718726158, 0.04400113597512245, 0.022740472108125687, 0.039198774844408035, 0.009560618549585342, -0.022344615310430527, -0.009884029626846313, 0.0035155711229890585, 0.068931944668293, -0.007934627123177052, 0.023285675793886185, 0.04926862195134163, -0.0070520308800041676, -0.0018444855231791735, 0.01574227213859558, 0.006638393737375736, -0.021720824763178825, 0.007456721737980843, -0.026293516159057617, -0.0020175916142761707, 0.014192932285368443, -0.026639092713594437, 0.006180889438837767, 0.03760748729109764, -0.05463923513889313, -0.0018740097293630242, -0.015593682415783405, 0.02459874004125595, -0.012079263105988503, -0.016819266602396965, 0.014192714355885983, -0.018990326672792435, -0.0431673564016819, -0.02416306920349598, 0.04453307390213013, 0.013415994122624397, 0.02507328800857067, -0.041504211723804474, 0.0443967767059803, 0.022650765255093575, -0.042483314871788025, 0.04121382161974907, -0.0655038133263588, -0.013848601840436459, 0.025391580536961555, 0.012900498695671558, 0.05503664165735245, -0.02369845099747181, 0.009938040748238564, -0.02594739757478237, 0.026456790044903755, 0.036496054381132126, 0.020954303443431854, 0.011728913523256779, -0.03148745372891426, -0.0034953539725393057, -0.04358832165598869, -0.00875014252960682, 0.008275321684777737, -0.0298001691699028, 0.04914204403758049, 0.0044596996158361435, -0.02242150902748108, -0.048322051763534546, 0.04769761860370636, 0.0631277784705162, 0.026384370401501656, -0.028480488806962967, 0.003363048890605569, 0.041185203939676285, 0.019025171175599098, 0.026010246947407722, -0.007526684552431107, 0.014978718012571335, -0.04174339398741722, 0.0633162185549736, 0.022166378796100616, -0.01908990927040577, -0.03408970311284065, -0.043975722044706345, -0.019631534814834595, 0.033600516617298126, 0.011567177250981331, -0.03779682144522667, -0.02433757856488228, 0.004023577552288771, -0.03224066644906998, 0.04454047605395317, -0.01683782786130905, -0.023957548663020134, -0.03774465620517731, 0.03312927111983299, 0.028840569779276848, -0.04536661133170128, -0.005335226189345121, -0.07361707836389542, 0.05681633576750755, 0.054770734161138535, -0.0008609163924120367, -0.04807638004422188, -0.0280503761023283, -0.049870699644088745, -0.01078078243881464, 0.008494917303323746, 0.056493256241083145, -0.017063241451978683, -0.04177921637892723, -0.040158357471227646, 0.019004957750439644, 0.021881673485040665, -0.006829383783042431, -0.01233025174587965, -0.003959265071898699, -0.01522047445178032, -0.0009188363910652697, 0.02208569645881653, -0.003026789054274559, -0.05881911888718605, -0.0033742012456059456, -0.039739787578582764, -0.0144813172519207, 0.012634270824491978, -0.030087364837527275, 0.007180062122642994, 0.0016237281961366534, 0.037261705845594406, 0.02716943807899952, -0.039421696215867996, 0.02078496292233467, -0.014759453013539314, 0.040579184889793396, -0.03685566410422325, -0.020189473405480385, 0.01877308078110218, -0.012646079063415527, -0.029360435903072357, 0.06326470524072647, 0.051768235862255096, -0.012510273605585098, 0.014947283081710339, 0.03933080658316612, -0.036596499383449554, 0.016477376222610474, -0.03662620857357979, 0.008879215456545353, -0.009557160548865795, -0.03899889811873436, 0.03294428810477257, -0.03985559195280075, 0.01099624577909708, -0.018526948988437653, 0.004371784161776304, -0.03291929513216019, -0.07278038561344147, -0.045523568987846375, -0.011950947344303131, -0.004689169581979513, 0.017710978165268898, 0.04134136065840721, 0.008539732545614243, 0.007264412939548492, 0.01045821700245142, -0.006312569137662649, 0.01005040667951107, -0.0031188083812594414, 0.013596565462648869, 0.02456621266901493, 0.011562949046492577, 0.004604557529091835, 0.014274073764681816, -0.03948761522769928, -0.010716588236391544, -0.026983419433236122, -0.02036072500050068, -0.03548628091812134, 0.00394133385270834, -0.032769814133644104, -0.035470061004161835, -0.037112440913915634, 0.004933472722768784, -0.010121588595211506, 0.003753803903236985, 0.02031589485704899, 0.018213137984275818, -0.013876651413738728, 0.014226452447474003, -0.021665683016180992, 0.007786777336150408, 0.013119491748511791, -0.039232369512319565, -0.004892546217888594, 0.02677845023572445, 0.006447441875934601, 0.027591124176979065, 0.04469427093863487, -0.010617990046739578, -0.02980915643274784, -0.052131153643131256, 0.01193604152649641, -0.032286711037158966, -0.038608618080616, -0.0363493338227272, -0.02765372395515442, -0.01756213791668415, 0.026111982762813568, 0.02944718487560749, -0.025490226224064827, 0.013810775242745876, -0.02871362678706646, -0.03258967027068138, -0.036810752004384995, -0.04897547885775566, -0.04400602728128433, -0.0034680869430303574, 0.004259166307747364, 0.03202808275818825, 0.017723793163895607, 0.0039015356451272964, -0.0020458558574318886, 0.03908655047416687, 0.007703803479671478, -0.027159277349710464, -0.023880546912550926, -0.04150516167283058, -0.04489884525537491, 0.00817155186086893, -0.010709984228014946, 0.026178160682320595, -0.03940239176154137, 0.023118942975997925, -0.006327069830149412, -0.012839077971875668, -0.021958187222480774, -0.017034756019711494, 0.005280190613120794, 0.020862260833382607, 0.03083403967320919, -0.010056660510599613, 0.007917212322354317, 0.0012860711431130767, 0.04563064128160477, 0.048716943711042404, 0.0012910482473671436, -0.013512803241610527, -0.04631500318646431, -0.026899170130491257, -0.05503624305129051, 0.04812397435307503, -0.023038305342197418, -0.04329502582550049, -0.04571479186415672, -0.014151284471154213, 0.03134623542428017, 0.02369087003171444, 0.017558841034770012, 0.08490542322397232, -0.020701555535197258, 0.014402800239622593, -0.06667115539312363, 0.06933002173900604, 0.031500671058893204, -0.016056232154369354, -0.028514420613646507, 0.0014199063880369067, -0.007337871473282576, 0.0017343306681141257, -0.03051619417965412, -0.025312427431344986, -0.03155145421624184, -0.008196474052965641, 0.04942089319229126, 0.011693844571709633, 0.03863616660237312, -0.00247853621840477, -0.0814468115568161, -0.05631003528833389, 0.03423542529344559, 0.013442695140838623, 0.0037734550423920155, 0.04094850271940231, -0.01422198861837387, -0.011796410195529461, 0.028640901669859886, 0.0050085424445569515, -0.006934323348104954, -0.029478371143341064, 0.07594911009073257, 0.008695248514413834, -0.06987671554088593, 0.020902778953313828, 0.05515539273619652, -0.06371446698904037, -0.0504661500453949, -0.002539164386689663, 0.011340949684381485, 0.021544940769672394, -0.006724610459059477, 0.031584545969963074, -0.00020068931917194277, 0.00875270925462246, 0.012905236333608627, 0.02366229146718979, 0.00038069646689109504, 0.04760579764842987, 0.03632412105798721, 0.03640221431851387, -0.03265666589140892, -0.002440950833261013, 0.04105672985315323, 0.03286314010620117, -0.01632901281118393, -0.04039479419589043, -0.012726730667054653, -0.009099254384636879, -0.014025717042386532, 0.022078288719058037, -0.06374466419219971, -0.00495284516364336, 0.02100822515785694, -0.017698707059025764, 0.04939216375350952, -0.007303428836166859, 0.02493651956319809, 0.018009252846240997, -0.025085056200623512, -0.023056628182530403, -0.052763305604457855, 0.020093925297260284, -0.010974636301398277, 0.05263891816139221, -0.05051736533641815, 0.006547453813254833, 0.021112341433763504, -0.01755225844681263, -0.00446160277351737, -0.05791216343641281, -0.01682325266301632, -0.030029574409127235, -0.04034347087144852, -0.046669431030750275, 0.011958194896578789, 0.02341984026134014, 0.026965590193867683, -0.014173375442624092, -0.026948455721139908, 0.030512694269418716, 0.024143466725945473, -0.02136855572462082, 0.015197467990219593, -0.0407412052154541, 0.03619697690010071, -0.05753206089138985, -0.04877346009016037, -0.034229930490255356, 0.023596303537487984, -0.00687371613457799, 0.0198819600045681, -0.028171474114060402, 0.032017048448324203, -0.0009301492827944458, 0.019996458664536476, 0.03609598055481911, 0.016921691596508026, -0.020645402371883392, -0.0409775972366333, -0.0010170656023547053, 0.02741028554737568, -0.006581300403922796, 0.01024999376386404, 0.011539630591869354, -0.007849371992051601, 0.04677968472242355, -0.024994000792503357, 0.004663698375225067, -0.021582888439297676, 0.018652193248271942, 0.008255471475422382, 0.00479417247697711, -0.04910241812467575, -0.027043312788009644, -0.01106259785592556, -0.03946223109960556, 0.01438228040933609, 0.016158148646354675, -0.00911916047334671, 0.01640009693801403, -0.008671432733535767, -0.01836552657186985, 0.05623476207256317, 0.023200200870633125, -0.007388418074697256, -0.020341625437140465, 0.06532607227563858, 0.005832561757415533, 0.019061636179685593, -0.017104944214224815, 0.03660758584737778, 0.03368907421827316, -0.012004232034087181, 0.021151531487703323, 0.02177402749657631, -0.05753064528107643, 0.04165998473763466, -0.013259545899927616, -0.008917082101106644, -0.02731352299451828, -0.0021287910640239716, -0.0075112804770469666, 0.06391052901744843, -0.008733022958040237, 0.008644231595098972, 0.03088626079261303, -0.02874356135725975, -0.053001727908849716, -0.0037174662575125694, -0.08892159909009933, -0.05421124026179314, 0.02929452434182167, -0.03320945054292679, 0.0006768011953681707, -0.007962188683450222, -0.03753276169300079, 0.0036018143873661757, -0.025146279484033585, -0.009249537251889706, 0.01580752618610859, 0.014296011067926884, 0.010210190899670124, 0.04174526035785675, -0.02343842200934887, 0.005777460988610983, 0.02166994847357273, 0.03715764731168747, -0.05175153538584709, -0.0382782407104969, -0.0009712674655020237, 0.044696807861328125, 0.020734459161758423, 0.0030659548938274384, 0.013135340996086597, 0.006493063177913427, -0.00047180772526189685, -0.008349530398845673, 0.006429935805499554, 0.02777397818863392, -0.004495515488088131, 0.022862598299980164, 0.0018984198104590178, -0.028836064040660858, -0.003772413358092308, 0.06035288795828819, -0.01181240938603878, -0.0031330357305705547, -0.035441700369119644, 0.05018138885498047, 0.03750394657254219, 0.005685270763933659, 0.04025520011782646, 0.010123380459845066, 0.03414376080036163, -0.02231297828257084, 0.039921943098306656, -0.001087977783754468, 0.047225650399923325, 0.05265776813030243, 0.027809951454401016, 0.027570726349949837, 0.03859007731080055, 0.060026414692401886, -0.009303105063736439, -0.011602126061916351, 0.03988758474588394, 0.009039407595992088, -0.022799978032708168, -0.01541193388402462, -0.03586062788963318, 0.008729496970772743, 0.0017443998949602246, -0.013685435988008976, 0.007279126439243555, -0.035456541925668716, 0.0028120812494307756, -0.010920525528490543, -0.0070893047377467155, 0.05273289233446121, -0.014352246187627316, 0.025089364498853683, -0.00007216106314444914, -0.010536130517721176, -0.03336134925484657, 0.05244409292936325, -0.029262172058224678, -0.005986384581774473, 0.02755318023264408, 0.021011408418416977, -0.0010123400716111064, 0.05758747085928917, -0.006148402579128742, 0.00675487145781517, -0.044898077845573425, 0.03140132874250412, 0.005935782566666603, -0.030766723677515984, -0.02701948769390583, -0.006047433242201805, -0.04327955096960068, 0.030309457331895828, -0.03171851485967636, -0.03712071478366852, 0.020748987793922424, -0.0474068820476532, -0.015458417125046253, -0.025245433673262596, 0.018739648163318634, -0.0465003103017807, -0.008138501085340977, 0.06113460287451744, -0.0011484312126412988, -0.029675351455807686, 0.06173352897167206, 0.02011159062385559, 0.018918145447969437, 0.013637111522257328, 0.055969223380088806, -0.0055608986876904964, 0.0451398640871048, 0.04720168933272362, -0.04731948301196098, -0.04423322528600693, 0.025682177394628525, -0.0170364398509264, -0.035799477249383926, -0.030239202082157135, -0.04291107505559921, -0.033605411648750305, -0.028223564848303795, -0.024009564891457558, -0.008469442836940289, 0.03931507095694542, -0.02395729534327984, -0.06323454529047012, -0.02262832783162594, 0.029077112674713135, -0.05632249638438225, 0.008630259893834591, 0.02915990725159645, 0.05009261146187782, 0.01932326890528202, -0.013565252535045147, -0.0528968945145607, -0.027413638308644295, -0.008080925792455673, -0.03030822053551674, 0.036034490913152695, -0.03191451355814934, 0.0006619033520109951, -0.0602734237909317, -0.0396510511636734, -0.03429829701781273, -0.0066326516680419445, -0.036873482167720795, -0.050802409648895264, 0.0012172820279374719, 0.026906022801995277, -0.02427080273628235, 0.013140857219696045, -0.01969643123447895, -0.003049622755497694, 0.053511932492256165, 0.05350418761372566, -0.01856192573904991, 0.036181263625621796, 0.028960632160305977, -0.003844604128971696, 0.02187514677643776, -0.031019465997815132, 0.03346749767661095, -0.01897498406469822, -0.0019175425404682755, -0.021230388432741165, -0.012554873712360859, -0.008972739800810814, -0.058106228709220886, 0.024898944422602654, 0.005798105150461197, 0.027406107634305954, -0.017991894856095314, -0.07174894213676453, -0.022458191961050034, -0.041305508464574814, -0.04695523902773857, -0.05147891119122505, 0.02953130379319191, 0.013553722761571407, -0.04278828948736191, -0.010014905594289303, -0.045559871941804886, 0.15275892615318298, 0.04461866617202759, 0.06676412373781204, -0.0017498425440862775, 0.014046096242964268, 0.07836417108774185, 0.005725853145122528, 0.014595608226954937, -0.029851946979761124, -0.013564293272793293, 0.025013389065861702, -0.006028403993695974, 0.050096675753593445, -0.0020837399642914534, 0.01690629869699478, 0.0607135072350502, -0.05396338552236557, 0.02103910595178604, 0.04318859428167343, -0.015786100178956985, -0.06217878311872482, 0.015718523412942886, 0.016854144632816315, 0.018351513892412186, -0.016220008954405785, 0.04407069832086563, -0.004916307516396046, -0.026201987639069557, -0.008091100491583347, -0.03334755823016167, 0.017147962003946304, -0.02893323451280594, 0.044061847031116486, -0.004789775237441063, -0.08030453324317932, 0.028692802414298058, -0.011675452813506126, -0.011777638457715511, -0.0023026089183986187, 0.0013963953824713826, -0.03294318541884422, 0.014636045321822166, 0.059816185384988785, -0.028385339304804802, 0.005205527879297733, 0.04088101163506508, -0.038244638592004776, 0.017157917842268944, 0.026701292023062706, -0.039620447903871536, 0.05360931158065796, -0.019530294463038445, 0.013104476034641266, 0.003450696123763919, -0.012958013452589512, -0.005056513007730246, 0.009858355857431889, 0.0004727134946733713, -0.0321616530418396, 0.014509178698062897, 0.05179934948682785, -0.021484559401869774, -0.020659033209085464, 0.005798856727778912, -0.07488056272268295, 0.017364460974931717, 0.0246132779866457, -0.0022368088830262423, -0.011930791661143303, -0.01353504229336977, -0.03402911499142647, -0.012258571572601795, -0.003964497707784176, -0.03037133999168873, 0.046606604009866714, 0.045999232679605484, -0.02149352617561817, 0.02811434306204319, 0.01720615290105343, 0.003954824525862932, -0.006023978814482689, -0.03958200663328171, 0.0024277898482978344, 0.015659598633646965, 0.019266711547970772, 0.06260263174772263, -0.021067693829536438, -0.06595506519079208, -0.021453475579619408, 0.06331594288349152, 0.03383579105138779, 0.013308456167578697, -0.0018993181874975562, 0.02089255303144455, -0.0011003522668033838 ]
In honor of Women's History Month, we're celebrating some iconic women from across the cultural landscape who are making a difference in the arts and the world. The award-winning director Julie Taymor caught the theater bug when she was young, and she went on to become the first woman to win a Tony Award for directing a musical. Her stunning work includes the "The Lion King," as well as the Off-Broadway production of "A Midsummer Night's Dream" at Theater for a New Audience. Watch the video to learn more about Taymor's success and influence, and get inspired to check out some great female-led shows on TodayTix.com.
[ -0.013052556663751602, -0.003331718733534217, -0.03002631478011608, -0.013889748603105545, -0.0036396984942257404, -0.012197272852063179, -0.019325386732816696, 0.02655010111629963, 0.03304716572165489, -0.016765395179390907, 0.01469021663069725, -0.004406848922371864, 0.011546630412340164, -0.0375840850174427, -0.007582847960293293, -0.017625676468014717, -0.007086377125233412, -0.009495140053331852, -0.015082896687090397, 0.00041122501716017723, -0.017139839008450508, 0.04151786491274834, -0.08918515592813492, -0.012470865622162819, -0.02357463166117668, 0.0649016723036766, 0.009510042145848274, -0.002037499565631151, 0.06028793007135391, 0.06936857849359512, 0.001509521040134132, -0.025954680517315865, 0.02563542313873768, -0.04062000662088394, 0.0024167767260223627, -0.03580748289823532, 0.031152719631791115, -0.023911377415060997, -0.043058834969997406, -0.06633110344409943, -0.011780005879700184, -0.03345930948853493, 0.04253213107585907, -0.03294997662305832, -0.056526463478803635, 0.015457850880920887, 0.020247727632522583, -0.03757297247648239, 0.01718081347644329, -0.032103896141052246, -0.002061204519122839, -0.016609780490398407, 0.006865383591502905, 0.031189223751425743, 0.010462382808327675, 0.0038270738441497087, 0.021068504080176353, -0.016066741198301315, -0.02150477096438408, 0.025374772027134895, 0.018468687310814857, 0.0008407862042076886, 0.011161449365317822, -0.05881593003869057, 0.02749665640294552, 0.01892063394188881, 0.025353986769914627, -0.04712197929620743, 0.0005000564269721508, 0.003457355545833707, -0.005325481295585632, -0.005129032302647829, -0.027446821331977844, -0.023349005728960037, 0.005444050766527653, -0.005413580685853958, -0.018877143040299416, 0.011336611583828926, 0.014772852882742882, -0.02486586757004261, 0.018145553767681122, 0.07166024297475815, -0.008570598438382149, 0.027310781180858612, -0.048041898757219315, -0.025821248069405556, -0.024092653766274452, 0.02358531765639782, 0.00800516176968813, 0.03985794261097908, 0.030351437628269196, 0.05856950208544731, -0.009253151714801788, -0.017437366768717766, 0.04824330285191536, 0.053565021604299545, -0.05218864604830742, -0.014885191805660725, -0.015774130821228027, 0.0034718038514256477, 0.015048825182020664, -0.007946657948195934, -0.03525615110993385, 0.033728837966918945, -0.02358120121061802, -0.022480245679616928, 0.01177177857607603, -0.04419119283556938, -0.005547397769987583, -0.0349767692387104, -0.005159616935998201, -0.03577724099159241, 0.048940666019916534, 0.0015317507786676288, -0.012878136709332466, 0.04478147253394127, 0.009968629106879234, 0.0629853829741478, -0.03862771764397621, -0.0019286454189568758, 0.024193674325942993, 0.008857169188559055, 0.0300870630890131, -0.032707300037145615, 0.037103913724422455, -0.002834666520357132, -0.014088594354689121, 0.036523278802633286, -0.004543638322502375, -0.01663866639137268, 0.01684463769197464, -0.05440976098179817, 0.006019968073815107, 0.015681326389312744, -0.0015734300250187516, 0.004547731950879097, -0.012208960950374603, 0.030339697375893593, 0.03433253988623619, -0.08259610831737518, 0.029563667252659798, 0.013557184487581253, 0.01934446208178997, 0.10436801612377167, 0.03332200273871422, 0.016659673303365707, 0.0075227064080536366, -0.014723405241966248, -0.03197063133120537, 0.014935196377336979, -0.02407444827258587, 0.032494284212589264, -0.010370722971856594, 0.045560259371995926, -0.008909689262509346, -0.014528922736644745, -0.010250942781567574, 0.008912399411201477, 0.012411442585289478, 0.03423062711954117, -0.05636526271700859, 0.007921719923615456, 0.0018265226390212774, 0.04745540767908096, 0.003906138939782977, 0.021722568199038506, 0.0055580781772732735, -0.0369516983628273, 0.00941044557839632, -0.04585568234324455, 0.0202343612909317, -0.007520722690969706, -0.028994610533118248, -0.01578531228005886, 0.014520355500280857, 0.029040876775979996, 0.022804686799645424, 0.00008788811101112515, 0.015844618901610374, 0.038111548870801926, -0.05105768144130707, -0.012347914278507233, -0.02491309866309166, 0.0835360661149025, 0.016729028895497322, -0.017903268337249756, -0.0019339589634910226, -0.0323357991874218, -0.02345256321132183, -0.02447262965142727, -0.0014410687144845724, 0.031145919114351273, -0.02977786958217621, 0.02179652638733387, 0.022104980424046516, 0.014556356705725193, -0.03328551724553108, -0.005490676499903202, -0.021302806213498116, -0.04609878361225128, 0.004480963107198477, 0.03572067990899086, -0.04294036701321602, 0.00368954474106431, -0.0012650428107008338, -0.014761796221137047, 0.004357628989964724, 0.053245604038238525, -0.07616445422172546, -0.021426519379019737, 0.005972364451736212, 0.025572404265403748, -0.0228116437792778, 0.004586799535900354, 0.013697895221412182, -0.006854003760963678, -0.01904916949570179, 0.05406399816274643, -0.006331238895654678, 0.0005377288325689733, 0.025725387036800385, 0.0045655048452317715, 0.06120198220014572, 0.030627625063061714, 0.00572399003431201, -0.012401901185512543, 0.04464055970311165, 0.02860761620104313, -0.030955124646425247, -0.016201553866267204, 0.027216237038373947, 0.023998120799660683, 0.03126787394285202, 0.031364601105451584, 0.043882761150598526, 0.04087701067328453, 0.030214225873351097, 0.04084721580147743, -0.025066612288355827, 0.01805189996957779, -0.012923880480229855, 0.009192781522870064, 0.03282153606414795, 0.04561958834528923, -0.02885543368756771, 0.05669528618454933, -0.010737544856965542, -0.013456111773848534, 0.005884966347366571, 0.011805460788309574, 0.01854400336742401, 0.04867318272590637, 0.01452278345823288, 0.044303905218839645, -0.02967643365263939, 0.026490308344364166, 0.03097403421998024, 0.046786222606897354, 0.007500447332859039, -0.04116317257285118, -0.0082927867770195, 0.031053390353918076, 0.007151933386921883, 0.032193031162023544, 0.03952164575457573, 0.020087648183107376, -0.025638313964009285, 0.053590480238199234, -0.06562446802854538, -0.09728314727544785, -0.04150862619280815, -0.05306495353579521, -0.037690892815589905, -0.02582540363073349, -0.055208563804626465, -0.03746791183948517, 0.03564095124602318, -0.04738488420844078, 0.019828690215945244, -0.0013537988997995853, -0.0198503565043211, -0.02608383074402809, -0.0625406876206398, 0.0449204221367836, 0.02077820897102356, 0.02742074802517891, 0.012810859829187393, 0.026885779574513435, -0.009370710700750351, 0.023776885122060776, -0.04400171339511871, -0.01622612774372101, -0.043562304228544235, 0.013620536774396896, 0.042441610246896744, -0.00563186826184392, -0.04012679681181908, 0.009379329159855843, -0.054236870259046555, -0.058485083281993866, 0.014474818482995033, 0.02496781013906002, 0.028613410890102386, 0.0084004495292902, -0.03978229686617851, 0.04074304923415184, 0.03798241540789604, -0.05877676233649254, 0.04642112925648689, 0.029104221612215042, -0.0287933312356472, 0.07910653203725815, 0.053406331688165665, -0.009984556585550308, -0.046169839799404144, 0.06482599675655365, 0.04716349393129349, 0.02771677076816559, -0.03442743048071861, -0.025052515789866447, -0.02977730706334114, 0.005334675777703524, 0.014948735013604164, -0.013143493793904781, -0.034289028495550156, 0.03595435991883278, 0.013358178548514843, -0.061943601816892624, 0.03208165615797043, -0.033966343849897385, -0.011063003912568092, -0.002505591604858637, -0.04373173788189888, 0.019449768587946892, 0.04794950410723686, 0.024130497127771378, 0.016837103292346, -0.001392675912939012, 0.026441166177392006, 0.016493184491991997, 0.03518563136458397, -0.04970041662454605, 0.0019733107183128595, 0.04639684781432152, -0.044775355607271194, 0.012466338463127613, 0.015942351892590523, -0.0177992545068264, -0.016555173322558403, 0.02223581075668335, -0.009257975965738297, 0.008308273740112782, 0.0072510577738285065, 0.003113711252808571, 0.015071847476065159, 0.03286134824156761, -0.010985116474330425, -0.010207858867943287, -0.006580686196684837, 0.051456838846206665, 0.003793947398662567, -0.004778859671205282, 0.04655424505472183, -0.02693113498389721, -0.00863828044384718, -0.05630263313651085, 0.016940133646130562, -0.002407877705991268, 0.07673843204975128, -0.06701657176017761, 0.06717808544635773, 0.017603546380996704, -0.021221162751317024, 0.04088255390524864, -0.04806024953722954, 0.03593092039227486, 0.04842695966362953, -0.017274247482419014, 0.03172200173139572, -0.026210248470306396, 0.031578510999679565, -0.01575067639350891, 0.010875036008656025, 0.06518685072660446, -0.01480256486684084, 0.0159930307418108, -0.025540875270962715, -0.06129980459809303, 0.015872498974204063, -0.04026941955089569, -0.013257365673780441, -0.03573951870203018, 0.002470203209668398, -0.013199938461184502, -0.033056605607271194, -0.04449455440044403, 0.054860152304172516, 0.016611212864518166, 0.03922751545906067, -0.02139592170715332, 0.02990497089922428, -0.002112599555402994, 0.026474429294466972, 0.05481657758355141, -0.022811999544501305, 0.021747184917330742, -0.04297227784991264, 0.049417994916439056, -0.004044069908559322, -0.03460218757390976, -0.0008421306265518069, -0.04900996387004852, -0.03515476733446121, 0.0011098175309598446, 0.02703176997601986, -0.017069555819034576, -0.05289609357714653, 0.008443641476333141, -0.0005704463692381978, 0.032924313098192215, -0.0435209646821022, -0.05278807878494263, -0.0072159976698458195, 0.030726198107004166, 0.0015546733047813177, -0.02704663574695587, 0.016116756945848465, -0.03381001204252243, 0.06918186694383621, 0.04949077218770981, -0.03508941829204559, -0.043128881603479385, -0.022472186014056206, -0.037813227623701096, -0.03235543146729469, 0.014810779131948948, 0.0554206557571888, -0.00491805374622345, -0.0013346883933991194, -0.03360657021403313, 0.06187774986028671, 0.03633105382323265, 0.012778064236044884, 0.00940253958106041, -0.01350138708949089, 0.00100628228392452, -0.0075838579796254635, 0.002523987554013729, -0.029751745983958244, -0.005022389814257622, 0.03262808173894882, -0.06505618989467621, 0.04726831614971161, 0.029420295730233192, -0.012645984068512917, -0.0272225271910429, -0.00049610435962677, 0.018630750477313995, 0.028084613382816315, 0.000390629778848961, 0.011624574661254883, -0.000777572626248002, 0.03501775488257408, -0.02808508463203907, -0.040129341185092926, 0.06816165149211884, 0.006615800783038139, -0.015504197217524052, 0.009024965576827526, 0.04415750876069069, -0.01591222733259201, -0.003927328158169985, -0.00779706658795476, -0.03503958135843277, 0.06040652468800545, -0.027990158647298813, 0.014003911055624485, -0.027518168091773987, -0.014187806285917759, 0.007609593216329813, -0.012507903389632702, 0.019842922687530518, 0.007353379391133785, -0.025608697906136513, -0.040767520666122437, -0.03210824728012085, -0.02915799431502819, -0.03355402499437332, -0.011555511504411697, -0.0076807159930467606, -0.0036443606950342655, -0.005941060371696949, -0.02491333708167076, 0.007287313695997, 0.011100970208644867, 0.007651385385543108, -0.03389546647667885, -0.0019406310748308897, 0.0016357621643692255, 0.0035676821134984493, 0.011527647264301777, 0.00438698148354888, -0.017204592004418373, 0.00987767893821001, 0.009903281927108765, -0.020608121529221535, -0.03745404630899429, -0.015518467873334885, -0.015114597976207733, -0.0018291284795850515, -0.017801593989133835, -0.013077033683657646, -0.027278007939457893, 0.03991315886378288, 0.023861270397901535, -0.004377864766865969, -0.0033636526204645634, 0.0033823340199887753, -0.0049972375854849815, 0.04021661728620529, -0.0053465282544493675, -0.03137214109301567, -0.03266020119190216, 0.07135987281799316, 0.0026947888545691967, 0.0442589707672596, -0.009320604614913464, -0.03409837931394577, -0.05467171221971512, -0.02017465978860855, -0.008484420366585255, -0.016809552907943726, -0.034349989145994186, -0.020873436704277992, 0.0026813168078660965, 0.004889389034360647, 0.04024241492152214, -0.015677789226174355, 0.028927842155098915, -0.00007601029938086867, -0.01729399338364601, -0.023548025637865067, -0.05159987136721611, -0.006611925549805164, -0.011713624000549316, -0.013814298436045647, 0.018858440220355988, 0.05532452464103699, -0.005854124203324318, 0.037890441715717316, 0.01002845261245966, -0.00048026873264461756, 0.02472444623708725, -0.03931373730301857, -0.05530213192105293, -0.03488340228796005, -0.019609684124588966, -0.007047158200293779, -0.00567674171179533, 0.008539373055100441, -0.029902426525950432, 0.029809173196554184, -0.028175242245197296, -0.022571809589862823, -0.01922634243965149, -0.018473874777555466, -0.021273083984851837, -0.057564426213502884, 0.07291020452976227, -0.017099738121032715, 0.010239423252642155, -0.01847272552549839, 0.012861560098826885, 0.047669824212789536, -0.0225308109074831, -0.03215121105313301, -0.028157362714409828, -0.013908668421208858, -0.049123480916023254, 0.02463984303176403, -0.023485464975237846, -0.014779181219637394, -0.025523599237203598, -0.004114809911698103, 0.07965666800737381, -0.015125205740332603, 0.04952424392104149, 0.04072853550314903, -0.010767350904643536, -0.005304668564349413, -0.010573145933449268, -0.024856572970747948, 0.03472241014242172, -0.007450514007359743, -0.006861414294689894, -0.01743578538298607, -0.03848177194595337, -0.01119191199541092, -0.0467192716896534, -0.012575902044773102, -0.03204657509922981, -0.01820308342576027, 0.04550480842590332, -0.01858246698975563, 0.03180133178830147, 0.0011026961728930473, -0.05278468877077103, -0.05407820641994476, 0.069048672914505, -0.030347738415002823, 0.012492057867348194, 0.037816278636455536, 0.010054399259388447, -0.0008858494111336768, 0.01248858030885458, -0.026291819289326668, -0.000639191537629813, -0.03140879049897194, 0.06097450479865074, -0.007647156715393066, -0.045692093670368195, 0.03803953900933266, 0.05107879638671875, -0.03152590990066528, -0.034244924783706665, -0.004939795937389135, 0.0031410090159624815, -0.009909207932651043, -0.029845088720321655, -0.0020093736238777637, 0.00798684824258089, 0.016260463744401932, 0.01096078846603632, 0.059272680431604385, -0.004151658620685339, 0.04322193190455437, -0.004048065282404423, 0.04072968289256096, -0.028159625828266144, -0.000762704701628536, 0.018099971115589142, -0.03389408439397812, -0.01731250248849392, -0.03193925693631172, -0.013935793191194534, 0.01195054966956377, -0.036261461675167084, 0.02082887291908264, -0.024007225409150124, 0.023370569571852684, 0.019807210192084312, -0.020460456609725952, 0.020224617794156075, -0.02470184490084648, -0.030470579862594604, 0.016910744830965996, -0.002172724576666951, -0.04089191183447838, -0.07002250850200653, 0.03796445205807686, 0.0422954186797142, 0.04455453157424927, -0.06712210923433304, -0.010853536427021027, 0.06734411418437958, -0.027630997821688652, 0.0005019946256652474, -0.016527095809578896, -0.02848931960761547, -0.05313895270228386, -0.06406573206186295, -0.0284383874386549, 0.005034484900534153, 0.007383107673376799, 0.024299101904034615, -0.014234641566872597, -0.029524290934205055, -0.014000981114804745, 0.0008531200583092868, -0.020814333111047745, 0.0020491965115070343, -0.015695054084062576, 0.004471742082387209, -0.006219200324267149, -0.04072292521595955, -0.04747422784566879, -0.003436502767726779, -0.05479283630847931, -0.011186865158379078, -0.01959165371954441, 0.015260187909007072, -0.015251778066158295, 0.03454072028398514, 0.03852654993534088, 0.02731744572520256, -0.021649425849318504, 0.003841502359136939, -0.000513550650794059, 0.04383713752031326, 0.004094151314347982, 0.05145654082298279, 0.04961462691426277, -0.04664583131670952, 0.04906722158193588, 0.01782834157347679, -0.04468822479248047, -0.025818858295679092, -0.011646877974271774, 0.00320502370595932, 0.023054830729961395, -0.020427312701940536, -0.024013621732592583, -0.015387983061373234, -0.03208409249782562, 0.04691052436828613, 0.0012952008983120322, 0.017212247475981712, -0.004838673397898674, 0.02185053564608097, -0.014009297825396061, 0.04076080024242401, -0.017605764791369438, 0.039846550673246384, 0.013697255402803421, -0.002232525497674942, 0.01224762387573719, -0.010965782217681408, 0.007557033095508814, 0.051993802189826965, 0.02485760487616062, -0.03167464956641197, 0.049253106117248535, -0.020082566887140274, -0.0027835925575345755, 0.06871671974658966, -0.01616458222270012, -0.026592161506414413, -0.007229824084788561, -0.00663645938038826, 0.00037811629590578377, 0.04694714397192001, -0.0002541333087719977, -0.019472407177090645, 0.015032422728836536, -0.07835261523723602, -0.03852267190814018, -0.02004537358880043, -0.06016886979341507, -0.02632441185414791, 0.05113201588392258, -0.004818830639123917, 0.015520654618740082, -0.00750954682007432, -0.02172994799911976, 0.004025124479085207, 0.0028844920452684164, -0.00753776216879487, -0.04669038951396942, 0.01746881566941738, -0.02421005256474018, 0.025935247540473938, -0.02192523516714573, -0.010556995868682861, 0.03992762044072151, 0.039867907762527466, -0.012062202207744122, -0.022353066131472588, -0.006349407136440277, 0.021023059263825417, 0.015692714601755142, -0.02609577588737011, 0.0156445000320673, 0.04085063934326172, 0.02606826089322567, 0.008896101266145706, 0.0014733945718035102, 0.02287566289305687, 0.03924978896975517, 0.0437309555709362, -0.0035953684709966183, 0.02238900028169155, 0.0027524109464138746, 0.025523321703076363, -0.0024595391005277634, -0.016174528747797012, -0.04165809974074364, 0.07624281197786331, 0.025863811373710632, -0.010693282820284367, 0.07114031165838242, 0.0025214676279574633, 0.052092570811510086, -0.034159548580646515, -0.016543759033083916, -0.03724956139922142, 0.043333426117897034, 0.012144423089921474, -0.009718718938529491, -0.004890104755759239, 0.016911018639802933, 0.03455601632595062, 0.005799451377242804, -0.0001233572547789663, 0.024932315573096275, 0.03299640119075775, -0.03928837180137634, -0.030232252553105354, -0.032618749886751175, -0.011932256631553173, 0.012805626727640629, -0.013550047762691975, 0.027060257270932198, -0.03558101877570152, -0.01254240982234478, -0.024340417236089706, 0.01767122931778431, 0.049025651067495346, -0.013456634245812893, 0.03601272776722908, 0.005671766120940447, -0.029394563287496567, -0.022292593494057655, 0.0693570226430893, 0.025364287197589874, 0.0009404857992194593, 0.03050888329744339, -0.010180888697504997, -0.008942647837102413, 0.0320398174226284, 0.039496880024671555, 0.016730517148971558, -0.038912300020456314, -0.014857225120067596, 0.0493849515914917, -0.016010766848921776, -0.03523712977766991, 0.017659934237599373, -0.0250651054084301, 0.06497541069984436, -0.011726203374564648, -0.023136882111430168, 0.06397366523742676, -0.06855357438325882, -0.03457576408982277, -0.04019136354327202, 0.04203200340270996, -0.050730470567941666, -0.01195572316646576, 0.032075949013233185, 0.03632131591439247, -0.0426449328660965, 0.0334862545132637, 0.004326591268181801, 0.04850089177489281, -0.006723478436470032, 0.032537538558244705, -0.0026463617105036974, 0.023329688236117363, 0.0452265664935112, -0.04821845144033432, -0.040691912174224854, 0.03510306403040886, -0.02653319761157036, -0.0560787133872509, -0.009828496724367142, -0.055112943053245544, -0.014146423898637295, -0.03261001408100128, 0.014057637192308903, 0.0014396075857803226, 0.03941028192639351, -0.011956006288528442, -0.00929814763367176, -0.009023318998515606, 0.047414567321538925, -0.009930005297064781, 0.004294114653021097, -0.0113305589184165, 0.026552600786089897, -0.0004934120224788785, -0.005842272657901049, -0.04907037317752838, -0.030219390988349915, 0.016702473163604736, -0.041269075125455856, 0.027797363698482513, -0.028522539883852005, 0.0037296584341675043, -0.019270097836852074, -0.04405006021261215, -0.011842915788292885, 0.01298326812684536, -0.0049760350957512856, -0.03824222460389137, 0.033413439989089966, 0.015542975626885891, 0.01744505763053894, -0.017552915960550308, -0.030664874240756035, -0.027332432568073273, 0.023749351501464844, 0.05986621975898743, -0.018031369894742966, 0.04031549021601677, 0.012231760658323765, 0.004807422868907452, 0.019721882417798042, -0.024761494249105453, 0.030613083392381668, -0.036098480224609375, -0.033767931163311005, -0.04391585290431976, 0.03490141034126282, -0.014390463940799236, -0.059682589024305344, -0.005102059803903103, 0.00036949911736883223, 0.013182565569877625, -0.020736929029226303, -0.06053272634744644, -0.02409937232732773, -0.048077791929244995, -0.009618817828595638, -0.059075694531202316, 0.029130613431334496, 0.03105059452354908, -0.002979804528877139, 0.0015607760287821293, -0.05547600984573364, 0.14445027709007263, 0.05079912766814232, 0.04113085940480232, -0.00020918015798088163, 0.01166497077792883, 0.028878381475806236, 0.041464343667030334, -0.02450690045952797, -0.007797119673341513, -0.019367435947060585, 0.026070524007081985, 0.02438073419034481, 0.015502636320888996, 0.041403599083423615, 0.020042646676301956, 0.04512856528162956, -0.03449906036257744, -0.005168070551007986, 0.005849164444953203, -0.05763629078865051, -0.05113343521952629, 0.02785252034664154, -0.019298238679766655, 0.016496757045388222, -0.008150916546583176, 0.005054919980466366, 0.02487673982977867, -0.03527621924877167, -0.021775173023343086, -0.019741544499993324, 0.005694085732102394, -0.018651438876986504, 0.05843741446733475, 0.01995854452252388, -0.024910757318139076, 0.03647731617093086, 0.012981033883988857, -0.021368814632296562, 0.010699245147407055, 0.035259127616882324, -0.015495405532419682, -0.006265580654144287, 0.042383771389722824, -0.035278674215078354, 0.008101182989776134, -0.013025929220020771, -0.026436829939484596, -0.001792555209249258, 0.0006873300299048424, -0.014077983796596527, 0.03700090944766998, -0.029377518221735954, 0.031199505552649498, -0.025130605325102806, -0.024192027747631073, 0.012708031572401524, -0.0029407977126538754, -0.021923821419477463, -0.012756831012666225, -0.022141221910715103, 0.047316908836364746, -0.01414068415760994, -0.037259381264448166, 0.004522090777754784, -0.02298251911997795, 0.012800262309610844, 0.008086913265287876, 0.00873538013547659, -0.017385156825184822, 0.0007867977255955338, -0.016237247735261917, -0.0006004099850542843, 0.0005243757623247802, -0.006409933790564537, 0.05535445734858513, 0.016434580087661743, -0.00736123276874423, 0.04988902807235718, 0.0009882834274321795, -0.01858838088810444, 0.024188119918107986, -0.02077590674161911, 0.0030446969904005527, -0.023470113053917885, 0.03852921351790428, 0.03215005621314049, -0.028408559039235115, -0.016235683113336563, -0.052305545657873154, 0.04940609261393547, 0.03796329349279404, 0.011570770293474197, -0.025353582575917244, 0.009536256082355976, -0.021596631035208702 ]
Substantial career opportunity for lead developer who is flexible and responsive to the changing needs of the business. This position is newly created to address the developing needs of company to initiate formal development process. This position will report to the CTO and have responsibility for software development encompassing design, deployment, and operations. This individual will need to possess substantial previous experience in architecture, design, and implementations of both back office and web based sites/applications/services, and have the ability to institute a well ordered development and test process. Familiarity with a range of development philosophies and the ability to articulate and defend a proposed best practice is important. Understanding of formal design methods such as waterfall, ER, UML, etc. is important, as is the ability to discuss the strengths, weaknesses, or suitability of differing approaches. You should be deeply familiar with the requirements to design and build reliable and scalable applications, and be capable of managing projects and teams. Prior experience in applications for banking/financial services is a plus. Company prepared to offer a compelling compensation package including competitive base salary, incentives, stock options, and world class benefits to the final candidate.
[ -0.03487057611346245, -0.04935353621840477, -0.032992515712976456, -0.03539731726050377, -0.008458643220365047, 0.009942825883626938, -0.003817437682300806, 0.029328398406505585, 0.020595373585820198, 0.009102877229452133, 0.018913155421614647, 0.009594084694981575, 0.005274038761854172, -0.005460756365209818, -0.0020141059067100286, -0.0010257484391331673, -0.036097168922424316, -0.007839803583920002, -0.0040902020409703255, -0.004063522908836603, -0.006596466992050409, 0.012574252672493458, -0.05580291524529457, -0.048974670469760895, -0.050153251737356186, 0.07465047389268875, 0.03512555733323097, -0.025115685537457466, 0.0773639976978302, 0.07344698905944824, -0.05063885077834129, -0.05852437764406204, 0.02484646439552307, -0.06633669137954712, -0.024582475423812866, -0.026685021817684174, 0.040054384618997574, -0.04935121908783913, -0.016637669876217842, -0.04705583676695824, 0.012486733496189117, -0.017055289819836617, 0.030570626258850098, -0.055912576615810394, -0.0603523775935173, -0.017526280134916306, -0.0016280723502859473, -0.06561042368412018, -0.004826001822948456, -0.027875130996108055, 0.018809126690030098, 0.017655501142144203, -0.002877797232940793, 0.0343705378472805, 0.003442401997745037, 0.010905148461461067, 0.03327786922454834, -0.014150661416351795, -0.01987178437411785, 0.041135650128126144, 0.01868053525686264, -0.007111693732440472, 0.02731671929359436, -0.06820035725831985, 0.0022878488525748253, 0.03186669200658798, -0.011662553064525127, 0.019174495711922646, 0.03935815393924713, -0.003516461933031678, -0.0385110042989254, 0.004634418990463018, -0.04660959914326668, -0.026443973183631897, 0.01849798485636711, 0.011906806379556656, 0.012201028876006603, -0.02587081305682659, 0.001967242220416665, -0.005760899744927883, -0.00905036274343729, 0.03729494661092758, 0.021401027217507362, 0.019903041422367096, -0.06536026298999786, 0.02477201819419861, 0.012111508287489414, 0.029294295236468315, -0.019494403153657913, 0.008410116657614708, 0.02386314421892166, 0.06778930127620697, 0.0321425125002861, 0.01059211976826191, -0.004779122769832611, 0.05450594797730446, -0.021231308579444885, 0.015497095882892609, -0.010537213645875454, 0.008736926130950451, 0.028768064454197884, 0.038139719516038895, -0.01748417504131794, 0.03317764773964882, -0.03798932209610939, -0.008581851609051228, 0.02636237069964409, -0.01891273818910122, 0.01662655733525753, -0.030032729730010033, 0.05370057374238968, -0.04005890712141991, 0.019361523911356926, -0.010298593901097775, -0.028604380786418915, 0.0353606715798378, -0.024825742468237877, 0.04363856464624405, -0.02238593064248562, -0.0022305629681795835, 0.02095935307443142, -0.008072124794125557, 0.03131687268614769, -0.013795844279229641, 0.0005760975764133036, -0.03242221847176552, -0.025136198848485947, 0.05712134391069412, -0.012232949957251549, -0.024285808205604553, 0.004254584666341543, -0.03068637289106846, -0.014419423416256905, 0.04623612388968468, 0.011607558466494083, 0.012608830817043781, 0.010699581354856491, 0.008751084096729755, 0.010115846991539001, -0.05214066430926323, 0.040272340178489685, 0.012100154533982277, 0.006931906100362539, 0.10393939912319183, -0.011831902898848057, 0.007324527949094772, -0.005661741364747286, 0.006028592120856047, -0.03725118562579155, 0.032563019543886185, -0.01650356315076351, 0.02204512618482113, 0.006626475602388382, 0.024924712255597115, 0.0006361840642057359, 0.0006805601879023015, 0.00016904099902603775, 0.028454888612031937, 0.04309946671128273, 0.028128374367952347, -0.03711915388703346, 0.015126754529774189, -0.009479362517595291, 0.056375958025455475, -0.020921340212225914, 0.04649024084210396, -0.03196252882480621, -0.009775354526937008, -0.01365205179899931, -0.0019489969126880169, 0.04901241138577461, 0.012554063461720943, -0.015247825533151627, 0.000630255148280412, 0.01954815909266472, 0.04065036028623581, 0.06417917460203171, 0.0168386809527874, 0.05399749428033829, 0.06524670869112015, -0.03747144713997841, -0.0025408845394849777, 0.024522878229618073, 0.07432634383440018, 0.012016115710139275, 0.005488151218742132, -0.0033887007739394903, -0.015746884047985077, -0.040075384080410004, -0.02162013202905655, -0.017767421901226044, 0.02903885394334793, -0.008773582987487316, 0.03733634948730469, -0.0014599801506847143, 0.01909668557345867, -0.009922930039465427, -0.0005967511096969247, -0.036726031452417374, -0.022646723315119743, -0.03314477950334549, 0.010146883316338062, -0.01975433900952339, 0.03343123570084572, -0.02964232675731182, 0.0018923929892480373, -0.01602553203701973, 0.050799090415239334, -0.06700728088617325, -0.0006313730264082551, 0.041324470192193985, 0.010515877045691013, -0.02606399543583393, -0.018545405939221382, 0.01727277599275112, -0.04156091436743736, -0.045781247317790985, 0.06025119870901108, 0.023171188309788704, -0.006774971727281809, -0.0004880153574049473, 0.03872348740696907, 0.0642227753996849, 0.03990158438682556, 0.0014004056574776769, 0.016694210469722748, -0.008093899115920067, 0.057000577449798584, -0.002927253022789955, -0.015644462779164314, 0.009057162329554558, 0.03181501850485802, 0.017540350556373596, 0.06005912274122238, 0.03460324555635452, 0.01098672766238451, 0.04428083077073097, 0.04286516085267067, -0.01128682866692543, 0.023876596242189407, 0.01989383064210415, 0.014167584478855133, 0.035357266664505005, 0.012352817691862583, -0.01577792316675186, -0.010183180682361126, -0.00667935237288475, -0.018367137759923935, -0.01599724031984806, 0.030496632680296898, -0.03587242588400841, 0.06097688153386116, 0.02072519063949585, 0.0380684994161129, -0.01693641021847725, 0.017829107120633125, 0.018838442862033844, 0.040787018835544586, -0.009511161595582962, 0.004722621291875839, 0.008991912938654423, -0.008447499945759773, -0.015562555752694607, 0.027591999620199203, 0.00890884269028902, -0.03075506165623665, -0.004376668017357588, 0.02466479502618313, -0.012959111481904984, -0.07178951054811478, -0.0560428760945797, -0.05481834337115288, -0.048202913254499435, -0.032098956406116486, -0.0624791756272316, 0.006984388921409845, 0.020484650507569313, -0.024984270334243774, 0.03332329913973808, -0.03375931829214096, 0.00043529007234610617, -0.01069570705294609, -0.00528787961229682, 0.0481799878180027, 0.0138406278565526, 0.033578500151634216, -0.015815893188118935, 0.015313246287405491, 0.0023918412625789642, 0.038640983402729034, -0.05664244294166565, 0.0009854550007730722, -0.011982707306742668, -0.03965233638882637, 0.0005854288465343416, -0.011770535260438919, -0.008113386109471321, 0.016379306092858315, -0.062045514583587646, -0.053700752556324005, 0.0017500878311693668, 0.0023172025103121996, 0.011990652419626713, 0.009580547921359539, -0.04858657717704773, 0.08410993963479996, -0.01970079354941845, -0.011969939805567265, 0.0503946952521801, 0.04850723221898079, -0.04590596631169319, 0.009300420992076397, 0.022174041718244553, -0.013572677969932556, -0.027900002896785736, 0.038588833063840866, 0.04352875426411629, -0.010360420681536198, -0.035987742245197296, -0.03413354232907295, -0.003948001656681299, 0.03358224779367447, 0.004432467743754387, -0.0059294383972883224, -0.02955494448542595, 0.03687068447470665, 0.012159895151853561, -0.056167636066675186, 0.03154286369681358, -0.047334201633930206, -0.03525141626596451, -0.03330729156732559, -0.021957824006676674, 0.03885893523693085, 0.008773105219006538, 0.04075028747320175, 0.01855049841105938, -0.005820141639560461, 0.033660564571619034, 0.02727607823908329, 0.036555323749780655, -0.017551446333527565, 0.0015729577280580997, 0.04961374029517174, 0.020049121230840683, 0.04382803291082382, 0.030090251937508583, -0.05843239650130272, 0.022330526262521744, -0.019144758582115173, -0.026923011988401413, 0.036172326654195786, 0.023211602121591568, 0.0014456971548497677, 0.015308590605854988, 0.04344130679965019, -0.06906160712242126, -0.03034696727991104, -0.008941983804106712, 0.00963426474481821, 0.015895428135991096, 0.02445141226053238, -0.021362191066145897, -0.01957247033715248, -0.02729717828333378, -0.06616716831922531, -0.0034321097191423178, 0.024975575506687164, 0.0882101058959961, -0.05577889457345009, 0.05961865931749344, -0.015616443939507008, -0.059616897255182266, 0.0341021753847599, -0.04239644482731819, -0.010032886639237404, 0.05448473244905472, 0.012934627942740917, 0.026852115988731384, -0.028155921027064323, 0.02915998548269272, -0.009927280247211456, 0.028893854469060898, 0.0599980466067791, -0.0006798156537115574, 0.0212165005505085, -0.006702650338411331, -0.01123776938766241, -0.04386109113693237, -0.02339617721736431, -0.006376737728714943, -0.0039031251799315214, 0.012976175174117088, -0.009275685995817184, -0.05327498912811279, -0.04441579058766365, 0.017131492495536804, 0.03986230120062828, 0.04724631831049919, -0.003577175550162792, -0.001106759300455451, -0.019774947315454483, 0.018194936215877533, 0.015434646047651768, -0.027188755571842194, 0.028071973472833633, -0.035554394125938416, 0.04147980734705925, -0.0036908776964992285, 0.006047370377928019, -0.025998204946517944, -0.031170153990387917, -0.013767770491540432, 0.02161797694861889, -0.0003982698544859886, -0.04037987440824509, -0.04133632034063339, 0.00707271508872509, 0.01732058636844158, 0.04491085931658745, -0.043583665043115616, -0.010863754898309708, -0.028277115896344185, 0.06032624840736389, 0.03702348843216896, -0.04851469025015831, -0.03225153312087059, -0.024243198335170746, 0.033755481243133545, 0.03400789573788643, -0.012376886792480946, -0.05091947689652443, -0.011215719394385815, -0.01041797548532486, -0.052996233105659485, 0.017153918743133545, 0.05689633637666702, -0.008328313939273357, -0.004565713461488485, -0.032588280737400055, 0.04530629515647888, 0.015186473727226257, -0.012980363331735134, -0.027565181255340576, -0.0034832514356821775, 0.0040751569904387, -0.004536394961178303, 0.008467071689665318, -0.004361600149422884, -0.002415539463981986, 0.016454480588436127, -0.0675535649061203, 0.016439855098724365, -0.0004915539175271988, -0.0371357724070549, -0.0448651984333992, 0.010515083558857441, 0.031352899968624115, 0.028293782845139503, -0.018643366172909737, 0.030115915462374687, -0.02915482223033905, 0.04300353303551674, -0.024428969249129295, -0.03296557813882828, 0.05869131535291672, -0.008637632243335247, -0.00990228820592165, 0.031548094004392624, 0.04790841415524483, -0.025181489065289497, 0.0007894581649452448, 0.010028150863945484, -0.0395648330450058, 0.0379800871014595, -0.042299605906009674, 0.025827057659626007, -0.04095454514026642, -0.01773955672979355, -0.005503766238689423, -0.026337668299674988, 0.0194476917386055, 0.007945315912365913, -0.02687998302280903, -0.016810452565550804, -0.055029045790433884, -0.03579837083816528, -0.004893765319138765, -0.02044093981385231, 0.07599180936813354, -0.004437188617885113, -0.0025068363174796104, -0.0006058968137949705, 0.01635056920349598, 0.007818293757736683, 0.009619555436074734, -0.01781712844967842, -0.01668700948357582, -0.007787446957081556, 0.0064546456560492516, 0.03291669860482216, -0.04120861738920212, -0.04730629175901413, -0.0033541428856551647, -0.009557649493217468, -0.042669426649808884, -0.04752400889992714, 0.01177914161235094, -0.04533100500702858, 0.00363970291800797, -0.03829987347126007, 0.00644684536382556, -0.01602974534034729, 0.040946681052446365, 0.01822628267109394, -0.0015430452767759562, -0.02053139917552471, 0.02300853468477726, -0.059407301247119904, 0.03646666184067726, 0.04192951321601868, -0.02656385861337185, -0.03627162426710129, 0.0318390391767025, -0.0008638945291750133, 0.06692562997341156, 0.00045656616566702724, -0.01365868654102087, -0.04904065653681755, -0.021344440057873726, 0.02799319475889206, -0.06371443718671799, 0.006090555340051651, -0.03858555108308792, -0.04048141837120056, 0.013512334786355495, 0.008259996771812439, 0.02124798856675625, -0.024173827841877937, -0.014557722955942154, -0.0353611521422863, -0.002600444480776787, -0.042232900857925415, 0.01642441749572754, -0.007683747448027134, -0.00565765518695116, 0.007938701659440994, 0.06890670210123062, 0.015443429350852966, 0.006127732805907726, -0.009218386374413967, 0.033487509936094284, 0.04652028903365135, 0.005005090031772852, -0.041300054639577866, -0.030943576246500015, 0.008593578822910786, -0.01847800612449646, -0.008736595511436462, 0.011814798228442669, -0.042551398277282715, 0.05750860273838043, -0.04091509431600571, 0.005423242691904306, -0.012844810262322426, -0.021619237959384918, -0.03433508798480034, 0.004893924575299025, 0.03438562899827957, -0.022622663527727127, 0.031138675287365913, -0.013459661044180393, 0.055408209562301636, 0.04455488547682762, 0.003701845183968544, -0.034134622663259506, -0.04678504168987274, -0.022735225036740303, -0.04606808349490166, 0.008463012985885143, -0.02345276065170765, -0.007963716983795166, -0.019335368648171425, -0.03752967715263367, 0.04714289680123329, -0.022327173501253128, 0.05425833538174629, 0.05745163932442665, -0.005220483057200909, 0.017488650977611542, -0.007385589648038149, 0.026402968913316727, 0.020626384764909744, -0.028201548382639885, -0.0006022649467922747, -0.000704643432982266, -0.016362769529223442, -0.003657018532976508, -0.05179372429847717, -0.03800755366683006, -0.03141505643725395, -0.010359901003539562, 0.017495086416602135, 0.006281443405896425, 0.01054658368229866, 0.0041037690825760365, -0.04699724167585373, -0.023195266723632812, 0.08430502563714981, -0.03237835690379143, -0.00458311615511775, 0.040786486119031906, 0.037158139050006866, -0.03045106679201126, 0.03564617037773132, -0.025998324155807495, 0.01930376887321472, -0.05703842267394066, 0.054339904338121414, -0.004958982579410076, -0.03754677250981331, 0.028721949085593224, 0.05719153583049774, -0.051488183438777924, -0.07098164409399033, 0.010195082053542137, 0.01583367958664894, 0.005292385350912809, -0.04773123189806938, 0.00712908711284399, 0.008124084211885929, -0.014466924592852592, 0.018924832344055176, 0.04086507856845856, 0.007026612292975187, 0.030260790139436722, 0.002566621406003833, -0.0002606126945465803, -0.02145944908261299, -0.01581190712749958, 0.02285303920507431, -0.004006561357527971, -0.024046296253800392, -0.029719557613134384, -0.019863851368427277, -0.010188386775553226, 0.007109853904694319, 0.05356127396225929, -0.012790968641638756, 0.019435379654169083, 0.032388973981142044, 0.014855640940368176, 0.037850819528102875, -0.006149194668978453, -0.014195727184414864, 0.01695987582206726, -0.0206633061170578, -0.04278530552983284, -0.03364633768796921, 0.022848015651106834, -0.021898478269577026, 0.019440431147813797, -0.04823644459247589, 0.008602450601756573, 0.03702174499630928, -0.004196495749056339, 0.0042212107218801975, -0.023524213582277298, -0.04093240201473236, -0.0736217126250267, -0.04905431717634201, -0.03687835857272148, -0.035994041711091995, -0.020632905885577202, 0.02406775765120983, 0.009803803637623787, -0.020453982055187225, -0.012174858711659908, 0.015859659761190414, -0.007300730794668198, -0.018075505271553993, -0.02529403381049633, -0.003501604311168194, -0.026924172416329384, -0.026004604995250702, -0.05625941604375839, 0.009151794947683811, -0.0241001658141613, 0.03750885650515556, -0.02103572152554989, -0.012403636239469051, 0.018778488039970398, 0.012405726127326488, -0.011573053896427155, 0.03185581788420677, -0.008570589125156403, -0.020094148814678192, -0.005305377300828695, 0.02047519013285637, -0.006634998135268688, 0.029330607503652573, 0.018773958086967468, -0.02051159366965294, 0.01633874699473381, 0.027802420780062675, -0.021604761481285095, -0.004829025361686945, 0.010166696272790432, -0.01152871921658516, -0.016379935666918755, -0.03561955690383911, -0.01458021905273199, 0.024371901527047157, -0.04230392724275589, 0.01825253665447235, 0.01081673614680767, 0.01707509718835354, -0.0013041023630648851, -0.0162011981010437, 0.0088437395170331, 0.08143249154090881, -0.014724664390087128, 0.055304087698459625, 0.02168285846710205, 0.03480330482125282, 0.03469180315732956, -0.001439713523723185, 0.017900193110108376, 0.007123255170881748, 0.016457660123705864, 0.008975176140666008, 0.015872398391366005, 0.013797040097415447, -0.004392658825963736, 0.02933233231306076, -0.03022347390651703, -0.03340265899896622, -0.027527613565325737, -0.014124345034360886, -0.03018268570303917, 0.06334786862134933, 0.006208721548318863, 0.01627214625477791, 0.030332086607813835, -0.028382709249854088, 0.007522450760006905, 0.010190489701926708, -0.05463729798793793, -0.03377596288919449, 0.025332795456051826, -0.015942968428134918, -0.003036814508959651, -0.009580089710652828, -0.03287379443645477, -0.020412156358361244, 0.002776667708531022, -0.01981293223798275, -0.01646517589688301, 0.01816864311695099, -0.0034009015653282404, -0.016062477603554726, -0.03324303403496742, -0.022120453417301178, 0.025637706741690636, 0.049938101321458817, -0.035154473036527634, -0.05765923112630844, 0.016431814059615135, 0.040843766182661057, 0.02032794989645481, -0.018542438745498657, -0.018004000186920166, 0.026090173050761223, -0.011738866567611694, 0.010262913070619106, -0.02405433915555477, 0.010254882276058197, -0.010991757735610008, 0.027448341250419617, -0.01649804227054119, 0.01778580993413925, -0.029850799590349197, 0.04497118294239044, 0.011200114153325558, -0.025384297594428062, -0.03835694119334221, 0.029764961451292038, 0.03310849890112877, -0.02886231243610382, 0.02536139264702797, 0.01167321391403675, 0.019325697794556618, -0.022189529612660408, 0.004108517896384001, -0.011756516993045807, 0.05321045219898224, 0.06487718969583511, 0.035464100539684296, -0.012485900893807411, 0.01678236573934555, 0.04447469487786293, 0.009413855150341988, -0.027855565771460533, 0.03904270380735397, 0.047755464911460876, -0.02163085527718067, 0.009349706582725048, -0.0403013713657856, 0.011227563954889774, -0.00030974982655607164, -0.0020805334206670523, 0.012120789848268032, -0.04155692458152771, 0.007406250573694706, -0.02453787252306938, -0.01677846349775791, 0.032569266855716705, -0.04489010199904442, -0.012328040786087513, -0.024194465950131416, -0.043677568435668945, 0.005424789153039455, 0.07120657712221146, -0.011728288605809212, 0.02667277865111828, 0.032677728682756424, 0.03304930403828621, -0.00664445199072361, 0.02621510997414589, 0.031165478751063347, -0.019479623064398766, -0.029563672840595245, 0.02169935218989849, 0.025313397869467735, -0.004935475531965494, -0.05577593296766281, 0.00811908207833767, -0.03842142969369888, 0.06871142983436584, -0.006886261980980635, -0.0033202217891812325, 0.04657698795199394, -0.06146048381924629, -0.0382041297852993, -0.036921244114637375, 0.03713333606719971, -0.03613722324371338, -0.024181440472602844, 0.020249558612704277, -0.010616255924105644, -0.0575498566031456, 0.03713417425751686, -0.008352497592568398, 0.023945072665810585, 0.006549305748194456, 0.06159102916717529, -0.017923252657055855, 0.041836149990558624, 0.04429343342781067, -0.02747783251106739, 0.008870941586792469, 0.04731066897511482, -0.05160927027463913, -0.040577515959739685, -0.015705615282058716, -0.01449513342231512, -0.06170259043574333, 0.010057831183075905, -0.02327113039791584, 0.016489002853631973, 0.0472867451608181, -0.008134694769978523, -0.04890483245253563, 0.011096339672803879, 0.04948684945702553, -0.028115855529904366, 0.015984326601028442, 0.020305398851633072, 0.048437267541885376, -0.0029521440155804157, -0.007893472909927368, 0.0035774537827819586, -0.024998070672154427, 0.0206727534532547, -0.047014616429805756, 0.02269267477095127, 0.010992726311087608, -0.0380103662610054, -0.031131193041801453, -0.015482482500374317, -0.04318464547395706, -0.006446585990488529, -0.02919233776628971, -0.01877950318157673, 0.04283187910914421, 0.017297647893428802, 0.036232806742191315, -0.0043023317120969296, -0.0496135875582695, -0.01581001840531826, 0.019449887797236443, 0.08215075731277466, -0.0026912973262369633, 0.029689820483326912, 0.029522759839892387, 0.015849752351641655, -0.007328127510845661, -0.04406528174877167, 0.009027766063809395, -0.000011518376595631707, -0.02183474227786064, -0.0032006462570279837, -0.006241765338927507, -0.027779271826148033, -0.05777428299188614, 0.017193671315908432, 0.00832516048103571, 0.00936182402074337, 0.012398207560181618, -0.04123258963227272, -0.012958215549588203, -0.06676438450813293, -0.007284972351044416, -0.05150456726551056, 0.009672636166214943, -0.015605135820806026, 0.007207004353404045, 0.0330209955573082, -0.044775404036045074, 0.14603540301322937, 0.04136170446872711, 0.04189232736825943, 0.012672892771661282, 0.0307394340634346, 0.04324629530310631, 0.0010485670063644648, 0.00005780208084615879, 0.035863086581230164, -0.04892202466726303, 0.03105267509818077, 0.010809438303112984, 0.005168295465409756, 0.007733258418738842, 0.024279223755002022, 0.04123590141534805, -0.03674989566206932, 0.0043216305784881115, -0.010889665223658085, -0.05105169489979744, -0.08561377972364426, 0.020773841068148613, 0.013371754437685013, 0.017268067225813866, -0.008567770943045616, 0.019777461886405945, -0.008456185460090637, -0.03256947174668312, -0.0060615516267716885, -0.007011296693235636, 0.024191517382860184, -0.021938541904091835, 0.0074026919901371, 0.0009359427494928241, -0.01874406635761261, 0.05680420994758606, 0.0031559120398014784, -0.01844920963048935, -0.025816679000854492, 0.05182299017906189, 0.014829679392278194, -0.022505320608615875, -0.002086418215185404, -0.05095698684453964, 0.012105056084692478, 0.016980953514575958, -0.023314956575632095, -0.012232254259288311, 0.022794483229517937, -0.05874381586909294, 0.017727607861161232, -0.017786674201488495, 0.05530088394880295, -0.003664822317659855, -0.0344361886382103, 0.02171866036951542, 0.013073181733489037, -0.014575992710888386, -0.0123769985511899, 0.008188016712665558, 0.008393512107431889, 0.015084406360983849, -0.02230183221399784, 0.03240205720067024, -0.034390613436698914, 0.03319895267486572, 0.017943428829312325, 0.01890316791832447, -0.012594589963555336, -0.03170809894800186, -0.014491213485598564, -0.017752930521965027, -0.027062607929110527, -0.039196401834487915, 0.04160448908805847, 0.045233096927404404, -0.01917673461139202, 0.04720018059015274, -0.006145804189145565, -0.05410660430788994, -0.0051369452849030495, 0.009611332789063454, -0.0023153615184128284, -0.006356679368764162, 0.017957281321287155, 0.022129958495497704, -0.05342915281653404, -0.010985825210809708, -0.029640788212418556, 0.03531419113278389, 0.044400960206985474, 0.05043787881731987, -0.004677746910601854, -0.030101845040917397, -0.01794634386897087 ]
And so the circus moves on. I'm sitting in Pune right now but will leave here at 5pm local time for a flight to Delhi that will get me to my hotel just in time for last orders if I'm lucky. When I started this little series of posts from abroad, I mentioned how strange things were, how I'd have to adjust. That's still true, but India is huge and there are big differences between cities and states, never more true than in the case of Chennai and Pune. Chennai is a BIG place, it takes hours in a car to get from end to end, with frequent disruptions to traffic caused by toll roads and the placement of arbitrary barriers on a carriageway โ€“ how the locals don't smash into them more often than they do is a mystery. Pune by contrast is a BIG place, it takes hours in a car to get from end to end, with frequent disruptions to traffic caused by, erm, traffic. That's it, no tolls, no barriers just a swarm of cars, lorries tuktuks and bikes. Politics in Chennai and Tamil Nadu is a messy, corrupt affair, with a government that has just spent a huge sum of money celebrating the birthday of the ruling party head โ€“ who currently lives under house arrest for bribery. Politics in Pune and Maharashtra is a messy corrupt affair, with some ministers upstaging John Prescott by being completely illiterate and with all parties desperately trying to show how they emulate this man. Chhatrapati Shivaji โ€“ founder of the Maratha Empire. A bit like Prescott trying to identify with Henry V really. It's in the layout of the city and the incredible warmth of its people that Pune stands out. The roads are wide and are being constantly expanded, new bridges and infrastructure across the river, a bustling military presence. โ€“ The Bombay Sappers being just one of the units stationed here, a total of five military units surrounding the city, including the air force base. The streets are mostly clean and I've seen sweepers and cleaners every day on my journey to work and although there is poverty, the shanty towns are smaller and there's less of them. Even so, seeing THIS from the back of a car isn't easy. The little girl isn't begging, there's a standpipe across six lanes of road from the huts. And then she has to walk back with a full bucket. I doubt she's wondering when her first iPhone will turn up. The city is definitely better off than Chennai though, there is heavy industry including massive car plants for Volkswagen and Mahindra across the river from the office here, oil processing and miltary support factories. IT is also a growing business, Fujitsu have a building a few hundred metres away. It's relatively cheap here compared to Bangalore or Chennai and the standard of life is definitely better for most people, even if those flats in the picture look a little grim by our standards. The landscape is fairly green at the moment, it'll get less so until July or so when the monsoon rains kick in and repopulate the rivers and lakes. I mentioned in an earlier post that I could see huge birds of prey over the city, here they are, the Indian Spotted Eagle. Imagine that, eagles in their dozens over a city centre. I'll be leaving the office soon to go to the airport and play the silly security dance again and I'll be genuinely sorry to leave. In all likelihood I'll be back soon and for the first time on this trip I'm actually looking forward to a repeat visit. the next pictures are of the office gardensโ€ฆ Think on THAT from your current view.
[ -0.0033911708742380142, -0.0018303538672626019, -0.02516709268093109, -0.014573429711163044, -0.03670467808842659, -0.029131807386875153, -0.007927467115223408, 0.005468393210321665, 0.02722255140542984, -0.003156291088089347, 0.007626797538250685, 0.03536801040172577, 0.004947693087160587, -0.05598358437418938, -0.042062319815158844, -0.0036387378349900246, -0.041418831795454025, -0.011370704509317875, -0.017740899696946144, -0.004048407543450594, -0.015031958930194378, 0.012918572872877121, -0.06638430058956146, -0.048326436430215836, 0.007470224518328905, 0.04765981808304787, 0.019755935296416283, 0.0031778658740222454, 0.05158291012048721, 0.055370673537254333, -0.009332261979579926, -0.025941956788301468, 0.05051393434405327, -0.015767885372042656, -0.01777544990181923, -0.008228602819144726, 0.038060158491134644, -0.011273805052042007, -0.003349080914631486, -0.047121357172727585, -0.015194350853562355, -0.03794075921177864, 0.024365466088056564, -0.03879386931657791, -0.03547060489654541, 0.02009793370962143, -0.010126549750566483, -0.044561389833688736, 0.040422163903713226, -0.04205523431301117, -0.022088268771767616, -0.0017521991394460201, -0.009309930726885796, 0.007714030798524618, 0.00659577501937747, -0.0013716531684622169, -0.015037142671644688, -0.00954873114824295, -0.001652965322136879, 0.04526330903172493, 0.018699772655963898, 0.0075789582915604115, 0.039992570877075195, -0.0856301411986351, 0.011285592801868916, 0.0024252941366285086, 0.008524695411324501, -0.010593261569738388, 0.021059183403849602, -0.030185692012310028, -0.033358316868543625, 0.002417111536487937, 0.01007853727787733, -0.027731625363230705, -0.00862895604223013, -0.004534795880317688, 0.016209781169891357, 0.013889708556234837, -0.01930667832493782, 0.014384155161678791, 0.02879589982330799, 0.03885016590356827, -0.019154217094182968, 0.014319094829261303, -0.030515586957335472, -0.006374664139002562, 0.004873983096331358, 0.03375701606273651, -0.012691225856542587, 0.007012432906776667, 0.009147188626229763, 0.05772556737065315, -0.02034943737089634, -0.013516714796423912, 0.036820169538259506, 0.045279406011104584, -0.048814188688993454, 0.027500003576278687, -0.0025906236842274666, 0.018422992900013924, 0.040678851306438446, 0.017897171899676323, 0.0038372196722775698, 0.026126429438591003, -0.0323665551841259, -0.010524480603635311, -0.02154800482094288, 0.003989895340055227, -0.008004629984498024, -0.020250380039215088, 0.00041929955477826297, -0.022634973749518394, 0.02693561278283596, 0.01479186862707138, 0.010892554186284542, 0.04575873911380768, -0.008405241183936596, 0.022691957652568817, -0.036350399255752563, 0.022951247170567513, 0.01268965844064951, -0.0030056810937821865, 0.030830953270196915, -0.00876152515411377, 0.025363681837916374, -0.023663446307182312, -0.01720030978322029, 0.051409266889095306, -0.01803639344871044, -0.018651481717824936, -0.004751176573336124, -0.04496811330318451, -0.007556368596851826, -0.017127109691500664, 0.009962162934243679, 0.007017465308308601, -0.023979350924491882, 0.03671525791287422, 0.01476412545889616, -0.035158660262823105, 0.039632558822631836, 0.011481222696602345, 0.01911998726427555, 0.07663968205451965, 0.03469390049576759, 0.025782955810427666, -0.00649384967982769, -0.002940872684121132, -0.029950281605124474, 0.03193112835288048, -0.02497924119234085, -0.014155983924865723, 0.006195511668920517, 0.0010801884345710278, -0.0040280683897435665, -0.003819904988631606, 0.00422854907810688, -0.0022270032204687595, 0.0026404426898807287, 0.03664930909872055, -0.004494891501963139, 0.010668119415640831, -0.0015603865031152964, 0.016708854585886, -0.01173717062920332, 0.052023228257894516, -0.02673022262752056, -0.02270912006497383, 0.0031901593320071697, -0.03820304200053215, 0.010664865374565125, -0.010900900699198246, -0.0346301794052124, 0.0015015557873994112, 0.04363138973712921, 0.05786348879337311, 0.018781371414661407, -0.009171669371426105, 0.04967283457517624, 0.029680687934160233, -0.029749689623713493, 0.029578151181340218, 0.007053404115140438, 0.0571923553943634, 0.03203606978058815, 0.011271944269537926, 0.014371946454048157, 0.012142888270318508, -0.007082041818648577, -0.05319097638130188, -0.015999043360352516, 0.045697301626205444, -0.020154718309640884, 0.04294179752469063, 0.03455113247036934, -0.008483489975333214, -0.011530104093253613, -0.0350520946085453, -0.007720098830759525, -0.053283192217350006, -0.03298256918787956, 0.06491713225841522, -0.05352669209241867, 0.03980278596282005, -0.023010963574051857, 0.00645915511995554, 0.011199425905942917, 0.06775610893964767, -0.027371671050786972, 0.01736324280500412, 0.025379417464137077, 0.017039775848388672, 0.0006069181836210191, -0.02857857383787632, 0.003622002899646759, -0.020032871514558792, -0.022146206349134445, 0.06698647141456604, 0.013637879863381386, -0.023650674149394035, 0.05710742995142937, 0.028720417991280556, 0.026106633245944977, -0.004056474193930626, 0.010294471867382526, 0.010386931709945202, 0.008702429942786694, 0.03683506324887276, -0.035099733620882034, -0.0035181387793272734, -0.017183195799589157, 0.0354008674621582, 0.02394532412290573, 0.04500144347548485, 0.04199029132723808, 0.005060258321464062, 0.05469883978366852, 0.030970869585871696, -0.01393700297921896, -0.005264584440737963, 0.017750771716237068, 0.020220434293150902, 0.05239434540271759, -0.0016317853005602956, 0.011078265495598316, 0.06541767716407776, -0.009917800314724445, -0.03352085128426552, -0.02046859636902809, 0.04066124185919762, 0.013559144921600819, 0.04367351159453392, 0.0440441332757473, 0.04700186476111412, -0.0010170298628509045, 0.0020258580334484577, 0.037843361496925354, 0.038277436047792435, -0.014664489775896072, -0.03168701380491257, 0.019624976441264153, 0.015944698825478554, -0.007792167831212282, -0.005974902305752039, 0.04248175397515297, -0.00030255859019234776, -0.023773446679115295, 0.032716549932956696, -0.018743157386779785, -0.04538764804601669, -0.0279421154409647, -0.04885467514395714, -0.042613137513399124, -0.033154234290122986, -0.040184903889894485, 0.006278528831899166, 0.06516797095537186, -0.03913670778274536, 0.022012898698449135, 0.012356995604932308, -0.006769437342882156, -0.05015251785516739, -0.01683586649596691, 0.05955416336655617, 0.05527428165078163, 0.03509087860584259, -0.04101569950580597, 0.0566500760614872, 0.022423719987273216, 0.040278200060129166, -0.03271035850048065, -0.001147794653661549, -0.02519812248647213, 0.020145129412412643, 0.013898782432079315, -0.0097591457888484, -0.0003210906870663166, 0.000914001080673188, -0.05772959813475609, -0.037663351744413376, -0.0005071016494184732, 0.022766418755054474, -0.009882311336696148, 0.03329085931181908, -0.029411539435386658, 0.047547776252031326, 0.03160762041807175, -0.030987808480858803, 0.03218887001276016, 0.02347007766366005, -0.011017397977411747, 0.0505002923309803, 0.016806386411190033, 0.019643064588308334, -0.04665427282452583, 0.06555908918380737, 0.052563734352588654, 0.0023127824533730745, -0.043211255222558975, -0.021987922489643097, -0.020536040887236595, 0.0267287939786911, 0.03170666843652725, -0.0014556045643985271, -0.03136498108506203, 0.028078967705368996, 0.05236664041876793, -0.06128717586398125, 0.03525697439908981, -0.0664329081773758, -0.03330274298787117, -0.017626281827688217, -0.04952801391482353, 0.010380009189248085, 0.014533900655806065, 0.022601205855607986, -0.024609532207250595, -0.04011313617229462, 0.007329536601901054, -0.024312235414981842, -0.012193175964057446, -0.04188653454184532, 0.020629988983273506, 0.028587134554982185, -0.025536805391311646, 0.024175330996513367, 0.02764222025871277, -0.0376770906150341, 0.02005067840218544, 0.006555089261382818, 0.01297763641923666, 0.005487857852131128, 0.05487192049622536, 0.030473150312900543, 0.0041490881703794, 0.03847077488899231, -0.026483694091439247, -0.01944805309176445, 0.013031055219471455, 0.0018654289888218045, -0.0008023492991924286, -0.0017346725799143314, 0.02482537366449833, -0.00916154682636261, -0.06585685908794403, -0.06958028674125671, 0.016754573211073875, -0.007359696086496115, 0.04927939176559448, -0.047686945647001266, 0.07882311195135117, -0.047263432294130325, -0.03527789190411568, 0.04787195846438408, -0.06660570949316025, -0.0030094520188868046, 0.042706169188022614, -0.011578825302422047, 0.0411582849919796, -0.07473326474428177, 0.01666110008955002, -0.04850034415721893, -0.0035367796663194895, 0.040251847356557846, -0.014364325441420078, 0.02442057617008686, -0.03775721788406372, -0.052957676351070404, -0.018920237198472023, -0.025893226265907288, -0.001944662886671722, -0.00008974796219263226, -0.015288620255887508, -0.031111357733607292, -0.0384332574903965, -0.05338820442557335, 0.03995085880160332, 0.042322441935539246, 0.05297508090734482, -0.017342763021588326, 0.03095228038728237, 0.016061989590525627, -0.0036068272311240435, 0.053522612899541855, -0.0046302927657961845, 0.015582889318466187, -0.013450183905661106, 0.03722835332155228, 0.05031561478972435, -0.0359623059630394, -0.026886066421866417, -0.03963809460401535, -0.004178309813141823, 0.017921390011906624, 0.006045980844646692, -0.013166068121790886, -0.03392379358410835, 0.04721945524215698, 0.008105164393782616, 0.01309356838464737, -0.05254368484020233, -0.003048721933737397, -0.022620266303420067, 0.025478599593043327, 0.007458535023033619, -0.053592391312122345, 0.012257261201739311, -0.025593599304556847, 0.061122387647628784, 0.017851796001195908, 0.029831616207957268, -0.08288897573947906, 0.0030533061362802982, -0.018159782513976097, -0.02726457267999649, -0.01193167082965374, 0.025987448170781136, -0.03720537945628166, -0.0005129947094246745, -0.03838711604475975, 0.036947816610336304, 0.01550726592540741, -0.021101415157318115, -0.006927617359906435, -0.008405782282352448, 0.048506878316402435, -0.0063018109649419785, 0.04326290264725685, -0.04233700409531593, -0.035987697541713715, 0.027429357171058655, -0.07579419761896133, 0.004575376398861408, 0.01420493796467781, -0.020238490775227547, -0.0003594525624066591, -0.02769499272108078, 0.03153132274746895, 0.055055100470781326, -0.021964725106954575, 0.010103803128004074, -0.020573925226926804, 0.03209245204925537, -0.03332709148526192, -0.03563931584358215, 0.054930370301008224, 0.0049704997800290585, -0.03321322053670883, 0.054801106452941895, 0.027435291558504105, -0.004988642875105143, 0.0025797104462981224, -0.005011309403926134, -0.04980387166142464, 0.01473276223987341, -0.039155129343271255, -0.00029212801018729806, -0.012208047322928905, -0.017494065687060356, 0.02611241489648819, -0.018521759659051895, 0.013533679768443108, 0.01170527096837759, 0.008051378652453423, -0.03447127342224121, -0.07858332991600037, -0.0418008491396904, 0.015215901657938957, 0.003514222800731659, 0.024309340864419937, 0.03898753970861435, -0.01084311306476593, -0.024590007960796356, 0.009068267419934273, 0.027499813586473465, 0.007204733323305845, -0.008626199327409267, 0.012094282545149326, 0.011033179238438606, -0.006252306513488293, 0.013500207103788853, 0.007074371445924044, -0.017558209598064423, -0.010926764458417892, -0.009088891558349133, -0.02108101174235344, -0.04500160738825798, 0.01676996238529682, -0.039684273302555084, 0.004344956949353218, -0.026516739279031754, -0.035730134695768356, 0.0025333683006465435, 0.0016963717062026262, 0.023849088698625565, 0.02262183092534542, 0.00035885663237422705, 0.02254652790725231, -0.018300971016287804, 0.034862175583839417, 0.027349935844540596, -0.03291559964418411, -0.018133437260985374, 0.02146211266517639, 0.023626552894711494, 0.051094867289066315, -0.009023630991578102, -0.006948673166334629, -0.05746113136410713, -0.0742228776216507, 0.0027985433116555214, -0.06059282273054123, -0.03602995723485947, -0.033066682517528534, -0.027622617781162262, -0.028819521889090538, 0.02011844329535961, 0.0014766408130526543, -0.0107078542932868, -0.012621615082025528, -0.03634212911128998, 0.019822070375084877, -0.009036174975335598, -0.010175270959734917, -0.0054085273295640945, -0.03930360823869705, -0.010100108571350574, 0.04992769658565521, -0.01417260617017746, 0.035165008157491684, 0.026710044592618942, 0.010796042159199715, 0.01798500493168831, -0.04084685817360878, -0.07631934434175491, -0.07071373611688614, 0.00403794227167964, -0.004213718231767416, 0.00138960313051939, -0.009672371670603752, -0.0391099713742733, 0.038287460803985596, -0.05170631781220436, 0.003772821044549346, -0.02104031667113304, -0.01351605262607336, -0.025798574090003967, -0.031807929277420044, 0.0487603135406971, -0.0258211400359869, 0.012199396267533302, -0.022857792675495148, 0.05931983143091202, 0.03345279023051262, -0.011581209488213062, -0.03436792269349098, -0.01287798024713993, -0.06178558990359306, -0.06061231344938278, 0.022543568164110184, -0.049597907811403275, -0.022256340831518173, -0.06711960583925247, 0.030481670051813126, 0.05591200292110443, -0.0058692931197583675, -0.0024969838559627533, 0.03311217576265335, 0.02152659371495247, -0.0010683516738936305, -0.03439192846417427, 0.019580254331231117, 0.016746260225772858, -0.023765215650200844, -0.02150459587574005, -0.00917612574994564, -0.028246622532606125, 0.04291733354330063, -0.03548085689544678, -0.033737663179636, -0.03946497291326523, -0.006401692517101765, 0.061900343745946884, 0.00205691228620708, 0.0522729717195034, -0.005147710908204317, -0.057143066078424454, -0.0495632141828537, 0.03265770897269249, 0.008377434685826302, -0.008777591399848461, 0.07136690616607666, 0.00265711173415184, -0.032478053122758865, 0.018607746809720993, 0.0258374884724617, 0.006788051687180996, -0.029058950021862984, 0.07392377406358719, -0.023176532238721848, -0.05533935874700546, 0.0239400677382946, 0.0669214054942131, -0.06662219762802124, -0.043949585407972336, -0.03619350865483284, 0.0048795645125210285, 0.008228589780628681, -0.037840407341718674, -0.013367700390517712, -0.018184490501880646, 0.002177496673539281, 0.008784166537225246, 0.05519983917474747, -0.02270452491939068, 0.04699336737394333, 0.04079990088939667, 0.017724450677633286, -0.021016618236899376, 0.014011857099831104, 0.024086063727736473, -0.031130189076066017, -0.03779786080121994, -0.0516706220805645, -0.017706014215946198, -0.013263063505291939, -0.026708194985985756, 0.021220017224550247, -0.03556186333298683, 0.026160595938563347, 0.020724786445498466, 0.006102675572037697, 0.03613224998116493, -0.02142127975821495, 0.013631902635097504, 0.034013327211141586, -0.05360677093267441, -0.031400591135025024, -0.02946298196911812, 0.028552290052175522, -0.01789119653403759, 0.0403306819498539, -0.025350868701934814, -0.0031185965053737164, 0.009205472655594349, -0.012279531918466091, -0.01856994442641735, -0.0665077343583107, -0.07028671354055405, -0.05600076913833618, -0.03151603415608406, -0.02818141132593155, -0.01633005402982235, 0.0039752451702952385, 0.017265571281313896, -0.004379526246339083, -0.01727938838303089, 0.0036231798585504293, 0.022948330268263817, -0.03801566734910011, -0.006066467612981796, -0.016356898471713066, 0.01925690658390522, -0.03828655555844307, -0.046249788254499435, -0.04606854170560837, -0.002266972791403532, -0.00048816404887475073, 0.00003863023448502645, 0.0062005650252103806, 0.016009878367185593, -0.0007744813337922096, -0.004623811691999435, 0.011699017137289047, 0.007657590322196484, 0.005627358797937632, -0.036318957805633545, -0.0004177068476565182, 0.05333232879638672, -0.008379875682294369, 0.010124321095645428, 0.03354526683688164, -0.011840908788144588, 0.027277855202555656, -0.009354401379823685, -0.021313998848199844, -0.0032404738012701273, -0.009029801934957504, -0.015701739117503166, 0.00013705466699320823, -0.029134629294276237, -0.012995279394090176, 0.020684270188212395, -0.013958626426756382, 0.0007918530609458685, -0.03070712462067604, -0.0013356790877878666, 0.005694713443517685, -0.0035733289550989866, 0.01236381009221077, 0.07378552109003067, 0.018992435187101364, 0.03065367601811886, -0.016019629314541817, 0.042466722428798676, 0.019220782443881035, -0.014333601109683514, 0.0227822158485651, 0.034249283373355865, 0.03239133954048157, -0.024826068431138992, 0.0059949494898319244, 0.0034556800965219736, -0.013027357868850231, 0.04006483778357506, -0.030917776748538017, -0.04949888959527016, -0.022121785208582878, -0.010644023306667805, -0.0008517810492776334, 0.060698263347148895, 0.024680426344275475, 0.004095196723937988, 0.018398091197013855, -0.06106897071003914, -0.027241768315434456, 0.029548412188887596, -0.05125904455780983, -0.01091894879937172, 0.0032952839974313974, 0.0017399777425453067, -0.0020698646549135447, 0.00983284879475832, -0.035660289227962494, 0.00608538743108511, -0.010348782874643803, -0.005393164698034525, -0.0016921566566452384, 0.035976555198431015, -0.007386386394500732, 0.054608821868896484, -0.011405117809772491, -0.009768328629434109, 0.03796299919486046, 0.05019929260015488, -0.048009954392910004, -0.04762858524918556, -0.019875245168805122, 0.01677834987640381, -0.015196199528872967, -0.01870621182024479, -0.012623559683561325, -0.014857832342386246, -0.013023484498262405, 0.023907778784632683, 0.03320064768195152, 0.014157440513372421, 0.013275657780468464, 0.035326335579156876, -0.013518169522285461, -0.019040146842598915, -0.049182482063770294, 0.037646304816007614, 0.012676027603447437, -0.010399851948022842, -0.02851862460374832, 0.03605402633547783, 0.03644734248518944, 0.00596866337582469, 0.046336907893419266, 0.024050310254096985, 0.05058246850967407, -0.023328101262450218, 0.03930145874619484, -0.04846056178212166, 0.01922859624028206, 0.01304340548813343, -0.000553692749235779, -0.027711987495422363, 0.06348852068185806, 0.04430919140577316, 0.004088477231562138, 0.0031534633599221706, 0.005861550569534302, -0.010204684920608997, -0.012799478136003017, -0.02232261188328266, -0.03324540704488754, 0.010611309669911861, -0.0024423941504210234, -0.01929095759987831, 0.012600637041032314, -0.041772760450839996, -0.013942488469183445, -0.022830532863736153, 0.004139414988458157, 0.049683667719364166, -0.012149928137660027, 0.011295389384031296, -0.005677034147083759, -0.009035119786858559, 0.007731318473815918, 0.05102124437689781, -0.01732061617076397, -0.007229612674564123, 0.03456578031182289, 0.0066208066418766975, -0.004408943001180887, 0.05360785126686096, 0.010549369268119335, 0.02144148014485836, -0.004238660912960768, -0.01667328178882599, 0.013118090108036995, -0.006653755437582731, 0.009552320465445518, 0.00822585541754961, -0.04082178324460983, 0.03204193711280823, -0.023703066632151604, -0.008406382985413074, 0.03923753648996353, -0.041121307760477066, -0.012429257854819298, -0.05248770862817764, 0.07397988438606262, -0.04113158956170082, -0.008781911805272102, 0.010470890440046787, 0.010776162147521973, -0.034418635070323944, 0.059225328266620636, 0.0122754517942667, 0.03739739954471588, 0.01203352864831686, 0.06245006248354912, -0.020181389525532722, 0.05495864525437355, 0.06901972740888596, -0.011748073622584343, -0.01110495813190937, 0.025163233280181885, -0.005212979856878519, -0.02276412956416607, -0.007289408706128597, -0.05126555263996124, 0.005804329179227352, -0.045377954840660095, -0.00277769030071795, -0.008570815436542034, 0.061668429523706436, 0.007196264807134867, -0.012085204012691975, 0.009243274107575417, 0.021809769794344902, -0.04572072625160217, 0.011261292733252048, -0.0031085831578820944, 0.0462242066860199, -0.01932796649634838, 0.022789519280195236, -0.028789041563868523, -0.02229871228337288, 0.005334887187927961, -0.062382251024246216, 0.06341163069009781, 0.0032114337664097548, -0.031712450087070465, -0.03056681714951992, -0.03724620118737221, 0.001969300676137209, -0.010501723736524582, -0.04190388694405556, -0.033502496778964996, 0.05284465476870537, 0.05466117337346077, 0.025563398376107216, 0.01889222301542759, -0.02347773313522339, 0.001916354987770319, 0.046144481748342514, 0.07021278142929077, -0.01966402307152748, 0.03108893521130085, 0.0324242077767849, -0.030010420829057693, 0.010336197912693024, -0.022416885942220688, 0.030734358355402946, 0.004332600627094507, 0.0018281536176800728, -0.0289345383644104, 0.026589540764689445, -0.05419322848320007, -0.04165206104516983, 0.009385268203914165, 0.008012901060283184, -0.004357913043349981, -0.015760404989123344, -0.06727685779333115, 0.010976827703416348, -0.04192420467734337, -0.011050567030906677, -0.05021228641271591, 0.010637259110808372, 0.0004930287250317633, -0.02294880524277687, -0.03782164677977562, -0.04337508603930473, 0.14850109815597534, 0.033963628113269806, 0.01187912654131651, -0.031426653265953064, 0.006420705001801252, 0.050739746540784836, 0.01402923371642828, -0.01858966425061226, 0.017690837383270264, -0.033954598009586334, 0.034963399171829224, 0.009128310717642307, 0.03689853101968765, 0.008518594317138195, 0.01613074727356434, 0.05733402445912361, -0.06014299392700195, 0.0013896642485633492, 0.043368518352508545, -0.042044688016176224, -0.05393493175506592, 0.04187231883406639, -0.004265082534402609, 0.02360628731548786, -0.004141113255172968, -0.022037411108613014, 0.01461619883775711, -0.058877814561128616, 0.007904589176177979, 0.01078124064952135, 0.028627224266529083, -0.040989238768815994, 0.0465552844107151, -0.012622952461242676, -0.06542313098907471, 0.051605090498924255, 0.005774639081209898, -0.01555507630109787, 0.014778221026062965, 0.013614830560982227, -0.009058278985321522, 0.023358764126896858, 0.0452129952609539, -0.02874375507235527, 0.01230579987168312, 0.047826118767261505, -0.05556946620345116, 0.022635454311966896, -0.018372615799307823, -0.019028756767511368, 0.06761473417282104, -0.02842005342245102, 0.017415780574083328, -0.000012465123290894553, -0.03761347010731697, 0.012941907159984112, 0.03699107840657234, -0.027198389172554016, -0.03990083932876587, -0.017353633418679237, 0.014166443608701229, -0.0049667879939079285, 0.010264747776091099, -0.002304079243913293, -0.06130274012684822, -0.004324701614677906, 0.00017054782074410468, 0.005732039920985699, -0.014787468127906322, -0.012723768129944801, -0.015138715505599976, 0.012821929529309273, -0.029815806075930595, -0.003866478567942977, 0.04978148639202118, 0.040444958955049515, -0.0523347370326519, 0.03805575519800186, -0.0026651648804545403, -0.0016483751824125648, -0.009149654768407345, -0.035773780196905136, 0.002907071029767394, 0.003485783003270626, 0.030198652297258377, 0.041062671691179276, -0.02178586833178997, -0.012288539670407772, -0.0007661490235477686, 0.028968770056962967, 0.03737953305244446, 0.02882693149149418, -0.02006862685084343, 0.014818297699093819, -0.030722426250576973 ]
Good Movements Follow Great Stories Leadership and Advisers Nation Inside Coastal Youth Media Free Movement Conference Black Man, Running "Storytelling and Social Change" guide Prison Poetry Workshop Home โ€บ Blog โ€บ Interview with Marshall Ganz on "Public Narrative" November 26, 2014 | Category: Blog | Author: Paul VanDeCarr Interview with Marshall Ganz on "Public Narrative" Above is video of Marshall Ganz speaking on "values vs. strategy" in community organizing, at the Harvard Kennedy School. Following is an excerpt from the first edition of our guide on "Storytelling and Social Change." A new and improved second edition โ€” this time for nonprofits, social entrepreneurs and activists โ€” is now in the works! "I stand here knowing that my story is part of the larger American story." That's Barack Obama in his 2004 Democratic National Convention speech. No wonder that the speaker of these words, and the author of a thoughtful memoir, would have storytelling be a central part of his presidential campaign four years later. A template used for training of volunteer leadership teams in his 2008 campaign was devised by organizer and Harvard professor Marshall Ganz and was based on teams sharing the "story of self, the story of us, and the story of now." Ganz now teaches the practiceโ€”which he calls Public Narrativeโ€”to civic associations, community organizations, and advocacy groups worldwide. Marhsall Ganz is a senior lecturer in public policy at the Kennedy School of Government at Harvard University. He volunteered as a civil rights organizer in Mississippi, then in 1965 began a long tenure with Cesar Chavez and the United Farm Workers, where he became Director of Organizing. He completed his Ph.D. in sociology in 2000. Following is an interview with Ganz conducted by Paul VanDeCarr, managing director of Working Narratives, in 2012. Your interest in storytelling goes way back. I grew up in California. My father was a rabbi, my mother was a teacher, and so I grew up in a world of story. Being raised in the Jewish tradition introduces you to story from when you are very young. The Haggadah at the Passover seder is called "the story," and the story is told as a response to four questions posed by the youngest person there. The whole deal is about telling the story so the next generation can learn it and interpret their own times in light of it. How did this translate into your later work as an organizer? When I got involved in organizing and the Civil Rights Movement and the United Farm Workers, again I found myself in the world of narrative in action. It became clear to me that there was this question of motivation that went along with the questions of strategy. Motivationโ€”the sources of courage and solidarity and hopeโ€” was just as important as coming up with the right boycott target, because you couldn't do one without the other. So I began to see that there was head-work and heart-work that were required for the hand-work to be doneโ€”the actual organizing. And it was also clear to me that a piece of that heart-work was done in the form of narrative interpretation of what we were doing, of who we were, of who other people were, and where we were going. You taught a class on "Organizing" at the Kennedy School of Government. From that you developed a course on "Public Narrative," which you began teaching in 2005. What were the underpinnings for it? The course had these three components which for me went back to the questions of Rabbi Hillel, the first-century sage, which I'd learned about as a child: "If I am not for myself, who will be for me? If I am for myself alone, what am I? If not now, when?" That was the underlying framework to the story of self, the story of us, and the story of now. If you go back and read the account in Exodus about Moses and the burning bush, you will find the same three questions right there. And in Obama's 2004 Democratic National Convention speech, sure enough, there they were in the first seven minutes. What I've backed into here is a deep structure of how storytelling works in a leadership setting. What was the role of Public Narrative in the 2008 Obama campaign? Public Narrative was used in campaign training camps, called "Camp Obamas," and through that it became the basic template that the campaign used as a whole. Out of these two-day workshops would come leadership teams equipped to tell their stories, engage others, strategize, and all the rest of it. People would come to Camp Obama thinking that they were going to learn how to tell Barack's story or how to become policy experts. And the first thing was to learn to tell your own story about why you are here, and you will then be able to engage others and their stories, and out of that will come the "story of us," and out of that will come the motivation to deal with the challenge that we face now. People come thinking that they have a deficit and they are coming to a training to acquire assets they don't have; they leave realizing they have within their life experience what they need to be able to make an impact in the world. It's a very different kind of experience, and I think that's why it was so energizing. You've said there's a difference between a community-organizing model and a nonprofit-service model. Is there a role for philanthropy in supporting Public Narrative? One of the concerns I have is people using Public Narrative as a marketing device, because for me marketing is the opposite of movement building. Marketing is all about getting somebody to buy your thing, whatever it is. And movement building is all about enabling people to act on their thing and discern what their thing is by engaging with others. One of the unintended consequences of a lot of well-intentioned foundation support has been to sustain groups that wouldn't exist without the foundation. The real challenge of community organizing is that the community sustain it. How do you invest in developing leadership but not in creating dependency of that leadership upon you? Storm Stories Story Guide amplify andy goodman artistic activism audio audio walks big picture buzzwords climate change communications conference empathy evaluation FoST grantmakers grist guide Hatch health history humor India interviews journalism lgbt listening media museum nation inside pop culture prisons radio restorative storytelling science social change stickers storycorps story guide storyscapes storytelling SXSW theater Theatre of the Oppressed tours UNESCO virtual reality ยฉ 2013 Working Narratives info@workingnarratives.org
[ 0.012787285260856152, -0.008886115625500679, -0.009133542887866497, 0.0217787753790617, 0.026498107239603996, -0.02924571931362152, -0.041719429194927216, 0.012685631401836872, 0.028325209394097328, 0.014299570582807064, 0.015042710117995739, -0.025825513526797295, 0.01776706986129284, -0.0090227285400033, 0.01050626952201128, -0.009402716532349586, -0.009993736632168293, -0.03654155880212784, -0.0012957042781636119, 0.012233597226440907, 0.014976762235164642, -0.014871949329972267, -0.07213234156370163, -0.02805398777127266, -0.028122397139668465, 0.03343639522790909, -0.006984711159020662, -0.018561145290732384, 0.05886596441268921, 0.026320619508624077, 0.002350481692701578, -0.03943529352545738, 0.03431415185332298, -0.06791582703590393, -0.017471879720687866, -0.02311236970126629, 0.03500290587544441, -0.05373475328087807, -0.002630662638694048, -0.0354197733104229, -0.012874110601842403, -0.015317818149924278, 0.044125478714704514, -0.03758000582456589, -0.06188156083226204, 0.0036948907654732466, -0.035513605922460556, -0.037824612110853195, -0.0021769364830106497, -0.020258715376257896, 0.0034141617361456156, -0.015437060035765171, 0.019790129736065865, 0.028686346486210823, 0.024931028485298157, -0.010876988060772419, 0.019477270543575287, 0.020648613572120667, -0.016825353726744652, 0.02232496254146099, 0.024673016741871834, 0.0013304270105436444, 0.032642912119627, -0.08824881911277771, 0.02249637246131897, 0.031677935272455215, -0.013575158081948757, -0.021241944283246994, 0.0019988457206636667, -0.06262623518705368, -0.023417407646775246, -0.02009962871670723, -0.024282151833176613, -0.01539531722664833, -0.0024543777108192444, -0.018641464412212372, 0.02203938364982605, -0.01583862118422985, -0.014724133536219597, -0.0024032657966017723, -0.016983110457658768, 0.03727789968252182, 0.013637260533869267, 0.014986560679972172, -0.07797131687402725, -0.022689593955874443, -0.016046496108174324, 0.007972429506480694, 0.026850499212741852, 0.005596684291958809, -0.001240322133526206, 0.05628812313079834, -0.009627244435250759, 0.003519221441820264, 0.05849616974592209, 0.057064395397901535, -0.02103293314576149, 0.05501525476574898, -0.0017708224477246404, 0.027917899191379547, 0.014195363968610764, 0.01585835963487625, -0.006677568424493074, 0.03561308979988098, -0.031348515301942825, -0.0011754274601116776, 0.021446920931339264, -0.02690604142844677, 0.0018931709928438067, -0.05212312191724777, 0.0037551524583250284, -0.026142075657844543, 0.022327590733766556, -0.007570290472358465, 0.003329597180709243, 0.045670222491025925, 0.024711571633815765, 0.03021404519677162, -0.009115108288824558, 0.027374470606446266, 0.003661177819594741, 0.0033695034217089415, -0.013524243608117104, -0.015396402217447758, 0.02471204288303852, -0.028715580701828003, -0.010119065642356873, 0.05414830893278122, -0.03569658473134041, -0.01882764883339405, 0.02825796790421009, -0.030523505061864853, 0.011626039631664753, 0.003982749301940203, 0.00004518991045188159, 0.039321158081293106, 0.0073230150155723095, 0.03506569564342499, 0.032478827983140945, -0.049303073436021805, 0.036753375083208084, 0.029594622552394867, 0.004243335220962763, 0.08644741773605347, 0.025049658492207527, -0.002572379307821393, -0.030601289123296738, 0.02860746718943119, -0.02452690340578556, 0.03767114132642746, -0.029238030314445496, 0.01966056600213051, -0.00824116263538599, 0.007599845994263887, -0.03024359792470932, -0.004982922226190567, 0.0036057052202522755, 0.012417560443282127, -0.0015458642737939954, 0.049622517079114914, -0.023690862581133842, 0.014831654727458954, -0.03718775883316994, 0.0387292243540287, -0.02066141366958618, 0.05915689840912819, -0.010489911772310734, -0.00007209713658085093, -0.011944394558668137, -0.03354586660861969, 0.01683054119348526, -0.00605792086571455, -0.01349793653935194, 0.008624986745417118, 0.01604335568845272, 0.018756883218884468, 0.002059680875390768, 0.018118523061275482, 0.045568231493234634, 0.049143172800540924, -0.03979301080107689, -0.027028053998947144, 0.002353590913116932, 0.08134379982948303, -0.003586759092286229, -0.02401137165725231, -0.02123858965933323, -0.022965451702475548, -0.025756947696208954, -0.03486151993274689, -0.01889103651046753, 0.07624456286430359, -0.020263852551579475, 0.02680939808487892, 0.06086437404155731, 0.008768776431679726, -0.02815438061952591, -0.0331135131418705, -0.01189799141138792, -0.04591609537601471, -0.015483725816011429, 0.06702093034982681, -0.025924479588866234, 0.014486636966466904, -0.027508169412612915, 0.01030558068305254, 0.02435903251171112, 0.0373561792075634, -0.05686748027801514, 0.01708087883889675, 0.036375418305397034, 0.007904970087110996, 0.01562557928264141, -0.028900522738695145, 0.02041497826576233, -0.04596791788935661, -0.033016640692949295, 0.0653645247220993, 0.0033429793547838926, -0.018995031714439392, 0.004471489693969488, 0.01029171422123909, 0.027222678065299988, -0.002887374022975564, -0.008233432658016682, -0.018253982067108154, 0.04089488089084625, 0.04959611967206001, -0.03650515526533127, 0.01072819996625185, 0.03756297379732132, 0.01938258297741413, 0.01438210904598236, 0.04336925223469734, 0.049971237778663635, 0.052572354674339294, 0.05131635442376137, 0.0589144341647625, -0.017866307869553566, 0.022888919338583946, 0.022231213748455048, -0.0015256229089573026, 0.0531015507876873, 0.017655467614531517, -0.01548766903579235, 0.04724026098847389, -0.0165239404886961, -0.031808871775865555, 0.022225631400942802, 0.0316692478954792, -0.03920085355639458, 0.0347871296107769, 0.03285866603255272, 0.018209220841526985, -0.04035327583551407, -0.0038909493014216423, 0.023722829297184944, 0.06374940276145935, -0.03318983316421509, -0.022488540038466454, 0.008769960142672062, 0.04886782541871071, -0.007029224187135696, 0.026536980643868446, 0.01682126522064209, -0.000506822660099715, -0.02233322523534298, 0.02857355959713459, 0.0031095605809241533, -0.04331297054886818, -0.029121877625584602, -0.048309076577425, -0.021542882546782494, -0.032196857035160065, -0.04358961433172226, 0.02941141091287136, 0.021795304492115974, -0.04303102567791939, 0.0037587827537208796, 0.009233917109668255, 0.0006337151862680912, -0.04153374210000038, -0.011279826052486897, 0.021305019035935402, 0.034087687730789185, -0.011387293227016926, -0.015228848904371262, 0.03559992462396622, -0.021027904003858566, 0.01861000433564186, -0.009571254253387451, -0.009288807399570942, -0.02368197776377201, -0.04163443669676781, 0.03967738524079323, -0.0062681520357728004, -0.015436330810189247, 0.00979466550052166, -0.05842580273747444, -0.03532492741942406, 0.0031720015686005354, -0.004399438854306936, -0.018861198797822, 0.008068735711276531, -0.033716097474098206, 0.044959235936403275, 0.016901852563023567, -0.03600159287452698, 0.055133238434791565, 0.044233791530132294, -0.0437832847237587, 0.05619194731116295, 0.03139423578977585, 0.04309737682342529, -0.04048836976289749, 0.03574790805578232, 0.04801303520798683, 0.015059271827340126, -0.03189592808485031, -0.007389439735561609, -0.05860959365963936, -0.008192730136215687, 0.0005561362486332655, -0.028902411460876465, -0.035087183117866516, 0.011267065070569515, 0.024069851264357567, -0.05538824200630188, 0.04492665082216263, -0.06594004482030869, -0.039673931896686554, -0.03365832939743996, -0.007910266518592834, 0.03448762744665146, 0.06742634624242783, 0.010896111838519573, -0.00012190684356028214, -0.0017122178105637431, 0.0007756127743050456, 0.016363298520445824, 0.036133259534835815, 0.013256952166557312, 0.029554782435297966, 0.01311066746711731, 0.008550802245736122, 0.0022649122402071953, 0.007112331688404083, -0.021254651248455048, -0.004503463860601187, 0.0040957629680633545, 0.0159243606030941, -0.0023333916906267405, 0.022725606337189674, -0.012317730113863945, 0.013968496583402157, 0.04936880245804787, -0.05648037791252136, 0.007029807195067406, -0.0036281971260905266, 0.003668316639959812, 0.003995793871581554, 0.028648417443037033, 0.022392522543668747, -0.0009076215792447329, -0.05650360509753227, -0.043289586901664734, -0.0047410461120307446, 0.02333969436585903, 0.0641019269824028, -0.04729752242565155, 0.0643373504281044, -0.005421990528702736, -0.03353498876094818, 0.06104985252022743, -0.07482263445854187, 0.016654977574944496, 0.05226250737905502, -0.017880136147141457, 0.04019872099161148, -0.05685463920235634, 0.005442260764539242, 0.0001278291892958805, 0.026377571746706963, 0.05275292322039604, 0.002972529735416174, 0.023171715438365936, -0.0222186129540205, -0.020307106897234917, 0.004350956995040178, -0.007501681335270405, 0.01478013675659895, -0.034846771508455276, -0.014862364158034325, 0.00809679739177227, -0.021877946332097054, -0.03964957222342491, 0.0765317976474762, 0.03191700577735901, 0.0403071828186512, -0.018402276560664177, 0.05720682442188263, -0.0009350275504402816, 0.03064214624464512, 0.0202101469039917, -0.004219891503453255, 0.01948697678744793, -0.053083185106515884, 0.015567190945148468, 0.025037290528416634, -0.03220728784799576, -0.00013079241034574807, -0.036345239728689194, -0.022557027637958527, 0.042995959520339966, 0.005545949097722769, -0.005823468789458275, -0.010476858355104923, 0.030587799847126007, 0.006484865210950375, 0.0363478809595108, -0.04644814133644104, -0.014276801608502865, -0.0074769118800759315, 0.04017586261034012, 0.05194300413131714, -0.035588640719652176, 0.01189398393034935, -0.05775732919573784, 0.059029851108789444, 0.037527162581682205, -0.027073988690972328, -0.06387421488761902, -0.02424389123916626, -0.032763876020908356, -0.03980575129389763, 0.035618413239717484, 0.023387830704450607, -0.009936638176441193, -0.018810071051120758, -0.0465581975877285, 0.03960553556680679, 0.009441087022423744, 0.008458318188786507, -0.006015469785779715, 0.015499784611165524, 0.003005852224305272, -0.011030934751033783, 0.022933224216103554, -0.009901774115860462, -0.0283343605697155, 0.04513369873166084, -0.047591932117938995, 0.007413208018988371, 0.019630400463938713, -0.016651442274451256, 0.009241707623004913, 0.01000505592674017, 0.01920122094452381, 0.034304920583963394, -0.017929507419466972, -0.010712696239352226, -0.011077987030148506, 0.03263853117823601, -0.037290580570697784, -0.014178252778947353, 0.051766809076070786, -0.028044993057847023, -0.05202898383140564, 0.023067710921168327, 0.0445290207862854, 0.014448830857872963, 0.011040739715099335, 0.0010931085562333465, -0.05292469635605812, 0.03281958028674126, -0.030356373637914658, 0.009892989881336689, -0.031015774235129356, -0.02257589064538479, 0.011733660474419594, 0.007401424925774336, 0.05728785693645477, -0.028213486075401306, -0.02333894930779934, -0.0696517750620842, -0.05099797248840332, -0.027859745547175407, 0.006820651702582836, 0.009891051799058914, -0.0013132784515619278, 0.010898997075855732, -0.012382926419377327, -0.016710275784134865, -0.014877025038003922, 0.0003123855567537248, 0.006809739861637354, -0.004789329599589109, 0.018424320966005325, 0.02055663987994194, 0.015340792946517467, -0.0009837630204856396, -0.006379888858646154, -0.03478679433465004, -0.003536021802574396, -0.005209839437156916, -0.037533193826675415, -0.015029464848339558, -0.0005318152252584696, -0.0251866914331913, -0.018378429114818573, 0.024550635367631912, 0.006473756395280361, -0.00851321592926979, 0.06189124286174774, 0.039842694997787476, -0.01248119492083788, -0.01645396277308464, 0.01534233894199133, -0.053797170519828796, 0.06308715045452118, 0.032241906970739365, -0.035439249128103256, -0.01668502949178219, 0.029060497879981995, 0.010409723967313766, 0.03695368766784668, -0.018617933616042137, -0.028698837384581566, -0.02221810445189476, -0.06273774802684784, -0.022086549550294876, -0.018723392859101295, -0.020159617066383362, -0.002962463302537799, -0.037055522203445435, 0.02123488485813141, 0.05206800252199173, 0.03330560028553009, 0.0052071548998355865, 0.010013141669332981, -0.060125961899757385, 0.0009606797830201685, -0.024410244077444077, -0.01142442598938942, -0.03341549262404442, -0.023826761171221733, -0.025092713534832, 0.06249847263097763, 0.03992045298218727, 0.0048155453987419605, 0.00937222596257925, -0.012292533181607723, 0.021551979705691338, -0.029364928603172302, -0.04145864397287369, -0.020629948005080223, -0.01234931219369173, -0.016166837885975838, 0.00489022396504879, 0.005768151488155127, -0.005659857764840126, 0.06673011928796768, -0.027617421001195908, 0.006673509255051613, -0.03800420090556145, -0.013777456246316433, -0.01945093460381031, -0.021470898762345314, 0.06140553206205368, -0.03487565740942955, 0.017272379249334335, -0.022062916308641434, 0.05366480350494385, 0.043678153306245804, -0.03539462387561798, -0.05226333439350128, -0.014399604871869087, -0.027150670066475868, -0.01625717058777809, 0.007918895222246647, -0.0339142270386219, -0.03420424833893776, -0.03812647610902786, -0.0036058712285012007, 0.04491140693426132, -0.013059070333838463, 0.025767162442207336, 0.04805680736899376, -0.028118543326854706, -0.01436670683324337, -0.03069804236292839, 0.02642969600856304, 0.03169506415724754, -0.006880164612084627, -0.007085752673447132, -0.0006570708355866373, -0.04747673496603966, 0.006674869451671839, -0.04135739058256149, -0.04878664016723633, -0.00931418128311634, -0.01101653091609478, 0.0664721354842186, -0.026548948138952255, 0.018537046387791634, 0.0025756966788321733, -0.021855253726243973, -0.06399460136890411, 0.022880973294377327, 0.015673143789172173, 0.016604004427790642, 0.038320142775774, 0.023036882281303406, -0.03502795100212097, 0.005974640604108572, 0.024087827652692795, -0.009817731566727161, -0.019483434036374092, 0.06035305932164192, 0.017076358199119568, -0.04417921230196953, 0.007565764710307121, 0.0631585493683815, -0.061318784952163696, -0.024610592052340508, -0.028148015961050987, -0.002033429453149438, 0.001473860815167427, -0.037909090518951416, 0.004635217599570751, -0.00794587004929781, -0.0004687625332735479, -0.023252902552485466, 0.028832530602812767, -0.016349753364920616, 0.04675672948360443, -0.007244475185871124, 0.030396902933716774, -0.030841359868645668, 0.05085286125540733, 0.009456169791519642, -0.008342957124114037, -0.013873523101210594, -0.0459388792514801, -0.02353280782699585, 0.004884311929345131, -0.023216286674141884, 0.03711395338177681, -0.02695346251130104, 0.014071340672671795, 0.01034514419734478, -0.014693206176161766, 0.04049526900053024, 0.0262772049754858, -0.006853973492980003, -0.002743173623457551, -0.04569872468709946, -0.024860888719558716, -0.022249942645430565, 0.011536792851984501, 0.008254483342170715, 0.048591744154691696, -0.05084392428398132, -0.017494600266218185, 0.037353515625, 0.0006230971775949001, 0.040860630571842194, -0.05465640127658844, -0.03631458431482315, -0.022598735988140106, -0.021032031625509262, -0.05530322715640068, -0.014830030500888824, 0.026913924142718315, -0.016328075900673866, 0.006354106590151787, -0.026994606480002403, -0.01395132951438427, 0.03110627271234989, -0.03991816192865372, -0.0002712474961299449, -0.030670376494526863, 0.01700667478144169, -0.021565962582826614, -0.06017912179231644, -0.050641078501939774, 0.012099928222596645, 0.0018928636563941836, -0.009645819664001465, -0.009257792495191097, 0.025914061814546585, -0.025547591969370842, 0.04567993804812431, 0.022663559764623642, 0.0071331774815917015, 0.0018700853688642383, -0.039789829403162, 0.002102770609781146, 0.043575212359428406, -0.010782595723867416, 0.02065218612551689, 0.046301599591970444, -0.0226738341152668, 0.014958386309444904, 0.0067411670461297035, -0.032931309193372726, -0.017582980915904045, 0.03774850815534592, 0.0025598667562007904, -0.006618943996727467, -0.037021420896053314, -0.02901192009449005, -0.036760952323675156, -0.04462544992566109, 0.0210528876632452, 0.003573725465685129, 0.03776310756802559, -0.030865507200360298, -0.0006282596150413156, 0.029074473306536674, 0.035469867289066315, 0.010753029957413673, -0.0013952095760032535, 0.035901378840208054, 0.06372962146997452, 0.024547038599848747, 0.012388239614665508, 0.004247624892741442, 0.06078804284334183, 0.01755928248167038, -0.03738393262028694, 0.029723744839429855, 0.008030827157199383, -0.02169843576848507, 0.03379867225885391, 0.005823190324008465, 0.0051199039444327354, -0.015822282060980797, -0.013985090889036655, 0.010237744078040123, 0.05211777985095978, 0.009846724569797516, -0.02230837754905224, 0.014574513770639896, -0.03915398567914963, -0.02124716155230999, -0.022990943863987923, -0.07130114734172821, -0.031255826354026794, 0.018242698162794113, 0.008214905858039856, 0.004199666902422905, -0.01849706843495369, -0.022193528711795807, -0.010997428558766842, -0.023311739787459373, -0.009877552278339863, -0.022256435826420784, 0.023514926433563232, -0.005226386711001396, 0.03477957844734192, 0.0007259261328727007, 0.011131945997476578, 0.005851220805197954, 0.029684126377105713, -0.032486870884895325, -0.036014046519994736, -0.009085007011890411, 0.023950526490807533, 0.01259585376828909, -0.027003305032849312, -0.0032893726602196693, -0.01199310552328825, -0.0394776351749897, 0.029194865375757217, -0.01170249842107296, 0.04500197619199753, 0.029108062386512756, -0.0048474473878741264, 0.017398754134774208, -0.00323450262658298, -0.022958898916840553, 0.01932491734623909, 0.009931745938956738, -0.02439948171377182, -0.00998031534254551, 0.06375131756067276, 0.014204747974872589, -0.029334796592593193, 0.028298448771238327, 0.0016712420620024204, 0.02430782839655876, 0.0032202654983848333, 0.019662538543343544, 0.008008529432117939, 0.05583314225077629, 0.03932979330420494, 0.04262568801641464, -0.007008441258221865, 0.02219627983868122, 0.0413951613008976, -0.0013214248465374112, 0.0010669614421203732, 0.004331857431679964, 0.03601907938718796, -0.049414440989494324, -0.03021884523332119, -0.02498009242117405, 0.03179861977696419, 0.0021274969913065434, -0.027499424293637276, -0.00266261282376945, -0.04418952763080597, -0.024358762428164482, -0.01901782676577568, -0.03349442407488823, 0.05936047062277794, 0.0027169552631676197, 0.002992231398820877, -0.0031919488683342934, -0.025585968047380447, -0.02011280320584774, 0.038051340728998184, 0.00938727892935276, 0.004729994107037783, 0.011643826961517334, 0.02908828668296337, -0.01275890413671732, 0.03030635416507721, 0.005667754914611578, 0.011941279284656048, -0.020834023132920265, 0.00504433223977685, 0.04541103169322014, 0.005072826985269785, -0.0487251877784729, 0.0029953254852443933, -0.013367407023906708, 0.02211790904402733, -0.05583757162094116, -0.008168648928403854, 0.03001893311738968, -0.05761188268661499, -0.008543670177459717, -0.05906813219189644, 0.031634826213121414, -0.04983586072921753, 0.0015564163913950324, 0.02787371538579464, -0.004500390030443668, -0.02904839999973774, 0.036926981061697006, 0.025439022108912468, 0.062302086502313614, 0.008281577378511429, 0.028153017163276672, -0.007316944655030966, 0.02672150731086731, 0.06882654130458832, -0.04161645472049713, -0.016718551516532898, 0.011372152715921402, 0.013280567713081837, -0.028801368549466133, -0.011184592731297016, -0.038753896951675415, -0.026242991909384727, -0.03119749017059803, -0.017207568511366844, 0.03453079238533974, 0.04700483754277229, 0.006119955331087112, -0.04013073071837425, -0.01110911462455988, 0.023991504684090614, -0.0511365570127964, -0.019386060535907745, 0.015004919841885567, 0.03157275170087814, -0.007498110178858042, -0.01617744006216526, -0.018251236528158188, -0.024040449410676956, 0.034297436475753784, -0.03747972846031189, 0.05167887359857559, 0.0031358718406409025, -0.05211145058274269, -0.03850741311907768, -0.042608343064785004, -0.007333710789680481, -0.040250007063150406, -0.062049590051174164, -0.041876524686813354, 0.0017278128070756793, 0.03375354781746864, 0.009044447913765907, -0.013460611924529076, -0.00114969362039119, -0.04865974932909012, 0.0483296662569046, 0.05882548540830612, -0.00535681052133441, 0.029056191444396973, 0.05039180442690849, 0.0035876051988452673, 0.04224681109189987, -0.03592296689748764, 0.014370917342603207, -0.040688589215278625, -0.044276706874370575, -0.012950490228831768, 0.02188849449157715, -0.013383707962930202, -0.07351065427064896, -0.013031099922955036, 0.015524587593972683, 0.013657793402671814, -0.00527547113597393, -0.09206917136907578, -0.021240178495645523, -0.028003539890050888, -0.004850167315453291, -0.05909499526023865, 0.018506433814764023, -0.006353034637868404, -0.005192927084863186, 0.017665114253759384, -0.06915726512670517, 0.16413480043411255, 0.043425045907497406, 0.01696685515344143, 0.008015058003365993, -0.004569303244352341, 0.0678999274969101, 0.03882664069533348, 0.037280261516571045, -0.011210877448320389, -0.051924269646406174, 0.05011815205216408, -0.014268937520682812, 0.027061229571700096, -0.01994767226278782, 0.008090878836810589, 0.05126182362437248, -0.06368210166692734, -0.04938817396759987, -0.009027035906910896, -0.0437176488339901, -0.04190384969115257, 0.03368911147117615, -0.006586991250514984, 0.02017463929951191, -0.026327604427933693, 0.06101584807038307, 0.01841381937265396, -0.025288740172982216, 0.008407052606344223, -0.001103488728404045, -0.009156344458460808, -0.0014619138091802597, 0.04784424975514412, -0.03889472782611847, -0.08730926364660263, 0.04811644181609154, 0.0034128122497349977, -0.057320594787597656, 0.029552211984992027, 0.03124183416366577, -0.024799954146146774, 0.013567663729190826, 0.02400245890021324, -0.015419558621942997, -0.028684409335255623, 0.01810881681740284, -0.024655824527144432, -0.005305526778101921, 0.019291914999485016, -0.036682747304439545, 0.06188901513814926, -0.04241829738020897, 0.05288718640804291, -0.00016599954687990248, -0.007638314738869667, 0.00553109822794795, 0.003205374116078019, -0.01981365866959095, -0.009815841913223267, -0.004598365165293217, 0.044832468032836914, -0.014907670207321644, 0.006634985562413931, -0.008271554484963417, -0.013891289941966534, 0.020068446174263954, 0.0326220728456974, -0.01538202166557312, -0.03796130418777466, -0.04260387271642685, -0.011886782012879848, 0.020824218168854713, 0.019204942509531975, -0.01199802290648222, 0.019192799925804138, 0.04596424102783203, -0.03313101455569267, 0.04072824865579605, 0.0025168671272695065, -0.016192594543099403, -0.0001301519077969715, -0.04200372099876404, -0.030003808438777924, 0.00024047191254794598, -0.011489976197481155, 0.03105301596224308, -0.04915131628513336, -0.021128954365849495, -0.03708922863006592, 0.06045154482126236, 0.0416782982647419, 0.011016172356903553, -0.0026208716444671154, 0.0005988771445117891, -0.006191186141222715 ]
ipsos2 CIPR view on 'Trust' report; PR professionals can build trust in technology The ethics of technology are a genuine public concern, according to a report by Ipsos MORI - 'Trust TheTruth'. The research, which reveals the public's view on technology and automation, shows scientists are the most trusted professionals in the world (60% trustworthiness) followed by doctors (56%) and teachers (52%). Whilst the public are generally positive about the prospect of technology and automation improving lives (76%), there is concern that technological progress is "destroying lives" (50%). The report recommends considering "the ethics of using these technologies". The report concludes that "trust does not appear to be in terminal decline but is often lower than half a century ago". This is particularly true of business, with trust more stable over the last 20 years and not "in constant freefall around the world as some people may assume". Politicians are globally considered the most untrustworthy professionals. Two-thirds of the public consider politicians to be untrustworthy (67%) and more than half say the same about Government Ministers (57%). This report should act as a call to action for the public relations profession. The public are anxious about the profound changes that will be driven by automation and AI. As this increases, there will be a public demand for human expertise to have a role in protecting the consumer. Trust and reputation are fragile. Encouragingly, and contrary to popular narrative, the conclusion in this report is that we are not experiencing a crisis of trust - rather, trends show trustworthiness in professions and institutions evolves. Public relations professionals, as strategic experts with a moral compass, have a greater role to play at this time of increased scrutiny to strengthen, build and rebuild trust. CIPR President, Emma Leech Found.Chart.PR FCIPR About the Chartered Institute of Public Relations (CIPR) Founded in 1948, the Chartered Institute of Public Relations (CIPR) is the Royal Chartered professional body for public relations practitioners in the UK and overseas. The CIPR is the largest membership organisation for PR practitioners outside of North America. By size of turnover and number of individually registered members, we are the leading representative body for the PR profession and industry in Europe. Jon Gerlis Public Relations and Policy Manager jong@cipr.co.uk
[ 0.002390620531514287, -0.008816437795758247, -0.01885053887963295, -0.005315711256116629, -0.004561593756079674, -0.006024832837283611, -0.007102464325726032, 0.010230505838990211, 0.03580528497695923, 0.021608177572488785, 0.004526134114712477, -0.012456806376576424, 0.016049016267061234, -0.03012254647910595, -0.020603472366929054, -0.009279078803956509, 0.014163678511977196, -0.002886354923248291, 0.03567446395754814, -0.016345364972949028, 0.006044305860996246, 0.02070990391075611, -0.04914908483624458, -0.0410296656191349, -0.05517299100756645, 0.03597615659236908, 0.024099234491586685, -0.006883531808853149, 0.05318506062030792, 0.06707200407981873, -0.014815776608884335, -0.03004767931997776, 0.029456844553351402, -0.027187692001461983, -0.029841119423508644, -0.035221900790929794, 0.057592567056417465, -0.005655865650624037, -0.016294920817017555, -0.034931112080812454, 0.018542947247624397, -0.012695910409092903, 0.016936272382736206, -0.04843949154019356, -0.026397734880447388, 0.0007087923586368561, -0.005022567696869373, -0.03939849138259888, -0.008777608163654804, -0.052138134837150574, 0.02388392761349678, 0.027033688500523567, 0.037686318159103394, 0.00783244613558054, -0.012029205448925495, -0.013437094166874886, 0.009474565275013447, -0.013646804727613926, -0.010388853028416634, 0.03618767112493515, 0.011964350007474422, -0.033611707389354706, 0.033808570355176926, -0.05388927832245827, 0.025878626853227615, -0.009253404103219509, 0.022583089768886566, -0.0022827398497611284, 0.02798626758158207, -0.039033640176057816, -0.012935174629092216, 0.007822436280548573, -0.0062544504180550575, -0.0072397347539663315, 0.02464151382446289, 0.005170642398297787, 0.006961685139685869, 0.016112057492136955, -0.015954088419675827, -0.027084054425358772, 0.006053582299500704, 0.029296815395355225, -0.006980448961257935, 0.03708072379231453, -0.03684147074818611, -0.02688581310212612, 0.01649620570242405, 0.026016144081950188, -0.0013932656729593873, 0.006713730748742819, 0.025027969852089882, 0.034306738525629044, -0.0018818859243765473, -0.012120013125240803, 0.02370833232998848, 0.03165207430720329, -0.019334612414240837, 0.027908530086278915, -0.020878033712506294, 0.021008726209402084, 0.04980337992310524, 0.028108328580856323, -0.018199801445007324, 0.05788537859916687, -0.035927217453718185, 0.011031094938516617, 0.02025243639945984, -0.035304758697748184, 0.006337545346468687, -0.04238542169332504, 0.01621842384338379, -0.016118280589580536, -0.0011003519175574183, -0.009932429529726505, 0.021110421046614647, 0.04823573678731918, 0.011051403358578682, 0.03302539885044098, -0.024496352300047874, 0.045054804533720016, -0.018501074984669685, -0.022541161626577377, 0.025850186124444008, -0.018958868458867073, 0.00046912694233469665, -0.03982137516140938, -0.012153980322182178, 0.050662606954574585, -0.012818670831620693, -0.045201048254966736, 0.0032725941855460405, -0.04612227529287338, -0.006251701153814793, 0.024243419989943504, 0.00771909998729825, 0.011054648086428642, 0.009781238622963428, 0.03173600882291794, 0.03734651580452919, -0.040898457169532776, 0.02525622583925724, 0.04096067696809769, -0.003417744068428874, 0.0790407732129097, -0.01736387610435486, 0.03267589211463928, -0.03478458523750305, -0.014659827575087547, -0.024037685245275497, 0.022302692756056786, -0.02423088625073433, 0.023604372516274452, -0.013056992553174496, 0.013829388655722141, -0.007159681990742683, -0.01308363489806652, -0.004409570712596178, -0.003868815489113331, 0.013081550598144531, 0.06048555299639702, -0.025181835517287254, 0.04566516354680061, -0.019594602286815643, 0.044724274426698685, -0.015651153400540352, 0.029566070064902306, -0.022662684321403503, -0.035742659121751785, -0.012990758754312992, -0.019639533013105392, 0.015808142721652985, -0.0019820493180304766, -0.025969019159674644, 0.015481538139283657, -0.0023351171985268593, 0.032450154423713684, 0.01876552775502205, 0.009579230099916458, 0.03490694984793663, 0.04184954613447189, -0.04217950627207756, -0.028649499639868736, -0.000795737374573946, 0.08942462503910065, -0.01617387868463993, -0.0017127052415162325, 0.00012113978300476447, -0.030508901923894882, -0.01987626403570175, -0.021472791209816933, -0.010198868811130524, 0.03170493245124817, -0.05112665519118309, 0.03925969451665878, 0.007590827532112598, -0.01926727406680584, -0.013662140816450119, 0.016478603705763817, 0.02052622102200985, -0.04621879383921623, -0.030176984146237373, 0.07631844282150269, -0.02421504817903042, 0.04602593183517456, -0.0025468412786722183, -0.00579294515773654, 0.010563931427896023, 0.06886208057403564, -0.04523901641368866, 0.01341655571013689, 0.04936156049370766, 0.019341036677360535, -0.0013249641051515937, -0.007304649334400892, 0.026499703526496887, -0.016746679320931435, -0.03960803523659706, 0.030236396938562393, -0.013244472444057465, -0.01076845359057188, 0.01334756426513195, 0.014414964243769646, 0.03412453457713127, 0.014036403968930244, -0.006025435868650675, 0.014613239094614983, -0.010958490893244743, 0.07403934746980667, -0.04377756267786026, -0.011902844533324242, 0.013257992453873158, 0.07553981989622116, 0.008665928617119789, 0.024663046002388, 0.03841904550790787, 0.025933334603905678, 0.04540177434682846, 0.039848312735557556, -0.0044823335483670235, 0.021236976608633995, -0.0074653057381510735, 0.01154175866395235, 0.0727192834019661, 0.012698781676590443, -0.009844318963587284, 0.02602788805961609, -0.0036266925744712353, -0.00590489013120532, -0.012547008693218231, 0.0836593508720398, -0.015763361006975174, 0.03857039287686348, 0.05024345964193344, 0.05215192958712578, -0.025778498500585556, 0.011701867915689945, 0.04304473474621773, 0.05890565738081932, -0.04076213762164116, -0.013588440604507923, -0.01127083320170641, 0.0287427119910717, -0.024335619062185287, 0.008818165399134159, 0.05993623286485672, -0.0042569078505039215, 0.009080464020371437, 0.04486833140254021, -0.008240465074777603, -0.04290712624788284, -0.04257657751441002, -0.03814235329627991, -0.05773187056183815, -0.06069304049015045, -0.07578548043966293, -0.0001556543866172433, 0.029677309095859528, -0.050040677189826965, 0.02349783666431904, -0.027356967329978943, -0.032270025461912155, -0.011165845207870007, -0.031006449833512306, 0.02763240598142147, 0.03694474697113037, 0.03154902160167694, -0.05949635058641434, 0.04345608875155449, 0.015169893391430378, 0.024685323238372803, -0.025643445551395416, 0.016973841935396194, -0.012166660279035568, -0.03432788699865341, 0.009874592535197735, 0.007167832925915718, 0.006315005011856556, 0.02628365159034729, -0.03781440481543541, -0.05678701028227806, 0.013014670461416245, 0.01950632594525814, -0.01870833709836006, -0.013038801960647106, -0.028809679672122, 0.024818576872348785, 0.006899456959217787, -0.008429923094809055, 0.0548429973423481, 0.038136597722768784, -0.03935296833515167, 0.04387796297669411, 0.010798808187246323, 0.03357782959938049, -0.060098711401224136, 0.05901909992098808, 0.04216935858130455, -0.0032138561364263296, -0.005479647312313318, -0.013064883649349213, -0.03830590471625328, 0.017508983612060547, 0.03949849680066109, -0.013056492432951927, -0.05215849354863167, 0.029827693477272987, 0.035855215042829514, -0.07546420395374298, 0.02949105016887188, -0.052666787058115005, -0.05788955092430115, -0.01399290096014738, -0.031967055052518845, 0.008985106833279133, 0.0493103563785553, 0.008021595887839794, 0.0313812717795372, -0.0342208668589592, -0.012453471310436726, -0.002392303664237261, 0.042105477303266525, -0.006464604288339615, 0.03204251080751419, 0.026562128216028214, -0.03750061243772507, 0.018657946959137917, 0.018543757498264313, -0.025624696165323257, -0.019024573266506195, 0.023975584656000137, 0.021075446158647537, 0.041343849152326584, 0.03661782294511795, -0.00024027707695495337, 0.004447286017239094, 0.08000008016824722, -0.015600558370351791, 0.014797871001064777, 0.01932252198457718, 0.013357962481677532, 0.013501486741006374, 0.008890877477824688, 0.0032600380945950747, 0.004028338938951492, -0.017918700352311134, -0.04888693988323212, -0.019296446815133095, -0.01128678023815155, 0.04618638753890991, -0.043534062802791595, 0.0648593083024025, 0.013805666007101536, -0.03205188363790512, 0.051877375692129135, -0.040343061089515686, 0.012559483759105206, 0.06761056184768677, 0.0023471801541745663, 0.045577097684144974, -0.054248981177806854, -0.004291692283004522, -0.018750188872218132, 0.0361674465239048, 0.031345266848802567, -0.02472621574997902, 0.013993397355079651, -0.03295781835913658, 0.010026632808148861, -0.0228774044662714, -0.016917092725634575, -0.011975285597145557, -0.04641088843345642, -0.025582239031791687, 0.01752682588994503, -0.06466154009103775, -0.03730131685733795, 0.0503973588347435, 0.0027575965505093336, 0.028190404176712036, -0.019976241514086723, 0.05568252131342888, 0.010189151391386986, -0.0007532465388067067, 0.021945973858237267, -0.022922025993466377, 0.018016614019870758, -0.019670354202389717, 0.057166751474142075, -0.0061025675386190414, -0.006007738411426544, -0.02089165709912777, -0.008978952653706074, -0.008558521047234535, 0.023877939209342003, -0.008289317600429058, -0.02814892865717411, 0.010371091775596142, 0.002789274789392948, -0.014082259498536587, 0.02711409330368042, -0.03159244358539581, -0.057928331196308136, -0.011878115125000477, 0.057882968336343765, 0.014640980400145054, -0.021558623760938644, 0.024887945502996445, 0.0024553725961595774, 0.03499022126197815, 0.047774046659469604, -0.007172070909291506, -0.0682019293308258, -0.011019148863852024, -0.048282377421855927, -0.02592259831726551, -0.027887698262929916, 0.05393843352794647, 0.009761246852576733, -0.011968659237027168, -0.029412664473056793, 0.029458865523338318, 0.02543363720178604, 0.005603902041912079, -0.02024969644844532, -0.032032161951065063, 0.020023781806230545, -0.000035301880416227505, 0.05390313267707825, -0.025130758062005043, -0.02873753197491169, 0.025400351732969284, -0.040756843984127045, 0.003955960739403963, -0.00619308277964592, -0.0351688377559185, 0.021280670538544655, 0.05204765871167183, -0.002743466990068555, 0.03507041186094284, -0.01810501329600811, -0.006884383969008923, -0.015684805810451508, 0.052227381616830826, -0.0447450652718544, -0.023052753880620003, 0.03773738071322441, 0.020096411928534508, -0.036632075905799866, 0.02439836412668228, 0.01776483841240406, 0.0069366199895739555, 0.009187455289065838, 0.007814773358404636, -0.05720895528793335, 0.021348437294363976, -0.03741595149040222, 0.026989920064806938, -0.030665459111332893, -0.02583601512014866, -0.0075211236253380775, -0.015895621851086617, 0.015218116343021393, 0.006585574243217707, -0.027329953387379646, -0.05046863481402397, -0.026770077645778656, -0.005362361203879118, 0.004573265556246042, -0.003627304919064045, -0.0024774684570729733, -0.0244978629052639, -0.007751301862299442, -0.010722247883677483, 0.0017469489248469472, -0.034803811460733414, 0.03269519284367561, 0.0025670079048722982, -0.0041137561202049255, -0.0020800961647182703, 0.0006514212000183761, 0.03166232630610466, -0.007150213234126568, -0.0368291512131691, -0.004868282005190849, -0.012985843233764172, -0.039035070687532425, -0.05618588998913765, -0.00618772255256772, -0.012624220922589302, -0.003078476060181856, -0.014185442589223385, -0.017330622300505638, -0.0155413206666708, 0.03229667618870735, 0.027178863063454628, -0.006979495752602816, 0.02750571444630623, -0.010521364398300648, -0.021307144314050674, 0.045256342738866806, 0.03224096819758415, -0.06455940753221512, -0.03133869543671608, 0.03212610259652138, -0.019414838403463364, 0.05903864651918411, 0.017794175073504448, -0.016006944701075554, -0.03714323043823242, -0.07352251559495926, -0.020026657730340958, -0.06375041604042053, -0.007330197840929031, -0.048347629606723785, -0.02955833449959755, -0.029819639399647713, 0.03323589637875557, 0.01928599178791046, -0.007466970477253199, -0.006277064327150583, -0.03451254963874817, 0.02129860408604145, -0.004107052460312843, -0.006827446166425943, -0.008646225556731224, -0.012691754847764969, 0.0003524213389027864, 0.060574959963560104, -0.0035717219579964876, 0.025701584294438362, -0.003427085466682911, -0.003988468553870916, 0.03937322646379471, 0.008920553140342236, -0.05466762185096741, -0.041149966418743134, 0.002036222256720066, 0.00865362398326397, 0.02397596463561058, 0.0030180388130247593, -0.050628796219825745, 0.07972309738397598, -0.001862146658822894, 0.01149947289377451, -0.027131900191307068, -0.0233683492988348, -0.03397746756672859, -0.006269682198762894, 0.06327971071004868, -0.014134672470390797, 0.025940274819731712, -0.0298700463026762, 0.043335314840078354, 0.062162354588508606, -0.0006962646148167551, -0.038900718092918396, -0.018723919987678528, -0.04040704295039177, -0.04796117916703224, 0.029844358563423157, -0.016409199684858322, -0.012590047903358936, -0.019120190292596817, 0.0004470113490242511, 0.04806188493967056, -0.01038032304495573, 0.06439222395420074, 0.045428067445755005, -0.004502714145928621, 0.006271034479141235, -0.024859992787241936, 0.05190959945321083, 0.04307497665286064, -0.013674878515303135, -0.00371434073895216, -0.03124355897307396, 0.003922171890735626, -0.013797346502542496, -0.025108277797698975, -0.04081358388066292, -0.057576075196266174, -0.03171341493725777, 0.055691786110401154, -0.02576988935470581, 0.03598785027861595, -0.035679448395967484, -0.032315585762262344, -0.04759063571691513, 0.03671110421419144, -0.030484702438116074, 0.020194994285702705, 0.04649362713098526, 0.012232462875545025, -0.0179192665964365, 0.0031692148186266422, 0.0037354696542024612, -0.03316202387213707, -0.03746337443590164, 0.061890654265880585, 0.005391606129705906, -0.050862349569797516, 0.01208568923175335, 0.05307746306061745, -0.060242634266614914, -0.03490351885557175, -0.0011946866288781166, 0.006164029240608215, -0.004581424407660961, -0.04196848347783089, 0.025125177577137947, 0.004510185681283474, -0.016431894153356552, -0.03131917864084244, 0.0628446415066719, -0.03324509039521217, 0.04075409471988678, -0.0048003485426306725, 0.02843836322426796, -0.02669931948184967, 0.016462169587612152, 0.007474178448319435, -0.010151021182537079, -0.026078417897224426, -0.05012686550617218, -0.01641692779958248, 0.008593120612204075, -0.008099041879177094, 0.07281376421451569, -0.024789804592728615, 0.018786275759339333, 0.04302428290247917, -0.017116190865635872, 0.044570378959178925, -0.014917736873030663, -0.0314766988158226, 0.02498311549425125, -0.02602829784154892, -0.04986071586608887, -0.0454137921333313, 0.053861141204833984, 0.005309377331286669, 0.033397696912288666, -0.04443627595901489, -0.0171952061355114, 0.027951007708907127, 0.021074434742331505, 0.0037333660293370485, -0.039021458476781845, -0.016450587660074234, -0.03879453241825104, -0.05245508253574371, -0.0376301035284996, 0.01644030213356018, -0.02767379768192768, 0.0032853856682777405, 0.013716456480324268, -0.030986303463578224, -0.018124636262655258, -0.00010944019595626742, -0.017263971269130707, -0.013633226975798607, -0.05877638980746269, 0.03643164038658142, -0.03102981671690941, -0.035185299813747406, -0.04430054500699043, -0.013471588492393494, -0.044466447085142136, 0.025583218783140182, 0.0196645837277174, 0.016919385641813278, 0.002270483411848545, 0.024439657106995583, 0.005763306748121977, 0.008098907768726349, -0.032341983169317245, -0.025722093880176544, -0.023371025919914246, 0.03618033602833748, 0.005510509479790926, 0.04588869959115982, 0.013918165117502213, -0.02715303748846054, 0.03834656625986099, 0.008526366204023361, -0.012716024182736874, -0.024046948179602623, 0.00978283304721117, -0.009839373640716076, -0.01032113004475832, -0.010023309849202633, -0.011725864373147488, -0.03262051194906235, -0.05775272846221924, 0.004810371436178684, 0.004826758056879044, -0.012241753749549389, 0.020121317356824875, -0.0035406658425927162, 0.0007960866787470877, 0.017623133957386017, -0.00013965358084533364, 0.035695094615221024, 0.0149509496986866, 0.0377517007291317, 0.002561062341555953, -0.033658187836408615, 0.03806675598025322, -0.0035286967176944017, 0.018787497654557228, -0.028583640232682228, -0.011326760984957218, 0.013884015381336212, -0.022266162559390068, 0.0329512283205986, -0.0014488998567685485, -0.019782397896051407, -0.027589965611696243, 0.004984702914953232, -0.02567644603550434, 0.05379416048526764, 0.01185591146349907, 0.03478075936436653, 0.01609385386109352, -0.024550754576921463, -0.04515637084841728, 0.010144218802452087, -0.0674162432551384, -0.02712307870388031, 0.03485499694943428, -0.007115292362868786, -0.0038117088843137026, -0.02344016544520855, -0.034977857023477554, 0.0015097655123099685, -0.016576338559389114, -0.01842515356838703, -0.0018330273451283574, 0.022587256506085396, 0.002203946001827717, 0.045184120535850525, 0.03212824836373329, -0.026769662275910378, -0.013650698587298393, 0.05235784500837326, -0.038774944841861725, -0.048528071492910385, 0.004811856430023909, 0.01873083785176277, -0.007533438503742218, -0.005399903282523155, -0.011398782022297382, 0.018318766728043556, 0.013878805562853813, -0.024241095408797264, 0.008816645480692387, 0.015567169524729252, 0.01636100560426712, 0.025912800803780556, 0.021378308534622192, 0.013810276985168457, -0.043842464685440063, 0.05992656201124191, 0.0013854099670425057, -0.041596669703722, -0.04953853040933609, 0.02100350894033909, 0.032309018075466156, -0.03910486400127411, 0.03644300624728203, 0.010851030237972736, 0.050816792994737625, -0.0286723542958498, 0.05826837942004204, 0.0036394959315657616, 0.0703638568520546, 0.03051498904824257, 0.03629591688513756, -0.022011026740074158, 0.016436735168099403, 0.0602247379720211, -0.013779763132333755, -0.031109392642974854, 0.012055319733917713, -0.00005573608723352663, -0.0587565153837204, 0.006679157260805368, -0.04043658450245857, 0.02486071176826954, 0.017120352014899254, 0.01036144606769085, 0.008714706636965275, -0.048412106931209564, -0.007743253838270903, -0.016144996508955956, -0.02586040087044239, 0.061150241643190384, 0.00012371852062642574, 0.009100981056690216, 0.00015629343397449702, -0.04129599779844284, -0.014966101385653019, 0.04697215557098389, 0.019298382103443146, 0.02584216557443142, 0.03144446387887001, 0.03116624802350998, -0.014929159544408321, 0.05030620098114014, 0.024688811972737312, -0.004466456361114979, -0.011048037558794022, -0.010117835365235806, -0.008623580448329449, -0.002573829609900713, -0.029098985716700554, -0.00967374723404646, -0.04394151270389557, 0.057023435831069946, -0.005506585817784071, -0.023185649886727333, 0.033583126962184906, -0.060790739953517914, -0.008242598734796047, -0.029420899227261543, 0.03681771829724312, -0.05877198278903961, -0.016026202589273453, 0.029221704229712486, 0.015370599925518036, -0.02522396668791771, 0.0634128600358963, -0.007190053351223469, 0.03774993494153023, 0.020971054211258888, 0.06977231055498123, -0.010001502931118011, 0.03297857567667961, 0.051699597388505936, -0.025265399366617203, -0.02930910885334015, 0.02408997155725956, -0.0006604630616493523, -0.04090283438563347, -0.01585099659860134, -0.06399139016866684, 0.0021293049212545156, -0.02428014948964119, -0.030751368030905724, -0.010784996673464775, 0.028251396492123604, 0.013293552212417126, -0.022900184616446495, 0.014445643872022629, 0.02693653292953968, -0.013595495373010635, 0.006288501899689436, -0.0014531806809827685, 0.03246055915951729, -0.00808587297797203, -0.02607474848628044, -0.006482579745352268, -0.036051277071237564, -0.01196303591132164, -0.028754031285643578, 0.015649281442165375, 0.00887373834848404, -0.0399189293384552, -0.035084303468465805, -0.07139361649751663, -0.02798798866569996, 0.009732963517308235, -0.03323870897293091, -0.05660542473196983, 0.0495702289044857, 0.033468060195446014, 0.0289629977196455, -0.014324810355901718, -0.020521996542811394, -0.005802195053547621, 0.013793876394629478, 0.07001578062772751, 0.014176355674862862, 0.04109981656074524, 0.04094374179840088, -0.0018540018936619163, 0.03513874486088753, -0.034336574375629425, 0.01729581505060196, -0.011204205453395844, -0.015414333902299404, -0.027472693473100662, 0.0005382705712690949, -0.037429239600896835, -0.05786978825926781, 0.03086923435330391, 0.05519094690680504, 0.013655233196914196, -0.030272630974650383, -0.08365277945995331, -0.008783274330198765, -0.06215084716677666, 0.0010738633573055267, -0.04318154603242874, 0.003020120318979025, -0.013919128105044365, 0.005436681676656008, -0.004785414785146713, -0.053111154586076736, 0.1481577306985855, 0.029072340577840805, 0.009870938956737518, 0.01396241970360279, 0.02515553869307041, 0.04244240000844002, 0.029196353629231453, -0.023436393588781357, 0.012423641048371792, -0.04681388661265373, 0.018440276384353638, 0.007796997670084238, -0.010774081572890282, -0.03900206461548805, 0.01960712857544422, 0.04407927021384239, -0.038163699209690094, -0.036713238805532455, 0.02666671946644783, -0.06097547337412834, -0.0781003087759018, 0.03004196286201477, -0.031661778688430786, 0.027202587574720383, -0.01827160269021988, 0.013006546534597874, 0.020577101036906242, -0.019618874415755272, -0.01020889449864626, 0.009664056822657585, 0.019936608150601387, -0.01054817158728838, 0.018088744953274727, -0.04820619523525238, -0.03549185395240784, 0.03939428552985191, 0.0022848474327474833, -0.0321936272084713, 0.010915776714682579, 0.020670391619205475, 0.013204077258706093, 0.03765372186899185, 0.050028394907712936, -0.04843329265713692, -0.002167121274396777, 0.01643490232527256, -0.011016346514225006, -0.002813474042341113, 0.03955450281500816, -0.05986122786998749, 0.05240897834300995, -0.047429393976926804, 0.034603655338287354, 0.0033191386610269547, -0.026782063767313957, 0.013895699754357338, -0.019591089338064194, -0.006977911572903395, -0.00726072583347559, 0.01644621230661869, 0.021290205419063568, -0.0013937021140009165, -0.0047439830377697945, -0.013842332176864147, 0.007281751837581396, -0.027521120384335518, 0.01365341804921627, 0.0022146946284919977, -0.006755027454346418, 0.006270381156355143, -0.015252424404025078, 0.015467837452888489, -0.0015129202511161566, -0.049714572727680206, -0.003519281279295683, 0.03191455081105232, -0.025682352483272552, 0.03802004083991051, 0.02254762314260006, -0.035669419914484024, -0.026740243658423424, -0.011563188396394253, -0.016361642628908157, 0.003449449548497796, 0.025603722780942917, 0.03684958443045616, -0.03594090789556503, -0.0339348129928112, -0.046250395476818085, 0.08328604698181152, 0.01934434287250042, 0.015185819938778877, -0.01578681357204914, -0.012619560584425926, -0.04737343266606331 ]
The Commonwealth of Virginia (the Commonwealth) currently participates in The Health Resources and Services Administration, Bureau of Clinician Recruitment and Service (BCRS) Grants to States for Loan Repayment. This VA-SLRP is operated by the Virginia Department of Health-Office of Health Equity (VDH-OHE) providing a non-taxed incentive to qualified medical, dental, behavioral health and pharmaceutical (pharmacists) professionals in return for a minimum of two (2) years of service at an eligible practice site in one of the federally designated Health Professional Shortage Areas (HPSAs) in a qualified field of practice in Virginia. VA-SLRP requires a dollar for dollar match from the community/practice site. The maximum award for a four (4) year commitment is $140,000 and shall be for a qualifying educational loan. Prioritizing applications for VA-SLRP is done on a first come first serve basis with priority given to renewals. All approvals are based on the availability of funds. The participant shall meet and fulfill all requirements listed below in order to be eligible for the VA-SLRP. All applicants shall meet the following criteria to be eligible for the VA-SLRP: โ€“ Shall sign and submit an application packet to participate in the VA-SLRP. Note: Virginia Residency is not required, but the daily traveling distance shall be no longer than two (2) hours each way. A Federal or non-Federal debt written off as uncollectible or a waiver of any Federal service or payment obligation.
[ 0.0015869253547862172, -0.0065949447453022, -0.0427248477935791, 0.04488212242722511, 0.005142713896930218, -0.005734088830649853, -0.02816414088010788, 0.02170145884156227, -0.013043380342423916, 0.026698652654886246, 0.012820043601095676, -0.012730932794511318, 0.015909358859062195, -0.02795851230621338, -0.004067228641360998, 0.011057442054152489, -0.0347696952521801, -0.027600254863500595, -0.012293930165469646, 0.019625401124358177, -0.024115731939673424, 0.041023340076208115, -0.048317428678274155, -0.032695919275283813, -0.005525445565581322, 0.05229942500591278, 0.02323717065155506, 0.0043175253085792065, 0.06966045498847961, 0.05194249376654625, 0.0012203236110508442, -0.061474114656448364, 0.02076684683561325, -0.04287736490368843, -0.023682601749897003, -0.01868462562561035, 0.030411822721362114, -0.02341744489967823, 0.007936405949294567, -0.029892457649111748, 0.012625504285097122, 0.004006286151707172, 0.035320181399583817, -0.03216907009482384, -0.03474251925945282, -0.021991275250911713, -0.006140435114502907, -0.038857340812683105, 0.000372533017070964, -0.037299744784832, 0.003075371263548732, -0.003016969421878457, -0.004323616158217192, -0.014769679866731167, -0.002649331232532859, 0.013102428056299686, 0.01454130094498396, -0.0206673052161932, -0.019536277279257774, 0.022801367565989494, 0.00027804006822407246, 0.02084990218281746, 0.023982618004083633, -0.02792290970683098, 0.02130615897476673, 0.04788628965616226, -0.01682344451546669, 0.031448014080524445, 0.01991579309105873, -0.03105035610496998, 0.015365567058324814, -0.017690813168883324, -0.030213162302970886, -0.023911630734801292, 0.003087268676608801, -0.014973661862313747, 0.016833312809467316, -0.009966205805540085, 0.012332054786384106, -0.008020874112844467, 0.019032252952456474, 0.040950268507003784, 0.040160804986953735, -0.02324804849922657, -0.051545072346925735, -0.0026142485439777374, 0.012289062142372131, 0.016620032489299774, 0.028099481016397476, 0.010156432166695595, -0.0006628064438700676, 0.04398453235626221, 0.020975008606910706, 0.006123218685388565, 0.005539461970329285, 0.05262306332588196, -0.03955111652612686, 0.02525421604514122, 0.045151084661483765, 0.01185495313256979, 0.03199078142642975, 0.029516804963350296, 0.03036615252494812, 0.031126972287893295, -0.03510367497801781, -0.0015254837926477194, 0.02958417311310768, -0.024538200348615646, -0.013771363534033298, -0.04672706872224808, 0.01879984140396118, -0.042103927582502365, 0.0026936510112136602, -0.03710141405463219, -0.024377426132559776, 0.05435984581708908, -0.004269317723810673, 0.02429894171655178, -0.04541850462555885, 0.040075719356536865, 0.025733383372426033, 0.007341444026678801, 0.04793168604373932, -0.003961097914725542, 0.02089184895157814, -0.03804510459303856, -0.011991127394139767, 0.02203078381717205, -0.026378203183412552, -0.028504204005002975, 0.02043970674276352, -0.05874233320355415, -0.018114855512976646, 0.02113460563123226, -0.006016302388161421, 0.023521248251199722, 0.0034998462069779634, 0.017047131434082985, 0.029584448784589767, -0.0283511970192194, 0.024978406727313995, 0.005084047559648752, 0.031126419082283974, 0.06977178901433945, 0.021542979404330254, -0.0009711399325169623, 0.016976049169898033, -0.039993688464164734, -0.03127634525299072, 0.02378593198955059, -0.020599722862243652, 0.015436502173542976, -0.018506495282053947, 0.013016107492148876, -0.008742189034819603, -0.004560614936053753, 0.023185839876532555, 0.03498873487114906, 0.005765155423432589, 0.02207014709711075, -0.024800868704915047, -0.006019949447363615, -0.015563346445560455, 0.04320335015654564, -0.011529956944286823, 0.0026091777253896, -0.02280247025191784, 0.014097983948886395, -0.005829446483403444, -0.02148168534040451, 0.029539763927459717, 0.0025791737716645002, -0.005934078712016344, 0.009415256790816784, 0.024619020521640778, 0.02907145954668522, 0.07287108153104782, 0.011827073059976101, 0.03864352032542229, 0.046961236745119095, -0.04682382568717003, -0.009531214833259583, 0.01695225201547146, 0.07404947280883789, 0.025830980390310287, 0.007124992087483406, -0.0025949396658688784, -0.005922173149883747, -0.05638372525572777, -0.06145408749580383, 0.00491488678380847, 0.01870025135576725, 0.013562006875872612, 0.026544827967882156, 0.02151297964155674, 0.00276724505238235, -0.015187723562121391, -0.02539723925292492, -0.01149590965360403, -0.018203916028141975, -0.019451336935162544, 0.015331733971834183, 0.003157963976264, 0.028684567660093307, -0.012745735235512257, -0.01593276485800743, 0.010095789097249508, 0.04905935749411583, -0.03787054866552353, 0.016541745513677597, 0.04134271293878555, 0.024374594911932945, -0.027292994782328606, -0.019105972722172737, 0.01481004897505045, -0.009136863984167576, -0.03764522075653076, 0.05156027898192406, 0.015322597697377205, -0.006317407824099064, -0.008752845227718353, -0.0012814569054171443, 0.037550438195466995, 0.057207729667425156, 0.0015285160625353456, -0.0009874252136796713, 0.021853599697351456, 0.03976847976446152, 0.011902505531907082, -0.027000823989510536, -0.00015845688176341355, 0.04864965006709099, 0.03016357123851776, 0.09240853786468506, 0.0333518460392952, 0.020874029025435448, 0.027609659358859062, 0.04901328682899475, 0.006688092835247517, 0.0342927947640419, -0.015317173674702644, 0.007688748650252819, 0.03439103439450264, 0.00829168688505888, -0.015744443982839584, 0.01602746546268463, -0.032921187579631805, -0.022328568622469902, -0.027755912393331528, 0.004654951859265566, -0.009386202320456505, 0.06274539232254028, 0.007664324250072241, 0.07045211642980576, -0.013453807681798935, -0.0068726614117622375, 0.041469406336545944, 0.058523256331682205, -0.053278371691703796, -0.0045362296514213085, -0.015010472387075424, 0.046600498259067535, -0.021341726183891296, -0.0005785494577139616, 0.028690000995993614, -0.0006595758022740483, 0.016148464754223824, 0.025394054129719734, 0.012854988686740398, -0.033050309866666794, -0.03062099777162075, -0.06551237404346466, -0.06356118619441986, -0.033958807587623596, -0.026645762845873833, 0.012017437256872654, 0.018999241292476654, -0.04370390251278877, -0.008291737176477909, -0.044814612716436386, 0.00044460323988460004, -0.024131441488862038, 0.03438901528716087, 0.0268918015062809, 0.023887265473604202, 0.030011948198080063, -0.03685678169131279, 0.03210484981536865, -0.006673083640635014, 0.03440101817250252, -0.0214961227029562, -0.05242602154612541, -0.021537937223911285, -0.02866254560649395, 0.00710997823625803, -0.03396236151456833, 0.00632742652669549, 0.010108769871294498, -0.03712863475084305, -0.04573366791009903, 0.02326725795865059, -0.015888813883066177, 0.007843384519219398, -0.0005252666887827218, -0.04455195367336273, 0.025354277342557907, 0.039770420640707016, -0.023073920980095863, 0.021056661382317543, 0.03201519697904587, -0.06676202267408371, 0.03006899170577526, 0.026357438415288925, 0.008051179349422455, -0.04724406823515892, 0.026696233078837395, 0.05480166897177696, -0.01756170392036438, -0.045667849481105804, -0.019801875576376915, -0.014120418578386307, 0.012744033709168434, 0.013467686250805855, -0.032019034028053284, -0.03218374028801918, 0.0414673276245594, 0.029594209045171738, -0.06888899207115173, 0.016432223841547966, -0.05762329697608948, -0.005435044411569834, -0.06194784864783287, -0.03572346642613411, 0.04300606623291969, 0.006173382978886366, 0.046182792633771896, -0.016680575907230377, -0.030749663710594177, 0.004346448928117752, 0.022631561383605003, 0.06826459616422653, -0.003291651140898466, -0.01462731882929802, 0.038944050669670105, 0.0224753525108099, 0.02555599994957447, 0.0035294294357299805, -0.025179307907819748, -0.014649884775280952, 0.012229553423821926, 0.0013405997306108475, 0.03813154622912407, 0.038764290511608124, -0.008200344629585743, 0.01903107576072216, 0.06089526042342186, -0.05400700122117996, -0.0024541609454900026, 0.008944256231188774, 0.01491786353290081, 0.006183043587952852, 0.020199881866574287, -0.0023258428554981947, 0.0039214929565787315, -0.052862029522657394, -0.060386773198843, 0.026673706248402596, 0.01691889390349388, 0.058528508991003036, -0.06891334801912308, 0.06205173209309578, -0.01568252593278885, -0.020292149856686592, 0.025720426812767982, -0.04182292893528938, -0.0039611998945474625, 0.06750636547803879, 0.012365941889584064, 0.020675718784332275, -0.03908320143818855, 0.0012009976198896766, 0.015849806368350983, -0.0021628434769809246, 0.04591435566544533, -0.007832648232579231, 0.026311790570616722, -0.035095781087875366, -0.020036907866597176, -0.006355998571962118, -0.022943537682294846, -0.0133389076218009, -0.025430288165807724, 0.015546192415058613, -0.005581443663686514, -0.04488664120435715, -0.06060422584414482, 0.03358462452888489, 0.011487224139273167, 0.05310218036174774, -0.003374743275344372, 0.03378088027238846, -0.004307268653064966, 0.038721971213817596, 0.03649774566292763, -0.0009694482432678342, 0.016967570409178734, -0.07347694039344788, 0.04907703399658203, 0.0016229170141741633, 0.00814979337155819, -0.0502709299325943, -0.004359517712146044, -0.024370405822992325, 0.036078307777643204, 0.007221983280032873, -0.03366318345069885, -0.046374671161174774, 0.0020108025055378675, -0.0160644743591547, 0.021059511229395866, -0.0203104205429554, -0.01860690861940384, -0.029357412829995155, 0.04883972555398941, 0.01687435433268547, -0.07310506701469421, 0.028341656550765038, -0.0357329435646534, 0.031956110149621964, 0.06618544459342957, -0.016583425924181938, -0.05091013014316559, -0.0012111271498724818, -0.023238293826580048, -0.039131443947553635, 0.007686003111302853, 0.006917689461261034, 0.0035496619530022144, 0.013154437765479088, -0.035139307379722595, 0.03621993213891983, 0.0029389820992946625, 0.01578274928033352, -0.031120503321290016, -0.007486789021641016, 0.03840262442827225, 0.013384734280407429, 0.028601249679923058, -0.007356053218245506, -0.02584984339773655, 0.0023140350822359324, -0.04017787054181099, 0.022013956680893898, 0.0023221855517476797, -0.02569630742073059, -0.030230049043893814, 0.04231720417737961, 0.01780371367931366, 0.007982541806995869, -0.026491010561585426, 0.03472266346216202, -0.013096519745886326, 0.037384092807769775, -0.031042151153087616, -0.025388730689883232, 0.0625583678483963, -0.028399154543876648, -0.010805446654558182, 0.00737134600058198, 0.025662122294306755, -0.039251312613487244, 0.03261955454945564, 0.016778454184532166, -0.05419078469276428, 0.03170714154839516, -0.033283185213804245, 0.01632796972990036, -0.04111041501164436, -0.04280849173665047, 0.04268130660057068, -0.01653750240802765, 0.029624804854393005, -0.025290554389357567, -0.04325996711850166, -0.0464470274746418, -0.04773489013314247, -0.023618649691343307, 0.007917145267128944, -0.05657293647527695, 0.024414751678705215, 0.011686006560921669, -0.033458445221185684, -0.03167111799120903, -0.003661229507997632, 0.008810913190245628, 0.02520628459751606, -0.015826744958758354, 0.00033784680999815464, -0.011399427428841591, 0.005143291316926479, -0.00037797214463353157, 0.016204625368118286, -0.011265400797128677, 0.0005496539524756372, -0.008065763860940933, -0.04309598356485367, -0.06404486298561096, 0.005059555172920227, -0.025253577157855034, -0.007118749897927046, -0.033247169107198715, 0.022087976336479187, -0.03031609207391739, 0.04418851062655449, 0.02984887920320034, 0.013366912491619587, -0.007707012351602316, 0.00933618564158678, -0.01852564327418804, 0.02722470462322235, 0.01480187103152275, -0.028264427557587624, -0.02915085293352604, 0.0019673693459481, -0.026676921173930168, 0.061961494386196136, -0.00476866215467453, 0.005424426402896643, -0.038310009986162186, -0.055780693888664246, -0.013507029972970486, -0.041817598044872284, -0.010427388362586498, -0.06274858117103577, -0.04695770889520645, -0.01647626981139183, 0.03176216036081314, 0.01980108767747879, -0.026097314432263374, -0.010048233903944492, -0.03702414035797119, -0.012910543009638786, -0.021192913874983788, -0.014296109788119793, 0.004165832884609699, -0.024433450773358345, 0.007817994803190231, 0.06219381093978882, 0.01685572788119316, 0.019279077649116516, -0.02267702855169773, 0.006343253422528505, 0.03222176805138588, -0.003802628954872489, -0.04195910692214966, -0.030225837603211403, -0.022865593433380127, 0.01194824744015932, 0.0017372815636917949, 0.0014576652320101857, -0.03495475649833679, 0.0560569129884243, -0.07074405997991562, 0.0095343803986907, -0.01510908454656601, -0.046310119330883026, 0.03739136829972267, -0.010115720331668854, 0.05140187218785286, -0.006954805925488472, 0.023360051214694977, -0.021234767511487007, 0.04066430777311325, 0.026402832940220833, 0.043751176446676254, -0.02614465542137623, -0.024744518101215363, -0.05190426483750343, -0.04769785702228546, 0.007477874867618084, -0.01571696437895298, -0.019445396959781647, -0.006393918767571449, -0.04904923588037491, 0.04318385198712349, -0.03362695500254631, 0.06987079977989197, 0.04681982472538948, -0.022787727415561676, 0.0040237815119326115, -0.04003208503127098, 0.045291803777217865, 0.03476838022470474, 0.011043328791856766, -0.003824238432571292, -0.03178718686103821, -0.03717808797955513, 0.0032417175825685263, -0.06953690946102142, -0.03223438933491707, -0.05683787167072296, 0.009453956969082355, 0.05241955444216728, 0.004612257704138756, 0.044109173119068146, 0.0008584617171436548, -0.04047244042158127, -0.016987822949886322, 0.03686537966132164, -0.010497993789613247, 0.012988319620490074, 0.02634003758430481, -0.003676928346976638, -0.024831410497426987, 0.004696757532656193, -0.03918350115418434, 0.019944967702031136, -0.016794685274362564, 0.062230318784713745, -0.00027686351677402854, -0.04063073918223381, 0.043292514979839325, 0.056371431797742844, -0.04518788307905197, -0.011011896654963493, 0.006053859367966652, -0.016980670392513275, 0.006209596525877714, -0.0540197417140007, 0.003499251091852784, 0.03674710914492607, 0.01479842234402895, 0.0033542835153639317, 0.019658641889691353, -0.0306335911154747, 0.0623798668384552, -0.013596656732261181, 0.007932370528578758, -0.026706408709287643, 0.0036553600803017616, 0.010447323322296143, 0.002599247032776475, -0.0541631355881691, -0.0051390933804214, -0.004930732771754265, 0.009006255306303501, 0.0222801323980093, 0.04950837418437004, -0.0467088520526886, -0.007435312960296869, 0.03906313702464104, 0.003411866258829832, 0.038299448788166046, 0.028096724301576614, -0.019800355657935143, 0.010318226180970669, -0.03850759565830231, -0.08137603849172592, -0.039475176483392715, 0.015209369361400604, 0.0028493558056652546, 0.017464209347963333, -0.04413015767931938, -0.00984102301299572, 0.02927463687956333, 0.00655182171612978, 0.012301241047680378, -0.07717442512512207, -0.07102254778146744, -0.022823382169008255, -0.037987079471349716, -0.022654378786683083, -0.010190133936703205, 0.02019214816391468, 0.02603604458272457, -0.009249298833310604, -0.040975674986839294, 0.007061085198074579, 0.012321487069129944, -0.05224495753645897, -0.013745983131229877, -0.04775039106607437, 0.02226955257356167, -0.028026407584547997, -0.05915766954421997, -0.03104054182767868, 0.000575315672904253, -0.010084295645356178, 0.01912524178624153, -0.00791989453136921, 0.03587048873305321, 0.009197566658258438, 0.024069759994745255, 0.0018162969499826431, 0.012499340809881687, -0.01727157086133957, -0.02930600941181183, 0.023876504972577095, 0.05581103265285492, 0.009120617993175983, 0.04067498818039894, 0.02201819233596325, -0.04955208674073219, 0.017548130825161934, -0.00267560756765306, -0.010267824865877628, -0.02833959460258484, 0.008260691538453102, 0.007899804040789604, 0.009907727129757404, -0.05676151439547539, -0.02073802426457405, -0.020941777154803276, -0.05288312956690788, 0.016360891982913017, -0.0013090725988149643, 0.013133576139807701, 0.018704570829868317, 0.013854415155947208, -0.012671670876443386, 0.04932441934943199, -0.020136144012212753, 0.018555153161287308, 0.00342281605117023, 0.02744351513683796, 0.018283646553754807, -0.010938301682472229, 0.003267402295023203, 0.010433916002511978, 0.021320877596735954, -0.014954805374145508, 0.03572304546833038, -0.001713470323011279, -0.011597642675042152, 0.015450598672032356, -0.06023458391427994, -0.030691631138324738, -0.026489509269595146, -0.025578433647751808, -0.042783983051776886, 0.0700131431221962, 0.019267719238996506, 0.007426021620631218, 0.03417646139860153, -0.027556033805012703, -0.045183759182691574, -0.020727574825286865, -0.0596110075712204, -0.071510910987854, 0.039547763764858246, -0.03647581487894058, -0.04564434662461281, -0.040548231452703476, -0.05571109056472778, -0.018801448866724968, -0.012577734887599945, -0.021539434790611267, -0.0408514142036438, 0.010534452274441719, 0.03645386919379234, 0.0133068161085248, 0.009035203605890274, 0.012219320982694626, 0.011710958555340767, 0.0619511604309082, -0.0601980946958065, -0.03930342569947243, 0.013132866472005844, 0.04172159731388092, 0.003523670369759202, -0.004065908957272768, -0.015046841464936733, 0.0018518782453611493, -0.02366815134882927, 0.01326875202357769, -0.04155280441045761, 0.00791926495730877, -0.00585266062989831, -0.012509242631494999, -0.017033664509654045, 0.005905148107558489, -0.016049228608608246, 0.04637465626001358, -0.02646670863032341, -0.02103642374277115, -0.06688077747821808, 0.016710860654711723, 0.014493841677904129, -0.015910036861896515, 0.02418762445449829, 0.008377939462661743, 0.05249848589301109, -0.006071530748158693, -0.004122878424823284, -0.0012964321067556739, 0.047084055840969086, 0.04896879568696022, 0.0700196623802185, 0.0012081119930371642, 0.01624828204512596, 0.03669172525405884, 0.006108347792178392, -0.00527013698592782, 0.04274566471576691, 0.03350401669740677, -0.012865285389125347, -0.001014326117001474, -0.020614394918084145, -0.006906777620315552, 0.008430946618318558, -0.004567652475088835, 0.012698870152235031, -0.02876092866063118, 0.015303694643080235, -0.006912930402904749, -0.019825970754027367, 0.061728864908218384, -0.002616771962493658, 0.019665919244289398, 0.002226355019956827, -0.022479597479104996, 0.012588714249432087, 0.032323237508535385, 0.019838018342852592, 0.02538904920220375, 0.040619563311338425, 0.027411753311753273, 0.0027470195200294256, 0.039908409118652344, 0.01736183650791645, 0.010095793753862381, -0.021295763552188873, 0.02702041156589985, -0.005474208388477564, -0.01030134316533804, -0.07383143901824951, 0.03995863348245621, -0.03477573022246361, 0.04097814857959747, -0.022433483973145485, -0.01926483027637005, 0.06057203933596611, -0.04355663061141968, -0.001035835943184793, -0.017121421173214912, 0.022325681522488594, -0.06002238765358925, -0.021116530522704124, 0.07139172405004501, -0.010551949962973595, -0.043644774705171585, 0.033882204443216324, -0.004054800141602755, 0.05321606248617172, 0.03266420215368271, 0.05541451647877693, 0.006307926494628191, 0.02189214527606964, 0.035795748233795166, -0.02950698882341385, -0.006405781954526901, 0.027947602793574333, -0.01272683683782816, -0.024205073714256287, -0.021110760048031807, -0.02913302183151245, -0.006673467345535755, -0.00007164265844039619, 0.012537057511508465, -0.005806546192616224, 0.038379307836294174, -0.014964848756790161, -0.0722152516245842, 0.003089909441769123, 0.009911289438605309, -0.03203387185931206, 0.02850114367902279, 0.023298092186450958, 0.036525361239910126, -0.01400727592408657, -0.02403927408158779, -0.025011127814650536, -0.017538318410515785, -0.005559305194765329, -0.007796055171638727, 0.05209701508283615, -0.013746503740549088, -0.014964557252824306, -0.08471320569515228, -0.05350659787654877, -0.01720329374074936, 0.024639470502734184, -0.040088921785354614, -0.011852895841002464, 0.02965821698307991, 0.02988838218152523, -0.001308383303694427, 0.008376400917768478, -0.020484542474150658, 0.002007116097956896, 0.053264595568180084, 0.034740228205919266, 0.012235731817781925, 0.039494890719652176, 0.013534585945308208, 0.005812300369143486, 0.014893663115799427, -0.024350417777895927, 0.024130385369062424, -0.022482767701148987, -0.031124183908104897, -0.039210349321365356, 0.035474665462970734, -0.05013613402843475, -0.06734549254179001, 0.023764748126268387, 0.02650848589837551, -0.011815541423857212, 0.014328827150166035, -0.06360728293657303, 0.01088638138025999, -0.02851775288581848, -0.0022321962751448154, -0.06578525900840759, 0.018067320808768272, 0.005542899016290903, 0.0012885445030406117, -0.013362324796617031, -0.05613628774881363, 0.15086333453655243, 0.03554576635360718, 0.039432093501091, 0.015274166129529476, 0.038675833493471146, 0.08839868754148483, 0.017881188541650772, 0.020914161577820778, -0.0027205543592572212, -0.0344141349196434, -0.0014986745081841946, -0.0016220830148085952, 0.01682262308895588, 0.0037211852613836527, 0.0269792303442955, 0.04913138970732689, -0.049609165638685226, 0.0005502853891812265, 0.021190982311964035, -0.042395416647195816, -0.055688776075839996, 0.0245219673961401, -0.00935576856136322, 0.051473621279001236, -0.020137976855039597, 0.027618780732154846, 0.013951608911156654, -0.03577601537108421, 0.020794183015823364, -0.012882210314273834, 0.030970562249422073, -0.039522651582956314, 0.04096478223800659, -0.014352353289723396, -0.044575225561857224, 0.03832099586725235, 0.04252752661705017, -0.02321358397603035, -0.01460607722401619, -0.008634368889033794, 0.010930645279586315, 0.008909879252314568, 0.056010328233242035, -0.023889293894171715, -0.009533186443150043, 0.041046448051929474, -0.028791561722755432, -0.0036609128583222628, 0.0015882145380601287, -0.04327307641506195, 0.05580355226993561, -0.033386051654815674, 0.01680927537381649, 0.002966847736388445, -0.036171961575746536, 0.010903185233473778, 0.030267303809523582, -0.022127801552414894, 0.004963668994605541, 0.01124741230159998, 0.045424170792102814, 0.009409265592694283, -0.022905582562088966, -0.003043090458959341, -0.02653302252292633, 0.02209298498928547, 0.030292470008134842, -0.004687306005507708, -0.017338577657938004, -0.007997648790478706, 0.008222470991313457, -0.006539017427712679, -0.029321664944291115, -0.04321351647377014, 0.04862844944000244, 0.03969285637140274, -0.029947813600301743, 0.03724285587668419, -0.0019119583303108811, -0.010639138519763947, -0.006554070860147476, -0.02239893190562725, 0.010466096922755241, -0.0030732096638530493, 0.005745077505707741, 0.037556108087301254, -0.06904147565364838, -0.04020248353481293, -0.04601861163973808, 0.045362405478954315, 0.03253325819969177, 0.040167663246393204, 0.011148456484079361, 0.007931742817163467, -0.01952800527215004 ]
Citation: Recsetar, M., Brown, T.W. 2016. Catfish production using intensive aeration. The Catfish Journal. 30(1):15. Interpretive Summary: Catfish farmers in Arkansas and Mississippi have been able to produce much higher yields by increasing the aeration rates in their ponds. As of 2010, the average aeration rate within the industry was about 2.5 hp/acre. This roughly equates to a farmer having either 2 or 3 10-hp paddlewheel aerators in a 10 acre pond. By adding additional paddlewheel aerators to a pond, a farmer is able to provide adequate dissolved oxygen to the entire pond thus relieving the stress of low oxygen on the fish. When dissolved oxygen is not the limiting factor as it has been in the past, yields are free to increase dramatically. Utilizing intensive aeration in smaller ponds also allows for a farmer to have a more manageable standing crop at the end of the season and help mitigate some of the risk. Although it is recommended that intensively aerated ponds be stocked with hybrid catfish, there has been success with channels and yields have been shown to increase as aeration increases even before a pond gets to what we would consider intensive aeration levels (6 hp/acre). Intensive aeration of catfish ponds may be an economically feasible solution (although thorough economic analysis is needed) and a potentially good option for farms looking to increase production without needing additional land.
[ 0.015587592497467995, 0.030110692605376244, -0.034321922808885574, -0.006584387272596359, -0.014187638647854328, -0.001863417448475957, -0.007252742536365986, 0.027992919087409973, 0.04424610361456871, 0.04863402247428894, 0.019794153049588203, -0.023551180958747864, -0.009792015887796879, -0.027879275381565094, 0.022971926257014275, 0.010409928858280182, -0.03086567297577858, -0.048779502511024475, -0.027234138920903206, 0.008898605592548847, 0.020215874537825584, 0.01945396140217781, -0.035738471895456314, -0.02388615533709526, -0.014064587652683258, 0.051117777824401855, 0.020659606903791428, -0.019456377252936363, 0.07472285628318787, 0.07183942943811417, -0.026089536026120186, -0.009285999462008476, 0.018926622346043587, -0.04211914539337158, -0.02209118753671646, -0.019560515880584717, 0.023308776319026947, -0.0169825442135334, -0.017495758831501007, -0.04311428219079971, 0.018079401925206184, -0.02737482823431492, 0.037977203726768494, -0.03898429870605469, -0.022611530497670174, 0.017730113118886948, 0.012595344334840775, -0.017395086586475372, 0.012616503052413464, -0.03778770565986633, 0.02237299270927906, -0.019092118367552757, 0.021154528483748436, -0.01040068082511425, -0.008673585951328278, -0.0021619240287691355, 0.00520931463688612, -0.023449869826436043, -0.031934354454278946, 0.03890135511755943, 0.024106968194246292, 0.011380440555512905, 0.034431736916303635, -0.030298378318548203, 0.042273543775081635, 0.04004080221056938, -0.03029583767056465, -0.00708266394212842, -0.010834923945367336, -0.03972576931118965, -0.011239835061132908, 0.004038073122501373, -0.012119757011532784, -0.004895699676126242, 0.012202348560094833, -0.015375135466456413, 0.00979662872850895, -0.020009169355034828, -0.015589192509651184, 0.017755866050720215, -0.005755361635237932, 0.07346687465906143, 0.04599979892373085, -0.013260227628052235, -0.06224243342876434, -0.03348144143819809, -0.012194799259305, -0.02068478614091873, 0.03560866788029671, -0.00004853575228480622, 0.010019184090197086, 0.07315997779369354, 0.005563244689255953, -0.001647242228500545, 0.026724766939878464, 0.009942210279405117, -0.02149771898984909, 0.07194878906011581, 0.017041703686118126, -0.000829782395157963, 0.041881754994392395, 0.025327378883957863, 0.021339790895581245, 0.04087936878204346, -0.05232233554124832, 0.002316369442269206, 0.007499314844608307, 0.027280109003186226, 0.0018390221521258354, -0.03879990428686142, 0.021736789494752884, -0.017171477898955345, 0.02672462910413742, 0.009431523270905018, -0.0217003021389246, 0.027949372306466103, 0.006099959835410118, 0.04874294623732567, -0.061537958681583405, 0.022280363366007805, -0.0029942740220576525, 0.00010179280798183754, 0.021653175354003906, -0.03530796244740486, 0.003270434681326151, -0.03344302624464035, -0.039614323526620865, 0.0543377622961998, -0.04086501523852348, 0.00045124220196157694, 0.006871871650218964, -0.03954320028424263, -0.03627734258770943, 0.026871971786022186, -0.00019599351799115539, 0.02825115993618965, -0.0070563009940087795, 0.04755111411213875, 0.01200968585908413, -0.04566314443945885, 0.058424290269613266, 0.029236432164907455, 0.007939770817756653, 0.08788552135229111, 0.007305558305233717, 0.06153913587331772, 0.007252761162817478, -0.011727907694876194, -0.023297512903809547, 0.031939323991537094, -0.0336899571120739, 0.02189784310758114, -0.01342947781085968, 0.032133303582668304, 0.011665632016956806, 0.04435018450021744, -0.023972244933247566, 0.009442239068448544, 0.010768326930701733, 0.032997362315654755, -0.013857715763151646, 0.018550703302025795, -0.026309136301279068, 0.03712517023086548, -0.03132392466068268, 0.04693158343434334, -0.030521633103489876, -0.031797222793102264, -0.02937215194106102, -0.04411714896559715, 0.031022904440760612, 0.00029241558513604105, -0.0046264599077403545, 0.03328154981136322, 0.03152771294116974, 0.03646775707602501, 0.028807561844587326, 0.021011225879192352, 0.04943312704563141, 0.051542896777391434, -0.008438767865300179, -0.027735553681850433, -0.011197506450116634, 0.06358399987220764, 0.0024867760948836803, 0.0023090585600584745, -0.00007946507685119286, -0.03498942777514458, -0.052226852625608444, -0.02656535990536213, 0.0014048742596060038, 0.02972831204533577, -0.040975458920001984, 0.014987238682806492, 0.019245915114879608, 0.012943637557327747, -0.004989463835954666, -0.018589144572615623, -0.014200357720255852, -0.03954071179032326, -0.0018688682466745377, 0.028630569577217102, -0.030422572046518326, 0.04798232018947601, -0.008326681330800056, -0.045896824449300766, 0.034988030791282654, 0.07510187476873398, -0.043486203998327255, 0.013883320614695549, 0.058816712349653244, 0.014111573807895184, -0.023154960945248604, -0.007991280406713486, 0.011411060579121113, -0.004783435259014368, -0.01761036366224289, 0.05126364901661873, 0.0033339429646730423, 0.005283718928694725, 0.028097400441765785, -0.018775975331664085, 0.07797664403915405, 0.04770410433411598, -0.0064739566296339035, -0.007750105112791061, 0.028084635734558105, 0.046733222901821136, -0.021946603432297707, -0.010567013174295425, -0.027695689350366592, 0.046308860182762146, 0.02704118937253952, 0.06431814283132553, 0.03771471232175827, 0.0015012185322120786, 0.050831086933612823, 0.03885684907436371, -0.012485291808843613, 0.03633609786629677, 0.022266477346420288, 0.026361316442489624, 0.011395365931093693, 0.004737799055874348, -0.017788995057344437, 0.02587338723242283, -0.031194085255265236, -0.0022045697551220655, -0.042527347803115845, 0.016379350796341896, -0.030954573303461075, 0.027046535164117813, 0.0234259981662035, 0.03936498612165451, -0.016865765675902367, 0.012775257229804993, 0.023954981938004494, 0.04824278503656387, -0.037888169288635254, -0.025696156546473503, 0.008439358323812485, 0.028544412925839424, -0.010338825173676014, -0.018201280385255814, 0.035574328154325485, 0.014864560216665268, -0.029402123764157295, 0.019116129726171494, 0.004623837769031525, -0.01043913047760725, -0.04631957411766052, -0.07578480988740921, -0.0676342323422432, -0.030495068058371544, -0.0411515012383461, 0.0045533194206655025, 0.008869748562574387, -0.047499772161245346, 0.0043348344042897224, 0.009332174435257912, -0.026350172236561775, -0.02597811259329319, -0.030540848150849342, 0.03726207837462425, 0.021988634020090103, 0.029816342517733574, -0.03274865821003914, 0.03113085962831974, -0.011918798089027405, 0.029788531363010406, 0.0012733105104416609, -0.015457086265087128, -0.03048054128885269, -0.04066653549671173, 0.02617858536541462, 0.0071641807444393635, -0.0070657567121088505, 0.0010615414939820766, -0.025518277660012245, -0.04518183693289757, -0.007513491436839104, 0.009172155521810055, -0.03416388854384422, -0.02158132568001747, -0.02370450645685196, 0.0499139130115509, 0.0011607648339122534, -0.024382108822464943, 0.029733862727880478, 0.030346784740686417, -0.039717357605695724, 0.0734482929110527, 0.012177800759673119, 0.0410601980984211, -0.04312538728117943, 0.048408325761556625, 0.02490554004907608, -0.01108702365309, -0.031819432973861694, -0.03246906027197838, -0.01025361567735672, 0.01587195135653019, 0.015719641000032425, -0.024800872430205345, -0.05247289314866066, 0.02401083894073963, 0.02349776215851307, -0.07257960736751556, 0.054138872772455215, -0.0463680662214756, -0.045371029525995255, -0.0021562050096690655, -0.01942790299654007, 0.00031186838168650866, 0.022901540622115135, 0.02692238986492157, 0.008541573770344257, -0.05039362609386444, -0.0028969545383006334, 0.009429732337594032, 0.07001625746488571, -0.04347435012459755, 0.030641762539744377, 0.05499831959605217, -0.014097925275564194, -0.006413251161575317, 0.006896352861076593, -0.028047505766153336, -0.003775595687329769, -0.017396138980984688, -0.025802914053201675, 0.02272350713610649, 0.014256195165216923, 0.02047695219516754, 0.01712934672832489, 0.038149215281009674, -0.03478492423892021, 0.03206738829612732, 0.0004245469463057816, 0.02502732165157795, 0.037989478558301926, -0.001582495286129415, 0.02627118118107319, -0.014980623498558998, -0.05507858842611313, -0.041499778628349304, 0.05280196666717529, 0.0048051029443740845, 0.06055934727191925, -0.07423646748065948, 0.0619056336581707, 0.01679559424519539, -0.038016222417354584, 0.06094859167933464, -0.025263290852308273, 0.009049370884895325, 0.04388997331261635, -0.005583412013947964, 0.040235310792922974, -0.06957636028528214, 0.0018399633700028062, 0.017940128222107887, 0.028368979692459106, 0.033396463841199875, -0.005703727714717388, 0.0542413666844368, -0.00838824175298214, -0.05603962764143944, -0.03026345930993557, -0.022513877600431442, -0.019681300967931747, -0.0374259389936924, -0.003546650055795908, -0.026421571150422096, -0.06131352111697197, -0.0210184995085001, 0.0400480218231678, 0.03684300184249878, 0.029519638046622276, -0.022577283903956413, 0.025731466710567474, -0.019673136994242668, 0.04697725921869278, 0.048226285725831985, 0.012228059582412243, 0.02406223490834236, -0.029005294665694237, 0.026696201413869858, 0.026946483179926872, -0.012088613584637642, -0.026165777817368507, -0.0077066789381206036, -0.019838770851492882, 0.029625756666064262, -0.0022165898699313402, -0.022694023326039314, -0.025181734934449196, 0.01943281479179859, 0.004033391829580069, 0.04164599999785423, -0.0034025043714791536, -0.03611009940505028, -0.015921032056212425, 0.029393086209893227, 0.03784278407692909, -0.045642513781785965, 0.028094548732042313, -0.04829823225736618, 0.042324911803007126, 0.034325920045375824, -0.0013758896384388208, -0.023117447271943092, -0.03288767486810684, -0.024553855881094933, -0.005902029573917389, -0.002096393145620823, 0.034839335829019547, -0.013560004532337189, -0.03413129597902298, -0.01708834432065487, 0.011114361695945263, 0.022107841446995735, -0.003145369701087475, -0.014734921976923943, -0.00348752923309803, 0.03608385846018791, 0.01885015331208706, 0.03758775442838669, 0.0060295360162854195, -0.021780813112854958, 0.03467046469449997, -0.050451088696718216, -0.008436339907348156, 0.006997825112193823, -0.007048776838928461, 0.007015064358711243, -0.011288601905107498, -0.004280658904463053, 0.013571318238973618, 0.005335708148777485, -0.037185557186603546, 0.000851652876008302, 0.034780777990818024, -0.054002296179533005, -0.06321790814399719, 0.030036650598049164, 0.011144895106554031, -0.03457276150584221, 0.046426016837358475, 0.023797955363988876, -0.013219241052865982, 0.031136760488152504, 0.03859018161892891, -0.05599185451865196, 0.01956653967499733, -0.03166584670543671, 0.00824930239468813, -0.002301593078300357, -0.04353046789765358, 0.027089783921837807, -0.025010619312524796, 0.024877965450286865, -0.007554447278380394, -0.0029161139391362667, -0.05966775491833687, -0.06152044236660004, 0.009587107226252556, 0.024236615747213364, -0.02334160916507244, 0.010179643519222736, 0.010596834123134613, -0.010871902108192444, -0.004025646485388279, -0.0017242247704416513, -0.00623740442097187, 0.0029044130351394415, 0.025290198624134064, -0.00481721805408597, 0.02471879869699478, 0.006177220959216356, 0.02959374524652958, -0.010735050775110722, -0.03470534831285477, -0.016875965520739555, -0.015978433191776276, -0.0045124744065105915, -0.050166066735982895, 0.02042655274271965, -0.013532357290387154, -0.0112377954646945, -0.029413854703307152, 0.004538674373179674, -0.0259387344121933, -0.0024967242497950792, 0.0207431111484766, -0.01265303697437048, 0.03380526602268219, 0.01157398521900177, -0.03450017049908638, 0.036649227142333984, 0.0228747371584177, -0.029148312285542488, -0.03943752869963646, 0.04270681366324425, -0.01921752840280533, 0.06377921998500824, -0.023557905107736588, -0.05233923718333244, -0.03811937943100929, -0.04026452824473381, 0.027807386592030525, -0.04637584090232849, -0.04911904036998749, -0.03977784141898155, -0.05304129049181938, -0.04908649995923042, 0.030968571081757545, 0.03440918028354645, -0.0007367556681856513, 0.006625927519053221, -0.037596799433231354, -0.008911672979593277, -0.018056882545351982, -0.01221494097262621, -0.035234544426202774, -0.03012135811150074, -0.029864927753806114, 0.03078823909163475, 0.008710891008377075, 0.0017274096608161926, -0.005572800990194082, 0.006171151529997587, 0.04655712842941284, 0.0028321801219135523, -0.03999859467148781, -0.0367405004799366, -0.03824160248041153, -0.012224555015563965, -0.012090764939785004, -0.009294211864471436, -0.02423030324280262, 0.033487409353256226, -0.058460526168346405, 0.01032091025263071, 0.000048097408580360934, -0.035981010645627975, 0.0013524014502763748, -0.019603801891207695, 0.06821951270103455, 0.0036787977442145348, 0.031598418951034546, -0.043246228247880936, 0.0640600323677063, 0.030451346188783646, 0.004410598427057266, -0.04513847082853317, -0.03674640506505966, -0.05493636429309845, -0.05042795464396477, 0.04228537529706955, -0.04263615980744362, -0.05320194363594055, -0.03782956674695015, -0.018509723246097565, 0.026765411719679832, -0.017387202009558678, 0.044578246772289276, 0.05442309379577637, 0.00553489476442337, -0.00251981639303267, -0.01964031346142292, 0.009457319974899292, 0.045516710728406906, -0.021569635719060898, -0.006463436875492334, -0.030183827504515648, -0.029070015996694565, -0.020535321906208992, -0.03614543750882149, -0.022667905315756798, -0.041682593524456024, 0.00030674118897877634, 0.0542442724108696, -0.02486305683851242, 0.062330782413482666, 0.018125228583812714, -0.050859011709690094, -0.045921441167593, 0.037327054888010025, 0.023606140166521072, 0.02136724255979061, 0.05307596176862717, -0.0221838541328907, -0.013860683888196945, 0.024743353947997093, 0.009584780782461166, 0.0019746471662074327, -0.05165420472621918, 0.04574846103787422, -0.008497168309986591, -0.029983453452587128, 0.023810777813196182, 0.020776495337486267, -0.07904007285833359, -0.05596153438091278, 0.03041047789156437, -0.0038320738822221756, -0.011791696771979332, -0.02664361707866192, 0.029998958110809326, 0.0032484771218150854, -0.0005615988629870117, 0.01838763616979122, 0.029422275722026825, -0.01862388849258423, 0.031748026609420776, 0.0076270755380392075, 0.0466909259557724, -0.05555950850248337, 0.019921110942959785, 0.019185390323400497, -0.0025668651796877384, -0.04647120460867882, -0.03573555499315262, 0.0005207742797210813, 0.008860002271831036, 0.024790769442915916, 0.04640025645494461, -0.019784729927778244, 0.021457567811012268, 0.020826242864131927, 0.003867154009640217, 0.05574541911482811, -0.00421915715560317, 0.006673184689134359, 0.009273050352931023, -0.025181131437420845, -0.0683952197432518, -0.04650044068694115, 0.01038332935422659, 0.014849458821117878, 0.01757809892296791, -0.03990545496344566, -0.01006043516099453, 0.03731152042746544, 0.008090986870229244, -0.014063593931496143, -0.041999317705631256, -0.057308379560709, -0.03384539112448692, -0.02048567123711109, -0.034945596009492874, -0.025615310296416283, -0.003796435659751296, 0.026195047423243523, 0.005052671767771244, -0.03408866375684738, 0.004286062438040972, 0.003882082412019372, -0.009531404823064804, 0.022351088002324104, -0.021053452044725418, 0.0070328861474990845, -0.03419358655810356, -0.05802958458662033, -0.013328492641448975, 0.04571308568120003, 0.0011758428299799562, -0.0053377519361674786, 0.002483892487362027, 0.033703241497278214, -0.00523479375988245, 0.03937269002199173, 0.011686911806464195, -0.00006291802128544077, -0.006197444628924131, -0.02600651979446411, -0.0014187392080202699, 0.0025569198187440634, -0.041818756610155106, 0.04905683547258377, 0.017679888755083084, -0.00524704996496439, 0.023104773834347725, -0.006316205020993948, -0.019008850678801537, -0.016227496787905693, -0.012154053896665573, 0.023089615628123283, 0.011382781900465488, -0.04290362074971199, -0.0304703451693058, 0.01923171430826187, -0.04789244383573532, 0.026067053899168968, -0.00862601213157177, -0.003836746560409665, 0.01840328611433506, 0.010736887343227863, -0.026175014674663544, 0.04251866787672043, -0.010429047048091888, 0.009578210301697254, 0.00014741266204509884, 0.028228778392076492, 0.02203911356627941, 0.00576347392052412, 0.03403523936867714, 0.008605831302702427, 0.0031813678797334433, -0.05375000089406967, 0.014438615180552006, 0.028068874031305313, -0.021552851423621178, 0.04616212472319603, 0.0045165736228227615, -0.034705642610788345, -0.05157400295138359, -0.020880473777651787, -0.029950561001896858, 0.05960837006568909, 0.008090060204267502, 0.0024441294372081757, 0.014526226557791233, -0.03580135479569435, -0.03311620652675629, 0.004697177559137344, -0.03544989973306656, -0.026568345725536346, 0.039532553404569626, -0.014355575665831566, -0.03553071245551109, -0.014905393123626709, -0.028954215347766876, -0.015743419528007507, -0.009990894235670567, 0.010744144208729267, -0.02713138610124588, 0.0038517899811267853, -0.007584597449749708, 0.05414595082402229, 0.007648136466741562, 0.010943420231342316, 0.008012907579541206, 0.017013845965266228, -0.06722937524318695, -0.027344195172190666, 0.0021064062602818012, 0.02284640073776245, -0.0033552313689142466, -0.01070358231663704, -0.016536328941583633, 0.012968768365681171, -0.004489300772547722, 0.04683271422982216, -0.00911275576800108, -0.03170714154839516, -0.005502661690115929, 0.008855346590280533, 0.011775433085858822, -0.005728103686124086, -0.0417633019387722, 0.01417907141149044, -0.00795246846973896, -0.020891278982162476, -0.03409922122955322, 0.032259680330753326, 0.07164041697978973, -0.026993900537490845, 0.03912414237856865, 0.004244959447532892, 0.02354888617992401, 0.0016482501523569226, 0.027993515133857727, -0.01586846448481083, 0.060743480920791626, 0.04747522994875908, 0.03847367689013481, 0.007070059888064861, 0.008571984246373177, 0.044241905212402344, -0.036487627774477005, -0.010681982152163982, 0.0500774160027504, 0.02141682803630829, -0.02064158208668232, -0.004117220174521208, -0.050780292600393295, 0.01124646794050932, -0.0019531096331775188, -0.012496891431510448, -0.009617583826184273, -0.03288182616233826, -0.007738303858786821, 0.004229012411087751, -0.03111741505563259, 0.05862561613321304, -0.014739767648279667, -0.0168000441044569, 0.013012314215302467, -0.027542587369680405, 0.027562912553548813, 0.03439226746559143, -0.005167550407350063, -0.0040775490924716, 0.06042524054646492, 0.04145681485533714, 0.007337992079555988, 0.03475473076105118, 0.012441086582839489, 0.006509307771921158, -0.029942838475108147, 0.04342417046427727, 0.016119495034217834, 0.013470274396240711, -0.03346043825149536, -0.001366008771583438, -0.015230993740260601, 0.016041062772274017, -0.02059115096926689, -0.0401112325489521, 0.014476022683084011, -0.047803979367017746, -0.03924581781029701, -0.03180258721113205, 0.0548287071287632, -0.04341690614819527, -0.015734797343611717, 0.02013763040304184, -0.0014790270943194628, 0.0002530839992687106, 0.05683683231472969, 0.0006947463843971491, 0.03486308455467224, 0.0053366562351584435, 0.05716349184513092, 0.0047211600467562675, 0.031148532405495644, 0.0637020394206047, -0.014533831737935543, -0.004272031132131815, 0.030261294916272163, -0.00682923523709178, -0.029909562319517136, -0.02603418380022049, -0.029980609193444252, -0.016570737585425377, 0.009408763609826565, -0.04415632411837578, -0.016843726858496666, 0.043512098491191864, -0.018034381791949272, -0.05244940519332886, -0.014560251496732235, -0.002442646538838744, -0.01908463053405285, -0.003382597817108035, 0.029291648417711258, 0.0511043518781662, 0.012245486490428448, -0.017835622653365135, -0.039382513612508774, -0.012975141406059265, -0.004638251382857561, -0.03463173657655716, 0.031276851892471313, -0.02102133259177208, -0.04779376834630966, -0.040175460278987885, -0.03975794464349747, -0.007759200409054756, 0.017734577879309654, -0.035275090485811234, -0.06835866719484329, 0.02090238407254219, 0.034558288753032684, 0.02120491862297058, -0.01949743740260601, -0.022869398817420006, -0.013948708772659302, 0.03704896196722984, 0.06767439097166061, 0.016824303194880486, 0.05050479248166084, 0.03593706712126732, -0.01660296320915222, 0.011626838706433773, -0.024465952068567276, 0.016784487292170525, 0.005011109169572592, -0.015252540819346905, -0.011017506010830402, 0.028238829225301743, -0.033907920122146606, -0.07616513222455978, 0.02596607804298401, 0.048799779266119, 0.031061222776770592, -0.014653060585260391, -0.07867014408111572, -0.004346501547843218, -0.05285133793950081, -0.034489404410123825, -0.02462080307304859, 0.001053059590049088, 0.015433463267982006, -0.01702534779906273, 0.0026502348482608795, -0.03839727118611336, 0.15292097628116608, 0.038961973041296005, 0.008885541930794716, -0.003953711595386267, 0.01114041730761528, 0.04099133983254433, 0.04520786926150322, -0.0055612907744944096, 0.0020542065612971783, -0.020377902314066887, 0.0220460444688797, -0.0031925446819514036, 0.039929211139678955, 0.029112162068486214, 0.056564852595329285, 0.0347239188849926, -0.048663608729839325, -0.003621323499828577, 0.02924930304288864, -0.048103731125593185, -0.041670236736536026, 0.021739354357123375, -0.0025992682203650475, 0.042558785527944565, 0.004021340515464544, 0.018652241677045822, 0.005697566084563732, -0.048454198986291885, 0.021656686440110207, -0.021913282573223114, 0.028114523738622665, -0.040900930762290955, 0.019349556416273117, -0.016456453129649162, -0.02287609875202179, 0.02509390003979206, 0.003925332333892584, -0.0317552350461483, 0.011103336699306965, -0.023020723834633827, -0.016430316492915154, -0.01363442838191986, 0.004011035431176424, -0.05905121937394142, -0.016843225806951523, 0.06540386378765106, -0.03187316283583641, 0.03776489943265915, 0.007742769550532103, -0.033071115612983704, 0.05015254765748978, -0.04971744492650032, 0.019785728305578232, -0.01607973501086235, -0.02047581784427166, 0.009966354817152023, -0.017719021067023277, -0.03732473403215408, -0.02608608454465866, 0.02546004019677639, 0.04665808007121086, -0.0071304854936897755, 0.0022795498371124268, 0.060459643602371216, 0.0029825347010046244, -0.018012331798672676, 0.007156269159168005, -0.011922420933842659, -0.010466675274074078, -0.022448409348726273, -0.01208328828215599, -0.012646266259253025, 0.014173571020364761, -0.03331068903207779, 0.058924101293087006, 0.038268521428108215, -0.017828302457928658, 0.043399740010499954, -0.002445092424750328, -0.06406858563423157, -0.025928154587745667, -0.06312517821788788, 0.0026094974018633366, -0.042164720594882965, -0.007132765371352434, 0.033451445400714874, -0.05660180002450943, -0.016921665519475937, -0.044324830174446106, 0.03859840705990791, 0.03252117708325386, 0.008804891258478165, 0.005011732690036297, -0.015121362172067165, -0.008227436803281307 ]
But having a risk factor, or even several, does not mean that you will get the disease. Many people with one or more risk factors never get cancer, while others who get cancer may have had few or no known risk factors. Researchers have found several factors that might affect a man's risk of getting prostate cancer. Prostate cancer occurs more often in African-American men and Caribbean men of African ancestry than in men of other races. African-American men are also more than twice as likely to die of prostate cancer than white men. Prostate cancer occurs less often in Asian-American and Hispanic/Latino men than in non-Hispanic whites. The reasons for these racial and ethnic differences are not clear. Prostate cancer is most common in North America, northwestern Europe, Australia, and on Caribbean islands. It is less common in Asia, Africa, Central America, and South America. The reasons for this are not clear. More intensive screening in some developed countries probably accounts for at least part of this difference, but other factors such as lifestyle differences (diet, etc.) are likely to be important as well. For example, Asian Americans have a lower risk of prostate cancer than white Americans, but their risk is higher than that of men of similar backgrounds living in Asia. Having a father or brother with prostate cancer more than doubles a man's risk of developing this disease. (The risk is higher for men who have a brother with the disease than for those who have a father with it.) The risk is much higher for men with several affected relatives, particularly if their relatives were young when the cancer was found. Men with Lynch syndrome (also known as hereditary non-polyposis colorectal cancer, or HNPCC), a condition caused by inherited gene changes, have an increased risk for a number of cancers, including prostate cancer. Other inherited gene changes can also raise a man's risk of prostate cancer. Men who eat a lot of red meat or high-fat dairy products appear to have a slightly higher chance of getting prostate cancer. These men also tend to eat fewer fruits and vegetables. Doctors aren't sure which of these factors is responsible for raising the risk. Some studies have suggested that men who consume a lot of calcium (through food or supplements) may have a higher risk of developing prostate cancer. Dairy foods (which are often high in calcium) might also increase risk. But most studies have not found such a link with the levels of calcium found in the average diet, and it's important to note that calcium has other important health benefits. Being obese (very overweight) does not seem to increase the overall risk of getting prostate cancer. Some studies have found that obese men have a lower risk of getting a low-grade (less dangerous) form of the disease, but a higher risk of getting more aggressive prostate cancer. The reasons for this are not clear. Some studies have also found that obese men may be at greater risk for having more advanced prostate cancer and of dying from prostate cancer, but not all studies have found this. Most studies have not found a link between smoking and getting prostate cancer. Some research has linked smoking to a possible small increased risk of dying from prostate cancer, but this finding needs to be confirmed by other studies. There is some evidence that firefighters can be exposed to chemicals that may increase their risk of prostate cancer. A few studies have suggested a possible link between exposure to Agent Orange, a chemical used widely during the Vietnam War, and prostate cancer, although not all studies have found such a link. The Institute of Medicine considers there to be "limited/suggestive evidence" of a link between Agent Orange exposure and prostate cancer. To learn more, see Agent Orange and Cancer. Some studies have suggested that prostatitis (inflammation of the prostate gland) may be linked to an increased risk of prostate cancer, but other studies have not found such a link. Inflammation is often seen in samples of prostate tissue that also contain cancer. The link between the two is not yet clear, and is an active area of research. Researchers have looked to see if sexually transmitted infections (like gonorrhea or chlamydia) might increase the risk of prostate cancer, because they can lead to inflammation of the prostate. So far, studies have not agreed, and no firm conclusions have been reached. Some studies have suggested that men who have a vasectomy (minor surgery to make men infertile) have a slightly increased risk for prostate cancer, but other studies have not found this. Research on this possible link is still being done.
[ -0.0042798793874681, 0.0008203950710594654, -0.011295173317193985, 0.002446885220706463, -0.008180576376616955, -0.0019760981667786837, 0.0006575018051080406, 0.04353172704577446, 0.02184448391199112, 0.04726393520832062, 0.070182204246521, -0.03926721215248108, 0.03121473640203476, -0.024383965879678726, -0.004668390844017267, -0.006611761171370745, -0.018055858090519905, -0.028601067140698433, 0.0053946818225085735, -0.0043727923184633255, 0.008806264027953148, 0.016028491780161858, -0.04102281481027603, 0.00431717187166214, -0.021900475025177002, 0.04756968095898628, 0.0034942850470542908, 0.02655387483537197, 0.0587012879550457, 0.061072591692209244, -0.022826677188277245, -0.01804121769964695, 0.04269634559750557, -0.048821281641721725, -0.03948938846588135, 0.009758459404110909, 0.04336926341056824, -0.03695997595787048, -0.06024666503071785, -0.035549234598875046, -0.006914513651281595, -0.026157384738326073, 0.04766513779759407, -0.003980494569987059, -0.020555879920721054, -0.004320623353123665, -0.0492841973900795, -0.024203598499298096, 0.01302863284945488, -0.003562136087566614, 0.025702165439724922, -0.004956047981977463, 0.02480182982981205, -0.008081125095486641, -0.015098301693797112, -0.012214990332722664, 0.03783898055553436, 0.004231086932122707, -0.0010152064496651292, 0.030350064858794212, -0.02401294745504856, -0.020369049161672592, -0.011418428272008896, -0.06419104337692261, 0.04382311552762985, 0.02830750308930874, 0.0057524750009179115, -0.02444426529109478, 0.027902988716959953, 0.0015087381470948458, 0.00858385395258665, -0.019007766619324684, -0.002063109539449215, -0.020247984677553177, 0.02526966854929924, -0.02648589201271534, 0.002424239879474044, 0.02163548581302166, -0.016620371490716934, -0.004564177710562944, 0.04122200235724449, 0.06018391624093056, 0.017478113994002342, 0.03167371824383736, -0.0644887387752533, 0.010912144556641579, 0.031300440430641174, 0.06153801456093788, 0.009266737848520279, 0.01283597107976675, 0.027665629982948303, 0.03296517953276634, 0.002666463842615485, -0.025206582620739937, 0.01875554397702217, 0.055933624505996704, -0.03292828053236008, 0.042762428522109985, 0.01121214684098959, -0.005825004540383816, 0.029363758862018585, 0.018185831606388092, -0.02931462787091732, 0.010149066336452961, -0.011171029880642891, 0.0012423607986420393, 0.058523133397102356, 0.017823778092861176, -0.005159093998372555, -0.021621238440275192, 0.02769464999437332, -0.014591322280466557, 0.00785267073661089, 0.0013899396872147918, 0.011279692873358727, 0.017073949798941612, 0.005727657116949558, 0.03525761514902115, -0.03373478725552559, 0.0397748127579689, 0.006963461637496948, -0.0012446176260709763, 0.055216431617736816, -0.024206088855862617, 0.016441114246845245, 0.017215058207511902, -0.018267087638378143, 0.06418973952531815, -0.042469535022974014, -0.0034937697928398848, 0.009113587439060211, -0.017163589596748352, 0.014557106420397758, -0.0022826080676168203, -0.013787818141281605, 0.005713528022170067, 0.0032067126594483852, 0.04951724410057068, 0.0008474536007270217, -0.0377979539334774, 0.03244534879922867, 0.03938371315598488, -0.01600777357816696, 0.07767418771982193, 0.026948096230626106, 0.031187808141112328, 0.0018791998736560345, -0.04904547333717346, -0.011274002492427826, 0.04220997914671898, -0.02144278585910797, 0.03487567603588104, -0.006523245479911566, -0.02286912314593792, -0.017710253596305847, 0.019165344536304474, 0.013963612727820873, -0.002574288984760642, 0.050545237958431244, 0.021950848400592804, -0.04108184948563576, 0.0007485018577426672, -0.006500303279608488, 0.0464596189558506, -0.008756144903600216, 0.05467092618346214, -0.05911991372704506, -0.005620248150080442, 0.009686753153800964, -0.03205623850226402, 0.017878392711281776, -0.0015291583258658648, -0.027492305263876915, 0.017903828993439674, 0.02769595757126808, 0.05004952475428581, 0.03695296868681908, -0.03276926651597023, 0.027349410578608513, 0.036972396075725555, -0.05008206516504288, 0.017476197332143784, 0.0016977933701127768, 0.059034112840890884, 0.021435942500829697, -0.012764958664774895, -0.017784995958209038, -0.006898566149175167, -0.024762503802776337, -0.019072895869612694, -0.0009326664730906487, 0.004954375792294741, 0.02008592151105404, 0.045815445482730865, 0.038024671375751495, 0.008499872870743275, -0.021666869521141052, -0.02413565292954445, -0.015526462346315384, -0.03881162777543068, -0.019503092393279076, 0.004382171668112278, -0.017653902992606163, 0.045062992721796036, 0.016389422118663788, -0.006126025691628456, 0.00803339947015047, 0.05955018103122711, -0.06361407786607742, 0.014035800471901894, 0.04414694756269455, 0.020962005481123924, -0.004712325986474752, -0.05033119022846222, 0.005065720062702894, -0.018445950001478195, -0.030233893543481827, 0.024641182273626328, -0.02106131613254547, 0.016133323311805725, -0.008501985110342503, -0.016450179740786552, 0.01821124739944935, 0.033903058618307114, 0.010792904533445835, 0.020133381709456444, 0.024555519223213196, 0.027018997818231583, -0.03219975158572197, -0.007932114414870739, -0.0003513168776407838, 0.03575887531042099, 0.017430061474442482, 0.060946378856897354, 0.060510870069265366, 0.024122271686792374, 0.0313011035323143, 0.04320591688156128, -0.002338200341910124, 0.04689670726656914, 0.0243892390280962, 0.0504116490483284, 0.03350347280502319, 0.037499021738767624, -0.03136054426431656, 0.039842259138822556, -0.02315283752977848, -0.0035028252750635147, -0.02740689553320408, 0.04060954228043556, -0.015483500435948372, 0.03565921634435654, 0.01927342265844345, 0.03185557946562767, -0.018701231107115746, 0.0021761402022093534, 0.03928803652524948, 0.0414254367351532, -0.06905568391084671, -0.04124164208769798, -0.012711853720247746, 0.04115355759859085, -0.026289982721209526, 0.010713530704379082, 0.05239781737327576, 0.020474176853895187, 0.007709142751991749, 0.018475869670510292, 0.009179553017020226, -0.013645834289491177, -0.051736120134592056, -0.053407277911901474, -0.054379094392061234, -0.06043931841850281, -0.06469113379716873, 0.01890447735786438, 0.038584306836128235, -0.04485237970948219, 0.0097425552085042, 0.006387192290276289, -0.030102059245109558, -0.029489295557141304, -0.01408528070896864, 0.027332762256264687, -0.0018107962096109986, 0.02671155147254467, -0.0033957993146032095, 0.018038421869277954, -0.019056567922234535, 0.013626620173454285, -0.021346472203731537, -0.035719431936740875, -0.02215631678700447, -0.02937445417046547, 0.05822199210524559, -0.004474428948014975, 0.022900769487023354, -0.021610938012599945, -0.032426171004772186, -0.07101046293973923, 0.030318081378936768, 0.010716088116168976, -0.006754000671207905, 0.007395561318844557, -0.062103271484375, 0.03204835206270218, 0.01386976521462202, -0.037603266537189484, 0.045183341950178146, 0.06800684332847595, -0.06601344794034958, 0.030674658715724945, 0.008789945393800735, 0.03165489807724953, -0.027578819543123245, 0.04151378571987152, 0.047524988651275635, -0.0010236110538244247, -0.029824022203683853, -0.02974068559706211, -0.04474962130188942, 0.012567375786602497, 0.03276366367936134, -0.016372086480259895, -0.01679634302854538, 0.04522063583135605, 0.022366797551512718, -0.0545746386051178, 0.024314934387803078, -0.02688506804406643, -0.05867147073149681, -0.023873360827565193, -0.03773404285311699, 0.02559635043144226, 0.010790332220494747, -0.007255998440086842, 0.027101071551442146, -0.023640986531972885, -0.008764422498643398, 0.04870817810297012, -0.0057183620519936085, -0.015969475731253624, 0.019442154094576836, 0.04242214933037758, -0.004123240243643522, -0.007372410502284765, 0.018068132922053337, 0.004057238344103098, 0.004796954337507486, 0.010057570412755013, 0.01561262272298336, 0.01108733844012022, 0.038289304822683334, 0.013455787673592567, 0.00732913613319397, 0.05699889734387398, -0.006298829335719347, 0.002147490391507745, 0.010633328929543495, 0.03018171340227127, 0.0156728383153677, 0.03407720476388931, -0.005655679851770401, 0.014163993299007416, -0.025471923872828484, -0.051145587116479874, 0.015283138491213322, -0.012999316677451134, 0.06482605636119843, -0.0326351560652256, 0.09361737966537476, -0.017385199666023254, -0.03516170755028725, 0.03074374422430992, -0.03508317470550537, 0.005516930483281612, 0.05265878513455391, 0.007479846011847258, 0.03220571205019951, -0.05657503753900528, 0.0020846363622695208, 0.036459024995565414, 0.03703271597623825, 0.025034088641405106, -0.0018587959930300713, 0.04064842686057091, -0.021021001040935516, 0.0001001035125227645, -0.023268865421414375, -0.007259855978190899, -0.012012123130261898, -0.03150778263807297, 0.026854103431105614, 0.012087838724255562, -0.04680367186665535, -0.03387612849473953, 0.01773056574165821, 0.01450773049145937, 0.03022855892777443, -0.005906579550355673, 0.044055115431547165, -0.009720154106616974, 0.00017960250261239707, 0.02290850691497326, 0.014978651888668537, 0.0060785249806940556, -0.04262937605381012, 0.03637087717652321, 0.02601212076842785, -0.03880714625120163, -0.04300007224082947, -0.01153496652841568, -0.008049302734434605, 0.00752604566514492, 0.0044645159505307674, -0.027364423498511314, -0.031950656324625015, 0.010640611872076988, -0.03940556198358536, 0.06293682008981705, -0.03234067186713219, -0.0059779430739581585, -0.03584272414445877, 0.019057301804423332, 0.023056190460920334, -0.04881489276885986, -0.038111429661512375, -0.04432146996259689, 0.027325192466378212, 0.04210102930665016, -0.0010196077637374401, -0.08475890755653381, -0.024507440626621246, -0.051113974303007126, -0.021397113800048828, -0.010689514689147472, 0.053004711866378784, 0.0019327240297570825, -0.002823361661285162, -0.02723303623497486, 0.016237448900938034, 0.012200490571558475, 0.024689383804798126, -0.0018468457274138927, -0.011721664108335972, 0.036683857440948486, 0.017624763771891594, 0.048839740455150604, 0.004645430948585272, -0.015469581820070744, 0.023614248260855675, -0.07449600845575333, -0.026036936789751053, -0.012396699748933315, -0.026143202558159828, -0.006800674833357334, 0.010277623310685158, -0.0159346554428339, 0.02573167346417904, -0.04003659263253212, -0.012764541432261467, -0.017154790461063385, 0.03795935958623886, -0.07896406948566437, -0.03532375022768974, 0.02118750289082527, -0.03980735316872597, -0.03461642935872078, 0.06507840007543564, 0.02136778086423874, 0.006414045114070177, 0.019625753164291382, 0.016478197649121284, -0.053985901176929474, 0.03400299698114395, -0.016396502032876015, 0.028971096500754356, -0.010342199355363846, -0.026980169117450714, -0.008983839303255081, -0.013485114090144634, 0.03981304541230202, -0.0016019415343180299, -0.030027946457266808, -0.05872203782200813, -0.0726718008518219, -0.03466268628835678, -0.03334507718682289, -0.02761133387684822, 0.022685321047902107, 0.017189716920256615, 0.0018164622597396374, 0.003827789332717657, -0.03178728371858597, 0.000041777257138164714, 0.0009269384318031371, -0.005236979108303785, 0.025598788633942604, 0.003727726871147752, 0.03562178090214729, 0.003622982883825898, -0.022241512313485146, -0.05131245031952858, 0.002842819783836603, 0.025043392553925514, -0.030981456860899925, -0.009512999095022678, 0.023115795105695724, 0.016821015626192093, -0.04290412738919258, -0.04128793254494667, -0.002548044081777334, -0.058436840772628784, 0.024130534380674362, 0.03528385981917381, -0.015136458911001682, 0.008961077779531479, 0.004056864883750677, -0.02980266883969307, 0.05505281314253807, 0.009213400073349476, -0.07227710634469986, -0.028918597847223282, 0.04949170723557472, -0.020621098577976227, 0.023685652762651443, -0.01309136301279068, -0.06136563792824745, -0.06838054209947586, -0.08566088229417801, 0.025424133986234665, -0.04028173163533211, -0.020582636818289757, -0.03342217206954956, -0.010952814482152462, -0.013547332026064396, 0.04205510765314102, -0.008253841660916805, -0.008904615417122841, 0.01846695877611637, -0.036336738616228104, 0.02638472616672516, -0.034145087003707886, -0.01196233369410038, -0.024740925058722496, -0.003899018047377467, 0.012460959143936634, 0.06838720291852951, 0.028363140299916267, 0.009147955104708672, -0.0005265191430225968, 0.01272416952997446, 0.04051665589213371, 0.0013179037487134337, -0.03666989877820015, -0.03277543932199478, -0.02336147241294384, 0.021859530359506607, -0.023623071610927582, -0.00878187920898199, -0.036771152168512344, 0.050689470022916794, -0.037492573261260986, -0.008852059952914715, -0.030278855934739113, -0.005348141770809889, -0.008863902650773525, -0.010021251626312733, 0.04331929609179497, -0.02267524041235447, -0.0008592505473643541, -0.02073046937584877, 0.016740091145038605, 0.0038853681180626154, 0.004013385158032179, -0.03828456252813339, -0.03417088836431503, -0.03843608498573303, -0.054364413022994995, 0.04546802490949631, -0.030142074450850487, -0.013235627673566341, -0.06727270781993866, -0.038637738674879074, 0.025965485721826553, -0.02363927662372589, 0.030161581933498383, 0.05282937362790108, 0.0019958745688199997, -0.04136190190911293, -0.02459033392369747, 0.061052776873111725, 0.04168079420924187, -0.024243712425231934, 0.017331423237919807, 0.016023539006710052, -0.04879893362522125, -0.02026292495429516, -0.041720181703567505, -0.04790843278169632, -0.05331457778811455, -0.005894993897527456, 0.0507826954126358, -0.012636586092412472, 0.02105090394616127, 0.007452515419572592, -0.04200286418199539, -0.024291064590215683, 0.03932451084256172, -0.008560620248317719, 0.029023636132478714, 0.04615422710776329, -0.011489666998386383, -0.030217105522751808, 0.007472863886505365, -0.016325974836945534, -0.012702682055532932, -0.04477102309465408, 0.05235273391008377, 0.024395782500505447, -0.04601329192519188, 0.0320277139544487, 0.05542133003473282, -0.07476144284009933, -0.01198904775083065, 0.016730019822716713, -0.010610248893499374, -0.028798671439290047, -0.01967058889567852, -0.0010012710699811578, -0.00884807389229536, -0.000745859753806144, 0.011632658541202545, 0.0009396893437951803, 0.005293385591357946, 0.03804289177060127, -0.0019990885630249977, 0.02768840827047825, -0.042537812143564224, 0.019786130636930466, 0.010532385669648647, -0.003398241475224495, -0.017761602997779846, 0.0059603978879749775, 0.03965328633785248, 0.018706565722823143, -0.013045632280409336, 0.042819682508707047, 0.0004027554823551327, -0.013476978056132793, 0.008835877291858196, -0.04892440140247345, 0.01669544167816639, 0.033885885030031204, -0.028876474127173424, 0.01429080218076706, -0.04262096807360649, -0.0212570633739233, -0.04204021394252777, 0.012830906547605991, 0.029448941349983215, 0.021634552627801895, -0.013488017953932285, 0.0050707715563476086, 0.02623145282268524, 0.0049889711663126945, -0.005571380257606506, -0.03502994775772095, -0.029348542913794518, -0.045735251158475876, -0.04875198379158974, -0.03359615430235863, -0.02692243829369545, 0.011004040017724037, 0.031233247369527817, -0.03624597191810608, -0.029934795573353767, 0.00520313298329711, 0.022484181448817253, 0.00883448589593172, 0.009753074496984482, -0.031973421573638916, 0.027071615681052208, -0.0660889744758606, -0.043038833886384964, -0.03259766846895218, -0.003993397578597069, -0.019452903419733047, 0.026076870039105415, -0.011500392109155655, 0.005677094217389822, -0.0018381032859906554, 0.034729283303022385, 0.004002302885055542, 0.025896159932017326, 0.0019482411444187164, -0.023907961323857307, -0.032386962324380875, 0.02620992437005043, 0.002960300538688898, 0.02967200055718422, 0.05506046488881111, -0.022985229268670082, 0.018945686519145966, 0.009561610408127308, -0.024443693459033966, -0.002355960663408041, -0.01369127631187439, 0.02168271690607071, -0.008646597154438496, -0.05338754132390022, -0.04025645554065704, -0.03177627548575401, -0.03971632197499275, 0.007022308185696602, -0.0008994043455459177, -0.007568320259451866, -0.026343557983636856, 0.017503492534160614, 0.005473281256854534, 0.038125667721033096, -0.011230968870222569, 0.013874856755137444, -0.007676508277654648, 0.06329065561294556, 0.0319005623459816, -0.01868445985019207, 0.060083720833063126, 0.014126199297606945, 0.01291895192116499, -0.008105169050395489, -0.014254038222134113, 0.020520690828561783, 0.004046982619911432, 0.045873358845710754, 0.00014567308244295418, -0.018086349591612816, -0.04117915406823158, -0.020129159092903137, 0.02034354768693447, 0.04857521504163742, 0.024253807961940765, 0.019972890615463257, 0.006132175680249929, -0.05532879754900932, -0.043153610080480576, -0.004579327069222927, -0.08327144384384155, -0.029619812965393066, 0.04737948626279831, -0.02083122357726097, -0.011558503843843937, 0.007043515332043171, -0.03286215290427208, 0.012247632257640362, -0.0010119976941496134, -0.009630694054067135, -0.008264142088592052, 0.010738421231508255, 0.02295035496354103, 0.039357319474220276, -0.016313109546899796, 0.02654997818171978, -0.019124893471598625, 0.015662239864468575, -0.04760398715734482, -0.04303056001663208, 0.007471345365047455, 0.02176566980779171, 0.023807933554053307, -0.011162668466567993, -0.00975056178867817, 0.019080568104982376, -0.000266785966232419, -0.023401593789458275, -0.003681056434288621, 0.013247324153780937, -0.053874604403972626, 0.03598536178469658, 0.015260974876582623, -0.023743290454149246, -0.03856370598077774, 0.030140208080410957, 0.009677788242697716, -0.06251424551010132, -0.04760020598769188, 0.044186655431985855, 0.03853977844119072, -0.010643161833286285, 0.016735684126615524, 0.03338347747921944, 0.04216918721795082, -0.011730347760021687, 0.01805487461388111, 0.03851153329014778, 0.020051658153533936, 0.03178297355771065, 0.030327538028359413, 0.030178282409906387, 0.016901852563023567, 0.08224289864301682, 0.002465418539941311, 0.00879112258553505, 0.01786312274634838, 0.036428600549697876, -0.009793531149625778, 0.006319988053292036, -0.008679124526679516, 0.025625914335250854, 0.02817203477025032, -0.028444776311516762, 0.005509786307811737, -0.026592262089252472, 0.04710141196846962, -0.04167863354086876, -0.0270999725908041, 0.024847999215126038, -0.048620905727148056, 0.03289902210235596, -0.008112674579024315, -0.01719476841390133, -0.01257613766938448, 0.040826961398124695, -0.01778106577694416, -0.00904630497097969, 0.04616987705230713, 0.013108384795486927, -0.00008948037429945543, 0.04787355661392212, -0.0019410763634368777, 0.002076087985187769, -0.030025187879800797, 0.014614413492381573, 0.012660428881645203, 0.014589501544833183, -0.023895474150776863, -0.0014445309061557055, -0.022004438564181328, 0.01914931647479534, -0.018694380298256874, -0.002526350785046816, 0.04381735250353813, -0.036606039851903915, -0.003218738827854395, -0.026669763028621674, 0.00999197643250227, -0.059953175485134125, -0.024377092719078064, 0.038557566702365875, -0.033917564898729324, -0.02251601405441761, 0.048383962363004684, 0.016579873859882355, 0.0470312274992466, 0.013929072767496109, 0.06730277836322784, -0.007776464801281691, 0.025649217888712883, 0.04884101822972298, -0.0387495756149292, -0.039950501173734665, 0.02300160564482212, 0.000010736443073255941, -0.046522099524736404, -0.023231327533721924, -0.03583945333957672, -0.005932134576141834, 0.005404479801654816, -0.03723873198032379, -0.009229835122823715, 0.027490533888339996, -0.0004801998729817569, -0.03519041836261749, -0.018247399479150772, 0.031876444816589355, -0.016048824414610863, 0.007135842926800251, -0.01665147952735424, 0.04717564210295677, -0.011755078099668026, -0.01667107082903385, -0.06239255145192146, -0.014860928058624268, 0.008305147290229797, -0.04822910949587822, 0.03680510073900223, -0.03903260454535484, -0.01642559841275215, -0.05123614892363548, -0.05539105832576752, -0.015740403905510902, 0.00566530879586935, -0.019600559026002884, -0.035210974514484406, 0.03978423774242401, 0.020692046731710434, -0.012111539952456951, 0.027942858636379242, -0.0387868769466877, -0.0036007273010909557, 0.027540475130081177, 0.03752290830016136, -0.017259646207094193, 0.038164786994457245, 0.010096786543726921, -0.03600810840725899, 0.050111815333366394, -0.045022785663604736, 0.030496902763843536, -0.014926501549780369, -0.04309753701090813, -0.0605754479765892, 0.043663714081048965, -0.021500684320926666, -0.08223840594291687, 0.033519722521305084, 0.049634914845228195, 0.020034795626997948, -0.018285367637872696, -0.06432580947875977, -0.010993888601660728, -0.036360543221235275, 0.014815154485404491, -0.02315952256321907, -0.009381523355841637, 0.01359554473310709, -0.0024942189920693636, -0.032725974917411804, -0.07305401563644409, 0.12871578335762024, 0.05000371113419533, 0.024357298389077187, -0.02025497704744339, 0.03018742799758911, 0.04218606650829315, 0.021361354738473892, 0.014164092019200325, -0.00004993136099074036, -0.02302369475364685, 0.022752707824110985, 0.005876264534890652, 0.020773964002728462, -0.0008306476520374417, 0.00638040853664279, 0.02312598004937172, -0.04583244398236275, -0.004328613169491291, 0.024784646928310394, -0.05250455439090729, -0.0429367870092392, -0.02471313625574112, -0.0004999929806217551, 0.007135138381272554, -0.008198181167244911, 0.03802311047911644, 0.03078879974782467, -0.06205056607723236, -0.01948150247335434, 0.010401520878076553, 0.010576590895652771, -0.06430235505104065, 0.04887665808200836, -0.02655910514295101, -0.009353862144052982, 0.05248771607875824, -0.011931169778108597, -0.03536166995763779, -0.005178140010684729, -0.009274535812437534, -0.0037733945064246655, 0.002130239037796855, 0.013176570646464825, -0.04326317831873894, 0.006991217844188213, 0.03823327273130417, -0.03273230418562889, 0.037180740386247635, 0.024321816861629486, -0.025652484968304634, 0.06724871695041656, -0.04828068986535072, 0.054651591926813126, 0.00006294396735029295, -0.038544103503227234, 0.030079031363129616, 0.025874938815832138, -0.03268039599061012, -0.006569263990968466, 0.007950223051011562, 0.038203153759241104, -0.006803614553064108, -0.0014035697095096111, 0.025898875668644905, -0.002147589111700654, 0.008719267323613167, 0.009040377102792263, 0.008285394869744778, 0.0010266909375786781, -0.00023210275685414672, -0.028936825692653656, -0.019114134833216667, -0.004871807061135769, -0.006901760585606098, 0.03194648399949074, 0.03541339561343193, 0.0065338206477463245, 0.02896134741604328, -0.011168251745402813, -0.009095807559788227, -0.019128495827317238, -0.03085453063249588, 0.008343721739947796, -0.04369600862264633, 0.016858628019690514, 0.03687962889671326, -0.06314307451248169, -0.017384164035320282, -0.062422651797533035, 0.05559951439499855, 0.03517148643732071, 0.011187072843313217, -0.010007757693529129, -0.00729042524471879, -0.0457514226436615 ]
Maple house Opening: October, 2016 Owned: Wetta Ventures +/- 7,000 SF Team: Brick & West Design, Wetta Ventures, Pangolin Structural Engineers, MSA Engineers, Twin Engine The Maple House building at 28th and Indian School is an adaptive reuse project designed by Brick & West Design. The building has been a part of the phoenix landscape along Indian School Road, home to Maple House Furniture Store, since the late 1950's. This area of central Phoenix has progressed through a number of iterations, once known as a path for sheep herding, Even during the early Maple House days. The site is now a part of the booming Indian School corridor that will host hip eateries and shopping from highway 51 to 48th street. The existing building is 11,000 square-feet and will be split into two free-standing buildings. The design will be centered on attracting new restaurant tenants who prefer unique stand-alone buildings to house their concepts. Phoenix Business Journal | Globest | AZBigMedia
[ -0.011575408279895782, -0.009336383081972599, -0.04409453272819519, -0.03334048390388489, -0.008439725264906883, 0.003207344561815262, 0.0033488597255200148, 0.040185198187828064, 0.0030001599807292223, 0.008156843483448029, 0.011564146727323532, 0.022807883098721504, 0.010292363353073597, -0.02766299806535244, 0.015374106355011463, 0.016990002244710922, -0.03360830992460251, 0.001041114330291748, -0.013399431481957436, -0.006326494738459587, 0.006335027515888214, 0.027185309678316116, -0.09797631949186325, -0.0469689778983593, -0.02414598874747753, 0.02616843208670616, 0.023227207362651825, -0.039544813334941864, 0.04310539364814758, 0.04945867136120796, -0.02063583955168724, -0.023401767015457153, 0.05460270866751671, -0.05672679468989372, -0.015617204830050468, -0.008521000854671001, 0.032725512981414795, -0.019474172964692116, -0.01224963366985321, -0.06044512242078781, 0.025483611971139908, -0.05432466045022011, -0.008246736600995064, -0.06838777661323547, -0.008969572372734547, -0.01061226800084114, -0.02916087955236435, -0.023498572409152985, 0.03416014835238457, -0.016025356948375702, 0.013436388224363327, 0.011063631623983383, 0.01225030142813921, 0.026049962267279625, -0.012271855026483536, 0.01661672070622444, 0.003137907711789012, -0.009248058311641216, -0.04459056630730629, 0.029560862109065056, 0.014684593304991722, -0.010471252724528313, 0.00562058761715889, -0.07856576144695282, 0.02711593545973301, -0.0016606467543169856, -0.00699615990743041, -0.005817073862999678, 0.0291608814150095, -0.04177888110280037, -0.021261272951960564, 0.01135060004889965, -0.036103133112192154, -0.020373832434415817, -0.015711840242147446, -0.013624480925500393, -0.0018325105775147676, 0.011511871591210365, -0.00513231847435236, -0.003023857716470957, 0.05285272002220154, 0.05074026808142662, 0.03702745959162712, 0.015531743876636028, -0.037041980773210526, -0.011476237326860428, -0.020494578406214714, -0.0006556302541866899, -0.03220405802130699, 0.019357752054929733, 0.018732493743300438, 0.05106624588370323, 0.005960038397461176, 0.015600794926285744, 0.025532258674502373, 0.03432527184486389, -0.03361419588327408, 0.033281028270721436, 0.008246388286352158, -0.001546401996165514, 0.07502423226833344, 0.03172335401177406, -0.010326365008950233, 0.010317136533558369, -0.030873967334628105, 0.007117460947483778, -0.024815231561660767, 0.004179095383733511, 0.02656477317214012, -0.031995248049497604, 0.005334426648914814, -0.032903753221035004, -0.005110751371830702, -0.0017438066424801946, 0.002308065304532647, 0.058160267770290375, 0.016258664429187775, 0.047862883657217026, -0.03247169032692909, 0.007495574187487364, 0.015097897499799728, 0.016302376985549927, 0.011286417953670025, -0.0069143096916377544, 0.026246750727295876, -0.03143996745347977, -0.04133610799908638, 0.0703626349568367, -0.02579646185040474, -0.008927891962230206, 0.008664854802191257, -0.040570128709077835, -0.028064291924238205, 0.03608686104416847, -0.002932495204731822, 0.030011747032403946, 0.020807549357414246, 0.05088934674859047, 0.008634150959551334, -0.026796793565154076, 0.06028026342391968, 0.040323905646800995, 0.013396505266427994, 0.07807637751102448, 0.007383259013295174, 0.007726505398750305, -0.00855537224560976, -0.016261659562587738, -0.035775721073150635, 0.014132932759821415, -0.0512009896337986, 0.04535169526934624, -0.0035800545010715723, 0.004089835099875927, 0.0048498185351490974, 0.027809547260403633, 0.0029238371644169092, 0.015357600525021553, -0.006413946393877268, 0.019491633400321007, -0.037355732172727585, -0.0066046384163200855, -0.03820118308067322, 0.03593932464718819, -0.015486536547541618, 0.040316492319107056, -0.06186996400356293, 0.009993529878556728, -0.024883998557925224, -0.011665234342217445, 0.02213224582374096, -0.0019372926326468587, 0.0007363794138655066, 0.02575765550136566, 0.018019458279013634, 0.057263199239969254, 0.04051671177148819, 0.009135156869888306, 0.01899021305143833, 0.035784170031547546, -0.03681749477982521, -0.005028141662478447, 0.01995151862502098, 0.0441252626478672, 0.0224872175604105, -0.02070949599146843, -0.001906805788166821, -0.05051284655928612, -0.026924382895231247, -0.00965249352157116, 0.015573775395751, 0.002371877199038863, -0.04885553941130638, 0.017151638865470886, 0.017899706959724426, -0.020854873582720757, -0.024483490735292435, -0.014513916335999966, -0.011171145364642143, -0.05335738882422447, -0.027621516957879066, 0.027537809684872627, -0.012162506580352783, -0.014166563749313354, -0.017143836244940758, -0.020891370251774788, 0.05249875783920288, 0.0546627938747406, -0.091352678835392, 0.004567952826619148, 0.039031341671943665, 0.029794707894325256, -0.021843837574124336, -0.013431993313133717, 0.008948327973484993, -0.019632698968052864, -0.022584237158298492, 0.06006111577153206, 0.02773960493505001, -0.02920818142592907, 0.018031377345323563, 0.037581998854875565, 0.022005455568432808, 0.03379959613084793, -0.038117799907922745, -0.001597026945091784, 0.002974920440465212, 0.07537446171045303, -0.0047627901658415794, -0.0289289727807045, -0.020852290093898773, 0.03593292087316513, 0.026092059910297394, 0.06329862773418427, 0.04370590299367905, 0.022967102006077766, 0.026571692898869514, 0.02675408124923706, -0.02292518876492977, 0.017630746588110924, 0.03832251951098442, -0.0005892500630579889, 0.03351600840687752, 0.019363587722182274, 0.00045084772864356637, 0.03645047917962074, -0.020248636603355408, 0.00146093696821481, -0.016644984483718872, 0.016456760466098785, -0.00007949836435727775, 0.04410330951213837, -0.004324897192418575, 0.0408792607486248, -0.00861953105777502, 0.027059808373451233, 0.03893042728304863, 0.05498757213354111, -0.02865590713918209, -0.030373482033610344, 0.023516178131103516, -0.01191588956862688, -0.010143904015421867, 0.002563932677730918, 0.03317096829414368, 0.02857058309018612, -0.01600169949233532, 0.00590178556740284, -0.039989911019802094, -0.0030073432717472315, -0.04659431800246239, -0.034476734697818756, -0.03276972472667694, -0.013583436608314514, -0.0596097894012928, 0.004029263276606798, 0.02855425700545311, -0.03957100585103035, 0.05312216654419899, -0.006026661489158869, 0.0166684128344059, -0.04693227261304855, -0.010798946022987366, 0.04792977496981621, 0.060589008033275604, 0.0417657308280468, -0.019400430843234062, 0.05131600424647331, -0.0027641472406685352, 0.03174354508519173, -0.041398778557777405, -0.016211548820137978, -0.016148541122674942, -0.026887957006692886, 0.037039101123809814, -0.026648955419659615, -0.02255617082118988, 0.014822405762970448, -0.04221849888563156, -0.05710194632411003, 0.017321493476629257, 0.00970491487532854, -0.026789190247654915, -0.017898907884955406, -0.050255388021469116, 0.05483812838792801, 0.03349817916750908, -0.006178650539368391, 0.027263492345809937, 0.017555296421051025, -0.036802250891923904, 0.03776099905371666, 0.005056749563664198, 0.019515585154294968, -0.0514419749379158, 0.03515651077032089, 0.026575246825814247, 0.04317382723093033, -0.05272522568702698, -0.05768723785877228, -0.022045208141207695, 0.016991864889860153, 0.007741723209619522, -0.019276069477200508, -0.013058881275355816, 0.026577452197670937, 0.028775332495570183, -0.06218689680099487, 0.036155786365270615, -0.04129548370838165, -0.027718612924218178, -0.03210459649562836, -0.058537956327199936, 0.018156923353672028, 0.013160616159439087, 0.04319918528199196, 0.05214649811387062, -0.030360959470272064, 0.027260031551122665, 0.021488893777132034, 0.052543241530656815, -0.017398815602064133, 0.012644176371395588, 0.030866611748933792, 0.003761628642678261, 0.021036695688962936, 0.006904357112944126, -0.0293388944119215, -0.01589839905500412, 0.00572747690603137, 0.023350894451141357, -0.02459506317973137, 0.01745227910578251, 0.01920829527080059, -0.0036511975340545177, 0.05227576941251755, -0.07332928478717804, 0.0107744000852108, 0.0008658709120936692, 0.029290821403265, 0.00575273809954524, -0.005550921894609928, 0.002205987460911274, -0.02027229592204094, -0.05837571620941162, -0.06541658192873001, 0.019468700513243675, 0.03784049302339554, 0.031110068783164024, -0.04917673394083977, 0.049580205231904984, -0.01766088791191578, -0.015536536462605, 0.033325474709272385, -0.03221507743000984, -0.022564910352230072, 0.04774598777294159, -0.0014470145106315613, 0.02188868820667267, -0.050712425261735916, 0.040272168815135956, 0.0018576423171907663, 0.04014861583709717, 0.013876326382160187, 0.0014555916422978044, 0.016321050003170967, -0.05584508553147316, -0.041497740894556046, 0.011663672514259815, -0.03940560296177864, 0.005468158982694149, -0.011923258192837238, 0.025591140612959862, -0.02633068710565567, -0.035941656678915024, -0.08614026010036469, 0.03819138556718826, 0.02810131572186947, 0.01920345053076744, -0.03409424424171448, 0.042167779058218, -0.0210573710501194, 0.03422970324754715, 0.037653498351573944, -0.006030889693647623, 0.003084883326664567, -0.012023599818348885, 0.03606993705034256, 0.04596474766731262, -0.020809736102819443, -0.04750136658549309, -0.024082103744149208, -0.02119838260114193, 0.005390803795307875, -0.015028645284473896, -0.0175104271620512, -0.03755282610654831, 0.03592945262789726, -0.022455841302871704, 0.07119985669851303, -0.04510831460356712, -0.018404897302389145, -0.008213096298277378, 0.04332070052623749, 0.02958489954471588, -0.05340331420302391, 0.014061725698411465, -0.06328698247671127, 0.041670478880405426, 0.05364855006337166, -0.01885080710053444, -0.03365122526884079, -0.019350014626979828, -0.022308047860860825, -0.022638961672782898, 0.016098495572805405, 0.03948497399687767, -0.010125769302248955, 0.0008680227329023182, -0.03902529925107956, 0.03252791240811348, 0.022012850269675255, -0.01574449986219406, -0.03893927112221718, 0.001587637816555798, 0.020587043836712837, -0.004676088225096464, 0.025990867987275124, -0.015496951527893543, -0.021766573190689087, 0.00504558440297842, -0.036647211760282516, -0.01376130897551775, -0.014204363338649273, -0.027078067883849144, 0.031142599880695343, 0.036355964839458466, 0.0072507294826209545, 0.041645973920822144, -0.013693660497665405, 0.040276914834976196, 0.0033227396197617054, 0.0450420007109642, -0.04897952079772949, -0.026064250618219376, 0.035537026822566986, 0.021907569840550423, -0.02521749585866928, 0.023704472929239273, 0.04060276225209236, -0.019879577681422234, 0.018443798646330833, 0.004409621004015207, -0.04308604821562767, 0.0327426940202713, -0.0483984500169754, 0.030366893857717514, -0.005465496331453323, -0.02302536740899086, 0.03418147191405296, 0.006648537237197161, 0.023819411173462868, 0.004101489204913378, 0.007826883345842361, -0.03264760598540306, -0.0557304210960865, -0.042866356670856476, 0.029801998287439346, -0.049651410430669785, 0.027160126715898514, 0.02391309104859829, -0.02976069785654545, 0.007060530595481396, 0.005293885245919228, 0.006279964931309223, -0.01610923372209072, -0.01992938108742237, -0.026863716542720795, 0.01411972101777792, 0.021838052198290825, 0.02159241959452629, -0.013209299184381962, -0.04637421295046806, -0.01915775239467621, -0.011167310178279877, -0.017478816211223602, -0.05532616376876831, 0.024262050166726112, -0.03548821061849594, -0.008010396733880043, -0.029483290389180183, 0.00879093911498785, 0.005993601866066456, 0.03684357553720474, 0.010717347264289856, 0.017325079068541527, 0.0010094576282426715, -0.009235325269401073, -0.01778937503695488, 0.02876276895403862, 0.028374500572681427, -0.018423834815621376, -0.014714118093252182, 0.03908199816942215, -0.014040525071322918, 0.053546108305454254, 0.012068221345543861, -0.006748273503035307, -0.049946509301662445, -0.035057589411735535, 0.019197726622223854, -0.04448188096284866, -0.01890462078154087, -0.002214205451309681, -0.05173233151435852, -0.010535068809986115, 0.03613543510437012, 0.007981430739164352, 0.022150492295622826, 0.0063149468041956425, -0.04258624464273453, 0.00047941168304532766, -0.013456635177135468, -0.026213426142930984, -0.037910569459199905, -0.015195480547845364, -0.035770807415246964, 0.04114294797182083, 0.003086636308580637, 0.004173962399363518, 0.02291949838399887, 0.009170298464596272, 0.007297942414879799, -0.03445938229560852, -0.06089916452765465, -0.05651721730828285, -0.02935466542840004, -0.017051737755537033, -0.004054945893585682, 0.048196565359830856, -0.017185237258672714, 0.07002302259206772, -0.023907655850052834, -0.020971432328224182, -0.0050155422650277615, -0.015951868146657944, -0.03672699257731438, -0.03015754558146, 0.04668682813644409, -0.014888258650898933, 0.0034514672588557005, -0.0087357796728611, 0.03692486509680748, 0.0005618351278826594, -0.021221598610281944, -0.023850101977586746, -0.045660898089408875, -0.03744259476661682, -0.06002643704414368, 0.027376824989914894, -0.02871619164943695, -0.01658889837563038, -0.024547480046749115, 0.005995025392621756, 0.02434295043349266, -0.001597222057171166, 0.03877662122249603, 0.05502751097083092, -0.04302667826414108, 0.016191691160202026, -0.037086863070726395, 0.022802850231528282, 0.0205816850066185, -0.015127458609640598, -0.01273059006780386, -0.011305272579193115, -0.01999121531844139, 0.00698868976905942, -0.04801483824849129, -0.028995003551244736, -0.0287955142557621, -0.013730037957429886, 0.07053051143884659, -0.053667329251766205, 0.052171334624290466, -0.016552168875932693, -0.05955612286925316, -0.010820220224559307, 0.08191197365522385, -0.002698862226679921, 0.017765149474143982, 0.05175243690609932, -0.01591060310602188, -0.018742017447948456, 0.018636254593729973, 0.002846907591447234, 0.02510915882885456, -0.025564538314938545, 0.09653396159410477, 0.007618220988661051, -0.02977636083960533, -0.0007132458267733455, 0.052412234246730804, -0.05037093535065651, -0.02996153198182583, 0.009968086145818233, 0.023764440789818764, 0.008373605087399483, -0.04278096929192543, 0.021038871258497238, -0.014512049034237862, 0.012365635484457016, 0.002360545564442873, 0.026813257485628128, 0.008026092313230038, 0.00959267932921648, 0.012518368661403656, 0.00682813860476017, -0.04808303713798523, 0.0009200177155435085, 0.002073853276669979, 0.0023136059753596783, -0.015388707630336285, -0.01547146588563919, -0.03090607561171055, 0.010486938990652561, -0.0039044779259711504, 0.03796447068452835, -0.022895272821187973, 0.015675093978643417, 0.007026210892945528, -0.016399327665567398, 0.049330879002809525, 0.00800087209790945, 0.0018822179408743978, 0.022262345999479294, -0.04022597894072533, -0.03909902274608612, -0.04140377789735794, 0.012838896363973618, 0.010727177374064922, 0.010957163758575916, -0.032488998025655746, 0.007770294323563576, 0.01684262789785862, -0.008475263603031635, 0.0038655793759971857, -0.06204243749380112, -0.03510723263025284, -0.05122801288962364, -0.07090278714895248, -0.004808380734175444, -0.017125748097896576, 0.03791416808962822, 0.00951722078025341, 0.02203056588768959, -0.060680702328681946, 0.01867847889661789, 0.014209123328328133, -0.033822864294052124, -0.0023985602892935276, -0.007564971689134836, 0.02597348764538765, -0.042928680777549744, -0.036296382546424866, -0.06782352179288864, 0.024759791791439056, -0.00852314941585064, 0.022631345316767693, -0.03247744217514992, 0.02769267000257969, -0.013106557540595531, 0.017900582402944565, -0.02137748710811138, -0.007766093127429485, -0.012658191844820976, -0.062253352254629135, -0.005654668901115656, 0.033657316118478775, -0.005970521830022335, 0.020196912810206413, 0.004796025808900595, -0.007942881435155869, 0.03177560865879059, -0.0258558988571167, -0.027535157278180122, -0.014779486693441868, 0.007002249825745821, 0.0030210185796022415, 0.020934872329235077, -0.055088672786951065, -0.0031049540266394615, -0.006576329004019499, -0.03778462111949921, 0.009493004530668259, 0.005395119544118643, -0.0029047694988548756, 0.01429848000407219, -0.020275382325053215, 0.002948887413367629, 0.08065859973430634, 0.0017439710209146142, 0.003126131370663643, 0.0007839884492568672, 0.03439158573746681, 0.02852446399629116, 0.0271847415715456, 0.0058447374030947685, 0.020938288420438766, 0.020925002172589302, -0.03506571054458618, 0.0012532798573374748, 0.02733180671930313, -0.023788901045918465, 0.033291980624198914, -0.01953848823904991, -0.027697337791323662, -0.04892301186919212, -0.022492749616503716, 0.012791270390152931, 0.04094347730278969, 0.021193550899624825, -0.025107620283961296, 0.041402507573366165, -0.03583235293626785, -0.04273023456335068, 0.012533155269920826, -0.052632417529821396, -0.04902171716094017, 0.024037761613726616, -0.026608822867274284, 0.008062055334448814, -0.010718422010540962, -0.04292568564414978, -0.0006331561016850173, -0.010837223380804062, -0.010102097876369953, -0.03018442541360855, 0.026728671044111252, -0.015301563777029514, 0.029719069600105286, -0.0008941874257288873, -0.03327476233243942, 0.043517448008060455, 0.06855849921703339, -0.05166638270020485, -0.04853048548102379, 0.005960431881248951, -0.0035646313335746527, -0.02026580087840557, 0.008202563971281052, 0.019159188494086266, 0.005874543450772762, -0.001359045272693038, 0.028552064672112465, -0.020128319039940834, 0.00710179703310132, -0.006666687782853842, 0.026418782770633698, -0.014235101640224457, 0.00991364661604166, -0.03253237158060074, 0.00040539956535212696, 0.029282446950674057, -0.02934463880956173, -0.045029379427433014, 0.03273412585258484, 0.06446567177772522, -0.0037582761142402887, 0.059886425733566284, -0.017946094274520874, 0.044529423117637634, -0.0074562085792422295, 0.00928578432649374, -0.05166099593043327, 0.038743097335100174, 0.04735197126865387, 0.03359651938080788, 0.001018847688101232, 0.027666624635457993, 0.04701877385377884, 0.010605888441205025, 0.007724500261247158, 0.057561323046684265, 0.03483418747782707, -0.01653061807155609, -0.03424673527479172, -0.004730996675789356, 0.0299809742718935, 0.0028687247540801764, -0.03218517825007439, -0.02418365329504013, -0.03805968910455704, 0.00022880249889567494, 0.0015476465923711658, -0.027127346023917198, 0.05940442159771919, -0.025942865759134293, -0.003122524358332157, 0.0009441021247766912, -0.04239534214138985, -0.0005173825775273144, 0.026454733684659004, 0.00490523548796773, 0.025315236300230026, 0.01192440465092659, 0.024252982810139656, -0.004217812791466713, 0.05479320511221886, -0.0027255609165877104, 0.00528133288025856, -0.058082982897758484, 0.020223556086421013, 0.0056731426157057285, -0.0016223014099523425, -0.048456821590662, 0.005439113359898329, 0.019841652363538742, 0.04602435231208801, -0.0373576320707798, -0.03998837247490883, 0.024335550144314766, -0.04580386355519295, -0.043980829417705536, -0.03541411831974983, 0.032516565173864365, -0.04153871536254883, -0.0051557705737650394, 0.0288392286747694, 0.0007568383007310331, -0.023352140560746193, 0.06958026438951492, 0.026284419000148773, 0.009825521148741245, 0.030581600964069366, 0.053403522819280624, 0.010178784839808941, 0.05444633588194847, 0.05246421694755554, -0.02640676684677601, -0.0037877943832427263, 0.03194419667124748, -0.02484211139380932, -0.028990179300308228, -0.02912023477256298, -0.019192002713680267, -0.0227363221347332, -0.0068113598972558975, -0.019973386079072952, 0.01783788576722145, 0.03894183412194252, 0.006937255151569843, -0.04661136865615845, 0.014817273244261742, 0.02886083722114563, -0.04593466967344284, 0.004799456801265478, -0.00364279979839921, 0.047617580741643906, -0.010098611935973167, -0.0004224227159284055, -0.011600708588957787, -0.028824642300605774, 0.004351267125457525, -0.023066768422722816, 0.0020487611182034016, -0.02556268684566021, -0.027876757085323334, -0.028087209910154343, -0.032364774495363235, -0.02640155330300331, -0.0019340283470228314, -0.04797198623418808, -0.023036206141114235, 0.03701118379831314, 0.035167232155799866, -0.012605930678546429, 0.004854594822973013, -0.048556163907051086, 0.002319620456546545, 0.022706320509314537, 0.049831897020339966, -0.02220134064555168, 0.047522395849227905, 0.03782735764980316, -0.029026074334979057, 0.042345985770225525, -0.012165957130491734, 0.06618118286132812, -0.017413528636097908, -0.014901671558618546, -0.01739571802318096, 0.010878173634409904, -0.007536912336945534, -0.04619907960295677, 0.010392424650490284, 0.005957178771495819, 0.011583114974200726, -0.020565032958984375, -0.05147143825888634, 0.022409047931432724, -0.023236364126205444, -0.013498514890670776, -0.0414603091776371, 0.003185039386153221, 0.02718465030193329, 0.0003273452166467905, -0.00390651635825634, -0.057426758110523224, 0.17076440155506134, 0.05260436236858368, 0.04130564257502556, 0.0039165387861430645, 0.028922686353325844, 0.05272475257515907, 0.015934189781546593, -0.007150661200284958, -0.004563706927001476, -0.04904639348387718, 0.03554213419556618, -0.015738122165203094, 0.021137457340955734, 0.02136763371527195, 0.05029678717255592, 0.05709294602274895, -0.0584227629005909, 0.022386038675904274, 0.028115637600421906, -0.06256584823131561, -0.0875486209988594, 0.033182285726070404, 0.005534569267183542, 0.028106441721320152, -0.00512042036280036, 0.018260527402162552, 0.03563620150089264, -0.03504683077335358, -0.02013789303600788, 0.00706553366035223, 0.009492127224802971, -0.03462047502398491, 0.03254074975848198, -0.014381774701178074, -0.05535250902175903, 0.06546573340892792, 0.0019865669310092926, -0.01842389442026615, 0.01998807117342949, 0.018693838268518448, -0.013986353762447834, 0.001895071822218597, 0.038764260709285736, -0.02269531413912773, 0.014722145162522793, 0.023024944588541985, -0.02725401148200035, -0.00781545601785183, 0.0011268859962001443, -0.04623039811849594, 0.057268235832452774, -0.0021905871108174324, 0.01821659505367279, 0.020022697746753693, -0.0097734946757555, -0.00817851908504963, 0.015544344671070576, -0.008778635412454605, -0.010280700400471687, 0.004910784773528576, 0.012396691367030144, -0.0013611781178042293, -0.021721165627241135, -0.0007578766089864075, -0.03750745207071304, 0.007041648030281067, 0.024372905492782593, 0.007985195145010948, 0.005985058378428221, -0.021369505673646927, -0.026474015787243843, 0.002927931025624275, -0.023100685328245163, -0.0035902673844248056, 0.04482834413647652, 0.0277167446911335, -0.019700365141034126, 0.040650151669979095, 0.01874469965696335, -0.018143627792596817, -0.009881791658699512, -0.06777890771627426, -0.022013166919350624, 0.02942187339067459, -0.016694780439138412, 0.04104502499103546, -0.02742839977145195, -0.019095197319984436, -0.0037888309452682734, 0.056088194251060486, 0.0551895797252655, 0.006512252613902092, -0.02540854923427105, -0.017641201615333557, 0.012701854109764099 ]
Impact of Mineral Supplementation in Improving Hoof Health in Dairy Cattle in Ayodhya District of Eastern Uttar Pradesh Pragya Prakash Mishra Sonu Jaiswal Harnam Singh Rakesh Kumar Gupta Debasish Niyogi Vijay Kumar Singh Hoof disorders and lameness are the one of most important health problems in cattle all over the world and have important economical and animal welfare issue. The present study was done to know the impact of mineral supplementation in improving the hoof health in dairy cattle in Ayodhya district of Uttar Pradesh, India. For the current study, 56 dairy animals having hoof disorders reared at various dairy farms in total eight villages of Ayodhya district were selected randomly. Selection of villages was done randomly from the two blocks each from the two tehsils out of five tehsils of Ayodhya district. In treatment group also slight to moderate improvement in lameness was observed on day 7 (1.3929 ยฑ 0.13), which further improve significantly on day 15 (2.25 ยฑ 0.14). There was further improvement on day 30 (2.60 ยฑ 0.107) but it was not significant as compared to day 15, although it was significantly better as compared to day 7. In most of the animals of treatment group there was excellent improvement in lameness was noticed on day 30. In comparison to control group, scores for improvement in lameness in animals of treatment group were comparatively higher at every time interval. Keywords : Ayodhya Cattle Hoof Disorder Mineral Supplementation Full Text Read : 275 Downloads : 26 Sero-positivity of Bovine Herpes Virus Type 1, Parainfluenza Type 3 Virus and Respiratory Syncytial Virus in Healthy and Pneumonic Cattle Cytogenetic Screening of Breeding Herd of Malnad Gidda Cattle Non-Invasive Methods of Assessing Stress in Cattle Prevalence of Haemoparasites in Cattle Slaughtered at Central Abattoir in Igboora, Oyo State, Nigeria Status of Microminerals Deficiency in Cattle with Relation to Soil and Fodder from Pathanamthitta and Kottayam Districts of Kerala State, India Comparative Gross Morphological Studies on the Lower Jaw (Mandible) of Cattle Egret (Bubulcus ibis), Jungle Babbler (Turdoides striata), Yellow-footed Green Pigeon (Treron phoenicoptera), Barn Owl (Tyto alba) and Shikra (Accipiter badius) Molecular Diagnosis and Therapeutic Management of Concurrent Infection with Theileriosis and Babesiosis in Holstein Friesian Crossbred Cattle Management of Follicular Cyst by Multiple Approaches in Crossbred Cows Alterations of Serum Biochemical Parameter in Cattle Naturally Infected with Tick-Borne Haemoparasitic Diseases in West Bengal, India Physical Characteristics and Production Performance of Gir Cattle in India
[ 0.01593543402850628, 0.01585397869348526, -0.002232895465567708, 0.0017671294044703245, -0.030784260481595993, 0.035111188888549805, 0.03046043962240219, 0.03306398540735245, 0.01266693789511919, 0.025480974465608597, 0.01660698652267456, -0.01881163939833641, 0.017437266185879707, -0.05185004696249962, -0.01461325865238905, -0.01647317223250866, -0.011733479797840118, -0.06152143329381943, -0.016504328697919846, 0.0348566435277462, -0.017670856788754463, 0.021528884768486023, -0.04990994930267334, -0.026651481166481972, -0.019617149606347084, 0.03919081762433052, -0.009628432802855968, 0.01147776935249567, 0.03604590520262718, 0.053410135209560394, -0.04796066880226135, -0.0050985789857804775, 0.0296893622726202, -0.047253385186195374, -0.022530384361743927, -0.018213393166661263, 0.04321511834859848, -0.02548658661544323, -0.01978129893541336, -0.04101015627384186, 0.02236916497349739, -0.00804721750319004, 0.036889564245939255, -0.05658632144331932, -0.02094026282429695, -0.014751873910427094, -0.030950872227549553, -0.02320842258632183, -0.0008478605304844677, -0.03177108243107796, 0.01854502037167549, -0.012628232128918171, -0.0032240543514490128, -0.03092702478170395, -0.01925017312169075, -0.01607905700802803, -0.004515592008829117, -0.024505088105797768, -0.039436742663383484, 0.01337732095271349, 0.01350452285259962, 0.023876870051026344, 0.039976850152015686, -0.04643503576517105, 0.032568249851465225, 0.05140576511621475, -0.04144015535712242, -0.01753099635243416, -0.00781369861215353, -0.027646448463201523, 0.0017914676573127508, 0.017846062779426575, 0.0018486279295757413, -0.015400474891066551, -0.010119739919900894, -0.008147148415446281, 0.005088464356958866, -0.013495603576302528, -0.029260387644171715, 0.023140251636505127, 0.01991761289536953, 0.05514339357614517, 0.03672056645154953, 0.028073498979210854, -0.0625699982047081, 0.002066865563392639, -0.01907370798289776, 0.026747290045022964, 0.021781351417303085, -0.0016415428835898638, -0.007465611211955547, 0.05411189794540405, -0.0024964071344584227, 0.03036488965153694, 0.02276829071342945, 0.046067945659160614, -0.021743662655353546, 0.05287524685263634, -0.007056905422359705, 0.01086011715233326, 0.02129635214805603, 0.001502739847637713, 0.017805781215429306, 0.039826590567827225, -0.03816310316324234, -0.008494844660162926, 0.021885719150304794, 0.0001426851231371984, -0.011898028664290905, -0.04048360511660576, 0.013987185433506966, -0.053021226078271866, 0.026311559602618217, -0.00506862485781312, 0.024497035890817642, 0.04953610524535179, -0.027672678232192993, 0.05344933643937111, -0.0523662194609642, 0.024878229945898056, 0.01608996093273163, -0.022970521822571754, 0.04454268515110016, -0.006663256790488958, 0.0021710118744522333, -0.04406130686402321, -0.023538289591670036, 0.04178788140416145, -0.015354959294199944, -0.03568157181143761, -0.006234496831893921, -0.05090944096446037, -0.018604611977934837, 0.03736989572644234, -0.00105255504604429, -0.01243605837225914, -0.006744062528014183, 0.028308182954788208, 0.026134299114346504, -0.04709850624203682, 0.05052422732114792, 0.05406639352440834, -0.02275743894279003, 0.0707588642835617, 0.012549303472042084, 0.036637064069509506, -0.01187959685921669, -0.025012657046318054, -0.024151640012860298, 0.044547103345394135, -0.0379294753074646, 0.02020346187055111, 0.010933336801826954, 0.029177160933613777, 0.015210753306746483, 0.0023131801281124353, -0.02395353466272354, 0.02469944767653942, 0.023709580302238464, 0.04872368276119232, 0.00609260518103838, 0.011943582445383072, -0.022136155515909195, 0.03401631861925125, -0.03149084001779556, 0.03753846138715744, -0.029158996418118477, -0.019252758473157883, 0.014283785596489906, -0.043356914073228836, 0.04642801359295845, 0.0041316961869597435, -0.012453192844986916, -0.006551534403115511, 0.0007922106306068599, 0.028717132285237312, 0.05218888819217682, 0.011260798200964928, 0.02799629233777523, 0.057393766939640045, -0.029902195557951927, 0.013971077278256416, 0.027017010375857353, 0.06398704648017883, 0.016462627798318863, 0.00431343587115407, 0.00017016073979903013, -0.019640816375613213, -0.011984948068857193, -0.050385527312755585, 0.002731475979089737, 0.04637288674712181, -0.0075579131953418255, 0.023386236280202866, 0.01075931265950203, -0.011619636788964272, 0.0014988519251346588, -0.04009160026907921, -0.008720971643924713, -0.056241102516651154, -0.04201396182179451, 0.05180627852678299, -0.055956363677978516, 0.026169000193476677, 0.018140118569135666, -0.024857979267835617, 0.03029830940067768, 0.05022792890667915, -0.03082694672048092, 0.015598660334944725, 0.028827883303165436, 0.02361808344721794, -0.024404430761933327, -0.018566930666565895, 0.011766187846660614, -0.01964501477777958, -0.022410621866583824, 0.045968055725097656, -0.017650021240115166, -0.002358747646212578, 0.02537413500249386, 0.02479843981564045, 0.013844828121364117, 0.0553550198674202, -0.007305706385523081, 0.014227655716240406, 0.01870376616716385, 0.04663712531328201, -0.023829158395528793, 0.0020525925792753696, 0.004956912249326706, 0.04793000966310501, 0.07626623660326004, 0.04347771033644676, 0.05061984062194824, 0.02689126692712307, 0.04486129432916641, 0.014023841358721256, -0.0352068729698658, 0.027886923402547836, -0.0009519516606815159, -0.014271191321313381, 0.024343473836779594, 0.0015168007230386138, -0.003528144210577011, 0.025535261258482933, -0.033515725284814835, 0.00430460786446929, -0.01055315975099802, 0.014978609047830105, 0.004391024354845285, 0.03644733875989914, 0.001544981263577938, 0.039518844336271286, -0.02153855934739113, 0.0005742527428083122, 0.059257883578538895, 0.045034658163785934, -0.03071795403957367, -0.04241282120347023, -0.010469486005604267, 0.027487587183713913, 0.010013950057327747, 0.034394580870866776, 0.04189440980553627, 0.0060058762319386005, -0.011712213978171349, 0.042109165340662, -0.019540004432201385, -0.0414399653673172, -0.030316179618239403, -0.04598801210522652, -0.057468947023153305, -0.011234387755393982, -0.047699835151433945, 0.012160536833107471, 0.031753018498420715, -0.05821448564529419, 0.019278449937701225, -0.002760239178314805, 0.00308326561935246, -0.0449044369161129, -0.004680807702243328, 0.018604056909680367, 0.0611330047249794, 0.06400541216135025, -0.03132323920726776, 0.019764382392168045, -0.01067193504422903, 0.04060199856758118, -0.013211449608206749, -0.04267202317714691, -0.0025215621571987867, -0.008593792095780373, 0.01793462038040161, 0.003334847977384925, -0.01611199416220188, -0.002591534750536084, -0.025472253561019897, -0.04782344400882721, 0.011690167710185051, 0.0194647666066885, -0.015379555523395538, 0.02163556218147278, -0.043241094797849655, 0.06155582144856453, 0.019916320219635963, -0.0236817616969347, 0.029909729957580566, 0.02233332023024559, -0.04166870191693306, 0.02413262613117695, 0.038929179310798645, 0.0149393230676651, -0.061282601207494736, 0.04221930727362633, 0.047958556562662125, 0.014148904010653496, -0.013220129534602165, -0.028848452493548393, -0.029638351872563362, 0.0087815523147583, 0.043690308928489685, -0.00037533332942985, -0.021377380937337875, 0.029185093939304352, 0.03716474398970604, -0.08598902076482773, 0.021108048036694527, -0.04533325508236885, -0.021906500682234764, -0.03376207500696182, -0.014453629031777382, 0.04652119800448418, 0.0057520135305821896, 0.03077913448214531, 0.008101263083517551, -0.013863766565918922, -0.008351176045835018, 0.010105009190738201, 0.07100040465593338, -0.03287608176469803, 0.04035748541355133, 0.06174114719033241, 0.0017673976253718138, -0.017922071740031242, -0.006055844482034445, -0.012574643827974796, -0.009843920357525349, 0.010989361442625523, -0.02804570458829403, 0.030306432396173477, 0.017608774825930595, 0.01588035561144352, 0.024567266926169395, 0.038768984377384186, -0.030163289979100227, -0.006954130716621876, -0.004159317351877689, -0.004239984322339296, 0.006721600890159607, -0.012600857764482498, 0.0007751400698907673, 0.0026564104482531548, -0.04269857704639435, -0.04819311574101448, 0.01022421196103096, -0.00834914855659008, 0.04509839788079262, -0.037138935178518295, 0.05087211728096008, -0.022791443392634392, 0.007077721878886223, 0.04196122661232948, -0.05500655993819237, 0.01612541265785694, 0.07308980822563171, 0.001505467458628118, 0.04915853962302208, -0.08896283805370331, 0.043707966804504395, 0.007113530766218901, 0.02720940299332142, 0.04358595982193947, -0.029796624556183815, 0.02851102501153946, -0.008490591309964657, 0.006260507274419069, -0.012469244189560413, -0.0506853312253952, -0.004637745674699545, -0.020512912422418594, 0.04294867813587189, 0.0022201871033757925, -0.06527964770793915, -0.04358885809779167, 0.02891162969172001, 0.01776283048093319, 0.06472420692443848, 0.008168897591531277, 0.016931194812059402, -0.027696071192622185, 0.04421814903616905, 0.03196562081575394, 0.011437978595495224, 0.008824430406093597, -0.03058222308754921, 0.0177355594933033, -0.0060014305636286736, -0.02955668233335018, -0.013903510756790638, -0.03393465280532837, -0.03763282299041748, 0.012523746117949486, -0.009731214493513107, -0.03282604739069939, -0.019325681030750275, 0.020340919494628906, -0.012971104122698307, 0.032152120023965836, 0.01591591164469719, -0.015440654940903187, -0.007967215031385422, 0.01721697673201561, 0.02640857733786106, -0.06161796674132347, -0.013699422590434551, -0.06874886900186539, 0.025414416566491127, 0.05888476222753525, 0.03343880921602249, -0.04151683673262596, -0.041813384741544724, -0.0033629355020821095, -0.012540682218968868, -0.009449328295886517, 0.049579914659261703, -0.000352919043507427, 0.010544071905314922, -0.06768959760665894, 0.01819617860019207, -0.010750561952590942, -0.01589677855372429, -0.0010065104579553008, -0.017375070601701736, 0.03301628306508064, 0.014572154730558395, 0.04343276470899582, 0.0027088909409940243, -0.02891148068010807, 0.025895746424794197, -0.0844256728887558, -0.011761508882045746, -0.01165104191750288, -0.02946416474878788, 0.011913525871932507, 0.01572718285024166, -0.011946836486458778, 0.039789821952581406, -0.00620645796880126, 0.006664643995463848, -0.028190627694129944, 0.04731966182589531, -0.06499150395393372, 0.006610266864299774, 0.05005145072937012, 0.00029691954841837287, 0.004392060451209545, 0.0642189309000969, 0.03183502331376076, -0.02314028888940811, -0.00697152316570282, 0.03156121447682381, -0.006675264798104763, 0.031745124608278275, -0.0365905836224556, -0.03211914747953415, 0.026060910895466805, -0.03245851397514343, 0.0385720431804657, -0.034137971699237823, 0.017175838351249695, -0.006807444151490927, -0.004116996191442013, -0.028801342472434044, -0.04572916030883789, -0.023387504741549492, 0.0067831603810191154, -0.044665828347206116, 0.039566949009895325, 0.02708425186574459, -0.027868514880537987, 0.006298576481640339, -0.0006808695034123957, 0.025018585845828056, 0.005154194310307503, -0.02090146206319332, 0.02079755812883377, 0.029795311391353607, 0.01541002094745636, 0.029253045096993446, -0.02755657397210598, -0.0011344364611431956, -0.01743321493268013, -0.00035106620634905994, -0.023237958550453186, -0.01470530591905117, 0.007004580460488796, -0.05161447823047638, -0.021377988159656525, -0.046994179487228394, -0.006852307822555304, -0.029179774224758148, 0.018806686624884605, 0.04181661829352379, 0.028532207012176514, 0.04168449714779854, 0.00293993903324008, -0.06385743618011475, 0.014966617338359356, 0.04737599939107895, -0.03426845371723175, -0.04824356362223625, 0.03661210462450981, 0.002264806069433689, 0.047350309789180756, 0.018816621974110603, -0.03628871217370033, -0.003299049334600568, -0.060647983103990555, 0.030498072504997253, -0.04049369692802429, -0.024927712976932526, -0.03447996824979782, 0.02132234536111355, -0.01920502260327339, 0.05653117224574089, 0.047737687826156616, -0.023411564528942108, -0.02097456343472004, -0.05666954815387726, -0.013017377816140652, -0.009535780176520348, -0.02626529522240162, -0.016247717663645744, -0.036495037376880646, -0.0008712083217687905, 0.046217016875743866, 0.010786636732518673, -0.0004149971646256745, -0.009578175842761993, -0.009772786870598793, 0.02715766616165638, 0.00006457759445765987, -0.038944270461797714, -0.038146182894706726, 0.011610249057412148, 0.04153403639793396, -0.030853962525725365, 0.015966245904564857, -0.03840898722410202, 0.04948623105883598, -0.08114270865917206, -0.010494188405573368, 0.013042235746979713, -0.01121548656374216, -0.002937911543995142, -0.008920672349631786, 0.032696764916181564, -0.003957768436521292, 0.022090088576078415, -0.03441860154271126, 0.038927529007196426, 0.012024453841149807, 0.017689205706119537, -0.041475653648376465, -0.05147186666727066, -0.04795598238706589, -0.064906544983387, 0.011127796024084091, -0.029430421069264412, -0.028357839211821556, -0.02794019505381584, 0.001415081787854433, 0.05675157159566879, 0.0021154782734811306, 0.049683988094329834, 0.042687010020017624, -0.005315560847520828, -0.005332159344106913, -0.002672552363947034, 0.011901398189365864, 0.0357736237347126, -0.020458661019802094, -0.025517595931887627, -0.030219605192542076, -0.01954621635377407, 0.009847249835729599, -0.04294334724545479, -0.054416753351688385, -0.06000134348869324, 0.032510656863451004, 0.04647005349397659, -0.00865538977086544, 0.03224484249949455, 0.01274040900170803, -0.022575058043003082, -0.03388969972729683, 0.052247654646635056, 0.009368660859763622, 0.0020762523636221886, 0.047671157866716385, -0.03644036501646042, -0.022073067724704742, 0.00927599798887968, -0.009076401591300964, -0.005731378681957722, -0.014293976128101349, 0.06476666033267975, 0.003612755797803402, -0.07182914763689041, 0.020999472588300705, 0.041432954370975494, -0.06416373699903488, -0.04474490135908127, -0.004334541969001293, 0.019921673461794853, -0.003808257868513465, -0.024344930425286293, -0.023294858634471893, -0.006654062308371067, -0.010928359813988209, -0.011488713324069977, 0.012142673134803772, -0.03331035375595093, 0.05725511536002159, 0.016702471300959587, 0.002199167851358652, -0.05663357675075531, -0.0008318317122757435, 0.03859584033489227, -0.023389285430312157, -0.017306098714470863, -0.03341832756996155, 0.01929289661347866, -0.014067946001887321, -0.002616813173517585, 0.03345701843500137, -0.011439981870353222, 0.03319045156240463, 0.03517146408557892, 0.018264830112457275, 0.045944638550281525, -0.008550943806767464, -0.03448229283094406, 0.03918920084834099, -0.005773367825895548, -0.06890220195055008, -0.04521624743938446, 0.00709172710776329, 0.014669733121991158, 0.03855244442820549, -0.04092997685074806, -0.0172974094748497, 0.00995638407766819, -0.01615828461945057, -0.030352426692843437, -0.05491918325424194, -0.05831998586654663, -0.019428353756666183, -0.027902359142899513, 0.006453345995396376, -0.022040890529751778, -0.016580786556005478, 0.010022332891821861, 0.00003150805059703998, -0.036930155009031296, -0.016757020726799965, 0.021738791838288307, -0.029637973755598068, 0.0002499473630450666, -0.010131067596375942, 0.018528098240494728, -0.05527675896883011, -0.06093214452266693, -0.03887513652443886, 0.021146291866898537, -0.007922226563096046, 0.007310362998396158, -0.022497085854411125, -0.010236621834337711, 0.00120363209862262, 0.02121823839843273, 0.01542458962649107, 0.007555460557341576, -0.026680057868361473, -0.014523978345096111, -0.0019159881630912423, 0.029376503080129623, 0.0025881079491227865, 0.018151819705963135, 0.05063288286328316, -0.02558746375143528, 0.0271032452583313, 0.03188757970929146, -0.015153070911765099, -0.04490821063518524, -0.014285511337220669, -0.0029544387944042683, -0.0022068223915994167, -0.03506162017583847, -0.03982030600309372, 0.006575795356184244, -0.008471442386507988, 0.021998276934027672, -0.00914803147315979, 0.010226582176983356, 0.030512670055031776, 0.009492374025285244, -0.009899858385324478, 0.05235724523663521, 0.02364913560450077, 0.03103455901145935, -0.020723778754472733, 0.029656080529093742, 0.004916859790682793, -0.004178948234766722, 0.038155652582645416, 0.04007220268249512, 0.04903896525502205, -0.04206107556819916, 0.03246845304965973, 0.00940596405416727, -0.019264008849859238, 0.032191820442676544, -0.019170526415109634, -0.0167398639023304, -0.017753856256604195, -0.0461823008954525, -0.02160594053566456, 0.04792303591966629, 0.0006951990071684122, -0.021080272272229195, 0.013523902744054794, -0.03746544197201729, -0.016846945509314537, 0.031909383833408356, -0.06085728481411934, -0.037171293050050735, 0.03552836552262306, -0.02001655288040638, -0.023465214297175407, -0.03822366148233414, -0.06235053390264511, 0.015665052458643913, -0.011694706976413727, -0.023358380421996117, -0.029915926977992058, 0.01533886231482029, -0.00479510985314846, 0.05511869862675667, -0.03231701999902725, -0.007265899796038866, 0.004776522051542997, 0.03062085248529911, -0.04333626478910446, -0.04582047834992409, 0.002472366439178586, 0.0008858987130224705, -0.0038261788431555033, -0.011024806648492813, 0.009946903213858604, -0.008386462926864624, -0.013089942745864391, 0.02050325646996498, 0.01788642629981041, 0.006223215721547604, -0.0019639618694782257, 0.02617894671857357, -0.027315454557538033, -0.017132697626948357, -0.04268753156065941, 0.04039868339896202, 0.00646052323281765, -0.036955900490283966, -0.04250534623861313, 0.002459818497300148, 0.05553172901272774, -0.023551302030682564, 0.046948183327913284, 0.030213359743356705, 0.047172948718070984, -0.015168736688792706, -0.0009905231418088078, -0.0004545072733890265, 0.04817710816860199, 0.022770678624510765, 0.0617218017578125, -0.006528588943183422, 0.028210211545228958, 0.047819629311561584, -0.01675792969763279, -0.018020575866103172, 0.019729357212781906, 0.018386127427220345, -0.000690055952873081, 0.008621755987405777, -0.02124539576470852, -0.037301238626241684, 0.05947379022836685, -0.03092983178794384, -0.008404897525906563, -0.015108946710824966, 0.00973287969827652, 0.0025643454864621162, -0.019145669415593147, 0.05690527334809303, -0.022528208792209625, 0.021192869171500206, 0.006047229748219252, -0.028241587802767754, 0.027125125750899315, 0.04307284578680992, 0.0038351069670170546, -0.021213384345173836, 0.06235652416944504, 0.03573193401098251, -0.00662967748939991, 0.05107821524143219, 0.010286837816238403, -0.009061637334525585, -0.05909722298383713, -0.029378138482570648, 0.027702772989869118, 0.008493054658174515, -0.033885929733514786, -0.01560172624886036, -0.041954655200242996, 0.034251630306243896, -0.007431140169501305, 0.01105724461376667, 0.04325537756085396, -0.015861116349697113, -0.03707965090870857, -0.022816112264990807, 0.0436461940407753, -0.051886510103940964, -0.007400086149573326, -0.007433377206325531, 0.008992242626845837, -0.0077966018579900265, 0.03289791941642761, 0.02108951471745968, 0.020664695650339127, 0.004511439707130194, 0.04548954591155052, 0.006230784114450216, 0.017795545980334282, 0.01014156173914671, -0.03131747245788574, -0.004909257870167494, 0.01167165208607912, -0.006013891194015741, -0.03465878218412399, -0.020327186211943626, -0.04014565795660019, -0.00540867168456316, -0.0009807536844164133, -0.011200960725545883, -0.008170606568455696, 0.038536783307790756, -0.0060862950049340725, -0.05703558772802353, -0.008000586181879044, 0.03761015459895134, -0.020167892798781395, 0.04818291962146759, -0.00704009085893631, 0.039563413709402084, 0.003299412550404668, -0.015224765986204147, -0.036734163761138916, 0.006178873125463724, 0.018788162618875504, -0.03927202895283699, 0.055143896490335464, 0.0023768830578774214, -0.03709462285041809, -0.008726884610950947, -0.03969515115022659, -0.04015325382351875, -0.0030612414702773094, -0.0394902303814888, -0.027405988425016403, 0.04679562896490097, 0.01683622971177101, 0.0074873934499919415, -0.0029507100116461515, -0.043712060898542404, -0.007774719502776861, 0.02677534520626068, 0.08372838795185089, 0.013641927391290665, 0.04172533378005028, 0.027504364028573036, -0.021981872618198395, 0.010343842208385468, -0.0031278328970074654, 0.039284877479076385, 0.009233744814991951, -0.03487473353743553, -0.011455097235739231, 0.013625379651784897, -0.02733687311410904, -0.052421726286411285, 0.0294382032006979, 0.042376209050416946, 0.001051870989613235, -0.023388972505927086, -0.0782172679901123, 0.022037461400032043, -0.03064906969666481, 0.003906681202352047, -0.035372499376535416, 0.005018150899559259, 0.009949292056262493, -0.04487425833940506, -0.00833218265324831, -0.04764552786946297, 0.12857159972190857, 0.039786964654922485, 0.03231778368353844, 0.015333112329244614, 0.016500268131494522, 0.041762273758649826, 0.03484074026346207, -0.03787269443273544, -0.019917745143175125, -0.017144471406936646, 0.03569740056991577, -0.001812145346775651, 0.040268801152706146, 0.005430135410279036, 0.010897372849285603, 0.06568926572799683, -0.07033129781484604, -0.026546629145741463, 0.043361846357584, -0.038108814507722855, -0.03177141025662422, 0.01050512958317995, -0.01795176789164543, 0.009437629953026772, -0.00785200484097004, 0.03866138309240341, 0.04903189837932587, -0.019807958975434303, -0.02081768959760666, 0.018317144364118576, 0.025796033442020416, -0.060918569564819336, 0.022726206108927727, -0.0011716124136000872, -0.03647540137171745, 0.04319292679429054, 0.00024257886980194598, -0.03425614908337593, -0.011865592561662197, -0.006124338135123253, -0.010419337078928947, 0.001665474963374436, 0.035683486610651016, -0.03242701664566994, -0.017492035403847694, 0.05401751399040222, -0.04781154543161392, -0.01343822292983532, 0.04070684313774109, -0.031090686097741127, 0.042774833738803864, -0.02195897325873375, 0.002178547205403447, -0.017668094485998154, -0.052233945578336716, -0.0018782633123919368, 0.0035244503524154425, -0.033790528774261475, -0.021596785634756088, -0.029702138155698776, 0.014261836186051369, -0.004263108596205711, 0.007988461293280125, 0.04177040234208107, -0.006183568388223648, -0.020552348345518112, 0.027807295322418213, 0.028745848685503006, -0.002630592556670308, -0.013469399884343147, -0.004592929035425186, -0.03810448944568634, -0.026012269780039787, -0.03143227472901344, 0.033751729875802994, 0.02137686125934124, -0.02543114684522152, 0.04774720221757889, 0.0031719207763671875, -0.03050411306321621, -0.03991524502635002, -0.0413995161652565, 0.0012510098749771714, -0.056623443961143494, 0.03964267671108246, 0.050544850528240204, -0.03146399185061455, -0.03492686524987221, -0.061722081154584885, 0.03688683733344078, 0.06478070467710495, 0.030094988644123077, 0.004695613402873278, -0.012250863946974277, -0.025504950433969498 ]
Nice essay in yesterday's NY Times from former Daily Show executive producer Ben Karlin. It's about his struggles to come to terms with the realization that his then-girlfriend Paoloโ€“"a devastatingly cute waitress" from his favorite local Brooklyn Italian jointโ€“was indeed The One. โ€ฆnot only did I intend to learn all the nuances of backcountry camping, but also a variety of kayaking moves, culminating in the famed "Eskimo roll," a rescue maneuver wherein a capsized kayaker staves off drowning by flipping upright while staying fixed snugly in the hull of his boat. Also, I wanted to solve all my problems involving emotional intimacy. In short, Karlin gets his sign from above in the wee hours of his "solo" day in Mexico, and ends up proposing to Paola. We profiled Karlin a few years ago, and if memory serves, there was an issue with what to put in the biographical data box that appears at the end of each "Fifth Estater" profile. Ben didn't want to mention his recent engagement in print, as it was so recent that not all family members had been informed (Presumably there was concern that these family members might find out about it in B&C, which seems a bit odd). At the same time, Ben didn't want to be listed as single, either. It's nice to see there's no longer any ambiguity about Ben Karlin's relationship status.
[ 0.017422359436750412, -0.01911919005215168, -0.015822311863303185, 0.024228930473327637, 0.0028405131306499243, -0.01496773399412632, 0.007291755173355341, 0.041026242077350616, 0.052345775067806244, 0.021267984062433243, 0.054087091237306595, -0.002281400142237544, -0.0016972487792372704, -0.012213467620313168, -0.034039631485939026, -0.02353965863585472, -0.02646401710808277, -0.03429834917187691, -0.053520672023296356, 0.005920964293181896, 0.013344703242182732, -0.014028355479240417, -0.048253994435071945, -0.013301964849233627, -0.021423058584332466, 0.05397283658385277, 0.014931232668459415, 0.00816580094397068, 0.08553772419691086, 0.03021549992263317, -0.002803104231134057, -0.023385750129818916, -0.0019095281604677439, -0.05509219318628311, -0.01667359657585621, -0.023408614099025726, 0.023895563557744026, -0.03499243035912514, -0.019561441615223885, -0.019701246172189713, 0.0012030946090817451, -0.009260362945497036, 0.021746277809143066, -0.017194679006934166, -0.0475100539624691, -0.00957327801734209, -0.0052123605273664, -0.051211386919021606, -0.017311669886112213, -0.04759057238698006, 0.02771317958831787, -0.01808287762105465, 0.02662769705057144, 0.017019569873809814, 0.024378499016165733, -0.0009592506685294211, 0.01993129402399063, 0.009988175705075264, -0.01633222959935665, 0.03632061928510666, 0.001321375835686922, -0.008981458842754364, 0.023815058171749115, -0.05720256268978119, 0.00027778767980635166, 0.017816169187426567, 0.007308202795684338, -0.021585460752248764, 0.02468607947230339, -0.031288858503103256, -0.006744830869138241, 0.018613038584589958, -0.019590962678194046, -0.01852985844016075, 0.0039785741828382015, 0.003266379702836275, 0.0011910166358575225, 0.0027471985667943954, -0.01466481201350689, 0.007261673919856548, 0.029869133606553078, 0.06420522183179855, 0.00043931417167186737, 0.004642772488296032, -0.04687435179948807, -0.01830334961414337, -0.004305133130401373, 0.04663717374205589, 0.03230004385113716, -0.004810985643416643, 0.003334559965878725, 0.05243140459060669, 0.015479306690394878, -0.027471836656332016, 0.030535656958818436, 0.048554033041000366, -0.04644572362303734, 0.013297369703650475, 0.009462889283895493, -0.004437172319740057, 0.0355839803814888, 0.031114375218749046, 0.00487949512898922, 0.04428006708621979, -0.05011012777686119, 0.01081674825400114, 0.020446278154850006, 0.0008729448891244829, 0.012595844455063343, -0.041230399161577225, 0.011872137896716595, -0.011269740760326385, 0.014669532887637615, 0.0017880892846733332, -0.03350571542978287, 0.02409331686794758, 0.02944878116250038, 0.031158896163105965, -0.028659967705607414, 0.009864624589681625, -0.0034879962913691998, 0.009617391042411327, 0.03822152316570282, -0.03579675406217575, 0.01512385718524456, -0.053093321621418, -0.06390471756458282, 0.04600374400615692, -0.03695858642458916, 0.0014095823280513287, -0.00003387209289940074, -0.038046881556510925, -0.030669361352920532, 0.0022657569497823715, -0.006554091814905405, 0.00868173036724329, -0.030228478834033012, 0.03679536283016205, 0.00883925799280405, -0.07495517283678055, 0.063766248524189, 0.027297932654619217, 0.032232459634542465, 0.10059034079313278, -0.003402296919375658, 0.014016532339155674, -0.0009393463260494173, -0.0032801779452711344, -0.028504448011517525, 0.03810100257396698, -0.045757945626974106, 0.03411095589399338, 0.01566319726407528, -0.003205647924914956, -0.006248400080949068, -0.0004058126360177994, -0.014012853614985943, 0.011743276380002499, 0.02297073043882847, 0.033599842339754105, -0.059841230511665344, -0.014568001963198185, -0.0034795186948031187, 0.06738609820604324, 0.0008001694804988801, 0.04732309654355049, -0.005075770430266857, -0.008481222204864025, 0.008834104984998703, -0.05197429656982422, 0.01643289253115654, 0.017738891765475273, -0.037499360740184784, 0.015675216913223267, 0.02553984709084034, 0.05696729198098183, 0.025406060740351677, -0.02999497950077057, 0.02776958793401718, 0.03901316970586777, -0.00534331938251853, 0.009459611028432846, -0.0167317446321249, 0.040930699557065964, 0.005201204214245081, -0.01316474936902523, 0.02026294358074665, -0.04563027247786522, -0.03884363919496536, -0.018310056999325752, -0.04146246612071991, 0.02369173802435398, -0.028564192354679108, 0.03552673012018204, 0.038016870617866516, 0.01961572840809822, -0.024132587015628815, -0.011483622714877129, -0.002812736900523305, -0.047517407685518265, -0.01520561520010233, 0.05661920830607414, -0.028310196474194527, 0.023029092699289322, -0.016162468120455742, -0.01954684406518936, 0.03665653616189957, 0.06410364806652069, -0.030443700030446053, 0.005933881271630526, 0.041057586669921875, 0.008648901246488094, -0.0405048206448555, -0.06257312744855881, -0.041940588504076004, -0.013144209049642086, -0.02383725345134735, 0.07944484055042267, -0.011663824319839478, 0.009701458737254143, 0.021460186690092087, -0.012545537203550339, 0.04477498307824135, 0.022599609568715096, 0.009571478702127934, -0.007456780411303043, 0.02631501480937004, 0.05110456049442291, -0.04033597558736801, -0.025066416710615158, 0.00048106643953360617, 0.028269369155168533, 0.03121383674442768, 0.051303066313266754, 0.03629675507545471, -0.0012655365280807018, 0.05654730275273323, 0.041081834584474564, -0.000842673412989825, 0.011008748784661293, 0.019899867475032806, 0.01994709111750126, 0.01809222251176834, -0.002332378411665559, 0.0014707583468407393, 0.016590675339102745, 0.010912279598414898, -0.0017621550941839814, -0.009714971296489239, 0.019101537764072418, -0.019314562901854515, 0.030503038316965103, -0.0004772638203576207, 0.0404401458799839, 0.005337901879101992, 0.02263234555721283, 0.0343405157327652, 0.06849603354930878, -0.033041175454854965, -0.012723281048238277, -0.023925771936774254, 0.012637081556022167, -0.02831145189702511, -0.029256463050842285, 0.018468214198946953, 0.012504451908171177, 0.010647322982549667, 0.0038940906524658203, -0.008101267740130424, -0.05969890207052231, -0.011917795985937119, -0.0634850561618805, -0.023864729329943657, -0.045807547867298126, -0.05333289876580238, 0.04106619581580162, 0.025157760828733444, -0.031125489622354507, 0.004153212532401085, -0.000019781549781328067, -0.011589396744966507, -0.0318843275308609, -0.019199740141630173, 0.05023321136832237, -0.005562148056924343, 0.03373991325497627, -0.02794509008526802, 0.040940091013908386, 0.02394302375614643, 0.036304596811532974, -0.002312070457264781, -0.027023490518331528, 0.016648385673761368, -0.015565724112093449, 0.01719038002192974, -0.0009839808335527778, -0.010359940119087696, -0.017584174871444702, -0.07887342572212219, -0.05236925557255745, 0.006376707926392555, 0.011111636646091938, 0.0309713426977396, 0.010349873453378677, -0.04487016052007675, 0.049752477556467056, -0.008493004366755486, -0.03325337916612625, 0.037207748740911484, 0.023405903950333595, -0.03881535679101944, 0.04579538851976395, 0.03344713896512985, 0.031011760234832764, -0.04115547984838486, 0.07160353660583496, 0.011715839616954327, 0.02268434502184391, -0.048810482025146484, 0.024464597925543785, -0.03704927861690521, 0.008770676329731941, 0.018705936148762703, -0.017710695043206215, -0.05632062256336212, 0.03155159577727318, 0.0044781118631362915, -0.08117127418518066, 0.048010364174842834, -0.02442006580531597, -0.03084730915725231, -0.026761746034026146, -0.04292967543005943, 0.038700684905052185, 0.034666258841753006, 0.016182495281100273, 0.00713353930041194, -0.02003846876323223, 0.011539062485098839, 0.017252106219530106, 0.028154686093330383, -0.02344837412238121, -0.01284878235310316, 0.01890282891690731, -0.010301525704562664, 0.01308517251163721, 0.04260333627462387, -0.0056378161534667015, 0.0014228579821065068, 0.027611711993813515, -0.0021921226289123297, 0.01334814727306366, 0.013595308177173138, -0.0016734055243432522, 0.025061173364520073, 0.04378630220890045, -0.013588783331215382, -0.030782926827669144, 0.016846008598804474, 0.009360590018332005, 0.029753221198916435, -0.005654824897646904, 0.0042805117554962635, -0.016765017062425613, -0.036253686994314194, -0.05889682471752167, 0.0398302897810936, 0.006365790497511625, 0.05461475998163223, -0.03700336068868637, 0.04835047945380211, 0.003531369613483548, -0.04965914040803909, 0.04197607934474945, -0.057224929332733154, -0.015158835798501968, 0.021887024864554405, 0.019492734223604202, 0.021587835624814034, -0.03622322902083397, 0.028386544436216354, -0.013331805355846882, 0.031362827867269516, 0.05883074551820755, -0.03512091934680939, 0.04288410395383835, -0.031507909297943115, -0.07521574199199677, -0.021709471940994263, -0.014433620497584343, 0.0006451924564316869, -0.02686457894742489, 0.007328486070036888, -0.0120005551725626, -0.03845784068107605, -0.029094241559505463, 0.018335117027163506, 0.01764015667140484, 0.029197033494710922, -0.01245057862251997, 0.0694638192653656, 0.005807848181575537, 0.026491591706871986, 0.05790084972977638, -0.004528251010924578, 0.00011904277198482305, -0.05866698548197746, 0.033270515501499176, 0.00714112026616931, -0.023018307983875275, -0.04180709645152092, 0.014739871956408024, 0.004226573742926121, 0.022781817242503166, 0.002666573040187359, -0.015188456512987614, -0.023599781095981598, 0.030824463814496994, -0.025512607768177986, 0.03547963872551918, -0.05910564586520195, -0.028879137709736824, -0.010757756419479847, 0.04025334492325783, 0.03603297099471092, -0.04549284279346466, -0.004732748027890921, -0.0409465990960598, 0.06253403425216675, 0.04199066385626793, -0.006333405617624521, -0.023114372044801712, -0.021244939416646957, -0.039372026920318604, -0.02559148520231247, 0.006629683077335358, 0.03809065371751785, -0.01513590570539236, 0.01216199342161417, -0.04854118078947067, 0.04146929830312729, 0.023763328790664673, 0.021161271259188652, -0.020975293591618538, -0.019466953352093697, 0.043972741812467575, -0.00034671922912821174, 0.03923498094081879, -0.015413072891533375, -0.054215021431446075, 0.02170184627175331, -0.03273896500468254, 0.019680030643939972, 0.003862116951495409, -0.03412128612399101, -0.009371061809360981, 0.0057450165040791035, 0.01988411322236061, 0.03015720844268799, -0.01608072593808174, 0.004764630924910307, 0.0039383419789373875, 0.03962460160255432, -0.05254964902997017, -0.04043721780180931, 0.01085172314196825, -0.01642730087041855, -0.0429907888174057, 0.021655377000570297, 0.06123685464262962, 0.0034295027144253254, -0.014376256614923477, 0.03106071799993515, -0.08307897299528122, 0.03934384137392044, -0.03316279500722885, 0.013013217598199844, 0.023832783102989197, -0.024302532896399498, 0.023277798667550087, -0.0498201958835125, 0.023452019318938255, -0.0012701755622401834, -0.020060056820511818, -0.04932589456439018, -0.08599910885095596, -0.024959640577435493, -0.005231327377259731, -0.0002961840364150703, -0.012209264561533928, 0.021469103172421455, -0.002101621124893427, -0.033278074115514755, -0.027469642460346222, -0.027318324893712997, -0.017844347283244133, -0.02521907538175583, 0.004862365312874317, 0.01852886751294136, 0.0017519282409921288, 0.03838568180799484, 0.009572092443704605, -0.035917334258556366, 0.03521499037742615, -0.007844407111406326, -0.025987960398197174, -0.055364955216646194, -0.0019611427560448647, -0.006321317981928587, -0.001821379642933607, -0.003512126626446843, -0.02029445394873619, -0.00816204585134983, 0.018093369901180267, 0.01751735992729664, -0.005872739013284445, 0.017853301018476486, 0.005418856628239155, -0.03186127543449402, 0.061578694730997086, 0.016148652881383896, -0.022540627047419548, -0.0327814519405365, 0.044323213398456573, 0.0010626002913340926, 0.03698807209730148, 0.0016054048901423812, -0.03753984346985817, -0.05557724088430405, -0.05498996376991272, 0.00106631510425359, -0.029391149058938026, -0.03155567869544029, -0.045782119035720825, -0.007101280149072409, -0.0001443479413865134, 0.0362592488527298, -0.012358651496469975, -0.01062795240432024, -0.002407883061096072, -0.047274887561798096, 0.024638036265969276, -0.022775305435061455, -0.012014084495604038, -0.02156073786318302, 0.00019448781677056104, -0.013248570263385773, 0.060864415019750595, 0.019708819687366486, 0.00855401623994112, 0.006324450019747019, -0.009198669344186783, 0.03854631260037422, -0.005478976294398308, -0.03115580976009369, -0.044291410595178604, 0.009516746737062931, -0.016857318580150604, -0.00016832015535328537, -0.003660502377897501, -0.02142377570271492, 0.0245322547852993, -0.027836190536618233, 0.012876266613602638, -0.010696177370846272, 0.002081614453345537, -0.011760957539081573, -0.02600325271487236, 0.024205245077610016, -0.043484628200531006, 0.005479511339217424, -0.047392942011356354, 0.03120397962629795, 0.05080125108361244, 0.010659678839147091, -0.03895112872123718, -0.02435322478413582, -0.05441185459494591, -0.061362262815237045, 0.04536488279700279, -0.04393621161580086, -0.018241172656416893, -0.03421638533473015, -0.008459210395812988, 0.02162010781466961, -0.02193261682987213, 0.029589442536234856, 0.040850088000297546, -0.01651662029325962, -0.01887335069477558, -0.04259375482797623, 0.006962997373193502, 0.05166786536574364, -0.0077042728662490845, 0.005108213517814875, -0.041076164692640305, -0.02802859991788864, 0.018744999542832375, -0.03359308838844299, -0.036925431340932846, -0.04010040685534477, -0.005142605863511562, 0.04936498776078224, -0.007774788420647383, 0.04923538118600845, 0.006508207879960537, -0.05548248067498207, -0.07476582378149033, 0.043966226279735565, 0.023541385307908058, 0.0022212497424334288, 0.015241041779518127, 0.008378714323043823, 0.00408498989418149, 0.02007090486586094, 0.012531265616416931, 0.03201476112008095, -0.023762932047247887, 0.06819064170122147, -0.013300254940986633, -0.026793094351887703, 0.050381626933813095, 0.056495048105716705, -0.07381338626146317, -0.051453761756420135, 0.010159337893128395, 0.0027966073248535395, 0.0038414807058870792, -0.016087744385004044, 0.012330806814134121, 0.01371826883405447, -0.005277416668832302, 0.021646328270435333, 0.028702758252620697, 0.007169557269662619, 0.04189322516322136, -0.007646652404218912, 0.032428301870822906, -0.02687820792198181, 0.026145074516534805, 0.04299791157245636, -0.0230253953486681, -0.01931728981435299, -0.038023900240659714, -0.01320740021765232, -0.004900792147964239, -0.038320623338222504, 0.035210900008678436, -0.033315520733594894, 0.01764269545674324, 0.036689791828393936, -0.005612762179225683, 0.04720132052898407, 0.0008258920861408114, -0.01712784543633461, 0.00965286884456873, -0.03069787472486496, -0.0251162052154541, -0.043018195778131485, 0.029114888980984688, -0.03505466505885124, 0.02145306020975113, -0.041760411113500595, 0.014318498782813549, 0.053278855979442596, 0.0186525359749794, 0.007013677153736353, -0.05278428643941879, -0.0466889850795269, -0.04542802646756172, -0.041749339550733566, -0.030208099633455276, -0.01650187186896801, -0.0032840408384799957, 0.008653557859361172, 0.025829248130321503, -0.005734812002629042, -0.03230971843004227, -0.001115136663429439, -0.02758915349841118, 0.05551410838961601, -0.051851749420166016, 0.011704619973897934, -0.03303870931267738, -0.019201403483748436, -0.02365623041987419, -0.016946110874414444, -0.02689005434513092, 0.004073895514011383, -0.010294318199157715, 0.00549278873950243, -0.0020150041673332453, 0.04850482940673828, 0.017029961571097374, -0.0021525979973375797, 0.010569063015282154, -0.05559736490249634, 0.003242198145017028, 0.03982430696487427, -0.009997024200856686, 0.03795183449983597, 0.023063810542225838, -0.060017336159944534, 0.014444420114159584, -0.022286148741841316, -0.02500511147081852, 0.0018688873387873173, -0.01877262070775032, -0.017321515828371048, 0.046920567750930786, -0.06317517906427383, 0.012556851841509342, -0.0023065730929374695, -0.020721133798360825, 0.025421248748898506, 0.007243741303682327, 0.01039678230881691, -0.019693342968821526, -0.029534827917814255, 0.0054171704687178135, 0.03095727413892746, 0.015765558928251266, 0.02034982293844223, -0.013665881007909775, 0.04873114451766014, 0.031421538442373276, 0.001039889408275485, 0.03557553514838219, 0.03268086537718773, 0.03708598017692566, -0.0012385122245177627, 0.01326191145926714, 0.03466968610882759, -0.03510893136262894, 0.032405074685811996, 0.002716449089348316, -0.021329311653971672, -0.03758557140827179, 0.003720487467944622, -0.0024425412993878126, 0.05284732207655907, 0.014542690478265285, -0.03711914271116257, 0.027992483228445053, -0.031024198979139328, -0.029700743034482002, -0.010141454637050629, -0.06724655628204346, 0.004553371109068394, 0.04655226320028305, -0.005098850931972265, -0.0023317448794841766, -0.017557991668581963, -0.021361757069826126, 0.01798352599143982, 0.008668642491102219, 0.022224582731723785, -0.02939450927078724, 0.01592349074780941, -0.007943501695990562, 0.0315076969563961, 0.0028025987558066845, -0.010444525629281998, 0.013586203567683697, 0.048398327082395554, -0.049835577607154846, -0.05202847346663475, -0.011539172381162643, 0.004549937788397074, 0.003044063225388527, -0.021044529974460602, 0.0028424186166375875, 0.021314449608325958, 0.00816104095429182, -0.03570279851555824, 0.011817350052297115, 0.04034434258937836, 0.010565854609012604, 0.03164810314774513, 0.01135861687362194, 0.0007515003089793026, -0.0251995250582695, 0.03190532326698303, -0.023161793127655983, -0.022003307938575745, -0.022652452811598778, 0.050794124603271484, 0.011107674799859524, -0.0020456884521991014, 0.038924120366573334, 0.018859032541513443, 0.03187275305390358, -0.009067809209227562, 0.03304984048008919, -0.018138829618692398, 0.03772566094994545, 0.044504497200250626, 0.01800878904759884, -0.0071852621622383595, 0.022390710189938545, 0.024110019207000732, -0.03389549255371094, 0.003695325693115592, 0.012689130380749702, 0.01108639221638441, -0.015847569331526756, -0.04681466519832611, -0.0177870262414217, 0.01707221195101738, 0.020710129290819168, 0.004280340392142534, 0.015596828423440456, -0.039608463644981384, -0.009640904143452644, -0.04529263451695442, -0.00035018858034163713, 0.06645546853542328, -0.028808802366256714, -0.0016047284007072449, -0.013010533526539803, -0.026571277529001236, 0.015048065222799778, 0.03886127099394798, -0.004285402130335569, 0.007550599053502083, 0.03385303542017937, 0.028742961585521698, -0.019521836191415787, 0.03989819809794426, 0.013367647305130959, 0.03460552543401718, -0.0242286566644907, -0.006175887770950794, 0.008852027356624603, 0.01419646106660366, -0.03329912945628166, 0.015255635604262352, -0.00529445381835103, 0.024470962584018707, -0.04582357406616211, -0.030720293521881104, 0.004903375171124935, -0.04348507896065712, -0.018770849332213402, -0.01984243467450142, 0.04065082222223282, -0.02869880199432373, -0.004176556132733822, 0.013505898416042328, -0.0086567597463727, -0.038869645446538925, 0.04002274200320244, 0.010062992572784424, 0.06196994334459305, -0.0009777899831533432, 0.048736706376075745, -0.03264372795820236, 0.045072901993989944, 0.0784119963645935, -0.04386721923947334, -0.0337517149746418, 0.0002607581263873726, 0.008481250144541264, -0.03854735568165779, -0.02101723663508892, -0.06029961258172989, -0.007954303175210953, -0.016983360052108765, -0.032281748950481415, -0.0027828793972730637, 0.05700533837080002, -0.002318380866199732, -0.02975228801369667, 0.015498695895075798, 0.04633226990699768, -0.04481242597103119, -0.004226393532007933, -0.020339975133538246, 0.04861436411738396, -0.025394754484295845, -0.01647108606994152, -0.04708126187324524, -0.04035535827279091, 0.014490757137537003, -0.054478853940963745, 0.03317231312394142, -0.0006122530321590602, -0.037633564323186874, -0.052140772342681885, -0.05467749014496803, -0.016146885231137276, 0.02177642472088337, -0.040136005729436874, -0.05268348753452301, 0.02865171991288662, 0.06355750560760498, -0.002261136192828417, 0.025303957983851433, -0.027551252394914627, -0.004040504805743694, 0.04045010358095169, 0.06802626699209213, -0.01295221783220768, 0.03461276739835739, 0.024560891091823578, -0.024640029296278954, 0.027849484235048294, -0.019668912515044212, 0.03569542244076729, -0.02987551875412464, 0.007906785234808922, -0.027052108198404312, 0.03325948864221573, -0.015286303125321865, -0.08552303165197372, 0.002342365449294448, -0.0009865588508546352, 0.023947909474372864, -0.05779752880334854, -0.06888879835605621, -0.034691959619522095, -0.042625248432159424, 0.010248576290905476, -0.03058776631951332, 0.016537103801965714, 0.020363328978419304, -0.015475783497095108, 0.013450871221721172, -0.08598724752664566, 0.16966423392295837, 0.0597618892788887, 0.024451404809951782, -0.02132229320704937, 0.01185796968638897, 0.04237652197480202, 0.018341880291700363, -0.005587644409388304, -0.0025518431793898344, -0.02472434565424919, 0.04505077004432678, 0.004574279300868511, -0.002343992702662945, 0.008078702725470066, 0.020612770691514015, 0.05291466787457466, -0.02810334786772728, 0.012858045287430286, 0.013162439689040184, -0.04165973886847496, -0.04066562280058861, 0.018926868215203285, 0.036053914576768875, 0.015169382095336914, 0.005539026577025652, 0.025669198483228683, 0.0120882922783494, -0.0362432636320591, -0.009917790070176125, -0.008412502706050873, 0.011249769479036331, -0.04314746707677841, 0.046269454061985016, 0.0008062844281084836, -0.030069883912801743, 0.04333410784602165, 0.0004963912651874125, 0.000617575307842344, -0.0003986454976256937, 0.01265726238489151, -0.030051566660404205, 0.04091159254312515, 0.03251153230667114, -0.05959053710103035, 0.027155032381415367, -0.010049950331449509, -0.03203205019235611, 0.05543654412031174, -0.006553936284035444, -0.04460051655769348, 0.04088917374610901, -0.02069733664393425, 0.021259570494294167, -0.003355323104187846, -0.028948763385415077, 0.049783945083618164, 0.034453995525836945, 0.0041749132797122, -0.005132904276251793, 0.008674951270222664, 0.05051874369382858, 0.005493739154189825, -0.010223119519650936, -0.006597186904400587, -0.018712352961301804, 0.007635550107806921, 0.01797649636864662, 0.014973767101764679, -0.04133123159408569, -0.046792034059762955, -0.02829870767891407, -0.002623660722747445, 0.006752781104296446, -0.011972635053098202, 0.06317953765392303, 0.02331393025815487, -0.011104092001914978, 0.01628098264336586, 0.01470333430916071, -0.027347883209586143, -0.049430374056100845, -0.02857372537255287, 0.002544453600421548, -0.0001697102125035599, 0.028285209089517593, 0.04127207398414612, -0.03144153952598572, -0.04650857672095299, -0.02548445574939251, 0.06001247838139534, 0.030683079734444618, 0.00036081261350773275, -0.013327233493328094, 0.0018949999939650297, -0.017405735328793526 ]
using BeYourMarket.Model.Models; using Repository.Pattern.Repositories; using Service.Pattern; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BeYourMarket.Service { public interface IItemStatService : IService<ItemStat> { } public class ItemStatService : Service<ItemStat>, IItemStatService { public ItemStatService(IRepositoryAsync<ItemStat> repository) : base(repository) { } } }
[ -0.039200231432914734, 0.006134379655122757, -0.019797781482338905, -0.009233241900801659, -0.01429558265954256, 0.011859077960252762, -0.00015749898739159107, 0.011357856914401054, 0.04274047166109085, 0.036126721650362015, 0.014111424796283245, -0.01030502188950777, 0.0011640058364719152, -0.010358855128288269, -0.0029858967754989862, 0.009077847003936768, -0.02825525775551796, -0.015419981442391872, -0.05700729414820671, 0.00044097343925386667, 0.007406639400869608, 0.028587525710463524, -0.08470717072486877, -0.04105712100863457, -0.01290835626423359, 0.032963257282972336, 0.03183935955166817, -0.01684202067553997, 0.06101708859205246, 0.0786396935582161, -0.0036256301682442427, -0.03791537880897522, 0.022657549008727074, -0.03869803994894028, -0.031215839087963104, 0.0001368325756629929, 0.025843216106295586, -0.031215878203511238, -0.006301469169557095, -0.05392253026366234, 0.04200795665383339, -0.02392970211803913, 0.009667146019637585, -0.05499894917011261, -0.04771360382437706, -0.007068628910928965, 0.04155063256621361, -0.019833235070109367, 0.007283097133040428, -0.018729563802480698, 0.019661327823996544, -0.0001994649792322889, 0.01054416410624981, 0.004268070217221975, -0.008997078984975815, 0.00804012082517147, 0.005671960301697254, -0.007969387806952, -0.017474867403507233, 0.02304886467754841, 0.03927881270647049, -0.0028301856946200132, 0.03046671487390995, -0.07879868894815445, 0.03838741406798363, 0.01645563542842865, -0.03969091549515724, 0.010633407160639763, 0.017323816195130348, -0.022579941898584366, -0.014167563989758492, -0.00018247912521474063, -0.008116602897644043, -0.017106162384152412, -0.012366765178740025, 0.014695286750793457, -0.025392504408955574, -0.0178364384919405, 0.03251248225569725, 0.0014329354744404554, 0.014598513022065163, 0.059222545474767685, 0.025419797748327255, 0.022959794849157333, -0.03574040159583092, 0.012895564548671246, -0.004083666484802961, -0.023034492507576942, -0.002714565023779869, -0.009239188395440578, -0.020078858360648155, 0.05204077810049057, -0.009972766973078251, 0.01803397573530674, 0.021823765709996223, 0.05191272497177124, -0.05431262403726578, 0.020809181034564972, 0.012226845137774944, -0.01095859706401825, 0.07838314771652222, 0.05883647873997688, -0.006675682496279478, 0.016567343845963478, -0.06552496552467346, 0.009510398842394352, -0.011867206543684006, -0.008300581015646458, 0.00028526055393740535, -0.03120766021311283, 0.018905717879533768, -0.004169846884906292, 0.024050096049904823, -0.020984597504138947, -0.010083951987326145, 0.04758627340197563, 0.00021922634914517403, 0.04357729107141495, -0.023052994161844254, 0.009732919745147228, 0.021171482279896736, -0.004099033772945404, 0.0385906845331192, -0.04901590198278427, 0.025492019951343536, -0.05126423016190529, 0.009642439894378185, 0.06132833659648895, -0.014627894386649132, -0.029456840828061104, -0.00031018114532344043, -0.02592574432492256, -0.0031044690404087305, 0.04478968679904938, -0.025549771264195442, 0.031807057559490204, 0.018003227189183235, 0.04529498517513275, 0.0032431057188659906, -0.048686154186725616, 0.01797211356461048, 0.02310975082218647, -0.009154428727924824, 0.08762335032224655, 0.029595591127872467, 0.02280445024371147, 0.011486326344311237, -0.006717015989124775, -0.07064848393201828, 0.01913532242178917, -0.028335873037576675, 0.015428119339048862, -0.004515090025961399, 0.0021460491698235273, 0.0029285370837897062, -0.0025574653409421444, -0.011875164695084095, 0.011749659664928913, 0.026246795430779457, -0.002368787070736289, -0.04075887054204941, 0.01927465759217739, -0.023607734590768814, 0.0459819957613945, -0.017998598515987396, 0.022636130452156067, -0.03388625383377075, 0.004822067450731993, -0.01108910795301199, -0.01409594714641571, 0.024489620700478554, -0.012613964267075062, -0.008560322225093842, 0.013331522233784199, 0.013970267958939075, 0.05168807506561279, 0.004376385360956192, 0.0217896681278944, 0.05711225047707558, 0.04131079092621803, -0.01603631116449833, -0.028326155617833138, 0.0008711034897714853, 0.07583010196685791, 0.009504265151917934, 0.0011220733867958188, 0.024345124140381813, -0.0353986918926239, -0.03904786333441734, -0.03823963180184364, 0.012646893039345741, 0.03799579292535782, -0.026943612843751907, 0.031395792961120605, -0.022389346733689308, 0.04086396098136902, -0.029778340831398964, 0.015380448661744595, -0.020265819504857063, -0.0314805693924427, -0.02198830246925354, 0.0502578541636467, -0.028689639642834663, 0.001148877665400505, 0.008943715132772923, -0.044171594083309174, 0.03660497069358826, 0.018729278817772865, -0.058164190500974655, 0.0235424991697073, 0.021454501897096634, 0.014539760537445545, -0.04226212576031685, -0.03438219428062439, 0.0025620553642511368, -0.016943257302045822, -0.04942749813199043, 0.03336946666240692, -0.015216212719678879, -0.01337716355919838, 0.021182721480727196, 0.01156340166926384, 0.044333476573228836, 0.028354331851005554, -0.006958289537578821, -0.020159641280770302, 0.020859235897660255, 0.050659410655498505, -0.03765478357672691, 0.017580652609467506, 0.011332733556628227, 0.06897518038749695, 0.00862173456698656, 0.05646805465221405, 0.049524884670972824, -0.008150515146553516, 0.03503892570734024, 0.06682473421096802, -0.016483470797538757, 0.04661392420530319, -0.0045479778200387955, 0.044354476034641266, 0.02080495096743107, 0.031862303614616394, -0.02450139820575714, 0.007775571197271347, 0.012817793525755405, -0.0010144138941541314, -0.013035144656896591, 0.02451169490814209, -0.014713584445416927, 0.04945085570216179, 0.007062533870339394, 0.028776945546269417, -0.016993945464491844, -0.024623772129416466, 0.01650691218674183, 0.03871028497815132, -0.0323195680975914, -0.012581131421029568, 0.020239809527993202, 0.03267177566885948, -0.013108574785292149, -0.019596939906477928, 0.014687303453683853, 0.03524516895413399, 0.028716983273625374, -0.010140616446733475, -0.010756053030490875, -0.02873898670077324, -0.05970114469528198, -0.02160622365772724, -0.036444250494241714, -0.018593082204461098, -0.0357825867831707, 0.007757005747407675, 0.041581425815820694, -0.02951926551759243, 0.04557451978325844, -0.002886807080358267, -0.0013199724489822984, -0.029081976041197777, -0.03640815615653992, 0.045893505215644836, 0.029679838567972183, 0.0231090746819973, -0.032352980226278305, 0.024569114670157433, 0.010811799205839634, 0.02335573360323906, -0.03721636161208153, 0.002611973788589239, 0.016289347782731056, -0.015073908492922783, 0.02164069376885891, -0.004563795402646065, -0.006100777070969343, -0.0043961284682154655, -0.01005668193101883, -0.05678372457623482, 0.00657877791672945, -0.004639720544219017, -0.013979354873299599, 0.03867895528674126, -0.03474807366728783, 0.06170522794127464, 0.024528877809643745, -0.013561712577939034, 0.052471060305833817, 0.03881066292524338, -0.02638540416955948, 0.006978320423513651, -0.002001665299758315, -0.023196034133434296, -0.0590924397110939, 0.04408303648233414, 0.0636708214879036, -0.02211230993270874, -0.018028246238827705, -0.022326011210680008, -0.04459023475646973, 0.014160653576254845, 0.017380720004439354, 0.011096702888607979, -0.030720118433237076, 0.031205248087644577, -0.006158581469208002, -0.067642942070961, 0.04288754239678383, -0.05145252123475075, -0.0037302763666957617, -0.0435069240629673, -0.035732198506593704, 0.029195277020335197, 0.035346005111932755, 0.03982462361454964, -0.0033538038842380047, -0.024189699441194534, 0.011818685568869114, 0.01311557274311781, 0.028557922691106796, -0.0071299029514193535, 0.04610534757375717, 0.04806855693459511, 0.0029029410798102617, -0.011923842132091522, 0.03499196842312813, -0.0245502982288599, -0.00951516255736351, 0.00004152909605181776, -0.02461995556950569, 0.033963628113269806, 0.017076047137379646, 0.03716915473341942, -0.0008928394527174532, 0.07811898738145828, -0.03424389660358429, 0.0005450189928524196, 0.0038543466944247484, 0.04147207364439964, 0.045643195509910583, 0.03037337027490139, -0.0048668598756194115, -0.036123648285865784, -0.04951676353812218, -0.05643095821142197, 0.01363121997565031, 0.024099217727780342, 0.049027618020772934, -0.07228054106235504, 0.079897440969944, -0.023298507556319237, 0.0023625048343092203, 0.06608924269676208, -0.03515574708580971, -0.011143025010824203, 0.03451254963874817, -0.010139147751033306, 0.03767768666148186, -0.036609191447496414, 0.0014627848286181688, 0.00030329774017445743, 0.024885917082428932, 0.0016403456684201956, 0.026444267481565475, 0.00982902105897665, -0.003769518807530403, 0.0018009099876508117, -0.008994377218186855, -0.042028989642858505, 0.0016179329250007868, -0.029970016330480576, 0.02222186140716076, -0.018005574122071266, -0.024079114198684692, -0.049806077033281326, 0.03386541083455086, 0.04506155103445053, 0.04212213680148125, -0.00416753813624382, 0.031282901763916016, -0.015355938114225864, -0.014919070526957512, 0.06603042036294937, -0.031888216733932495, 0.026693498715758324, -0.016021527349948883, 0.03380521759390831, 0.006388761103153229, -0.03374932333827019, -0.02091427519917488, -0.048135627061128616, -0.040866363793611526, 0.020503820851445198, -0.005156140308827162, -0.012321969494223595, -0.04067089408636093, 0.005866852588951588, -0.008954793214797974, 0.014923136681318283, -0.022700076922774315, -0.028695564717054367, -0.006819108035415411, 0.04832260683178902, 0.029601026326417923, -0.038158856332302094, 0.009080713614821434, -0.026141125708818436, 0.022472312673926353, 0.0777808353304863, -0.028283309191465378, -0.05595532804727554, -0.02660505473613739, -0.02522377483546734, -0.037073612213134766, 0.007112841121852398, 0.05448402091860771, -0.023193450644612312, 0.011413129977881908, -0.06561832875013351, -0.009137813933193684, 0.014912726357579231, -0.020983966067433357, -0.024923134595155716, 0.0013028614921495318, 0.008204079233109951, 0.00978049449622631, 0.04235630854964256, -0.00600004056468606, 0.005960110574960709, -0.005075269378721714, -0.034764792770147324, 0.004095226060599089, -0.01665308326482773, -0.011302820406854153, -0.022172212600708008, 0.033422574400901794, 0.023089975118637085, 0.0461130253970623, -0.028819076716899872, 0.009349029511213303, -0.027196699753403664, 0.045579440891742706, -0.017529619857668877, -0.05737810209393501, 0.06368854641914368, 0.012039856053888798, -0.022768741473555565, 0.02945839986205101, 0.04619704931974411, -0.0434170663356781, -0.0018777726218104362, 0.012467718683183193, -0.04692380502820015, 0.036334943026304245, -0.0322384312748909, 0.005465073976665735, -0.050895970314741135, -0.020137231796979904, 0.013354374095797539, -0.047772444784641266, 0.04091232642531395, 0.016352932900190353, -0.0036653068382292986, -0.017868617549538612, -0.058867957442998886, -0.021945439279079437, -0.005564234219491482, -0.03304864466190338, 0.01735837198793888, -0.0072356583550572395, -0.028762152418494225, -0.005423208698630333, 0.012850379571318626, 0.009991259314119816, -0.02694639377295971, -0.003111173864454031, -0.00537372101098299, 0.017754778265953064, -0.008345920592546463, 0.03576848283410072, -0.03896191716194153, -0.053807590156793594, -0.003664175281301141, 0.01566252112388611, -0.013522887602448463, -0.04104222357273102, 0.01072399877011776, -0.026465877890586853, -0.03375912457704544, -0.004384792875498533, 0.01573737896978855, 0.0034254337660968304, 0.024168098345398903, 0.05503978952765465, 0.023909011855721474, 0.006161878816783428, 0.00042737071635201573, -0.04171721264719963, 0.018816903233528137, 0.03878971189260483, -0.020127343013882637, -0.03827838972210884, 0.032279662787914276, 0.016355831176042557, 0.07001134753227234, 0.002270846627652645, 0.012078957632184029, -0.0395110659301281, -0.041185759007930756, -0.0031136823818087578, -0.018067535012960434, -0.02543025277554989, -0.0247233547270298, -0.04293277487158775, -0.015326264314353466, 0.04320710152387619, -0.0035522093530744314, -0.005116824526339769, -0.03709234669804573, -0.03355054929852486, 0.019745932891964912, -0.016808683052659035, -0.010227086953818798, -0.038025401532649994, 0.016009915620088577, -0.006883254740387201, 0.0855870246887207, -0.026837484911084175, 0.025560738518834114, -0.0015696922782808542, 0.024576643481850624, 0.0391947403550148, 0.0019132980378344655, -0.046474285423755646, -0.024247368797659874, 0.02997514419257641, -0.009115675464272499, 0.020314084365963936, 0.023386847227811813, -0.028303490951657295, 0.04315688833594322, -0.03205879405140877, 0.0005617280839942396, -0.022936150431632996, -0.03004300966858864, -0.025292212143540382, -0.004489596001803875, 0.044196031987667084, -0.04362872615456581, 0.018247269093990326, -0.006743015721440315, 0.06660022586584091, 0.0055593689903616905, -0.005799530539661646, -0.0483904704451561, -0.03437516465783119, -0.0661579966545105, -0.06508757919073105, 0.009934474714100361, -0.04980994015932083, 0.0013282553991302848, -0.02615465596318245, -0.03837571665644646, 0.043824706226587296, -0.043193016201257706, 0.061365947127342224, 0.05193118378520012, -0.00435169180855155, 0.007559075020253658, 0.002648183610290289, 0.002018537139520049, 0.021058907732367516, -0.01028643362224102, 0.0025566341355443, -0.029750661924481392, -0.05567009374499321, -0.016164543107151985, -0.04866212606430054, -0.04232380539178848, -0.03704329952597618, -0.01209191419184208, 0.07299647480249405, -0.0362049862742424, 0.023701149970293045, -0.00890593882650137, -0.0533183328807354, -0.03959471359848976, 0.03907502815127373, -0.01190511230379343, 0.025792252272367477, 0.05922412499785423, 0.016219936311244965, -0.01810521073639393, -0.011380180716514587, -0.012377613224089146, -0.006193879991769791, -0.044832825660705566, 0.05376187711954117, 0.0007659491384401917, -0.030395088717341423, 0.02497302182018757, 0.04504220187664032, -0.056178320199251175, -0.04716593399643898, -0.00079699931666255, -0.01263064332306385, -0.013177787885069847, -0.03025718964636326, -0.021981164813041687, -0.011860687285661697, 0.006684744730591774, 0.018760092556476593, 0.028759414330124855, -0.0009948292281478643, 0.0030059232376515865, 0.0003962787159252912, 0.0243992879986763, -0.04302555322647095, 0.0033581359311938286, 0.03497136011719704, 0.006582483649253845, -0.01580970734357834, -0.006970247719436884, -0.012785465456545353, 0.0010912087745964527, -0.0006525521166622639, 0.06657033413648605, -0.010415758937597275, 0.006098034325987101, 0.005178143735975027, -0.010352038778364658, 0.04707033559679985, -0.00006018922431394458, -0.013510103337466717, 0.01621764339506626, -0.025365272536873817, -0.07238622009754181, -0.04921985790133476, 0.028483623638749123, -0.0009466595365665853, 0.010452636517584324, -0.053263720124959946, 0.047152359038591385, 0.05496823042631149, 0.009129133075475693, 0.014800677075982094, -0.06927063316106796, -0.03227187320590019, -0.0471327118575573, -0.03590153157711029, -0.0205796267837286, -0.00020202445739414543, -0.012634887360036373, -0.022637510672211647, 0.016696596518158913, -0.012092462740838528, -0.02157507836818695, 0.02691311202943325, 0.006048349663615227, 0.013592010363936424, -0.017311884090304375, 0.008186349645256996, -0.0729970932006836, -0.047709397971630096, -0.06330573558807373, 0.026823921129107475, -0.00008465309656457976, 0.007405402138829231, -0.049212027341127396, -0.015961937606334686, -0.04418447986245155, 0.027103865519165993, -0.003256404772400856, 0.036940377205610275, -0.025226451456546783, -0.024945134297013283, 0.009390429593622684, 0.005619344301521778, -0.010945843532681465, 0.05122867226600647, 0.03185172751545906, -0.033292125910520554, 0.02117438241839409, -0.0037080019246786833, -0.034418851137161255, -0.018501730635762215, 0.035079728811979294, 0.019181858748197556, -0.002096668817102909, -0.0486595444381237, -0.030180342495441437, 0.006150760687887669, -0.042509082704782486, 0.021500928327441216, -0.014429576694965363, -0.001988884760066867, -0.0020182004664093256, -0.009666557423770428, 0.0014132421929389238, 0.048851583153009415, -0.022594496607780457, 0.03884483128786087, 0.00030241868807934225, 0.009510564617812634, 0.02230406552553177, 0.023521127179265022, 0.005954092834144831, 0.011481155641376972, 0.023294026032090187, -0.04079397767782211, 0.017644397914409637, 0.004314574413001537, -0.00813081581145525, 0.01633874885737896, -0.03488763049244881, -0.023764245212078094, -0.047380078583955765, -0.015374064445495605, -0.016438232734799385, 0.047981999814510345, 0.02737301029264927, 0.016035353764891624, 0.020915301516652107, -0.06327951699495316, -0.018785487860441208, 0.029307199642062187, -0.04667108505964279, -0.045080672949552536, 0.0555514432489872, -0.0013357154093682766, -0.0008027971489354968, -0.016344621777534485, -0.04940756410360336, 0.0014294306747615337, 0.008409573696553707, -0.029413023963570595, -0.013310822658240795, 0.023772360756993294, -0.001441264757886529, 0.011348049156367779, -0.01800473965704441, -0.025801965966820717, 0.02146153151988983, 0.055091727524995804, -0.03954119235277176, -0.04923387989401817, 0.00804837141185999, 0.02648727409541607, 0.036919232457876205, 0.033617567270994186, -0.013079725205898285, -0.014877192676067352, -0.01279832050204277, 0.026036953553557396, 0.02298279106616974, -0.017760956659913063, -0.02373167872428894, 0.015455799177289009, -0.028985803946852684, 0.02702573500573635, -0.06048239767551422, -0.006448911502957344, 0.01861797645688057, -0.04307282343506813, -0.03314819559454918, 0.029528813436627388, 0.047810811549425125, -0.006256746593862772, 0.0490771122276783, 0.013921002857387066, 0.04596734046936035, 0.021897723898291588, -0.0209258571267128, -0.01635097898542881, 0.06593427807092667, 0.03922589123249054, 0.053771186619997025, -0.0011399132199585438, 0.001012767432257533, 0.048912160098552704, 0.021102508530020714, 0.00038955247146077454, 0.05970561131834984, 0.04729359969496727, -0.021104564890265465, 0.0022613410837948322, -0.039326563477516174, -0.011191274970769882, 0.020899612456560135, 0.008445384912192822, -0.000057212895626435056, -0.044362906366586685, -0.010411660186946392, -0.019510360434651375, -0.016516780480742455, 0.04163315147161484, -0.0020055200438946486, 0.004687282256782055, 0.00895057711750269, -0.008566506206989288, 0.009331227280199528, 0.02356097847223282, 0.009665612131357193, -0.008473267778754234, 0.041769303381443024, 0.013642574660480022, 0.02246294915676117, 0.01249000895768404, 0.04395713657140732, 0.026635557413101196, -0.011564710177481174, 0.0025866536889225245, 0.016973111778497696, 0.005960133858025074, -0.034288063645362854, 0.007981461472809315, -0.027078794315457344, 0.020849134773015976, -0.007369403727352619, 0.004210242070257664, 0.0314292274415493, -0.012841981835663319, -0.02640247717499733, -0.032396797090768814, 0.02447020821273327, -0.02482985332608223, -0.01004534400999546, 0.04057697579264641, -0.008290315046906471, -0.030603880062699318, 0.03388514369726181, -0.0018162478227168322, 0.03212979808449745, 0.010623907670378685, 0.04015316814184189, 0.018251841887831688, 0.0332469679415226, 0.05344179645180702, -0.0017879691440612078, -0.015066801570355892, 0.02371714822947979, 0.018674887716770172, -0.03427911549806595, -0.010786628350615501, -0.04334611818194389, -0.0018996333237737417, -0.023042630404233932, -0.02601504512131214, -0.020445972681045532, 0.03611627593636513, -0.011598319746553898, -0.04801443591713905, -0.008877506479620934, 0.026639927178621292, -0.06725920736789703, 0.019681869074702263, 0.019509362056851387, 0.020267358049750328, -0.008640768937766552, -0.04368970915675163, -0.03840978443622589, -0.05649520456790924, 0.011484073475003242, -0.04925445839762688, 0.0597720593214035, 0.0007145370473153889, -0.03898271918296814, -0.03400294855237007, -0.02149629406630993, -0.025868650525808334, -0.009586986154317856, -0.022624563425779343, -0.028642473742365837, 0.03511223569512367, 0.019185544922947884, 0.0012444823514670134, -0.003552245907485485, -0.029506629332900047, -0.02446957677602768, 0.039892446249723434, 0.04803214222192764, -0.0026093358173966408, 0.053148820996284485, 0.0463230162858963, -0.014049711637198925, 0.00752648152410984, -0.045069120824337006, 0.009772859513759613, -0.03840157389640808, -0.03555844724178314, -0.014664423651993275, -0.008110684342682362, -0.019827431067824364, -0.03980710729956627, 0.00939678493887186, 0.04398980736732483, 0.003917397931218147, -0.016861943528056145, -0.06069592759013176, 0.017305748537182808, -0.05231165885925293, -0.0037602982483804226, -0.04470287263393402, 0.018371762707829475, 0.007977377623319626, -0.017516743391752243, 0.015041305683553219, -0.04533777013421059, 0.13799883425235748, 0.04527284577488899, 0.027715733274817467, 0.02061036229133606, 0.040352433919906616, 0.07484779506921768, 0.013693505898118019, 0.007913040928542614, 0.03846355900168419, -0.03435133770108223, 0.02269984595477581, -0.02345975674688816, 0.019581880420446396, -0.004810829646885395, 0.009337437339127064, 0.06506534665822983, -0.03800575062632561, 0.01623402163386345, 0.043846528977155685, -0.04183681309223175, -0.07556834816932678, 0.03144491836428642, 0.006809336133301258, 0.0423673540353775, 0.0025585906114429235, -0.00943234283477068, 0.03444518893957138, -0.05895821005105972, -0.021066291257739067, -0.013012295588850975, 0.01360330916941166, -0.03216470032930374, 0.027156544849276543, -0.009892813861370087, -0.0037005310878157616, 0.04030025005340576, 0.04233521595597267, 0.0005213244585320354, 0.022396553307771683, -0.0077298469841480255, -0.011240597814321518, -0.01983857899904251, 0.03351224586367607, -0.01940781995654106, 0.011941752396523952, 0.028097234666347504, -0.03682298958301544, -0.002348490757867694, 0.030446937307715416, -0.036675091832876205, 0.05825909227132797, -0.029160989448428154, 0.030609294772148132, -0.05006543546915054, -0.022541522979736328, -0.005798255559056997, -0.012427449226379395, -0.043736573308706284, -0.017595656216144562, -0.03084682673215866, 0.028248289600014687, 0.012760079465806484, -0.020718669518828392, 0.041983023285865784, -0.041050203144550323, -0.00613364577293396, 0.05330991744995117, 0.005236189346760511, 0.022602315992116928, -0.038182567805051804, -0.008093366399407387, -0.005365266930311918, -0.006930131930857897, -0.02762945368885994, 0.029115473851561546, 0.03299534693360329, -0.057704728096723557, 0.05712426081299782, 0.004480904899537563, -0.055043723434209824, -0.01367950439453125, -0.05153203010559082, 0.009518596343696117, -0.025206156075000763, 0.04413428157567978, 0.020115181803703308, -0.05473470315337181, -0.037085793912410736, -0.021913418546319008, 0.03203801065683365, 0.042095303535461426, 0.031590335071086884, -0.011334803886711597, -0.012158215045928955, -0.0119359465315938 ]
A responsive website design ensures that customers looking at the site on their phones or tablets get the same user experience a desktop gets. SEO work on the JEL Concrete Plants website includes meta titles, titles tags and alt titles--all done to improve the website's rankings in search engines like Google and Bing. iNET copywriters had to fill the new JEL website with brand new content. The writing on each page was designed to maximize keyword search potential. On the Home page a video shows precast and ready mix batch plants in action. The video elements of the site add to the overall brand design. The website includes a custom programmed ROI calculator to help potential customers determine how long it will take for an equipment purchase to pay off. JEL Concrete Plants specializes in affordably priced, US-made ready mix, precast and central mix concrete plants. They also provide equipment for bulk material handling, storage and conveying, as well as control systems for concrete plants. JEL had a bare-bones website before coming to Inet. Realizing their website looked amateurish and was doing nothing to bring in new leads, they realized they needed a complete redo. After interviewing several Milwaukee web development firms, they hired iNET Web. The new JEL Concrete Plants website positions them as a serious contender for any concrete plant's business. With a clean, modern look and a compelling story to tell about their custom build capabilities, the new website began bringing them qualified leads within just a month of going live. For the best mix of web marketing strategies, contact iNET Web.
[ -0.03671363741159439, 0.011906847357749939, -0.03485775738954544, -0.0038474570028483868, -0.01408842671662569, 0.02273569256067276, -0.0032008581329137087, 0.016000593081116676, 0.045936468988657, 0.012403045780956745, 0.034953754395246506, 0.014453381299972534, 0.01982148364186287, -0.03356748819351196, 0.019876495003700256, 0.0028457818552851677, -0.025534849613904953, -0.004544534254819155, -0.01913214474916458, 0.013838388957083225, 0.006755000911653042, 0.0396759994328022, -0.04211711883544922, -0.06278541684150696, -0.04099081829190254, 0.042845383286476135, -0.013559983111917973, -0.025737836956977844, 0.06401039659976959, 0.05710485950112343, -0.020212197676301003, -0.04246652126312256, 0.02784527838230133, -0.0494246631860733, -0.05511154606938362, -0.03688611090183258, 0.014103751629590988, -0.03868291527032852, -0.04156508296728134, -0.04618321731686592, 0.01693619228899479, -0.026439014822244644, -0.006752229295670986, -0.03929513692855835, -0.03727218881249428, 0.005098722875118256, -0.0021698412019759417, -0.029627490788698196, 0.041384462267160416, -0.021914858371019363, 0.022581730037927628, 0.0227179117500782, -0.000528841745108366, 0.000013787616808258463, 0.014824430458247662, 0.02057456225156784, 0.0002608823706395924, -0.004133442882448435, -0.04944589361548424, 0.05966680496931076, 0.027501177042722702, -0.013120035640895367, 0.03430840000510216, -0.05457336828112602, 0.019611096009612083, 0.031237689778208733, 0.01528449822217226, -0.03067120350897312, 0.02300454117357731, -0.019154734909534454, -0.027101250365376472, 0.016103927046060562, -0.02427772991359234, -0.006767452694475651, 0.01907952129840851, 0.01054768543690443, -0.011002757586538792, 0.008167671039700508, 0.0024787718430161476, 0.009751953184604645, 0.029676204547286034, 0.04680635780096054, 0.004585939925163984, -0.007482281886041164, -0.0723828375339508, -0.0018232375150546432, -0.009797316044569016, 0.01669660583138466, 0.013607831671833992, 0.028643205761909485, 0.0004139765806030482, 0.06111125648021698, -0.005670024547725916, -0.007443857844918966, 0.025216570124030113, 0.043896645307540894, -0.02800608240067959, 0.029222603887319565, -0.014060856774449348, -0.006963811349123716, 0.03935478255152702, 0.0489049106836319, 0.01089005172252655, 0.05732230469584465, -0.06373406201601028, -0.00118852942250669, 0.0064727733843028545, -0.022565485909581184, -0.003085504285991192, -0.019435042515397072, 0.0037567350082099438, -0.02949441969394684, 0.02006072737276554, -0.011293482966721058, -0.010670212097465992, 0.03308721259236336, 0.011193845421075821, 0.041831351816654205, -0.05790795013308525, 0.02415909431874752, 0.022386370226740837, -0.003530477872118354, 0.01130505558103323, -0.023731643334031105, 0.01057783979922533, -0.02858317829668522, -0.006222306750714779, 0.05119195953011513, -0.011010794900357723, -0.026604263111948967, -0.007731589023023844, -0.04585781693458557, -0.01613321527838707, 0.03608432784676552, 0.01039009541273117, 0.034147944301366806, 0.01486496813595295, 0.02875075675547123, 0.016180964186787605, -0.04002603143453598, 0.0107957124710083, 0.028387153521180153, 0.001891588675789535, 0.08130813390016556, 0.014841809868812561, 0.048229265958070755, 0.005497566889971495, 0.01181176770478487, -0.04898768663406372, 0.03538719564676285, -0.022661378607153893, 0.0024602413177490234, 0.006905545946210623, 0.03445432335138321, 0.004846333526074886, 0.00875136163085699, 0.0022207468282431364, 0.02494722045958042, 0.010210621170699596, 0.03463772311806679, -0.013624961487948895, 0.031165819615125656, 0.0028837586287409067, 0.03087012656033039, -0.020654696971178055, 0.033348165452480316, -0.04506734386086464, 0.00046319086686708033, -0.029995067045092583, -0.023572634905576706, 0.005832555238157511, -0.008080105297267437, -0.00452439533546567, 0.000318247388349846, 0.003970467485487461, 0.04103292152285576, 0.04738258942961693, 0.01729670912027359, 0.038709983229637146, 0.05286107584834099, -0.03575475886464119, -0.014617507345974445, 0.03129364922642708, 0.07134626805782318, 0.00497635081410408, -0.02230416238307953, 0.01698029413819313, -0.019421624019742012, -0.015397075563669205, -0.017962658777832985, 0.019072476774454117, 0.04127734154462814, -0.044154733419418335, 0.020975332707166672, -0.004725336562842131, 0.027635561302304268, -0.009542643092572689, -0.01331996638327837, 0.011179233901202679, -0.08133627474308014, -0.03137460723519325, 0.00889173336327076, -0.03184992074966431, -0.007315787486732006, 0.009161754511296749, -0.01571074314415455, 0.0020526584703475237, 0.0717603862285614, -0.06979231536388397, -0.01559978723526001, 0.04758584871888161, 0.023457610979676247, -0.024345561861991882, -0.0021142512559890747, 0.02378307841718197, 0.0016891242703422904, -0.0431097075343132, 0.05464228242635727, 0.016133558005094528, -0.007106976117938757, 0.024489207193255424, 0.019958393648266792, 0.043835148215293884, 0.03340315446257591, -0.0032672870438545942, 0.031556494534015656, -0.019848186522722244, 0.04627092555165291, -0.013804861344397068, -0.02267957292497158, -0.0107815470546484, 0.03012256696820259, 0.02124781347811222, 0.0729476660490036, 0.030254419893026352, 0.014211990870535374, 0.0417182520031929, 0.05014069005846977, -0.00991061795502901, 0.031796373426914215, 0.02128339186310768, 0.009348172694444656, 0.02634928934276104, 0.018997948616743088, -0.007701965048909187, 0.024803882464766502, -0.014627158641815186, 0.027399679645895958, -0.04379761591553688, 0.005014870315790176, -0.0004946988192386925, 0.03844162076711655, 0.05315916985273361, 0.031696006655693054, -0.03636034578084946, 0.007432366255670786, 0.03936268016695976, 0.04442744329571724, -0.02969900704920292, 0.01801212690770626, 0.012599275447428226, 0.05454271659255028, -0.0190722718834877, 0.01280373428016901, 0.03093520924448967, -0.00047642862773500383, -0.025350237265229225, 0.037805140018463135, -0.03606231510639191, -0.05087781697511673, -0.060116514563560486, -0.060855697840452194, -0.061499785631895065, -0.02683934010565281, -0.04837542027235031, -0.022424792870879173, 0.03353509679436684, -0.008699783124029636, 0.041571080684661865, 0.006918090395629406, -0.03193275257945061, -0.01612043008208275, -0.04110907390713692, 0.021998850628733635, 0.03473757579922676, 0.05536945164203644, -0.030387334525585175, 0.028586523607373238, -0.023658165708184242, 0.03727143630385399, -0.018898703157901764, 0.006919741164892912, 0.009563419967889786, -0.030392341315746307, 0.01796175353229046, 0.0025264029391109943, -0.02156768925487995, 0.023899434134364128, -0.07950780540704727, -0.043161775916814804, -0.001785680535249412, 0.0025573945604264736, 0.0012200807686895132, -0.012785582803189754, -0.049009744077920914, 0.047812268137931824, 0.011623821221292019, -0.036656156182289124, 0.041027020663022995, 0.049160946160554886, -0.02879379130899906, 0.03568671643733978, 0.016014961525797844, 0.0030306167900562286, -0.056228697299957275, 0.047221072018146515, 0.048851002007722855, 0.019075479358434677, -0.00493610929697752, -0.04105571657419205, -0.006537696346640587, 0.01981116645038128, 0.026710301637649536, -0.006343498360365629, -0.015824032947421074, 0.03791467845439911, 0.013035256415605545, -0.08381805568933487, 0.012113271281123161, -0.03353226184844971, -0.05093161389231682, -0.029741056263446808, -0.032187413424253464, -0.0024113396648317575, 0.017528653144836426, 0.02445930615067482, 0.03868655115365982, 0.0035319882445037365, 0.0006745585706084967, 0.03581836819648743, 0.05361910164356232, -0.002981953090056777, 0.011224588379263878, 0.06453645974397659, 0.0043205213733017445, 0.027361204847693443, 0.02232726477086544, -0.017791641876101494, 0.01556891854852438, 0.0007059352938085794, 0.002956992946565151, -0.011150810867547989, 0.024480074644088745, 0.0031208398286253214, 0.004601279739290476, 0.025470087304711342, -0.048352982848882675, -0.009728924371302128, 0.039335981011390686, 0.011861762031912804, 0.06551623344421387, 0.010350016877055168, 0.025844188407063484, -0.03551820293068886, -0.05486895516514778, -0.04849264398217201, 0.03409687429666519, 0.04060417413711548, 0.05836424604058266, -0.07078976184129715, 0.04792702570557594, 0.005052938126027584, -0.039550505578517914, 0.06269793957471848, -0.03347470983862877, -0.05744555592536926, 0.048780657351017, -0.02050112374126911, 0.03168625012040138, -0.048844579607248306, 0.01680091582238674, -0.018719863146543503, 0.018353760242462158, 0.056998249143362045, -0.004387698136270046, 0.04656628891825676, 0.019353503361344337, -0.023619314655661583, -0.013656512834131718, 0.0032524981070309877, -0.0158651452511549, -0.023831086233258247, 0.01675998605787754, -0.0009158864850178361, -0.04799266159534454, -0.05771946907043457, 0.02227415330708027, 0.028728032484650612, 0.04584231600165367, -0.015728885307908058, 0.03270907327532768, 0.013475647196173668, 0.024672864004969597, 0.023428888991475105, -0.007677710149437189, 0.010219126008450985, -0.049046024680137634, 0.025283563882112503, 0.03486490994691849, -0.016758931800723076, -0.03421761468052864, -0.03004780039191246, -0.021403493359684944, 0.0333600752055645, -0.007610126864165068, -0.03379528596997261, -0.012129363603889942, 0.003572969464585185, -0.012142188847064972, 0.05911736190319061, -0.06030867621302605, -0.025345267727971077, -0.031161220744252205, 0.07247957587242126, 0.030488550662994385, -0.04802869260311127, -0.028725964948534966, -0.02108314260840416, 0.03747619315981865, 0.040918927639722824, -0.013931440189480782, -0.03358927741646767, -0.004327745176851749, -0.05192278325557709, -0.009997298009693623, 0.024709831923246384, 0.042079344391822815, -0.017351359128952026, -0.003893136279657483, -0.04062049090862274, 0.0085059255361557, 0.020536061376333237, -0.01751108281314373, 0.00941093172878027, -0.0009903023019433022, 0.016510235145688057, -0.003417175030335784, 0.028946418315172195, 0.006842018570750952, 0.004023038316518068, -0.008499708957970142, -0.05468181520700455, 0.0350993275642395, 0.0032488026190549135, 0.00868426077067852, -0.008818026632070541, 0.014286409132182598, 0.004509703256189823, 0.06410600244998932, -0.018840765580534935, 0.009886689484119415, 0.006199181079864502, 0.016514260321855545, -0.05377929285168648, -0.032582394778728485, 0.028040653094649315, 0.015924710780382156, -0.02542952261865139, 0.04232562705874443, 0.014518640004098415, -0.021332595497369766, 0.02841375395655632, 0.02343977428972721, -0.03708508238196373, 0.04988027736544609, -0.02670196443796158, 0.02316831611096859, 0.0027893451042473316, -0.05454609543085098, -0.000650299247354269, -0.02833026833832264, 0.008534915745258331, 0.004127624444663525, -0.05232304707169533, -0.031604308634996414, -0.04807663336396217, 0.01135566271841526, 0.021777905523777008, -0.03662564605474472, 0.020328540354967117, 0.013985269702970982, -0.01964525505900383, 0.012264234945178032, -0.04467920586466789, -0.0022063711658120155, 0.004125902894884348, -0.008034930564463139, -0.002389980014413595, 0.006453691516071558, 0.006837657652795315, 0.023094628006219864, -0.0390869677066803, -0.06291918456554413, -0.02167424000799656, -0.025871627032756805, -0.014368046075105667, -0.056057386100292206, 0.03350043296813965, -0.023982953280210495, 0.03883352875709534, -0.025442082434892654, 0.019504278898239136, -0.0181623175740242, 0.02257433719933033, 0.01227110531181097, -0.004452718887478113, -0.001717833918519318, -0.0045059616677463055, -0.02563313953578472, 0.02851015329360962, 0.00707751139998436, -0.039981909096241, -0.03345053270459175, 0.04252294450998306, -0.014856711961328983, 0.06804783642292023, 0.0025433816481381655, -0.006529651582241058, -0.04679926857352257, -0.0695909932255745, 0.009950630366802216, -0.032604072242975235, -0.04525032639503479, -0.029367392882704735, -0.04232323169708252, -0.030295105651021004, 0.024186449125409126, 0.01859143190085888, -0.013002750463783741, -0.004056889098137617, -0.039766330271959305, -0.0046549635007977486, -0.03825100511312485, -0.029685210436582565, -0.019990505650639534, -0.022796671837568283, -0.026186376810073853, 0.036604590713977814, 0.031200803816318512, 0.014260608702898026, -0.029999172315001488, 0.02205120585858822, 0.03199132904410362, 0.030011318624019623, -0.064533531665802, -0.04593746364116669, -0.010840692557394505, -0.04356522858142853, 0.01555376686155796, 0.012136236764490604, -0.03739800676703453, 0.05742523446679115, -0.0341956689953804, 0.024195782840251923, -0.011423241347074509, -0.020611263811588287, -0.041200216859579086, -0.00964808277785778, 0.02835030108690262, -0.004003569483757019, 0.000028003983970847912, -0.004170773085206747, 0.04217131435871124, 0.03238664194941521, -0.0147921834141016, -0.020339012145996094, -0.04442108795046806, -0.04204804450273514, -0.043861016631126404, 0.00012469706416595727, -0.05234647914767265, -0.011015386320650578, -0.06380166858434677, -0.00399295799434185, 0.029280541464686394, 0.007355076726526022, 0.03259258344769478, 0.05150681361556053, -0.010824288241565228, 0.012027132324874401, -0.04590511694550514, 0.002175475936383009, 0.03760533407330513, -0.020481346175074577, -0.00943317823112011, 0.0036592327523976564, -0.011134790256619453, 0.002178110647946596, -0.03587080538272858, -0.055234216153621674, -0.03482060506939888, 0.0038098532240837812, 0.0476289838552475, -0.0412355400621891, 0.013050323352217674, -0.01948167011141777, -0.050359684973955154, -0.0438937246799469, 0.0379234217107296, -0.0067154401913285255, 0.00472590047866106, 0.0342397503554821, -0.004922970198094845, 0.0029790697153657675, 0.024413948878645897, 0.012700404971837997, 0.02260397933423519, -0.051252953708171844, 0.0743938460946083, 0.008104573003947735, -0.04863016679883003, 0.032901737838983536, 0.06459793448448181, -0.040566470474004745, -0.03551315516233444, 0.01994157023727894, 0.00929668452590704, 0.005913910921663046, -0.06294163316488266, 0.024760279804468155, -0.02091951109468937, 0.02325187623500824, -0.02183949388563633, 0.014076967723667622, -0.028510408475995064, 0.020131580531597137, 0.013094861060380936, 0.01685492880642414, -0.0536143034696579, -0.010996443219482899, 0.025942735373973846, 0.007281926926225424, -0.032189708203077316, -0.03783212602138519, -0.013748213648796082, 0.02388872765004635, 0.011039761826395988, 0.08294004201889038, 0.0019137831404805183, 0.03315511718392372, 0.022838879376649857, -0.004210439044982195, 0.051995281130075455, 0.006588603835552931, -0.013563718646764755, 0.013670303858816624, -0.04406430944800377, -0.053266171365976334, -0.033243149518966675, 0.02637248858809471, 0.004307698458433151, 0.023295314982533455, -0.0573694184422493, 0.01632063090801239, 0.01910698413848877, 0.0024937577545642853, -0.009668683633208275, -0.04980817809700966, -0.030469797551631927, -0.049986496567726135, -0.04011884704232216, -0.005880017299205065, -0.01611439138650894, -0.015131304040551186, 0.012827878817915916, -0.0008162615122273564, -0.041101887822151184, -0.004703163634985685, 0.008398210629820824, 0.010263265110552311, 0.006392763461917639, -0.017596876248717308, 0.018710194155573845, -0.01893978752195835, -0.040716104209423065, -0.04772534593939781, 0.014814794063568115, -0.01624184101819992, -0.008161147125065327, -0.014068699441850185, -0.006871831603348255, -0.001010568579658866, 0.011985871009528637, 0.00006131076224846765, 0.007918293587863445, -0.012621315196156502, -0.05569770932197571, -0.005018711090087891, 0.012987406924366951, -0.03178227320313454, 0.023559045046567917, 0.04851733148097992, -0.006449434440582991, 0.009253846481442451, 0.011111598461866379, -0.018260177224874496, -0.01752334274351597, -0.010994143784046173, 0.0166926272213459, 0.01943872682750225, -0.013515468686819077, -0.020211616531014442, -0.002278682542964816, -0.0421784333884716, 0.007135809399187565, 0.03291885927319527, -0.0033564819023013115, -0.019685430452227592, -0.011914483271539211, -0.003945551812648773, 0.07328475266695023, -0.011469783261418343, 0.006945364642888308, 0.024152956902980804, 0.02430746518075466, 0.025723081082105637, -0.014039508998394012, 0.03777043893933296, 0.0028886960353702307, 0.004471064545214176, -0.045024264603853226, 0.023308465257287025, 0.02082822658121586, -0.01401241309940815, 0.04369327425956726, -0.018142372369766235, -0.027081623673439026, -0.058703187853097916, -0.025059595704078674, 0.016243401914834976, 0.05679328367114067, -0.02830485813319683, -0.021688012406229973, 0.03190671652555466, -0.038764361292123795, -0.026887288317084312, 0.030330263078212738, -0.049891985952854156, -0.036556754261255264, 0.04532218724489212, -0.002097461372613907, -0.014563118107616901, -0.009267989546060562, -0.03235212340950966, -0.013548609800636768, -0.024733440950512886, -0.01323580089956522, -0.0372483916580677, 0.021516699343919754, -0.013787858188152313, 0.021380551159381866, -0.0037696927320212126, -0.004207872319966555, 0.028817497193813324, 0.04226163029670715, -0.05172029137611389, -0.030482517555356026, 0.0054616136476397514, -0.011560146696865559, 0.019417766481637955, -0.03099643811583519, 0.0018131143879145384, 0.006390169262886047, 0.00480571249499917, 0.013491308316588402, 0.0032386432867497206, 0.007724826689809561, -0.017677323892712593, 0.025488989427685738, -0.012825670652091503, -0.016322923824191093, -0.027527445927262306, 0.05897974222898483, 0.0037955353036522865, -0.019800063222646713, -0.023432675749063492, 0.042162079364061356, 0.05214698985219002, -0.030221251770853996, 0.03334036469459534, 0.0031567413825541735, 0.022189868614077568, -0.012913715094327927, -0.006063278764486313, 0.0010313239181414247, 0.044494371861219406, 0.05626461282372475, 0.0601947158575058, 0.02153686247766018, 0.018171560019254684, 0.026115180924534798, -0.0016784556210041046, -0.0001962796231964603, 0.02413107082247734, 0.0048204101622104645, -0.02440688945353031, -0.026144593954086304, -0.0440552718937397, 0.01576404646039009, -0.008553577587008476, -0.0006387365865521133, -0.010634595528244972, -0.03744509443640709, -0.030531231313943863, -0.014535763300955296, -0.03336399048566818, 0.042167916893959045, -0.015792695805430412, -0.003246924839913845, -0.00957680493593216, -0.02497922256588936, 0.0033509153872728348, 0.037764497101306915, -0.015282995067536831, 0.02064606361091137, 0.015806997194886208, 0.02250593900680542, -0.021483952179551125, 0.05070872604846954, 0.021985705941915512, 0.017978886142373085, -0.03758127614855766, 0.028410932049155235, -0.015330199152231216, -0.003438753541558981, -0.02990916557610035, -0.0033818392548710108, -0.008175457827746868, 0.04450491815805435, -0.02420511469244957, -0.03213360533118248, 0.06315471976995468, -0.041252199560403824, -0.042697541415691376, -0.04242212325334549, 0.0500359982252121, -0.05533086508512497, -0.008243176154792309, 0.035905707627534866, 0.014802535064518452, -0.04522457718849182, 0.02847233973443508, 0.006733596790581942, 0.027600249275565147, 0.01464387308806181, 0.06923870742321014, 0.012844608165323734, 0.04268774390220642, 0.024547073990106583, -0.028157543390989304, 0.014768282882869244, 0.024429801851511, 0.00806708075106144, -0.018813397735357285, -0.03718467056751251, -0.05645671859383583, -0.026538239791989326, -0.011161119677126408, -0.04217785596847534, -0.0006449919892475009, 0.04304458945989609, 0.01355812419205904, -0.04042033106088638, -0.01355692557990551, 0.04282689467072487, -0.041352443397045135, -0.020002232864499092, 0.024188529700040817, 0.06543350219726562, -0.010198511183261871, -0.006419654004275799, -0.011923098936676979, -0.0012502791360020638, -0.014516808092594147, -0.05595426633954048, 0.010379618965089321, -0.003158268751576543, -0.045717690140008926, -0.027863185852766037, -0.01912790536880493, -0.01836049184203148, 0.0012379706604406238, -0.03253091499209404, -0.06063256785273552, 0.0569557286798954, 0.010900928638875484, 0.05508008226752281, 0.00014905305579304695, -0.025062788277864456, -0.00959738064557314, 0.018314575776457787, 0.0483674518764019, 0.011262604966759682, 0.08050443977117538, 0.06266960501670837, -0.010754967108368874, 0.004036278929561377, -0.026007601991295815, 0.03098485991358757, -0.01855870895087719, -0.04855972155928612, -0.02059895731508732, 0.011627024039626122, -0.0072192661464214325, -0.0543084479868412, 0.035889387130737305, 0.038528941571712494, 0.005011672619730234, -0.02523411251604557, -0.03367599472403526, -0.0062017422169446945, -0.03612065315246582, -0.0229645948857069, -0.034546732902526855, 0.020908035337924957, 0.01238267496228218, -0.008467381820082664, 0.010813632979989052, -0.05760657787322998, 0.16319862008094788, 0.06196871027350426, 0.01128430012613535, 0.023734290152788162, -0.0022152692545205355, 0.030081693083047867, 0.04898400604724884, -0.017618130892515182, -0.009997147135436535, -0.05255431309342384, 0.02304254285991192, -0.030952587723731995, 0.018129387870430946, 0.008725454099476337, 0.01574539951980114, 0.04254927486181259, -0.026021473109722137, 0.022732192650437355, 0.007058530114591122, -0.06269670277833939, -0.0442008450627327, 0.007065128069370985, -0.017779946327209473, 0.010790785774588585, 0.0002980466524604708, 0.014060184359550476, 0.00782058946788311, -0.04994530230760574, 0.0006994804134592414, -0.015254832804203033, 0.010439769364893436, -0.05587153136730194, 0.04357725381851196, -0.027733132243156433, -0.05537695810198784, 0.03958218917250633, -0.04106242582201958, -0.00003084764466620982, -0.02490546554327011, 0.05185873806476593, -0.038469135761260986, 0.01048585120588541, 0.03808910399675369, -0.037639420479536057, 0.004820826929062605, 0.047771990299224854, -0.016978759318590164, 0.0047559249214828014, 0.018725844100117683, -0.030299540609121323, 0.053309857845306396, -0.04251093044877052, 0.04097728803753853, 0.01958904229104519, -0.038640376180410385, 0.013017513789236546, -0.0022153176832944155, -0.01981530152261257, -0.011932125315070152, 0.023905636742711067, 0.025706186890602112, 0.024567091837525368, -0.025070734322071075, 0.01127278059720993, -0.03201457858085632, -0.01465035043656826, 0.03010813146829605, 0.013603407889604568, 0.003710332792252302, -0.014296825975179672, 0.001799434539861977, -0.010067530907690525, -0.0002350741851842031, -0.030135009437799454, 0.021009191870689392, 0.034365661442279816, 0.004555694758892059, 0.04380500316619873, 0.034608885645866394, -0.03387995809316635, -0.029873039573431015, -0.0334286093711853, -0.009886467829346657, -0.039774972945451736, 0.018058335408568382, 0.047107335180044174, -0.039941489696502686, -0.04245203733444214, -0.013839037157595158, 0.06862584501504898, 0.022627685219049454, 0.028684278950095177, 0.00937561597675085, -0.005990060046315193, -0.009121031500399113 ]
Purchased an African necklace, bracelet, and earring set from Donna. Absolutely fabulous!! Donna and her husband are lovely to work with and most attentive to assure customer satisfaction. Will definitely be purchasing other items in the very near future! Just left this store! Best shopping experience EVER! The owners are very warm and welcoming! And very knowledgeable on products for our hair and skin! Can't wait to use the products!!! Thank you so much for what you are doing for our people. Nice selection of all natural products for locs and they have loc jewelry. Very nice handmade jewelry collection. I'll be going to this hair store from now on. I had a wonderful experience in the store. Ms Donna is very knowledgeable women. I purchase some excellent products. Can't wait for the web site to be up.. Transitioning from shaved head to locs, so bought a wig for the interim. The owner was extremely helpful!! She helped me pick the wig and cut it for me. Very nice place. I had a wonderful experience with Mrs. Donna learning about natural hair and how to care for it!!! She knows here stuff!!! Go check her out you won't be sorry! It is extremely refreshing to have a new black-owned business in Trenton which offers quality products and exemplary customer service. I was greeted when I walked in. Both of the owners were very pleasant. I'll be back! Owned by a very knowledgeable husband and wife team! I loved how they knew about the products that they carry and they even have feature shelves for others who have natural hair and skin care products. I will give them my future business and I will encourage my friends and family to do the same!
[ -0.003956234082579613, 0.0012893861858174205, -0.01634930819272995, 0.010507677681744099, -0.04880327731370926, 0.005582037847489119, 0.0312285628169775, 0.042761001735925674, 0.02046721801161766, 0.01033758744597435, 0.045911140739917755, -0.001664940151385963, -0.005335516761988401, -0.036570146679878235, -0.003784541506320238, -0.0047788661904633045, -0.021040571853518486, -0.04574659839272499, -0.011147337965667248, 0.011019968427717686, -0.004218903835862875, -0.006746252533048391, -0.06202474236488342, -0.004788194317370653, -0.020821407437324524, 0.028295625001192093, 0.024324707686901093, -0.01117829978466034, 0.06156225502490997, 0.07945214956998825, -0.037891265004873276, -0.013477204367518425, 0.054079413414001465, -0.06406687200069427, -0.03063303604722023, -0.011696427129209042, 0.031173914670944214, -0.027481351047754288, -0.044789571315050125, -0.08293142169713974, -0.027143899351358414, -0.007305335719138384, 0.04887675493955612, -0.029962630942463875, -0.04464949667453766, 0.003723839996382594, 0.0023696315474808216, -0.01948002353310585, 0.022377684712409973, -0.04645615443587303, 0.023322828114032745, -0.005526835564523935, 0.01672407239675522, 0.02196141891181469, -0.00573392678052187, 0.00023543721181340516, 0.0029230632353574038, -0.025494957342743874, -0.012650666758418083, 0.04768886789679527, 0.024708649143576622, 0.017903853207826614, 0.04827873781323433, -0.047841429710388184, 0.03694437816739082, 0.03694060444831848, -0.04519141837954521, 0.0077123637311160564, 0.006516736466437578, -0.014192147180438042, 0.004283979535102844, -0.013296611607074738, -0.001954207895323634, -0.029216883704066277, 0.0024596808943897486, 0.005665172357112169, -0.01744406297802925, -0.009603634476661682, -0.012437163852155209, 0.007588129490613937, 0.018491318449378014, 0.03721315413713455, 0.0512227788567543, 0.03332208842039108, -0.056742459535598755, 0.02044154517352581, -0.022568518295884132, -0.0017280869651585817, -0.006507109384983778, 0.001808769884519279, 0.008797270245850086, 0.04462938755750656, 0.011688769795000553, -0.030323106795549393, 0.059765543788671494, 0.03978922218084335, -0.03329028561711311, 0.024122176691889763, 0.0043032499961555, -0.030112717300653458, -0.00034473437699489295, 0.011456225998699665, -0.0050772568210959435, 0.0394572950899601, -0.032782815396785736, 0.0015524601330980659, 0.012215474620461464, -0.011641087010502815, 0.02104199305176735, -0.03696206212043762, -0.00977244507521391, -0.03470679000020027, 0.022687705233693123, 0.0007640834664925933, -0.011377725750207901, 0.070264533162117, 0.010188068263232708, 0.020543856546282768, -0.03480004891753197, 0.0073204743675887585, 0.024271061643958092, 0.037128765136003494, 0.04555394873023033, -0.028225135058164597, 0.033847395330667496, -0.057204440236091614, -0.01531622651964426, 0.03390679508447647, -0.023148559033870697, -0.010930417105555534, -0.001672912621870637, -0.054432425647974014, 0.018505334854125977, 0.012408164329826832, 0.004011140670627356, 0.03980197012424469, -0.012201441451907158, 0.042374465614557266, -0.005641807336360216, -0.056717000901699066, 0.05738401785492897, 0.06162257120013237, -0.00891034584492445, 0.07867731153964996, 0.011729742400348186, 0.047483861446380615, 0.003435038961470127, 0.016786109656095505, -0.05178295075893402, -0.00736223952844739, -0.03369634225964546, 0.01629943959414959, -0.00912780687212944, 0.03531843423843384, 0.022800927981734276, -0.0036262914072722197, -0.0065004946663975716, 0.007242995779961348, 0.004178860690444708, 0.01317406352609396, -0.004139844793826342, -0.008976764045655727, -0.011408786289393902, 0.03366236388683319, -0.03258378058671951, 0.009776275604963303, -0.0006075883866287768, -0.03580503910779953, -0.0186545941978693, -0.02757403627038002, 0.03105277568101883, -0.008615602739155293, -0.013644309714436531, 0.01545203011482954, 0.0007335339905694127, 0.0445682592689991, 0.04625105857849121, 0.0260313767939806, 0.021140718832612038, 0.021476633846759796, -0.015543275512754917, -0.005893414374440908, -0.015995992347598076, 0.044064927846193314, 0.03478528559207916, -0.004394147545099258, 0.03534990921616554, -0.034459713846445084, -0.0376499779522419, -0.02741110697388649, -0.01279906090348959, 0.012572204694151878, -0.04654208943247795, 0.022228451445698738, -0.020079905167222023, 0.046420976519584656, -0.009017444215714931, 0.00614499906077981, -0.017766881734132767, -0.09233536571264267, -0.01952928490936756, 0.0537310466170311, -0.03087768889963627, 0.02386813424527645, 0.01284592691808939, -0.02706773765385151, 0.018408944830298424, 0.042512934654951096, -0.03907858580350876, -0.007959461770951748, -0.00877003837376833, 0.026309244334697723, -0.015039924532175064, -0.024294262751936913, 0.015193287283182144, -0.02732982113957405, -0.02738579921424389, 0.04565475136041641, -0.00944539625197649, 0.004508939106017351, 0.023081205785274506, 0.01765870861709118, 0.023884758353233337, 0.06631264835596085, -0.02378230169415474, -0.01278773695230484, 0.011449286714196205, 0.04686497151851654, -0.0014619072899222374, -0.04923152178525925, -0.025561925023794174, 0.04210036247968674, 0.02048555389046669, 0.04953942075371742, 0.07174207270145416, 0.04261975735425949, 0.04013920575380325, 0.04492378979921341, -0.010850923135876656, 0.015860870480537415, -0.017098844051361084, -0.029559675604104996, 0.039414387196302414, 0.030702641233801842, -0.033840879797935486, 0.026637770235538483, 0.01591729000210762, -0.008508330211043358, -0.026102498173713684, 0.041809357702732086, -0.019762875512242317, 0.06378212571144104, 0.01680334098637104, 0.03790402039885521, -0.03852475434541702, 0.02841237373650074, 0.0570826530456543, 0.041467130184173584, 0.0013694956433027983, 0.020891690626740456, 0.002559348940849304, -0.0017772669671103358, -0.03081098012626171, 0.003155244281515479, 0.043259914964437485, 0.00532106589525938, 0.04159250855445862, 0.025402532890439034, -0.029799889773130417, -0.06342963874340057, -0.04549766331911087, -0.045538775622844696, -0.03703392669558525, -0.03242821991443634, -0.020756827667355537, -0.0002200810849899426, 0.061799775809049606, -0.01798737607896328, 0.05322952941060066, -0.02038259617984295, -0.003382585011422634, -0.031090721487998962, -0.017023634165525436, 0.028946567326784134, 0.021346110850572586, 0.03774673864245415, -0.03726273030042648, 0.018658878281712532, 0.0011284671491011977, 0.03658696636557579, -0.020974978804588318, 0.015130005776882172, -0.025107491761446, -0.007562799379229546, -0.00870139803737402, 0.0025101639330387115, -0.005946684163063765, -0.021416718140244484, -0.06348781287670135, -0.04178747534751892, -0.0021843742579221725, 0.01454339548945427, 0.007448303513228893, -0.006844216957688332, -0.043444156646728516, 0.05338156595826149, 0.04645536467432976, -0.009950868785381317, 0.02422989346086979, 0.05582990497350693, -0.03578690439462662, 0.0414036363363266, 0.02559187263250351, -0.004490994848310947, -0.06055939197540283, 0.03821530193090439, 0.07422444969415665, 0.0341128334403038, -0.023960910737514496, -0.0067978715524077415, -0.03215695172548294, 0.022019285708665848, 0.019533444195985794, -0.007235594093799591, -0.013817685656249523, 0.03515537083148956, 0.002912172582000494, -0.07831989228725433, 0.02205529622733593, -0.06325341016054153, -0.022575803101062775, -0.04933709278702736, -0.032878484576940536, -0.024140354245901108, 0.02075493335723877, 0.03332146629691124, 0.00023726662038825452, -0.029215287417173386, -0.009845653548836708, 0.0041697658598423, 0.04142361134290695, -0.019954683259129524, 0.00991691742092371, 0.057555001229047775, 0.02245294488966465, 0.018154187127947807, 0.014078698121011257, -0.027642617002129555, -0.023322658613324165, 0.004804491996765137, -0.001756931422278285, 0.003094554180279374, 0.03319711983203888, 0.02603304013609886, 0.012933261692523956, 0.07000245898962021, -0.035525087267160416, 0.01372501626610756, 0.020586133003234863, 0.04265370965003967, 0.007204696070402861, 0.031118659302592278, 0.022914154455065727, -0.0060402024537324905, -0.05323665216565132, -0.0386766716837883, 0.009254109114408493, 0.02110838145017624, 0.022940650582313538, -0.054206784814596176, 0.048271000385284424, 0.00222473731264472, -0.015730543062090874, 0.025938907638192177, -0.038226883858442307, -0.0113057317212224, 0.026579463854432106, -0.049025073647499084, 0.05781058967113495, -0.01531790941953659, 0.01876804605126381, -0.013463794253766537, 0.004804557655006647, 0.025442520156502724, -0.04066827520728111, 0.016498377546668053, -0.04226875677704811, -0.013154067099094391, 0.005508177448064089, -0.011709386482834816, -0.013465315103530884, -0.023521853610873222, 0.009621859528124332, 0.006745724938809872, -0.045151904225349426, -0.041091594845056534, 0.017389697954058647, 0.016776015982031822, 0.024157771840691566, -0.01589805819094181, 0.00005954735024715774, 0.031012414023280144, -0.006193859037011862, 0.03193521872162819, -0.05386633053421974, 0.014431937597692013, -0.028035473078489304, 0.0325763113796711, 0.04975956678390503, -0.041918590664863586, -0.04099217429757118, -0.0226878821849823, -0.025491520762443542, 0.03816301375627518, -0.04696786031126976, -0.03964703530073166, -0.039424825459718704, 0.02665076032280922, -0.015952663496136665, 0.034503236413002014, -0.07268540561199188, -0.019340990111231804, -0.006758453324437141, 0.03168085217475891, 0.01676039583981037, -0.05750735476613045, 0.03804711624979973, -0.033817220479249954, 0.05163928493857384, 0.05473943054676056, -0.03273925185203552, -0.033601272851228714, -0.0009559863829053938, -0.014099359512329102, -0.008633480407297611, 0.0018026289762929082, 0.02417772077023983, -0.0014719454338774085, 0.004889363422989845, -0.04502293840050697, 0.021628079935908318, 0.030759640038013458, -0.0403614304959774, 0.003724185051396489, 0.019831877201795578, 0.014005984179675579, -0.0019381861202418804, 0.032945845276117325, 0.023920206353068352, -0.0042012594640254974, 0.025461843237280846, -0.0641876831650734, 0.012267202138900757, -0.009015808813273907, -0.033572372049093246, -0.00041989932651631534, 0.008874309249222279, 0.03829390928149223, 0.04225945100188255, -0.0018675035098567605, 0.025234801694750786, -0.03228926286101341, 0.04456758499145508, -0.021070590242743492, -0.03022913448512554, 0.056994661688804626, 0.038784291595220566, -0.06407886743545532, 0.017135581001639366, 0.045441675931215286, -0.010918023064732552, -0.007508531678467989, 0.013776211999356747, -0.04459994658827782, 0.04412659630179405, -0.03135703131556511, -0.0010670521296560764, -0.031026482582092285, -0.025872191414237022, 0.023063650354743004, -0.037648268043994904, 0.030329430475831032, 0.03548107296228409, -0.01901010051369667, -0.04832511022686958, -0.05627096816897392, -0.028804078698158264, -0.0029795709997415543, -0.01962800696492195, 0.022404469549655914, 0.04420744627714157, -0.033285051584243774, -0.0028518110048025846, -0.019593115895986557, 0.0233655646443367, 0.013750707730650902, -0.008477823808789253, 0.010802354663610458, -0.007467545568943024, -0.011540957726538181, 0.03972344100475311, -0.026681795716285706, 0.0026584570296108723, 0.011248074471950531, -0.009311201982200146, -0.0005766326212324202, -0.07133646309375763, 0.014085754752159119, -0.04865509644150734, -0.010666226968169212, -0.016829129308462143, 0.00584300234913826, -0.005268453620374203, 0.03780777007341385, 0.009776497259736061, 0.0147524643689394, 0.01431930810213089, 0.03694257512688637, -0.02543610706925392, 0.06161124259233475, -0.000579852785449475, -0.03524522855877876, -0.0214561615139246, 0.08511462807655334, -0.0038496782071888447, 0.055710818618535995, -0.023341072723269463, 0.009422293864190578, -0.01709609106183052, -0.06620816141366959, -0.005044037010520697, 0.0037968407850712538, -0.02361026406288147, -0.023267747834324837, -0.028578102588653564, -0.021025091409683228, 0.0500495545566082, -0.01732606440782547, -0.017583610489964485, 0.027870485559105873, -0.04294440895318985, 0.011104635894298553, -0.033814772963523865, -0.02294597215950489, -0.0573977567255497, -0.012671412900090218, -0.006393345072865486, 0.014537328854203224, -0.008388135582208633, 0.02505818009376526, 0.002543344162404537, 0.0040061897598207, 0.00309599912725389, -0.04751554876565933, -0.05123947560787201, -0.006310326978564262, -0.004830912686884403, 0.02700425125658512, -0.007001752965152264, 0.02929585985839367, -0.05085381492972374, 0.03946879506111145, -0.044953737407922745, 0.012197337113320827, -0.0034545527305454016, -0.018799826502799988, 0.014204151928424835, -0.02014990709722042, 0.04344823583960533, -0.009290827438235283, 0.0025994523894041777, -0.008772583678364754, 0.05568811669945717, 0.040349312126636505, 0.005405135918408632, 0.013616746291518211, -0.042693544179201126, -0.04372396692633629, -0.049917757511138916, 0.03170333802700043, -0.026385540142655373, -0.019211510196328163, -0.04949183017015457, -0.020998133346438408, 0.02568674646317959, 0.01275657583028078, 0.034560903906822205, 0.044677723199129105, -0.03419794887304306, -0.00886221881955862, -0.0547347292304039, 0.005876532290130854, 0.02192745730280876, -0.0035750579554587603, -0.002239469438791275, -0.0008874452323652804, -0.044913146644830704, -0.03324161842465401, -0.04874177649617195, -0.03743065148591995, -0.044144827872514725, -0.026235606521368027, 0.07506659626960754, -0.028025927022099495, 0.03818126395344734, -0.010809342376887798, -0.04923026263713837, -0.038913387805223465, 0.04188216105103493, -0.014368897303938866, 0.02942943200469017, 0.04519238695502281, 0.007584081497043371, -0.03283821791410446, -0.00806705467402935, 0.0006616609753109515, -0.013651159591972828, -0.03743256255984306, 0.05490890517830849, 0.02015903778374195, -0.030766325071454048, 0.014996482990682125, 0.020593998953700066, -0.08055482804775238, -0.06857645511627197, 0.035680435597896576, -0.008684598840773106, -0.015169061720371246, -0.02229178324341774, -0.001090524485334754, 0.0145259452983737, 0.022256480529904366, 0.017486758530139923, 0.008167972788214684, -0.031654004007577896, 0.044718772172927856, 0.007845357991755009, 0.02950369380414486, -0.06008635088801384, -0.022133566439151764, 0.024597076699137688, -0.002565298927947879, -0.04028100520372391, -0.015393085777759552, -0.027216317132115364, 0.011083106510341167, -0.013161152601242065, 0.02072555013000965, -0.010117505677044392, 0.02377115935087204, 0.013173915445804596, 0.0006996808224357665, 0.04604564234614372, 0.01762237958610058, -0.022705305367708206, 0.020143771544098854, -0.0308625977486372, -0.01165765430778265, -0.027371147647500038, 0.032745134085416794, -0.012469105422496796, 0.027772532775998116, -0.05708537995815277, -0.011441657319664955, 0.039233606308698654, 0.007992544211447239, -0.002198786474764347, -0.04499083757400513, -0.01528882049024105, -0.0463484562933445, -0.08519092202186584, -0.052053965628147125, -0.008795161731541157, -0.009793599136173725, 0.035657625645399094, 0.013030163943767548, -0.034519121050834656, -0.006665119901299477, 0.010377585887908936, -0.01158200204372406, -0.002516311127692461, -0.011526349931955338, 0.03586950898170471, -0.06744136661291122, -0.05945255607366562, -0.022076822817325592, 0.011823907494544983, -0.009851272217929363, -0.02421049401164055, -0.023965099826455116, -0.003184878034517169, 0.018486639484763145, 0.014821145683526993, -0.0024754665791988373, 0.004002861678600311, -0.02039344795048237, -0.05273685231804848, 0.00922275148332119, 0.017710404470562935, 0.01499295886605978, 0.035868290811777115, 0.036402441561222076, -0.02178780362010002, 0.046008434146642685, 0.02835655026137829, -0.029722338542342186, -0.008892986923456192, -0.0003013864334207028, -0.01721291057765484, 0.002849840559065342, -0.06224685534834862, -0.027301305904984474, -0.0000017077426264222595, -0.03308865800499916, 0.006340896710753441, 0.007121389266103506, -0.01033648382872343, 0.033959321677684784, 0.002940274076536298, -0.02053983137011528, 0.03401065990328789, -0.014389364048838615, 0.003669691737741232, -0.01882762275636196, 0.02158224582672119, 0.018945451825857162, -0.005662551149725914, -0.00044929853174835443, 0.03022349253296852, 0.038031596690416336, -0.012033937498927116, 0.04187377542257309, 0.013839676044881344, -0.028173061087727547, 0.02986438199877739, -0.016112444922327995, -0.01294922549277544, -0.03788157179951668, -0.015056800097227097, -0.015437726862728596, 0.03576464578509331, 0.03060183860361576, -0.02213144674897194, 0.03531891852617264, -0.036782898008823395, -0.04082624241709709, 0.005282439757138491, -0.08178506791591644, -0.02977016195654869, 0.03971321880817413, -0.014084548689424992, 0.018469547852873802, -0.008200015872716904, -0.05717445909976959, 0.017060060054063797, -0.04597471281886101, 0.02552405372262001, -0.0466897077858448, 0.007462227717041969, -0.01560746505856514, 0.024887723848223686, 0.008657949045300484, -0.009625888429582119, -0.0005466311704367399, 0.043887909501791, -0.015639599412679672, -0.05865924060344696, 0.024317536503076553, 0.002764445962384343, 0.03574695810675621, -0.025683622807264328, 0.0164487287402153, 0.003357850480824709, 0.0015637984033674002, -0.0012880642898380756, -0.02450408600270748, 0.01738625019788742, 0.019945936277508736, 0.016408519819378853, -0.0011579927522689104, 0.006571753416210413, -0.007327335420995951, 0.017390374094247818, 0.014572695828974247, -0.0394681952893734, -0.03610431030392647, 0.0412406399846077, 0.02482675202190876, -0.025546353310346603, 0.03711767494678497, 0.026266073808073997, 0.02394094318151474, -0.024872208014130592, -0.006726040039211512, -0.0023653737735003233, 0.05963268131017685, 0.03337448090314865, 0.05035771429538727, -0.0032980821561068296, 0.004607072100043297, 0.04715227335691452, 0.06795743107795715, -0.004582125227898359, 0.03415424004197121, 0.05792449042201042, -0.01258926186710596, -0.01214568316936493, -0.004626511130481958, -0.009115206077694893, 0.031525932252407074, 0.007632271386682987, 0.0012866335455328226, -0.02400312013924122, -0.02461007609963417, 0.0041259415447711945, -0.01724311336874962, 0.03985849395394325, -0.025874407961964607, 0.03119528479874134, 0.002686356892809272, -0.007030246313661337, -0.007770377676934004, 0.03986113518476486, -0.007964490912854671, 0.0031942257191985846, 0.03502211347222328, 0.014779639430344105, -0.014935513958334923, 0.04210837557911873, 0.024229230359196663, -0.005329207517206669, -0.027995310723781586, 0.005324010271579027, 0.023335043340921402, -0.006288769654929638, 0.004073590040206909, 0.00717918248847127, -0.04404086619615555, 0.018122637644410133, -0.024686120450496674, -0.039626508951187134, 0.032327402383089066, -0.03958046808838844, -0.01981380023062229, -0.02335471287369728, 0.030353501439094543, -0.018977811560034752, -0.0213923417031765, 0.026272188872098923, -0.0070161581970751286, -0.031143387779593468, 0.04268306493759155, -0.0038166420999914408, 0.030681099742650986, 0.03567928820848465, 0.02549777366220951, -0.007289727218449116, 0.012575293891131878, 0.03370215743780136, -0.04274003580212593, 0.024292316287755966, 0.03582387790083885, -0.010620650835335255, -0.06139746680855751, -0.015887312591075897, -0.0424247644841671, -0.01288952212780714, 0.0016111638396978378, -0.011176232248544693, 0.0020667884964495897, 0.028901703655719757, -0.00417140731588006, -0.06811700761318207, -0.012317032553255558, 0.05312364175915718, -0.04691998288035393, 0.03288375213742256, 0.008669214323163033, 0.039419300854206085, -0.0074016680009663105, -0.011239324696362019, -0.05237210914492607, -0.00711873359978199, 0.024185996502637863, -0.02749571017920971, 0.008433093316853046, -0.0019060169579461217, -0.008059848099946976, -0.02790909633040428, -0.06026797741651535, -0.013264276087284088, -0.0017165681347250938, -0.045882441103458405, -0.033919647336006165, 0.024735432118177414, 0.045193299651145935, -0.019938986748456955, -0.007353434804826975, -0.053930748254060745, -0.020899470895528793, 0.018434057012200356, 0.07028421759605408, -0.011108134873211384, 0.03152555227279663, 0.03901965543627739, -0.006413130555301905, 0.021221498027443886, 0.004318821243941784, 0.047709494829177856, -0.006655351724475622, -0.026120340451598167, -0.041708141565322876, 0.02963690087199211, -0.010451780632138252, -0.05887320637702942, -0.001359148183837533, 0.027158662676811218, 0.0022752350196242332, -0.019326627254486084, -0.06555221229791641, 0.013581749983131886, -0.04566003009676933, -0.011636455543339252, -0.04418964684009552, 0.03333469107747078, 0.03932911157608032, -0.0037397858686745167, -0.015306041575968266, -0.05524265393614769, 0.1341344714164734, 0.0547618567943573, 0.04161114618182182, 0.053256455808877945, 0.02365950308740139, 0.04837025701999664, 0.021207312121987343, -0.0040257833898067474, 0.03136996179819107, -0.026768231764435768, 0.024293212220072746, -0.001258527277968824, 0.0422796905040741, -0.007555740885436535, 0.009812360629439354, 0.04904027655720711, -0.031740736216306686, 0.010235301218926907, 0.05060506984591484, -0.03171723708510399, -0.05303407832980156, 0.026574578136205673, 0.01217048428952694, 0.015492069534957409, 0.001787044107913971, 0.007522915489971638, -0.010257734917104244, -0.07536647468805313, -0.02861086279153824, -0.03194783255457878, 0.029982762411236763, -0.04512881487607956, 0.05595298856496811, 0.0011178748682141304, -0.03400903195142746, 0.026279639452695847, 0.03850529342889786, -0.005620068404823542, 0.014240563847124577, 0.020350363105535507, -0.006935495883226395, -0.026741893962025642, 0.023654954507946968, -0.02556448243558407, 0.0076874010264873505, 0.020940592512488365, -0.05987982451915741, 0.00946784857660532, 0.023635290563106537, -0.023569509387016296, 0.05910039320588112, -0.04609100520610809, -0.01165025681257248, -0.010930248536169529, 0.005270980764180422, 0.01594056561589241, -0.013638067059218884, -0.03202147036790848, -0.008316016755998135, -0.020365992560982704, 0.0338011160492897, 0.028504472225904465, -0.035094138234853745, 0.033895883709192276, -0.044686902314424515, 0.01268750336021185, 0.03417087718844414, 0.009245367720723152, -0.005366774275898933, -0.006901327054947615, -0.022282294929027557, -0.011428163386881351, -0.02818136289715767, -0.02059119939804077, 0.026818830519914627, 0.035537272691726685, -0.027179135009646416, 0.056297667324543, -0.010061737149953842, -0.0016860379837453365, -0.013002322986721992, -0.04283936321735382, 0.023692550137639046, 0.0011665772181004286, 0.021193524822592735, 0.043443117290735245, -0.07196877151727676, -0.038688164204359055, -0.045217450708150864, 0.05731743946671486, 0.05534232407808304, 0.00740628270432353, -0.01824355497956276, -0.004440476186573505, 0.021677935495972633 ]
What's a shared glass of wine in a beautiful garden or by a roaring fire without a little something to eat? We're now offering small bites to solve this very problem โ€“ simple, but tasty options to fill the gaps between lunch & dinner. Little boards of Linke's Barossa lachsschinken and Barossa Valley Cheese Company cheese. Small bites are available during all Cellar Door opening hours โ€“ 11am-5pm.
[ -0.02555770054459572, 0.03222784772515297, -0.013988285325467587, -0.005368244368582964, -0.03358934447169304, -0.0013078100746497512, 0.007629291620105505, 0.06862440705299377, -0.01591767743229866, 0.014209536835551262, 0.029684316366910934, 0.021711798384785652, 0.013962988741695881, -0.018301155418157578, -0.014368218369781971, -0.0011288528330624104, -0.019354544579982758, -0.0035176612436771393, -0.0417044460773468, 0.012902158312499523, 0.013817114755511284, 0.013496918603777885, -0.07444985955953598, -0.013304278254508972, -0.017611106857657433, 0.051158200949430466, 0.006001131609082222, -0.003188093425706029, 0.055906374007463455, 0.03781398758292198, -0.04802644997835159, -0.03733311593532562, 0.04103047028183937, -0.04148668423295021, -0.013093635439872742, -0.04604480788111687, 0.0326564684510231, -0.026662785559892654, 0.003885498736053705, -0.049260515719652176, 0.015109429135918617, -0.004376825876533985, 0.05191785842180252, -0.02581288293004036, -0.013682437129318714, -0.0021634434815496206, -0.018188031390309334, -0.04401561990380287, 0.03926634043455124, -0.04945699870586395, 0.012287188321352005, 0.01998305879533291, 0.028127342462539673, -0.0027426695451140404, 0.02426306903362274, 0.04141746833920479, 0.0005024198326282203, -0.0017685552593320608, -0.01596415415406227, -0.0012931026285514235, 0.01775769144296646, -0.016249530017375946, 0.027391701936721802, -0.046551674604415894, 0.025202127173542976, 0.042097192257642746, 0.009264308959245682, -0.029148437082767487, -0.009256753139197826, -0.03558037057518959, -0.004599391017109156, -0.0025359108112752438, -0.032688647508621216, -0.015461799688637257, -0.01604597270488739, -0.004741883836686611, 0.027446437627077103, 0.019879819825291634, -0.0071273669600486755, 0.006479374598711729, 0.021265137940645218, 0.04496090114116669, 0.02027108147740364, 0.012252367101609707, -0.06694323569536209, -0.029233600944280624, 0.0016797806601971388, 0.04382124915719032, 0.017914269119501114, 0.018373018130660057, 0.0023310359101742506, 0.04967567324638367, 0.00039128970820456743, -0.01837426982820034, 0.056992847472429276, 0.0024314329493790865, -0.056621842086315155, 0.026540350168943405, 0.0173004399985075, 0.0057096718810498714, 0.045469675213098526, 0.012558182701468468, 0.01489183772355318, 0.032861415296792984, -0.046049442142248154, 0.0191841721534729, 0.005896520335227251, -0.01545583177357912, -0.03313247486948967, -0.042800966650247574, -0.028255930170416832, -0.03660016879439354, 0.02513975091278553, 0.005371067672967911, 0.009328080341219902, 0.06992179155349731, -0.006862395443022251, 0.03992251679301262, -0.039321187883615494, 0.027240272611379623, 0.027697205543518066, 0.021967867389321327, 0.05403420329093933, -0.02550029382109642, 0.0034220831003040075, -0.0557180717587471, -0.04632612690329552, 0.05224229767918587, -0.03762277588248253, -0.015653790906071663, -0.017402708530426025, -0.04068132862448692, 0.0021755825728178024, 0.022042449563741684, 0.0009512036922387779, 0.010290410369634628, -0.05166512355208397, 0.020854242146015167, 0.009913724847137928, -0.05699506029486656, 0.02089088223874569, 0.011743363924324512, 0.014925888739526272, 0.06756914407014847, 0.01211914885789156, 0.01892535574734211, -0.014081466011703014, -0.01890462078154087, -0.030107244849205017, 0.042313188314437866, -0.02153775282204151, 0.016895204782485962, 0.006892123259603977, 0.02020139992237091, -0.014511055313050747, -0.008119854144752026, 0.020411750301718712, 0.0124759990721941, 0.046985093504190445, 0.020363589748740196, -0.028385458514094353, 0.0026816686149686575, -0.021956447511911392, 0.04756101965904236, -0.008229407481849194, 0.025861702859401703, -0.009535836055874825, 0.015777090564370155, 0.0000625008178758435, -0.03986435756087303, 0.019578976556658745, 0.019687825813889503, 0.0003968997916672379, 0.034872088581323624, -0.0013625017600134015, 0.019065074622631073, 0.05188930034637451, -0.01955806463956833, 0.05251581594347954, 0.03439221531152725, -0.04206390306353569, 0.010769522748887539, -0.0024133699480444193, 0.0563574954867363, 0.026545997709035873, -0.010932233184576035, -0.005878848023712635, -0.02337357960641384, -0.04595691338181496, -0.03991752862930298, -0.01688394322991371, 0.042498063296079636, -0.026158548891544342, 0.03221559524536133, 0.01768960990011692, 0.005730756092816591, 0.008703503757715225, 0.003157372120767832, 0.000013222907909948844, -0.034207362681627274, -0.03732452541589737, 0.043954648077487946, -0.019380567595362663, 0.0417308434844017, -0.002091682981699705, -0.041614338755607605, 0.017871133983135223, 0.06800789386034012, -0.05220674350857735, -0.009775219485163689, 0.025318939238786697, -0.0015665998216718435, -0.025311443954706192, 0.0032832378055900335, 0.0057927463203668594, -0.041372526437044144, -0.02529456466436386, 0.0279078371822834, -0.0191937368363142, -0.01882494054734707, 0.018354779109358788, 0.009415541775524616, 0.012358532287180424, 0.03432497754693031, 0.00001954438084794674, 0.011594000272452831, -0.009301146492362022, 0.0084861870855093, -0.004654766526073217, -0.004408882465213537, -0.03163692355155945, 0.06103590503334999, 0.038810353726148605, 0.07408086210489273, 0.05124466493725777, 0.015415700152516365, 0.05437879636883736, 0.017910698428750038, -0.0005722737405449152, 0.01712488755583763, 0.007376127410680056, -0.0058217342011630535, -0.003713872516527772, 0.02000383846461773, -0.018534047529101372, 0.025064056739211082, -0.00719057023525238, -0.02075783908367157, 0.0011179972207173705, 0.01796981692314148, -0.008647173643112183, 0.011389067396521568, 0.002450530184432864, 0.026261409744620323, -0.04087001457810402, -0.0036266620736569166, 0.016378972679376602, 0.04360397532582283, -0.02088332362473011, 0.022627921774983406, 0.0153290880843997, 0.03859572485089302, -0.006656911689788103, 0.018659861758351326, 0.03309750184416771, 0.033501364290714264, 0.007033952511847019, 0.022074855864048004, -0.017753051593899727, -0.020697224885225296, -0.0026556893717497587, -0.021538009867072105, -0.031709831207990646, -0.05779290571808815, -0.0732707679271698, -0.02610195241868496, 0.06986503303050995, -0.0355958491563797, 0.03501630574464798, -0.010168392211198807, 0.0005794181488454342, -0.04577656835317612, -0.022230694070458412, 0.05244038626551628, 0.030496740713715553, 0.049148689955472946, -0.037367261946201324, 0.01885269023478031, -0.0278144683688879, 0.03767622634768486, -0.03009570948779583, -0.021003443747758865, -0.0038526274729520082, -0.006466129329055548, 0.03125202655792236, -0.00999306607991457, -0.03315062075853348, 0.016906989738345146, -0.017251405864953995, -0.06214720383286476, 0.01749650202691555, 0.015160081908106804, 0.011561942286789417, 0.017547594383358955, -0.05514180660247803, 0.01920001022517681, -0.009293335489928722, -0.03392493352293968, 0.05494329705834389, 0.02328420616686344, -0.04828980192542076, 0.03216124325990677, 0.00896394345909357, 0.00409497506916523, -0.03885887563228607, 0.05491143465042114, 0.04186946526169777, 0.015330629423260689, -0.025476127862930298, -0.014385620132088661, -0.021319562569260597, 0.010099025443196297, 0.02005588635802269, -0.007969332858920097, -0.030449500307440758, 0.031904906034469604, -0.014281615614891052, -0.07687683403491974, 0.04143395274877548, -0.0327768474817276, -0.04268476366996765, -0.017710942775011063, -0.009663383476436138, 0.03825680911540985, 0.024701138958334923, 0.022761382162570953, 0.03036760725080967, -0.013803662732243538, 0.0021758079528808594, 0.005686403252184391, 0.06568456441164017, -0.03688352555036545, 0.015016263350844383, 0.047505468130111694, -0.017880752682685852, 0.009131905622780323, 0.029183275997638702, -0.012365542352199554, 0.006870937068015337, -0.01496689673513174, 0.005505677778273821, 0.02482306957244873, 0.030682066455483437, 0.0016578285722061992, 0.03525795042514801, 0.04095705226063728, -0.027463404461741447, -0.018262282013893127, 0.015459849499166012, 0.0004083031672053039, 0.015209206379950047, -0.021471915766596794, 0.013715920969843864, -0.004305529873818159, -0.04087749496102333, -0.050441090017557144, 0.03754792362451553, -0.012963389977812767, 0.055793069303035736, -0.08085187524557114, 0.04801551625132561, 0.02111552655696869, -0.016009187325835228, 0.05037616938352585, -0.053695015609264374, 0.0009282344835810363, 0.016786441206932068, -0.01905660703778267, 0.0417792871594429, -0.019338645040988922, -0.0009465303155593574, -0.028995756059885025, 0.00986285600811243, 0.0634179562330246, 0.004159719683229923, 0.022208906710147858, -0.023025989532470703, -0.011232998222112656, -0.007062274497002363, -0.009575563482940197, -0.021717876195907593, -0.032511480152606964, 0.03484639525413513, -0.006790902931243181, -0.019038796424865723, -0.05063018202781677, 0.015097937546670437, 0.015552885830402374, 0.04372260719537735, -0.011159759014844894, 0.02213035710155964, 0.021275777369737625, 0.041567906737327576, 0.03909270837903023, -0.008980640210211277, 0.01487475261092186, -0.06046353653073311, 0.04465038329362869, 0.03361484035849571, -0.017170552164316177, -0.028025908395648003, -0.02701680175960064, -0.01767590269446373, 0.03251653164625168, 0.00038639549165964127, -0.03395645692944527, -0.045893751084804535, 0.016367705538868904, -0.008856804110109806, 0.006862072739750147, -0.017576957121491432, -0.01234171912074089, -0.023905538022518158, 0.013737233355641365, 0.053274136036634445, -0.06263012439012527, 0.004650983493775129, -0.047968290746212006, 0.05149635672569275, 0.05276875197887421, -0.02482408843934536, -0.020816059783101082, -0.032420240342617035, -0.021396027877926826, -0.029164468869566917, 0.014170246198773384, 0.039800215512514114, 0.0011390848085284233, -0.004673095420002937, -0.05654475837945938, 0.03283000737428665, 0.018784191459417343, 0.009305642917752266, -0.0036403171252459288, -0.005525087472051382, 0.033859748393297195, -0.006587162148207426, 0.03842226415872574, 0.004139276221394539, -0.041349444538354874, 0.036179013550281525, -0.05486161261796951, 0.003491898998618126, -0.0010433673160150647, -0.008343449793756008, 0.005268489941954613, 0.020637374371290207, 0.006191661581397057, 0.024652905762195587, -0.022288724780082703, 0.030741745606064796, -0.028299637138843536, 0.0007852607523091137, -0.026662513613700867, -0.013693510554730892, 0.05493345484137535, -0.015072683803737164, -0.03048480674624443, 0.04236841946840286, 0.07109587639570236, -0.03642749786376953, 0.018191101029515266, 0.054398324340581894, -0.04428248852491379, 0.01354913879185915, -0.01806335523724556, -0.005231454037129879, 0.00879379641264677, -0.052866317331790924, 0.02993881329894066, -0.05017666891217232, -0.003951527178287506, 0.003290860913693905, 0.004052153788506985, -0.046261318027973175, -0.07548792660236359, -0.025724930688738823, 0.009162251837551594, 0.012190325185656548, 0.028279926627874374, 0.024486862123012543, -0.009235596284270287, -0.006705653853714466, -0.008803528733551502, -0.018928496167063713, -0.0038944180123507977, -0.0184785146266222, 0.015027430839836597, 0.027101846411824226, 0.03739115968346596, 0.003697338979691267, -0.0010256189852952957, -0.04590682312846184, -0.017606334760785103, -0.015666188672184944, -0.0077086505480110645, -0.037968654185533524, -0.008294573053717613, -0.0147499805316329, -0.0017933434573933482, -0.013588002882897854, 0.016830461099743843, 0.001974336337298155, 0.001401823596097529, -0.007914590649306774, 0.04049714282155037, 0.0034254153724759817, 0.02158040553331375, -0.020807482302188873, 0.04880401864647865, 0.0160538163036108, -0.04233463481068611, -0.03929370269179344, 0.04254358261823654, -0.04693521186709404, 0.03924771025776863, 0.0025471500121057034, -0.024250129237771034, -0.023674480617046356, -0.08007657527923584, -0.020047621801495552, -0.04193859547376633, 0.007276537828147411, -0.04967017471790314, -0.029072230681777, -0.03150087967514992, 0.05924920737743378, 0.01884550414979458, -0.009572741575539112, 0.02247471734881401, -0.03809824585914612, -0.013288063928484917, -0.01321061048656702, -0.03487151116132736, -0.03542936593294144, 0.008835944347083569, 0.009657523594796658, 0.029030069708824158, 0.011841291561722755, 0.02263374626636505, -0.0018560787430033088, 0.022596627473831177, 0.018417255952954292, -0.032221727073192596, -0.025756126269698143, -0.030321931466460228, -0.007222567684948444, 0.013222037814557552, -0.0012896099360659719, -0.007036887109279633, -0.043997883796691895, 0.048190951347351074, -0.05246226117014885, -0.02091628685593605, -0.03803729638457298, -0.024382997304201126, 0.006788926664739847, -0.010431809350848198, 0.03385685384273529, -0.008576408959925175, 0.0072774747386574745, -0.011720416136085987, 0.056514281779527664, 0.026208976283669472, -0.0018553610425442457, -0.03808220103383064, -0.05044136196374893, -0.06635787338018417, -0.03718740865588188, 0.030241385102272034, -0.03071705810725689, -0.02367083542048931, -0.0423688143491745, 0.024250688031315804, 0.04050161689519882, 0.024740297347307205, 0.05731327831745148, 0.0357847586274147, -0.039586763828992844, -0.007926528342068195, -0.054265089333057404, 0.04983760789036751, 0.02535601705312729, -0.014488325454294682, -0.0218603927642107, -0.012503255158662796, -0.012415528297424316, 0.014258716255426407, -0.044500622898340225, -0.01238234806805849, -0.03342194855213165, 0.005606222432106733, 0.06306257098913193, -0.038130782544612885, 0.04030793905258179, -0.01536245085299015, -0.05396245792508125, -0.04062168672680855, 0.062144238501787186, 0.03508009761571884, 0.013648380525410175, 0.0198528915643692, 0.0011050791945308447, -0.039509013295173645, 0.012659935280680656, -0.02000225894153118, -0.020173432305455208, -0.045672375708818436, 0.05888006463646889, -0.00018784853455144912, -0.04453722760081291, 0.020084096118807793, 0.06782277673482895, -0.06696891784667969, -0.02680002711713314, -0.016470393165946007, 0.01804419234395027, 0.004259745590388775, -0.029991714283823967, 0.010711931623518467, -0.011811528354883194, 0.021929724141955376, 0.01799863576889038, 0.024240881204605103, -0.006780012510716915, 0.055793654173612595, 0.05134906992316246, 0.032819103449583054, -0.028001436963677406, -0.007740904577076435, 0.018768880516290665, -0.03312724083662033, -0.030829697847366333, -0.009684045799076557, 0.007067860569804907, -0.00811235886067152, 0.0010411211987957358, 0.0636114701628685, -0.0348191112279892, -0.02400015853345394, 0.020864645019173622, 0.022351564839482307, 0.04557138681411743, -0.01605105586349964, 0.0008165772305801511, 0.03638238087296486, -0.040386199951171875, -0.029331024736166, -0.048651523888111115, -0.0016456891316920519, 0.002606803784146905, 0.04202960431575775, -0.034161269664764404, -0.002218555426225066, 0.046827446669340134, 0.01741422899067402, -0.03397778421640396, -0.0328902043402195, -0.054013628512620926, -0.049534279853105545, -0.018826443701982498, -0.04801516607403755, -0.049571797251701355, 0.005919029004871845, 0.01625528559088707, 0.03285631909966469, -0.043834127485752106, -0.013454576954245567, -0.010786446742713451, -0.01981322467327118, 0.0016133912140503526, -0.04555105045437813, 0.02788638137280941, -0.052289701998233795, -0.06788945943117142, -0.0258804839104414, 0.019393930211663246, -0.021146517246961594, 0.014838764443993568, -0.04435580223798752, 0.02604960836470127, -0.005275697913020849, 0.037717100232839584, 0.01098737120628357, 0.030275482684373856, -0.025494901463389397, -0.0409056581556797, -0.0066612958908081055, 0.03593927621841431, -0.029300455003976822, 0.020900771021842957, 0.005637055262923241, -0.0029002446681261063, 0.022990478202700615, -0.013765701092779636, -0.03779059275984764, -0.02853388339281082, -0.015543665736913681, 0.014904353767633438, 0.011723645962774754, -0.033582184463739395, -0.018247690051794052, -0.0306764617562294, -0.019436940550804138, 0.02568816766142845, -0.017627190798521042, 0.00011671397078316659, -0.0024238810874521732, 0.012214443646371365, 0.023415064439177513, 0.07294392585754395, -0.01709441840648651, 0.02164696529507637, -0.019498569890856743, 0.021477006375789642, 0.007918007671833038, -0.020536398515105247, 0.0345199778676033, 0.014284380711615086, 0.019425077363848686, -0.008908439427614212, -0.020256081596016884, 0.023917848244309425, -0.011103129014372826, 0.03611976280808449, -0.01808435469865799, -0.02663998119533062, -0.03314497694373131, -0.03148769959807396, 0.01007087342441082, 0.042136408388614655, 0.0030528565403074026, -0.00315476325340569, 0.03660107031464577, -0.03986256569623947, -0.05475887656211853, -0.009311899542808533, -0.05124203860759735, -0.0528530515730381, 0.03008429892361164, 0.007785268127918243, -0.009215088561177254, -0.008788366802036762, -0.024089345708489418, 0.01173729170113802, -0.03136933222413063, -0.013866112567484379, 0.010166741907596588, 0.015696166083216667, -0.007662001997232437, 0.06270965188741684, -0.009909132495522499, -0.015550254844129086, 0.021183565258979797, 0.04517755284905434, -0.07574353367090225, -0.04623514786362648, 0.01715715415775776, 0.017574463039636612, -0.011339272372424603, 0.003320453455671668, -0.02567063271999359, 0.012357993982732296, -0.0028928446117788553, 0.00828571617603302, 0.01227446086704731, 0.014593848958611488, 0.011350957676768303, 0.011550498194992542, -0.012374762445688248, -0.01904131844639778, -0.03917376697063446, 0.05245693027973175, -0.0245791207998991, -0.007324927020817995, -0.005674226675182581, 0.04532039538025856, 0.0253199003636837, 0.01149560697376728, 0.03966962546110153, 0.029035747051239014, 0.021112732589244843, -0.027037430554628372, 0.011751445010304451, 0.021781783550977707, 0.04661211743950844, 0.05023748055100441, 0.0277439933270216, 0.003800037782639265, 0.0204431414604187, 0.05175596475601196, -0.016458578407764435, -0.008517866022884846, 0.026169443503022194, 0.020826421678066254, -0.022626379504799843, 0.008760493248701096, -0.0480373315513134, -0.002893831580877304, 0.009187374264001846, -0.025788454338908195, 0.006500142626464367, -0.016885418444871902, -0.0031485988292843103, 0.00007082329102559015, -0.027363529428839684, 0.0544879324734211, -0.010779117234051228, 0.020297545939683914, -0.03468214347958565, -0.02067544311285019, -0.005033217370510101, 0.04889118671417236, -0.023386932909488678, 0.03436001017689705, 0.05312361195683479, 0.00721403444185853, -0.016787996515631676, 0.04542618617415428, 0.009714283980429173, 0.021273735910654068, -0.03779390826821327, 0.02212086319923401, 0.004705495201051235, 0.005867104046046734, -0.05874030292034149, 0.014764402993023396, -0.011876838281750679, 0.036041561514139175, -0.0408468060195446, -0.03271718695759773, 0.039954084903001785, -0.04542627930641174, -0.03719295188784599, -0.069524385035038, -0.0012839498231187463, -0.023653090000152588, 0.007310781627893448, 0.03173748031258583, 0.003539282362908125, -0.02989119291305542, 0.03964002802968025, 0.015428446233272552, 0.040249619632959366, 0.02964412048459053, 0.058175403624773026, -0.011654998175799847, 0.023479780182242393, 0.04387354850769043, -0.010007482022047043, -0.027774911373853683, 0.0334099605679512, -0.027148591354489326, -0.013259601779282093, -0.02371811866760254, -0.029498213902115822, -0.015211586840450764, -0.012158659286797047, -0.023135893046855927, 0.0013049995759502053, 0.030101487413048744, -0.0036592106334865093, -0.04743991047143936, 0.00787894707173109, 0.018535662442445755, -0.05550206080079079, 0.019469423219561577, 0.012282497249543667, 0.02726924419403076, -0.00976539496332407, 0.006960548460483551, -0.04914595186710358, 0.005461559165269136, -0.020596319809556007, -0.00526579562574625, 0.035959940403699875, -0.04750971868634224, -0.005471726879477501, -0.040856726467609406, -0.029933614656329155, -0.050103411078453064, -0.009638899937272072, -0.04740244522690773, -0.04225724935531616, 0.05244724825024605, 0.023816129192709923, -0.047347720712423325, 0.0009574261493980885, -0.02761205844581127, 0.021492930129170418, 0.037763163447380066, 0.03376954421401024, -0.006791703402996063, 0.02347133867442608, 0.04994935169816017, -0.011189273558557034, 0.04324423149228096, 0.009810315445065498, 0.0626201406121254, -0.006444866769015789, -0.018620405346155167, -0.02035445161163807, 0.034475672990083694, -0.007843589410185814, -0.03882439807057381, 0.03702311962842941, -0.019524330273270607, 0.013553348369896412, -0.01733899489045143, -0.07746479660272598, -0.009924590587615967, -0.046096958220005035, -0.016445191577076912, -0.05657629668712616, 0.023555485531687737, 0.03272474557161331, -0.04083256423473358, 0.006906292866915464, -0.08418860286474228, 0.17166274785995483, 0.03846153989434242, 0.04842585697770119, 0.007523320149630308, -0.004668098408728838, 0.04655614495277405, 0.015959804877638817, 0.0039606960490345955, -0.017012331634759903, -0.0317324697971344, 0.07617729157209396, -0.006462755613029003, 0.03789052739739418, 0.006297930143773556, 0.03153952956199646, 0.05647004023194313, -0.013516039587557316, 0.03407257795333862, 0.030220989137887955, -0.056902799755334854, -0.06411527842283249, 0.04914100840687752, 0.0084795281291008, -0.006570135708898306, -0.004001546185463667, 0.035482726991176605, 0.00048069414333440363, -0.052123602479696274, -0.024008814245462418, -0.04436301067471504, 0.03969082608819008, -0.056800175458192825, 0.039754051715135574, -0.0065306914038956165, -0.05326502397656441, 0.041178736835718155, -0.020061729475855827, -0.0277885552495718, 0.0021344907581806183, 0.012695283629000187, -0.03059575706720352, 0.000016373543985537253, 0.024420537054538727, -0.02375885471701622, 0.03241752088069916, 0.02024492621421814, -0.007736897561699152, 0.001067844219505787, 0.0414997860789299, -0.01563912443816662, 0.06336574256420135, -0.038757652044296265, 0.05902354419231415, -0.005193179938942194, -0.025852836668491364, -0.004517626948654652, 0.03670589625835419, -0.013500049710273743, -0.006134293042123318, 0.0015084784245118499, 0.03665146604180336, -0.007465027738362551, -0.010330379009246826, -0.01886739209294319, -0.03777085989713669, -0.021483134478330612, 0.026687465608119965, 0.03250518813729286, -0.022732699289917946, -0.02478180080652237, -0.027997218072414398, -0.03150394186377525, -0.008415778167545795, -0.03365428000688553, 0.043319620192050934, 0.04724261537194252, -0.03467962518334389, 0.018102465197443962, 0.029772557318210602, -0.027429139241576195, 0.018465863540768623, -0.032469894737005234, -0.016466595232486725, 0.0017554701771587133, 0.012253953143954277, 0.05549180135130882, -0.07287833839654922, -0.027164626866579056, -0.02990044467151165, 0.03063656948506832, 0.03595700487494469, -0.013590168207883835, 0.004785218276083469, -0.012653326615691185, 0.006132805719971657 ]
From startup to superpower. That might be the best description for the Alabama softball program, which is celebrating its 20th season in existence. The program welcomed many former players and team members back to Tuscaloosa over the weekend to watch the series win over Kentucky. More than 10,000 fans made it out to Rhoads Stadium for the three-game series, where they showed a 20th anniversary video that traces the team's growth and massive success over two decades. With a 41-9 record and a top-10 ranking this year, Alabama softball hopes to add to that tradition of excellence. If you haven't seen the video, here it is. This will give you a great idea of how fast the program has grown.
[ 0.0008481982513330877, 0.0000507050208398141, -0.009706666693091393, 0.026171831414103508, -0.030917465686798096, 0.025039030238986015, -0.016716737300157547, 0.028516462072730064, 0.023999705910682678, -0.024622902274131775, 0.027378685772418976, 0.008262784220278263, 0.02557920478284359, -0.023287978023290634, -0.024838685989379883, 0.025429770350456238, -0.013449345715343952, -0.05022921785712242, -0.009892066940665245, 0.03269611671566963, -0.017986781895160675, 0.04297950863838196, -0.054099585860967636, -0.04344572126865387, -0.011804509907960892, 0.031977877020835876, 0.03515668958425522, 0.007611613720655441, 0.062082886695861816, 0.03496839106082916, -0.027007486671209335, -0.07640080153942108, 0.030389344319701195, -0.042056672275066376, -0.02836247906088829, -0.044586218893527985, 0.04826263338327408, 0.00177391420584172, -0.047995440661907196, -0.030188454315066338, 0.019580764696002007, 0.013220816850662231, 0.0461571104824543, -0.03760823607444763, -0.06991209089756012, 0.0043592737056314945, 0.019031519070267677, -0.039008140563964844, 0.043669555336236954, -0.012121648527681828, -0.013981127180159092, -0.009474113583564758, -0.011976568028330803, 0.027244802564382553, -0.013882347382605076, 0.027437731623649597, -0.0048208534717559814, -0.035436321049928665, -0.03290623798966408, 0.050460003316402435, 0.021060211583971977, 0.008554301224648952, 0.04110414907336235, -0.03390434756875038, 0.01980522833764553, 0.016179483383893967, 0.010013379156589508, -0.02477533556520939, 0.030968505889177322, -0.02679835632443428, 0.005798997823148966, -0.009009962901473045, -0.02070610038936138, -0.01237189769744873, 0.004399362951517105, 0.022278713062405586, -0.021169427782297134, 0.009758693166077137, -0.022424355149269104, -0.006793022621423006, 0.01515218522399664, 0.048252422362565994, 0.0037836087867617607, 0.0058906907215714455, -0.06773852556943893, -0.048408787697553635, -0.018102018162608147, -0.023606710135936737, 0.019433658570051193, -0.0018618159228935838, 0.01767153851687908, 0.04977811127901077, -0.009175864048302174, -0.019732583314180374, 0.051459651440382004, 0.04941922053694725, -0.04002000391483307, 0.009879384189844131, 0.03788265958428383, -0.0033313019666820765, 0.008628630079329014, 0.029579250141978264, 0.0216897651553154, 0.05119141936302185, -0.05496249720454216, -0.015748724341392517, 0.0386982336640358, -0.019406331703066826, 0.02884683385491371, -0.008617271669209003, -0.005326790735125542, -0.044802475720644, 0.03130268305540085, 0.000111556269985158, -0.02228398248553276, 0.042893391102552414, 0.014858288690447807, 0.02588825114071369, -0.052327219396829605, 0.022174667567014694, 0.03314228355884552, 0.022912288084626198, 0.017157703638076782, 0.019605044275522232, 0.02283000387251377, -0.010476614348590374, -0.04972586780786514, 0.03069041296839714, -0.009877712465822697, -0.013904712162911892, 0.0077940430492162704, -0.06692025065422058, -0.016711950302124023, 0.03884107992053032, -0.012532871216535568, 0.008855193853378296, 0.017689533531665802, 0.025737781077623367, 0.03151848912239075, -0.08093256503343582, 0.04107270389795303, -0.0004434490983840078, -0.000709011044818908, 0.09934267401695251, 0.02306656539440155, 0.05366625636816025, -0.011378350667655468, -0.004146683495491743, -0.026852035894989967, 0.05029505863785744, -0.025048531591892242, 0.02831283025443554, -0.014468402601778507, 0.0317322313785553, -0.008070087991654873, -0.012261387892067432, 0.005023324396461248, 0.02710305154323578, -0.0076184580102562904, 0.04168301820755005, -0.027356654405593872, 0.004864123649895191, -0.012285290285944939, 0.03675881028175354, -0.022258302196860313, 0.02868625335395336, -0.03288610279560089, -0.01682724803686142, 0.010389952920377254, -0.036763280630111694, 0.00815318152308464, 0.008131320588290691, -0.008606094866991043, 0.016787704080343246, 0.02228996343910694, 0.05478518828749657, 0.022620726376771927, -0.029551811516284943, 0.03453037887811661, 0.05794176086783409, -0.059917353093624115, -0.023966113105416298, -0.017344756051898003, 0.06818611174821854, 0.019757425412535667, -0.021763069555163383, 0.018116479739546776, -0.013091846369206905, -0.03239959478378296, -0.023471839725971222, -0.020867343991994858, 0.03175785765051842, -0.004047601483762264, 0.043410882353782654, 0.004496096633374691, 0.003346686949953437, -0.020702602341771126, -0.039476655423641205, -0.04351838305592537, -0.032799821346998215, 0.005755445454269648, 0.03139980509877205, -0.025141356512904167, -0.009546980261802673, -0.0068075815215706825, -0.018270155414938927, 0.009590111672878265, 0.06897420436143875, -0.05299914628267288, 0.005535552743822336, 0.03669160231947899, 0.020896220579743385, 0.010550564154982567, 0.018483370542526245, 0.007506567519158125, -0.0373539924621582, -0.0018412782810628414, 0.08255284279584885, -0.013653745874762535, 0.004511012230068445, -0.0038549129385501146, 0.004811618011444807, 0.061019476503133774, 0.0366169810295105, 0.005771787371486425, -0.03471841663122177, 0.011265584267675877, 0.021888334304094315, -0.050532784312963486, -0.03522186726331711, 0.00872129574418068, 0.045356765389442444, 0.008347725495696068, 0.06841696798801422, 0.026171155273914337, 0.021900758147239685, 0.03282859921455383, 0.0511348657310009, 0.02677769400179386, 0.020693421363830566, -0.010857428424060345, -0.02145741879940033, 0.03844451159238815, 0.007541567087173462, -0.012436515651643276, 0.01129311416298151, -0.0489434152841568, -0.026151467114686966, -0.015001717954874039, 0.02398652583360672, 0.007490023970603943, 0.041106242686510086, 0.034195542335510254, 0.04728125035762787, -0.03380986303091049, 0.02429986745119095, 0.015090150758624077, 0.060644034296274185, 0.003249348374083638, -0.0005034595378674567, 0.0025179479271173477, 0.017246605828404427, -0.021467162296175957, -0.015187889337539673, 0.033368054777383804, 0.02328653819859028, -0.0062799109145998955, 0.055677421391010284, -0.005369466729462147, -0.025891922414302826, -0.0451824851334095, -0.06095167249441147, -0.030826633796095848, -0.05120036005973816, -0.04038192331790924, -0.006853490136563778, 0.0692572072148323, -0.03603009134531021, 0.008850825019180775, -0.0038452125154435635, -0.03174401819705963, -0.011361738666892052, -0.001320389099419117, 0.03282514587044716, 0.038853131234645844, 0.03509342297911644, -0.03590723127126694, 0.034649185836315155, -0.028369693085551262, 0.048361629247665405, -0.047484979033470154, 0.031130343675613403, -0.015547137707471848, 0.003484019311144948, 0.019930914044380188, -0.008480745367705822, 0.00016110279830172658, -0.008328689262270927, -0.04249962791800499, -0.04589930921792984, 0.031750041991472244, 0.01016031764447689, 0.0056507703848183155, -0.005816102959215641, -0.027907006442546844, 0.04442121088504791, 0.037613023072481155, -0.02960694022476673, 0.045465219765901566, 0.048262663185596466, -0.024109872058033943, 0.06489554047584534, 0.021520450711250305, 0.0062753562815487385, -0.033698610961437225, 0.03586331009864807, 0.04164210334420204, 0.00278744800016284, -0.02775401808321476, -0.018275881186127663, -0.030999744310975075, 0.01552357617765665, 0.03330732509493828, -0.0176627729088068, -0.030241359025239944, 0.01526551228016615, 0.029084714129567146, -0.09066855162382126, 0.013451196253299713, -0.04893559589982033, -0.017644060775637627, -0.029937317594885826, -0.015666451305150986, 0.03830302134156227, 0.04931556060910225, 0.008686339482665062, 0.018870633095502853, -0.030103949829936028, 0.009855957701802254, 0.026221949607133865, 0.03661961480975151, -0.009930877946317196, 0.026182841509580612, 0.06685619801282883, -0.0007393810083158314, 0.02623359113931656, -0.0010451956186443567, -0.002731865970417857, -0.009946305304765701, 0.028744345530867577, -0.023687170818448067, -0.009197245351970196, 0.028332475572824478, 0.03188089281320572, 0.02947288751602173, 0.0024981237947940826, -0.04986283928155899, -0.008153315633535385, -0.0026293029077351093, -0.008928470313549042, -0.00806441344320774, 0.005925789475440979, 0.02502227947115898, 0.0018536242423579097, -0.029498960822820663, -0.021747000515460968, 0.03531203791499138, -0.0031757578253746033, 0.07519623637199402, -0.05870390310883522, 0.06938537210226059, 0.0031307083554565907, -0.005715932697057724, 0.05862017720937729, -0.03679827228188515, -0.006818520370870829, 0.057556699961423874, -0.06122714281082153, 0.029160592705011368, -0.03350568190217018, -0.018899254500865936, -0.02915813960134983, 0.015292980708181858, 0.04479668661952019, 0.026639368385076523, 0.021460874006152153, 0.0030126329511404037, -0.04295394569635391, -0.02309410274028778, -0.015508015640079975, -0.029681414365768433, -0.023007962852716446, 0.00006666544504696503, 0.013413053005933762, -0.03940839320421219, -0.05042899399995804, 0.031228896230459213, 0.04441362991929054, 0.05330367386341095, -0.013720222748816013, 0.02393178455531597, 0.00832500122487545, 0.006267419084906578, 0.03143485262989998, -0.0032790671102702618, 0.008873761631548405, -0.021440396085381508, 0.03813951089978218, 0.014643707312643528, -0.04771043360233307, -0.0515189990401268, -0.06515466421842575, -0.025352785363793373, 0.008212904445827007, 0.011608228087425232, -0.014235000126063824, -0.04364863038063049, 0.03478149324655533, -0.0012272614985704422, 0.03642326220870018, -0.006417905446141958, 0.0008773820591159165, -0.016585515812039375, 0.03734176233410835, -0.007019247859716415, -0.04454004392027855, 0.012079094536602497, -0.048403024673461914, 0.04320916905999184, 0.018915235996246338, -0.006529530510306358, -0.02634476125240326, -0.010737576521933079, -0.028631551191210747, -0.020808378234505653, 0.0021906874608248472, 0.04654736444354057, 0.01967921480536461, -0.002341420855373144, -0.05036811903119087, 0.027638280764222145, 0.020324531942605972, -0.023405874148011208, -0.0016059429617598653, -0.023154139518737793, 0.039852388203144073, 0.020947804674506187, 0.018853098154067993, -0.015314226038753986, -0.009425796568393707, 0.04922947660088539, -0.03826355189085007, 0.04085833579301834, -0.004736943636089563, -0.010422144085168839, 0.00882686022669077, 0.00605579512193799, 0.014943134970963001, 0.03971840441226959, -0.01223641075193882, 0.005506695713847876, -0.020694853737950325, 0.06494724005460739, -0.027521584182977676, -0.01765327900648117, 0.039729177951812744, -0.011502010747790337, -0.03770977258682251, 0.027028819546103477, 0.03256095573306084, -0.033102717250585556, 0.03365881368517876, 0.028857434168457985, -0.04923528432846069, 0.013708304613828659, -0.007191370241343975, 0.03806497901678085, -0.010927784256637096, -0.03150223195552826, -0.00861967820674181, -0.013502918183803558, 0.0352461151778698, 0.029094835743308067, -0.014230753295123577, -0.032727744430303574, -0.03228750824928284, 0.00911225751042366, 0.016684837639331818, 0.011743889190256596, 0.014220375567674637, 0.0036594646517187357, -0.016916481778025627, -0.015787571668624878, 0.000034922617487609386, -0.002457127906382084, 0.01718907617032528, 0.0032967126462608576, -0.00018585023644845933, -0.03757474571466446, -0.016323279589414597, 0.011908985674381256, -0.0199594609439373, -0.030524246394634247, -0.004458216018974781, -0.027759568765759468, -0.02233678475022316, -0.056512512266635895, -0.010822484269738197, -0.04743766039609909, -0.000871597439981997, -0.057130131870508194, 0.005010782275348902, -0.0373837873339653, 0.03499385342001915, 0.03149077296257019, 0.018639393150806427, 0.010496152564883232, 0.026158109307289124, -0.025524936616420746, 0.045010462403297424, 0.012438252568244934, -0.038578350096940994, -0.05738566070795059, 0.02057567425072193, -0.025081392377614975, 0.0587281733751297, -0.028933115303516388, -0.01852910965681076, -0.020846275612711906, -0.10073601454496384, 0.00040755601366981864, -0.01156422309577465, -0.02147630788385868, -0.05259707570075989, -0.028349054977297783, -0.013584702275693417, 0.0018301793606951833, 0.020117299631237984, -0.02495279163122177, -0.012277147732675076, -0.024216169491410255, -0.027289101853966713, -0.011771371588110924, -0.012470842339098454, -0.023343589156866074, -0.010289267636835575, 0.02873806655406952, 0.03732968866825104, 0.028313860297203064, -0.003264874452725053, 0.03093094192445278, -0.01144984271377325, 0.008426470682024956, -0.026624219492077827, -0.03894529864192009, -0.050538308918476105, -0.013277255930006504, -0.025623813271522522, -0.015163928270339966, 0.02852356992661953, -0.021159600466489792, 0.01844809576869011, -0.02218382991850376, -0.010198035277426243, -0.0061842165887355804, -0.01787898689508438, -0.007851174101233482, -0.02019510604441166, 0.08151605725288391, -0.02615942433476448, 0.0438125841319561, 0.016141491010785103, 0.0355406254529953, 0.03322729468345642, 0.013473160564899445, -0.01586896926164627, -0.007513395976275206, -0.029650764539837837, -0.04233212396502495, 0.010361007414758205, -0.029941091313958168, -0.013800546526908875, -0.046181127429008484, -0.007514372002333403, 0.05069575086236, -0.0015831833006814122, 0.06411316990852356, 0.06693236529827118, -0.009868009015917778, -0.021925603970885277, -0.019032679498195648, -0.007219251245260239, 0.025773154571652412, -0.024902107194066048, 0.007297411095350981, -0.010742581449449062, -0.0418647900223732, -0.022204581648111343, -0.06619785726070404, -0.02353573776781559, -0.03698919340968132, -0.02866504341363907, 0.07007499039173126, 0.006651401985436678, 0.047481875866651535, 0.026719510555267334, -0.026688478887081146, -0.057013772428035736, 0.004086673725396395, 0.013184662908315659, 0.0037622246891260147, 0.05747264251112938, 0.003595964517444372, -0.031334288418293, 0.014449728652834892, 0.008038447238504887, -0.015725698322057724, -0.039772775024175644, 0.059649135917425156, -0.015805283561348915, -0.060369495302438736, 0.031978074461221695, 0.051523607224226, -0.05714638903737068, -0.023371770977973938, -0.006957995239645243, 0.012694308534264565, 0.021130001172423363, -0.02683483622968197, -0.0059587168507277966, -0.012045352719724178, -0.013070402666926384, 0.008060727268457413, 0.029146669432520866, 0.0032968006562441587, -0.0023840442299842834, -0.020412320271134377, 0.01784464716911316, -0.07540179789066315, 0.02795189432799816, 0.016268165782094002, 0.0052266656421124935, -0.049731798470020294, -0.02293870970606804, -0.005277009680867195, -0.009303472004830837, -0.009423192590475082, 0.05641027167439461, -0.027116626501083374, 0.017681682482361794, -0.019148381426930428, -0.015647433698177338, 0.046346187591552734, 0.005125236231833696, -0.004401286132633686, -0.00963103212416172, 0.017234236001968384, -0.04742472246289253, 0.0024225860834121704, -0.013194683939218521, 0.01481065433472395, 0.06798385828733444, -0.0014568816404789686, -0.0066781314089894295, 0.0392528735101223, -0.037762921303510666, 0.002805974567309022, -0.057840123772621155, -0.06140969321131706, -0.027754945680499077, -0.041855182498693466, -0.033599771559238434, -0.007730876095592976, 0.001775823999196291, 0.03648686408996582, 0.013028254732489586, -0.016033628955483437, -0.007447102107107639, 0.050440575927495956, -0.025659719482064247, 0.02355344407260418, -0.01910557970404625, 0.002514264080673456, -0.01485584955662489, -0.04595869407057762, -0.053883668035268784, -0.0025156198535114527, 0.006346836686134338, -0.004337414167821407, -0.02355160191655159, 0.03297724574804306, -0.0010269886115565896, 0.035699665546417236, -0.0035991345066577196, -0.01501031406223774, -0.04895281419157982, -0.05210871994495392, 0.002036489313468337, 0.03420683369040489, 0.011215473525226116, 0.024578610435128212, 0.03615015745162964, -0.014035363681614399, 0.03275740519165993, -0.007170241791754961, -0.03989222273230553, -0.017485076561570168, -0.003529352368786931, 0.038626279681921005, -0.0074253142811357975, -0.024350186809897423, -0.03973555937409401, 0.014634788036346436, -0.018507663160562515, 0.03554939106106758, 0.027740050107240677, 0.014361881650984287, 0.013403898105025291, -0.03477737307548523, -0.0016225215513259172, 0.07998357713222504, -0.01241658627986908, 0.049187108874320984, 0.013245233334600925, -0.012055548839271069, 0.03143084794282913, 0.03585367649793625, 0.002099414123222232, 0.02981194294989109, 0.002713562222197652, -0.01610323041677475, 0.04048869386315346, -0.010110479779541492, -0.018219448626041412, 0.04605499282479286, -0.017524514347314835, -0.03320082277059555, -0.009724559262394905, -0.017217449843883514, 0.01057439111173153, 0.0751398429274559, -0.0037898076698184013, -0.017141098156571388, 0.012193583883345127, -0.010158810764551163, -0.046424686908721924, 0.007630432490259409, -0.051666539162397385, -0.03282107412815094, 0.02376634068787098, -0.031217209994792938, -0.035080816596746445, 0.018193010240793228, -0.02537032775580883, 0.03148438408970833, 0.0013215418439358473, -0.013258094899356365, -0.06212412565946579, -0.016216037794947624, -0.014325539581477642, 0.030303088948130608, -0.02396930195391178, 0.0016441727057099342, 0.002502613002434373, 0.056607648730278015, -0.030497804284095764, -0.04655669629573822, 0.0320611409842968, 0.013412902131676674, 0.011004269123077393, -0.00914567057043314, -0.004832941107451916, 0.01265452429652214, 0.0143507681787014, 0.009887579828500748, -0.035489168018102646, 0.02795109897851944, -0.005945824086666107, 0.009571915492415428, 0.008782447315752506, -0.017623359337449074, -0.0121767558157444, 0.03519676998257637, 0.004469128791242838, -0.039916567504405975, -0.06307356804609299, 0.06600670516490936, 0.020970795303583145, -0.005275934934616089, 0.03774692863225937, 0.0017028134316205978, 0.04955562204122543, -0.00652602082118392, -0.01552433893084526, -0.01736856997013092, 0.05272306501865387, 0.048677388578653336, 0.03660497069358826, 0.016711043193936348, 0.01398348156362772, 0.03439728543162346, -0.016094010323286057, 0.002084142994135618, 0.034057244658470154, 0.014746291562914848, -0.058013834059238434, 0.031150102615356445, -0.04243207350373268, 0.013516287319362164, -0.0036288422998040915, -0.011296790093183517, -0.0038600959815084934, -0.0318775549530983, -0.02471919357776642, -0.016695577651262283, 0.00854156631976366, 0.03792981058359146, -0.024416258558630943, -0.009151581674814224, 0.00937457475811243, -0.049016404896974564, -0.009751853533089161, 0.017276829108595848, 0.005033552646636963, -0.00035078360815532506, 0.010297597385942936, -0.00016428636445198208, -0.03320154920220375, 0.04836886376142502, 0.020460044965147972, 0.005354335997253656, -0.023253651335835457, 0.008466665633022785, 0.013176938518881798, 0.002963233506307006, -0.03544177487492561, -0.0028958311304450035, -0.028559736907482147, 0.026756323873996735, -0.010386683978140354, -0.02981738932430744, 0.051841188222169876, -0.03387029469013214, -0.03482094034552574, -0.04029770568013191, 0.0628160908818245, -0.05345102399587631, -0.003191606141626835, 0.0271015428006649, 0.017861690372228622, -0.022751547396183014, 0.053055837750434875, 0.020854787901043892, 0.04094190523028374, 0.00490478053689003, 0.02633713372051716, 0.01138217095285654, 0.05056462436914444, 0.051946427673101425, -0.039004065096378326, -0.0011288595851510763, 0.009395888075232506, -0.04322875291109085, -0.04300118610262871, -0.02243111841380596, -0.03288142755627632, 0.01961441896855831, -0.028192315250635147, -0.019865918904542923, 0.011383164674043655, 0.035610005259513855, -0.007565038278698921, -0.020766133442521095, -0.010805070400238037, 0.04283976927399635, -0.06073235720396042, -0.006753517780452967, -0.01199315581470728, 0.04073230177164078, -0.021757276728749275, -0.0032564343418926, -0.04766044020652771, -0.027793657034635544, 0.010929347947239876, -0.0220872163772583, 0.04837501421570778, -0.020915647968649864, -0.029309900477528572, -0.017559850588440895, -0.05561979487538338, -0.027644168585538864, 0.0004477161855902523, -0.018026571720838547, -0.028337446972727776, 0.00997172575443983, 0.019077859818935394, 0.04305274039506912, 0.003148085670545697, -0.03277812525629997, -0.029927287250757217, 0.016443593427538872, 0.04723816365003586, 0.00427432544529438, 0.010798339731991291, 0.041776735335588455, -0.00818290002644062, 0.01251065544784069, -0.06083253026008606, 0.01649879850447178, -0.047199394553899765, -0.010171418078243732, -0.019376730546355247, 0.024763984605669975, -0.006379387341439724, -0.06714347004890442, 0.006758799310773611, -0.019069619476795197, -0.001897345413453877, 0.012979460880160332, -0.09314550459384918, 0.010883396491408348, -0.04105297103524208, -0.0286843441426754, -0.05103263631463051, 0.04084799438714981, 0.015550690703094006, 0.016021931543946266, -0.02655329369008541, -0.06708604842424393, 0.15375974774360657, 0.0414506234228611, 0.029221436008810997, -0.0072717429138720036, 0.020533734932541847, 0.025609685108065605, 0.0365225151181221, 0.009539298713207245, -0.015475870110094547, -0.024108797311782837, 0.024355139583349228, -0.01906558871269226, 0.037437018007040024, 0.027721716091036797, 0.008392971940338612, 0.038867056369781494, -0.03620019927620888, 0.029031241312623024, 0.026485182344913483, -0.03763727843761444, -0.03998788073658943, 0.013463274575769901, -0.012654871679842472, 0.02544163540005684, -0.0076875207014381886, 0.02063666097819805, 0.01036821585148573, -0.04804360866546631, 0.009433174505829811, 0.00358196091838181, 0.04499621316790581, -0.01099490188062191, 0.024931177496910095, -0.01006188802421093, -0.05143248289823532, 0.04288509488105774, 0.010373394936323166, -0.028857816010713577, -0.008742018602788448, 0.02919365093111992, 0.0027811198960989714, -0.009383230470120907, 0.026713170111179352, -0.05931132659316063, -0.02530052699148655, 0.04521109536290169, -0.02135196328163147, 0.005280747544020414, 0.061946362257003784, -0.043977055698633194, 0.035528603941202164, -0.05418643355369568, 0.021584410220384598, -0.017256837338209152, 0.03629261255264282, 0.03591569513082504, -0.02031458541750908, -0.04125961661338806, -0.015467512421309948, 0.029229968786239624, 0.05310184508562088, 0.0005293132271617651, -0.011856588535010815, 0.015909332782030106, -0.04268864169716835, 0.032474759966135025, 0.014311756938695908, 0.0005538732511922717, -0.023566655814647675, -0.022049913182854652, 0.005555838346481323, -0.028435450047254562, -0.003317691385746002, -0.0269339419901371, 0.03266330063343048, 0.005373483058065176, -0.012987300753593445, 0.02532275766134262, -0.002656852826476097, -0.0205161701887846, -0.005354615859687328, -0.03679759427905083, -0.012968095019459724, -0.043218012899160385, -0.011459512636065483, 0.031451135873794556, -0.04933645576238632, -0.06658493727445602, -0.008682778105139732, 0.020440975204110146, 0.04527928680181503, 0.020656628534197807, -0.04938691109418869, 0.016266606748104095, -0.006099093705415726 ]
Adinah Alexander (former Midwife, u/s Madame Morrible โ€“ Broadway; former swing โ€“ Broadway), Kristy Cates (former Elphaba, former s/b Elphaba โ€“ Chicago; former t/r Elphaba โ€“ 1st Natl. Tour; former ensemble, u/s Elphaba โ€“ Broadway) and Emily Mechler (ensemble, u/s Glinda โ€“ Broadway) will be featured in this week's BROADWAY SESSIONS. Created and hosted by Ben Cameron (former ensemble, u/s Witch's Father โ€“ Broadway; former ensemble โ€“ Pre-Broadway), BROADWAY SESSIONS is described as an evening of musical performances, games and open mic featuring a new Broadway guest each week. This week's BROADWAY SESSIONS will celebrate the holidays with an all-star concert event on December 19. Open Mic Party will follow the show. Reservations are strongly recommended and can be made by calling 212-695-6909. There is a $5 cover charge, which includes a donation to Broadway Cares/Equity Fights AIDS and a $15 food and beverage minimum. BROADWAY SESSIONS takes place every Thursday evening at The Laurie Beechman Theatre inside The West Bank Cafรฉ located at 407 West 42nd Street (corned of 42nd Street and 9th Avenue) in New York City. Doors open at 10:30 PM, showtime at 11 PM. For more information, visit BroadwaySessions.net. This entry was posted in Performer News and tagged Adinah Alexander, Ben Cameron, Emily Mechler, Kristy Cates. Bookmark the permalink.
[ -0.008059444837272167, 0.002482788637280464, -0.021771645173430443, 0.012030832469463348, -0.0017305540386587381, -0.025069866329431534, -0.028223620727658272, 0.02648535929620266, -0.017703061923384666, 0.006511684972792864, 0.039865922182798386, -0.002745532663539052, 0.014031067490577698, -0.0428217388689518, -0.019857650622725487, 0.005224005319178104, -0.03561760485172272, -0.016352996230125427, -0.009550286456942558, -0.0024933023378252983, -0.033128779381513596, 0.01575121469795704, -0.0839679166674614, 0.010992294177412987, -0.01891511119902134, 0.06489831209182739, 0.024739673361182213, -0.010903280228376389, 0.06295567005872726, 0.030277451500296593, -0.03426465392112732, -0.03964575380086899, 0.035814207047224045, -0.020703734830021858, -0.010413587093353271, -0.018344227224588394, 0.04069830849766731, -0.00506982346996665, -0.025206953287124634, -0.06845749169588089, -0.008754124864935875, 0.0006391568458639085, 0.034754566848278046, -0.04309514909982681, -0.046621378511190414, -0.005975799635052681, -0.018513541668653488, -0.005971291568130255, 0.03125050663948059, -0.060317687690258026, 0.000036060162528883666, -0.021290361881256104, -0.004394673742353916, 0.028041861951351166, 0.009803837165236473, 0.01659441366791725, 0.011842926032841206, -0.012642397545278072, -0.04859798401594162, 0.02560255490243435, 0.006116666831076145, 0.013428580947220325, 0.023837905377149582, -0.05176197364926338, 0.005998669192194939, 0.011851920746266842, -0.008132382296025753, -0.040180765092372894, 0.016024943441152573, -0.03179207071661949, 0.01853887178003788, 0.019709687680006027, -0.03815077617764473, -0.01118799950927496, 0.011081162840127945, -0.012740478850901127, -0.037956081330776215, -0.011404248885810375, 0.018372051417827606, 0.0287330262362957, 0.009255567565560341, 0.05414510890841484, 0.008356921374797821, 0.008710666559636593, -0.034805964678525925, 0.00021740011288784444, 0.013969667255878448, 0.011672564782202244, 0.018906740471720695, 0.03875313699245453, 0.009621445089578629, 0.06883221119642258, 0.017508232966065407, 0.012781333178281784, 0.03272886201739311, 0.04341786354780197, -0.05911340191960335, 0.002400012454017997, 0.022274883463978767, 0.006266463082283735, 0.007186645641922951, 0.005013174377381802, -0.02602013759315014, 0.021796081215143204, -0.03304849565029144, -0.04122170805931091, 0.03665840998291969, -0.024699214845895767, -0.022794008255004883, -0.010006740689277649, -0.006551561877131462, -0.016343513503670692, 0.026408595964312553, -0.019679654389619827, -0.010759899392724037, 0.03498055785894394, 0.022087842226028442, 0.031560204923152924, -0.060749977827072144, 0.0314461886882782, 0.022957658395171165, 0.026783708482980728, 0.04493667930364609, -0.02610267885029316, 0.034376922994852066, -0.020664291456341743, -0.05017903074622154, 0.06886287778615952, -0.015240414999425411, -0.03894505277276039, 0.005718058440834284, -0.03929340839385986, -0.010171663947403431, 0.012056100182235241, 0.0005379008362069726, 0.03490294888615608, -0.02056562714278698, 0.04138141870498657, 0.005716170184314251, -0.0743216946721077, 0.034533992409706116, 0.020255906507372856, 0.00331009435467422, 0.09134390205144882, 0.02500050514936447, 0.023357966914772987, 0.005948546342551708, 0.026351498439908028, -0.06477375328540802, 0.0160377100110054, -0.023463835939764977, 0.030410900712013245, -0.007459141779690981, 0.04051598906517029, -0.013705448247492313, -0.008642886765301228, -0.005331740714609623, -0.01678483374416828, 0.008208115585148335, 0.058118849992752075, -0.031033609062433243, -0.0030261713545769453, -0.03146067261695862, 0.01891619898378849, -0.01642220839858055, -0.009890429675579071, -0.007022208068519831, -0.011512360535562038, -0.008665262721478939, -0.04982013627886772, 0.021157745271921158, -0.012040096335113049, -0.015128949657082558, 0.03351092338562012, 0.00008943055581767112, 0.02128322795033455, 0.02872002124786377, -0.0070770056918263435, 0.011913016438484192, 0.025170965120196342, -0.05029454454779625, 0.01212267018854618, -0.0038446811959147453, 0.05793088302016258, 0.03227617219090462, -0.03546967729926109, 0.0007175412029027939, -0.027791330590844154, -0.05233985558152199, -0.010246881283819675, -0.01884579472243786, 0.024981360882520676, -0.04953061416745186, 0.016812950372695923, 0.014455325901508331, -0.004896404687315226, -0.025447579100728035, -0.016818799078464508, -0.05150555074214935, -0.0465351939201355, -0.021584946662187576, 0.04896878823637962, -0.03212803974747658, 0.03615270182490349, -0.014211521483957767, -0.050982631742954254, 0.018209803849458694, 0.04676903039216995, -0.04566548392176628, -0.0008840043446980417, 0.04011525586247444, 0.013999431394040585, -0.02650308795273304, -0.019992319867014885, -0.00694187032058835, -0.014936856925487518, -0.006730384659022093, 0.048464786261320114, -0.012845209799706936, 0.02481471374630928, 0.008360274136066437, 0.003417061176151037, 0.04504568874835968, 0.04521336778998375, -0.008807235397398472, -0.0010326729388907552, 0.05306508019566536, 0.025098027661442757, -0.009346210397779942, -0.00830488745123148, -0.003362725954502821, 0.03466944023966789, 0.03835880011320114, 0.07037554681301117, 0.05485418438911438, 0.009646219201385975, 0.0359598770737648, 0.030425403267145157, -0.009802252985537052, 0.00015617007738910615, -0.0014620154397562146, -0.01381632499396801, 0.0432095043361187, 0.025667620822787285, -0.013823219574987888, 0.04685087129473686, -0.014210639521479607, -0.03144961595535278, -0.008147403597831726, 0.001956166699528694, -0.00893336720764637, 0.04844575747847557, 0.03936144337058067, 0.03990227356553078, 0.002103677950799465, 0.03789592906832695, 0.05097447335720062, 0.06549561023712158, -0.014385423623025417, -0.014821309596300125, 0.0015162313356995583, 0.02339000254869461, -0.03423391655087471, 0.03774849325418472, 0.013246608898043633, 0.007641536649316549, 0.019395235925912857, 0.030331293120980263, -0.0002522874274291098, -0.06975492089986801, -0.04252791032195091, -0.06002984941005707, -0.030488774180412292, -0.013879775069653988, -0.016206616535782814, 0.008571664802730083, 0.030215956270694733, -0.022618314251303673, 0.037330497056245804, -0.002106619533151388, -0.020564788952469826, -0.04462267458438873, -0.01632104441523552, 0.03713715821504593, 0.04701715335249901, 0.019897902384400368, -0.024886557832360268, 0.029732486233115196, 0.023963702842593193, 0.027330754324793816, -0.03234897553920746, -0.005257716868072748, -0.01646871119737625, 0.021975718438625336, 0.03644280508160591, -0.026286136358976364, -0.04239344969391823, -0.00239150645211339, -0.020816659554839134, -0.04460785537958145, 0.011513881385326385, 0.01945221610367298, 0.04853791743516922, 0.02205655165016651, -0.058959297835826874, 0.050900477916002274, 0.05579093471169472, -0.017382139340043068, 0.05209590122103691, 0.026963302865624428, -0.023789461702108383, 0.048171885311603546, 0.030650770291686058, 0.0034339618869125843, -0.020063035190105438, 0.029892828315496445, 0.037470631301403046, 0.019591864198446274, -0.054567672312259674, -0.010707268491387367, -0.03740337863564491, -0.006064892280846834, 0.004688924644142389, -0.011469925753772259, -0.03333715721964836, 0.054474543780088425, 0.0020100127439945936, -0.07289717346429825, 0.04193175211548805, -0.05784221366047859, -0.008558963425457478, -0.027004191651940346, -0.02244599163532257, -0.009776406921446323, 0.007031972054392099, 0.05024157837033272, -0.010594315826892853, -0.015310967341065407, 0.003913754131644964, 0.02555806003510952, 0.0642179399728775, -0.036414604634046555, -0.007431098725646734, 0.018024401739239693, -0.017586182802915573, -0.0064165317453444, 0.018997732549905777, -0.043684665113687515, -0.034742459654808044, 0.0073572793044149876, -0.018327198922634125, -0.013677731156349182, 0.01845926232635975, -0.011868108995258808, 0.010986226610839367, 0.06088278442621231, -0.025127064436674118, 0.0009907507337629795, 0.011837308295071125, 0.026236839592456818, 0.017840145155787468, -0.010087024420499802, 0.03642672300338745, -0.051096152514219284, -0.02472653239965439, -0.0931260958313942, 0.040825583040714264, 0.02552550472319126, 0.055303964763879776, -0.08200538903474808, 0.051284272223711014, -0.0035366793163120747, -0.04676225408911705, 0.01911574974656105, -0.05868155136704445, 0.0040578218176960945, 0.03872949630022049, -0.040997955948114395, 0.02731087990105152, -0.01360807754099369, 0.033677272498607635, -0.033257316797971725, -0.01337136048823595, 0.05886058881878853, -0.037599172443151474, 0.016011973842978477, -0.040672365576028824, -0.032650336623191833, 0.004491559229791164, -0.0396430604159832, -0.019991323351860046, 0.007020668592303991, 0.03712451085448265, -0.006345213390886784, -0.038969736546278, -0.0454837903380394, 0.032159607857465744, 0.01039870921522379, 0.01691802218556404, 0.005984012968838215, 0.05742185190320015, 0.0018547021318227053, 0.04578990116715431, 0.046549584716558456, -0.00956365279853344, 0.006794842425733805, -0.061808910220861435, 0.0445927232503891, 0.012655419297516346, -0.0212464090436697, 0.015028601512312889, -0.03681270033121109, -0.03080621175467968, 0.030031681060791016, 0.008918647654354572, -0.022605253383517265, -0.06504368036985397, 0.038086652755737305, -0.02281433530151844, 0.01369398832321167, -0.018944839015603065, -0.04796532168984413, -0.039628736674785614, 0.025623848661780357, 0.008283210918307304, -0.03785953298211098, 0.008447442203760147, -0.0470135398209095, 0.07431673258543015, 0.04502396658062935, -0.03004971705377102, -0.05171460658311844, -0.022748617455363274, -0.02396548166871071, -0.0396125502884388, 0.02760942466557026, 0.030104300007224083, 0.0004562061803881079, 0.02201603166759014, -0.06401912868022919, 0.04848496615886688, 0.016513200476765633, -0.0022980300709605217, -0.0017182069132104516, 0.03559058532118797, 0.030394189059734344, 0.019787514582276344, 0.026925498619675636, -0.014544335193932056, -0.020095285028219223, 0.010623489506542683, -0.04318401217460632, 0.03246612101793289, 0.012496370822191238, -0.03273536264896393, 0.014724287204444408, 0.009074539877474308, 0.011409309692680836, 0.012023894116282463, -0.007940433919429779, 0.01879396103322506, 0.0019419739255681634, 0.049233969300985336, -0.01149026956409216, -0.00489742262288928, 0.029854657128453255, 0.01944155804812908, -0.0162794329226017, 0.015742402523756027, 0.07980465888977051, -0.007851632311940193, 0.017820097506046295, 0.006727502681314945, -0.02083458937704563, 0.031041761860251427, -0.043755169957876205, 0.0033951487857848406, -0.02716648019850254, -0.017803039401769638, 0.017047664150595665, -0.029790639877319336, 0.03896751254796982, 0.012302655726671219, 0.006812315434217453, -0.06653359532356262, -0.062094222754240036, -0.028731809929013252, -0.025416847318410873, -0.011878318153321743, 0.018307583406567574, 0.018701137974858284, -0.026745010167360306, 0.02634800225496292, -0.01818152517080307, 0.007540242280811071, 0.012338263913989067, -0.025217687711119652, 0.0014657183783128858, 0.012161378748714924, 0.026754887774586678, 0.028946027159690857, -0.03455958887934685, -0.012767728418111801, -0.0020266843494027853, -0.0060707260854542255, -0.041971355676651, -0.07124028354883194, -0.007720965426415205, -0.04372306540608406, -0.026257429271936417, -0.012168862856924534, -0.0151281813159585, 0.008453160524368286, 0.020832980051636696, 0.025450605899095535, -0.0014619056601077318, 0.012783740647137165, -0.007392533123493195, -0.009823647327721119, 0.017725083976984024, 0.028625380247831345, -0.020842155441641808, -0.041091497987508774, 0.047262921929359436, -0.03605365380644798, 0.046792056411504745, 0.007288070861250162, -0.021949682384729385, -0.04189185053110123, -0.02614588290452957, 0.010965882800519466, -0.024596311151981354, -0.026001468300819397, -0.03348767012357712, -0.002741721924394369, -0.05844253674149513, 0.030217856168746948, 0.0132327014580369, 0.002287063514813781, 0.007004414685070515, -0.03383655846118927, 0.01465699728578329, -0.05674547329545021, -0.017181016504764557, -0.01313557755202055, -0.008474547415971756, -0.007190024480223656, 0.048544760793447495, 0.003988331183791161, 0.004948522429913282, -0.004641217645257711, 0.006516029592603445, 0.02341093122959137, -0.033093348145484924, -0.02913418598473072, -0.017588041722774506, -0.008539075031876564, 0.0002798232017084956, 0.0364716500043869, 0.0036078437697142363, -0.03986436128616333, 0.03887437283992767, -0.053068552166223526, 0.008807316422462463, -0.0017508334713056684, -0.018971754238009453, 0.00039281765930354595, -0.035631079226732254, 0.07181132584810257, -0.03148038685321808, -0.019373664632439613, -0.021686270833015442, 0.041193053126335144, 0.046625927090644836, -0.004393623676151037, -0.05295854061841965, -0.015771906822919846, -0.03283050283789635, -0.054282862693071365, 0.014030726626515388, -0.025984356179833412, -0.04210488498210907, -0.017851270735263824, -0.014641807414591312, 0.039348725229501724, 0.002522948896512389, 0.04639953747391701, 0.0353303924202919, -0.009661071933805943, 0.007693045306950808, -0.05026129260659218, 0.010275976732373238, 0.01567859947681427, 0.016014857217669487, 0.0023822153452783823, -0.03331070393323898, -0.02873092144727707, -0.004888574127107859, -0.043336402624845505, 0.0025781039148569107, -0.03103678487241268, -0.034595295786857605, 0.053472794592380524, -0.03476159647107124, 0.06024864688515663, 0.0004361207829788327, -0.06151784211397171, -0.051541853696107864, 0.05208299309015274, 0.02025611139833927, 0.021458851173520088, 0.0318160355091095, -0.010518219321966171, -0.025950653478503227, -0.02086787298321724, -0.007813474163413048, -0.012082875706255436, -0.026570692658424377, 0.0598239041864872, -0.042030125856399536, -0.036193545907735825, 0.02996928244829178, 0.035114917904138565, -0.05280567705631256, -0.03446514531970024, 0.005445792339742184, 0.002432488603517413, 0.009749018587172031, -0.035649076104164124, 0.003642038907855749, -0.003933338914066553, -0.005598484072834253, 0.02803412452340126, 0.040330272167921066, -0.004940103739500046, 0.05953720957040787, -0.0046087284572422504, 0.05649338662624359, -0.028124429285526276, 0.004907466005533934, 0.030637098476290703, 0.0024370166938751936, -0.036183055490255356, -0.026390139013528824, -0.007845308631658554, -0.004563808441162109, -0.003863151650875807, 0.02510291151702404, -0.0006235260516405106, 0.02538772113621235, 0.03771044313907623, -0.01063117291778326, 0.04365471005439758, -0.008132154121994972, -0.030223650857806206, 0.02809375710785389, -0.022743109613656998, -0.038026075810194016, -0.02609400451183319, 0.02551855705678463, 0.0037968638353049755, 0.030713742598891258, -0.061263084411621094, -0.0077852108515799046, 0.03611363098025322, -0.028905726969242096, 0.019465912133455276, -0.05409134551882744, -0.019088536500930786, -0.0405135303735733, -0.04593817517161369, -0.020022671669721603, 0.010888541117310524, 0.005181289277970791, 0.021967295557260513, 0.003798456396907568, -0.06585490703582764, 0.000007651093255844899, -0.013480891473591328, -0.059249602258205414, 0.018759727478027344, -0.029739653691649437, 0.02610105462372303, -0.027580128982663155, -0.02572469413280487, -0.038455184549093246, -0.01518356055021286, -0.027735697105526924, -0.01680397242307663, 0.0052190921269357204, 0.02588796801865101, -0.02535921335220337, 0.02424742467701435, 0.0005599540891125798, 0.0025451069232076406, -0.01201673038303852, -0.005396653898060322, 0.0005090291379019618, 0.04480855539441109, -0.014482066966593266, 0.02970479056239128, 0.04854714497923851, -0.029791248962283134, 0.03812234848737717, -0.009146245196461678, -0.028606871142983437, -0.014548742212355137, -0.0036427141167223454, 0.003443831577897072, 0.013825425878167152, -0.04282614588737488, -0.011809061281383038, 0.01727309264242649, -0.03710535913705826, 0.05428521707653999, -0.017419826239347458, -0.005090353079140186, 0.038945406675338745, 0.012864802032709122, 0.008826445788145065, 0.06366419792175293, 0.02080831490457058, 0.04312155023217201, 0.007134748622775078, 0.006527608726173639, 0.02403193898499012, 0.003076158231124282, 0.01821884512901306, 0.019446250051259995, 0.0016642122063785791, -0.000657483353279531, -0.0002167359198210761, -0.013083003461360931, -0.013855642639100552, 0.030061621218919754, -0.011730928905308247, -0.04327499866485596, -0.025137100368738174, -0.027967723086476326, 0.03559671714901924, 0.06787329912185669, 0.014140745624899864, -0.02526296116411686, 0.03130074962973595, -0.05731664225459099, -0.05855654925107956, -0.0020763224456459284, -0.05016471818089485, -0.04579249024391174, 0.03980609029531479, -0.01329746376723051, 0.01753365248441696, 0.012838121503591537, 0.0018343721749261022, -0.007030265871435404, 0.026743045076727867, 0.013132440857589245, -0.06843528896570206, 0.039291489869356155, -0.003782150335609913, 0.05668521672487259, 0.028653191402554512, 3.9636219639760384e-7, 0.022010494023561478, 0.06323906034231186, -0.013805394060909748, -0.04276254028081894, 0.0008645930211059749, 0.027076320722699165, 0.0267287977039814, 0.006382236257195473, 0.017681995406746864, 0.015296697616577148, -0.0016266076127067208, 0.010559969581663609, 0.00879045482724905, 0.0072195823304355145, 0.005364255979657173, 0.005014364141970873, 0.0011726485099643469, 0.01403683889657259, -0.018810369074344635, 0.01127582136541605, -0.024448733776807785, 0.005490815732628107, -0.01930166780948639, 0.04857628419995308, 0.013076397590339184, -0.015818774700164795, 0.05965809151530266, 0.028910476714372635, 0.059813786298036575, -0.03810754418373108, 0.01818745955824852, -0.0006292304024100304, 0.049833253026008606, 0.023027366027235985, 0.00762243801727891, -0.007468270603567362, 0.01854938082396984, 0.04134736582636833, -0.00547547172755003, -0.0004662374558392912, 0.06077605113387108, 0.037330254912376404, -0.045147255063056946, -0.019377069547772408, 0.0058055161498487, -0.00351637601852417, 0.037750858813524246, -0.01941176876425743, 0.010461748577654362, -0.02527785673737526, -0.004549001343548298, -0.027400413528084755, -0.01776541769504547, 0.04946606233716011, -0.0363168902695179, 0.00903507973998785, -0.0025601328816264868, -0.00955185666680336, -0.011442224495112896, 0.060744065791368484, 0.008005380630493164, -0.005784389562904835, 0.03488495945930481, 0.027461208403110504, -0.0242005605250597, 0.038626205176115036, 0.031980957835912704, 0.029452728107571602, -0.0267901923507452, 0.020094970241189003, -0.004880389664322138, -0.012446591630578041, -0.022336743772029877, 0.024878444150090218, -0.033269282430410385, 0.04921121895313263, -0.05500257387757301, -0.04067406803369522, 0.039217717945575714, -0.06343506276607513, -0.023222345858812332, -0.02634291909635067, 0.04285753518342972, -0.030623016878962517, 0.008250819519162178, 0.03714575991034508, -0.010502155870199203, -0.012608545832335949, 0.04905278980731964, 0.024682659655809402, 0.04190751910209656, -0.02959098294377327, 0.023017974570393562, -0.010850358754396439, 0.0045049493201076984, 0.05239338055253029, -0.05682317912578583, -0.044560473412275314, 0.01593196950852871, -0.004130740649998188, -0.058402951806783676, -0.028673768043518066, -0.02791852504014969, -0.02296406961977482, -0.04229827597737312, 0.006710168905556202, 0.005621979013085365, 0.025903964415192604, -0.002848910167813301, -0.045262712985277176, 0.03681781142950058, 0.04289305955171585, -0.04412400722503662, 0.010863694362342358, 0.01632256619632244, 0.02954472228884697, -0.03606626018881798, -0.015066441148519516, -0.023102780804038048, -0.05969906598329544, 0.004979800432920456, -0.01145386602729559, 0.024443887174129486, -0.018057258799672127, -0.011781958863139153, -0.03278866782784462, -0.05077306553721428, -0.03522930666804314, 0.019433148205280304, -0.018776865676045418, -0.02542927674949169, 0.02514178492128849, 0.04778873920440674, -0.0020982648711651564, 0.012059060856699944, -0.038532111793756485, 0.006312974262982607, 0.026272384449839592, 0.056868769228458405, 0.00798092596232891, 0.03867451474070549, -0.00796501711010933, 0.0002703789796214551, -0.005082617048174143, -0.034096188843250275, 0.04274210333824158, -0.03058888204395771, 0.01501537673175335, -0.040826380252838135, 0.010229609906673431, -0.0122147835791111, -0.0439918078482151, 0.02014111541211605, -0.009701543487608433, 0.017791610211133957, -0.044238943606615067, -0.0540657676756382, -0.015287281014025211, -0.0386359877884388, -0.029380256310105324, -0.0626569539308548, 0.00932317040860653, 0.008016128093004227, 0.006899041589349508, -0.03350117430090904, -0.05203752964735031, 0.1829262226819992, 0.033772654831409454, 0.033995434641838074, 0.018876833841204643, 0.014602347277104855, 0.04500920698046684, 0.019699949771165848, -0.0046205539256334305, 0.009758359752595425, -0.02320599928498268, 0.014755629003047943, 0.020919809117913246, 0.037044428288936615, 0.03399192541837692, 0.0006718733347952366, 0.04315754771232605, -0.016566824167966843, -0.0039291949942708015, 0.014106787741184235, -0.04498884081840515, -0.048677559942007065, 0.018865298479795456, -0.0026783666107803583, 0.027718810364603996, -0.00810557696968317, 0.007503381930291653, 0.007161135319620371, -0.028305716812610626, -0.016720840707421303, -0.03012310154736042, 0.02366536669433117, -0.02410038560628891, 0.052876219153404236, 0.028266366571187973, -0.0268056932836771, 0.0580364465713501, -0.017504192888736725, -0.05109977722167969, 0.009925306774675846, 0.030339112505316734, -0.04779334366321564, 0.01804785616695881, 0.05449238792061806, -0.03913842514157295, 0.0071165720000863075, 0.01531203929334879, -0.04031044989824295, 0.015191574580967426, -0.0019004351925104856, -0.03493223339319229, 0.04419226199388504, -0.034641798585653305, 0.03991004079580307, -0.010014507919549942, -0.005590343847870827, 0.005089700222015381, 0.006164917256683111, -0.04358633607625961, -0.01284265797585249, 0.028139282017946243, 0.041131291538476944, 0.0027087077032774687, -0.047280799597501755, 0.010900660417973995, -0.023048648610711098, -0.015889843925833702, 0.020199954509735107, -0.006165703758597374, -0.02189640700817108, -0.021504800766706467, -0.03347228839993477, 0.00948650948703289, -0.009227244183421135, -0.024479689076542854, 0.011053210124373436, 0.0126475365832448, -0.019110476598143578, 0.06563421338796616, -0.002642146311700344, -0.028323696926236153, 0.007203451357781887, -0.01632300205528736, 0.017147615551948547, -0.005705744028091431, 0.036333564668893814, 0.04067511856555939, -0.03880222886800766, -0.01897178217768669, -0.03519876301288605, 0.050184816122055054, 0.02983364649116993, 0.016895493492484093, -0.0125011270865798, -0.014481551945209503, -0.0409749373793602 ]
Hi crafters! This month is full of birthday goodness for Tutti Designs as the team shares various dies perfect for that special occasion.. Today I am using Tutti-291 Cupcake. This dies measures 4x4 a perfect card front for a birthday card. I used some glitter paper for the outer edge of the die and brightened up the middle just like a cupcake and popped on a bright red cherry from red foil paper.
[ -0.01721554435789585, 0.011627656407654285, -0.0007380694150924683, -0.02098907344043255, -0.07085984200239182, -0.036373186856508255, 0.018451105803251266, 0.015404374338686466, 0.031780440360307693, 0.02088037133216858, 0.00008884354610927403, 0.0249197855591774, 0.010060307569801807, 0.005724987480789423, -0.022473149001598358, 0.011056150309741497, 0.0013642742997035384, -0.03518306091427803, -0.008770160377025604, 0.01936633512377739, -0.03249764069914818, 0.014654062688350677, -0.08568080514669418, -0.022398466244339943, 0.004409474786370993, 0.030898766592144966, 0.020518310368061066, 0.00881512463092804, 0.0671793520450592, 0.045044492930173874, -0.04109085723757744, -0.032180026173591614, 0.031233642250299454, -0.06331145018339157, -0.015701010823249817, -0.013311569578945637, 0.030627623200416565, -0.012951910495758057, -0.016007235273718834, -0.04476204141974449, 0.03491708263754845, -0.005204022396355867, 0.05450941622257233, -0.019836241379380226, -0.054743703454732895, -0.0005267526721581817, 0.0019507573451846838, -0.021497158333659172, 0.015316633507609367, -0.04361795261502266, 0.002495955443009734, -0.0009395187953487039, -0.0008156686672009528, -0.023622887209057808, -0.0008908500894904137, 0.024586670100688934, 0.015979379415512085, -0.03743334487080574, -0.02703256905078888, 0.04221370816230774, -0.012828520499169827, -0.017930341884493828, 0.022828958928585052, -0.08808690309524536, 0.0033183577470481396, 0.01936107873916626, -0.022215597331523895, -0.019551759585738182, 0.009351641871035099, -0.015412118285894394, -0.0022767293266952038, 0.011186182498931885, -0.03457173332571983, -0.007225371431559324, -0.012782805599272251, -0.0034129431005567312, -0.00026427090051583946, 0.00133306544739753, -0.018388183787465096, 0.0035363140050321817, 0.012053769081830978, 0.028709808364510536, -0.006998964585363865, 0.029337193816900253, -0.03856300935149193, -0.03739107772707939, 0.009406077675521374, 0.031106144189834595, 0.040855661034584045, 0.00508669251576066, 0.009615395218133926, 0.04735252261161804, 0.004287968389689922, -0.011643691919744015, 0.045011863112449646, 0.06706099212169647, -0.017088960856199265, 0.044170718640089035, 0.009743898175656796, -0.00639499444514513, 0.0524369478225708, 0.004118951503187418, 0.004909495357424021, 0.04373420029878616, -0.029994813725352287, -0.017971109598875046, 0.006456209812313318, -0.003720837412402034, 0.0028383678290992975, -0.0016099245985969901, -0.010388142429292202, -0.05206349492073059, 0.030506405979394913, 0.025262685492634773, -0.015104884281754494, 0.05843755975365639, -0.01147892139852047, 0.054788049310445786, -0.031036702916026115, -0.006070961244404316, 0.031963616609573364, 0.015474982559680939, 0.02595919370651245, -0.016460182145237923, -0.026784850284457207, -0.027428578585386276, -0.04944245517253876, 0.07094437628984451, -0.011001551523804665, 0.014009753242135048, 0.0036959771532565355, -0.06483952701091766, 0.00897378008812666, 0.02112709917128086, 0.01965598575770855, 0.03877396881580353, -0.03876054659485817, 0.021167602390050888, 0.03406425938010216, -0.07238520681858063, 0.03787383809685707, 0.021176055073738098, 0.0023094061762094498, 0.06550183147192001, 0.008214413188397884, 0.02183683030307293, 0.020232781767845154, 0.015825945883989334, -0.03440656140446663, 0.006725740153342485, -0.012260034680366516, 0.0017868197755888104, 0.017416050657629967, 0.049169693142175674, 0.02946826070547104, 0.015004562214016914, -0.0149795301258564, -0.012543613091111183, -0.02969410829246044, 0.01949397660791874, -0.003938686568289995, -0.013670665211975574, 0.01124008558690548, 0.03618429973721504, -0.0014678534353151917, 0.04413358122110367, -0.04020726680755615, 0.010809523053467274, -0.02948697656393051, -0.05703010410070419, 0.019192971289157867, 0.01995026506483555, -0.014753326773643494, 0.004742384888231754, 0.011047878302633762, 0.042089082300662994, 0.0483395978808403, -0.0014072413323447108, 0.047965385019779205, 0.05601835623383522, -0.048664290457963943, -0.008814056403934956, 0.00791104231029749, 0.07062774151563644, 0.009813176468014717, -0.013710892759263515, -0.009347415529191494, -0.052703436464071274, -0.0007730082725174725, -0.03617158532142639, -0.029440274462103844, 0.027313746511936188, -0.025786692276597023, 0.025071753188967705, 0.017425598576664925, 0.014935389161109924, 0.013868501409888268, 0.008320341818034649, -0.005619438830763102, -0.0433356873691082, -0.027369635179638863, 0.04899297654628754, -0.032933156937360764, 0.009608691558241844, -0.0032802203204482794, -0.023459751158952713, 0.000375759438611567, 0.05905821546912193, -0.04199555516242981, -0.0008438550867140293, 0.029630661010742188, -0.005373524036258459, -0.010422852821648121, 0.02754358761012554, -0.01488125417381525, -0.014113245531916618, 0.008003216236829758, 0.042233213782310486, -0.03334161266684532, 0.006334768142551184, 0.0067814928479492664, 0.03834220767021179, 0.019025228917598724, 0.027852343395352364, -0.04434085264801979, 0.0018142502522096038, -0.0015391719061881304, 0.05381821095943451, 0.0012013711966574192, 0.007160907611250877, -0.019741162657737732, 0.04989032447338104, 0.04345444217324257, 0.06674910336732864, 0.05931030958890915, 0.026072537526488304, 0.03269529342651367, -0.025086572393774986, -0.023249570280313492, 0.025656219571828842, -0.00026333346613682806, -0.013171317987143993, 0.028277285397052765, 0.03041004203259945, -0.0010735651012510061, 0.05004340782761574, -0.002484641969203949, -0.0024076225236058235, 0.006528419442474842, 0.018115045502781868, -0.006625229027122259, 0.024510670453310013, 0.01415269635617733, 0.038318317383527756, -0.0030912337824702263, -0.0024419447872787714, 0.011964184232056141, 0.04652899503707886, 0.02163931168615818, -0.0008380342042073607, 0.024189084768295288, 0.017598168924450874, 0.012726495042443275, 0.0017016282072290778, 0.03211547061800957, 0.05300609767436981, 0.031213844195008278, 0.015211290679872036, -0.02219507098197937, -0.03787250071763992, -0.06204631179571152, -0.05691127851605415, -0.062195274978876114, -0.029228417202830315, -0.02824210561811924, -0.0012204640079289675, 0.05651805177330971, -0.038033150136470795, 0.01467986311763525, -0.017006000503897667, -0.007074649911373854, 0.00675277691334486, -0.025886861607432365, 0.052824314683675766, 0.0026361977215856314, 0.05777304619550705, -0.04341626539826393, 0.02380293421447277, 0.009959163144230843, 0.02473563328385353, -0.03060338646173477, 0.012567245401442051, -0.00944562442600727, -0.005010157357901335, 0.012945120222866535, -0.009065165184438229, -0.03708554804325104, -0.007847369648516178, -0.003155809361487627, -0.06279119104146957, 0.01074219960719347, 0.016554400324821472, 0.009744936600327492, -0.01554044522345066, -0.03422844409942627, 0.013486359268426895, 0.03654569759964943, -0.028484227135777473, 0.02753349207341671, 0.02879965864121914, -0.04060223326086998, 0.04594986140727997, 0.04404360055923462, -0.004151265602558851, -0.05394472926855087, 0.050775740295648575, 0.059000324457883835, 0.007925299927592278, -0.01904289238154888, -0.004241750575602055, -0.026900434866547585, 0.022168930619955063, 0.012883299961686134, -0.01319332979619503, -0.03703805059194565, 0.04208582639694214, 0.012837277725338936, -0.05453838035464287, 0.0008131299982778728, 0.0009364516590721905, -0.02890460006892681, 0.015075905248522758, -0.018141670152544975, 0.028192024677991867, 0.011148432269692421, -0.0077767460606992245, -0.0005503199645318091, -0.012903016991913319, -0.004123638849705458, -0.01215668860822916, 0.058197733014822006, -0.030940895900130272, 0.0007154577760957181, 0.048025064170360565, -0.0242085549980402, 0.010724330320954323, 0.047707948833703995, -0.027789989486336708, -0.03498059883713722, -0.008171570487320423, 0.0017377824988216162, 0.0036915659438818693, 0.03835703432559967, -0.007704133167862892, 0.017171284183859825, 0.06902263313531876, -0.04514920338988304, -0.026609761640429497, 0.031648386269807816, 0.014943189918994904, 0.030472319573163986, 0.012809766456484795, 0.023830946534872055, -0.040755681693553925, -0.014649536460638046, -0.06764286756515503, 0.0379512682557106, 0.003058211412280798, 0.05063018202781677, -0.0342288538813591, 0.038691114634275436, -0.0012825877638533711, -0.007382587995380163, 0.024697326123714447, -0.04055380821228027, 0.005031566135585308, 0.04140016809105873, 0.00115864141844213, 0.036207668483257294, -0.013243922032415867, 0.016491085290908813, -0.002620040439069271, 0.01680329255759716, 0.03782755136489868, -0.02657458744943142, 0.04103301092982292, 0.02027755230665207, -0.005476198624819517, 0.000577671336941421, -0.0076454938389360905, -0.003272795118391514, -0.004849915858358145, -0.007358703762292862, -0.026562463492155075, -0.04183438420295715, -0.04413975775241852, -0.0027657507453113794, 0.011418500915169716, 0.03757704049348831, -0.022665342316031456, -0.003983438014984131, 0.020785637199878693, 0.026517240330576897, 0.06629243493080139, -0.024184903129935265, 0.009510406292974949, -0.058412592858076096, 0.05772562697529793, 0.027410751208662987, -0.03550343215465546, -0.0073506515473127365, -0.027973433956503868, -0.02924467995762825, 0.010197754018008709, 0.017785686999559402, -0.02839682623744011, -0.042882196605205536, 0.03503883630037308, -0.04921956732869148, 0.03388417884707451, -0.021309655159711838, -0.024619711562991142, -0.03800155222415924, -0.014685914851725101, 0.005989894270896912, -0.05625415965914726, 0.018554722890257835, -0.004845526535063982, 0.05615983530879021, 0.0370086245238781, -0.0035876985639333725, -0.03141060471534729, -0.024909427389502525, -0.03203963860869408, -0.0201135091483593, -0.012445077300071716, 0.014344667084515095, 0.022176073864102364, 0.052458640187978745, -0.046080101281404495, 0.03325800970196724, 0.021247809752821922, -0.02052704431116581, 0.007103475742042065, 0.01778949797153473, 0.021092241629958153, 0.01997045986354351, 0.05936780944466591, -0.009676632471382618, -0.02428627945482731, 0.032801151275634766, -0.03959828242659569, -0.0073604765348136425, 0.004106477834284306, 0.004403184168040752, 0.004086265806108713, -0.006450403947383165, 0.041895151138305664, 0.02465485967695713, -0.029842065647244453, 0.005279524251818657, -0.035365063697099686, 0.028207343071699142, -0.035654064267873764, -0.027347300201654434, 0.0291951522231102, 0.007913055829703808, -0.012550102546811104, 0.04809802025556564, 0.042601924389600754, -0.04159079119563103, -0.0033164292108267546, 0.01857433095574379, -0.04356926679611206, 0.014594991691410542, -0.030597375705838203, 0.022886093705892563, -0.044682376086711884, -0.012495656497776508, -0.01005793921649456, -0.026458987966179848, 0.03493761271238327, -0.007031355518847704, -0.025267217308282852, -0.03815139830112457, -0.05120043829083443, -0.01883997581899166, 0.018941285088658333, -0.04321427643299103, 0.018855668604373932, -0.0019896032754331827, -0.055507808923721313, -0.025808295235037804, -0.05654967203736305, 0.014853652566671371, -0.00014160080172587186, -0.06968916952610016, 0.01722743548452854, 0.008018052205443382, 0.018564587458968163, 0.020228318870067596, 0.039085112512111664, -0.040344156324863434, 0.01358698308467865, -0.0026805209927260876, -0.0016382129397243261, -0.06531833112239838, 0.01565803587436676, -0.042732711881399155, -0.038146693259477615, -0.043702900409698486, 0.03312066197395325, -0.012147254310548306, -0.011766134761273861, 0.05270204320549965, 0.022296825423836708, 0.03475692495703697, -0.014511749148368835, -0.06561587005853653, 0.04042712599039078, 0.019466254860162735, -0.037853892892599106, -0.0443035326898098, 0.0457250252366066, 0.001365668373182416, 0.03692140057682991, -0.014280510134994984, -0.011056061834096909, -0.05761190503835678, -0.058066848665475845, -0.011904670856893063, -0.04615284502506256, -0.014150547794997692, -0.06042322516441345, -0.0635109469294548, 0.01245090551674366, 0.01930917799472809, -0.012179623357951641, -0.04259336367249489, -0.003892258508130908, -0.06904152780771255, -0.013539076782763004, -0.0194685198366642, -0.04419904947280884, -0.02914343774318695, 0.006899517960846424, -0.00388884823769331, 0.05359669774770737, -0.04084416478872299, 0.04306887462735176, -0.009740450419485569, 0.011525250039994717, 0.01968681439757347, -0.011265759356319904, -0.029783887788653374, -0.03662094846367836, -0.010167663916945457, -0.01635584980249405, 0.009721769951283932, -0.01416059024631977, -0.06303178519010544, 0.059416208416223526, -0.04395199939608574, 0.020438428968191147, -0.038968078792095184, -0.01820388250052929, -0.026320187374949455, -0.020037272945046425, 0.05204242840409279, -0.05351492390036583, 0.0028737362008541822, -0.046770643442869186, 0.004527871496975422, 0.05226324126124382, 0.030107542872428894, -0.019263489171862602, -0.03646492585539818, -0.04902079701423645, -0.03009381704032421, 0.02246175706386566, -0.0323263555765152, -0.006090291775763035, -0.03599974513053894, -0.02796442061662674, 0.018214184790849686, -0.012437626719474792, 0.029879434034228325, 0.06957624107599258, -0.006794700864702463, 0.009176078252494335, -0.014036091044545174, -0.0125486571341753, 0.02792150154709816, -0.018882043659687042, 0.002990392269566655, -0.02226823754608631, -0.033262938261032104, 0.01119853463023901, -0.06379228085279465, -0.030703505501151085, -0.051391441375017166, 0.01590956747531891, 0.05322333425283432, -0.03737771883606911, 0.06774955242872238, -0.03080604039132595, -0.06242167577147484, -0.0319795235991478, 0.06867989897727966, -0.004137624986469746, 0.022604139521718025, 0.056028544902801514, 0.015490305610001087, -0.008526468649506569, 0.016073133796453476, -0.026802310720086098, -0.005213984753936529, -0.04386373981833458, 0.061980508267879486, 0.002609423128888011, -0.05214468762278557, 0.05394333600997925, 0.039041414856910706, -0.03303065150976181, -0.028256580233573914, -0.0000429215760959778, 0.023239294067025185, -0.0024558205623179674, -0.03199359402060509, 0.01692957431077957, 0.0005914630019105971, -0.01835486851632595, 0.021558208391070366, 0.03172408044338226, -0.021354759112000465, 0.03917768970131874, -0.002088821493089199, 0.04905088245868683, -0.02719389647245407, -0.006435445975512266, 0.021137652918696404, 0.006723698694258928, -0.03147251158952713, -0.03605295345187187, -0.024470293894410133, -0.02365228720009327, -0.008345233276486397, 0.04579140245914459, -0.010869591496884823, 0.0030253578443080187, 0.01609627902507782, -0.027442567050457, 0.06728260219097137, -0.008804833516478539, 0.0018806873122230172, 0.005672046914696693, -0.049956921488046646, -0.041336096823215485, -0.04333265498280525, 0.017273271456360817, -0.03588856756687164, 0.022492198273539543, -0.026331963017582893, -0.014605017378926277, 0.041533906012773514, 0.03884119167923927, -0.015837598592042923, -0.04826773330569267, -0.04221609607338905, -0.03660205379128456, -0.0359463132917881, -0.04639839753508568, -0.022897345945239067, -0.013540264219045639, 0.044192492961883545, 0.002594438148662448, -0.02353009581565857, 0.0008116660173982382, -0.004764558281749487, -0.025380777195096016, 0.007929629646241665, -0.042009640485048294, 0.02596692368388176, -0.016497259959578514, -0.05612736940383911, -0.050425224006175995, -0.009339684620499611, -0.015123643912374973, 0.013921557925641537, -0.024816378951072693, 0.020195282995700836, -0.018887104466557503, 0.056956179440021515, 0.005080736242234707, 0.02159282937645912, -0.021930431947112083, -0.053876183927059174, -0.01910020038485527, 0.028949934989213943, -0.021584603935480118, 0.023424679413437843, 0.0272909477353096, -0.0369308665394783, 0.04309146851301193, 0.01831551268696785, -0.03833882510662079, -0.04616723209619522, -0.011500355787575245, 0.0012982368934899569, 0.014830332249403, -0.05377833917737007, -0.008807426318526268, -0.011823773384094238, -0.053563859313726425, 0.013954730704426765, -0.05584951117634773, 0.006803499534726143, 0.02734399400651455, -0.008984128944575787, -0.026173580437898636, 0.045142631977796555, 0.0036849859170615673, 0.017856234684586525, 0.007382924202829599, -0.002274609636515379, 0.03178342431783676, 0.021067196503281593, 0.025884874165058136, 0.030742846429347992, 0.021969947963953018, -0.019991813227534294, 0.03519189730286598, -0.0042638834565877914, -0.029713554307818413, 0.04110466316342354, -0.039749059826135635, -0.02193761244416237, -0.030776817351579666, 0.0018046058248728514, -0.00919179618358612, 0.016556376591324806, -0.006561754737049341, -0.019725782796740532, 0.03928329423069954, -0.041698310524225235, -0.021627863869071007, 0.004171501379460096, -0.045317694544792175, -0.05734950304031372, 0.059402886778116226, -0.01710169017314911, 0.03320262208580971, 0.01341756246984005, -0.0066468194127082825, 0.025905916467308998, -0.0027337963692843914, 0.00701630674302578, -0.018197396770119667, 0.042973585426807404, -0.04868270829319954, -0.004929525777697563, -0.02491646818816662, -0.002648972673341632, 0.02634032443165779, 0.04886288195848465, -0.03470965474843979, -0.05139310657978058, 0.03867891803383827, 0.013846946880221367, 0.013956042937934399, -0.007802613545209169, 0.005432393867522478, 0.017097167670726776, 0.001249469816684723, 0.01632615365087986, 0.00898103229701519, 0.043255437165498734, -0.028597136959433556, 0.04022461175918579, 0.0010967646958306432, -0.0036119353026151657, -0.02847377210855484, 0.03799544647336006, -0.011159307323396206, -0.01346511673182249, -0.026364974677562714, 0.07206092029809952, 0.043648283928632736, -0.021374203264713287, 0.059887465089559555, 0.0014594593085348606, 0.04744323343038559, -0.03890050947666168, 0.004825981333851814, -0.027163295075297356, 0.015395993366837502, 0.02378821186721325, 0.02169162780046463, -0.025158716365695, 0.043411631137132645, 0.04796547815203667, -0.00004434808579389937, 0.032792411744594574, 0.02079620771110058, 0.012995867058634758, -0.04383738338947296, 0.008757892064750195, -0.005625487770885229, 0.02976631186902523, -0.005068151745945215, 0.02007804624736309, 0.019817113876342773, -0.03237320855259895, -0.008601488545536995, -0.022806799039244652, -0.02983369678258896, 0.03196530416607857, -0.018824206665158272, 0.01235156413167715, 0.0055091665126383305, -0.0032930574379861355, 0.0015847302274778485, 0.042814429849386215, 0.0018212063005194068, 0.016217565163969994, 0.029366083443164825, 0.038924410939216614, 0.00801874790340662, 0.07482039928436279, 0.015949387103319168, 0.024940941482782364, -0.009016312658786774, 0.01739218831062317, 0.01379117090255022, 0.010068323463201523, -0.015921512618660927, 0.01809157431125641, -0.028972869738936424, 0.04579666629433632, -0.04489936679601669, -0.03348611295223236, 0.027648163959383965, -0.039348963648080826, -0.01859416998922825, -0.053628940135240555, 0.0709715485572815, 0.011799008585512638, 0.022463688626885414, 0.0376492403447628, -0.02769911102950573, -0.01729438826441765, 0.05502346530556679, -0.01740483194589615, 0.004346747882664204, 0.037424009293317795, 0.0424126535654068, 0.011546467430889606, 0.03369041532278061, 0.03652501851320267, -0.021680908277630806, 0.013374566100537777, 0.021267609670758247, -0.03491414710879326, -0.035112280398607254, 0.015180365182459354, -0.020346658304333687, -0.004376963246613741, -0.00991736352443695, 0.016740741208195686, -0.0015311400638893247, -0.0009105457575060427, -0.030407583341002464, -0.03207165747880936, -0.0017922245897352695, 0.014441372826695442, -0.044156741350889206, -0.014273501932621002, 0.007716321386396885, 0.007227508816868067, -0.042838092893362045, 0.010605037212371826, -0.047827303409576416, -0.021089890971779823, -0.008021099492907524, -0.01992516592144966, 0.018604455515742302, 0.008368714712560177, -0.04130587354302406, -0.03664958104491234, -0.06055817753076553, -0.02230369858443737, 0.0175156407058239, -0.040649354457855225, -0.025630364194512367, 0.051288772374391556, 0.04311897233128548, -0.012711522169411182, 0.005016738548874855, -0.007790805771946907, -0.007259644567966461, 0.038080111145973206, 0.0759776383638382, 0.008902030996978283, 0.01576847955584526, 0.046382226049900055, 0.0008322249632328749, 0.01207621768116951, -0.019918572157621384, 0.013190824538469315, -0.02163754776120186, 0.022208338603377342, -0.0312174241989851, 0.02614383026957512, -0.0134802907705307, -0.055050354450941086, -0.013615184463560581, 0.021692311391234398, 0.03561211749911308, -0.03791641816496849, -0.07988697290420532, -0.015977852046489716, -0.045060258358716965, -0.0025217982474714518, -0.04385630786418915, 0.02324904315173626, 0.02192564308643341, 0.0023683388717472553, 0.015599249862134457, -0.06085411459207535, 0.1350434422492981, 0.04686029627919197, 0.022427240386605263, 0.022105159237980843, 0.031333036720752716, 0.03542547672986984, 0.019661815837025642, -0.017031144350767136, -0.0329173281788826, -0.03660846874117851, 0.06314534693956375, -0.010951104573905468, 0.03609001636505127, -0.017844101414084435, 0.041709382086992264, 0.047863226383924484, -0.023747462779283524, 0.03071623668074608, -0.009691229090094566, -0.044395025819540024, -0.04584798216819763, 0.023860637098550797, 0.01827867329120636, 0.022045811638236046, -0.008441342040896416, -0.005945231765508652, -0.011891962960362434, -0.03986595571041107, 0.009736990556120872, -0.05219521373510361, 0.022494016215205193, -0.022575968876481056, 0.027939733117818832, -0.009108800441026688, -0.028305329382419586, 0.060253363102674484, -0.015836479142308235, -0.007177633699029684, 0.009280663914978504, 0.016250435262918472, -0.01374516449868679, 0.016225649043917656, 0.03425109013915062, -0.03212376683950424, 0.0018600590992718935, 0.024332497268915176, -0.03566646948456764, 0.04707785323262215, 0.012763681821525097, -0.05668080598115921, 0.07119031250476837, -0.029308883473277092, 0.03299376741051674, 0.006596478633582592, -0.04980217665433884, 0.0015601565828546882, 0.007642024662345648, -0.03176495060324669, 0.0186904463917017, 0.019913043826818466, -0.00890752300620079, 0.005793787073343992, -0.02511722221970558, -0.010275972075760365, -0.05536080151796341, 0.0042025079019367695, 0.012672297656536102, 0.01277182251214981, 0.008632885292172432, -0.02907075360417366, 0.0016911255661398172, -0.0038964548148214817, 0.0030608128290623426, -0.037664975970983505, 0.03195774927735329, 0.032057248055934906, -0.04877477139234543, 0.06800779700279236, 0.013628506101667881, -0.02870195358991623, 0.014948978088796139, -0.04848489910364151, -0.012870865873992443, 0.010769662447273731, 0.033245354890823364, 0.02413533814251423, -0.031291086226701736, -0.02184322290122509, -0.010909239761531353, 0.057426899671554565, 0.04269128292798996, 0.05630975961685181, -0.007451980374753475, 0.004892448894679546, -0.015524999238550663 ]
Unclogging a bathtub drain is an unfortunate and inconvenient fact of life. Most clogs occur as a result of a build-up of hair, grease and other organic matter on the interior walls of the plumbing pipes. This accumulation can, over time, become impassable and sticky and eventually, a wad of hair or clump of soap can become lodged and will hinder the flow until water begins to back up in the pipes. Unclogging a bathtub drain should be done as soon as you notice that there is a blockage. Often, homeowners will continue to use the tub and put up with its slow emptying, but this is a problem that won't go away on its own. Time to roll up your sleeves and fix it properly. If the water backs up rapidly whenever you use the drain, it means the blockage is most likely close to the tub's drain opening. You'll often find that hair clogs will form around the stopper mechanism. Preventing this is easy. Use a stainless steel strainer over the drain when you empty the tub. They only cost a dollar or so but they keep hair from going where it shouldn't. Unclogging a bathtub drain is required far less frequently if you can avoid allowing hair to become a nuisance. Sometimes you can actually grab hold of a few strands of hair in the drain and pull them, and you'll find that a large clump will follow. Try using a wire coat hanger, bent to suit the purpose, or a pair of tweezers to grab the hairs. Failing the above possibility, you can use a plumber's "snake" tool to poke down into the drain and clear the blockage. Either you will dislodge it by pushing it with the snake allowing it to flow further down and out, or you might be able to hook it and pull it out. Unclogging a bathroom drain can also call for the use of a rubber plunger. Remove the drain strainer and position the plunger over the mouth of the drain. Using a pumping action, the suction should help to dislodge the blockage. You'll need to run the water to flush the debris out of the system. When unclogging a bathtub drain, try taking off the overflow assembly plate and then remove the trip which works as a plunger and whose purpose is to trap hair. Unscrew the screws that hold the assembly plate on, take it off and you can remove the hair from the trip. In some cases, it can be helpful unclogging a bathtub drain with chemical products. Sometimes what is needed is to dissolve and break down the greasy substances that collect on the pipes. Preferably, you will exhaust the other options mentioned above, since pouring chemicals down the drain is not particularly friendly to the environment. Some unclogging products are made without harsh chemicals and they rely on natural acids to do the job. If all your attempts at unclogging the bathtub drain have been unsuccessful, you might have to call a plumber to clear the blockage for you. He may remove the trap under the tub or may need to access the pipes via the basement so watch what he does in case the clogging happens again and you may be able to do it yourself the next time. Still, preventing the blockage from happening in the first place will save a lot of hassle and inconvenience. Be aware of what you allow to flow down the drain, remove hair regularly and throw soap bits away before they have a chance to wash away through the plumbing.
[ -0.03689416125416756, -0.0012580174952745438, -0.0049192518927156925, -0.0022193582262843847, -0.041530072689056396, 0.007997964508831501, 0.00619362760335207, -0.0007088594720698893, 0.024867070838809013, 0.04497518762946129, 0.045463867485523224, 0.005175015889108181, 0.0034322435967624187, -0.027870098128914833, -0.04269340634346008, 0.018238089978694916, -0.019156059250235558, -0.05843556672334671, -0.029762571677565575, 0.02671072632074356, 0.01806713081896305, 0.01512165181338787, -0.03001358173787594, -0.023805607110261917, -0.026618963107466698, 0.05306817591190338, 0.028510218486189842, -0.010536213405430317, 0.03911997005343437, 0.06302493810653687, -0.01653505489230156, -0.01000148430466652, 0.029798278585076332, -0.036099232733249664, -0.010485480539500713, -0.022043326869606972, 0.029010316357016563, -0.03774877265095711, -0.012825747951865196, -0.059797994792461395, -0.013496406376361847, 0.008626979775726795, 0.02491634711623192, -0.0480257011950016, -0.018908154219388962, 0.027952656149864197, -0.005943235009908676, 0.001289615174755454, -0.006406063679605722, -0.044007718563079834, -0.024702858179807663, -0.003661445574834943, -0.005247590597718954, -0.022723756730556488, 0.0027272889856249094, -0.001690112054347992, 0.00964885763823986, -0.010777370072901249, -0.03371601924300194, 0.03314876928925514, 0.025586392730474472, 0.02758786641061306, 0.027036452665925026, -0.04758630320429802, 0.02061898447573185, 0.03779187798500061, -0.03567107021808624, -0.018850984051823616, 0.04666977748274803, -0.014816797338426113, -0.013549779541790485, 0.01647193543612957, -0.00398483918979764, -0.02712339535355568, 0.0024854133371263742, 0.017713360488414764, 0.0025365969631820917, 0.028144868090748787, 0.005896585062146187, 0.02688039280474186, 0.003669772297143936, 0.06751151382923126, 0.0014798251213505864, 0.0098020751029253, -0.042324356734752655, -0.048853784799575806, -0.014039200730621815, 0.028026193380355835, 0.015305907465517521, -0.0025512229185551405, 0.007769213058054447, 0.048974476754665375, 0.014386504888534546, 0.002634498756378889, 0.012155312113463879, 0.04313824698328972, -0.02913147211074829, 0.022842107340693474, 0.031377218663692474, -0.02216017059981823, 0.02723572961986065, 0.038938988000154495, -0.01481706090271473, 0.025145286694169044, -0.03306549787521362, -0.023304754868149757, 0.026431862264871597, 0.014016993343830109, -0.01577584259212017, -0.0005417891079559922, -0.02450263313949108, -0.0010497273178771138, 0.01648341491818428, 0.004408356733620167, -0.015451319515705109, 0.029070666059851646, -0.0033488478511571884, 0.014928437769412994, -0.06298872083425522, 0.006629101000726223, 0.0169807318598032, 0.025189602747559547, 0.03731181100010872, -0.037935372442007065, -0.03552466258406639, -0.012495140545070171, -0.01787823997437954, 0.021840248256921768, -0.025703148916363716, -0.0022076594177633524, -0.023165909573435783, -0.02038157731294632, 0.00504757184535265, -0.015371902845799923, -0.013897659257054329, 0.02477272041141987, -0.023181164637207985, 0.029441824182868004, 0.03633647784590721, -0.022005146369338036, 0.05113128200173378, 0.01849740743637085, 0.013144107535481453, 0.06251106411218643, 0.0112532963976264, 0.05454080551862717, 0.03600426763296127, -0.011726493015885353, 0.03132297843694687, 0.020983843132853508, -0.02765832282602787, 0.03580895811319351, 0.012500960379838943, -0.011667310260236263, -0.000814187282230705, 0.014801274053752422, -0.01359136588871479, 0.0040890066884458065, 0.021189110353589058, 0.04817245155572891, -0.01659093052148819, 0.036480411887168884, -0.008060574531555176, 0.04538426920771599, 0.009137277491390705, 0.03906196355819702, -0.016319647431373596, 0.0012720295926555991, 0.00011123266449430957, -0.02382667548954487, 0.015118779614567757, -0.01077414769679308, -0.055911727249622345, -0.0026746473740786314, 0.024103228002786636, 0.024135546758770943, 0.02895142138004303, -0.007580595090985298, 0.02925068326294422, 0.035708650946617126, -0.021826164796948433, -0.023259826004505157, -0.015846358612179756, 0.05968068167567253, 0.008736354298889637, -0.011352235451340675, 0.019590307027101517, -0.029729537665843964, -0.027969438582658768, -0.01824822649359703, 0.009644720703363419, 0.03953219950199127, -0.026692884042859077, 0.043975744396448135, 0.019466670230031013, 0.002301919972524047, -0.03183584660291672, 0.0001453811419196427, 0.011483468115329742, -0.03823944181203842, -0.02882806584239006, 0.05845165625214577, -0.05496774986386299, 0.02332703024148941, -0.01787423901259899, -0.02073640562593937, 0.02082980051636696, 0.06830781698226929, -0.059221550822257996, -0.016849305480718613, 0.04447990655899048, 0.036433909088373184, -0.0074183945544064045, 0.005969859194010496, -0.016816312447190285, -0.007925081066787243, 0.013587822206318378, 0.03072730265557766, -0.006831631064414978, 0.007283078506588936, 0.04591870307922363, 0.0015759445959702134, 0.01913456618785858, 0.027323836460709572, -0.00959909800440073, 0.008481517434120178, -0.0003018146671820432, 0.015550135634839535, -0.021039551123976707, -0.005483025684952736, -0.021922798827290535, 0.0448506735265255, 0.055978160351514816, 0.052470333874225616, 0.04148585721850395, 0.041983462870121, 0.05075778812170029, 0.03445969149470329, -0.003833188908174634, 0.05018840357661247, -0.011868868954479694, 0.03795226663351059, 0.027796266600489616, 0.01998213119804859, -0.026048123836517334, 0.017265262082219124, -0.01671748235821724, 0.005247535649687052, -0.022242102771997452, 0.033309757709503174, -0.04834302142262459, 0.022857889533042908, 0.031031880527734756, 0.055344853550195694, 0.008711174130439758, 0.02025984413921833, 0.030976569280028343, 0.048167046159505844, -0.02625172585248947, -0.026801690459251404, 0.007808178197592497, -0.006828026846051216, -0.010977040976285934, -0.029276881366968155, 0.026949621737003326, -0.005329307168722153, 0.018103105947375298, 0.016793832182884216, -0.001998713007196784, -0.056962523609399796, -0.0177158210426569, -0.02962648496031761, -0.040469661355018616, -0.04501082003116608, -0.031396910548210144, -0.0014277796726673841, 0.030865663662552834, -0.005853402428328991, 0.022640343755483627, -0.001294029876589775, -0.028810666874051094, -0.04653145745396614, -0.03352179378271103, 0.04182876646518707, 0.01874576322734356, 0.01566590555012226, -0.05131281912326813, 0.022569073364138603, 0.03975025564432144, 0.06333201378583908, -0.033811505883932114, -0.029651934280991554, -0.018080951645970345, -0.02650790847837925, 0.03124796226620674, 0.0006092016701586545, 0.015483948402106762, -0.026417551562190056, -0.03282918408513069, -0.07445911318063736, -0.009470314718782902, -0.00999406911432743, -0.0005606657359749079, 0.008928151801228523, -0.013754132203757763, 0.040248941630125046, 0.048631004989147186, -0.011040289886295795, 0.04388146474957466, 0.042266447097063065, -0.03222300112247467, 0.05135601758956909, 0.002052970929071307, 0.03229372575879097, -0.03180021420121193, 0.07493104040622711, 0.08255874365568161, 0.014779400080442429, -0.030973292887210846, -0.004384644795209169, -0.02656170167028904, 0.01226250920444727, -0.005125368945300579, -0.017146047204732895, -0.03315029665827751, 0.03157467022538185, 0.016403451561927795, -0.04724380746483803, 0.05834192782640457, -0.048272449523210526, -0.026793135330080986, -0.035518575459718704, -0.05847383290529251, 0.012073834426701069, 0.041309770196676254, 0.009951619431376457, -0.0027400825638324022, -0.028280368074774742, -0.024269986897706985, 0.02471046894788742, 0.05337836220860481, -0.015634452924132347, 0.006001089233905077, 0.025701649487018585, 0.008916685357689857, -0.029340170323848724, 0.04016547650098801, -0.05993189662694931, -0.01521259918808937, 0.0033660626504570246, -0.002497896086424589, 0.003102996153756976, 0.040624380111694336, 0.043662264943122864, 0.0663425400853157, 0.02454499341547489, -0.0659804418683052, -0.006852088496088982, 0.007724634371697903, 0.03250935301184654, 0.021232038736343384, 0.006285292096436024, -0.009882292710244656, -0.011404846794903278, -0.03701391443610191, -0.08195745199918747, 0.03237224742770195, 0.03250676766037941, 0.08685101568698883, -0.04029163345694542, 0.0477168932557106, -0.012673640623688698, -0.028582841157913208, 0.035176072269678116, -0.03088965266942978, 0.014404121786355972, 0.05821044370532036, -0.008933966979384422, 0.05747313052415848, -0.07850150018930435, 0.0018739766674116254, -0.03230665624141693, 0.010395625606179237, 0.0173660796135664, -0.00803492870181799, 0.01805119402706623, -0.02547324262559414, -0.03580604866147041, -0.020981144160032272, 0.003199692815542221, -0.015703896060585976, -0.02374483086168766, 0.027387278154492378, -0.02109670080244541, -0.032505229115486145, -0.05392461642622948, -0.0016324488678947091, 0.026811428368091583, 0.016810342669487, -0.003080882364884019, 0.034815333783626556, -0.017403213307261467, 0.017799770459532738, 0.036108698695898056, 0.0144883431494236, 0.01981966197490692, -0.0255499966442585, 0.03879298269748688, 0.026096036657691002, -0.031604450196027756, -0.011447202414274216, -0.03178524971008301, -0.012543563731014729, 0.057848259806632996, -0.0036461753770709038, -0.008941647596657276, -0.012049252167344093, 0.0069559370167553425, -0.0038628114853054285, 0.0074628302827477455, -0.07281137257814407, -0.04251207411289215, -0.004739637020975351, 0.02153329737484455, 0.034152403473854065, -0.05919039249420166, 0.019303133711218834, -0.02993078902363777, 0.030458321794867516, 0.02091558463871479, 0.03769709914922714, -0.025898801162838936, 0.004952367395162582, -0.041303347796201706, -0.044629938900470734, 0.013392562977969646, 0.03812465816736221, -0.0025098498445004225, -0.012518122792243958, -0.01247358787804842, 0.014375679194927216, 0.006491261068731546, 0.024653688073158264, -0.017747370526194572, 0.0007877922034822404, 0.04873115196824074, 0.016093095764517784, 0.054888252168893814, -0.0001784847117960453, -0.008875192143023014, 0.008315663784742355, -0.0584200918674469, 0.019719144329428673, 0.013167890720069408, -0.018367836251854897, -0.016002800315618515, -0.00035666339681483805, 0.002750788116827607, 0.028526954352855682, -0.005673810839653015, -0.018876370042562485, -0.007406261283904314, 0.009328975342214108, -0.04697016254067421, -0.06788188964128494, 0.05296294391155243, 0.003146903356537223, -0.041055209934711456, 0.03437093272805214, 0.049282658845186234, -0.01890040561556816, 0.015843510627746582, 0.04201901704072952, -0.05791327729821205, 0.0354837141931057, -0.02671804279088974, 0.03538080304861069, 0.0009029164793901145, -0.04617287591099739, 0.008762368932366371, -0.016278235241770744, 0.03352590277791023, 0.023032797500491142, 0.006543237715959549, -0.016140609979629517, -0.0565381683409214, 0.007400293834507465, -0.021072493866086006, -0.00873928889632225, 0.020209847018122673, 0.02427760884165764, -0.02728147804737091, -0.031399648636579514, -0.034121546894311905, 0.05345149338245392, 0.019024841487407684, -0.03872280940413475, -0.015896495431661606, 0.011329296976327896, 0.021459290757775307, 0.05787516012787819, -0.020187079906463623, -0.039710644632577896, -0.00014337785250972956, 0.008438579738140106, -0.04202936962246895, -0.04111924022436142, 0.01772581972181797, -0.03430132195353508, -0.00461537716910243, -0.046323008835315704, 0.024025142192840576, -0.016170818358659744, 0.026759061962366104, 0.016507672145962715, 0.017496351152658463, 0.011851244606077671, 0.004358265548944473, -0.03211038187146187, 0.026741359382867813, 0.005975564941763878, -0.05888884514570236, -0.026324382051825523, 0.046252310276031494, -0.025338174775242805, 0.06578657031059265, -0.016948368400335312, -0.024487560614943504, -0.024304654449224472, -0.02933085523545742, 0.025344889611005783, -0.0464288629591465, -0.0495610311627388, -0.03412695229053497, -0.04958696290850639, -0.038828376680612564, 0.02845492586493492, 0.010510594584047794, -0.046140775084495544, 0.010064947418868542, -0.03606865927577019, -0.0027640911284834146, -0.029764899984002113, -0.011056278832256794, -0.02093120478093624, -0.02828282117843628, -0.0034941164776682854, 0.059319864958524704, -0.011408496648073196, 0.009582468308508396, -0.025376426056027412, 0.010204490274190903, 0.010701285675168037, -0.01812257617712021, -0.007678525988012552, -0.014922705478966236, -0.025024207308888435, -0.013981429859995842, 0.0049022468738257885, 0.01287126075476408, -0.05012999102473259, 0.03066200204193592, -0.04617631435394287, -0.01599999889731407, -0.04509454593062401, -0.009329932741820812, 0.0031299793627113104, -0.01729419268667698, 0.0555809922516346, -0.01564156636595726, 0.006048981100320816, -0.00604921393096447, 0.054275404661893845, 0.049131859093904495, 0.0057313572615385056, -0.022275343537330627, -0.034308645874261856, -0.06484668701887131, -0.036425624042749405, 0.035556551069021225, -0.027995537966489792, -0.018637962639331818, -0.011750508099794388, 0.010658429004251957, 0.036787163466215134, 0.003034935798496008, 0.00587443308904767, 0.03890756145119667, 0.011644428595900536, -0.0028242499101907015, -0.059031736105680466, 0.008990337140858173, 0.05367845669388771, -0.0395156554877758, 0.02527105249464512, 0.008110233582556248, -0.05829387158155441, -0.0043935757130384445, -0.06298384070396423, -0.010010373778641224, -0.04465233534574509, -0.020131202414631844, 0.07597483694553375, -0.0027195275761187077, 0.07407280057668686, -0.012942347675561905, -0.06189188361167908, -0.027389537543058395, 0.02647359110414982, 0.01889355480670929, 0.06348171085119247, 0.045977912843227386, -0.018350111320614815, -0.010857597924768925, 0.00950585212558508, -0.005158672574907541, 0.01608206517994404, -0.03291400149464607, 0.038869939744472504, -0.030333157628774643, -0.013619438745081425, 0.05872448906302452, 0.03881729394197464, -0.019098704680800438, -0.057815246284008026, 0.00788173358887434, -0.029375724494457245, 0.0034995763562619686, -0.024238016456365585, 0.008083948865532875, -0.03937878459692001, 0.022967420518398285, 0.030855953693389893, 0.05873587355017662, -0.025516096502542496, 0.07389963418245316, -0.0027028352487832308, 0.02548282966017723, -0.03184806928038597, -0.006670753937214613, 0.03167932108044624, -0.01087826956063509, -0.04002057760953903, -0.06442578136920929, -0.04095280542969704, 0.02579236403107643, 0.01195583026856184, 0.008410472422838211, 0.008248266763985157, 0.020600104704499245, 0.03429604321718216, -0.010569841600954533, 0.05229310691356659, 0.027257902547717094, 0.02753731980919838, -0.01304729375988245, -0.03935707360506058, -0.06471394747495651, -0.03673605993390083, -0.0021708558779209852, -0.013126525096595287, 0.03981299698352814, -0.019221071153879166, -0.020134005695581436, 0.029894351959228516, 0.022739965468645096, -0.01792505569756031, -0.06946178525686264, -0.04783736914396286, -0.05213883891701698, -0.057652369141578674, -0.025494715198874474, -0.04729229956865311, 0.013943731784820557, 0.030853400006890297, -0.02084038034081459, -0.022897139191627502, -0.022452007979154587, 0.013849587179720402, -0.0408201701939106, 0.0040411497466266155, -0.0414920374751091, 0.036183468997478485, -0.055499427020549774, -0.04955676943063736, -0.0612654909491539, 0.03324339538812637, -0.028550341725349426, -0.010528688319027424, -0.0027002550195902586, 0.016657598316669464, -0.020208129659295082, 0.024283163249492645, 0.0010894271545112133, 0.008386177010834217, 0.00686477730050683, -0.03800516575574875, 0.016234589740633965, 0.050477880984544754, -0.005874509457498789, 0.04641461372375488, 0.03904251381754875, -0.015331534668803215, 0.04521389678120613, 0.008010489866137505, -0.04587779566645622, -0.017897794023156166, -0.013387140817940235, 0.0042435890063643456, 0.00843552965670824, -0.049179550260305405, -0.0009363637072965503, -0.02282392792403698, -0.052661459892988205, 0.03599003329873085, -0.016156012192368507, -0.00204840418882668, -0.018779532983899117, 0.0031487669330090284, -0.023942820727825165, 0.050232019275426865, -0.006103789899498224, 0.003166018985211849, -0.008738062344491482, 0.026799440383911133, 0.004910229239612818, 0.00944199226796627, 0.02541341260075569, -0.010313949547708035, -0.005405321251600981, -0.0049639432691037655, 0.0014034269843250513, 0.010252384468913078, -0.014723175205290318, 0.013787854462862015, 0.005666079465299845, -0.04100097343325615, -0.03686996176838875, -0.007461565546691418, -0.004010044503957033, 0.042226579040288925, 0.03246540576219559, -0.048123039305210114, 0.02146811969578266, -0.02654443308711052, -0.05189092084765434, -0.017848392948508263, -0.0751909464597702, -0.023688489571213722, 0.03271825984120369, 0.0005995031679049134, -0.037064939737319946, -0.0082477992400527, -0.03706401214003563, 0.022006196901202202, -0.022464262321591377, -0.003013155423104763, -0.03608215972781181, 0.0030872495844960213, 0.008022231981158257, 0.021409394219517708, 0.007390832994133234, 0.04098786041140556, 0.009961559437215328, 0.047726187855005264, -0.022260205820202827, -0.047640372067689896, -0.011171068996191025, -0.03508569672703743, 0.03046811744570732, -0.038387198001146317, 0.010885939002037048, 0.017550401389598846, -0.004914446733891964, 0.03636957332491875, 0.0137128671631217, -0.0008029447635635734, -0.00961336214095354, 0.014986332505941391, -0.009609009139239788, 0.0011191259836778045, -0.030089572072029114, 0.026731546968221664, 0.011735891923308372, -0.04067764803767204, -0.01884884387254715, 0.07035250216722488, -0.00707458658143878, 0.016148000955581665, 0.02725519984960556, 0.01824854128062725, 0.02418569289147854, -0.03361890837550163, 0.001986356219276786, -0.019677694886922836, 0.052591364830732346, 0.03341652452945709, 0.03697532042860985, -0.02847234159708023, 0.03720685467123985, 0.06295247375965118, -0.010945182293653488, 0.025809558108448982, 0.022396696731448174, -0.0076273540034890175, -0.02541075088083744, 0.019038865342736244, -0.05523250624537468, -0.02236511930823326, 0.007848048582673073, -0.04373522102832794, -0.004324794746935368, -0.03628239035606384, 0.0018262562807649374, -0.00753390695899725, -0.036278776824474335, 0.027258509770035744, -0.02276671677827835, 0.008512190543115139, 0.004599078558385372, -0.022762028500437737, 0.019612697884440422, 0.015800796449184418, -0.03617309033870697, -0.0022024076897650957, 0.023726943880319595, 0.033305712044239044, -0.011507282964885235, 0.021891849115490913, 0.0046537178568542, 0.004474970977753401, -0.03415336087346077, 0.02445434406399727, 0.015851017087697983, 0.01102855522185564, -0.0184564720839262, 0.0011666155187413096, -0.01602007821202278, 0.03239379823207855, -0.03665138781070709, -0.04358943551778793, 0.03171756491065025, -0.03422447666525841, -0.03795135021209717, -0.02986665815114975, 0.0483456589281559, -0.028107216581702232, -0.023442788049578667, 0.03485835716128349, 0.0199967622756958, -0.04452722147107124, 0.03180134296417236, -0.0027871786151081324, 0.029842546209692955, 0.0031559753697365522, 0.04333379864692688, -0.002348327776417136, 0.04414563998579979, 0.04693048447370529, -0.04873540997505188, 0.015000914223492146, 0.05389963090419769, 0.00292667793110013, -0.03247635066509247, -0.01530782412737608, -0.03134822100400925, 0.015240375883877277, 0.01049773022532463, -0.03378218784928322, -0.019189409911632538, 0.02186938188970089, -0.04917198792099953, -0.06091076880693436, -0.010949980467557907, 0.03904912993311882, -0.032383281737565994, 0.009051424451172352, 0.04096614941954613, 0.06014039367437363, -0.005113630555570126, -0.037739288061857224, -0.043812792748212814, 0.0010156986536458135, 0.009163260459899902, -0.013767829164862633, 0.040726061910390854, -0.014744878746569157, -0.02924955077469349, -0.03313041478395462, -0.042345624417066574, -0.04308907687664032, 0.01857796683907509, -0.03916114941239357, -0.057395756244659424, 0.04354240745306015, 0.05617727339267731, 0.03725694864988327, -0.010722880251705647, -0.030170511454343796, -0.0044540297240018845, 0.027759382501244545, 0.06101168319582939, 0.006039309781044722, 0.021793298423290253, -0.00514814630150795, -0.04850877448916435, 0.02235167659819126, -0.0109102176502347, 0.04492320492863655, -0.007920057512819767, -0.015446586534380913, 0.02309228666126728, 0.0035281446762382984, -0.030602330341935158, -0.05059612914919853, -0.010150167159736156, 0.019800445064902306, 0.0270216166973114, -0.0327083021402359, -0.044382911175489426, 0.02969198301434517, -0.045955754816532135, 0.025313066318631172, -0.05108971521258354, 0.019621767103672028, 0.00867424812167883, -0.026220502331852913, -0.01325538195669651, -0.05292259156703949, 0.16219179332256317, 0.05823931470513344, 0.021839961409568787, -0.003541617887094617, 0.04578356444835663, 0.029161730781197548, 0.009218399412930012, -0.026077555492520332, 0.0046508884988725185, -0.01408111210912466, 0.01665308140218258, -0.015507448464632034, 0.04332118481397629, 0.009220200590789318, 0.03083742968738079, 0.040400389581918716, -0.030551837757229805, 0.047413893043994904, 0.03381288796663284, -0.011325639672577381, -0.040801264345645905, 0.027959054335951805, -0.01076163537800312, 0.011525601148605347, -0.018956245854496956, 0.03988920897245407, 0.017545007169246674, -0.0511421263217926, -0.016687076538801193, -0.040713462978601456, 0.043298617005348206, -0.03342796117067337, 0.01719622313976288, -0.020060572773218155, -0.03128410503268242, 0.05449400469660759, 0.01763112097978592, -0.009792647324502468, 0.008606542833149433, -0.022713396698236465, 0.014803554862737656, -0.021532373502850533, 0.03017800860106945, -0.04989146813750267, 0.008717990480363369, 0.013001736253499985, -0.041771791875362396, 0.014332945458590984, 0.016270412132143974, -0.042242493480443954, 0.030202016234397888, -0.02750786580145359, 0.02114570513367653, 0.012540465220808983, -0.049231454730033875, 0.017138557508587837, 0.021253466606140137, -0.02908201515674591, -0.00011708882811944932, 0.01136347372084856, 0.0256600733846426, 0.025990882888436317, 0.000978507800027728, 0.016280466690659523, -0.008344681933522224, -0.036444973200559616, -0.013898102566599846, 0.00035382132045924664, 0.007465210743248463, 0.004074102733284235, -0.008647436276078224, -0.025539329275488853, 0.019841209053993225, -0.031484201550483704, 0.060383543372154236, 0.044447340071201324, -0.006482221651822329, 0.04874935746192932, -0.012427211739122868, -0.01748153194785118, -0.04231477901339531, -0.06181156262755394, -0.00392174581065774, -0.0219682939350605, 0.0036045783199369907, 0.023979922756552696, -0.05004284158349037, -0.04356425255537033, -0.006400632206350565, 0.05796019732952118, 0.058179717510938644, 0.01699836365878582, -0.007318875286728144, -0.03363068774342537, -0.0009130514226853848 ]
John's Horror Corner MFF Data John's Horror Corner: Silent Night, Deadly Night part 2 (1987), a Christmas horror sequel that is both lazy and clever. tags: 80s slasher, Christmas horror, Deadly Night, elizabeth kaitan, Linnea Quigley, part 2, scream queen, sequel, Silent Night, Silent Night Deadly Night, slasher movie by John Leavengood MY CALL: The sequel of the "then controversial" cult classic, this story continues and replays the highlights of its predecessor to form the death scene meat and potatoes of the movie. MOVIES LIKE Silent Night, Deadly Night part 2: Normally I'd direct folks to the original: Silent Night Deadly Night (1984). But since all the kills and their build-up from the original are literally shown again in this, there's little point. The follow-up to a bonkers 80s B-movie cult classic, this sequel opens with strong scoring and a tense introduction to Ricky (Eric Freeman) in a psychiatric hospital on Christmas Eve. Now grown up after living through his older brother's killing spree (i.e., Billy from part 1), Ricky has become a killer just like Billy. As the narrator to our story, Ricky recounts his brother's vile deeds to his psychiatrist. As if justifying his murderous destiny, Ricky recalls the murder and sexual assault of his parents by a man in a Santa suit; their troubled upbringing in an orphanage run by Mother Superior (Lilyan Chauvin; Predator 2, Pumpkinhead 2, Silent Night Deadly Night); Billy's departure from the nunnery and job at the toy store when he turned eighteen; and absolutely everyone Billy killed in 1984. Entire scenes of footage are generously borrowed from part 1. As a result, all the kills from the first half of this movie are from this stock footage. Like really, every kill from Silent Night Deadly Night (1984); about half of this sequel is in fact the more exciting half of part 1. So really, this sequel doesn't even begin to hold its own until about minute 40. But fret not, because at least one "new" kill (the umbrella death scene) is rather spectacular for a lower budget kill. And while I enjoyed the jumper cable death as well, the better deaths in this movie were from the previous film. It makes it hard to judge this movie on its own unless it was viewed in lieu of its predecessor. I guess we do still get Ricky killing some folks in a Santa suit (for some of new death scenes). But it's just not enough for me careโ€ฆ even a little. The Santa suit shenanigans feel phoned-in and short-lived. But let's give director Lee Harry (Street Soldiers) and his cast a little credit. Ricky's storytelling scenes were well-acted and aptly written. In fact, the acting in this felt rather superior to anything from part 1 (except of course, for the most talented scream queen Linnea Quigley; The Return of the Living Dead, Night of the Demons, A Nightmare on Elm Street 4, Creepozoids). It seems that someone had a great script idea, but so little money to fund the film that utilizing the previous was the only way to make it work. So as lazy as the scene-stealing tactic initially feels, maybe this was their clever way of making it happen. At least they managed to cast the lovely Elizabeth Kaitan (Friday the 13th part VII, Nightwish, Necromancer), who is something of a bad movie starlet. Despite a couple entertaining kills, this movie is basically a cheap cash-grab throwaway riding the coattails of the best parts of its maker. This would best be viewed by horror fans who actually missed the original. For that demographic, this would probably be quite satisfying. from โ†’ John Leavengood, John's Horror Corner, Movies โ† Freaky: An Inspired Horror Film Featuring Fun Performances From Vince Vaughn and Kathryn Newton The MFF Podcast #333: Stargate, Alien Technology, and Sand โ†’ Connect with MFF Enter your email address to subscribe to this blog and get movie reviews delivered to your inbox Recent Awesomeness John's Horror Corner: The Beach House (2019), a taste of cosmic horror and oceanside wildlife. The Movies, Films and Flix Podcast โ€“ Episode 340: Con Air, Bunnies and Seating Charts WandaVision: An Exciting Show That Isn't Afraid to Be Patient and Different The Father: A Harrowing Drama That Features an Excellent Performance by Anthony Hopkins Deep Blue Sea โ€“ The Podcast โ€“ Episode 28 โ€“ Dove Sharks, Muscular Preachers and S.W.A.T. The Lamb! MFF Instagram - Follow us! Bad Movie Tuesday DVD Round Up Films and Flix Special John Leavengood John's Horror Corner Mark's movie reviews Movienomics Streaming/Netflix/Amazon Trailer Talk
[ 0.002733097178861499, -0.0005340517382137477, -0.006116815842688084, -0.0017052266048267484, 0.003953392151743174, -0.024171343073248863, -0.03751577064394951, 0.04646358639001846, -0.006768859922885895, 0.02423933334648609, 0.02636072412133217, 0.006452574394643307, -0.017506500706076622, -0.02891668677330017, -0.014393380843102932, 0.026445144787430763, -0.02994758076965809, -0.04484746232628822, -0.024504439905285835, 0.019652966409921646, 0.0058857533149421215, -0.008075779303908348, -0.07556288689374924, -0.03600909933447838, -0.006660897750407457, 0.022084804251790047, 0.017246413975954056, -0.011247994378209114, 0.024059927091002464, 0.05814272165298462, 0.00025903654750436544, -0.048232123255729675, 0.05353330075740814, -0.05330401659011841, -0.020815353840589523, -0.020239122211933136, 0.0725763738155365, -0.025428365916013718, -0.0037757426034659147, -0.048084650188684464, 0.01184779405593872, 0.012955939397215843, 0.03449416533112526, -0.01612582989037037, -0.037955619394779205, -0.013584683649241924, 0.027212874963879585, -0.009254026226699352, -0.005720192566514015, -0.040375690907239914, 0.0026603182777762413, -0.03895577788352966, 0.03967934846878052, -0.02314033918082714, 0.00680534029379487, 0.026803338900208473, 0.0006817663088440895, -0.025125421583652496, -0.004157129675149918, 0.02800920233130455, 0.03108518198132515, 0.00665569631382823, 0.014982967637479305, -0.08005326241254807, 0.02160356380045414, 0.03780674189329147, 0.02102910727262497, -0.025534644722938538, 0.004628499038517475, 0.04589550197124481, -0.00035925323027186096, 0.012030404061079025, -0.054437536746263504, 0.016642635688185692, 0.007795482408255339, -0.013723544776439667, -0.05405353382229805, -0.014843151904642582, 0.007274845615029335, -0.0015587930101901293, -0.005070914048701525, 0.05614261329174042, 0.021001651883125305, 0.0482073575258255, -0.06423479318618774, -0.05619121715426445, 0.0046848515048623085, 0.021187799051404, -0.009850184433162212, 0.004697290249168873, 0.007029012776911259, 0.046067409217357635, -0.005566643085330725, -0.001128749456256628, 0.06025369465351105, 0.05885109677910805, -0.04733773320913315, 0.0050431787967681885, -0.0037456732243299484, 0.0036795383784919977, 0.04841917008161545, 0.013594727031886578, -0.02584785223007202, 0.037806835025548935, -0.02054682932794094, -0.028464240953326225, 0.03974175453186035, -0.01095638144761324, -0.018827438354492188, -0.05244194343686104, -0.019510794430971146, -0.01999196596443653, 0.007000447250902653, 0.007915359921753407, -0.021110719069838524, 0.037414222955703735, 0.029252564534544945, 0.032953329384326935, -0.06891658157110214, 0.013142775744199753, 0.04370390251278877, 0.006792329717427492, 0.06249718368053436, -0.03964466601610184, 0.029260756447911263, -0.03627198189496994, -0.01885947957634926, 0.06125785410404205, -0.015387157909572124, -0.03664769232273102, 0.007855170406401157, -0.025281235575675964, -0.010930011980235577, 0.02832590416073799, 0.0010455648880451918, 0.0057258326560258865, 0.0033912265207618475, 0.045046210289001465, 0.05577564612030983, -0.061110369861125946, 0.036816686391830444, 0.03039054200053215, 0.01309875212609768, 0.0707530751824379, 0.00705986563116312, -0.014415140263736248, -0.00851159542798996, 0.042730607092380524, -0.017294814810156822, 0.031453512609004974, -0.034221891313791275, 0.006808676291257143, -0.004754394758492708, 0.022233640775084496, 0.014746667817234993, -0.020345047116279602, 0.020280130207538605, 0.0020905507262796164, 0.018709512427449226, 0.041475336998701096, -0.011710451915860176, 0.0010506329126656055, -0.002947150031104684, 0.04495794698596001, 0.00007052192813716829, 0.03895283490419388, -0.017970845103263855, 0.002337987767532468, -0.017232093960046768, -0.03430366888642311, 0.0004976646741852164, -0.0007963794632814825, -0.006794424261897802, 0.020999029278755188, 0.03715471550822258, 0.032813604921102524, 0.034312352538108826, -0.028807159513235092, 0.044688332825899124, 0.05259969085454941, -0.04450637474656105, 0.015865186229348183, 0.0066277640871703625, 0.06807220727205276, 0.006061976309865713, -0.007285212632268667, 0.024595778435468674, -0.04320351034402847, -0.023959757760167122, -0.03050629049539566, -0.05185249075293541, 0.018545102328062057, -0.015086210332810879, 0.023876642808318138, 0.027647199109196663, -0.005436102394014597, -0.034633371978998184, -0.05098146200180054, -0.01068558357656002, -0.010428574867546558, -0.028568962588906288, 0.06686944514513016, -0.029235433787107468, 0.024288209155201912, 0.008670372888445854, -0.06251277029514313, 0.03630625084042549, 0.06943574547767639, -0.03722250089049339, 0.012519603595137596, 0.04091698303818703, 0.007497710641473532, -0.013604948297142982, 0.008483181707561016, -0.023671992123126984, 0.0038081351667642593, -0.012940995395183563, 0.045210354030132294, -0.0020981060806661844, 0.021294541656970978, 0.006394891068339348, 0.04452966898679733, 0.014284828677773476, 0.05795158073306084, 0.0038952550385147333, -0.02657834067940712, 0.006757677532732487, 0.014597040601074696, -0.034805405884981155, -0.006354115903377533, -0.02225501462817192, 0.04169677570462227, -0.003170690033584833, 0.04713717848062515, 0.014711682684719563, -0.008541758172214031, 0.04781544208526611, 0.04820254072546959, -0.016948293894529343, 0.03258096054196358, -0.0037630328442901373, 0.006231979466974735, 0.029822278767824173, 0.03390044718980789, -0.023084130138158798, 0.059747885912656784, -0.009425514377653599, -0.017778299748897552, -0.035635482519865036, 0.00655900314450264, 0.017389895394444466, 0.042586687952280045, 0.028809092938899994, 0.03137408196926117, -0.025592368096113205, -0.006941072177141905, 0.03212342411279678, 0.06459611654281616, -0.024344678968191147, 0.0007899922202341259, -0.02302386797964573, 0.002718820469453931, 0.01064109243452549, 0.02420477569103241, 0.025314437225461006, 0.03574221208691597, 0.0019094079034402966, 0.007052203174680471, -0.024776479229331017, -0.07362191379070282, -0.029453396797180176, -0.06564246863126755, -0.02408679947257042, -0.032832130789756775, -0.03415714204311371, -0.011759364046156406, 0.04698833078145981, -0.037039559334516525, -0.019848236814141273, 0.021456867456436157, -0.03157750144600868, -0.02277621068060398, -0.0018236986361443996, 0.018565410748124123, -0.005319434218108654, 0.0036247011739760637, -0.04267096891999245, 0.03551990166306496, -0.019073542207479477, 0.0330355204641819, -0.032264355570077896, -0.013176770880818367, -0.005265391431748867, 0.006401972845196724, 0.03163892403244972, -0.020627522841095924, -0.03928747400641441, -0.05028250813484192, -0.05228247493505478, -0.06099890172481537, -0.0020524715073406696, -0.008976535871624947, -0.002397838281467557, 0.0028036204166710377, -0.03228141739964485, 0.03422778099775314, 0.04651826620101929, -0.03016073629260063, 0.05499552935361862, 0.023390136659145355, -0.045168496668338776, 0.011110196821391582, 0.020562754943966866, 0.0007827497902326286, -0.04772106558084488, 0.050027035176754, 0.039182551205158234, 0.010078035295009613, -0.009871711023151875, 0.013281261548399925, -0.007394833490252495, -0.0013593846233561635, 0.0033502785954624414, 0.014737226068973541, -0.03981877863407135, 0.05100666731595993, 0.023507464677095413, -0.044503308832645416, 0.009376181289553642, -0.013227473944425583, -0.025254203006625175, -0.023521466180682182, -0.035307083278894424, 0.018503587692975998, 0.06151280552148819, 0.031134186312556267, -0.03964565694332123, -0.039671290665864944, 0.0062247090972959995, 0.03550224378705025, 0.034274160861968994, -0.02631116472184658, 0.03309197351336479, 0.027046652510762215, -0.00945980567485094, -0.0017382065998390317, 0.03069453313946724, -0.008672166615724564, -0.018143383786082268, 0.008974893018603325, 0.00034535815939307213, -0.007092771120369434, 0.02060568705201149, 0.004892888944596052, 0.035127077251672745, 0.06877756863832474, -0.04490865767002106, 0.005565942265093327, 0.021291503682732582, 0.015442770905792713, 0.02139708213508129, -0.002267490839585662, 0.008159930817782879, -0.024970946833491325, -0.035755082964897156, -0.0673004612326622, 0.06034019589424133, -0.0191021878272295, 0.07017476856708527, -0.03113252855837345, 0.055538278073072433, -0.01086282916367054, -0.043855518102645874, 0.08061914145946503, -0.04910648614168167, 0.0218258835375309, 0.02751312032341957, -0.033917300403118134, 0.033173952251672745, -0.005925406236201525, 0.020705707371234894, -0.0033083672169595957, 0.02464962936937809, 0.04264872893691063, -0.01595103181898594, 0.0420975461602211, -0.037446439266204834, -0.047276921570301056, -0.018315324559807777, -0.004203421995043755, -0.008383645676076412, -0.0549459308385849, 0.01131962239742279, -0.04035156965255737, -0.057211730629205704, -0.05378098040819168, 0.03365188464522362, 0.03293468430638313, 0.04648157209157944, 0.0026690936647355556, 0.0027343491092324257, -0.00519418902695179, 0.027544982731342316, 0.05594257637858391, 0.0035211811773478985, 0.03861786052584648, -0.02845434844493866, 0.043511763215065, 0.03394832834601402, -0.016858017072081566, -0.02395729161798954, 0.00004435333903529681, -0.023225484415888786, 0.03185976669192314, 0.014396533370018005, -0.025040799751877785, -0.03997214883565903, -0.001816942822188139, 0.001299048657529056, 0.0014125668676570058, -0.026374097913503647, -0.010542943142354488, 0.004807586316019297, 0.03957323729991913, 0.02795504592359066, -0.05587711185216904, -0.016184188425540924, -0.014719727449119091, 0.043514229357242584, 0.023153260350227356, -0.01905134506523609, -0.024755991995334625, -0.011815900914371014, -0.02769111841917038, -0.05868076533079147, 0.021391090005636215, 0.02329009585082531, 0.021771008148789406, 0.03608563169836998, -0.07278546690940857, 0.0138597022742033, 0.004806367214769125, 0.00017021683743223548, -0.00271235522814095, 0.013884764164686203, 0.029882842674851418, -0.004627218935638666, 0.033051177859306335, -0.02181296795606613, 0.004060420673340559, 0.004470801912248135, -0.05750224366784096, 0.013778582215309143, 0.006619543302804232, -0.021449876949191093, 0.020067408680915833, 0.016793016344308853, 0.009533506818115711, 0.05577395111322403, -0.022378193214535713, 0.01208999752998352, -0.038461338728666306, 0.01723548397421837, -0.04210386425256729, -0.023598285391926765, 0.03470177948474884, 0.016724824905395508, -0.02228732593357563, -0.011176441796123981, 0.025989821180701256, 0.007868499495089054, -0.017410168424248695, 0.03550797328352928, -0.038046203553676605, 0.04607768356800079, -0.03617769479751587, 0.008084813132882118, -0.00590558210387826, -0.021101463586091995, 0.012872579507529736, -0.015388259664177895, 0.020766980946063995, -0.0003568820538930595, 0.01161308865994215, -0.057640597224235535, -0.033851779997348785, -0.003754612524062395, -0.020970413461327553, -0.005712844897061586, -0.027092760428786278, 0.026267165318131447, 0.031201915815472603, -0.017089692875742912, -0.007825411856174469, -0.007373705040663481, 0.02699684165418148, -0.028034556657075882, -0.019779950380325317, 0.009408933110535145, 0.016560092568397522, -0.002312918659299612, -0.04667913541197777, -0.031936947256326675, -0.01686360314488411, 0.018440909683704376, -0.025737043470144272, -0.06932549923658371, 0.0008209804072976112, -0.015739327296614647, -0.01470326166599989, -0.038899656385183334, 0.014529887586832047, -0.026915935799479485, -0.003165318863466382, 0.008008788339793682, 0.011333727277815342, 0.02241991087794304, 0.004877982661128044, -0.02316473424434662, 0.03934250771999359, 0.014972817152738571, -0.03002394177019596, -0.03130670264363289, 0.06044001504778862, -0.03587200865149498, 0.02022215910255909, 0.01581059768795967, -0.033079180866479874, -0.0709407851099968, -0.03858168050646782, -0.0015368930762633681, -0.028821256011724472, -0.017616599798202515, -0.03937887027859688, -0.013767868280410767, -0.009687663055956364, 0.02233925461769104, 0.0120288897305727, -0.015587332658469677, -0.022933991625905037, -0.01668117195367813, -0.04954829066991806, -0.0201153252273798, -0.024282492697238922, -0.028365058824419975, -0.01639794185757637, -0.0024813488125801086, 0.07046525925397873, 0.006959547754377127, 0.034551821649074554, -0.006019200198352337, 0.016406815499067307, 0.029610643163323402, -0.007988359779119492, -0.07081121951341629, -0.034030668437480927, 0.0022517144680023193, 0.01267402432858944, -0.03304709866642952, 0.017741797491908073, -0.05424138903617859, 0.05052716284990311, -0.06914196908473969, -0.004677459131926298, 0.002724916208535433, -0.012081945315003395, 0.001623301999643445, -0.008533133193850517, 0.04586432874202728, -0.018203414976596832, 0.010927325114607811, -0.014809767715632915, 0.03397717699408531, 0.06861810386180878, -0.01167308073490858, -0.011217547580599785, -0.036145277321338654, -0.02642005868256092, -0.06989578902721405, 0.03988923504948616, -0.01401387620717287, -0.008074961602687836, -0.04171771556138992, 0.007668828126043081, 0.06223505735397339, -0.012174445204436779, 0.07049424201250076, 0.035538025200366974, -0.019291840493679047, 0.03590639308094978, -0.027061492204666138, 0.029494015499949455, 0.05821051448583603, -0.00925162248313427, 0.017893271520733833, -0.009339706972241402, -0.048300158232450485, 0.004832773935049772, -0.02821292355656624, -0.07778359204530716, -0.07010482996702194, 0.0020297772716730833, 0.08259593695402145, -0.008339709602296352, 0.023557625710964203, -0.016981204971671104, -0.0394914448261261, -0.03900858014822006, 0.0660107210278511, -0.0019897969905287027, 0.014732152223587036, 0.03363668918609619, 0.033273883163928986, -0.03587592393159866, -0.011918880976736546, 0.0130861671641469, -0.005159701686352491, -0.018828650936484337, 0.067223459482193, -0.02169252373278141, -0.04268975555896759, 0.03700544685125351, 0.03744012489914894, -0.05574853718280792, -0.04855316877365112, -0.010256484150886536, 0.004683125764131546, 0.000056641587434569374, -0.028833407908678055, 0.016920818015933037, -0.023840980604290962, -0.014914735220372677, 0.03416997939348221, 0.020472927019000053, 0.003237796016037464, 0.043467067182064056, 0.012615617364645004, 0.030681492760777473, -0.026774104684591293, 0.02494947239756584, 0.015778223052620888, -0.04271630942821503, -0.020006952807307243, -0.015868516638875008, -0.012496300972998142, 0.02199125848710537, -0.014443447813391685, 0.030551906675100327, 0.0013200824614614248, 0.031976886093616486, 0.019516587257385254, -0.033661942929029465, 0.06127983704209328, 0.015173235908150673, -0.01511406246572733, -0.0068700495176017284, -0.03055056370794773, -0.045716602355241776, -0.01938280463218689, 0.003940105438232422, 0.020274953916668892, 0.06227670982480049, -0.04992331191897392, 0.006365418899804354, -0.0008281634072773159, 0.022840937599539757, 0.00953636784106493, -0.06201900169253349, -0.02438271790742874, -0.019604487344622612, -0.006109931040555239, -0.027341201901435852, 0.010436381213366985, 0.001315214205533266, 0.03128526359796524, 0.012003053911030293, -0.029165344312787056, 0.01624070294201374, 0.004837272688746452, -0.02299445867538452, 0.006753045134246349, -0.03877004608511925, 0.040633149445056915, -0.030164120718836784, -0.040566977113485336, -0.028185714036226273, -0.004611474461853504, 0.00032778404420241714, -0.017326345667243004, -0.005928380880504847, 0.008352797478437424, -0.00016076852625701576, 0.04643627256155014, 0.014925203286111355, 0.003499322570860386, 0.010019811801612377, -0.06071179732680321, 0.004333397373557091, 0.04728914052248001, -0.007730786222964525, 0.06355899572372437, 0.019273990765213966, -0.017949853092432022, 0.039071399718523026, -0.019344918429851532, -0.015097640454769135, 0.0016082891961559653, -0.015311955474317074, -0.02828095853328705, 0.007597168441861868, -0.03690607473254204, -0.011628733947873116, -0.02477707527577877, -0.04257705807685852, 0.011801052838563919, 0.01054051797837019, 0.02376440539956093, -0.003385763382539153, 0.017789414152503014, 0.008394189178943634, 0.022338036447763443, -0.03282376751303673, 0.04966920614242554, -0.009164399467408657, 0.009678376838564873, 0.0031820398289710283, 0.0055353520438075066, -0.007169330958276987, 0.024620570242404938, 0.031284019351005554, -0.002041594125330448, -0.005429456941783428, -0.022757163271307945, -0.014949435368180275, 0.02074854075908661, -0.009539607912302017, -0.036392997950315475, -0.047247514128685, -0.010373114608228207, 0.01616293005645275, 0.044019706547260284, 0.011848599649965763, -0.02638285979628563, 0.007192160468548536, -0.022628996521234512, -0.09885288774967194, -0.0013355374103412032, -0.07439595460891724, -0.02367781288921833, 0.031504031270742416, -0.013847759924829006, 0.006869768723845482, -0.03493492677807808, -0.027834750711917877, 0.014490682631731033, 0.003935523331165314, 0.01852441392838955, 0.0028112877625972033, 0.039221957325935364, -0.016471320763230324, 0.06632726639509201, -0.018228700384497643, 0.0002877035003621131, 0.003940291237086058, 0.05779168754816055, -0.04580170288681984, -0.026977714151144028, -0.0121027622371912, 0.030545009300112724, -0.020053813233971596, -0.002088175155222416, -0.0004098820500075817, -0.0027988802175968885, 0.020260237157344818, 0.01058995258063078, -0.0019456191221252084, -0.0029497703071683645, 0.0015810299664735794, 0.012658871710300446, -0.014617230743169785, -0.01619497500360012, -0.030024468898773193, 0.01639500819146633, 0.019607100635766983, -0.0027724415995180607, -0.036210183054208755, 0.030207764357328415, 0.04088686406612396, -0.006844783667474985, 0.017655732110142708, 0.03869214281439781, 0.05770951509475708, -0.02168075367808342, 0.030085766687989235, -0.011116473004221916, 0.04108836129307747, 0.01741284877061844, 0.020844828337430954, 0.020562482997775078, 0.030678201466798782, 0.03954356163740158, -0.0004140114178881049, 0.009929141961038113, 0.02349698729813099, 0.05593224614858627, -0.02576870657503605, -0.011094499379396439, -0.012688818387687206, -0.01407160796225071, -0.0027488800697028637, 0.028715189546346664, -0.0007180175161920488, -0.028412435203790665, -0.0016566126141697168, -0.03447502851486206, 0.007392591331154108, 0.051408156752586365, -0.031181473284959793, -0.02207578904926777, 0.0005998859996907413, 0.024550849571824074, 0.010018536821007729, 0.03512948378920555, -0.019551504403352737, 0.04163997992873192, 0.05018587410449982, 0.04355645179748535, -0.011095212772488594, 0.046506647020578384, 0.010969169437885284, -0.0008341302163898945, -0.024140050634741783, -0.008831236511468887, 0.03471563011407852, -0.021505704149603844, -0.03673163056373596, -0.011856448836624622, -0.04105978459119797, 0.030514653772115707, -0.008292783051729202, -0.034619856625795364, 0.04903421178460121, -0.0282504353672266, 0.007800484541803598, -0.05181610956788063, 0.04845940321683884, -0.02117290161550045, -0.00024303664395119995, 0.07502758502960205, -0.012587769888341427, -0.0272528063505888, 0.03728867694735527, 0.006942330859601498, 0.04396072402596474, -0.00829573255032301, 0.01862303353846073, -0.007313764654099941, 0.028344176709651947, 0.03425484523177147, -0.02923283725976944, -0.03610985353589058, 0.014143474400043488, -0.01852048933506012, -0.06652078777551651, -0.00998137891292572, -0.021779809147119522, -0.005888529121875763, -0.013881254941225052, -0.005332861561328173, 0.004632272757589817, 0.037760693579912186, -0.016485119238495827, -0.02846967987716198, -0.0035236559342592955, 0.026392674073576927, -0.053267449140548706, -0.0036482762079685926, 0.024654587730765343, 0.011941405013203621, 0.011716886423528194, 0.007529821712523699, -0.02889036014676094, -0.01849174126982689, -0.00978124886751175, -0.03127462416887283, 0.041283439844846725, -0.010470434091985226, -0.027479661628603935, -0.04694483429193497, -0.05395132303237915, -0.04456157237291336, -0.023951347917318344, -0.034478094428777695, -0.026715319603681564, 0.04392480477690697, 0.025947673246264458, 0.014840601943433285, 0.05100920423865318, -0.0012721032835543156, -0.0029035054612904787, 0.019215302541851997, 0.05789695680141449, -0.04473768547177315, 0.0627528578042984, 0.032598841935396194, -0.02992563508450985, 0.03309457376599312, -0.026470057666301727, 0.03766651079058647, -0.015680160373449326, -0.00815511029213667, -0.020687662065029144, 0.0075826505199074745, -0.013661638833582401, -0.05063016712665558, 0.009066120721399784, 0.018230173736810684, 0.009911645203828812, -0.020721573382616043, -0.08394162356853485, 0.004530258476734161, -0.05765282362699509, -0.007315666880458593, -0.04857884347438812, 0.04737649857997894, 0.006272908300161362, 0.0046318331733345985, -0.04042763635516167, -0.056439995765686035, 0.1293339878320694, 0.04526806250214577, 0.04620126262307167, 0.016359230503439903, 0.023608790710568428, 0.0029506224673241377, 0.010896231979131699, -0.03385378047823906, -0.007939544506371021, -0.03892000392079353, 0.028758393600583076, 0.018205132335424423, 0.06788115203380585, 0.05667546018958092, 0.03108525089919567, 0.0662904903292656, -0.055040474981069565, 0.027659382671117783, 0.009976530447602272, -0.05928925797343254, -0.05187339708209038, 0.031285565346479416, -0.026141708716750145, 0.00937622506171465, -0.016634950414299965, 0.028820550069212914, 0.04645072668790817, -0.048663072288036346, -0.013147815130650997, -0.03409405052661896, 0.025201465934515, -0.030958665534853935, 0.023062195628881454, 0.0024494705721735954, 0.005009256768971682, 0.047992218285799026, 0.0035170530900359154, -0.02841971255838871, 0.014236191287636757, 0.003462274791672826, -0.04165281727910042, -0.004843412898480892, 0.023919256404042244, -0.0118721229955554, -0.011186523362994194, 0.02825159952044487, -0.028303680941462517, -0.027277469635009766, 0.00810125283896923, -0.04184166342020035, 0.056287262588739395, -0.033676423132419586, 0.026747455820441246, 0.006089367903769016, -0.059670183807611465, 0.022187499329447746, 0.02668987773358822, -0.02680165134370327, -0.020045621320605278, -0.025674613192677498, 0.04702102765440941, 0.006222864612936974, -0.0320441909134388, -0.012643935158848763, -0.044140711426734924, -0.010848505422472954, -0.02548670955002308, 0.006339444313198328, -0.03217208757996559, 0.005879498086869717, -0.04798155650496483, 0.012583862990140915, -0.01188227254897356, 0.00866582989692688, 0.04316948354244232, 0.026397479698061943, -0.028801053762435913, 0.035441357642412186, 0.026135938242077827, 0.0001373842969769612, -0.037909217178821564, -0.05665311589837074, -0.016619965434074402, -0.001086670090444386, 0.035014279186725616, 0.025782916694879532, -0.045213717967271805, -0.030248261988162994, -0.0018081126036122441, 0.019093981012701988, 0.03544110804796219, 0.007474810816347599, -0.002007266040891409, -0.0077810389921069145, -0.0327281691133976 ]
Learn about the ecology of amphibians and the best ways to survey them. Learn how to establish and deliver your own Forest School programme. This course enables you to gain a nationally recognised qualification to lead Forest School activities. Delve into the dark world of bats and learn about their unique biology and ecology. Create a beautiful willow obelisk to use year after year in your garden. Create a two sided mosaic to decorate your garden. Learn about all of Surrey's reptiles before venturing onto Witley Common to find them in their native habitat. Heathland Habitats for Wildlife and how to manage them for Birds. Spend the day learning about this unique habitat and how it is managed for its bird life before going on a walk.
[ 0.0035327428486198187, 0.005151776596903801, -0.0380425788462162, -0.007443905342370272, -0.0014975517988204956, 0.003935022745281458, -0.007763634901493788, 0.03912302851676941, 0.01862509362399578, 0.022329911589622498, 0.01658906228840351, -0.0027364371344447136, 0.030827268958091736, -0.012959366664290428, 0.002087636152282357, 0.001502910745330155, -0.01339519303292036, -0.02574031613767147, -0.0388466939330101, -0.013247741386294365, -0.0169997438788414, 0.05410924553871155, -0.03573627397418022, -0.03811335563659668, -0.003097676672041416, 0.03205643966794014, 0.014247703365981579, 0.01961483620107174, 0.032992180436849594, 0.06780798733234406, -0.0041777947917580605, -0.024233777076005936, 0.032762061804533005, -0.06209313124418259, -0.038521379232406616, -0.020724285393953323, 0.031130552291870117, -0.03299309313297272, -0.006346558220684528, -0.04137849062681198, 0.017626866698265076, -0.03486471250653267, 0.050156205892562866, -0.025288937613368034, -0.022199269384145737, -0.015726013109087944, -0.007403245195746422, -0.021154072135686874, -0.007849402725696564, -0.011156834661960602, 0.05009133741259575, -0.00004784625707543455, 0.006761716213077307, -0.04218706488609314, -0.002419281518086791, -0.0024420390836894512, 0.0035513564944267273, -0.01680261269211769, 0.0002825329720508307, 0.02283278852701187, 0.00754283182322979, 0.010505164973437786, 0.020453711971640587, -0.033492475748062134, 0.042629674077034, 0.03639121726155281, -0.009530527517199516, -0.005899053532630205, -0.0037457337602972984, -0.018719524145126343, -0.02368784323334694, -0.0001390356628689915, 0.005848424043506384, -0.018715444952249527, -0.0032545491121709347, -0.001820979523472488, 0.011349461041390896, -0.02148883230984211, -0.00025890578399412334, 0.00893139187246561, 0.020692620426416397, 0.07000789046287537, -0.006967019289731979, 0.02163296565413475, -0.06796387583017349, -0.019444892182946205, -0.02173837646842003, 0.017367683351039886, 0.021463660523295403, 0.030604517087340355, 0.02132059633731842, 0.05383618548512459, 0.014046663418412209, -0.009182266891002655, 0.02717221900820732, 0.02997911535203457, -0.027475381270051003, 0.02879069373011589, -0.009743140079081059, 0.03466447815299034, 0.04807819426059723, 0.019624073058366776, 0.00409235805273056, 0.051592063158750534, -0.04995584860444069, 0.0066539268009364605, -0.012576606124639511, -0.021696018055081367, -0.01429882925003767, -0.04457259550690651, 0.0014287639642134309, 0.008619328029453754, 0.018131131306290627, -0.011278106831014156, 0.0032797290477901697, 0.05634070187807083, 0.010395914316177368, 0.04362253099679947, -0.042084190994501114, 0.06751372665166855, 0.008098403923213482, -0.01588580384850502, 0.03854034096002579, -0.03944087401032448, 0.01313345693051815, -0.053243108093738556, -0.04812310263514519, 0.042748499661684036, -0.04827652499079704, -0.006606664042919874, -0.005331340711563826, -0.057858552783727646, -0.0062856487929821014, 0.012148632667958736, -0.01332769077271223, 0.009620791301131248, -0.04163002967834473, 0.028092321008443832, 0.0104483338072896, -0.07124809175729752, 0.07137355953454971, 0.022505424916744232, -0.015377155505120754, 0.08984732627868652, -0.005260132718831301, -0.012851251289248466, 0.023947015404701233, -0.013751034624874592, -0.03484843298792839, 0.033731237053871155, -0.007037739269435406, -0.009239161387085915, -0.016564510762691498, 0.017608778551220894, -0.010540071874856949, -0.010354315862059593, -0.004410350229591131, -0.008987215347588062, 0.006639035418629646, 0.002643837593495846, -0.00868433527648449, 0.03491445258259773, -0.017230255529284477, 0.035899609327316284, 0.006388744805008173, 0.03661320358514786, -0.018570497632026672, -0.015504837967455387, -0.006587499286979437, -0.018709678202867508, 0.005421399138867855, -0.0036989315412938595, 0.006779962684959173, 0.014008184894919395, -0.009146016091108322, 0.025796061381697655, 0.03498987480998039, -0.0027239981573075056, 0.04887041449546814, 0.03169192373752594, -0.02825027145445347, -0.05280357599258423, 0.007771974895149469, 0.07959236204624176, 0.016602128744125366, -0.02349366806447506, -0.02849910594522953, -0.016991276293992996, -0.05074209347367287, -0.02457146719098091, -0.003656724002212286, 0.047106530517339706, 0.00026219544815830886, 0.009735050611197948, 0.014901025220751762, 0.015739697962999344, -0.024402908980846405, -0.010292602702975273, -0.006103282794356346, -0.049605973064899445, -0.016390271484851837, 0.04966318607330322, -0.01899658888578415, 0.04106270521879196, 0.02860504575073719, -0.014086802490055561, 0.01096907164901495, 0.06245224550366402, -0.013667739927768707, 0.00958432350307703, 0.03759622946381569, 0.0001243826118297875, -0.013135084882378578, -0.006582003086805344, 0.033979255706071854, -0.00853843241930008, -0.02931680902838707, 0.05553387477993965, 0.008184234611690044, -0.037664204835891724, 0.03471019119024277, 0.0013328263303264976, 0.04925588145852089, 0.046385519206523895, -0.017613135278224945, 0.009063969366252422, -0.010293516330420971, 0.06072207912802696, 0.0034769875928759575, 0.028273191303014755, -0.007331163622438908, 0.0665668323636055, 0.05260669067502022, 0.06034330278635025, 0.03839624300599098, 0.03366146609187126, 0.018961064517498016, 0.029700253158807755, 0.006646166555583477, 0.015568654052913189, 0.02174055203795433, 0.003512186463922262, 0.00753797497600317, 0.04548300802707672, 0.014325350522994995, 0.02890201099216938, -0.0274118073284626, 0.007373150438070297, -0.02474210597574711, -0.0031036757864058018, -0.02113206312060356, 0.031096016988158226, 0.009269706904888153, 0.03943737596273422, -0.016450239345431328, 0.00826470647007227, 0.04810564965009689, 0.03500982001423836, -0.02034451812505722, 0.0014584182063117623, -0.022423071786761284, 0.014557015150785446, -0.006570923142135143, 0.0011468337615951896, 0.018993861973285675, 0.028882622718811035, -0.015185180120170116, 0.03678641468286514, -0.007618973962962627, -0.0576523020863533, -0.04921263828873634, -0.041404347866773605, -0.04416823014616966, -0.015357053838670254, -0.04654731601476669, -0.010646313428878784, 0.012216524221003056, -0.0724218562245369, 0.015497987158596516, -0.0478849932551384, 0.0068310322239995, -0.0080614248290658, -0.015387851744890213, 0.05030854046344757, 0.04355093464255333, 0.03314260020852089, -0.04337199777364731, 0.04958057403564453, -0.020365901291370392, 0.009958475828170776, -0.04245728254318237, -0.00036475679371505976, -0.015350472182035446, -0.017624570056796074, 0.03479753062129021, -0.011626012623310089, -0.022106343880295753, 0.008670756593346596, -0.05447931960225105, -0.0513763427734375, -0.007989187724888325, 0.017138056457042694, -0.009313374757766724, -0.010802608914673328, -0.029733579605817795, 0.05681897699832916, 0.018905509263277054, -0.05666998401284218, 0.03564954549074173, 0.024411173537373543, -0.038408298045396805, 0.047818027436733246, 0.03778180107474327, -0.005992486607283354, -0.035756032913923264, 0.04659876599907875, 0.056609828025102615, -0.019293872639536858, -0.0027289160061627626, -0.019163835793733597, -0.018452588468790054, -0.030813654884696007, 0.02187357097864151, 0.01390274241566658, -0.003848982509225607, 0.07356098294258118, 0.0006499314913526177, -0.06741335988044739, 0.014364493079483509, -0.017636360600590706, -0.006683302111923695, -0.05712848901748657, -0.0188056118786335, 0.017499685287475586, 0.04379795864224434, 0.03777521476149559, 0.013656944036483765, -0.05927622690796852, -0.0008706374210305512, 0.03413323685526848, 0.03904373198747635, -0.03596821799874306, 0.03895214572548866, 0.0651441439986229, 0.026288041844964027, 0.015562164597213268, 0.005848553031682968, -0.022587211802601814, -0.02082250639796257, 0.0037193873431533575, 0.003995490726083517, 0.02792445570230484, 0.011815459467470646, -0.009590365923941135, -0.0002465240831952542, 0.056188568472862244, -0.0587373711168766, -0.005412445869296789, 0.007684851065278053, 0.03818907588720322, -0.025198303163051605, 0.00611131452023983, 0.04472262039780617, -0.008430170826613903, -0.029344715178012848, -0.0449979268014431, 0.04267824813723564, 0.021750152111053467, 0.03879231587052345, -0.06647156178951263, 0.07165274024009705, -0.02039266750216484, -0.0069798631593585014, 0.04793495312333107, -0.0284584928303957, 0.026150306686758995, 0.023624977096915245, -0.008793039247393608, 0.027826456353068352, -0.05238129943609238, 0.006153930444270372, -0.01961520127952099, 0.0053664203733205795, 0.049968939274549484, -0.0034745503216981888, 0.021055009216070175, 0.00521898502483964, -0.022572075948119164, 0.0031169254798442125, -0.0076168072409927845, -0.006750059314072132, -0.03266526386141777, 0.01351475901901722, -0.01628742925822735, -0.0396135114133358, -0.05486147850751877, 0.03234618529677391, 0.02499539591372013, 0.043622978031635284, 0.0031141762156039476, 0.024936597794294357, 0.023146942257881165, 0.03159957379102707, 0.05557916313409805, -0.020872723311185837, 0.020237550139427185, -0.0647248923778534, 0.025479698553681374, 0.028627950698137283, -0.007978475652635098, -0.05099816247820854, 0.0170667115598917, -0.04291316494345665, 0.021963020786643028, -0.0020453191827982664, -0.014626224525272846, -0.034200262278318405, -0.006450320594012737, -0.025599077343940735, 0.03040440008044243, -0.009631351567804813, -0.03487065061926842, -0.012946353293955326, 0.04185754433274269, 0.007570225745439529, -0.05793449282646179, -0.008303300477564335, -0.022725364193320274, 0.03440626710653305, 0.034252092242240906, -0.016406850889325142, -0.04588518664240837, -0.029123682528734207, -0.005553165916353464, -0.009544692933559418, -0.026673147454857826, 0.05170790106058121, -0.006884717848151922, -0.01927826553583145, -0.018904972821474075, 0.011667550541460514, 0.018817566335201263, -0.0011411776067689061, -0.046363573521375656, -0.0001486868568463251, 0.01947675086557865, 0.007091830484569073, 0.04980865865945816, -0.008768986910581589, -0.034327954053878784, -0.011484688147902489, -0.045935194939374924, -0.028388172388076782, -0.005964890122413635, -0.010021514259278774, 0.008579504676163197, 0.014902982860803604, 0.012552556581795216, 0.04841858148574829, 0.0014042535331100225, 0.004217549692839384, 0.007905328646302223, 0.036636874079704285, -0.051340606063604355, -0.028657808899879456, 0.060056790709495544, -0.018465178087353706, -0.043893445283174515, 0.04104086011648178, 0.04262077435851097, 0.006761510390788317, 0.003073793137446046, 0.01990862935781479, -0.04850408062338829, 0.029948415234684944, -0.0727057084441185, -0.007272845134139061, -0.009045526385307312, -0.021042784675955772, 0.015410955995321274, 0.0009747777367010713, 0.017092907801270485, -0.015420393086969852, -0.014731812290847301, -0.05721519887447357, -0.03302408382296562, -0.004809091333299875, -0.023253902792930603, -0.0247632022947073, 0.01340561918914318, -0.016520094126462936, -0.012436713092029095, -0.004938859026879072, 0.005637343507260084, 0.05088893696665764, 0.036761973053216934, -0.0012692592572420835, -0.03859517723321915, 0.01949116215109825, -0.00525482464581728, 0.019631749019026756, -0.004630332347005606, -0.034966841340065, -0.0060892049223184586, -0.01072602067142725, 0.0025942318607121706, -0.045787204056978226, -0.007009535562247038, -0.029145240783691406, 0.005714422091841698, -0.02305642142891884, -0.0007046589744277298, -0.023922724649310112, 0.021892700344324112, 0.035775043070316315, 0.016653915867209435, 0.013613981194794178, 0.006451783236116171, -0.02486237697303295, 0.04968423768877983, 0.05357944965362549, -0.046746913343667984, -0.015384550206363201, 0.048935387283563614, 0.005399877205491066, 0.0570959709584713, 0.020249729976058006, -0.01716739870607853, -0.008440361358225346, -0.051075831055641174, -0.004635895136743784, -0.02981759048998356, -0.015089175663888454, -0.02577001228928566, -0.01465838123112917, -0.009638850577175617, 0.006146541330963373, 0.03971042484045029, -0.010853052139282227, -0.009502693079411983, -0.0469776950776577, -0.0022939445916563272, -0.021585989743471146, -0.02136930823326111, -0.025227174162864685, -0.012516183778643608, 0.00447278143838048, 0.03160124272108078, 0.031412940472364426, 0.023760611191391945, -0.0003464107576292008, 0.021395234391093254, 0.01187143474817276, -0.027242548763751984, -0.04270582273602486, -0.026674645021557808, -0.015195275656878948, 0.011366953141987324, 0.01689481921494007, 0.03988049179315567, -0.021281834691762924, 0.05304833874106407, -0.0505523681640625, -0.032878436148166656, -0.017030414193868637, -0.002572065219283104, -0.017730258405208588, 0.027406591922044754, 0.05123090744018555, 0.02335430681705475, 0.027469810098409653, -0.04792037233710289, 0.036163944751024246, 0.03936639428138733, -0.003730201395228505, -0.03549553453922272, -0.026918694376945496, -0.024233121424913406, -0.058766838163137436, 0.045872535556554794, -0.04636052995920181, -0.07736898958683014, -0.03609899803996086, 0.0060213347896933556, 0.07273121923208237, 0.026252608746290207, 0.06017839536070824, 0.02882521227002144, -0.005769211333245039, -0.001036177040077746, -0.018831921741366386, 0.004861687310039997, 0.03131670877337456, -0.01263679563999176, -0.01878092624247074, -0.032770927995443344, 0.00005027322913520038, 0.008703836239874363, -0.02769649215042591, -0.04407069832086563, -0.05623409524559975, 0.0017353215953335166, 0.061454083770513535, -0.02309853956103325, 0.028392387554049492, 0.0017146669561043382, -0.04612768068909645, -0.017363958060741425, 0.020837347954511642, -0.001578786177560687, 0.016883814707398415, 0.03665687143802643, 0.001392143894918263, -0.017495041713118553, 0.006971783936023712, 0.004891606047749519, 0.00870669074356556, -0.04551580920815468, 0.07420706003904343, 0.00799290556460619, -0.05334678292274475, -0.022541750222444534, 0.060155026614665985, -0.05744978040456772, -0.014189556241035461, -0.003980893176048994, -0.005435134284198284, 0.0272804144769907, -0.01672687567770481, 0.007225624285638332, -0.012238170020282269, 0.006683507934212685, 0.03145056590437889, 0.05428164824843407, -0.019578879699110985, 0.029942981898784637, 0.036130283027887344, 0.03566662594676018, -0.050426188856363297, 0.004857383668422699, 0.01354642491787672, -0.033715516328811646, -0.045322686433792114, -0.031242256984114647, 0.004740939475595951, 0.006655754055827856, -0.022967392578721046, 0.059327851980924606, -0.039282239973545074, 0.021687179803848267, 0.01641916297376156, -0.01093139685690403, 0.018121082335710526, 0.006273980252444744, -0.01645660027861595, 0.042791519314050674, -0.059881243854761124, -0.03982501104474068, -0.03128087893128395, 0.015335090458393097, 0.0065400442108511925, 0.005935242399573326, -0.058949582278728485, -0.00910757016390562, 0.05069804564118385, 0.0049390182830393314, -0.028309544548392296, -0.04589732736349106, -0.048923760652542114, -0.05794443562626839, -0.033749036490917206, -0.026023395359516144, -0.04055376350879669, -0.02647554874420166, 0.0014240462332963943, -0.0002753742737695575, -0.029817016795277596, 0.020643530413508415, 0.040621109306812286, -0.029590222984552383, 0.014107441529631615, -0.048734258860349655, 0.006678775884211063, -0.02584843523800373, -0.04160493612289429, -0.017751062288880348, -0.0013712430372834206, -0.015655282884836197, 0.02302771620452404, -0.02173088677227497, 0.049638696014881134, -0.01159227266907692, 0.06080550700426102, 0.017149250954389572, 0.011162691749632359, -0.03509926423430443, -0.01807662658393383, -0.02547159232199192, 0.021078823134303093, 0.004631456453353167, 0.026981597766280174, 0.03100757487118244, -0.02567310445010662, 0.03614327684044838, -0.0035447704140096903, -0.026365753263235092, -0.03291336074471474, 0.025662334635853767, 0.013403062708675861, -0.008567378856241703, -0.0379507914185524, -0.008104360662400723, 0.003683516988530755, -0.04981538653373718, 0.012390854768455029, -0.02882576733827591, 0.01975453831255436, -0.016673365607857704, -0.014862852171063423, -0.00924350880086422, 0.055478230118751526, 0.02468223124742508, 0.037482764571905136, -0.009524746797978878, 0.038472387939691544, 0.002999032149091363, 0.011946361511945724, -0.0007445119554176927, 0.047503937035799026, -0.010925880633294582, -0.029202818870544434, 0.0173046812415123, -0.0008765816455706954, -0.04895580932497978, 0.02778037264943123, -0.028400810435414314, -0.014364113099873066, -0.005614332854747772, -0.008643850684165955, -0.021450765430927277, 0.06291768699884415, -0.002256129402667284, -0.026744697242975235, -0.004383678548038006, -0.0379268154501915, -0.03417039290070534, 0.01831469126045704, -0.0965442806482315, -0.03901846334338188, 0.027551837265491486, -0.035609181970357895, -0.05136258900165558, -0.003590523498132825, -0.04699309542775154, -0.017274996265769005, -0.007888446561992168, 0.006918112747371197, -0.022042499855160713, 0.020861370489001274, -0.012002937495708466, 0.01355652417987585, -0.006564473267644644, -0.009485244750976562, 0.005879368633031845, 0.06119007617235184, -0.059349413961172104, -0.05190892517566681, -0.009492196142673492, 0.010140360333025455, 0.007822946645319462, -0.02175382524728775, 0.007891833782196045, 0.00895947776734829, -0.0035493792966008186, 0.03169124200940132, 0.017182786017656326, 0.006709459703415632, -0.012863080017268658, 0.007152648642659187, 0.01837913878262043, 0.003447401337325573, -0.05055239796638489, 0.02974129095673561, 0.002293220954015851, -0.04483101889491081, -0.06512035429477692, 0.014873907901346684, 0.02758222632110119, -0.009895596653223038, 0.04889022558927536, 0.024995120242238045, 0.046454835683107376, 0.01275491714477539, 0.011109602637588978, 0.016514873132109642, 0.0453014113008976, 0.03270670771598816, 0.03545021638274193, 0.01132939476519823, 0.02409793809056282, 0.03357374668121338, 0.008729470893740654, -0.005235020536929369, 0.041766200214624405, 0.023398682475090027, -0.006682402919977903, -0.011312702670693398, -0.04135121777653694, 0.014187514781951904, 0.02913743443787098, -0.02154426835477352, 0.006528966128826141, -0.03224068135023117, -0.02103159949183464, -0.008943903259932995, -0.009519074112176895, 0.06855601817369461, 0.004129409324377775, -0.010857521556317806, -0.004823369439691305, -0.043593112379312515, 0.02826354280114174, 0.03913596272468567, 0.00443410687148571, 0.027689337730407715, 0.0655117779970169, 0.00975057017058134, -0.006809423677623272, 0.0368802584707737, -0.013101965188980103, -0.01755376346409321, -0.03312940523028374, 0.01160248089581728, 0.012732627801597118, -0.01198524422943592, -0.0619753859937191, -0.019995227456092834, -0.024304188787937164, 0.03897041082382202, -0.02619692124426365, -0.041165780276060104, 0.060564834624528885, -0.03890211507678032, -0.051489174365997314, -0.04426884651184082, 0.02520710416138172, -0.04938973858952522, 0.006184738129377365, 0.02824626863002777, -0.0020285218488425016, -0.049488991498947144, 0.05334065482020378, -0.00887596607208252, 0.04623754322528839, 0.01585770957171917, 0.05058186128735542, 0.002297893865033984, 0.03344359248876572, 0.036516398191452026, -0.01157106552273035, -0.015312365256249905, 0.0062888930551707745, -0.0002589026989880949, -0.02485518902540207, 0.014984800480306149, -0.015781253576278687, -0.0066778818145394325, -0.03462753817439079, -0.027927719056606293, -0.02216031588613987, 0.04813776910305023, -0.003892401931807399, -0.023453811183571815, -0.009196867235004902, 0.017104709520936012, -0.02394081838428974, -0.008581199683248997, 0.013920195400714874, 0.022807499393820763, 0.01144377700984478, -0.010744746774435043, -0.026782508939504623, -0.02877441607415676, -0.008710830472409725, -0.03357754275202751, 0.0446246899664402, -0.024910323321819305, -0.049496911466121674, -0.008636409416794777, -0.04268474504351616, -0.029288485646247864, 0.020119324326515198, -0.042308881878852844, -0.053708408027887344, 0.02835990861058235, 0.056166671216487885, 0.0034277033992111683, 0.01951083168387413, -0.04088015854358673, 0.0017083013663068414, 0.03462103381752968, 0.01871786266565323, -0.019119461998343468, 0.01548408530652523, 0.004771825857460499, -0.04975992068648338, 0.018753597512841225, -0.04045572131872177, 0.012088685296475887, -0.02786204032599926, -0.06634631007909775, -0.02703855000436306, 0.020242368802428246, -0.0069215004332363605, -0.07951435446739197, 0.03933151811361313, 0.0229786429554224, 0.007530810311436653, -0.022510627284646034, -0.07292429357767105, 0.015529497526586056, -0.06973575800657272, 0.013598819263279438, -0.037299688905477524, 0.02738793194293976, 0.010320664383471012, -0.03217020630836487, -0.0005794095923192799, -0.056808896362781525, 0.1569109708070755, 0.05356684327125549, 0.048474546521902084, -0.0018877420807257295, 0.005279489327222109, 0.05567522719502449, 0.048040635883808136, -0.0009446328040212393, -0.008787480182945728, -0.026019567623734474, -0.015387413091957569, 0.011442555114626884, 0.03077108971774578, -0.0033011585474014282, 0.033509597182273865, 0.07259935140609741, -0.028545403853058815, 0.020953215658664703, 0.01628531888127327, -0.03466973453760147, -0.07498084753751755, 0.0404890738427639, 0.011797443963587284, 0.031920839101076126, -0.013383262790739536, 0.009248442016541958, 0.036671094596385956, -0.08173729479312897, 0.0331600047647953, -0.020551811903715134, 0.01937447302043438, -0.03623843193054199, 0.012204131111502647, -0.013347974978387356, -0.025913100689649582, 0.053955063223838806, 0.0005385907716117799, -0.020305568352341652, 0.02139001153409481, 0.015108193270862103, 0.005813261494040489, 0.0053298696875572205, 0.029407959431409836, -0.023858141154050827, 0.002507926430553198, 0.025029901415109634, -0.03739691525697708, -0.02253301814198494, 0.014932009391486645, -0.025949697941541672, 0.046524424105882645, -0.04070734977722168, -0.004488145001232624, -0.012228083796799183, -0.05223587900400162, -0.006447954103350639, 0.01621287874877453, -0.03672366961836815, -0.024363692849874496, 0.02334313839673996, 0.005529097747057676, -0.03174751251935959, -0.015816938132047653, 0.01980230212211609, -0.028886690735816956, -0.02289324253797531, 0.05601583793759346, 0.02942386083304882, -0.008852061815559864, -0.022793617099523544, -0.008521719835698605, 0.005501257721334696, -0.0004581676912494004, -0.0368020161986351, 0.02603544481098652, 0.0414603129029274, -0.0075897821225225925, 0.041762225329875946, 0.026524409651756287, -0.01805075630545616, -0.03198712691664696, -0.05824533849954605, 0.006313604768365622, 0.012788987718522549, 0.04931254684925079, 0.03653109446167946, -0.03449416905641556, -0.0503578707575798, -0.029868757352232933, 0.052445292472839355, 0.05887852981686592, 0.01298611331731081, -0.00032591455965302885, 0.013022983446717262, 0.009819095022976398 ]
The Saga of Eric Brighteyes is the title of an epic Viking novel by H. Rider Haggard and concerns the adventures of its eponymous principal character in 10th century Iceland. The novel was first published in 1890 by Longmans, Green & Company. It was illustrated by Lancelot Speed. Eric Thorgrimursson (nicknamed "Brighteyes" for his most notable trait), strives to win the hand of his beloved, Gudruda the Fair. Her father Asmund, a priest of the old Norse gods, opposes the match, thinking Eric a man without prospects. There are many students who don't have enough money to buy books. We are publishing Eric Brighteyes full pdf book for those who are unable to buy Eric Brighteyes Book. To download this book click the button below. I hope you have successfully downloaded Eric Brighteyes novel from our website. Mistakes are made by the human. All the articles published on this site are uploaded by the human. If you get the wrong download file or if you face any problem while downloading Eric Brighteyes Book then please let us inform using the comment box.
[ -0.004269045777618885, -0.01979057490825653, 0.010508541949093342, 0.004295860882848501, -0.024796705693006516, 0.012883218936622143, -0.016697777435183525, 0.008216436952352524, -0.015420516021549702, 0.0035961223766207695, 0.02499683015048504, -0.010995498858392239, 0.02314123325049877, -0.0348426029086113, -0.0014319053152576089, -0.030027221888303757, -0.02880525030195713, -0.04468153044581413, -0.024013904854655266, 0.002874744823202491, 0.0022184012923389673, 0.013310028240084648, -0.07366552948951721, -0.025433646515011787, 0.013178592547774315, 0.037673141807317734, 0.0260721854865551, 0.006297765299677849, 0.05202419310808182, 0.059558503329753876, 0.005372035317122936, 0.00013781980669591576, 0.031276535242795944, -0.01715836673974991, -0.025980835780501366, 0.002593338256701827, 0.011994429863989353, -0.041810669004917145, -0.012980605475604534, -0.05365845561027527, 0.04106109216809273, -0.02429148554801941, 0.03489864617586136, -0.0170444305986166, -0.035842664539813995, -0.017138009890913963, -0.021705148741602898, -0.01841024123132229, 0.029994245618581772, -0.024221472442150116, -0.002938259160146117, -0.04004337638616562, 0.013777103275060654, 0.03158865123987198, 0.01485770009458065, 0.012973367236554623, 0.026528332382440567, 0.01124038826674223, -0.015586655586957932, 0.043441012501716614, 0.036046698689460754, -0.008367096073925495, 0.028138210996985435, -0.04835385084152222, 0.017816895619034767, 0.012119446881115437, -0.031246669590473175, -0.009520864114165306, 0.03240683674812317, -0.030598239973187447, -0.0024798365775495768, 0.007050203625112772, -0.0000728367522242479, -0.018102608621120453, -0.012741394340991974, -0.011703422293066978, 0.005433100275695324, 0.0161407683044672, 0.016978472471237183, 0.025264807045459747, 0.016155922785401344, 0.04534332826733589, 0.005369909107685089, 0.01349762361496687, -0.06711121648550034, -0.006324445363134146, -0.01772063598036766, 0.03843843936920166, -0.026565561071038246, -0.02724768966436386, -0.0005821326631121337, 0.06704962998628616, 0.03747028857469559, 0.01161608099937439, 0.04575904458761215, 0.04332363232970238, -0.008044734597206116, 0.02683590166270733, -0.02105627954006195, -0.005035052075982094, 0.008740191347897053, 0.00793835986405611, 0.005530942231416702, 0.043461304157972336, -0.04001293703913689, -0.01562460046261549, 0.024316683411598206, 0.028225237503647804, -0.012194971553981304, -0.03988345339894295, 0.014479441568255424, -0.008219750598073006, 0.035123661160469055, -0.0026159544941037893, 0.00489076180383563, 0.0024591018445789814, -0.02600664645433426, 0.040372658520936966, -0.028703635558485985, 0.037985995411872864, -0.001391282887198031, 0.016635257750749588, 0.04489514231681824, 0.01870614103972912, 0.0002525498275645077, -0.04895384982228279, -0.03648827597498894, 0.0537678487598896, -0.03757644072175026, -0.04030248150229454, -0.02155209518969059, -0.0484803169965744, 0.0014276349684223533, 0.02168499119579792, -0.020129812881350517, 0.024690642952919006, 0.014917231164872646, 0.03258112445473671, 0.0003839306300505996, -0.06789866089820862, 0.036585789173841476, 0.013223372399806976, 0.0026271911337971687, 0.0805247500538826, -0.015302102081477642, 0.03719763085246086, -0.003396471031010151, 0.00526418024674058, -0.04795233532786369, 0.03547557443380356, -0.040865715593099594, 0.006887886207550764, -0.0019791850354522467, 0.0224995706230402, -0.0015886490000411868, -0.02152700163424015, 0.0007751389057375491, -0.01142350398004055, 0.027059374377131462, 0.021747734397649765, -0.017700225114822388, 0.022100133821368217, 0.006883407011628151, 0.03906803950667381, 0.01934034749865532, 0.02805754542350769, -0.033983029425144196, -0.03897354006767273, 0.006010059267282486, -0.009087749756872654, 0.019915282726287842, 0.0024084378965198994, -0.03190575912594795, 0.02262738160789013, 0.044882357120513916, 0.05309620872139931, 0.027394158765673637, -0.01636475697159767, 0.05733505263924599, 0.059346288442611694, -0.002170171122997999, 0.013906870037317276, 0.003614268731325865, 0.025854362174868584, -0.002982137259095907, 0.008917037397623062, 0.020398514345288277, -0.034541964530944824, -0.038914795964956284, -0.02408003807067871, -0.005696271080523729, 0.01834629662334919, -0.022792208939790726, 0.03743363544344902, 0.015163726173341274, 0.029257338494062424, -0.016335666179656982, -0.021212633699178696, -0.03655927628278732, -0.07052673399448395, -0.0012063032481819391, 0.05393648520112038, -0.008806136436760426, 0.026783199980854988, 0.03458752483129501, -0.01918720081448555, 0.03682068735361099, 0.05187290906906128, -0.027648616582155228, 0.006417175754904747, 0.029709793627262115, 0.007415800355374813, -0.013445829972624779, -0.007811442017555237, 0.005916057154536247, 0.021369103342294693, -0.07969976961612701, 0.04611239209771156, -0.038258668035268784, -0.03363543376326561, 0.013762169517576694, 0.0217193104326725, 0.03345443308353424, 0.020783554762601852, 0.017098957672715187, -0.007756266742944717, 0.019118869677186012, 0.07772196829319, -0.029276611283421516, -0.028300950303673744, -0.012677235528826714, 0.03219345957040787, 0.03496408462524414, 0.021599452942609787, 0.018415996804833412, 0.025333764031529427, 0.02482709474861622, 0.02611091546714306, -0.03391839936375618, 0.01202445663511753, -0.015504796989262104, -0.01952030509710312, 0.06357669830322266, 0.025413675233721733, 0.009959685616195202, 0.0338977687060833, -0.019053736701607704, -0.01921682059764862, -0.010287219658493996, 0.030175043269991875, -0.0009014020906761289, 0.022152923047542572, 0.04012756794691086, 0.017853200435638428, -0.02586471103131771, -0.022071586921811104, 0.06410065293312073, 0.028206169605255127, 0.005596535746008158, -0.006292021367698908, -0.04831811785697937, 0.025991272181272507, 0.02476685121655464, -0.018259743228554726, 0.025119705125689507, 0.02580338343977928, 0.03305898979306221, 0.03099966049194336, -0.022414006292819977, -0.08413353562355042, -0.02141680382192135, -0.06317894160747528, -0.026578934863209724, -0.01128427404910326, -0.03754139691591263, 0.024705013260245323, 0.031163549050688744, -0.04079707711935043, -0.0005934402579441667, -0.004314428195357323, 0.01664764992892742, -0.03229064866900444, -0.021649768576025963, 0.032622020691633224, -0.004149179905653, 0.034186068922281265, -0.010965666733682156, 0.07420215755701065, -0.025929279625415802, 0.047945667058229446, -0.009916613809764385, 0.0018730562878772616, -0.024481618776917458, 0.00009767017036210746, 0.01699111796915531, -0.009378409944474697, 0.00046510787797160447, -0.02845790795981884, -0.037850599735975266, -0.06804916262626648, 0.009295710362493992, -0.051222916692495346, -0.013631341978907585, -0.010419203899800777, -0.021678971126675606, 0.03884522616863251, 0.016023414209485054, -0.05011788755655289, 0.02398277074098587, 0.01527426391839981, -0.0489673987030983, 0.008835668675601482, 0.00491721834987402, -0.025486638769507408, -0.06296892464160919, 0.013616873882710934, 0.016150014474987984, 0.0027992199175059795, -0.02446683868765831, -0.05728595703840256, -0.02602473273873329, -0.006782655604183674, 0.0007633904460817575, -0.026751315221190453, -0.0558718703687191, 0.03514423221349716, 0.03038649819791317, -0.06449492275714874, 0.02749754674732685, -0.02544446289539337, -0.05072115734219551, -0.007855911739170551, -0.05910196155309677, 0.021141130477190018, 0.03309610113501549, 0.02401604875922203, 0.01798264868557453, -0.030178653076291084, 0.015757540240883827, -0.016990168020129204, 0.05108353868126869, -0.05400560796260834, 0.019365793094038963, 0.013935850001871586, -0.014727736823260784, 0.006269784178584814, 0.0645705983042717, -0.011157318018376827, 0.006254066247493029, 0.011960498057305813, -0.012023171409964561, 0.0012814434012398124, 0.027048945426940918, 0.017550619319081306, 0.006337400525808334, 0.05104091390967369, -0.02613806538283825, -0.01716945692896843, -0.007622352801263332, -0.009989256970584393, 0.011888505890965462, -0.004109445959329605, 0.020187746733427048, 0.0022883154451847076, -0.04546735808253288, -0.03843693807721138, 0.015361239202320576, -0.009712022729218006, 0.048457324504852295, -0.05060664564371109, 0.048713166266679764, -0.016972796991467476, -0.0040933010168373585, 0.012554693967103958, -0.06032566353678703, 0.00445631192997098, 0.048941854387521744, -0.01570708304643631, 0.03361671790480614, -0.029961703345179558, 0.04712323099374771, -0.012861383147537708, 0.016369536519050598, 0.029112381860613823, -0.03378717601299286, 0.007070791907608509, -0.03262530639767647, -0.02186676673591137, -0.014709790237247944, -0.01982329599559307, -0.04237896576523781, -0.006672097370028496, 0.015118008479475975, -0.02553461492061615, -0.045170627534389496, -0.05581483989953995, 0.045792367309331894, 0.014559688046574593, 0.03638839349150658, -0.001945924712345004, 0.05015581473708153, -0.011385512538254261, 0.029419751837849617, 0.013212530873715878, -0.008429372683167458, 0.017901888117194176, -0.035284243524074554, 0.03450019657611847, 0.023953717201948166, -0.04100989177823067, -0.01985737308859825, -0.00697068078443408, -0.04043777659535408, 0.02952936850488186, 0.02562030218541622, -0.03140724450349808, -0.01510604564100504, -0.0038757948204874992, -0.0022095567546784878, 0.04248388856649399, -0.01428298931568861, 0.0009009503992274404, 0.00676897494122386, 0.03162343055009842, 0.03841004893183708, -0.035553183406591415, -0.019297832623124123, -0.030139580368995667, 0.048425622284412384, 0.021412082016468048, 0.0210195854306221, -0.03060394898056984, -0.020557155832648277, -0.031446672976017, -0.023177750408649445, -0.022776873782277107, 0.02883734181523323, 0.04121789336204529, 0.014210473746061325, -0.05263599753379822, 0.05584154650568962, 0.024780934676527977, -0.02232600376009941, 0.020251449197530746, 0.014552950859069824, 0.016275299713015556, -0.02144235372543335, 0.04209490120410919, -0.008707591332495213, -0.045265231281518936, 0.010145426727831364, -0.07822684198617935, 0.016650130972266197, 0.01116044633090496, -0.04425302892923355, 0.002474474720656872, 0.01197914220392704, 0.027285870164632797, 0.010805037803947926, -0.0018784754211083055, 0.011220518499612808, -0.000019784636606345885, 0.030472539365291595, -0.04778638854622841, -0.056779373437166214, 0.03552751988172531, -0.02775968424975872, -0.024867484346032143, 0.03451074659824371, 0.03328244388103485, -0.011239619925618172, -0.0004489980929065496, 0.010749260894954205, -0.05659428611397743, 0.014381752349436283, -0.054477814584970474, 0.02121514268219471, -0.02424566261470318, -0.008341033011674881, 0.015519942156970501, -0.02083868347108364, 0.03580998256802559, -0.022888848558068275, 0.008763066492974758, -0.020695796236395836, -0.05131709948182106, 0.0038959437515586615, -0.007612480781972408, -0.022183619439601898, 0.0016041110502555966, 0.012305342592298985, -0.008465185761451721, -0.030756358057260513, 0.004824256524443626, -0.0027725144755095243, -0.01391144935041666, -0.015374111011624336, -0.009344597347080708, 0.007415458559989929, -0.006474172230809927, -0.004407478962093592, -0.0031304664444178343, -0.009785403497517109, 0.008659700863063335, 0.0026140492409467697, -0.033757131546735764, -0.052709948271512985, -0.00037647236604243517, -0.03339686989784241, -0.013534121215343475, 0.0019846016075462103, -0.02449692040681839, -0.014581440947949886, 0.038490936160087585, 0.04655066877603531, -0.009203920140862465, 0.013788583688437939, -0.003914632834494114, -0.04406624659895897, 0.04991314560174942, 0.04839629307389259, -0.04486848786473274, -0.037373773753643036, 0.04585345834493637, 0.014934927225112915, 0.042639896273612976, 0.004396543838083744, 0.001654381980188191, -0.008750330656766891, -0.06339119374752045, -0.007160500157624483, -0.05402477830648422, -0.03364494815468788, -0.0677485466003418, -0.006398646626621485, 0.016570990905165672, 0.06628987193107605, 0.015530248172581196, -0.032164957374334335, 0.018499918282032013, -0.04785280302166939, -0.001052561099641025, -0.0035876412875950336, -0.013050194829702377, -0.028156008571386337, 0.00128378183580935, 0.003632577368989587, 0.0872797816991806, 0.013253620825707912, 0.0218536164611578, 0.0021886753384023905, 0.01021359022706747, 0.04741240292787552, -0.00971495732665062, -0.04971994087100029, -0.0328034870326519, -0.0024168421514332294, 0.002056291326880455, -0.019973231479525566, 0.014303671196103096, -0.004275259096175432, 0.04241568222641945, -0.06299779564142227, -0.022463271394371986, -0.004959163721650839, -0.041757747530937195, 0.012907406315207481, 0.007751510012894869, 0.042074911296367645, -0.022813158109784126, 0.037391796708106995, -0.03087751753628254, 0.056893762201070786, 0.06557508558034897, -0.0022360121365636587, -0.022171560674905777, -0.027638278901576996, -0.037965282797813416, -0.05831551551818848, 0.038615960627794266, -0.05473238229751587, 0.01608981564640999, -0.0358395129442215, -0.0073264241218566895, 0.03739459812641144, -0.010990306735038757, 0.039038293063640594, 0.05135851353406906, -0.02694559283554554, -0.005186616908758879, -0.031779903918504715, 0.02746562473475933, 0.039556000381708145, -0.007048293016850948, -0.010883800685405731, -0.027312021702528, -0.05373772233724594, 0.033707037568092346, -0.02801567129790783, -0.03745713829994202, -0.061608221381902695, 0.003404645947739482, 0.05141229182481766, 0.005508360918611288, 0.0401746928691864, 0.022300254553556442, -0.03329446539282799, -0.047859977930784225, 0.03368131071329117, -0.004228642676025629, 0.003755624173209071, 0.06809055060148239, -0.019869443029165268, -0.008868756704032421, 0.036366552114486694, 0.027771005406975746, 0.000012755413990817033, -0.06283802539110184, 0.08028710633516312, -0.01842128485441208, -0.028637085109949112, 0.022526133805513382, 0.07301290333271027, -0.067723348736763, -0.04210720956325531, 0.00027425942244008183, -0.013429038226604462, -0.0017077168449759483, -0.04142828285694122, 0.014828568324446678, -0.021806547418236732, -0.015360991470515728, -0.010056805796921253, 0.03567183017730713, 0.016402717679739, 0.07048001140356064, 0.01376053411513567, 0.04995594546198845, -0.025070928037166595, 0.03896680846810341, 0.012027215212583542, -0.005869117099791765, -0.019723163917660713, -0.04725825786590576, 0.012918289750814438, -0.005900267977267504, -0.004675209987908602, 0.04349549859762192, -0.01266084797680378, 0.025907523930072784, 0.018553469330072403, 0.035787370055913925, 0.004037435166537762, -0.0033614286221563816, -0.05362031236290932, 0.00877663865685463, -0.04152632877230644, -0.026379339396953583, -0.06216771900653839, 0.040125053375959396, 0.012398876249790192, 0.024149412289261818, -0.07951080799102783, 0.00089970015687868, 0.05227135121822357, 0.004243462346494198, -0.004678040277212858, -0.03932502865791321, -0.037768807262182236, -0.04249352216720581, -0.058129165321588516, -0.027870776131749153, 0.009219053201377392, -0.005956977605819702, 0.014437349513173103, -0.02829837240278721, -0.01379675418138504, 0.0125435721129179, 0.0027734010946005583, -0.017044780775904655, 0.03817898780107498, -0.03173027187585831, 0.0361308790743351, -0.03400173410773277, -0.04506346583366394, -0.024234309792518616, -0.03357119485735893, -0.02001740038394928, 0.010428489185869694, -0.023216167464852333, 0.027472645044326782, -0.01901133358478546, 0.009696957655251026, -0.010387598536908627, 0.010724424384534359, -0.00969080999493599, -0.04065318778157234, -0.015077856369316578, 0.04463890567421913, 0.031053360551595688, 0.0432928167283535, 0.016954002901911736, -0.022220714017748833, 0.03246747702360153, 0.010063878260552883, -0.048029057681560516, -0.012417696416378021, 0.006693457718938589, 0.023272505030035973, -0.0007050942513160408, -0.035668376833200455, -0.018384216353297234, -0.009297464974224567, -0.050729379057884216, 0.009306307882070541, -0.0077376398257911205, 0.016129055991768837, -0.0038883460219949484, 0.017396660521626472, -0.021965403109788895, 0.03769123926758766, -0.003375380765646696, 0.025125838816165924, 0.004483879543840885, 0.02110103890299797, 0.010324445553123951, -0.0035626175813376904, -0.007344875484704971, 0.0370851494371891, 0.023106219246983528, -0.01738044247031212, 0.021389465779066086, 0.01422654278576374, -0.002832885831594467, 0.03166675195097923, -0.0224887877702713, -0.027167418971657753, -0.06224851682782173, -0.0003103395865764469, -0.0011473530903458595, 0.032239414751529694, 0.006498280446976423, 0.00257393391802907, 0.017429953441023827, -0.0324963815510273, -0.05574072524905205, 0.0033760336227715015, -0.06450466811656952, -0.03186918795108795, 0.011860053054988384, -0.02357526496052742, 0.020431410521268845, -0.020177118480205536, -0.05233675613999367, -0.00813727080821991, -0.022697966545820236, -0.0004829743120353669, -0.005034636240452528, 0.053462494164705276, -0.022700127214193344, 0.06430276483297348, -0.015444506891071796, 0.017691724002361298, -0.006711046677082777, 0.016895445063710213, -0.056557755917310715, -0.05503583326935768, -0.001383794005960226, 0.027271484956145287, 0.014993628486990929, -0.008258190006017685, 0.005062534473836422, -0.006658573634922504, -0.02882167138159275, 0.022855788469314575, 0.021928446367383003, 0.037938013672828674, 0.0413547158241272, 0.061416104435920715, -0.02190008945763111, -0.014730974100530148, -0.041412483900785446, 0.03145740181207657, 0.04228546842932701, -0.04205792769789696, -0.010999122634530067, 0.07045263051986694, 0.04631112143397331, -0.01859360747039318, 0.06057111546397209, 0.00819261372089386, 0.055210474878549576, 0.01601877622306347, 0.014380172826349735, -0.048592597246170044, 0.008279403671622276, 0.0394895114004612, 0.03106863796710968, -0.011770018376410007, 0.01609908789396286, 0.0288951825350523, -0.013726620934903622, 0.022639505565166473, 0.03254428878426552, 0.030670354142785072, -0.05068157613277435, 0.03263409435749054, -0.03431728854775429, -0.014989018440246582, 0.011097448877990246, -0.019740624353289604, 0.020008089020848274, -0.02774597331881523, 0.005307619459927082, -0.01194164901971817, -0.02809022180736065, 0.05290635675191879, -0.014577184803783894, -0.002736594993621111, 0.030188867822289467, -0.02542492002248764, -0.008396860212087631, 0.05286209657788277, 0.03167804330587387, -0.006553429178893566, 0.045094966888427734, 0.031052179634571075, -0.006262673996388912, 0.01618030294775963, 0.026607263833284378, 0.0105443699285388, -0.02288151904940605, -0.003596285590901971, 0.03077835962176323, 0.003238815115764737, -0.03274942934513092, -0.01862974278628826, -0.0519808791577816, 0.023978620767593384, -0.02984299324452877, -0.03005032055079937, 0.05801134929060936, -0.06792476028203964, -0.010307946242392063, 0.0009364061988890171, 0.019357766956090927, -0.02502230368554592, -0.03232811391353607, 0.030014146119356155, 0.008548961952328682, -0.009352765046060085, 0.016907792538404465, -0.01234756875783205, 0.04200213775038719, 0.015639297664165497, 0.0559803806245327, -0.019386455416679382, 0.03372189775109291, 0.038699936121702194, -0.03791651874780655, -0.031109429895877838, -0.025542758405208588, 0.0072760568000376225, -0.030796969309449196, -0.013620269484817982, -0.04619155079126358, -0.0027701423969119787, -0.030150625854730606, -0.056240469217300415, -0.010921383276581764, 0.03723278269171715, -0.006393153686076403, -0.05362468585371971, 0.002531208796426654, 0.027304550632834435, -0.04067416861653328, 0.013615027070045471, -0.0024383030831813812, 0.05656794458627701, 0.021767310798168182, -0.02072480507194996, -0.015209900215268135, -0.05082520842552185, -0.00853655394166708, -0.0256701298058033, 0.03339534252882004, 0.018495002761483192, -0.0300394706428051, -0.025523360818624496, -0.025390993803739548, -0.03955512121319771, -0.028624018654227257, -0.03776306286454201, -0.026122963055968285, 0.03297123685479164, 0.05247274786233902, 0.002775491215288639, 0.01324126310646534, -0.02322182059288025, 0.01567956991493702, 0.03773294761776924, 0.05037962645292282, 0.008095232769846916, 0.044484954327344894, 0.04157642647624016, -0.03096526861190796, 0.0034343511797487736, -0.047735944390296936, 0.03856172412633896, 0.013741394504904747, -0.024203700944781303, -0.03946855664253235, 0.018298842012882233, -0.02473663166165352, -0.05342097207903862, 0.002071044407784939, 0.025183698162436485, 0.00915368739515543, -0.028331544250249863, -0.08543656766414642, 0.014368996024131775, -0.03796995431184769, -0.027696238830685616, -0.05298638343811035, -0.0001834256836446002, 0.027034340426325798, 0.009254414588212967, 0.01107108686119318, -0.02362324669957161, 0.15185920894145966, 0.029980452731251717, 0.05366220325231552, -0.023335151374340057, 0.022610114887356758, 0.0608760304749012, 0.03714720159769058, -0.020118463784456253, -0.0020109370816498995, -0.05775429680943489, 0.07457374781370163, 0.01925564929842949, 0.052541814744472504, -0.016290664672851562, 0.02754191681742668, 0.06272900104522705, -0.032723333686590195, 0.02874292992055416, 0.025377899408340454, -0.0512089803814888, -0.03391365334391594, 0.026086857542395592, 0.004579242318868637, -0.01689857989549637, 0.006834333762526512, 0.02684994786977768, 0.03982037305831909, -0.038430776447057724, -0.034366875886917114, -0.02160348743200302, 0.004490336403250694, 0.0008556236862204969, 0.045888446271419525, -0.0224448349326849, -0.04135270416736603, 0.03263421356678009, 0.011775496415793896, 0.004367297049611807, 0.007990604266524315, 0.015712717548012733, -0.018984802067279816, -0.025053029879927635, 0.00784442387521267, -0.047494031488895416, 0.01851727068424225, 0.046816736459732056, -0.007125682197511196, -0.009451324120163918, -0.00024466909235343337, -0.007811027113348246, 0.01912216655910015, -0.04731627181172371, 0.031202590093016624, -0.022087637335062027, -0.021328406408429146, 0.01591750606894493, 0.017929889261722565, -0.02465858682990074, -0.019008954986929893, -0.033974871039390564, 0.044272176921367645, 0.005356376059353352, -0.02138206735253334, 0.0024651973508298397, -0.03817436844110489, 0.05168434977531433, 0.013474642299115658, 0.019143778830766678, 0.005800680723041296, -0.04788465052843094, -0.026491839438676834, -0.012166366912424564, -0.022769760340452194, -0.014461628161370754, 0.05786001682281494, 0.03565671294927597, -0.01110126357525587, 0.03522196412086487, 0.028800716623663902, -0.005961154121905565, -0.04182536527514458, -0.039684463292360306, -0.02605627290904522, 0.00839565135538578, 0.00961755309253931, 0.06018304079771042, -0.0425245575606823, -0.004280936438590288, -0.013625477440655231, 0.07213334739208221, 0.034719038754701614, -0.002184605924412608, -0.014892294071614742, 0.007007447071373463, -0.024583911523222923 ]
Bachelor v. State, 5 Div. 976 Writing for the Court BROWN, J. BROWN, J. Citation 216 Ala. 356,113 So. 67 Parties BACHELOR v. STATE. 113 So. 67 Rehearing Denied June 4, 1927 Further Rehearing Denied June 11, 1927 Appeal from Circuit Court, Elmore County; George F. Smoot, Judge. Clyde Reese Bachelor was convicted of murder in the first degree, and he appeals. Judgment affirmed; remanded for sentence. Anderson, C.J., and Gardner, J., dissenting in part. Criminal is charged with notice of law relative to sentence. [113 So. 69] Defendant was charged with the killing of Lamar C. Smith, his father-in-law. The tendency of the state's evidence is that defendant procured Hayes Leonard, a negro tenant farmer, to kill the deceased, the motive being that upon the death of deceased his daughter, defendant's wife, would inherit a portion of deceased's estate, and thus would defendant profit financially; that Leonard fired the fatal shot with a shotgun through a side window of deceased's residence, while deceased lay upon his bed reading; that defendant stood about 30 yards from Leonard when the shot was fired; that immediately afterwards defendant and Leonard escaped in defendant's automobile, going to defendant's plantation. The defendant's evidence was to the effect that defendant was of unsound mind at the time of the homicide. Hasty Golden, a witness for the state, testified that he was sheriff of Elmore county and had, the day after the shooting, arrested defendant, Bachelor, and Hayes Leonard in connection with the shooting of deceased, and the two were carried to the Montgomery county jail. The witness was asked if Leonard had made any statement there, in the presence of the defendant, with reference to the shooting. Over defendant's objection, the witness replied in the affirmative, and further testified that there were 6 or 8 men present; that witness knew them all, but could not say whether he could call them all by name; that he knew that neither he nor any one in his presence offered any inducement to or made any threats against Leonard to make a statement; that some one of those present brought Bachelor down there to hear the negro make the statement. The witness further testified that Leonard stated that he shot deceased, and, being asked why, stated that he had done what the defendant told him to do, and that defendant was to pay him for doing it; that he (Leonard) and defendant had been to the house of deceased two or three times before; and that defendant was with him at the time of the shooting, "squatting down by the little peach tree." The witness further testified that Leonard demonstrated with a broom how the shooting had been done, "how he (Leonard) had walked along with the gun until he got on the porch, and how he raised the gun to shoot and his heart failed him; and he said he crawled back and told him (defendant) that there was not but one in the room, and defendant raised up and looked in the window and told him that both of them (deceased and his wife) were in there and when he did he went back and shot." The witness further testified that defendant left the room during the confession, but that he was present when the foregoing part of Leonard's confession was made; that defendant was asked if he wanted to hear what the negro had to say, and defendant said he did not care to argue with the negro. Defendant's father testified that, in witness' opinion, defendant was of unsound mind, was a weakling; that one of his weaknesses from the time he was a child was that he would break down and cry whenever he talked business with or sought financial aid from witness; that "he has been a cry baby all his life, even when he was a man. It is not a fact that he didn't cry except when he didn't get what he wanted; he always got what he asked for." In his closing argument to the jury, counsel for the state made, substantially, the following remarks to which the objections of defendant were sustained: [113 So. 70] "Two criminals in the city of Chicago caused the death of one Frank. "If the defendant was found not guilty by reason of insanity, he would be sent to the insane asylum and turned loose in two or three years." The following requested charges were refused to defendant: "D. If you are reasonably satisfied from all the evidence that at the time of the commission of the alleged crime the defendant was mentally unsound, you cannot find him guilty "A. I charge you, gentlemen of the jury, that, if you find the defendant responsible, and further find him guilty of murder in the first degree, it becomes your further duty to fix his punishment. Capital punishment is authorized, but it is not commanded or compelled, whatever may be the enormity of the crime. It is not an absolute unconditional but an alternative, punishment, and it is never imposed except at the discretion of the jury. "B. I charge you, gentlemen of the jury, that if you find the defendant legally responsible, and further find him guilty of murder in the first degree, it becomes your further duty, under the law, to fix his punishment. In fixing such punishment you may either fix it at imprisonment in the penitentiary for life or at death, in your discretion. Under the law of the state, capital punishment is never visited except by a jury on their own responsibility, controlled only by their own conscience, and it is not contemplated that the suggestions of their conscience shall be directed by the judge presiding or by any human power. "A-1. The court charges the jury that in the trial of a homicide case, where the plea of not guilty and a statutory plea pleaded not guilty by reason of insanity are both interposed, the burden of proof as to the first plea is upon the state to satisfy the jury beyond a reasonable doubt of the guilt of the defendant, but, as to the second plea, the burden of proof is on the defendant to establish the plea of not guilty by reasonable of insanity to the reasonable satisfaction of the jury by a preponderance of the evidence, and a reasonable doubt is not sufficient to acquit the defendant under this plea. The weight and sufficiency of the evidence as to the one plea is that the state must satisfy the jury beyond a reasonable doubt, whereas, as to the other plea, the defendant must reasonably satisfy the jury by a preponderance of the evidence." Rushton, Crenshaw & Rushton, of Montgomery, and Oakley W. Melton, of Wetumpka, for appellant. Charlie C. McCall, Atty. Gen., and Thos. E. Knight, Jr., Asst. Atty. Gen., and Holley & Milner, Tate & Renau and Huddleston & Glover, all of Wetumpka, for the State. BROWN, J. To render the confession of Hayes Leonard, made to the witness Golden and others in the Montgomery county jail, admissible against the defendant, it was necessary for the state to show that it was made in the presence of the defendant, and that he remained silent or that he affirmed the truth of the statement, and that such affirmation was voluntarily made. Delaney v. State, 204 Ala. 685, 87 So. 183; Rowlan v. State, 14 Ala.App. 17, 70 So. 953; Everage v. State, 113 Ala. 102, 21 So. 404; Blair v. State, 211 Ala. 53, 99 So. 314; McGehee v. State, 171 Ala. 19, 55 So. 159; Whitehead v. State, 16 Ala.App. 427, 78 So. 467. However, it was not necessary that it be shown that such affirmation of the truth of the confession was made at the same time and place, but if it was subsequently made and shown to be voluntary--that is, made when the mind of the accused was free from the influence of hope or fear excited by menace or encouragement that he would be more favorably dealt with if he confessed--this is all sufficient to authorize its admission in evidence. Banks v. State, 84 Ala. 431, 4 So. 382. The court, sitting in banc, after careful consideration of the record is of the opinion that it clearly appears that so much of the alleged confession of Hayes Leonard as was given in evidence through the testimony of witness Hasty Golden was made in the presence of the defendant, and the defendant in a subsequent confession to the witness Sellers, shown to be voluntary, affirmed the truth of Leonard's confession in every material respect by stating: "That everything this old darkie has said is true, with the exception of one thing, and that was this--when he went up on the porch to fire the fatal shot I was not standing right behind him with a pistol--that part is not true. I was there; I planned everything; I was 20 or 30 steps away when he fired the shot." Under the rule heretofore stated, this evidence was properly admitted and the rulings of the court in this respect were free from error. The state's objection to the question to the witness Bill Macon, "Was she crazy before she committed suicide?" referring to defendant's great-grandmother, was properly sustained. The witness had testified that he did not know the name of defendant's great-grandmother, that she died of suicide in about the year 1871. This, under the authorities, was not sufficient to qualify a non-expert witness to give his opinion that the person inquired about was "crazy." Parrish v. State, 139 Ala. 16, 36 So. 1012; Braham v. State, 143 Ala. 28, 38 So. 919; People v. Harris, 169 Cal. 53, 145 P. 520; 16 C.J. 752. The same observation is true as to the questions to this witness in reference to the insanity of Roxie Williams, Mat Williams, and Reuben Smith. As to his acquaintance with Roxie Williams, the witness testified: "I knew her mother, Roxie Williams, Roxie Williams is his great-great-great-grandmother." As to Mat Williams: "I knew this boy's great-aunt, the sister of his great-grandmother; she was called Aunt Mat Williams. I don't know how long she [113 So. 71] has been dead. I knew her in her lifetime, but don't know how old she was when I knew her." Allen v. State, CR-92-1463 ...instructions to the jury or both. Allred v. State, supra; Dunn v. State, 277 Ala. 39 at 44, 166 So.2d 878 (1964); Bachelor v. State, 216 Ala. 356, 361, 113 So. 67 (1927); Anderson v. State, 209 Ala. 36, 44, 95 So. 171 Meredith v. State, 370 So.2d 1075, 1078-79 (Ala.Cr.App.), cert. denied, 3...... Freeman v. State, 8 Div. 200 ...or both. Allred v. State, [291 Ala. 34, 277 So.2d 339 (1973) ]; Dunn v. State, 277 Ala. 39 at 44, 166 So.2d 878 (1964); Bachelor v. State, 216 Ala. 356, 361, 113 So. 67 (1927); Anderson v. State, 209 Ala. 36, 44, 95 So. 171 (1922).' (Emphasis added.)" Sales v. State, 435 So.2d 242, 245 Furt...... ...thereto; or where, in some other way, he acted in an incriminatory manner in connection with the statement." See, also, Bachelor v. State, 216 Ala. 356, 113 So. 67. In the examination of Chief McDuff a remark was made by the court that he was satisfied the witness was not going to answer th...... Orr v. State, 8 Div. 290 Alabama Court of Appeals ...trial was made on that ground, but had it been done a serious question of error would have been presented. We also add Bachelor v. State, 216 Ala. 356, 113 So. 67; Stephens v. State, 250 Ala. 123(3), 33 So.2d 'Our judgment is that this record does not show reversible error with respect to t......
[ -0.006371346302330494, -0.004609675146639347, 0.01405523344874382, 0.01576320454478264, -0.060505546629428864, -0.008172981441020966, -0.0056549557484686375, 0.027787506580352783, 0.00971642043441534, 0.04067756608128548, 0.06607893109321594, -0.015646427869796753, 0.02906162478029728, -0.01241663470864296, 0.0009185359813272953, 0.0043100095354020596, -0.025745868682861328, -0.025535648688673973, -0.009171664714813232, -0.000021982721591484733, 0.01912207156419754, 0.012260071001946926, -0.08438827842473984, -0.010215791873633862, -0.010555905289947987, 0.008650371804833412, 0.017331134527921677, 0.017973817884922028, 0.07157427072525024, 0.05562841147184372, 0.003642063355073333, -0.023787090554833412, 0.03782961145043373, -0.03489767014980316, -0.016020068898797035, -0.0005799197242595255, 0.037514057010412216, -0.033276915550231934, 0.005874214693903923, -0.050693485885858536, 0.024382665753364563, 0.0251329243183136, 0.046678513288497925, -0.04264230653643608, -0.039358530193567276, -0.015728553757071495, -0.01719428412616253, -0.029465774074196815, 0.004661489278078079, -0.029772315174341202, 0.0012029764475300908, -0.03209034726023674, 0.006431687623262405, -0.03181108087301254, -0.00576825812458992, -0.0004874709702562541, -0.0025622358079999685, -0.04790155217051506, -0.017519952729344368, 0.0610777847468853, 0.020737498998641968, -0.005335165653377771, 0.0006060355808585882, -0.03471650928258896, 0.03321961686015129, 0.026321131736040115, 0.0040612854063510895, -0.007672176696360111, 0.016002776101231575, -0.04806032404303551, 0.01204853318631649, -0.016342252492904663, -0.03401436656713486, -0.021648967638611794, 0.01977439783513546, -0.038510240614414215, -0.020200638100504875, -0.023463068529963493, -0.01832679659128189, -0.018242161720991135, 0.014493091963231564, 0.04459422826766968, 0.05690506100654602, 0.012576969340443611, -0.06106465309858322, -0.04296295717358589, 0.0025106787215918303, -0.0035873425658792257, 0.01170880626887083, 0.014629129320383072, -0.00421413779258728, 0.06224152073264122, 0.0035197266843169928, -0.02807565964758396, 0.047768402844667435, 0.04778603836894035, -0.03291482478380203, 0.04675997793674469, 0.02141803316771984, -0.030534273013472557, 0.05429327115416527, 0.037584658712148666, 0.005196184851229191, 0.04536361247301102, -0.031239818781614304, 0.010155326686799526, -0.006842846050858498, 0.006568227428942919, 0.007104604505002499, -0.021119175478816032, 0.014976740814745426, -0.0038908710703253746, 0.02701101265847683, 0.02461506426334381, -0.03667417913675308, 0.023352984338998795, -0.007851459085941315, 0.025120891630649567, -0.03617166355252266, 0.02935526706278324, 0.049338724464178085, 0.02327132225036621, 0.0626373291015625, -0.0305726770311594, 0.028984203934669495, -0.03338056057691574, -0.04889150336384773, 0.07091885060071945, -0.03155645728111267, -0.03548532724380493, 0.000700772216077894, -0.030953455716371536, 0.0004646152665372938, 0.008838818408548832, -0.008690102025866508, 0.008330173790454865, 0.030935240909457207, 0.0407719761133194, -0.0106899319216609, -0.048552535474300385, 0.06546202301979065, 0.01861335150897503, -0.016677336767315865, 0.0797462910413742, -0.002685731975361705, 0.03937413915991783, 0.014026465825736523, 0.04673679172992706, -0.053572963923215866, 0.03222748637199402, -0.05687394738197327, 0.03535996749997139, 0.013130501843988895, 0.02948099374771118, 0.03858667239546776, -0.004791331943124533, 0.030059603974223137, -0.005653698928654194, 0.01607731729745865, 0.037962134927511215, -0.03902526572346687, -0.0022874255664646626, -0.001695313141681254, 0.02448098734021187, 0.0013222250854596496, 0.03578673303127289, -0.042753566056489944, -0.03517640382051468, -0.0155823128297925, -0.05529705435037613, -0.010295425541698933, 0.019801542162895203, -0.006010028067976236, 0.022390685975551605, 0.05930960550904274, 0.03334198519587517, 0.039892252534627914, -0.013069035485386848, 0.015131578780710697, 0.044626377522945404, -0.026235047727823257, 0.011205020360648632, 0.012604583986103535, 0.037131570279598236, 0.002644661348313093, 0.0069045331329107285, 0.019659649580717087, -0.025405175983905792, -0.04646478220820427, -0.021997744217514992, -0.020002519711852074, 0.02657744474709034, -0.022571859881281853, 0.0016912681749090552, 0.0022604374680668116, 0.029026005417108536, -0.01980675756931305, -0.06081101670861244, 0.0047703757882118225, -0.029322469606995583, -0.010256935842335224, 0.03394892439246178, -0.013683514669537544, 0.0279887355864048, -0.011383408680558205, -0.05300711840391159, 0.036094896495342255, 0.08332585543394089, -0.01585994102060795, 0.032486576586961746, 0.031278230249881744, 0.017918771132826805, -0.023663252592086792, -0.027787357568740845, 0.0004025831294711679, 0.013806987553834915, -0.03810437396168709, 0.0449461005628109, -0.021334605291485786, 0.0032616693060845137, -0.004611277487128973, 0.02092893235385418, 0.004824602045118809, 0.041726984083652496, -0.004607818555086851, -0.012922040186822414, 0.027845090255141258, 0.05349942669272423, -0.04777929559350014, -0.014690004289150238, -0.016548365354537964, 0.03250374644994736, 0.016291048377752304, 0.06843473017215729, 0.0034244086127728224, 0.001571762841194868, 0.06596043705940247, 0.037287477403879166, 0.02252030186355114, 0.03459308668971062, -0.006001087371259928, 0.021785564720630646, 0.04300796985626221, 0.023889198899269104, -0.02383139170706272, 0.04907696694135666, 0.004642718471586704, -0.017779212445020676, -0.038448188453912735, 0.02797645516693592, 0.012838948518037796, 0.030066585168242455, -0.0010657780803740025, 0.06134483963251114, -0.03128459304571152, 0.024714728817343712, 0.027258489280939102, 0.03443479165434837, -0.014169041067361832, -0.017034616321325302, 0.0009484048932790756, -0.005206409376114607, -0.022977441549301147, 0.004286115989089012, 0.03929001837968826, 0.02301003225147724, 0.02992008812725544, 0.013764657080173492, 0.005086098797619343, -0.019566958770155907, -0.035107508301734924, -0.08936178684234619, -0.01723192073404789, -0.014991401694715023, -0.03332611173391342, 0.00961875356733799, 0.04124855622649193, -0.04076129570603371, 0.027903545647859573, -0.02213793620467186, -0.019600452855229378, -0.002353984396904707, -0.02151765115559101, 0.041646119207143784, 0.03453080356121063, 0.029361797496676445, -0.040551379323005676, 0.04906358942389488, -0.003361649811267853, 0.03660666197538376, 0.000622219406068325, -0.04973100870847702, -0.038954172283411026, -0.008861588314175606, 0.04155709594488144, -0.01096267905086279, 0.011435999535024166, -0.02108961157500744, -0.03147740662097931, -0.058339692652225494, -0.002786484081298113, 0.005858522839844227, 0.0031371265649795532, -0.01774861291050911, -0.057341255247592926, 0.04170968383550644, 0.014615068212151527, -0.042309731245040894, 0.024088358506560326, 0.046690430492162704, -0.048949699848890305, 0.07176127284765244, 0.015687620267271996, 0.008381491526961327, -0.04632047563791275, 0.04694569855928421, 0.025423096492886543, 0.004686110652983189, -0.03909026086330414, -0.056572236120700836, -0.03425944223999977, -0.005517112091183662, 0.010524575598537922, -0.04276689141988754, -0.0387100912630558, 0.03400566428899765, 0.03174948692321777, -0.07011573761701584, 0.02351306937634945, -0.05140652880072594, -0.016948238015174866, -0.040241342037916183, -0.01439043041318655, 0.0403023436665535, -0.0026972268242388964, 0.02874411642551422, -0.027747515588998795, -0.024886315688490868, 0.02072722092270851, 0.024597709998488426, 0.04443271458148956, -0.009905556216835976, -0.00026037145289592445, 0.04464997723698616, 0.01308397762477398, 0.024989193305373192, 0.02789100632071495, -0.029923081398010254, -0.0024274722672998905, 0.018385058268904686, -0.020348357036709785, -0.009413007646799088, 0.03858945891261101, -0.01779814623296261, 0.006340264808386564, 0.033970922231674194, -0.031155750155448914, -0.0142420819029212, -0.0016181918326765299, 0.010553098283708096, -0.005487790796905756, 0.019860031083226204, -0.025016415864229202, 0.012518719770014286, -0.05409981310367584, -0.05201718583703041, 0.01491504441946745, -0.018484273925423622, 0.05010296776890755, -0.057816460728645325, 0.0719282254576683, 0.0036093266680836678, -0.05036616325378418, 0.03488384932279587, -0.06537562608718872, 0.008878830820322037, 0.033489909023046494, -0.0163719542324543, 0.03355981409549713, -0.05682303383946419, -0.005622806027531624, 0.007898861542344093, 0.0124235600233078, 0.01440504938364029, 0.016757627949118614, 0.03441140428185463, -0.001582794007845223, -0.015994802117347717, -0.0001609944156371057, 0.021102456375956535, 0.000009853994924924336, -0.0277799591422081, 0.008036430925130844, -0.015519481152296066, -0.03721547871828079, -0.05132395401597023, 0.044082626700401306, 0.010821663774549961, 0.03905169293284416, -0.02781434915959835, 0.05016312375664711, -0.0031717410311102867, 0.019591735675930977, 0.03200408071279526, -0.03398935869336128, 0.012552452273666859, -0.0520896278321743, 0.05228137969970703, 0.00006686480628559366, -0.03400431200861931, -0.02025654725730419, -0.010841491632163525, -0.00696893036365509, 0.05978747829794884, 0.025181390345096588, -0.01396056916564703, -0.055775802582502365, 0.03998193144798279, -0.003803874831646681, 0.02057315781712532, -0.043742358684539795, -0.02492898888885975, 0.02149353362619877, 0.030719658359885216, 0.021362781524658203, -0.03699052706360817, 0.02570195309817791, -0.054158225655555725, 0.02734489180147648, 0.025056615471839905, 0.020274024456739426, -0.05162854492664337, -0.006968541536480188, -0.03789783641695976, -0.022339044138789177, 0.02641773782670498, 0.02830137126147747, 0.010135235264897346, 0.011875688098371029, -0.0021188748069107533, 0.036582525819540024, 0.032762739807367325, -0.016311172395944595, -0.0057137771509587765, 0.008145298808813095, 0.017229227349162102, -0.0009245382971130311, 0.038542162626981735, 0.01000739261507988, 0.00043151029967702925, 0.011465394869446754, -0.03819882869720459, 0.011834793724119663, -0.029373206198215485, -0.03146446868777275, 0.02177499793469906, 0.019766658544540405, -0.00586703373119235, 0.045353736728429794, -0.04409283399581909, 0.029826348647475243, -0.0001453957665944472, 0.025443512946367264, -0.05899113044142723, -0.04037975147366524, 0.05314962565898895, -0.03339952975511551, -0.010275880806148052, 0.013623896054923534, 0.011428998783230782, -0.020986026152968407, 0.028887543827295303, 0.0355655662715435, -0.044781602919101715, 0.02265220321714878, -0.03616378828883171, 0.04941469803452492, -0.035526540130376816, -0.03987089544534683, 0.015821870416402817, -0.022160975262522697, 0.04468216374516487, -0.012510577216744423, -0.030895832926034927, -0.03341664746403694, -0.061655208468437195, -0.03886082395911217, 0.0002942643186543137, 0.006127001252025366, 0.002241982612758875, 0.013305239379405975, 0.011919311247766018, 0.0060507492162287235, 0.003185403300449252, -0.022875957190990448, 0.005609953310340643, -0.014543311670422554, -0.009711433202028275, -0.021131448447704315, 0.020504368469119072, 0.009378792718052864, -0.0046926261857151985, -0.022572148591279984, -0.009245685301721096, 0.02412925288081169, -0.02286626398563385, -0.0590449757874012, -0.009077563881874084, -0.038179781287908554, 0.027746500447392464, -0.007801054511219263, 0.01751234009861946, -0.03960951045155525, 0.012032532133162022, 0.027414673939347267, -0.013100462965667248, 0.025080552324652672, 0.0182818416506052, -0.015263174660503864, 0.022215330973267555, 0.057941656559705734, -0.03591379523277283, -0.013986042700707912, 0.015079001896083355, -0.022317057475447655, 0.026974763721227646, -0.015169326215982437, -0.012292039580643177, -0.030705004930496216, -0.05138396844267845, 0.01447425875812769, 0.0005805649561807513, -0.03985757380723953, -0.0592087060213089, 0.007486770860850811, -0.009590549394488335, 0.008057961240410805, 0.0071477810852229595, 0.012737301178276539, 0.00047723777242936194, -0.05420820787549019, 0.00951828621327877, -0.021347681060433388, 0.0022992228623479605, -0.04541106894612312, -0.024407286196947098, -0.02146841585636139, 0.03973579779267311, 0.0030288018751889467, 0.0312170572578907, -0.002631545066833496, -0.014490128494799137, -0.0030509387142956257, -0.036867767572402954, -0.03629274666309357, -0.05139298364520073, -0.01785566285252571, -0.013988167978823185, -0.026160528883337975, 0.025146936997771263, -0.018267059698700905, 0.05832860618829727, -0.03792767599225044, 0.0060052890330553055, 0.003083579707890749, -0.03654595836997032, -0.021861545741558075, -0.03609040752053261, 0.06608232855796814, -0.026457512751221657, 0.021282372996211052, -0.03684190288186073, 0.06781619787216187, 0.028549503535032272, 0.0078046550042927265, -0.040881332010030746, -0.027321001514792442, -0.02908802032470703, -0.04378046467900276, 0.052710920572280884, -0.02044081874191761, 0.0013379380106925964, -0.04057491943240166, -0.018997669219970703, 0.021863825619220734, -0.017877399921417236, 0.013457872904837132, 0.05604732409119606, -0.04659675434231758, -0.022484663873910904, -0.038196299225091934, 0.03685019910335541, 0.06561857461929321, -0.04827142134308815, -0.019604738801717758, -0.02188749983906746, -0.04013827443122864, 0.007626884616911411, -0.03737196326255798, -0.01630370318889618, -0.04877758026123047, 0.00866155605763197, 0.07511616498231888, -0.016321858391165733, 0.06360086798667908, -0.011194264516234398, -0.05757913738489151, -0.03616087883710861, 0.04519413039088249, 0.008899081498384476, 0.016539761796593666, 0.04190140217542648, -0.023964494466781616, -0.009837471880018711, 0.037640269845724106, 0.00031192987808026373, -0.020758872851729393, -0.05623478814959526, 0.05312114208936691, -0.032770056277513504, -0.052073996514081955, 0.026709552854299545, 0.019162751734256744, -0.04904733970761299, -0.03623173013329506, -0.014833491295576096, -0.03456192836165428, -0.005252878647297621, -0.021140778437256813, 0.0006295954226516187, -0.007639520335942507, -0.014683685265481472, 0.003367312718182802, 0.012073137797415257, 0.004225523676723242, 0.03761201724410057, 0.00803868193179369, 0.03963097184896469, -0.03808858245611191, 0.00008059909305302426, 0.02405880205333233, 0.019935661926865578, -0.009638101793825626, -0.020445402711629868, 0.015769561752676964, 0.02115810662508011, -0.0006138114258646965, 0.049660567194223404, -0.018142707645893097, 0.006194268353283405, -0.00898409727960825, 0.0018738373182713985, 0.07046512514352798, -0.03221079334616661, -0.017234424129128456, -0.01270772609859705, -0.011675097979605198, -0.06693193316459656, -0.026363616809248924, -0.0122061837464571, 0.045258551836013794, 0.03808360919356346, -0.07695520669221878, -0.01731186918914318, 0.033259231597185135, 0.002819820772856474, 0.03042318858206272, -0.05548052117228508, -0.04185488075017929, -0.00913710705935955, -0.0029084605630487204, -0.01216823235154152, 0.008188154548406601, 0.009937900118529797, 0.0164833702147007, -0.008108043111860752, -0.037938669323921204, 0.02581625245511532, 0.044341590255498886, -0.003547602565959096, 0.03444388508796692, -0.050836898386478424, 0.011434033513069153, -0.035845767706632614, -0.02083684504032135, -0.02883842960000038, 0.017699817195534706, 0.009521445259451866, -0.006741627585142851, -0.02615821734070778, 0.023446738719940186, 0.006616185884922743, 0.014251366257667542, 0.03167201951146126, -0.0191712137311697, -0.005711468402296305, -0.031241046264767647, 0.0011725261574611068, 0.008646600879728794, -0.032413724809885025, 0.05403021723031998, 0.018880214542150497, -0.014689658768475056, 0.028005829080939293, -0.027869265526533127, -0.05104728043079376, -0.016325505450367928, -0.026095498353242874, 0.013816207647323608, -0.003162400797009468, -0.049471210688352585, -0.03172069787979126, -0.03145256265997887, -0.02653232403099537, 0.005205318331718445, -0.019115440547466278, 0.017943600192666054, -0.020384948700666428, -0.01812117174267769, -0.011936276219785213, 0.04517190530896187, 0.0011663540499284863, 0.01666649430990219, 0.0012831902131438255, 0.024932360276579857, 0.021257469430565834, 0.013357310555875301, 0.03557796776294708, 0.024013344198465347, 0.019817469641566277, 0.015393449924886227, 0.014130491763353348, 0.0033993725664913654, 0.02027067542076111, 0.03943868726491928, -0.009731554426252842, -0.050029631704092026, -0.03955864906311035, -0.003521205857396126, -0.0027851490303874016, 0.029793916270136833, -0.00014313463179860264, -0.008377019315958023, 0.029178891330957413, -0.03542611747980118, -0.05197456479072571, 0.005492363590747118, -0.07093261927366257, -0.037183068692684174, 0.04217490553855896, 0.0028696772642433643, -0.001976805506274104, -0.0076517402194440365, -0.04050210490822792, -0.03179732337594032, 0.013433876447379589, -0.0018485798500478268, -0.022312723100185394, 0.02006135880947113, -0.008077200502157211, 0.053993795067071915, -0.000044129912566859275, 0.0002466863952577114, -0.0019608286675065756, 0.02592024765908718, -0.049039777368307114, -0.06029834225773811, 0.0052988105453550816, 0.02660771831870079, 0.007699537556618452, -0.02709229476749897, -0.008205174468457699, 0.008692341856658459, -0.017333531752228737, 0.010222592391073704, 0.015372397378087044, 0.013646343722939491, 0.019604230299592018, 0.029490171000361443, -0.032140132039785385, -0.002742992015555501, -0.030476095154881477, 0.010546193458139896, -0.015780001878738403, -0.042020849883556366, -0.039100416004657745, 0.02248353697359562, 0.0527430959045887, 0.001595401088707149, 0.05915839970111847, 0.010758040472865105, 0.029421236366033554, -0.015162809751927853, 0.005024901125580072, -0.026469530537724495, 0.05396419018507004, 0.06630387157201767, 0.05032719299197197, 0.007929323241114616, 0.0419083870947361, 0.03921018913388252, 0.015035752207040787, -0.020138228312134743, 0.04460880905389786, 0.023127812892198563, -0.032648924738168716, 0.02867107279598713, -0.009881075471639633, 0.0364733450114727, 0.033114492893218994, 0.010990015231072903, 0.012757377699017525, -0.048270419239997864, 0.01842089369893074, -0.04217027872800827, -0.019237788394093513, 0.03224589675664902, -0.03865814581513405, 0.008006357587873936, -0.014704936183989048, -0.0025832150131464005, -0.0007384836208075285, 0.05318843573331833, 0.003922312054783106, 0.004238124005496502, 0.03599182516336441, 0.04023807495832443, 0.011766024865210056, 0.01690942421555519, 0.01398678682744503, 0.008560169488191605, -0.04860465228557587, 0.0011983485892415047, 0.0128490524366498, 0.015116997994482517, -0.058553196489810944, 0.015344595536589622, -0.03181294724345207, 0.02455747500061989, -0.014149599708616734, -0.01077003963291645, 0.03368288278579712, -0.03974610194563866, -0.00378742185421288, -0.024422628805041313, 0.03869301453232765, -0.009237999096512794, -0.016525985673069954, 0.04394492506980896, -0.00370584218762815, -0.017281413078308105, 0.052045468240976334, 0.004193815868347883, 0.020002443343400955, -0.008407028391957283, 0.04766308143734932, 0.02176143229007721, 0.046800509095191956, 0.050250887870788574, -0.006232420448213816, -0.005512595642358065, 0.03906581178307533, -0.020129602402448654, -0.04204539209604263, 0.0021308816503733397, -0.04662242531776428, 0.0042631844989955425, -0.024553971365094185, -0.016445722430944443, -0.003932149149477482, 0.007687506731599569, 0.0017261020839214325, -0.03703492879867554, 0.0031840940937399864, 0.01219132263213396, -0.026646342128515244, 0.022010214626789093, 0.01622387208044529, 0.0667433887720108, 0.009479885920882225, -0.032391976565122604, -0.032895080745220184, -0.01264847069978714, 0.024529198184609413, -0.03501167520880699, 0.028866088017821312, -0.0061471848748624325, -0.03579997643828392, -0.04520139843225479, -0.05188090726733208, -0.005537096876651049, 0.024673664942383766, -0.042114175856113434, -0.03474251553416252, 0.033371344208717346, 0.05245209112763405, -0.009905163198709488, 0.0073423851281404495, -0.021041911095380783, -0.03158332407474518, 0.04369398579001427, 0.040720559656620026, -0.0035879015922546387, 0.05351806804537773, 0.030263297259807587, -0.022651460021734238, 0.028405269607901573, -0.019078245386481285, 0.026602687314152718, -0.01334648672491312, -0.010532459244132042, -0.04194438457489014, -0.004012820776551962, -0.017411604523658752, -0.07418797165155411, 0.005961917340755463, 0.007147498428821564, -0.010574604384601116, -0.020405368879437447, -0.07111736387014389, -0.006668263580650091, -0.03406858071684837, -0.02035975083708763, -0.025528637692332268, 0.009176569059491158, -0.026619743555784225, -0.006601785309612751, -0.019774330779910088, -0.061899490654468536, 0.14055709540843964, 0.04534068703651428, 0.007343737408518791, -0.025065327063202858, -0.00876219104975462, 0.05459147319197655, 0.0100453095510602, 0.007366137579083443, -0.01064817700535059, -0.03342926874756813, 0.01801140233874321, -0.018490474671125412, 0.014815330505371094, -0.0005062323762103915, 0.02593662217259407, 0.05000755935907364, -0.03062819503247738, 0.008991234935820103, 0.02498217113316059, -0.0656428262591362, -0.04128500074148178, 0.003781602019444108, -0.0005626703496091068, 0.047086138278245926, 0.013508494012057781, 0.021419798955321312, 0.054452091455459595, -0.0889679342508316, 0.001579100382514298, -0.019181208685040474, 0.02049148641526699, -0.03397972881793976, 0.035591259598731995, -0.017630282789468765, -0.03531850501894951, 0.05168715864419937, 0.0268524419516325, -0.0165395550429821, 0.017203183844685555, -0.004255453124642372, -0.0219550933688879, 0.038998398929834366, 0.010063506662845612, -0.030330711975693703, -0.009775109589099884, 0.014492799527943134, -0.03838609531521797, 0.04537339508533478, 0.05097011476755142, -0.04946872964501381, 0.050016727298498154, -0.033220212906599045, 0.009381907060742378, -0.022424329072237015, -0.018817966803908348, 0.04385044425725937, 0.019688935950398445, -0.032812003046274185, -0.022870155051350594, -0.006713674869388342, 0.02717789076268673, 0.01101444661617279, -0.007012237794697285, 0.04063500463962555, -0.020376041531562805, -0.0023384818341583014, 0.04865202307701111, -0.00786571018397808, -0.01690628193318844, -0.025797557085752487, -0.023016147315502167, 0.0022114370949566364, 0.0013021862832829356, -0.023489132523536682, 0.05663777515292168, 0.06363033503293991, -0.044618599116802216, 0.02937452308833599, 0.036076318472623825, -0.032264526933431625, -0.0271262526512146, -0.0707041472196579, -0.0181913822889328, -0.014545446261763573, 0.011363282799720764, 0.028579896315932274, -0.026212045922875404, -0.053449682891368866, 0.001559075783006847, 0.03886200115084648, 0.044646069407463074, -0.01425119861960411, -0.011272740550339222, -0.02062596194446087, -0.016921643167734146 ]
Harlow and Monty are heading over to join you. Looks like you had a nice swim. What a great shot!!!!! I love the mid shake photo's! Captured at just the pawfect time! Thank you for coming by my blog today, I am loving yours! And very glad I stopped by! What a great shot!!! That totally trumps our "wet dog" pics from Monday, lol! Happy WW! I'm glad you are being given pool privileges again! Haha!! Better shake it off out there and not inside!
[ 0.015627440065145493, 0.017098596319556236, -0.006125102750957012, 0.0018122176406905055, -0.04070700705051422, 0.00979435071349144, 0.0005111818900331855, 0.0388648621737957, 0.02368011511862278, -0.006656498182564974, 0.013605011627078056, 0.04385097697377205, -0.002172674983739853, -0.024903327226638794, -0.022781774401664734, -0.02578406222164631, -0.03080604411661625, -0.042313989251852036, -0.03733654320240021, 0.005818575154989958, -0.02036721259355545, 0.012943597510457039, -0.07793568819761276, -0.024466654285788536, 0.01990261673927307, 0.048041753470897675, 0.03545564040541649, -0.037831228226423264, 0.052965279668569565, 0.03565386310219765, -0.03598348796367645, -0.020946403965353966, 0.03690450266003609, -0.028432996943593025, -0.02250553108751774, -0.031912948936223984, 0.03273409232497215, 0.00748788146302104, -0.024781139567494392, -0.05045716091990471, -0.00518758874386549, -0.00011255985737079754, 0.04361682012677193, -0.030649486929178238, -0.0353207029402256, 0.004014008212834597, -0.020767150446772575, 0.014322192408144474, 0.018358474597334862, -0.053328029811382294, 0.004894699901342392, 0.006371065508574247, 0.004265508148819208, -0.014976117759943008, 0.004828994628041983, 0.048622991889715195, -0.017605537548661232, -0.007092833984643221, -0.026169372722506523, 0.02213292196393013, 0.0048415279015898705, 0.006068855989724398, 0.02676173485815525, -0.06238742545247078, 0.03102375939488411, 0.03883565217256546, -0.022969098761677742, -0.023010365664958954, 0.01318835187703371, -0.01678796485066414, 0.007270046044141054, -0.008099622093141079, 0.0003346275771036744, 0.019349578768014908, -0.0023387351538985968, 0.008743064478039742, -0.004518768284469843, 0.011764761060476303, -0.02703649178147316, 0.019355783239006996, -0.0038136253133416176, 0.03662339225411415, 0.03576815128326416, 0.005026481579989195, -0.021943798288702965, -0.03399653732776642, 0.0051058134995400906, 0.036805588752031326, 0.03326181322336197, 0.006685767788439989, 0.020462824031710625, 0.07246817648410797, -0.019985714927315712, -0.022516846656799316, 0.029450559988617897, 0.0223781056702137, -0.02142356149852276, 0.02914384752511978, 0.006533728446811438, -0.0023915995843708515, 0.02162376046180725, 0.001593210967257619, 0.02244170382618904, 0.034809887409210205, -0.044248003512620926, -0.005818852689117193, 0.004034290090203285, -0.00909188948571682, 0.004070664756000042, -0.028275445103645325, 0.013696965761482716, -0.03605213761329651, 0.027788404375314713, 0.03840301185846329, -0.021509269252419472, 0.018331922590732574, 0.017267974093556404, 0.04668591544032097, -0.054443154484033585, -0.00020001073426101357, 0.04154909402132034, 0.0209958553314209, 0.03821657598018646, -0.007072885055094957, -0.010829037055373192, -0.04440503194928169, -0.02891002595424652, 0.04674983769655228, -0.0370151661336422, 0.014961340464651585, -0.02097250334918499, -0.049432892352342606, -0.013675225898623466, -0.01573166996240616, 0.009553481824696064, 0.030486181378364563, -0.0220489539206028, 0.013454526662826538, 0.012387897819280624, -0.08925569802522659, 0.05518922582268715, 0.0437525138258934, 0.017645811662077904, 0.0652402937412262, 0.033353351056575775, 0.01879911683499813, 0.009108207188546658, 0.0162478219717741, -0.032379742711782455, -0.001173204742372036, -0.04940306767821312, 0.02780008874833584, 0.017287040129303932, 0.02619708701968193, 0.009732542559504509, 0.021903598681092262, -0.003560083219781518, 0.010800677351653576, -0.02454693242907524, 0.06313326209783554, -0.032151199877262115, -0.003655113745480776, -0.020880375057458878, 0.019676748663187027, -0.022863619029521942, 0.016697147861123085, 0.005012120120227337, -0.028394587337970734, -0.008395228534936905, -0.022757500410079956, 0.04390539228916168, -0.010658453218638897, 0.0046131848357617855, 0.02734440565109253, 0.003724506590515375, 0.05249463766813278, 0.030553212389349937, 0.023667339235544205, 0.03311123326420784, 0.054587528109550476, -0.026362720876932144, -0.02247961424291134, 0.0036164443008601665, 0.05912381410598755, 0.020820342004299164, 0.009745921939611435, 0.0018984338967129588, -0.033278170973062515, -0.03677191585302353, -0.03835952654480934, -0.02304261364042759, 0.00252108764834702, -0.056682150810956955, 0.04126409813761711, 0.018433649092912674, 0.015407372266054153, -0.0015670733992010355, -0.010488948784768581, -0.018948905169963837, -0.04312343895435333, -0.05030328035354614, 0.08226976543664932, -0.037349943071603775, 0.029021885246038437, -0.011957327835261822, -0.037552542984485626, 0.019985033199191093, 0.062035322189331055, -0.03333418071269989, 0.006829875987023115, 0.009474904276430607, 0.0331261083483696, -0.0033781181555241346, -0.04629835486412048, -0.016940182074904442, -0.022780854254961014, 0.010745063424110413, 0.04324644058942795, -0.03478093072772026, 0.0022585541009902954, 0.02428222820162773, 0.027129754424095154, 0.044582340866327286, 0.06092674657702446, -0.0048454985953867435, -0.007531262934207916, -0.002081094076856971, 0.039004869759082794, -0.008689104579389095, -0.0194521676748991, -0.022293807938694954, 0.04310132935643196, 0.02073676511645317, 0.07776704430580139, 0.062281347811222076, 0.036056309938430786, 0.05241672322154045, 0.04431131109595299, -0.01263544149696827, 0.010262079536914825, -0.009100754745304585, -0.003268961561843753, 0.03208736702799797, 0.014940362423658371, 0.015724632889032364, 0.024262605234980583, 0.011226192116737366, 0.009491045959293842, -0.012949014082551003, 0.03747814893722534, -0.029448581859469414, 0.03610287234187126, 0.05519223213195801, 0.03697114810347557, -0.014642683789134026, 0.0296564232558012, 0.03501996025443077, 0.05539499595761299, -0.024779412895441055, -0.0020247302018105984, 0.008452793583273888, -0.0007854486466385424, -0.05479659140110016, -0.005091854836791754, 0.04653753340244293, 0.010138178244233131, 0.006279280874878168, 0.010634123347699642, -0.016585174947977066, -0.05337192118167877, -0.027544677257537842, -0.03691158816218376, -0.07556858658790588, -0.051896609365940094, -0.0018096694257110357, -0.02489379420876503, 0.03135540336370468, -0.017275238409638405, 0.04567021504044533, 0.005341703072190285, -0.04910420998930931, -0.038778699934482574, -0.0363679938018322, 0.07627968490123749, 0.011306250467896461, 0.025358598679304123, -0.05029488354921341, 0.026899157091975212, -0.0016586632700636983, 0.030824312940239906, -0.034352146089076996, -0.016498593613505363, -0.04109257832169533, 0.023391686379909515, -0.009183657355606556, -0.01179470680654049, -0.010730717331171036, -0.03175719454884529, -0.045024607330560684, -0.01828165166079998, 0.017414942383766174, 0.037311479449272156, -0.009851782582700253, 0.014430132694542408, -0.05546753108501434, 0.04469766840338707, 0.019061459228396416, -0.022077860310673714, 0.029619699344038963, 0.04516804218292236, 0.00008732332207728177, 0.07458408176898956, 0.02690313570201397, 0.0286038126796484, -0.04598991200327873, 0.05363158509135246, 0.04060770571231842, 0.04772617295384407, -0.038911204785108566, 0.012979493476450443, -0.02604398876428604, 0.023769579827785492, 0.03154207393527031, -0.015412815846502781, -0.06128085032105446, 0.03310682997107506, 0.020158659666776657, -0.04565734416246414, 0.03780227154493332, -0.027550000697374344, -0.034967079758644104, -0.04189839959144592, -0.06116306781768799, -0.011796060018241405, 0.05916083976626396, 0.035326037555933, -0.01432107575237751, -0.04994584619998932, 0.016344169154763222, 0.02212536334991455, 0.03530038520693779, -0.0033306549303233624, 0.038826413452625275, 0.03680865839123726, -0.03664468228816986, 0.0072871726006269455, 0.012255159206688404, -0.043278973549604416, -0.023678872734308243, 0.029711812734603882, -0.022723671048879623, 0.0270683690905571, 0.019662510603666306, 0.017762893810868263, 0.002584232250228524, 0.061896391212940216, -0.03744782879948616, -0.006888372823596001, 0.03470173105597496, -0.009610465727746487, 0.029971765354275703, 0.012099392712116241, 0.00773023022338748, -0.0343448631465435, -0.0447646901011467, -0.07299745082855225, 0.046269793063402176, -0.028059639036655426, 0.052625782787799835, -0.05032671242952347, 0.07791990041732788, -0.021648483350872993, -0.018122436478734016, 0.025088809430599213, -0.0496026873588562, -0.012512685731053352, 0.04281799495220184, -0.010601287707686424, 0.047835592180490494, -0.03897944092750549, 0.0009992677951231599, -0.04087785631418228, 0.00903230905532837, 0.05728396773338318, -0.04257785901427269, 0.041333187371492386, -0.012460997328162193, -0.017283884808421135, 0.0011427224380895495, 0.0046763005666434765, 0.0005756263271905482, -0.006820920389145613, -0.0032612388022243977, -0.011671161279082298, -0.057419322431087494, -0.03866645321249962, 0.04361357539892197, 0.01862139254808426, 0.035795003175735474, 0.0185465756803751, 0.012848606333136559, -0.006643485743552446, -0.019348641857504845, 0.03876763954758644, -0.011059683747589588, 0.003240415593609214, -0.043847762048244476, 0.02127777226269245, 0.02489771693944931, -0.043489065021276474, -0.03725624829530716, -0.005894369445741177, -0.014514826238155365, 0.03796053305268288, -0.012589980848133564, -0.008209568448364735, -0.048128820955753326, 0.0448356531560421, -0.007143728900700808, 0.017961440607905388, -0.06639575958251953, -0.03381245955824852, -0.017601098865270615, 0.013735651969909668, 0.0042786323465406895, -0.058793362230062485, 0.0328391008079052, -0.033767055720090866, 0.06307119876146317, 0.030920807272195816, -0.02022566832602024, -0.0446414016187191, -0.00650516664609313, -0.01449140440672636, -0.04720211774110794, 0.01815854012966156, 0.04222385957837105, -0.006823674309998751, -0.006438412703573704, -0.04006866365671158, 0.04203486815094948, 0.01598486304283142, -0.017409484833478928, -0.01579875499010086, -0.0006955813732929528, 0.02563358098268509, 0.015835154801607132, 0.018934432417154312, 0.009850315749645233, -0.057761050760746, 0.025308113545179367, -0.06600254029035568, 0.0075284442864358425, -0.0012162653729319572, -0.02782272920012474, -0.014003695920109749, -0.001538258627988398, 0.03389652445912361, 0.03294898197054863, 0.01711566559970379, 0.013931508176028728, -0.013900131918489933, 0.052147526293992996, -0.015843139961361885, -0.03618592023849487, 0.031746696680784225, 0.007307733409106731, -0.008944227360188961, 0.02804611250758171, 0.05773941054940224, -0.012153331190347672, -0.004354145377874374, 0.042842984199523926, -0.03676403686404228, 0.0191715806722641, -0.03511315956711769, 0.03275606036186218, 0.006614043843001127, -0.03244203329086304, 0.01492009125649929, -0.05836259946227074, 0.02694329060614109, -0.01546469982713461, -0.032426368445158005, -0.056158486753702164, -0.0490393191576004, -0.017641212791204453, -0.027762865647673607, 0.0026616365648806095, 0.02266145497560501, 0.0581061877310276, -0.008180654607713223, -0.02076219767332077, -0.023054974153637886, 0.027070848271250725, 0.0205614622682333, -0.03465188667178154, 0.008127017877995968, -0.003687784541398287, -0.014868378639221191, 0.026931213214993477, 0.009906858205795288, -0.018744252622127533, 0.011578706093132496, 0.00034275665530003607, -0.009361758828163147, -0.049321603029966354, -0.004674861207604408, -0.03767832741141319, 0.01053325179964304, 0.001940809190273285, 0.012910882942378521, -0.03538598492741585, 0.012309935875236988, 0.02191086858510971, -0.01788351498544216, 0.02034633979201317, -0.012952068820595741, -0.022644750773906708, 0.04804689809679985, 0.03065609186887741, -0.04436201974749565, -0.059532880783081055, 0.032630592584609985, 0.025652695447206497, 0.03962130844593048, -0.016044210642576218, -0.032197192311286926, -0.04545886814594269, -0.04330018535256386, -0.019487081095576286, -0.0398254357278347, -0.04283273592591286, -0.04257781431078911, -0.04171827808022499, -0.030772432684898376, 0.018464380875229836, 0.016833199188113213, -0.023763516917824745, 0.041923943907022476, -0.03452121466398239, 0.013605736196041107, -0.018970446661114693, -0.007123065646737814, -0.01359791960567236, 0.008433411829173565, -0.038534894585609436, 0.02718253619968891, -0.015412285923957825, 0.02585887908935547, 0.01788555085659027, 0.03792792558670044, -0.0005493335193023086, 0.019395118579268456, -0.04368017986416817, -0.05046192184090614, 0.003219939535483718, -0.003233579220250249, -0.005171504337340593, 0.0395481176674366, -0.04071691259741783, 0.033654674887657166, -0.017315438017249107, 0.014629577286541462, -0.019616013392806053, -0.013583558611571789, -0.014366000890731812, -0.022183813154697418, 0.04079142585396767, -0.013519826345145702, -0.0005982855218462646, -0.004410231951624155, 0.06151101365685463, 0.017558254301548004, 0.013847445137798786, -0.026137029752135277, -0.03618829697370529, -0.043948981910943985, -0.05292997881770134, 0.05960514396429062, -0.027301469817757607, -0.00248193577863276, -0.037028320133686066, 0.015572186559438705, 0.026461565867066383, 0.0013296493561938405, 0.010267946869134903, 0.04630878195166588, -0.008862104266881943, 0.000021751775420852937, -0.022472020238637924, 0.02422138676047325, 0.02316596359014511, -0.006414829753339291, -0.024172905832529068, -0.012299297377467155, -0.03657621517777443, 0.000495009240694344, -0.04721353203058243, -0.037170130759477615, -0.06849493086338043, -0.026529207825660706, 0.0674644261598587, -0.03457355871796608, 0.05168844014406204, -0.009638655930757523, -0.03161104395985603, -0.04528750106692314, 0.03836340829730034, 0.021246835589408875, -0.0001300356670981273, 0.06567221134901047, 0.005759733263403177, -0.015356234274804592, -0.0055274940095841885, 0.006479477975517511, -0.01060185395181179, -0.029514752328395844, 0.06938105821609497, -0.010104087181389332, -0.03502315655350685, 0.043279603123664856, 0.05778554081916809, -0.0717676430940628, -0.07045244425535202, 0.028845852240920067, -0.005286211613565683, -0.003064066870138049, -0.021645348519086838, 0.01595166139304638, -0.008324267342686653, -0.0052698166109621525, 0.016867462545633316, 0.03136446326971054, 0.028731299564242363, 0.03996030613780022, -0.022378025576472282, 0.008742264471948147, -0.02634912170469761, 0.013724474236369133, 0.04418338090181351, -0.021742627024650574, -0.026965519413352013, -0.02433665096759796, 0.014125759713351727, -0.006831960752606392, -0.013475934974849224, -0.0003538820310495794, -0.015815142542123795, 0.011806145310401917, 0.02535642310976982, -0.009742961265146732, 0.024682413786649704, 0.0008192232344299555, 0.020439794287085533, -0.007049438543617725, -0.027394026517868042, -0.03355555981397629, -0.032444704324007034, 0.001977007370442152, -0.012633031234145164, 0.022690502926707268, -0.04760854318737984, -0.008859940804541111, 0.00359368696808815, -0.021145109087228775, -0.014185132458806038, -0.03153117001056671, -0.04489820450544357, -0.05562569200992584, -0.06340376287698746, -0.01734248921275139, 0.02071051485836506, 0.02337529882788658, 0.0314042754471302, 0.011455107480287552, -0.030317408964037895, 0.0006073890835978091, -0.02794763632118702, -0.008396876975893974, 0.005038409028202295, -0.04900812730193138, 0.032635703682899475, -0.05808992683887482, -0.05295634642243385, -0.03574702888727188, 0.014913994818925858, 0.01766362600028515, -0.01801554299890995, 0.009794963523745537, 0.02324666455388069, 0.004997368436306715, 0.036525506526231766, -0.003676091320812702, 0.005330303218215704, -0.02247178740799427, -0.038212794810533524, 0.011224646121263504, 0.024130215868353844, 0.00449978094547987, 0.05296419933438301, 0.009274921379983425, -0.015534396283328533, 0.027161329984664917, 0.006857774220407009, -0.03772558271884918, -0.014992989599704742, -0.027173876762390137, 0.018694711849093437, 0.02473508007824421, -0.038340143859386444, -0.026503797620534897, -0.02132970280945301, -0.023079443722963333, 0.020798448473215103, 0.0024985182099044323, -0.0172582920640707, 0.027136923745274544, 0.0038415794260799885, -0.01096965093165636, 0.06523045897483826, 0.006803023163229227, 0.00875847414135933, -0.03609136864542961, 0.043473850935697556, 0.037434328347444534, -0.017348894849419594, 0.01129184290766716, 0.022031154483556747, 0.014170940034091473, -0.013334615156054497, 0.022318851202726364, 0.025640316307544708, -0.013026472181081772, 0.021558398380875587, 0.005234879907220602, -0.049234047532081604, -0.0316057987511158, -0.007042428012937307, -0.02154977060854435, 0.04518948495388031, 0.018582647666335106, -0.012076476588845253, 0.02926316112279892, -0.0376400463283062, -0.03470518812537193, 0.028581783175468445, -0.05213645473122597, 0.006151922978460789, 0.04335475713014603, 0.011291740462183952, -0.022820239886641502, -0.015104157850146294, -0.06331068277359009, 0.024758031591773033, 0.021412808448076248, -0.020554931834340096, -0.02870454080402851, 0.015233853831887245, -0.008968273177742958, 0.019979992881417274, 0.01630881428718567, -0.013187022879719734, 0.004626629874110222, -0.0021120316814631224, -0.01882087253034115, -0.0582127571105957, 0.006788204424083233, 0.011459236964583397, 0.007721035275608301, -0.01960228942334652, 0.006577892228960991, 0.04884710907936096, -0.010919027961790562, -0.0008161744335666299, -0.01590445637702942, 0.01365326065570116, -0.01937858760356903, 0.017628617584705353, -0.0014731764094904065, -0.02309204638004303, -0.042119503021240234, 0.021182162687182426, -0.0014620162546634674, -0.046968113631010056, -0.004065289627760649, 0.04489479586482048, 0.025116929784417152, -0.030181707814335823, 0.0436524972319603, 0.028570152819156647, 0.012568074278533459, -0.027339618653059006, 0.018931090831756592, -0.010300472378730774, 0.033127978444099426, 0.06343862414360046, 0.008217375725507736, -0.004433565307408571, 0.05335291102528572, 0.04180674999952316, 0.013181715272367, 0.019831808283925056, 0.018418869003653526, 0.03969613090157509, -0.03829969838261604, 0.0056111630983650684, -0.024379920214414597, 0.009778229519724846, -0.007003596518188715, -0.008911371231079102, -0.013748099096119404, -0.019863754510879517, -0.024563927203416824, 0.011161026544868946, -0.0334891602396965, 0.021190589293837547, -0.042909298092126846, 0.011482545174658298, -0.007364050485193729, -0.012361004017293453, 0.013248291797935963, 0.043766867369413376, -0.008898942731320858, 0.0022805919870734215, 0.05217171087861061, 0.03608651086688042, -0.017401237040758133, 0.05518621206283569, 0.008550354279577732, 0.013019793666899204, -0.014305525459349155, -0.005013691261410713, 0.02393030934035778, -0.003364150645211339, -0.0477232001721859, 0.02005459927022457, -0.024801723659038544, 0.043056588619947433, -0.03598770871758461, -0.060237567871809006, 0.0316677987575531, -0.024363605305552483, -0.0068269451148808, -0.05875570327043533, 0.05625530704855919, -0.04191289842128754, -0.01412087120115757, 0.032997891306877136, -0.028666649013757706, -0.013723742216825485, 0.05798204243183136, 0.0420663021504879, 0.04673024266958237, -0.0028771560173481703, 0.050202593207359314, -0.018927201628684998, 0.006495847832411528, 0.04312954843044281, -0.026220539584755898, -0.001441348111256957, 0.04588998854160309, -0.013058572076261044, -0.06182382255792618, 0.0026541445404291153, -0.03318564593791962, 0.0029607657343149185, 0.016644012182950974, -0.039432376623153687, -0.016545357182621956, 0.05384243652224541, -0.015138683840632439, -0.05614538490772247, 0.01682090200483799, 0.0035852123983204365, -0.04954032599925995, 0.03546152263879776, 0.019609026610851288, 0.0375358983874321, -0.013871153816580772, -0.0006518210866488516, -0.06545965373516083, -0.02568833902478218, -0.011337745934724808, -0.03876103460788727, 0.05130082741379738, -0.006651752162724733, -0.008625773712992668, -0.06704507768154144, -0.04385662451386452, -0.017814749851822853, 0.03035307303071022, -0.038578182458877563, -0.03996100649237633, 0.019032185897231102, 0.04858594015240669, 0.016897061839699745, -0.011491475626826286, -0.04859120771288872, -0.012710143812000751, 0.02264503389596939, 0.054601870477199554, -0.015328931622207165, 0.019980669021606445, 0.03438122943043709, -0.026089949533343315, 0.032368917018175125, -0.028524380177259445, 0.06210082024335861, -0.0007433064165525138, 0.03780900686979294, -0.0033250288106501102, 0.026041191071271896, -0.01666991226375103, -0.025218725204467773, -0.0019730583298951387, 0.023547695949673653, 0.007441216614097357, -0.023912180215120316, -0.07212331146001816, -0.0024337396025657654, -0.04108301177620888, -0.0020134805236011744, -0.03982970118522644, 0.04957498610019684, 0.025308508425951004, -0.027235716581344604, -0.0019731491338461637, -0.07112910598516464, 0.13590161502361298, 0.05922286584973335, 0.013525009155273438, 0.0016813093097880483, 0.03313791751861572, 0.03513197973370552, 0.02909490093588829, -0.009914622642099857, -0.008245429024100304, -0.027368279173970222, 0.04313882812857628, -0.018399666994810104, 0.02977353148162365, -0.018085019662976265, 0.07327420264482498, 0.05404754355549812, -0.030429350212216377, 0.001726409886032343, 0.02366318181157112, -0.04090115800499916, -0.030577288940548897, 0.046146538108587265, -0.0027680848725140095, 0.04049774631857872, 0.015280059538781643, 0.0015410176711156964, 0.004774260800331831, -0.06399833410978317, -0.012359702959656715, -0.007992248050868511, 0.014464888721704483, -0.015377016738057137, 0.026350177824497223, -0.023895546793937683, -0.035084906965494156, 0.032944969832897186, -0.0180713701993227, -0.02562272921204567, 0.009331976994872093, 0.003463250119239092, -0.023417072370648384, 0.00734432740136981, 0.03271850198507309, -0.04192597046494484, -0.010869969613850117, 0.01838369481265545, -0.05286429449915886, 0.018552348017692566, -0.008568392135202885, -0.05193626880645752, 0.045383960008621216, -0.020323021337389946, 0.04195820167660713, -0.006271780468523502, -0.03914223983883858, 0.021489538252353668, 0.023093489930033684, -0.020584404468536377, -0.014572713524103165, 0.018203990533947945, 0.03221778944134712, 0.012247481383383274, -0.012894379906356335, 0.028395377099514008, -0.019663065671920776, -0.007528209127485752, 0.00716925086453557, -0.01655500940978527, 0.000011389644896553364, -0.03403159976005554, -0.013519168831408024, -0.0045405966229736805, -0.009273486211895943, -0.018917201086878777, 0.04098723456263542, 0.024416083469986916, -0.019979465752840042, 0.03987715020775795, 0.04563003033399582, -0.026883739978075027, -0.03752470389008522, -0.06243375316262245, -0.025133702903985977, -0.021091477945446968, 0.032308343797922134, 0.009743021801114082, -0.035268716514110565, -0.02943909354507923, -0.024420825764536858, 0.029774965718388557, 0.03545710816979408, 0.022240405902266502, -0.017924372106790543, -0.006060621701180935, 0.0025209221057593822 ]
Google edge is working fine but when I browse with windows google chrome its connection timeout but internet explorer edge is. CrossOver Chrome OS Beta. These machines are designed to be. Even those who are using iPhone or Mac currently may probably still get used to Chrome. Abhishek mandloi February 16, on 4: 12 pm Reply. Works great for me! Google Reader has been discontinued. One way to spice it up is by changing the Google search background ( and adjacent components). Chrome Cleanup Tool for Windows. I closed my torrent and deleted a few unwanted downloads. May 24 ยท If you use Google Chrome as a web browser you have probably noticed that the Adobe Flash plugin is contained within the app by default even if you have uninstalled Flash on your Mac. So I have an MSI GE62 laptop and I really only use Chrome as my browser. It is the last step of a. Let' s understand it first. TheINQUIRER publishes daily news devices, reviews on the latest gadgets , INQdepth articles for tech buffs hobbyists. Requires an Intel processor and Android 5. Google has many special features to help you find exactly what you' re looking the beginning of September so called " Chrome MD" ( for Material design), the new Chrome Core UI redesign rolled out on Windows as part of our 53rd update. Instead of Windows 10 macOS Chromebooks run Google' s Chrome OS. Professional Windows Backup Software MiniTool ShadowMaker Pro is the best data protection and disaster recovery solution that keeps your data protected. Aug 02, ยท Google chrome is not working after upgrading to windows 10. This is good because the plugin is sandboxed, but some users. Other quick method is to hold down shift key while clicking on refresh button in any of the browser. The CrossOver on Chrome OS Beta which allows you to run Windows software on Intel- based Chromebooks is now open to the public as of November 7 . Oct 22, ยท I just had this problem a few minutes ago. ; Guards against people pretending to be you: If you lose your fault browser of Microsoft Windows is Microsoft Edge. Suddenly ( as of the past week when I first open Chrome ( whether it be as soon as I start my laptop , so) if it has been ru. We understand you may not agree with this decision, but we hope you' ll come to love these. Can i download google chrome on my macbook. Apr 06 this takes responsibility out of user hands , ยท Google Chrome automatically updates itself in the background when a new version is out makes it simple to keep up to date with the latest version of the Chrome app for Mac. You' ve identified my exact issue on my home laptop that started 2 days ago. A Chromebook is a laptop of a different breed. Can i download google chrome on my macbook. The Google- made app lets you use your finger or a digital stylus to draw from within the. This tool is only available for Windows 7 / 8 / 10 and you can download for free. Many times it happens that when I buy new domain name Google Chrome has a built- in internal DNS caching system which stores , after changing nameservers & hosting it in my server, it takes lots of time to resolve DNS, then I came to know that, saves the domain name which I believe is to improve webpage loading performance. But Why browser is so important. Google' s app design is fairly plain, but it doesn' t have to stay that way. I think my drive was too full to even cache the Chrome browser. I' m even getting these annoying pop- ups from Norton stating that it can' t do an automatic repair for Norton arch the world' s information including webpages, images, videos more. Advanced Protection adds enhanced security features to your Google Account. ZDNet' s technology experts deliver the best tech news analysis on the latest issues , events in IT for business technology professionals, IT managers tech- savvy business people. Nov 06, ยท Catching Up With History. Can i download google chrome on my macbook. This will completly reload the page overwriting all cookies and cached files. Each option is discussed detail in the below sections. Whenever you click a link in your mail use Windows 10 search bar for internet search it opens the default browser of your operating system , you search something in your windows search box the best browser so far is Google Chrome. Can i download google chrome on my macbook. Google has a dedicated cleanup tool to scan remove the malware spyware causing problem with Chrome browser. Can download some free apps directly from Chrome now, this post I will go though steps explaining how to fix a MacBook Pro after liquid spill. We want to thank all our loyal fans. ; Helps keep your data safe: Advanced Protection limits the services that can access your data. I purchased the original Chromebook Pixel in, back when there was a general consensus that there was no reason to spend that much money on a Chromebook. I like Pixel computers. Not all liquid spills can be repaired but if you do everything correctly there is. It' s the strongest way to secure your account against phishing. When an account is attached to an online review it is more likely to be a legitimate review from a real person, not a fake review created by the business owner to. Now you can take quick notes doodle straight within your browser thanks to the launch of Chrome Canvas. With the Google Play Store popular browser across this planet, discover more to add ing the most renowned , get the mobile apps you love for your Chromebook , Google Chrome is a must- have application on both desktop your phone. The third way Google My Business review are valuable is because a user must have a Google account to leave a review. Thank you for stopping by. Protects you against phishing: A physical security key and password is needed to sign in. The new 13- inch MacBook Air comes more than 10 years after the original, whose unique wedge shape gave it a minimum height of. How to Download and Install Google Chrome. Google Chrome is a lightweight browser that is free to download for Windows, Mac OS X, Linux, Android, and iOS. Follow this guide to get it downloaded and installed on your system of choice. the past there were many sites, apps, and plugins for all browsers to save youtube videos. But lately it seems like all of the apps are getting removed from the chrome web store. You don' t need to buy a Chromebook to enjoy the features of Google' s desktop operating system ( OS). In fact, all you need is a working computer and a USB Drive. Google doesn' t officially offer a way to try it out, but developers have figured out ways for you to experiment with the open- source. Due to the popularity of my old post on how to download firefox without a web browser, I decided to figure out a way to do the same thing with Chrome. Chrome doesn' t seem easily accessible on FTP, so this method allows you to still download Chrome from a safe web source, via the HTTP link that Google. I Like Pixel Laptops. Let' s get this out of the way from the beginning.
[ -0.011383786797523499, -0.007972043007612228, -0.00027587704244069755, 0.027891768142580986, -0.013583260588347912, 0.031606242060661316, 0.03011852316558361, 0.011527993716299534, 0.050284937024116516, 0.03850291296839714, 0.007931153289973736, -0.0001467643305659294, 0.005499731283634901, -0.035500817000865936, 0.006256542634218931, -0.0034292840864509344, -0.0357074961066246, -0.015624410472810268, -0.041852936148643494, 0.010445725172758102, 0.02840801700949669, 0.014660444110631943, -0.04550939425826073, -0.02384369820356369, -0.036457907408475876, 0.029292797669768333, 0.022312398999929428, -0.025378523394465446, 0.04285012558102608, 0.03996047005057335, -0.02884695678949356, -0.06783287227153778, 0.004147212021052837, -0.025167763233184814, -0.015788206830620766, -0.03173064440488815, 0.016549834981560707, -0.026263490319252014, -0.02849770337343216, -0.04203936085104942, 0.006672814954072237, -0.0454242043197155, 0.013581194914877415, -0.0313454307615757, -0.0228030476719141, -0.01325658056885004, -0.004341308493167162, -0.005404487252235413, 0.010377920232713223, -0.043505363166332245, 0.014455614611506462, 0.01733926124870777, -0.016781773418188095, -0.01928572915494442, -0.004699198063462973, 0.014661137014627457, 0.011201799847185612, -0.002980024553835392, -0.04483737424015999, -0.013126839883625507, 0.01973208785057068, 0.04749704897403717, 0.029910361394286156, -0.05555218085646629, 0.04544316604733467, 0.04033876582980156, 0.0021235535386949778, 0.002494499320164323, 0.019659923389554024, 0.0222860686480999, -0.03702417016029358, 0.016274871304631233, 0.008162843063473701, -0.03905346617102623, -0.0074640363454818726, -0.011680017225444317, -0.0246299859136343, 0.024532444775104523, 0.015531337819993496, 0.045627981424331665, 0.030900748446583748, 0.052561353892087936, -0.022593554109334946, 0.022945070639252663, -0.06094600632786751, -0.03113902360200882, 0.0023860943038016558, 0.027756545692682266, -0.013015961274504662, -0.0012139440514147282, -0.026694271713495255, 0.04121537134051323, 0.010315521620213985, -0.005012513604015112, 0.02039553038775921, 0.04858717322349548, -0.03029225952923298, 0.007370113395154476, 0.01955125667154789, 0.0047210282646119595, 0.04500660300254822, 0.04392440617084503, -0.0030406585428863764, 0.031071817502379417, -0.040735092014074326, -0.0013551991432905197, 0.00272019999101758, -0.04302296042442322, -0.04505591839551926, -0.06163925677537918, -0.010393294505774975, -0.012338376604020596, 0.006204367149621248, 0.02443857491016388, 0.007801378611475229, 0.022976402193307877, -0.021357297897338867, 0.045339517295360565, -0.015575863420963287, 0.02628427930176258, -0.009470836259424686, 0.00239838776178658, 0.007048777770251036, -0.02632330171763897, 0.013117151334881783, -0.033057887107133865, -0.049484528601169586, 0.04321286454796791, -0.030820287764072418, -0.011478104628622532, -0.026699859648942947, -0.006305686663836241, 0.019468815997242928, 0.019696475937962532, 0.021010445430874825, 0.03297073766589165, 0.003238649806007743, 0.013742492534220219, 0.017010536044836044, -0.07112560421228409, 0.04174228757619858, 0.015830017626285553, -0.014141874387860298, 0.09635602682828903, 0.031179510056972504, 0.019890544936060905, 0.011785167269408703, -0.007058736402541399, -0.00046327264863066375, 0.031021112576127052, -0.055002253502607346, 0.06082354113459587, 0.02282758802175522, 0.007676227483898401, -0.002127640414983034, 0.009474312886595726, -0.005863821599632502, 0.021979326382279396, 0.047413576394319534, 0.028958899900317192, 0.015416518785059452, 0.06018395349383354, -0.0034924959763884544, 0.048757653683423996, -0.03374190255999565, 0.03996512293815613, -0.04684055596590042, -0.021114027127623558, 0.004303334280848503, -0.016919486224651337, -0.002061812672764063, 0.003137880237773061, -0.019880615174770355, 0.01460294984281063, 0.027434997260570526, 0.0129469595849514, 0.015503432601690292, -0.0062087662518024445, 0.037479132413864136, 0.03445319086313248, -0.04810192435979843, 0.010165354236960411, 0.017900442704558372, 0.057511553168296814, 0.01251880545169115, 0.017334239557385445, 0.009078278206288815, -0.03754691407084465, -0.04566130414605141, -0.02730008214712143, 0.0017779243644326925, 0.028995249420404434, -0.04041977599263191, 0.01794465258717537, -0.011882874183356762, 0.020892629399895668, -0.008262036368250847, -0.008879177272319794, -0.005038239061832428, -0.1007259339094162, -0.022453734651207924, 0.04412966966629028, -0.030741970986127853, 0.02010779269039631, 0.011182795278728008, -0.027968237176537514, 0.0382491871714592, 0.04643125832080841, -0.04326247423887253, 0.0017899188678711653, 0.03532296046614647, 0.03565745800733566, -0.03408309817314148, -0.039509207010269165, 0.02743491344153881, -0.01694701984524727, -0.035710547119379044, 0.041387706995010376, 0.017802132293581963, 0.017220813781023026, 0.03481130674481392, 0.029560517519712448, 0.021945657208561897, 0.0360879972577095, 0.004177698865532875, 0.051917679607868195, -0.01209328044205904, 0.03379534184932709, -0.043849408626556396, 0.004933898337185383, -0.009957476519048214, 0.05159870907664299, -0.008936719968914986, 0.0638030394911766, 0.03422492370009422, 0.03302591294050217, 0.03732434660196304, 0.028569962829351425, 0.0066003049723804, 0.03147831931710243, -0.008538659662008286, 0.019818836823105812, 0.052838630974292755, 0.044160060584545135, -0.006064918357878923, 0.007272711955010891, -0.006332972552627325, -0.012969707138836384, -0.0352010615170002, 0.04723287373781204, 0.0022577387280762196, 0.05330916866660118, 0.01213348563760519, 0.009004184976220131, -0.042181387543678284, -0.006462765391916037, 0.04083043336868286, 0.05867185816168785, -0.017987024039030075, -0.043072864413261414, -0.0014076146762818098, 0.013642493635416031, -0.024487843737006187, 0.011264338158071041, 0.006852598395198584, 0.028627019375562668, -0.025732167065143585, 0.002699310891330242, -0.009500215761363506, -0.04800115525722504, -0.05713421106338501, -0.06630072742700577, -0.04609905928373337, -0.017209161072969437, -0.06996650993824005, -0.026955164968967438, 0.03597510978579521, -0.046955667436122894, 0.03940273076295853, 0.01658875122666359, 0.01119923871010542, -0.03864512965083122, -0.025697506964206696, 0.04375787824392319, 0.025484450161457062, 0.037339456379413605, -0.029455604031682014, 0.024896863847970963, 0.006203886121511459, 0.055945709347724915, -0.04120821878314018, 0.0008186675840988755, 0.03007950447499752, -0.02163008041679859, 0.03323742747306824, -0.02532346174120903, 0.015789134427905083, 0.04695936292409897, -0.02536485157907009, -0.048193592578172684, 0.0036530110519379377, 0.0007780931191518903, 0.01486875768750906, 0.021621039137244225, -0.020341547206044197, 0.06098905950784683, -0.0014267427613958716, -0.02137371338903904, 0.07141978293657303, 0.04023214057087898, -0.05428069829940796, 0.05049508810043335, 0.027596699073910713, -0.001432679477147758, -0.053567927330732346, 0.07321161031723022, 0.02827923744916916, 0.02634984627366066, -0.011585907079279423, -0.001076192012988031, -0.01976647600531578, -0.01271076686680317, -0.012002149596810341, -0.020143361762166023, -0.008806869387626648, 0.0593627505004406, 0.009564257226884365, -0.07741229981184006, 0.03952598199248314, -0.045945048332214355, -0.04100833088159561, -0.0312618650496006, -0.03968694061040878, 0.0357094407081604, 0.05755550414323807, 0.024001965299248695, 0.029443340376019478, -0.02187514491379261, -0.004926283378154039, 0.01902049221098423, 0.04702523723244667, -0.01843000389635563, 0.03703879565000534, 0.034600477665662766, 0.03060566633939743, -0.00948189478367567, 0.017090659588575363, -0.04831509664654732, 0.03376924246549606, 0.008194737136363983, -0.025696231052279472, 0.005595443770289421, 0.03214137628674507, 0.007561974693089724, 0.016634050756692886, 0.050043411552906036, -0.06484749913215637, -0.016912605613470078, -0.01196823175996542, 0.0035283772740513086, 0.01355311181396246, 0.03270997852087021, -0.00003569714317563921, 0.039283305406570435, -0.007636678870767355, -0.05061420053243637, 0.029455676674842834, 0.04403693228960037, 0.036773283034563065, -0.03315664082765579, 0.036303892731666565, -0.036373499780893326, -0.026367008686065674, 0.0493951141834259, -0.030978381633758545, 0.01778463087975979, 0.05915406346321106, -0.020406650379300117, 0.03228851780295372, -0.025113381445407867, 0.03004944510757923, -0.0266498401761055, 0.027115635573863983, 0.030891817063093185, -0.03889517858624458, 0.013460084795951843, -0.007795548997819424, 0.028286142274737358, 0.00043127252138219774, -0.03776582330465317, -0.013317756354808807, -0.019579799845814705, 0.00814075954258442, -0.016505369916558266, -0.05720895156264305, -0.03956655040383339, 0.007461835630238056, 0.01761029101908207, 0.006403977982699871, -0.012799241580069065, 0.049238115549087524, -0.01718989573419094, 0.015575164929032326, 0.04934406653046608, -0.019407136365771294, -0.005863763391971588, -0.05363039672374725, 0.0362861268222332, 0.026331521570682526, -0.023535557091236115, -0.04347823187708855, -0.028130894526839256, -0.04486542567610741, 0.027499254792928696, 0.010201833210885525, -0.016331706196069717, -0.0648052841424942, 0.0048439535312354565, 0.007873228751122952, 0.01668558456003666, -0.01790871098637581, -0.027290387079119682, -0.04925643280148506, 0.05843255668878555, 0.029353752732276917, -0.03163685277104378, -0.012745223008096218, -0.039963334798812866, 0.010879682376980782, 0.044934842735528946, 0.03605610132217407, -0.008610839955508709, -0.03314482420682907, -0.0683257132768631, -0.03873489797115326, 0.04970683157444, 0.014951996505260468, 0.017182061448693275, 0.005628265906125307, -0.06764303892850876, 0.005165465176105499, 0.056943099945783615, 0.00711708003655076, -0.026067933067679405, 0.02248157188296318, 0.03837556019425392, 0.012211677618324757, 0.03786034882068634, 0.010621277615427971, 0.00388258951716125, 0.047305554151535034, -0.047891147434711456, 0.059460461139678955, -0.007040226366370916, -0.0341506265103817, -0.022570930421352386, 0.020710211247205734, -0.00811699777841568, 0.024368640035390854, -0.017281634733080864, 0.01056924369186163, -0.012238078750669956, 0.0457390658557415, -0.012616850435733795, -0.053306952118873596, 0.04673069715499878, -0.02824660949409008, -0.008713535033166409, 0.02631678618490696, 0.026123860850930214, -0.03418537229299545, 0.0498613566160202, -0.013865593820810318, -0.02621494047343731, 0.021626941859722137, -0.04017360880970955, 0.00180721003562212, -0.021283403038978577, -0.04612348973751068, 0.00421783747151494, -0.05108799785375595, 0.031364284455776215, 0.014294303953647614, 0.008630912750959396, -0.04736223444342613, -0.03258335962891579, -0.019477885216474533, -0.00023709653760306537, -0.0009446660988032818, -0.0036727492697536945, -0.006270705722272396, -0.01842585578560829, 0.012878174893558025, -0.004441688768565655, -0.025203827768564224, -0.01081046275794506, -0.008633670397102833, -0.02456960454583168, 0.01693595200777054, -0.0050553614273667336, 0.01124016847461462, -0.029813256114721298, -0.051559798419475555, 0.026868173852562904, -0.008622512221336365, -0.022340282797813416, -0.03551376983523369, -0.0029158336110413074, -0.049165792763233185, -0.021857833489775658, -0.006307046394795179, 0.013853027485311031, -0.011957515962421894, 0.012011505663394928, 0.05829114839434624, 0.024312084540724754, -0.0016847447259351611, 0.008044900372624397, -0.04544572904706001, 0.044102754443883896, 0.023053213953971863, -0.05332326889038086, -0.011708163656294346, 0.042678430676460266, 0.00044259082642383873, 0.0664566159248352, 0.02968030795454979, -0.034390248358249664, -0.02694438397884369, -0.011861614882946014, -0.01748751848936081, -0.020374421030282974, -0.021815788000822067, -0.032744985073804855, -0.010029826313257217, -0.036851074546575546, 0.0386621467769146, 0.003941272851079702, -0.03745139017701149, 0.003750818781554699, -0.06427200138568878, 0.027394721284508705, -0.04359406232833862, 0.014817270450294018, -0.008295166306197643, -0.015489708632230759, -0.021246299147605896, 0.015254094265401363, -0.008836125023663044, 0.018403811380267143, 0.0038564468268305063, 0.005116854328662157, 0.007322594057768583, -0.03537486121058464, -0.049672022461891174, -0.03782634064555168, 0.017235947772860527, -0.015628281980752945, 0.012301969341933727, -0.002370774280279875, -0.06661652773618698, 0.04218195378780365, -0.05385211110115051, 0.0072708758525550365, -0.022954680025577545, 0.02399013377726078, -0.04568333178758621, -0.008770125918090343, 0.008055134676396847, -0.007646125741302967, -0.0032671992667019367, -0.002108477521687746, 0.04414781555533409, 0.0367615707218647, 0.007275048177689314, -0.04726714640855789, 0.001038644346408546, -0.06251218169927597, -0.03226406127214432, 0.008505853824317455, -0.04704264923930168, 0.01027284562587738, -0.06208738312125206, -0.04123060777783394, 0.0006629229173995554, 0.0018264229875057936, 0.008250636979937553, 0.056125130504369736, -0.014961074106395245, 0.0033374170307070017, -0.03178993985056877, 0.025272415950894356, 0.024842504411935806, -0.024085307493805885, -0.013565325178205967, -0.012862646952271461, -0.03463808074593544, 0.000677453528624028, -0.028726089745759964, -0.015814539045095444, -0.02449038438498974, -0.013493777252733707, 0.0688411220908165, -0.04968089610338211, 0.03503462299704552, -0.02771141193807125, -0.0676511749625206, -0.013226347044110298, 0.04619373753666878, -0.006862107198685408, 0.02541501820087433, 0.04212700203061104, -0.012414008378982544, -0.012009990401566029, 0.059436529874801636, -0.047728147357702255, 0.0031161061488091946, -0.035067252814769745, 0.06384497135877609, -0.03766299784183502, -0.01977401040494442, 0.07347352802753448, 0.06255628913640976, -0.03413626179099083, -0.07218834012746811, -0.0026358591858297586, 0.015646377578377724, -0.007004651241004467, -0.027380654588341713, 0.013838384300470352, -0.03636492043733597, 0.0074217841029167175, -0.015924062579870224, 0.028049198910593987, 0.01084995735436678, 0.04169924557209015, 0.028624406084418297, 0.030255505815148354, -0.011155394837260246, 0.0020446849521249533, 0.039272043853998184, 0.002072796691209078, -0.007938297465443611, -0.034812651574611664, 0.004301796667277813, 0.0007824641652405262, -0.016979778185486794, 0.060309506952762604, 0.0020661805756390095, 0.010596349835395813, 0.025227364152669907, -0.00849766843020916, 0.0269676074385643, -0.012770386412739754, -0.020443368703126907, 0.018707508221268654, -0.03174152597784996, -0.07481309771537781, -0.024804556742310524, 0.012205075472593307, 0.019048893824219704, 0.008429465815424919, -0.0428139865398407, 0.0322592556476593, 0.010919499211013317, -0.01875016838312149, -0.0350082702934742, -0.050954580307006836, -0.022097688168287277, -0.073640376329422, -0.013095933943986893, 0.02405354380607605, -0.0192102063447237, -0.034312695264816284, 0.029303351417183876, -0.0004767483042087406, -0.012032813392579556, -0.015661071985960007, 0.0023231646046042442, -0.0239324439316988, -0.02010319195687771, -0.025573190301656723, 0.026087561622262, -0.06271173059940338, -0.045581474900245667, -0.03851756826043129, -0.014004596509039402, 0.01536876056343317, -0.008354009129106998, -0.02522776462137699, -0.00006110060348873958, -0.0006655253237113357, -0.00780923618003726, -0.010707531124353409, 0.0205876212567091, -0.0423462949693203, -0.03950802981853485, -0.01781119406223297, 0.020857850089669228, -0.022898610681295395, 0.029996203258633614, 0.058928657323122025, -0.03170875459909439, 0.033021390438079834, -0.021611487492918968, -0.0158165842294693, -0.03273738920688629, -0.02132229506969452, 0.0033480743877589703, 0.010976671241223812, -0.029661433771252632, -0.02388346754014492, 0.0032266592606902122, -0.04139620438218117, 0.015559904277324677, -0.01865912415087223, 0.010639938525855541, -0.0155119514092803, -0.017940565943717957, 0.004220244474709034, -0.005586048122495413, 0.01876305788755417, 0.02306271716952324, -0.013436836190521717, 0.007233018986880779, 0.013859396800398827, -0.04113154113292694, 0.010117903351783752, 0.01760675013065338, 0.03612232580780983, -0.033410824835300446, -0.004764549899846315, 0.0020764225628226995, 0.029579374939203262, -0.007367185782641172, -0.015230143442749977, -0.0130529860034585, -0.039588812738657, -0.019135193899273872, 0.014592467807233334, 0.045531198382377625, 0.025401465594768524, 0.0037201507948338985, 0.018689537420868874, -0.009217527695000172, -0.06150142848491669, 0.044382691383361816, -0.05361258611083031, -0.022722190245985985, -0.0053555043414235115, -0.01406050007790327, 0.012026972137391567, -0.03416265547275543, -0.025877583771944046, 0.0024673345033079386, -0.017214953899383545, -0.03217050060629845, 0.030047006905078888, 0.018890338018536568, 0.007898534648120403, 0.05004030093550682, -0.015679167583584785, 0.011883914470672607, -0.009442870505154133, 0.04112350940704346, -0.0367443710565567, -0.04283945634961128, -0.0034918845631182194, 0.008104298263788223, 0.008936025202274323, 0.003506474895402789, -0.027626071125268936, 0.00808363500982523, 0.02482130005955696, -0.008512006141245365, 0.01960967667400837, 0.011786703020334244, -0.02024434506893158, 0.06224624440073967, -0.023169683292508125, 0.005463345907628536, -0.04165664687752724, 0.025009434670209885, -0.009406432509422302, -0.022839009761810303, -0.015021465718746185, 0.0009424547897651792, 0.08426853269338608, -0.028428662568330765, 0.04377718269824982, 0.001044351956807077, 0.009013750590384007, -0.018133418634533882, 0.006673322059214115, -0.0068109482526779175, 0.035757116973400116, 0.04255620390176773, 0.024446852505207062, 0.00724026421085, 0.0221976600587368, 0.07946107536554337, -0.016923367977142334, -0.004731849767267704, 0.030548812821507454, 0.004792454186826944, -0.05508197098970413, 0.004028428345918655, -0.013836239464581013, 0.015880528837442398, 0.021076200529932976, -0.03797370195388794, -0.020699383690953255, -0.02278980240225792, -0.028965353965759277, -0.00048150322982110083, -0.016302166506648064, 0.04432446509599686, -0.02181434817612171, -0.001755516859702766, -0.01824493706226349, -0.02383813075721264, 0.013964302837848663, 0.026220448315143585, 0.014988216571509838, -0.0011630894150584936, 0.040245573967695236, 0.025054752826690674, -0.0063705602660775185, 0.055058930069208145, 0.01926366239786148, 0.013383151963353157, -0.01883086748421192, -0.023025553673505783, 0.0076631661504507065, -0.018392467871308327, -0.01934978738427162, 0.02753310464322567, -0.05463238060474396, 0.02461760863661766, -0.025671403855085373, -0.00829124916344881, 0.04610002413392067, -0.04841933771967888, -0.07261472195386887, -0.04678000509738922, 0.06095501035451889, -0.024167727679014206, -0.03207210451364517, 0.05506390705704689, -0.014999271370470524, -0.017414452508091927, 0.01072450540959835, -0.017383992671966553, 0.058578502386808395, -0.005802424158900976, 0.05426846444606781, -0.007607169449329376, 0.057216886430978775, 0.02598893642425537, -0.01310601457953453, -0.0236970242112875, 0.03743613883852959, -0.04131360724568367, -0.03784743696451187, 0.005868047941476107, 0.0004421216144692153, -0.0044275191612541676, -0.017840784043073654, -0.02253154292702675, -0.00928406324237585, 0.029384909197688103, -0.024293677881360054, -0.016320964321494102, -0.01562514156103134, 0.052879299968481064, -0.04201199859380722, 0.008872118778526783, 0.03995208069682121, 0.029684560373425484, 0.005434908904135227, -0.05017762631177902, -0.03396366164088249, -0.030074721202254295, -0.004362755920737982, -0.02427813597023487, 0.0451403371989727, -0.013726855628192425, -0.028745394200086594, -0.010051345452666283, -0.04376451298594475, -0.04626023769378662, -0.003949676640331745, -0.03496670350432396, -0.05572829023003578, 0.04048225283622742, 0.03250512480735779, 0.010320151224732399, 0.039800167083740234, -0.027880996465682983, 0.030721597373485565, 0.024927489459514618, 0.05129745602607727, 0.013693852350115776, 0.03696700185537338, 0.004283142276108265, -0.00043901160825043917, -0.0030801985412836075, -0.021735016256570816, 0.036921918392181396, 0.00431817676872015, -0.002411356894299388, -0.016016460955142975, -0.0013437116285786033, -0.00737086171284318, -0.01462672557681799, 0.004596920683979988, 0.02106492780148983, 0.00193358666729182, -0.048846375197172165, -0.0602993406355381, -0.008617563173174858, -0.06795257329940796, 0.007103356998413801, -0.04183486849069595, 0.015008698217570782, 0.013768531382083893, -0.020110642537474632, 0.018779931589961052, -0.05818955972790718, 0.15014499425888062, 0.040442049503326416, 0.03835580497980118, 0.0044222804717719555, 0.009432232938706875, 0.05600009113550186, 0.030243948101997375, -0.029338277876377106, -0.010219617746770382, -0.014684336259961128, 0.04206158593297005, -0.022759882733225822, 0.033020295202732086, 0.01763647049665451, 0.022487005218863487, 0.05388721451163292, -0.019826913252472878, -0.005348907317966223, 0.03967125713825226, -0.06698780506849289, -0.02993202954530716, 0.024181203916668892, 0.01061989925801754, 0.00728601636365056, 0.016943007707595825, 0.015631478279829025, 0.030865009874105453, -0.04982907325029373, -0.008579918183386326, -0.022766120731830597, 0.030705152079463005, -0.028682885691523552, 0.040382612496614456, -0.02845461666584015, -0.029359441250562668, 0.061220962554216385, -0.018284432590007782, -0.005888559389859438, -0.009396358393132687, 0.02870459109544754, -0.0017002165550366044, -0.010909448377788067, 0.025403056293725967, -0.018306773155927658, 0.04405626654624939, 0.03712589666247368, -0.013716187328100204, -0.001509316498413682, 0.03296507149934769, -0.003812545444816351, 0.03815152123570442, -0.031753357499837875, 0.005973470862954855, 0.018248585984110832, -0.035225026309490204, -0.012936428189277649, 0.020261364057660103, -0.005909570958465338, 0.0007211308111436665, -0.0014185119653120637, 0.028900647535920143, 0.020148981362581253, 0.0027770004235208035, -0.013143861666321754, -0.04076965153217316, -0.0012251781299710274, 0.011273053474724293, 0.04526212066411972, 0.00040812903898768127, -0.036396611481904984, -0.029171230271458626, -0.01043024193495512, -0.003936409018933773, -0.005284097045660019, 0.04130896180868149, 0.0580662339925766, 0.0017072962364181876, 0.036752499639987946, 0.017110716551542282, -0.027990246191620827, -0.031223762780427933, 0.00328130554407835, -0.015677642077207565, 0.023358546197414398, 0.038742270320653915, 0.056029919534921646, -0.054951105266809464, -0.030832882970571518, -0.042289189994335175, 0.058153338730335236, 0.037102021276950836, 0.012371908873319626, 0.003671299898996949, -0.0477222315967083, 0.01049430388957262 ]
The NSW Government is proposing language legislation for the protection of Aboriginal Languages in NSW. Un-doubtedly the intentions are positive, but there are a number of assumptions in this proposal that need to be thought about carefully. I remember the weight of the word "protection". It has a long painful history in NSW. I remember the 1950s and 1960s and a number of occasions when I felt humiliated because of the NSW laws that were passed to "protect" Aborigines. There was The Aborigines Protection Act of 1909 , the imposition of it through the Aborigines Protection Board (later the NSW Aborigines Welfare Board) and the extreme conditions associated with the Certificates of Exemption, which were known to us as "dog tags". Some people may say that the past didn't happen, it wasn't so bad, but I am telling you, it was bad. Aboriginal people normally don't go around with a long face about it. If it is painful we are more likely to make a joke, laugh through the pain, but I am telling you that this history is still very painful. It is important to have an understanding of this history of Government intervention in order not to repeat it. For 30 years, at the request of the Wiradjuri Council of Elders, I have worked to bring back my language, Wiradjuri. I have taught everyone who wants to learn, Wiradjuri and non-Wiradjuri, Aboriginal and non-Aboriginal, because Wiradjuri is the language of my Country, and because this lang-uage tells us who we are. give me self-respect and identity. I travelled about all over Wiradjuri Country for years, running many workshops, teaching many hundreds of people, often for petrol money. With Dr John Rudder, we put together the Wiradjuri Dictionary and many other language resources. This grass roots spreading of Wiradjuri language is now strong. It is not academic linguist driven, it is not driven by large organisations, Government Departments or Universities. That side can come later, emerging from the communities. It is driven by the thirst from the people for the return of their language. I am concerned that the proposed legislation won't nourish these essential roots in the community and instead will be another taking away of what is precious to us. This grass roots movement does need financial support, but not external regulation. There are community language teachers who are completely dedicated to sharing their language with their communities, working with next to nothing. They may or may not be connected with the NSW Education system, but they are connected to their people. Unless language lives in its community in a dynamic and real way, it is not alive. This is the priority. Language is revitalised when it is spoken and taught by its community and by creating and sharing language learning resources to support this. Whose responsibility is language? Wiradjuri language is a Wiradjuri responsibility, other languages are the responsibility of their peoples. Aboriginal and non-Aboriginal can work together, but there is a way to do it and a way not to do it. We need time and space to succeed according to our way of doing things. In my experience, Government intervention sometimes causes more problems than it solves, on occasion giving power and resources to organisations and individuals that may be effective at speaking the language of Government, but who have limited cultural connection to the language of the communities concerned. The Aboriginal Peoples in NSW, and there are a number of us, not one, each with our own language, need to determine and manage our own futures. The United Nations Declaration on the Rights of Indigenous Peoples expresses this very well: Indigenous peoples have the fight to revitalise, use, develop and transmit to future generations their histories, languages, oral traditions, philosophies, writing systems and literatures and to designate and retain their own names for communities, places and persons. This right isn't just to have access to our own languages and cultures, but for Indigenous Peoples to control the process of how language is revitalised, used, developed and transmitted. It would be a misreading of the Declaration to take it mean that the State may override these rights in order to protect our languages. When we have control it is our right to choose who teaches it and who has access to it. We do not need legislation, no matter how well meaning, that manages and regulates, and diminishes our ability to take on this responsibility for ourselves. Languages need to be managed by us and taught our people's way, centred on our culture and priorities. For my people, the Wiradjuri, this is centred on a Wiradjuri way of doing things that is inseparable from the language itself. Language is much more than a linguistic exercise, it is the key to us understanding our Wiradjuri past, present and future, and maintaining our wellbeing and identity. 1 Comment on "Wiradjuri expert speaks out on legislation" What a brilliant letter, written by a brilliant man !
[ 0.009732306003570557, -0.006648404989391565, -0.038496386259794235, 0.02211732231080532, 0.005833738949149847, -0.009538269601762295, 0.0341523177921772, 0.02864861488342285, 0.004255529958754778, 0.035022955387830734, 0.025967426598072052, 0.020780805498361588, 0.018316498026251793, -0.009596219286322594, -0.01335317362099886, 0.019161904230713844, -0.017970694229006767, -0.025658249855041504, -0.045809775590896606, 0.019553925842046738, 0.020966311916708946, 0.01685478538274765, -0.07211364060640335, -0.03403352200984955, -0.034544892609119415, 0.039210908114910126, 0.04415631294250488, -0.02504657581448555, 0.05194016918540001, 0.05693839490413666, -0.025395307689905167, -0.03207092359662056, 0.05338413640856743, -0.046323202550411224, -0.05273185297846794, -0.06192835792899132, 0.032470595091581345, -0.05145365372300148, -0.007122660055756569, -0.02559245191514492, -0.005614586174488068, -0.023594656959176064, 0.04822715371847153, -0.013453180901706219, -0.04863697290420532, -0.008877451531589031, -0.007240915670990944, -0.035607922822237015, -0.0036111464723944664, -0.029064485803246498, 0.012363745830953121, 0.0015977934235706925, 0.023491716012358665, -0.008640537038445473, 0.017558783292770386, 0.025400934740900993, 0.02120576798915863, -0.010472895577549934, -0.03139718994498253, 0.013188539072871208, 0.0058083198964595795, 0.018619589507579803, 0.03704431280493736, -0.06076758727431297, 0.007562715094536543, 0.016469663009047508, 0.013063859194517136, 0.002207821002230048, 0.004517646040767431, -0.026714013889431953, 0.030202217400074005, 0.034372489899396896, -0.026803219690918922, -0.03246977925300598, -0.016227496787905693, -0.008093790151178837, -0.006735381670296192, -0.015903623774647713, -0.024089302867650986, 0.003960719797760248, 0.0011270134709775448, 0.06269940733909607, 0.02321949601173401, 0.00993836298584938, -0.0465412400662899, -0.007483304478228092, 0.00046823956654407084, 0.03478037193417549, 0.00011311592970741913, 0.014820259995758533, 0.010315819643437862, 0.06590451300144196, -0.04061161354184151, 0.009050640277564526, 0.03707665205001831, 0.045756980776786804, -0.036428213119506836, 0.018801160156726837, -0.0029340970795601606, -0.000503178802318871, 0.04803656041622162, 0.03564661741256714, 0.006850786041468382, 0.02935587801039219, -0.0277310311794281, -0.010295959189534187, -0.014342937618494034, -0.014779073186218739, 0.02823675237596035, 0.004027930554002523, -0.01948503777384758, -0.03131728246808052, 0.004893322475254536, -0.009733804501593113, 0.01554494071751833, 0.019173409789800644, 0.006410595029592514, 0.04331305995583534, -0.04038494825363159, 0.03814878314733505, 0.02453088015317917, 0.0056307013146579266, 0.04062454774975777, -0.004899834282696247, 0.0047448002733290195, -0.028267817571759224, -0.022918833419680595, 0.04015342891216278, -0.03573891893029213, 0.008400294929742813, 0.02557578682899475, -0.04404211416840553, -0.005380851682275534, -0.0011977644171565771, 0.01987071894109249, 0.021723981946706772, -0.00010503361409064382, 0.024955466389656067, 0.03253374621272087, -0.06304530054330826, 0.03585027530789375, 0.008277609944343567, 0.03407570347189903, 0.08429598063230515, -0.012490564025938511, 0.010742217302322388, -0.002459348412230611, 0.011889675632119179, -0.03046039678156376, 0.010110899806022644, -0.026145614683628082, 0.013546106405556202, 0.020549101755023003, 0.003022457705810666, -0.01984037086367607, -0.025438684970140457, 0.03905218094587326, 0.01643778569996357, 0.013874617405235767, 0.03339032456278801, -0.0544966384768486, 0.0030912465881556273, 0.009346296079456806, 0.045995280146598816, -0.02377038449048996, 0.02363782934844494, -0.012736920267343521, -0.008837420493364334, 0.012683559209108353, -0.014637629501521587, 0.027094699442386627, -0.0009241598309017718, -0.0254646185785532, 0.018436305224895477, 0.026570754125714302, 0.06417080014944077, 0.06939925253391266, 0.01673641800880432, 0.03658011928200722, 0.06600113213062286, -0.022801974788308144, -0.009569160640239716, -0.0049571143463253975, 0.05614357441663742, 0.021480338647961617, -0.018058128654956818, -0.004428694024682045, -0.015460868366062641, -0.028761079534888268, -0.034213773906230927, -0.027031410485506058, 0.01724807173013687, -0.029936110600829124, 0.005579655058681965, 0.015231754630804062, 0.019358066841959953, 0.006061597261577845, -0.020991234108805656, -0.010345305316150188, -0.05915838107466698, -0.040663447231054306, 0.05501982197165489, -0.015645837411284447, 0.050877008587121964, -0.0036902488209307194, -0.022272353991866112, 0.0054973638616502285, 0.04913729429244995, -0.034158580005168915, 0.010539822280406952, 0.02496948651969433, 0.0022559952922165394, -0.028357014060020447, -0.018561024218797684, 0.008375882171094418, -0.006161623168736696, -0.018047194927930832, 0.033041588962078094, -0.028281424194574356, -0.0005416951607912779, 0.014765137806534767, 0.02692662738263607, 0.036429740488529205, 0.027715034782886505, -0.00010871109407162294, -0.016637196764349937, 0.010352964513003826, 0.04694947227835655, -0.018044304102659225, -0.024945572018623352, 0.02155766263604164, 0.04500138759613037, 0.043096765875816345, 0.06532857567071915, 0.02221626043319702, 0.029566671699285507, 0.042326971888542175, 0.08530527353286743, 0.014049948193132877, 0.008075323887169361, -0.005500687751919031, 0.011214595288038254, 0.039395879954099655, 0.03190344199538231, -0.01810753159224987, 0.005479997955262661, -0.0032774782739579678, -0.0002393679751548916, 0.029681377112865448, 0.020701035857200623, -0.022556280717253685, 0.04363442212343216, 0.023542460054159164, 0.034732475876808167, -0.04488313943147659, 0.0025355564430356026, 0.04761498048901558, 0.06976830959320068, -0.03878434747457504, -0.030329644680023193, 0.022515181452035904, 0.026341140270233154, 0.005920670926570892, -0.020757261663675308, 0.0424826517701149, -0.003455132944509387, 0.02544694021344185, 0.0250957403331995, -0.047385748475790024, -0.0499844029545784, -0.039098985493183136, -0.05814673751592636, -0.04713638499379158, -0.02230839617550373, -0.05378043279051781, 0.005080935079604387, 0.03921210393309593, -0.0491059310734272, 0.01430986076593399, -0.008386839181184769, -0.017322497442364693, -0.029447250068187714, -0.017898010089993477, 0.045464422553777695, 0.015918012708425522, 0.03640251234173775, -0.029392383992671967, 0.021926721557974815, -0.012929476797580719, 0.03453458100557327, 0.0028522228822112083, -0.029048318043351173, -0.01389576680958271, -0.015768948942422867, 0.03365723043680191, 0.018337922170758247, 0.0007081232033669949, 0.010308426804840565, -0.021733226254582405, -0.0405377596616745, 0.004290004260838032, -0.012723417952656746, -0.004694298375397921, 0.0048050656914711, -0.06380785256624222, 0.031535618007183075, 0.01243321318179369, -0.03281962499022484, 0.05799460783600807, 0.045090317726135254, -0.057040464133024216, 0.034010618925094604, 0.0015693873865529895, 0.03020857833325863, -0.06103358790278435, 0.05428256839513779, 0.015370802022516727, 0.01171800959855318, -0.04377076029777527, -0.01971418969333172, -0.01230624970048666, 0.03141506761312485, 0.04547178000211716, -0.025559047237038612, -0.025388268753886223, 0.018823323771357536, 0.028381673619151115, -0.08024322986602783, 0.03634735196828842, -0.03985195979475975, -0.028360750526189804, -0.05593852698802948, -0.03726990148425102, 0.016328098252415657, 0.03726518526673317, 0.022701440379023552, -0.012749806977808475, -0.021912066265940666, -0.020203232765197754, 0.007583944592624903, 0.04402801766991615, -0.013334063813090324, 0.03619643673300743, 0.05304389074444771, -0.012169617228209972, 0.028579719364643097, -0.016633780673146248, -0.01521956454962492, 0.0052681476809084415, 0.012494918890297413, 0.00934246089309454, 0.03435840830206871, 0.025926612317562103, 0.008288536220788956, 0.01671035960316658, 0.048212986439466476, -0.01915145479142666, 0.00014795034076087177, 0.04145248234272003, 0.0146684180945158, 0.046947360038757324, 0.02158377133309841, 0.00970433745533228, -0.008105520159006119, -0.009201119653880596, -0.05245156213641167, 0.006083435378968716, -0.00926919188350439, 0.048505157232284546, -0.05952812731266022, 0.030969977378845215, -0.018457911908626556, -0.020112542435526848, 0.04592983052134514, -0.05235191807150841, -0.01096048578619957, 0.06438636779785156, -0.01482944842427969, 0.053913217037916183, -0.04660641774535179, 0.018284639343619347, -0.008085810579359531, 0.02020200714468956, 0.06656555831432343, -0.0020009067375212908, 0.021470217034220695, -0.008563810959458351, 0.016623983159661293, -0.0063100880943238735, -0.03520560637116432, -0.024708464741706848, -0.019241299480199814, -0.003594047389924526, -0.01648661121726036, -0.041756074875593185, -0.05147862061858177, 0.04062807559967041, 0.01799849607050419, 0.03573804721236229, -0.00023639797291252762, 0.04850652068853378, 0.001338749541901052, 0.01689704693853855, 0.025001240894198418, -0.010545562952756882, 0.014917712658643723, -0.04527769237756729, 0.03220104053616524, 0.007201658561825752, -0.050019800662994385, -0.030790040269494057, -0.010962335392832756, -0.016777019947767258, 0.025844158604741096, 0.015944765880703926, -0.010699978098273277, -0.029314296320080757, 0.026087727397680283, 0.029154274612665176, -0.01932486519217491, -0.06107158213853836, 0.005270104389637709, 0.0038040257059037685, 0.03217417746782303, 0.051010191440582275, -0.07035825401544571, 0.019974736496806145, -0.043809883296489716, 0.053667888045310974, 0.04604175314307213, 0.011006404645740986, -0.06518363207578659, 0.006811366882175207, -0.010102124884724617, -0.023883916437625885, 0.021324971690773964, 0.011025902815163136, 0.02087371051311493, 0.004460256081074476, -0.05445946007966995, 0.03561864420771599, 0.03887631744146347, 0.009837061166763306, -0.0036049606278538704, -0.011222001165151596, 0.01392342895269394, -0.019252415746450424, 0.042049478739500046, -0.016650665551424026, -0.03867552801966667, 0.039227765053510666, -0.06309535354375839, -0.0017488637240603566, -0.021093904972076416, -0.01874554716050625, 0.015013196505606174, 0.03361513465642929, 0.018579302355647087, 0.02279159612953663, -0.017747629433870316, -0.008511129766702652, -0.014030324295163155, 0.03583939000964165, -0.07319678366184235, -0.01015182863920927, 0.027149464935064316, 0.008675692602992058, -0.05354240909218788, 0.04884167015552521, 0.020541347563266754, 0.017604030668735504, 0.012971593998372555, 0.004512797575443983, -0.024927889928221703, 0.03277513384819031, -0.06799038499593735, 0.021871106699109077, -0.009926405735313892, -0.0672849714756012, -0.021440813317894936, -0.034580692648887634, 0.029823502525687218, 0.01007938478142023, -0.03347950801253319, -0.03992830589413643, -0.07347174733877182, -0.017454126849770546, 0.006459715310484171, 0.007949312217533588, 0.023346081376075745, 0.03984414413571358, 0.011487942188978195, 0.012881959788501263, -0.012257992289960384, -0.01909264735877514, -0.01604856550693512, -0.003584213787689805, -0.012311701662838459, 0.0035941607784479856, 0.030597522854804993, 0.03964656591415405, 0.004407948348671198, -0.012438887730240822, -0.0024123883340507746, 0.009798115119338036, -0.012861208990216255, -0.029622003436088562, -0.010103876702487469, -0.024991462007164955, 0.02726612612605095, -0.008425060659646988, 0.0035906031262129545, -0.010840806178748608, -0.002310694195330143, 0.004201413132250309, 0.031121857464313507, 0.028700489550828934, -0.028485558927059174, -0.05862947180867195, 0.060602497309446335, 0.03112819790840149, -0.06757932901382446, -0.03919118642807007, 0.017113203182816505, -0.005294686648994684, 0.037661440670490265, -0.00740209361538291, -0.015199569053947926, -0.06786354631185532, -0.05947328358888626, -0.0022059588227421045, -0.02992136962711811, -0.016849424690008163, -0.03961438313126564, -0.024133838713169098, -0.0044970205053687096, 0.027713079005479813, 0.026405541226267815, -0.02721429616212845, -0.021301008760929108, -0.05077765882015228, 0.02445399947464466, -0.011847230605781078, -0.010121803730726242, -0.02805306948721409, -0.0517844595015049, 0.00172986660618335, 0.05558338388800621, 0.033181771636009216, 0.02059103548526764, -0.025062842294573784, 0.028131073340773582, 0.02129722200334072, -0.004410701338201761, -0.03355862945318222, -0.031849540770053864, -0.010811244137585163, 0.0005691603873856366, 0.0025981164071708918, 0.004654411226511002, -0.026310207322239876, 0.06023315712809563, -0.024994943290948868, 0.022772401571273804, -0.03364795073866844, -0.02106272615492344, -0.019264673814177513, -0.024205539375543594, 0.05972805246710777, -0.017114540562033653, 0.005804315209388733, -0.021208088845014572, 0.0547209233045578, 0.0312492698431015, 0.0028248124290257692, -0.02237555757164955, -0.011621179059147835, -0.05582370236515999, -0.031074419617652893, 0.031826309859752655, -0.05778577923774719, -0.0016739339334890246, -0.04148107394576073, 0.018951646983623505, 0.04631119966506958, -0.03375851735472679, 0.028031816706061363, 0.04222835600376129, -0.015130174346268177, -0.01792898215353489, -0.023736972361803055, 0.032337527722120285, -0.005028098355978727, -0.04151960462331772, -0.02322174608707428, -0.021428348496556282, -0.045153405517339706, -0.006272298749536276, -0.04547025263309479, -0.047007907181978226, -0.0427526980638504, -0.01703915372490883, 0.09288022667169571, -0.015534448437392712, 0.0411539301276207, -0.004607270937412977, -0.03028292767703533, -0.06408698856830597, 0.03762044757604599, 0.016863124445080757, -0.0009180865599773824, 0.04070566967129707, 0.010456054471433163, -0.01918838359415531, 0.004963892977684736, 0.0008542030118405819, -0.005853758193552494, -0.022581471130251884, 0.06712700426578522, -0.00680576590821147, -0.018373040482401848, 0.02764107845723629, 0.05974450707435608, -0.04343894124031067, -0.057738855481147766, -0.003201462561264634, -0.013215385377407074, 0.00038409390253946185, -0.026563351973891258, 0.025327209383249283, -0.02177887223660946, 0.034776169806718826, 0.002796536311507225, 0.039436955004930496, 0.004507179372012615, 0.049056269228458405, -0.015574710443615913, 0.018991949036717415, -0.0022044533398002386, 0.004680873826146126, 0.014602094888687134, -0.00820150412619114, -0.03802553191781044, -0.014062310568988323, 0.00899415835738182, 0.003254619659855962, -0.021820539608597755, 0.047709472477436066, -0.004963370971381664, -0.002398403361439705, 0.010486762039363384, -0.012217238545417786, 0.031177552416920662, -0.030180832371115685, -0.03615717589855194, 0.013295217417180538, -0.029948018491268158, -0.02050838991999626, -0.006516758818179369, 0.037293691188097, 0.0220557302236557, 0.016834327951073647, -0.02641039341688156, 0.01337483897805214, 0.00019648812303785235, 0.012123365886509418, 0.0061839246191084385, -0.057993870228528976, -0.048184528946876526, -0.046244435012340546, -0.03896627575159073, -0.03173825517296791, 0.009944337420165539, -0.01730508543550968, 0.027940666303038597, 0.004491880536079407, -0.04292893782258034, -0.03141198307275772, 0.0015690342988818884, -0.04349625110626221, -0.0023626454640179873, -0.023545723408460617, 0.0376410037279129, -0.031570762395858765, -0.06206528842449188, -0.013356883078813553, -0.0034479591995477676, -0.01275496557354927, 0.005578361917287111, -0.007886880077421665, 0.04766270890831947, -0.0008862510439939797, 0.03890581056475639, -0.008500578813254833, -0.0035611416678875685, -0.06469672918319702, -0.028742115944623947, 0.011914385482668877, 0.03168598189949989, -0.004590704571455717, 0.032089535146951675, 0.010567216202616692, -0.0123981311917305, 0.005974879954010248, -0.034794148057699203, -0.03897516056895256, -0.0034585841931402683, -0.0076252250000834465, -0.008037076331675053, -0.020365118980407715, -0.019926687702536583, -0.015787433832883835, -0.0029016458429396152, -0.01961074396967888, 0.015704894438385963, -0.027123603969812393, 0.005964796990156174, 0.0014625417534261942, -0.03734295442700386, -0.01838238164782524, 0.03765519708395004, 0.0017709144158288836, 0.035739779472351074, -0.003693152917549014, 0.045011263340711594, 0.04295884445309639, 0.006925720255821943, 0.02992740087211132, 0.02431195043027401, 0.02867043949663639, 0.0006063928594812751, -0.026152564212679863, 0.01814202591776848, -0.02708522044122219, 0.032735675573349, -0.03352094814181328, -0.04114849120378494, -0.017249399796128273, 0.03012930601835251, -0.00679823337122798, 0.030672311782836914, 0.016603972762823105, -0.018986741080880165, 0.03511320799589157, -0.022595712915062904, -0.06160503625869751, 0.013041967526078224, -0.05064228177070618, -0.0219561830163002, 0.03937960043549538, -0.010836157016456127, -0.023264124989509583, -0.013028125278651714, -0.05545990914106369, -0.010785943828523159, -0.013805839233100414, -0.033901941031217575, -0.004824062809348106, 0.03646836057305336, -0.019450441002845764, 0.05500734969973564, -0.02365361712872982, -0.0019133931491523981, 0.0019507159013301134, 0.034368667751550674, -0.07419364154338837, -0.05061831325292587, 0.01809557154774666, 0.02409815602004528, -0.025442425161600113, -0.0013808830408379436, -0.03455474600195885, -0.011600908823311329, -0.05179475620388985, 0.008296331390738487, -0.010547371581196785, 0.005334691144526005, -0.009009710513055325, 0.011671250686049461, 0.011699186637997627, -0.010545501485466957, -0.018214499577879906, 0.025345036759972572, 0.008729862049221992, -0.019262267276644707, -0.001703060232102871, 0.01434469223022461, 0.015903260558843613, -0.017066391184926033, 0.002013634191825986, 0.017455540597438812, 0.042753126472234726, -0.020003542304039, 0.010333135724067688, 0.018665803596377373, 0.05775650590658188, 0.011720467358827591, 0.024736151099205017, -0.0037272931076586246, 0.03935132920742035, 0.03630487620830536, 0.007488591130822897, -0.01984269917011261, 0.03159116953611374, 0.03912396356463432, -0.020334456115961075, -0.010939128696918488, -0.023853035643696785, -0.033335499465465546, -0.0033245584927499294, -0.04374214634299278, 0.006727845873683691, -0.04163261875510216, 0.007634666748344898, -0.022937064990401268, -0.0331418402493, 0.050683531910181046, -0.0011101505951955914, -0.014925570227205753, -0.031777460128068924, -0.008595278486609459, 0.03481777757406235, 0.048052191734313965, 0.010056850500404835, 0.0018146306974813342, 0.031038768589496613, 0.03488677367568016, 0.007608007173985243, 0.028878314420580864, 0.004157722927629948, -0.014806619845330715, -0.013879748992621899, -0.0007082525989972055, -0.00294041377492249, -0.02769172377884388, -0.02450569160282612, 0.0024689510464668274, -0.0496007576584816, 0.033379994332790375, -0.020655421540141106, -0.020375823602080345, 0.045825324952602386, -0.042761724442243576, 0.015309488400816917, -0.03265189751982689, 0.02863849513232708, -0.0679924488067627, -0.015090950764715672, 0.019282912835478783, 0.002902083098888397, -0.029459327459335327, 0.05910102277994156, 0.0001271669170819223, 0.04765280708670616, -0.005668128374963999, 0.04816379025578499, 0.0010551607701927423, 0.007154631428420544, 0.029037639498710632, -0.03397886082530022, -0.04175032302737236, 0.015679381787776947, 0.007476632948964834, -0.053808052092790604, -0.013988465070724487, -0.043747562915086746, -0.020435040816664696, -0.013282643631100655, -0.043285489082336426, 0.0042184810154139996, 0.032749127596616745, 0.0088382912799716, -0.03232848644256592, 0.011200910434126854, 0.009483814239501953, -0.047184862196445465, 0.03165195509791374, 0.01294031273573637, 0.013848799280822277, 0.02499518357217312, 0.011214060708880424, -0.00566807109862566, -0.04234059900045395, 0.014471563510596752, -0.055130068212747574, 0.04983062297105789, -0.04637453705072403, -0.04447747766971588, -0.007179781328886747, -0.04653409495949745, -0.02040904387831688, -0.008111853152513504, -0.031244423240423203, -0.04449904337525368, 0.05247722566127777, 0.051329825073480606, 0.005390635225921869, 0.03390417620539665, -0.03632490709424019, -0.01682647503912449, 0.07418745756149292, 0.03708520159125328, -0.01661103218793869, 0.038657281547784805, 0.024302659556269646, -0.028901197016239166, 0.022001024335622787, -0.023532113060355186, 0.0875890702009201, -0.0020266403444111347, -0.014337306842207909, -0.02108590491116047, 0.020689984783530235, -0.03655404597520828, -0.059889595955610275, 0.007407636847347021, 0.03225633502006531, 0.00004632477430277504, -0.0499301515519619, -0.08166603744029999, 0.012417814694344997, -0.04569471627473831, -0.02217778004705906, -0.035163313150405884, 0.03251005709171295, 0.006599073763936758, -0.005457855761051178, -0.0010771766537800431, -0.0693231001496315, 0.14719252288341522, 0.034449510276317596, 0.02926219254732132, -0.011744758114218712, 0.02382108010351658, 0.045646753162145615, 0.005399481859058142, -0.00553876580670476, -0.019386084750294685, -0.022939706221222878, 0.041455063968896866, -0.02839057892560959, 0.016897782683372498, 0.014125950634479523, 0.028152965009212494, 0.05290324613451958, -0.02994246408343315, 0.02871374599635601, 0.026934493333101273, -0.05190673843026161, -0.04024077579379082, 0.04052998870611191, 0.026175066828727722, 0.022313162684440613, 0.013411624357104301, -0.005047807935625315, 0.0419144332408905, -0.06535761803388596, 0.014525909908115864, -0.027289601042866707, 0.017600247636437416, -0.03948460519313812, 0.053770363330841064, -0.04176865145564079, -0.06280041486024857, 0.024246396496891975, -0.011499598622322083, -0.03574122115969658, 0.023326681926846504, 0.02813829481601715, -0.012525427155196667, 0.0032706093043088913, 0.04697738215327263, -0.03795994073152542, 0.009915482252836227, 0.040179233998060226, -0.05396514758467674, 0.04364127293229103, 0.04663677513599396, -0.03828952834010124, 0.0375802181661129, -0.031341422349214554, 0.07859139889478683, -0.026892736554145813, -0.0018687080591917038, 0.018172362819314003, 0.007000338286161423, -0.03542964905500412, -0.03340014070272446, -0.0028326581232249737, 0.003762876847758889, 0.006161833647638559, 0.023062506690621376, 0.0006488228100351989, -0.0420185886323452, 0.005882228724658489, 0.006279713939875364, -0.00516781210899353, -0.01672598347067833, -0.00009708837023936212, -0.018198078498244286, 0.0199926495552063, 0.006990272086113691, -0.052668944001197815, 0.04226452857255936, 0.047228533774614334, -0.007179523352533579, 0.04399825260043144, 0.015051326714456081, -0.02800893783569336, -0.028505101799964905, -0.04959045350551605, -0.00897346530109644, -0.02266901172697544, 0.029723063111305237, 0.04943166673183441, -0.04358069971203804, -0.03737138956785202, -0.02167641557753086, 0.04231550171971321, 0.031839340925216675, 0.02660229243338108, 0.005505683366209269, -0.0031594661995768547, -0.022184690460562706 ]
Looking for a fun polymer clay project? I call these my reminder necklaces, because on the back I place a short message to remind me of something I am trying to accomplish or what I am currently doing in my life. I have made and sold a lot of these necklaces, and actually only have a few left, the one above is an example. These sell quite well at shows, because they can be sold inexpensively, giving the customer a handcrafted piece with a statement that speaks directly to them. Select a color of polymer clay you want to make your necklace out of, my color palette is earthy, so I always choose something in that range. The example above was a deep brown. Condition your clay as you normally do. I use a pasta machine, followed by conditioning by hand. Lay your clay flat, building it up to about 1/4 inch in thickness. Cut it into the shape you want- rectangular, square, oval. Create your design-some ways to do this : it can be carved, stamped or built up from other pieces of clay. The example above is built up with some carving. Using a small pick of some sort, make a hole where you will string your cording through. Be sure to poke through from the front and back, making a good clean hole. I use small wooden pick up sticks or knitting needles. If you are going to make an accent bead from polymer clay to place above the tile, this is the time to do it. I had a small round polymer clay bead I had made at an earlier time that I used. You can also use premade items such as a wooden bead, metal bead, or a metal washer as an accent. Just an aside- some days I just feel like playing with polymer clay to make different kinds of beads but not for any particular design I am working on. I have built up a stash by doing this that I can go to at a later time. Since I work in the same general color palette, I often find a bead that works. I painted my piece before I cured it. This piece was first given a layer of black metallic paint, that was brushed on, paying particular attention to getting the paint into the grooved areas, then quickly wiping it off, leaving an antiqued background. This was followed by highlighting the raised areas with copper Lumiere Metallic Paint. Then cured it following the manufacturer's instructions. Once the pendant was finished curing, it was lightly sanded, then another touch of copper Lumiere paint was added. I save all kinds of old books for use in my artwork. After measuring the pendant, I find a book and cut out a small piece of it to fit nicely on the back of the pendant. I try to find a page with the print size I want that isn't overwhelming. Also be aware of the wording that will be visible. One of the first times I used printed paper on canvas art, the painting and the readable words were a total mismatch and took away from the finished piece. Decide on a simple saying you would like to convey that will be placed on the back...this one says Artful Living, Some examples of other phases I have used are: Singing My Own Songs, Artist, Trust Your Heart, Dreamer...the list of possibilities is endless. Type up your list of phrases that becomes your go to sheet. I like to print it out on copper parchment paper. You now have the base layer of printed words from your book and your paper with the selected phrase. Distress your printed page first. I use Ranger Distress inks for this, selecting a color ink that compliments the color of the clay used. For the phrase paper, I tend to use a black distress ink. Adhere your printed paper to the back of the pendant, then glue the phrase on top. After drying, I seal the entire piece with a acrylic sealer. I like to use Polyacrylic by Minwax , satin finish, that I get at Home Depot for a few dollars. Here is my quick, easy method of sealing a piece. Pour a small amount of sealer into a plastic baggie. The baggie should be at least twice as long as the piece you are sealing, and only a 1/3 filled with sealer Emerge your pendant into the sealer, squish all around to cover it, then drag it to the top of the baggie, removing excess sealer as you are moving to the top of the bag. Grab it with a Christmas tree ornament hook, then hang to dry. Let it dry completely then recoat 2 more times. The final step is to put it back into the oven to cure for about 10 minutes, I usually do this at about 200 degrees. Take it out, buff it slightly. Measure a piece of cording to the desired length you want, string it through the hole, add your accent bead, tie a knot above the accent bead, then finish with a clasp or just a plain old knot, if it is large enough to fit over your head. Thank you for this great tutorial! It has given me so many ideas! Thanks for your feedback Cat, glad the tutorial has provided inspiration for you.
[ -0.017736097797751427, -0.00023470802989322692, -0.034487102180719376, -0.01245698519051075, -0.03705078735947609, -0.02175971306860447, -0.02647939696907997, 0.027692845091223717, 0.034129317849874496, 0.016809610649943352, 0.04011960327625275, 0.007146097719669342, 0.0071840593591332436, -0.009087572805583477, -0.025380412116646767, 0.013115234673023224, -0.007768344599753618, -0.06677231937646866, -0.029820270836353302, 0.015498287975788116, -0.0040502725169062614, 0.03168882057070732, -0.06918320059776306, -0.038549456745386124, -0.0030961409211158752, 0.0539102703332901, 0.02262629009783268, -0.018221136182546616, 0.07555417716503143, 0.053551532328128815, -0.01971183903515339, -0.017016587778925896, 0.03206559270620346, -0.07947807013988495, -0.01145937666296959, -0.027848467230796814, 0.03603062406182289, -0.03067612834274769, -0.003343538148328662, -0.011589596047997475, 0.014622909016907215, -0.01091798022389412, 0.013475310988724232, -0.036451589316129684, -0.05590430274605751, -0.0011298831086605787, 0.019670287147164345, -0.039274901151657104, 0.006853306200355291, -0.01969943195581436, 0.027066027745604515, 0.0076644401997327805, 0.0006747807492502034, -0.002875018399208784, -0.009522663429379463, 0.00263603706844151, -0.003826984204351902, -0.03857051953673363, -0.012916434556245804, 0.013555883429944515, -0.010802467353641987, -0.006674487143754959, 0.013130192644894123, -0.07906820625066757, 0.020328862592577934, 0.02297874353826046, 0.0030134853441268206, 0.006391625851392746, -0.0013358244905248284, -0.02198769897222519, -0.04585196077823639, -0.004585592076182365, -0.011950115673244, -0.028192462399601936, 0.004778371192514896, -0.008837617002427578, -0.0006378568359650671, 0.0055392528884112835, -0.018480882048606873, 0.0048648095689713955, -0.0263567753136158, 0.06961844116449356, -0.012742512859404087, 0.00029299900052137673, -0.04745439812541008, -0.009439745917916298, -0.037356503307819366, 0.028644677251577377, 0.0390189029276371, -0.022960886359214783, 0.007730045821517706, 0.05543346330523491, 0.0018534079426899552, -0.0015342419501394033, 0.04480867460370064, 0.0308232381939888, -0.02778061293065548, 0.029202286154031754, 0.009220762178301811, 0.013151299208402634, 0.03957816958427429, 0.034224484115839005, -0.016960175707936287, 0.03960258141160011, -0.03207830339670181, 0.023143278434872627, 0.012058431282639503, -0.02058684080839157, -0.014643080532550812, -0.02591598778963089, 0.00044093927135691047, -0.0534261018037796, 0.023110419511795044, 0.011991708539426327, -0.03125151991844177, 0.043607085943222046, -0.02335294522345066, 0.04084091633558273, -0.015211612917482853, 0.032141923904418945, 0.03236770257353783, 0.00034591948497109115, 0.04445555806159973, -0.028513604775071144, 0.016286078840494156, -0.04618681222200394, 0.006783117540180683, 0.0451728031039238, -0.03766661882400513, -0.01352726761251688, 0.008701857179403305, -0.04421801492571831, 0.03346840664744377, 0.025034384801983833, -0.027596434578299522, 0.035322025418281555, -0.02129732072353363, 0.02342763915657997, 0.021791907027363777, -0.05029779300093651, 0.027323327958583832, 0.019141528755426407, 0.01294597890228033, 0.08718155324459076, 0.02672773040831089, 0.014728724025189877, 0.01501091755926609, 0.00893219280987978, -0.05842417851090431, 0.02790689654648304, -0.024682413786649704, -0.0002049143222393468, -0.03100607730448246, 0.02767876349389553, -0.008173184469342232, -0.00886579416692257, -0.003587318118661642, 0.015373616479337215, 0.007821264676749706, 0.022944822907447815, -0.027207879349589348, 0.010462210513651371, -0.003505885601043701, 0.047803204506635666, -0.008162714540958405, 0.00012319014058448374, -0.03974052146077156, -0.012266582809388638, -0.027899201959371567, -0.040209028869867325, 0.011419943533837795, 0.013840928673744202, 0.008676283061504364, 0.014984361827373505, 0.04170170798897743, 0.040216512978076935, 0.03260200470685959, 0.00591361615806818, 0.0536687895655632, 0.03827347978949547, -0.034718990325927734, -0.01921978034079075, -0.0031584419775754213, 0.06436992436647415, 0.011964116245508194, -0.0146971195936203, -0.02450316958129406, -0.012380271218717098, -0.023107746616005898, -0.004525001160800457, 0.000030333623726619408, 0.02865247242152691, -0.02975650504231453, 0.03229169175028801, 0.005649374332278967, 0.008394859731197357, -0.02296515181660652, 0.005420655477792025, -0.03785193711519241, -0.05261277034878731, -0.028666876256465912, 0.021729910746216774, -0.028121905401349068, 0.007870093919336796, -0.007103524636477232, -0.036486510187387466, 0.02502824179828167, 0.060859426856040955, -0.035233110189437866, -0.028807951137423515, 0.013915774412453175, 0.011263350956141949, -0.017946021631360054, -0.0028547141700983047, -0.010832356289029121, -0.026669509708881378, -0.038439054042100906, 0.04961572587490082, -0.006338524632155895, 0.012329651974141598, 0.018102800473570824, -0.0018927179044112563, 0.04209376499056816, 0.04732548072934151, -0.020081155002117157, 0.018467314541339874, -0.0024311712477356195, 0.03355245292186737, 0.0019601164385676384, 0.002143413294106722, -0.014898648485541344, 0.05441960319876671, 0.0639285147190094, 0.05547542870044708, 0.048883888870477676, 0.04334361106157303, 0.0565788671374321, 0.03610018268227577, 0.015413172543048859, 0.04192080348730087, -0.022756492719054222, -0.0068601081147789955, 0.01853596791625023, 0.01543548796325922, -0.02449348196387291, 0.023651957511901855, 0.0106318024918437, 0.0000885143963387236, -0.015306070446968079, 0.00487421452999115, -0.03950601816177368, 0.046776872128248215, 0.02296418510377407, 0.037230391055345535, -0.031980402767658234, 0.009760304354131222, 0.02972431667149067, 0.048103217035532, -0.00839605089277029, 0.006551176309585571, 0.04314609244465828, 0.04753081873059273, -0.003987243864685297, 0.01987490989267826, 0.03735801577568054, 0.026633547618985176, 0.02332172729074955, 0.03825481981039047, -0.03037276677787304, -0.007350655272603035, -0.05589911341667175, -0.060840215533971786, -0.04199193790555, -0.024358218535780907, -0.036541648209095, 0.002864204114302993, 0.04404596611857414, -0.03662985563278198, 0.038373369723558426, -0.029811257496476173, -0.022232847288250923, -0.013618099503219128, -0.03636600449681282, 0.02746076136827469, 0.06059231981635094, 0.026128247380256653, -0.039200421422719955, 0.03806689381599426, 0.008416709490120411, 0.03492644056677818, -0.04062731936573982, -0.01500883512198925, -0.010861902497708797, -0.014716575853526592, 0.03309572860598564, 0.0072198426350951195, 0.01033536996692419, -0.049337562173604965, -0.01758226752281189, -0.05987977981567383, 0.0017619866412132978, 0.022034022957086563, 0.00901596900075674, -0.0025307952892035246, -0.047870341688394547, 0.04917383939027786, 0.03480403870344162, -0.014122623950242996, 0.03650445118546486, 0.033189546316862106, -0.02428501658141613, 0.04034247621893883, 0.023101238533854485, 0.032152242958545685, -0.05728355050086975, 0.04909408837556839, 0.06460674852132797, 0.014135029166936874, -0.007603569887578487, -0.01274445652961731, -0.04319058358669281, 0.04451129958033562, -0.008030548691749573, 0.012199059128761292, -0.03269432112574577, 0.025685355067253113, 0.0009443705203011632, -0.07296968996524811, 0.027130646631121635, -0.034258343279361725, -0.0342152900993824, -0.010831011459231377, -0.028356477618217468, 0.026098283007740974, 0.04279570281505585, 0.027705945074558258, 0.015060472302138805, -0.026952607557177544, -0.0335562601685524, 0.014870028011500835, 0.0522335059940815, -0.012974877841770649, 0.010447770357131958, 0.051293183118104935, -0.04755253344774246, 0.020289918407797813, 0.023735402151942253, -0.040496695786714554, -0.013515634462237358, 0.010553536005318165, 0.020242055878043175, 0.009173412807285786, 0.024098211899399757, -0.0011835229815915227, 0.05132622271776199, 0.04728574678301811, -0.03206499665975571, -0.035943325608968735, -0.013192038983106613, 0.045026518404483795, 0.01898341067135334, 0.02122749574482441, 0.052911777049303055, -0.016952410340309143, -0.037084102630615234, -0.08304556459188461, 0.03968706354498863, 0.007728043477982283, 0.061606261879205704, -0.04639022424817085, 0.05223582684993744, 0.004983912687748671, -0.028518611565232277, 0.00625553447753191, -0.04427746310830116, -0.021363213658332825, 0.02606525458395481, 0.0005903046694584191, 0.03296755626797676, -0.03876923397183418, -0.0352635458111763, 0.006970052607357502, 0.009715529158711433, 0.03668058291077614, -0.003666238160803914, 0.013084289617836475, -0.00897848792374134, 0.0023087405133992434, -0.029048480093479156, -0.028002997860312462, -0.0019293669611215591, -0.0037493810523301363, 0.009540420025587082, -0.038318291306495667, -0.0406157448887825, -0.05038287863135338, 0.02017715387046337, 0.02198667824268341, 0.058297958225011826, -0.010745903477072716, -0.004429138731211424, 0.03214438259601593, -0.010128323920071125, 0.020087670534849167, -0.04070480912923813, 0.017128625884652138, -0.03439367935061455, 0.05220535397529602, 0.028673646971583366, -0.03617016226053238, -0.03171171247959137, -0.011251900345087051, -0.029121914878487587, 0.029982946813106537, -0.0038463217206299305, -0.019912244752049446, -0.03519432991743088, 0.028208132833242416, -0.013037754222750664, 0.008796116337180138, -0.055601056665182114, -0.03968244418501854, -0.010943058878183365, 0.005883864127099514, 0.04733454808592796, -0.03739198297262192, 0.0036188364028930664, -0.048002056777477264, 0.04747280478477478, 0.04995690658688545, -0.009625722654163837, -0.02602001652121544, -0.008776665665209293, -0.041817646473646164, -0.028037341311573982, -0.016168804839253426, 0.05622867867350578, -0.008028990589082241, -0.002392424736171961, -0.039530470967292786, 0.021100452169775963, 0.04015326499938965, 0.02452058531343937, -0.01951335370540619, 0.00652642035856843, 0.03098992630839348, 0.0015546884387731552, 0.03745337203145027, 0.004932651296257973, -0.02276657149195671, 0.009235351346433163, -0.054273802787065506, -0.0340043343603611, -0.021699469536542892, 0.010010606609284878, 0.005197369027882814, 0.007456812541931868, 0.008839494548738003, 0.0420091338455677, -0.03966282308101654, 0.013915874063968658, 0.014648410491645336, 0.035189688205718994, -0.035016417503356934, -0.035301461815834045, 0.036067333072423935, 0.00720606604591012, -0.040892113000154495, 0.02001924254000187, 0.04554475098848343, -0.00405086250975728, 0.0017512377817183733, 0.05056334286928177, -0.07129330188035965, 0.022671347483992577, -0.03157692402601242, 0.005596581846475601, -0.021296482533216476, -0.044088542461395264, 0.025981999933719635, -0.029693404212594032, 0.03864569962024689, 0.007734687067568302, -0.022768517956137657, 0.0008605808834545314, -0.031875595450401306, -0.02388676442205906, -0.018965916708111763, -0.0313749685883522, 0.005626501515507698, 0.014466222375631332, -0.022892167791724205, -0.002423112979158759, -0.027404822409152985, 0.005425512790679932, -0.007470633368939161, -0.042889755219221115, -0.006224227603524923, 0.008375318720936775, 0.05181340128183365, 0.011473855003714561, 0.01217642892152071, -0.06138567999005318, 0.009177896194159985, 0.0016588229918852448, -0.004679330158978701, -0.012638535350561142, 0.005914309527724981, -0.03404495492577553, -0.01413923129439354, -0.03562901169061661, 0.030105382204055786, -0.018862448632717133, -0.015558340586721897, 0.041821494698524475, 0.016686059534549713, 0.011919581331312656, 0.006453440058976412, -0.06390415132045746, 0.06686628609895706, -0.002782139228656888, -0.05205641686916351, -0.043642979115247726, 0.04256690666079521, -0.007065211422741413, 0.050316713750362396, -0.0070622931234538555, -0.0036582129541784525, -0.05121895670890808, -0.051415540277957916, -0.018591267988085747, -0.03926682099699974, -0.03816284239292145, -0.017998186871409416, -0.02442573569715023, 0.012524901889264584, 0.03679225221276283, -0.004712517838925123, -0.022945448756217957, 0.026512546464800835, -0.054831769317388535, 0.02800626866519451, -0.016724612563848495, -0.012190316803753376, -0.029501086100935936, 0.011523072607815266, -0.027339940890669823, 0.05992000550031662, -0.006737289018929005, 0.027512293308973312, -0.014435973949730396, 0.021191531792283058, 0.01730341650545597, -0.0099064065143466, -0.012338848784565926, -0.040699463337659836, -0.02812795899808407, 0.024424711242318153, -0.004221042152494192, -0.00637146458029747, -0.017419898882508278, 0.05423716455698013, -0.026451215147972107, 0.0188046395778656, -0.040925364941358566, -0.017366738989949226, -0.005807808134704828, -0.020400632172822952, 0.05466630309820175, -0.020190883427858353, -0.021047549322247505, -0.03076785057783127, 0.04267668351531029, 0.029029594734311104, -0.02162749692797661, -0.00889403186738491, -0.05051231384277344, -0.053867556154727936, -0.060722995549440384, 0.029466412961483, -0.01046748086810112, -0.03462139144539833, -0.05392754450440407, -0.0028224007692188025, 0.04431884363293648, -0.029632914811372757, 0.04797594994306564, 0.05766274780035019, -0.020810134708881378, -0.016341205686330795, -0.026509176939725876, -0.008875122293829918, 0.060114193707704544, -0.023257600143551826, -0.017684776335954666, -0.020538825541734695, -0.06110256165266037, -0.0053360494785010815, -0.03869900852441788, -0.048488084226846695, -0.042024996131658554, -0.004123141057789326, 0.05035987123847008, -0.04516524076461792, 0.035376567393541336, -0.018166203051805496, -0.04700992628931999, -0.027425045147538185, 0.01362103782594204, 0.0028605915140360594, 0.03345909342169762, 0.028188763186335564, -0.005525271408259869, -0.026039574295282364, 0.001086938544176519, -0.016768569126725197, 0.007484595291316509, -0.039856016635894775, 0.05531776323914528, -0.0013520725769922137, -0.014992156066000462, 0.010078193619847298, 0.03905212879180908, -0.03593605384230614, -0.030322430655360222, 0.007033222354948521, -0.007538386154919863, 0.00480417488142848, -0.041520703583955765, 0.01011071726679802, -0.01069762371480465, 0.004663454368710518, 0.03655937314033508, 0.0483722984790802, -0.02684447355568409, 0.041924845427274704, -0.01518477126955986, 0.04294232279062271, -0.05279502272605896, -0.012423157691955566, 0.01877475343644619, 0.004445943515747786, -0.0076979645527899265, -0.032291948795318604, -0.02613692171871662, -0.004856183659285307, 0.020974846556782722, 0.03314400091767311, -0.021258126944303513, 0.02911332994699478, 0.04418136551976204, 0.008425254374742508, 0.05275574326515198, 0.013384193181991577, -0.00027677061734721065, 0.019513294100761414, -0.04947958141565323, -0.047262515872716904, -0.031073611229658127, 0.019884774461388588, -0.019064685329794884, 0.022671973332762718, -0.022631384432315826, -0.026802923530340195, 0.025630619376897812, 0.029226982966065407, -0.0068440367467701435, -0.029740160331130028, -0.06065874919295311, -0.059855565428733826, -0.05469859391450882, -0.02832566201686859, -0.04033878818154335, -0.0022594830952584743, -0.009965061210095882, 0.015481403097510338, -0.02347690612077713, -0.018105817958712578, 0.005366664379835129, -0.023076847195625305, 0.020352808758616447, -0.044846292585134506, 0.022706549614667892, -0.04955507442355156, -0.06736727803945541, -0.049979738891124725, 0.008897212333977222, -0.005251392722129822, -0.021079236641526222, -0.01635642535984516, 0.030603040009737015, -0.007949150167405605, 0.05140267685055733, -0.0018769679591059685, 0.013685778714716434, 0.00929957814514637, -0.04544072970747948, 0.021195974200963974, 0.04141911864280701, -0.009129377081990242, 0.021228991448879242, 0.040944356471300125, -0.05298663303256035, 0.03747370094060898, -0.00045388791477307677, -0.025742407888174057, -0.03548719361424446, 0.006850083824247122, 0.013158787041902542, 0.0028264315333217382, -0.02980875037610531, -0.022878753021359444, -0.02224837616086006, -0.027709508314728737, 0.006610799115151167, 0.01454753428697586, 0.017253685742616653, -0.0029370111878961325, -0.024573007598519325, -0.013821151107549667, 0.06432227045297623, -0.010436095297336578, 0.028339432552456856, 0.011616279371082783, 0.052011050283908844, 0.018690932542085648, 0.013361422345042229, 0.04284587875008583, 0.03628246858716011, 0.029848914593458176, -0.0029743800405412912, 0.024292783811688423, -0.011042613536119461, -0.011444654315710068, 0.032120686024427414, -0.03932797536253929, -0.03054824285209179, -0.025387007743120193, 0.0008615605183877051, -0.008801623247563839, 0.03538449853658676, -0.005026978440582752, -0.024960633367300034, 0.008166459389030933, -0.025594543665647507, -0.01607484556734562, -0.009802794083952904, -0.0802672877907753, -0.0327179878950119, 0.026844646781682968, -0.02192080393433571, -0.0011280764592811465, 0.020348090678453445, -0.025700964033603668, 0.001158161205239594, -0.014633257873356342, 0.004521864000707865, -0.04514580965042114, 0.032791800796985626, -0.027159156277775764, 0.03866690769791603, -0.035494785755872726, 0.010453548282384872, 0.04412601888179779, 0.06121556833386421, -0.05689078941941261, -0.05383247882127762, 0.004962582141160965, 0.00367540679872036, -0.0028351631481200457, -0.02397036738693714, 0.008681155741214752, 0.025025665760040283, 0.018607407808303833, 0.024886328727006912, 0.005201146937906742, 0.013829713687300682, 0.009806539863348007, 0.0432882159948349, 0.025736074894666672, -0.019539499655365944, -0.03139243647456169, 0.04628491774201393, 0.008218826726078987, -0.001901182229630649, -0.028028888627886772, 0.05997178331017494, 0.030438700690865517, -0.006521123461425304, 0.04951860010623932, 0.0026319639291614294, 0.056733738631010056, -0.003199999453499913, 0.024930646643042564, 0.008887704461812973, 0.020326705649495125, 0.016882335767149925, 0.03851715102791786, 0.0031832570675760508, 0.034899573773145676, 0.0668756365776062, 0.009280478581786156, 0.018203772604465485, 0.04814944416284561, 0.023934191092848778, -0.010874904692173004, 0.008895357139408588, -0.016386743634939194, -0.027994278818368912, 0.00015421218995470554, 0.003642397467046976, -0.022959571331739426, -0.022594165056943893, -0.002255031606182456, -0.0030963686294853687, -0.01670519821345806, 0.025663457810878754, -0.02714802883565426, 0.026920447126030922, 0.010337733663618565, -0.0493980273604393, 0.0102087976410985, -0.002649434842169285, -0.007857823744416237, 0.017311178147792816, 0.028901316225528717, 0.04378320276737213, -0.009096660651266575, 0.026940349489450455, 0.022409554570913315, 0.0033139153383672237, -0.02217058464884758, 0.007012595888227224, 0.022103969007730484, -0.0034078387543559074, -0.012131033465266228, -0.004222685471177101, -0.000495759304612875, 0.053117815405130386, -0.04357485845685005, -0.036265403032302856, 0.00965030211955309, -0.036437638103961945, -0.02020658180117607, -0.030983714386820793, 0.04939544200897217, -0.009108785539865494, 0.010100512765347958, 0.011251759715378284, 0.010634460486471653, -0.03131581470370293, 0.044583335518836975, 0.0033216632436960936, 0.06392966955900192, 0.023985041305422783, 0.044367749243974686, -0.023677973076701164, 0.045781418681144714, 0.03449137881398201, 0.0030832388438284397, -0.007119940128177404, 0.0232296921312809, -0.029028501361608505, -0.04249135032296181, 0.010459566488862038, -0.05058994144201279, -0.031304314732551575, -0.033049363642930984, -0.009827886708080769, -0.01078222505748272, 0.05315598472952843, -0.0010891162091866136, -0.04998619481921196, -0.0052608922123909, 0.03764976188540459, -0.02864117920398712, 0.00962330587208271, 0.019695883616805077, 0.030111204832792282, -0.005094629712402821, -0.007676206063479185, -0.04494914412498474, -0.009974321350455284, 0.023744551464915276, -0.036133505403995514, 0.015788018703460693, -0.015517267398536205, -0.029928069561719894, -0.02524448372423649, -0.04495755210518837, -0.012169602327048779, -0.0011951421620324254, -0.014129126444458961, -0.032471176236867905, 0.030937662348151207, 0.02829935774207115, 0.011031532660126686, -0.0008196921553462744, -0.029778458178043365, -0.02080569975078106, 0.049647096544504166, 0.044883180409669876, -0.009612164460122585, 0.057864852249622345, 0.03740336000919342, -0.016965171322226524, 0.019602028653025627, -0.008626795373857021, 0.03866252675652504, -0.03368179500102997, 0.0005204997723922133, -0.014526146464049816, 0.02130044251680374, -0.012136108241975307, -0.058969900012016296, 0.014622533693909645, 0.018612205982208252, 0.009557204321026802, -0.028265317901968956, -0.05489729717373848, -0.024013271555304527, -0.018206831067800522, -0.010549062862992287, -0.05707431584596634, 0.02527841366827488, 0.019166473299264908, -0.019864479079842567, 0.01634986698627472, -0.04829952493309975, 0.16036191582679749, 0.03988691791892052, 0.027377013117074966, 0.027779098600149155, 0.0452515184879303, 0.05335991457104683, 0.006545321550220251, -0.014977981336414814, -0.01719922199845314, -0.02248658984899521, 0.024195056408643723, -0.040343716740608215, 0.028483642265200615, 0.017336413264274597, 0.0344642773270607, 0.0661231130361557, -0.015597132965922356, 0.025989875197410583, 0.024267932400107384, -0.06559283286333084, -0.055769048631191254, 0.04305272921919823, 0.03234369307756424, 0.0357268787920475, 0.002136304508894682, -0.014580795541405678, 0.016620129346847534, -0.05146981403231621, -0.02894333377480507, -0.00208118068985641, 0.03948429971933365, -0.02159428596496582, 0.05914101377129555, -0.011043588630855083, -0.04267064481973648, 0.05511848255991936, 0.01884331740438938, -0.04803452640771866, 0.031050078570842743, 0.015927985310554504, -0.035250917077064514, -0.010144424624741077, 0.017447177320718765, -0.030578605830669403, -0.03674304485321045, 0.037376027554273605, -0.03147352114319801, 0.03774681314826012, -0.0085233049467206, -0.049245137721300125, 0.06689726561307907, -0.05542314797639847, 0.029769189655780792, -0.017420416697859764, -0.06651486456394196, 0.012358622625470161, 0.014307233504951, -0.02099585346877575, -0.00942071620374918, 0.030188534408807755, 0.017955930903553963, 0.036347851157188416, -0.03192352131009102, 0.010336161591112614, -0.02980700321495533, -0.011239367537200451, -0.004992600996047258, 0.0029029855504631996, -0.01821475476026535, -0.03546609356999397, -0.020063655450940132, -0.0084753492847085, -0.006676929071545601, -0.02715345285832882, 0.06581392884254456, 0.025036467239260674, -0.03585677221417427, 0.049161557108163834, -0.0003067741636186838, -0.03849225491285324, -0.018037855625152588, -0.06616716831922531, -0.030924459919333458, -0.015053440816700459, 0.0027102481108158827, 0.039962634444236755, -0.052397798746824265, -0.030040772631764412, -0.024560226127505302, 0.05737844854593277, 0.04163002595305443, 0.04482930526137352, 0.002572299912571907, 0.0065372297540307045, -0.00914733111858368 ]
This compact upright fan heater from Sheffield is your home's winter must-have. Subtly fitting with the furnishings of any home, this safe and affordable heater has an adjustable thermostat and dust-proof filters for minimal maintenance. The safe and efficient ceramic heating element generates and retains heat more effectively than a traditional fan heater. Easy to move between rooms, the built-in top handle makes this heater your total solution for personal heating this winter whether you're at home, in the office or anywhere else.
[ -0.019501840695738792, 0.006802445277571678, -0.00673880847170949, -0.022703051567077637, -0.014033390209078789, 0.023309331387281418, 0.0028946201782673597, 0.03791917860507965, 0.0200458113104105, 0.02176499553024769, 0.024111902341246605, 0.009268887341022491, 0.010244699195027351, -0.022147411480545998, -0.021682756021618843, 0.0008798890630714595, -0.03987307846546173, -0.031663764268159866, -0.026417668908834457, 0.0019274478545412421, -0.0030503880698233843, 0.0030279122292995453, -0.03790239244699478, -0.040942441672086716, -0.013179691508412361, 0.005311896558851004, 0.02411622554063797, -0.006237654015421867, 0.054099131375551224, 0.06757761538028717, -0.03849310055375099, -0.04517114534974098, 0.0440983772277832, -0.04327460005879402, -0.023958662524819374, -0.017541809007525444, 0.02716945670545101, -0.0013278091792017221, -0.03149734437465668, -0.07736228406429291, 0.03512106090784073, -0.0026952200569212437, 0.04495679587125778, -0.010181115008890629, -0.021040378138422966, -0.021632863208651543, -0.023610880598425865, 0.0075834160670638084, 0.02288728579878807, -0.06710220873355865, 0.04141848534345627, -0.017901437357068062, 0.04171751067042351, -0.0385095477104187, 0.004521660972386599, 0.027564464136958122, -0.015756094828248024, 0.037620168179273605, -0.021710913628339767, 0.04323720186948776, 0.024021418765187263, -0.006099792663007975, 0.024554677307605743, -0.03365660831332207, 0.03016016259789467, 0.024321487173438072, 0.03851257637143135, -0.018968364223837852, -0.0025042996276170015, 0.009038598276674747, 0.017371533438563347, 0.021982897073030472, 0.010970222763717175, -0.04054596275091171, -0.003360412549227476, 0.04573020339012146, -0.00022231285402085632, 0.008420499041676521, -0.045787520706653595, 0.011119082570075989, 0.014878460206091404, 0.04543643072247505, 0.012920298613607883, 0.022481082007288933, -0.0526430644094944, -0.022054409608244896, 0.006614037323743105, 0.025006834417581558, -0.0034852754324674606, 0.03133451193571091, 0.017979849129915237, 0.05402128025889397, 0.028434375301003456, 0.00555132981389761, 0.05184163525700569, 0.04409375414252281, -0.03814263641834259, 0.024507632479071617, 0.017545420676469803, 0.007656801026314497, 0.03322894871234894, 0.03426933288574219, 0.03643268346786499, 0.05015571042895317, -0.036553725600242615, 0.012890507467091084, 0.0011443584226071835, -0.013274453580379486, -0.0178423672914505, -0.02484629862010479, -0.02861528843641281, -0.02109639160335064, -0.008353816345334053, 0.012213490903377533, 0.016918541863560677, 0.05709752067923546, 0.013075622729957104, 0.05267471820116043, -0.04144967347383499, 0.02128179930150509, 0.04015954211354256, 0.03070726804435253, 0.02764146402478218, -0.03187329322099686, -0.014118901453912258, -0.03181241825222969, -0.023683592677116394, 0.017825696617364883, -0.004095431417226791, -0.035673465579748154, -0.022771216928958893, -0.031398873776197433, -0.0196670051664114, 0.05413595959544182, 0.025280937552452087, 0.005434523802250624, -0.0021796163637191057, 0.05176863446831703, 0.047840382903814316, -0.06336076557636261, 0.06336340308189392, 0.037229135632514954, -0.0030134140979498625, 0.0806974247097969, -0.0026430480647832155, 0.005284725222736597, 0.010761100798845291, -0.035393036901950836, -0.03819131851196289, 0.01861610636115074, -0.04526422545313835, 0.04458211734890938, -0.0010215014917775989, 0.010583179071545601, 0.0077766673639416695, -0.01903771236538887, -0.007726321928203106, 0.02556300349533558, 0.01543333288282156, 0.04254721850156784, -0.00044238133705221117, 0.004288011230528355, -0.006518855690956116, 0.03763503208756447, 0.006270166486501694, 0.03502887487411499, -0.04567364603281021, -0.012628301978111267, -0.019838012754917145, -0.02624448388814926, 0.0073909880593419075, -0.01947534643113613, -0.04084904119372368, -0.013015666045248508, 0.0103403739631176, 0.03973224014043808, 0.03085615672171116, -0.011514782905578613, 0.03047584928572178, 0.05083518475294113, -0.03742637857794762, -0.014001760631799698, 0.011935913003981113, 0.06573352217674255, 0.0363309383392334, 0.0041434792801737785, 0.02248058281838894, -0.007749026641249657, -0.049430448561906815, -0.028462253510951996, -0.00007730315701337531, 0.022899026051163673, -0.02043008804321289, 0.023917827755212784, -0.01777224987745285, -0.009168989025056362, -0.00048345240065827966, 0.0008904452552087605, 0.010095723904669285, -0.05112109333276749, -0.01413712464272976, 0.05951688438653946, -0.056974511593580246, 0.0004102357488591224, 0.030805671587586403, -0.04985584318637848, 0.021251577883958817, 0.0645420178771019, -0.012210470624268055, -0.010312848724424839, 0.039316676557064056, 0.017625238746404648, -0.04359953850507736, -0.019317535683512688, -0.005385085474699736, 0.011852050200104713, -0.018787138164043427, 0.02990666963160038, -0.011357894167304039, 0.007823149673640728, 0.021739499643445015, 0.0008387213456444442, 0.02117215283215046, 0.02925507165491581, 0.0021461108699440956, 0.005072627682238817, 0.02336634136736393, 0.022249845787882805, -0.014021789655089378, -0.006221541203558445, -0.04586128890514374, 0.05873244255781174, 0.014896166510879993, 0.0636385828256607, 0.0490097850561142, 0.02781125344336033, 0.01587740145623684, 0.05425931140780449, -0.008686001412570477, 0.008983367122709751, -0.010471180081367493, 0.017231740057468414, 0.031193360686302185, 0.036200374364852905, -0.018842028453946114, 0.029437121003866196, -0.007143785245716572, -0.004956129472702742, -0.037818823009729385, 0.02214651368558407, 0.01858048141002655, 0.011608296073973179, 0.007961065508425236, 0.023149888962507248, -0.025904661044478416, 0.0027085181791335344, 0.03555851802229881, 0.04702689126133919, -0.02539626695215702, 0.007341469172388315, 0.0002772799925878644, 0.020803185179829597, -0.014984235167503357, 0.012722901068627834, 0.049093350768089294, 0.022606559097766876, 0.007566194515675306, 0.006222091149538755, -0.019831065088510513, -0.03265755623579025, -0.08426577597856522, -0.028722187504172325, -0.04455591365695, -0.020494304597377777, -0.06346005201339722, 0.009357432834804058, 0.04299967363476753, -0.03605217859148979, 0.031249815598130226, -0.040812134742736816, 0.0067373295314610004, -0.030637027695775032, -0.024846496060490608, 0.022312484681606293, 0.031053107231855392, 0.05686520040035248, -0.051291145384311676, 0.008288780227303505, 0.0060119107365608215, 0.002759549766778946, -0.028898682445287704, -0.014923498965799809, 0.01566215604543686, -0.03592273220419884, 0.020182739943265915, -0.01910245418548584, -0.0018082590540871024, -0.0198132935911417, -0.058944523334503174, -0.055633943527936935, -0.007962589152157307, 0.030740272253751755, -0.012683076784014702, -0.0007550882291980088, -0.04597306251525879, 0.036516740918159485, 0.0035748763475567102, -0.042938485741615295, 0.045578762888908386, 0.04032975435256958, -0.0450536385178566, 0.0375802144408226, 0.02311321347951889, -0.0011800285428762436, -0.056777000427246094, 0.025160053744912148, 0.032573454082012177, -0.01199390646070242, -0.02137615531682968, -0.025572501122951508, -0.010481291450560093, -0.018565446138381958, 0.00613107904791832, -0.008269420824944973, -0.04631332680583, 0.042931027710437775, 0.00006772256165277213, -0.06420011073350906, 0.04084399715065956, -0.03936118260025978, -0.03474815562367439, -0.06947290152311325, -0.022802475839853287, 0.01417611911892891, 0.016023313626646996, 0.04136773198843002, 0.02709309756755829, -0.00410375464707613, 0.03356028348207474, 0.025824200361967087, 0.05078033730387688, -0.038266509771347046, 0.020946113392710686, 0.026771748438477516, -0.0067174797877669334, 0.008778761141002178, 0.03340533375740051, -0.04921038821339607, -0.040445007383823395, -0.013730713166296482, 0.003688519587740302, 0.008339190855622292, 0.0467010997235775, 0.023401906713843346, 0.020627494901418686, 0.04741030931472778, -0.04197767376899719, 0.0055768731981515884, 0.017781801521778107, 0.044121574610471725, 0.03768829256296158, 0.011063317768275738, 0.0016206976724788547, -0.015750570222735405, -0.03380805253982544, -0.04579612985253334, 0.052118200808763504, -0.009874229319393635, 0.026362242177128792, -0.039030153304338455, 0.053435247391462326, -0.004872764926403761, -0.03274492919445038, 0.0638403370976448, -0.03494904935359955, 0.0033636761363595724, 0.04596574231982231, -0.010857213288545609, 0.03544740006327629, -0.03844372183084488, 0.014252014458179474, -0.03816889971494675, -0.02516021393239498, 0.03725492209196091, -0.01194618921726942, 0.034122198820114136, -0.008023140951991081, 0.0068444074131548405, -0.014060663059353828, -0.026759881526231766, -0.007830996066331863, -0.02043638564646244, 0.023011786863207817, -0.015624252147972584, -0.05166389420628548, -0.035697437822818756, 0.007018458563834429, -0.00029429831192828715, 0.026463335379958153, -0.004586757160723209, 0.049565594643354416, -0.007674338761717081, 0.02353731170296669, 0.017870230600237846, -0.026174142956733704, 0.011092632077634335, -0.02382192760705948, 0.07000485062599182, 0.00602321419864893, -0.013010356575250626, -0.033808402717113495, -0.011025764979422092, -0.0534115806221962, 0.018291013315320015, 0.00015603448264300823, -0.015497103333473206, -0.014230210334062576, 0.00037049324600957334, -0.011730840429663658, 0.03377901017665863, -0.036719292402267456, -0.03798466920852661, -0.012410598807036877, 0.040874578058719635, 0.032746169716119766, -0.06718841195106506, 0.020960737019777298, -0.047935277223587036, 0.029626931995153427, 0.022850601002573967, -0.0008456345531158149, -0.04510784521698952, -0.013173675164580345, 0.013506744988262653, -0.030417850241065025, 0.007892979308962822, 0.03253204748034477, 0.014768819324672222, -0.0017645357875153422, -0.05616804584860802, 0.0026123207062482834, 0.010552052408456802, -0.0007201025146059692, -0.010380788706243038, 0.009529715403914452, 0.03445741906762123, -0.008643179200589657, 0.03251410275697708, 0.00006323157867882401, -0.007332633249461651, -0.0030611364636570215, -0.048867542296648026, 0.04775256663560867, 0.00923535879701376, -0.02800113335251808, -0.027408849447965622, 0.02229655720293522, -0.0007096565095707774, 0.059520523995161057, -0.00096858263714239, -0.02924950420856476, -0.03598843142390251, 0.02612942084670067, -0.010098346509039402, -0.07009916007518768, 0.038802698254585266, -0.014181754551827908, -0.011982789263129234, 0.03249998763203621, 0.030173486098647118, -0.008835161104798317, 0.0032252867240458727, 0.031119804829359055, -0.051924463361501694, 0.06000109761953354, -0.036913786083459854, 0.005258414428681135, -0.02606067806482315, -0.03177538141608238, 0.008358324877917767, -0.023416873067617416, 0.025332851335406303, 0.002123309997841716, 0.024480260908603668, -0.05846872553229332, -0.056403834372758865, 0.0033447847235947847, 0.01081033330410719, -0.018024682998657227, 0.054153915494680405, -0.025713324546813965, 0.006287693977355957, -0.00249091861769557, -0.02355186454951763, 0.024576354771852493, 0.01621805690228939, -0.002659702440723777, -0.008799904026091099, -0.01062008086591959, 0.008359847590327263, 0.019676361232995987, -0.016258370131254196, -0.03623625636100769, -0.018040135502815247, -0.021524135023355484, -0.015285126864910126, -0.03939957916736603, 0.008901108987629414, -0.028843248263001442, -0.002631682436913252, -0.038493718951940536, 0.02051088586449623, -0.04080194979906082, 0.006525107193738222, -0.006336744409054518, 0.01813858561217785, 0.01173103041946888, 0.029253587126731873, -0.02482817880809307, 0.007457722909748554, 0.007213775534182787, -0.059420499950647354, -0.01594366692006588, 0.03854569420218468, -0.017624370753765106, 0.039516136050224304, 0.009283468127250671, -0.020706743001937866, -0.03993425890803337, -0.03746451064944267, 0.025482555851340294, -0.03190644085407257, -0.005355007480829954, -0.06596876680850983, -0.01384179387241602, -0.023298917338252068, 0.02246566116809845, 0.00807463563978672, 0.01257256418466568, -0.008657711558043957, -0.04356478154659271, 0.014159529469907284, -0.03219495341181755, -0.02867470122873783, -0.02395416982471943, -0.03163013234734535, -0.04724907502532005, 0.040664467960596085, -0.019022557884454727, 0.013085782527923584, 0.01614527963101864, -0.00801541842520237, 0.02674565650522709, -0.02017294242978096, -0.029819728806614876, -0.041518617421388626, -0.0033538760617375374, 0.02244647592306137, 0.021021917462348938, 0.0027585094794631004, -0.031281374394893646, 0.046493299305438995, -0.0399431437253952, 0.006316277664154768, -0.024232037365436554, -0.008307695388793945, -0.01756136305630207, 0.0006830749334767461, 0.07039112597703934, -0.0067979576997458935, 0.042045023292303085, -0.03467456251382828, 0.044846877455711365, 0.07613041251897812, 0.005133572034537792, -0.020427796989679337, -0.06454896181821823, -0.037583645433187485, -0.06617587804794312, 0.01384827308356762, -0.030909627676010132, -0.004636550787836313, -0.02547820843756199, -0.010978316888213158, 0.04244270920753479, -0.009192022494971752, 0.004109089728444815, 0.06540786474943161, 0.015341457910835743, 0.019036361947655678, -0.051056474447250366, 0.03830372914671898, 0.04542377218604088, -0.013323373161256313, -0.019277455285191536, -0.05370141193270683, -0.039603620767593384, -0.007002405822277069, -0.029535656794905663, -0.07224325835704803, -0.0823201984167099, -0.015951907262206078, 0.04058306664228439, -0.05408112332224846, 0.051946867257356644, -0.016637196764349937, -0.035818543285131454, -0.046673085540533066, 0.04757009446620941, 0.0155876399949193, 0.02014199271798134, 0.049046438187360764, -0.029825318604707718, -0.026661960408091545, 0.024974871426820755, 0.008201031014323235, 0.016963429749011993, -0.0487801656126976, 0.06328006088733673, 0.008973639458417892, -0.05734486132860184, 0.02045074850320816, 0.06685054302215576, -0.07134391367435455, -0.025809120386838913, 0.0007668637554161251, -0.021961038932204247, 0.02488015778362751, -0.021826621145009995, 0.011950662359595299, -0.022682158276438713, -0.0026907366700470448, -0.01095560286194086, 0.04677630588412285, -0.0072952560149133205, 0.04508274048566818, 0.02370193414390087, 0.03872516751289368, -0.06655710190534592, 0.006550551857799292, -0.008981716819107533, -0.01043269969522953, -0.02132253535091877, -0.028107937425374985, -0.008936060592532158, 0.020016063004732132, -0.0033902591094374657, 0.03231874108314514, -0.004381985869258642, 0.05278954654932022, 0.055471405386924744, -0.03475694730877876, 0.03285455331206322, 0.0011225412599742413, -0.021593164652585983, -0.031251899898052216, 0.0010721655562520027, -0.06703562289476395, -0.028034312650561333, 0.023181434720754623, -0.03316621482372284, 0.0005292521673254669, -0.014221341349184513, 0.006061924621462822, 0.024376656860113144, 0.013868601061403751, 0.00528726726770401, -0.07370809465646744, -0.03939216211438179, -0.02270500920712948, -0.03117521107196808, 0.0022175409831106663, -0.02001001127064228, 0.015184326097369194, 0.001148548093624413, -0.014422495849430561, -0.03615261986851692, -0.011462027207016945, 0.006843246519565582, -0.018202191218733788, 0.015175411477684975, -0.031752053648233414, 0.015214698389172554, -0.018876072019338608, -0.050304267555475235, -0.06512470543384552, 0.0026745167560875416, -0.024135267361998558, 0.03442976251244545, -0.01860823482275009, 0.015038657933473587, -0.01417396031320095, 0.025581149384379387, 0.012022394686937332, 0.0047995164059102535, -0.017451507970690727, -0.03578127175569534, -0.05251486971974373, 0.05675779655575752, -0.017394008114933968, 0.02950727753341198, 0.019031306728720665, -0.003483672859147191, 0.042706623673439026, -0.010103336535394192, -0.03326800465583801, 0.015689799562096596, -0.019523542374372482, 0.018838921561837196, 0.016958529129624367, -0.023774001747369766, -0.03494599834084511, 0.009766521863639355, -0.02305353246629238, 0.023777179419994354, 0.010097488760948181, 0.0018944758921861649, -0.014758806675672531, 0.00954531691968441, -0.008376185782253742, 0.0473988838493824, 0.0076653785072267056, 0.01910107582807541, 0.010108073242008686, -0.0014204508624970913, 0.005252223927527666, -0.010276004672050476, 0.0060460371896624565, 0.015303821302950382, 0.035645876079797745, -0.0406917929649353, -0.003917205147445202, -0.002498455811291933, -0.02723046764731407, 0.037403080612421036, -0.01692081056535244, -0.029308466240763664, -0.05307065322995186, 0.03100566565990448, 0.003090562764555216, 0.08477829396724701, 0.024502534419298172, 0.01513154897838831, 0.02936513163149357, -0.03306041657924652, -0.06950978189706802, 0.026627415791153908, -0.0593949519097805, -0.013108017854392529, 0.022708404809236526, -0.0060026757419109344, -0.03375840559601784, -0.017244979739189148, -0.03179629519581795, 0.022988324984908104, 0.026998603716492653, 0.0013160844100639224, -0.043253105133771896, 0.002759680151939392, -0.010393572971224785, 0.04969307407736778, -0.019312851130962372, 0.01881035976111889, 0.008198695257306099, 0.05376512557268143, -0.05110557749867439, -0.04855921119451523, -0.006238175556063652, -0.012409215793013573, -0.027334658429026604, 0.014314303174614906, -0.003944572061300278, 0.024473337456583977, 0.0139614874497056, 0.013134864158928394, 0.013370050117373466, 0.021573014557361603, -0.015510655008256435, 0.040669914335012436, -0.0334114134311676, 0.012303131632506847, -0.03223741427063942, 0.04291262477636337, 0.0003667452256195247, -0.042611222714185715, -0.00544713344424963, 0.031687211245298386, 0.021977707743644714, -0.0075968187302351, 0.02840392477810383, 0.002021909924224019, 0.049886707216501236, -0.000978548196144402, -0.0023112709168344736, -0.019940732046961784, 0.04173155874013901, 0.036867644637823105, 0.02148166298866272, -0.010825599543750286, 0.027094213292002678, 0.04377084970474243, -0.001604772754944861, 0.006656276993453503, 0.023989811539649963, 0.0431261770427227, -0.036481842398643494, 0.015517177991569042, -0.045300211757421494, 0.020213544368743896, -0.00271616387180984, 0.02448442205786705, -0.007783186621963978, -0.01794658973813057, 0.0011703361524268985, -0.018017834052443504, 0.0017748913960531354, 0.08137408643960953, 0.013498285785317421, 0.014638710767030716, 0.010064731352031231, 0.015996145084500313, -0.016711581498384476, 0.027463896200060844, 0.021710483357310295, 0.01692824251949787, 0.027081504464149475, 0.00929268542677164, -0.017973626032471657, 0.059487588703632355, 0.016488194465637207, 0.01797737181186676, -0.025404321029782295, -0.00776978163048625, 0.019493162631988525, -0.00901856180280447, -0.03135485202074051, -0.028059348464012146, -0.028282716870307922, 0.028325073421001434, -0.01979874260723591, -0.04505004733800888, 0.03796340897679329, -0.05982321500778198, 0.008404414169490337, -0.025882070884108543, 0.052707746624946594, -0.03125647455453873, -0.013562888838350773, 0.03245478868484497, -0.009214998222887516, -0.021772144362330437, 0.05226578935980797, 0.007422223221510649, 0.042044367641210556, 0.026252495124936104, 0.048200998455286026, 0.008971643634140491, 0.023605046793818474, 0.04969150945544243, -0.03630509227514267, -0.009835189208388329, 0.019792476668953896, 0.0018291843589395285, -0.05044393241405487, -0.013106933794915676, -0.037193212658166885, -0.015623670071363449, 0.02257636748254299, -0.006033926736563444, 0.0048874723725020885, 0.018788084387779236, -0.0041535464115440845, -0.04110589250922203, -0.02438340149819851, 0.0021303780376911163, -0.010017145425081253, -0.00009742942347656935, 0.03502599149942398, 0.06526916474103928, -0.014253206551074982, -0.029416371136903763, -0.02674453891813755, -0.04143277183175087, 0.014470292255282402, -0.004686784464865923, 0.07007881999015808, -0.017315804958343506, -0.03108009323477745, -0.03533516079187393, -0.03382651507854462, -0.031961388885974884, 0.019309410825371742, -0.04258366674184799, -0.04452580586075783, 0.06569890677928925, 0.0379459373652935, 0.018408173695206642, 0.011971093714237213, -0.002877321792766452, -0.02112656831741333, 0.01530433353036642, 0.043203312903642654, -0.00896198395639658, 0.03549838066101074, 0.02803848311305046, 0.009161540307104588, -0.006514789070934057, -0.02567203901708126, 0.015082168392837048, -0.028494756668806076, -0.03762342780828476, -0.023100480437278748, 0.015483257360756397, 0.00897237379103899, -0.05154502019286156, 0.00853278674185276, 0.029160749167203903, 0.00768385361880064, -0.030670709908008575, -0.06622143089771271, -0.003633476560935378, -0.06323803961277008, -0.0010595974745228887, -0.023823535069823265, -0.0010049749398604035, 0.02974613755941391, -0.023233555257320404, -0.011372646316885948, -0.05536115914583206, 0.17098882794380188, 0.06151876598596573, 0.03130370005965233, 0.01265340019017458, 0.0304618738591671, 0.05420229956507683, -0.005439275875687599, -0.021611910313367844, -0.033898498862981796, -0.03515825420618057, -0.008566667325794697, -0.014695501886308193, 0.04992209002375603, 0.0035922848619520664, 0.006973789539188147, 0.0511443130671978, -0.028647534549236298, -0.0018708329880610108, 0.011926529929041862, -0.045332372188568115, -0.044157687574625015, -0.001481962506659329, 0.012909404002130032, 0.0041397917084395885, -0.020046692341566086, 0.016113189980387688, 0.012300023809075356, -0.06912653148174286, -0.005639311857521534, -0.03805360943078995, 0.006138778291642666, -0.03300474211573601, 0.03418007865548134, 0.00977071188390255, -0.03584562987089157, 0.0577806755900383, -0.0173247791826725, -0.015901189297437668, -0.00852628331631422, -0.021943580359220505, -0.02814587764441967, -0.019590873271226883, 0.01731162890791893, -0.0264082383364439, 0.0005026459693908691, 0.016668124124407768, -0.041297685354948044, -0.0032085049897432327, 0.03571716323494911, -0.03621264547109604, 0.049738235771656036, -0.038715608417987823, 0.028209883719682693, 0.0342630036175251, -0.03636252507567406, 0.02084960974752903, -0.008728664368391037, -0.039765845984220505, -0.00834523607045412, -0.0047068470157682896, 0.052924517542123795, 0.010700579732656479, -0.005591249093413353, -0.01012647245079279, -0.0498475581407547, 0.006531892344355583, 0.007042845245450735, 0.02329881675541401, -0.006602812092751265, -0.024812664836645126, -0.005034940782934427, -0.012146963737905025, -0.002893202006816864, -0.010002205148339272, 0.06369780004024506, 0.04143741726875305, -0.004597765859216452, 0.024007854983210564, 0.001135598635300994, -0.03775569424033165, -0.005447029136121273, -0.021887624636292458, -0.007986381649971008, 0.0004652583156712353, 0.04272420331835747, 0.022995835170149803, -0.07604038715362549, -0.030509937554597855, -0.03367135673761368, 0.05586031824350357, 0.055653538554906845, 0.0670020580291748, -0.015811249613761902, 0.021534046158194542, -0.04272518679499626 ]
Hilton Signs Partnership with Groupe Alliance in Tunis Rebranding24 December 2019 Hilton Tunis Gammarth Scheduled for 2023 โ€“ 296 Rooms Samir Jaieb (CEO of Groupe Alliance) and Feras Hasbini (Director, Development, MENA, Hilton) confirm the plans for the future Hilton Tunis Gammarth โ€” Hilton Hilton (NYSE:HLT) (https://www.Hilton.com) will once again be welcoming guests to the Tunisian capital city of Tunis from after a landmark deal was signed with the Groupe Alliance. The new management agreement confirms a flagship Hilton Hotels & Resorts Property in the coastal suburb of Gammarth. An extensive renovation of Le Palace hotel will now see the property re-brand as Hilton Tunis Gammarth in 2023. A phased renovation of all guest rooms, suites and public spaces (including F&B outlets) will begin in 2021. Once complete the hotel will boast 296 guest rooms and 25 suites, seven F&B outlets and ample meetings facilities including a 635sqm ballroom. Founded in 1919 as the flagship brand of Hilton Worldwide, Hilton Hotels & Resorts continues to build upon its legacy of innovation by developing products and services to meet the needs of savvy global travelers at more than 550 hotels across six continents. Hilton (NYSE: HLT) is a leading global hospitality company with a portfolio of 17 world-class brands comprising nearly 6,000 properties with more than 954,000 rooms, in 117 countries and territories. Dedicated to fulfilling its mission to be the world's most hospitable company, Hilton earned a spot on the 2019 World's Best Workplaces list, and has welcomed more than 3 billion guests in its 100-year history. Tunis, Tunisia
[ -0.021383365616202354, 0.005451744422316551, -0.023023081943392754, 0.04030657559633255, -0.03554261103272438, 0.012057955376803875, -0.01296983566135168, 0.03204401582479477, 0.007488810922950506, -0.016805807128548622, 0.011683390475809574, 0.027622558176517487, -0.017741382122039795, -0.05400516465306282, -0.006772939115762711, 0.012940363958477974, -0.02856620028614998, -0.008362853899598122, 0.009849678725004196, -0.009081942960619926, -0.009190649725496769, 0.01389135792851448, -0.06941047310829163, -0.04481038823723793, -0.001526632928289473, 0.060328707098960876, 0.027607591822743416, -0.015615369193255901, 0.07986538112163544, 0.05247317999601364, -0.029088597744703293, -0.0421956405043602, 0.04020452871918678, -0.05464263632893562, -0.053088150918483734, -0.007424260955303907, 0.03903867304325104, -0.043270211666822433, -0.03164413943886757, -0.0199111495167017, -0.002915574936196208, 0.003507897024974227, 0.034875400364398956, -0.031136587262153625, -0.03544505313038826, 0.007747197058051825, -0.012033776380121708, -0.03908511623740196, 0.043063919991254807, -0.05496041104197502, -0.008825799450278282, -0.019952071830630302, 0.01666742004454136, 0.012173503637313843, -0.007899722084403038, -0.010181467980146408, -0.017511453479528427, -0.010058066807687283, -0.011809675954282284, 0.07004163414239883, 0.02479136548936367, 0.013029851950705051, 0.054514314979314804, -0.05981793999671936, 0.02071777731180191, 0.031338855624198914, 0.013281150721013546, -0.00008579337736591697, 0.04495381563901901, -0.0415240153670311, 0.030375275760889053, -0.014601258561015129, -0.04454135522246361, -0.008587936870753765, -0.005998074077069759, -0.02284807711839676, -0.014338268898427486, -0.007612144574522972, -0.03616371750831604, -0.02304782159626484, 0.020565954968333244, 0.026591045781970024, -0.0010289608035236597, 0.022273626178503036, -0.06283946335315704, -0.01074827928096056, 0.0026138864923268557, 0.020607562735676765, 0.02412208914756775, 0.015369453467428684, -0.024567363783717155, 0.03451116383075714, 0.019103633239865303, -0.02036184072494507, 0.021172648295760155, 0.031201714649796486, -0.04673444479703903, 0.04192919656634331, 0.014395784586668015, 0.007982498966157436, 0.011722676455974579, 0.00200107553973794, -0.012779009528458118, 0.025132831186056137, -0.0314389206469059, -0.003165400819852948, 0.0013856105506420135, -0.023262498900294304, 0.0068216510117053986, -0.018876411020755768, 0.005791809875518084, -0.037473175674676895, 0.001253932947292924, -0.030309997498989105, 0.013471587561070919, 0.05622391402721405, -0.023500464856624603, 0.021247854456305504, -0.037388306111097336, 0.013075092807412148, 0.0002798211353365332, 0.01012401096522808, 0.050517357885837555, 0.01578429341316223, 0.011757493950426579, -0.035829443484544754, -0.004395477939397097, 0.03758686035871506, -0.06038324534893036, -0.026977814733982086, -0.014889784157276154, -0.04972747340798378, -0.026683982461690903, 0.004247384145855904, 0.010688915848731995, 0.016396917402744293, 0.006498912815004587, 0.052767977118492126, 0.0020099447574466467, -0.06973893940448761, 0.05568304657936096, 0.03536492586135864, 0.013606471009552479, 0.12850995361804962, 0.002109886147081852, 0.047596968710422516, -0.01265799067914486, 0.0022329967468976974, -0.04631470516324043, 0.032814595848321915, -0.011444292962551117, 0.02259337715804577, -0.021742720156908035, 0.020928412675857544, -0.022793740034103394, 0.01608448103070259, -0.026788122951984406, 0.01720922812819481, 0.017018821090459824, 0.025582468137145042, -0.042320434004068375, 0.005051288288086653, 0.02327129617333412, 0.03279873728752136, -0.0030382261611521244, 0.03692356497049332, -0.018384724855422974, 0.0076946234330534935, 0.00751838181167841, -0.01670406199991703, 0.016407273709774017, -0.010856556706130505, -0.0004121922829654068, 0.012729283422231674, 0.028910359367728233, 0.07854174077510834, 0.02965044230222702, -0.016278596594929695, 0.028371604159474373, 0.04581069201231003, -0.004212797153741121, -0.007813877426087856, -0.012283259071409702, 0.04314946383237839, 0.0217319056391716, -0.008391820825636387, 0.045850276947021484, -0.009844478219747543, -0.03884844854474068, -0.04894334822893143, -0.02092965692281723, 0.023929325863718987, -0.04016223922371864, 0.051778603345155716, -0.03171304985880852, 0.011321895755827427, -0.03505268320441246, 0.015717430040240288, -0.0008235186105594039, -0.01781400293111801, -0.016182105988264084, 0.04497475177049637, -0.03765568882226944, 0.0408383384346962, 0.027044914662837982, -0.03889969363808632, 0.013659121468663216, 0.051800284534692764, -0.037180934101343155, 0.03379087522625923, 0.03165040165185928, 0.00266654952429235, -0.002634982578456402, -0.01650579273700714, 0.05428394302725792, 0.014832512475550175, -0.03172135353088379, 0.04533569514751434, -0.014216096140444279, -0.02176387794315815, 0.0027912687510252, 0.0015732606407254934, 0.040570903569459915, 0.05626383423805237, 0.009375891648232937, 0.012106255628168583, 0.023844702169299126, 0.03297686576843262, -0.015501894988119602, -0.00606020912528038, -0.019177457317709923, 0.04565741866827011, 0.03326365351676941, 0.07086220383644104, 0.021639280021190643, 0.006944060325622559, 0.031672943383455276, 0.042349204421043396, -0.0019064280204474926, 0.039588142186403275, -0.013973780907690525, 0.01757785864174366, 0.03928006440401077, 0.03583391755819321, 0.003860856406390667, 0.022660406306385994, -0.006819070316851139, -0.015266429632902145, -0.029371995478868484, 0.025874458253383636, 0.006456262897700071, 0.03180926665663719, 0.0038764243945479393, 0.04062541201710701, -0.03975503146648407, 0.003137450199574232, 0.047805674374103546, 0.03640494495630264, -0.01768086850643158, -0.009840541519224644, -0.03408225625753403, -0.00972485076636076, -0.02683413028717041, -0.0025391934905201197, 0.021471725776791573, 0.03923938423395157, -0.015574651770293713, 0.015451056882739067, -0.014040892012417316, -0.05225193873047829, -0.02162097953259945, -0.02327791415154934, -0.044995229691267014, -0.051613859832286835, -0.05196398124098778, -0.011410199105739594, 0.04873093590140343, -0.013022259809076786, 0.032594773918390274, -0.0039764572866261005, -0.022792760282754898, -0.015406772494316101, -0.032819777727127075, 0.06977684050798416, 0.04250919446349144, 0.020618414506316185, -0.02183016948401928, 0.01818876713514328, -0.009388125501573086, 0.04391852393746376, -0.038053933531045914, 0.03207637742161751, 0.00005627427890431136, -0.02226441726088524, 0.05037271976470947, -0.011156152933835983, -0.02004813589155674, 0.01976057142019272, -0.04113063961267471, -0.05561332777142525, -0.028940444812178612, 0.03980903699994087, 0.014453236944973469, 0.01826605387032032, -0.02293168380856514, 0.03635986149311066, 0.02670494094491005, 0.0011777025647461414, 0.05392937734723091, 0.05011612921953201, -0.027561351656913757, 0.047418296337127686, 0.020762477070093155, 0.007332006003707647, -0.06907746940851212, 0.033327702432870865, 0.06240442767739296, 0.016944022849202156, -0.03870318457484245, -0.005214333068579435, -0.030466267839074135, 0.01860080100595951, 0.0018262051744386554, -0.028617581352591515, 0.002662927145138383, 0.02218799851834774, 0.027402210980653763, -0.08255389332771301, 0.05080387741327286, -0.052751366049051285, -0.03692178428173065, -0.0494445338845253, -0.009344352409243584, 0.020650435239076614, 0.011401304975152016, 0.01887463591992855, 0.025328315794467926, -0.03217611089348793, -0.0011705141514539719, 0.01738032139837742, 0.05745267868041992, -0.02595524862408638, 0.04920489341020584, 0.0368872806429863, -0.007158341817557812, 0.04234727844595909, 0.01928349770605564, -0.025288060307502747, -0.025179490447044373, 0.022036219015717506, -0.016161836683750153, 0.011535132303833961, 0.010746062733232975, 0.000031882867915555835, 0.018042175099253654, 0.04058641940355301, -0.037347227334976196, 0.02659796178340912, 0.015911784023046494, 0.021885234862565994, 0.0156678706407547, -0.01516628172248602, 0.01703125424683094, 0.0027747212443500757, -0.04121275618672371, -0.047197677195072174, -0.002210404723882675, 0.03944221884012222, 0.07228598743677139, -0.05187266692519188, 0.04047675058245659, -0.011627297848463058, -0.05548149347305298, 0.04953465983271599, -0.06255189329385757, -0.00016520870849490166, 0.0555574968457222, -0.002409496111795306, 0.032081276178359985, -0.022192656993865967, 0.029758047312498093, -0.03882629796862602, 0.0048001487739384174, 0.027406001463532448, 0.01610426791012287, 0.013385129161179066, -0.04553043842315674, 0.00750849861651659, -0.010243900120258331, -0.023427028208971024, 0.0020058201625943184, -0.033293649554252625, 0.01363824587315321, 0.005907727871090174, -0.01999536342918873, -0.038531944155693054, 0.03862528130412102, 0.03538007289171219, 0.026937294751405716, -0.02546665444970131, 0.058808956295251846, 0.01660924218595028, 0.01836130954325199, 0.04218171536922455, -0.02353822812438011, 0.022902673110365868, -0.011601841077208519, 0.0514337494969368, -0.0038052706513553858, -0.03643716126680374, -0.011377496644854546, -0.04848974570631981, -0.04416172578930855, 0.02941332384943962, -0.00019718424300663173, -0.024613484740257263, -0.03871970251202583, 0.014046349562704563, 0.0005546956672333181, 0.04529919475317001, -0.003529020119458437, -0.019572386518120766, -0.020850399509072304, 0.03498929366469383, -0.0016591318417340517, -0.03803161531686783, 0.012309664860367775, -0.04633519798517227, 0.031925443559885025, 0.05905504897236824, -0.017360566183924675, -0.03933899104595184, -0.027326084673404694, -0.04268511012196541, -0.016848092898726463, -0.002210052218288183, 0.03745954856276512, -0.008819344453513622, -0.01587827131152153, -0.03551917150616646, 0.04276809096336365, 0.022652648389339447, -0.021297311410307884, -0.003358978545293212, 0.010656187310814857, 0.006495279725641012, 0.021376438438892365, 0.05949213355779648, -0.02869362384080887, -0.01708131656050682, 0.015933670103549957, -0.05796990916132927, 0.03262476623058319, -0.010930727235972881, -0.03823210671544075, 0.004992449656128883, -0.007814744487404823, 0.02803742326796055, 0.033652886748313904, -0.029238371178507805, 0.02183765545487404, -0.015111958608031273, 0.03686991333961487, -0.027202114462852478, -0.01770961657166481, 0.07444780319929123, -0.009266888722777367, -0.033633697777986526, 0.019392887130379677, 0.038788873702287674, -0.03285610303282738, -0.0019395044073462486, 0.02632984332740307, -0.02935374155640602, 0.021178774535655975, -0.019487541168928146, 0.029717376455664635, -0.01981491595506668, -0.04310867190361023, 0.011330103501677513, -0.027256188914179802, 0.034998707473278046, 0.00901801884174347, 0.002912558615207672, -0.03511225804686546, -0.04874766618013382, 0.0046010310761630535, -0.005756615661084652, -0.01666075363755226, 0.027466444298624992, 0.007545110769569874, -0.013584733009338379, -0.015108411200344563, -0.01662587933242321, -0.02160477638244629, 0.02524818293750286, -0.013500388711690903, 0.048227716237306595, -0.01931215636432171, -0.013452915474772453, 0.02772081457078457, -0.0333314873278141, -0.0328860878944397, -0.003786784363910556, -0.021464304998517036, -0.0321161113679409, -0.08742275834083557, -0.020589744672179222, -0.05025614798069, 0.0002240964531665668, -0.019217219203710556, -0.013235163874924183, -0.007764057256281376, -0.004454126115888357, 0.06018926203250885, -0.007152967154979706, 0.016007075086236, -0.033122748136520386, -0.021874386817216873, 0.05230960249900818, 0.010001077316701412, -0.03497760742902756, -0.024945436045527458, 0.06581249088048935, -0.006682808045297861, 0.0320049524307251, -0.0016209147870540619, -0.010383665561676025, -0.021828804165124893, -0.054768551141023636, -0.014628937467932701, -0.010539732873439789, -0.01864772103726864, -0.048076484352350235, -0.05394111946225166, -0.03882625699043274, 0.039665695279836655, 0.01619679667055607, 0.007032553665339947, -0.0016442128689959645, -0.01970432512462139, 0.001853390596807003, -0.018088970333337784, -0.028476214036345482, -0.016158338636159897, 0.00305665354244411, -0.015090812928974628, 0.04519887641072273, -0.00012234048335812986, -0.0010920658241957426, 0.013993434607982635, 0.021507052704691887, 0.015904515981674194, -0.030309610068798065, -0.05016285181045532, -0.032313089817762375, 0.011539085768163204, 0.0046517513692379, -0.015030772425234318, -0.01247019786387682, -0.02931038662791252, 0.05477696284651756, -0.020784784108400345, 0.002392043126747012, -0.0315861813724041, -0.011790427379310131, -0.027317404747009277, -0.023824861273169518, 0.03648765757679939, 0.0005292723653838038, -0.00481774378567934, 0.010701276361942291, 0.027268381789326668, 0.0619831420481205, -0.009672364220023155, -0.03983283042907715, -0.045458149164915085, -0.034953147172927856, -0.08882205188274384, 0.061130985617637634, -0.05143090337514877, 0.0071035102009773254, -0.05106539651751518, -0.015008123591542244, 0.028434008359909058, 0.015558797866106033, 0.0050790561363101006, 0.03824577108025551, -0.0476112887263298, 0.005363619886338711, -0.04233958572149277, -0.0028352709487080574, 0.016427364200353622, -0.017882773652672768, 0.017770003527402878, -0.011186832562088966, -0.00972139835357666, 0.026829227805137634, -0.08588043600320816, -0.06664511561393738, -0.03980853036046028, -0.013598655350506306, 0.06597863882780075, -0.015363343991339207, 0.02771015278995037, -0.005185353569686413, -0.04344944655895233, -0.038371674716472626, 0.04661063477396965, 0.006634184159338474, -0.007915092632174492, 0.04735944792628288, -0.0040131728164851665, -0.012056224048137665, 0.021578939631581306, 0.012540718540549278, 0.025895506143569946, -0.045465998351573944, 0.06016624718904495, -0.01152968779206276, -0.04299993813037872, 0.03741958737373352, 0.03666362911462784, -0.047249168157577515, -0.022965021431446075, 0.007894541136920452, -0.0016405945643782616, -0.022335894405841827, -0.02129938080906868, 0.031023694202303886, 0.00003569564432837069, -0.01121760904788971, 0.022320831194519997, 0.02077588252723217, 0.005648829508572817, 0.06115955859422684, 0.008104517124593258, 0.028983086347579956, -0.02321114018559456, -0.029284607619047165, 0.02146715112030506, -0.025670301169157028, -0.01766243204474449, -0.04379572719335556, 0.005384352523833513, 0.010217410512268543, -0.01129274070262909, 0.04083183407783508, 0.020153574645519257, 0.004812651313841343, 0.04124628007411957, 0.015773583203554153, 0.08494658768177032, -0.001569113228470087, -0.027136091142892838, 0.013614372350275517, -0.019704822450876236, -0.03921419382095337, -0.027419934049248695, 0.019203051924705505, -0.019994143396615982, 0.05740480497479439, -0.021887237206101418, 0.01582290418446064, 0.06225374713540077, -0.02709946036338806, 0.020577220246195793, -0.04830580949783325, -0.019106606021523476, -0.04284912720322609, -0.02993953600525856, -0.013446067459881306, -0.027678992599248886, 0.01170701626688242, 0.048424605280160904, 0.02996813878417015, -0.02998414821922779, 0.013508712872862816, 0.028830789029598236, 0.0018608529353514314, 0.00646958127617836, -0.008358636870980263, 0.01126963272690773, -0.036195531487464905, -0.026175083592534065, -0.04228294640779495, 0.01721779815852642, -0.011755948886275291, 0.018306707963347435, -0.012170197442173958, 0.006053348537534475, 0.00969666987657547, 0.002828768454492092, -0.027447044849395752, 0.045960087329149246, -0.005385361146181822, -0.07241740822792053, -0.042769476771354675, 0.012604070827364922, 0.0012290559243410826, 0.018885623663663864, 0.048920705914497375, 0.005078197922557592, 0.030401093885302544, -0.0020152481738477945, -0.030121678486466408, -0.021303977817296982, -0.026192735880613327, -0.009265623986721039, 0.001705239643342793, -0.03882483392953873, -0.05495820939540863, -0.001661172485910356, -0.031430430710315704, 0.034908417612314224, -0.022115979343652725, -0.0013133271131664515, 0.011020032688975334, -0.0237802192568779, -0.009236706420779228, 0.03567694500088692, -0.02339441142976284, 0.030352527275681496, -0.0043265032581985, 0.010354398749768734, 0.029620962217450142, -0.012375470250844955, 0.040492113679647446, 0.0017571834614500403, 0.03436071425676346, -0.01904999278485775, -0.024412238970398903, 0.0037980414927005768, 0.0072668083012104034, 0.014205344021320343, -0.021206704899668694, -0.04203937202692032, -0.05230199918150902, -0.002485864330083132, 0.0024266084656119347, 0.033316195011138916, 0.016797799617052078, -0.01334630697965622, 0.037318747490644455, -0.023226110264658928, -0.04007330164313316, -0.0042932904325425625, -0.04071673005819321, -0.022743865847587585, 0.04887792095541954, -0.02155885472893715, 0.014358031563460827, -0.026390613988041878, -0.038850948214530945, 0.023010220378637314, -0.034248292446136475, -0.018260333687067032, -0.03308091685175896, 0.0339050330221653, -0.0022965483367443085, 0.03575321286916733, -0.013537234626710415, -0.0009367361781187356, 0.015357458032667637, 0.0565982349216938, -0.05280349776148796, -0.05598057806491852, 0.033301033079624176, 0.002320327563211322, 0.015585911460220814, 0.005612167529761791, -0.011208733543753624, 0.021181780844926834, -0.030443338677287102, -0.023876909166574478, -0.005466282367706299, 0.024671437218785286, 0.017814360558986664, 0.022843509912490845, -0.021493900567293167, 0.0118829645216465, -0.04593765363097191, 0.03746412694454193, 0.003787845140323043, -0.025962652638554573, -0.025271303951740265, 0.03882542625069618, 0.04367629066109657, -0.017761964350938797, 0.038831863552331924, 0.012922637164592743, 0.039950620383024216, -0.016936738044023514, 0.0013816584832966328, -0.02121095359325409, 0.03832872211933136, 0.018522165715694427, 0.03502436727285385, -0.016794562339782715, 0.02476636692881584, 0.028206700459122658, -0.004623536951839924, -0.027620745822787285, 0.06043468043208122, 0.02453841269016266, -0.03411467373371124, 0.01546132005751133, -0.0389055572450161, 0.011914534494280815, 0.006122968625277281, -0.02338654175400734, -0.00842584390193224, -0.04608217999339104, -0.01744486391544342, 0.0028569120913743973, 0.0028003889601677656, 0.04294159635901451, -0.015968065708875656, 0.0007790427771396935, -0.02630111575126648, -0.030407242476940155, -0.003067307872697711, 0.011079896241426468, 0.030560318380594254, 0.017554955556988716, -0.004063981119543314, 0.01569954864680767, -0.005988153163343668, 0.023549746721982956, 0.019739024341106415, 0.009733648039400578, -0.04800403490662575, 0.04079470783472061, 0.015199746005237103, 0.009807160124182701, -0.012007201090455055, -0.00651142280548811, -0.04083877429366112, 0.029296260327100754, -0.0228840671479702, -0.01320501696318388, 0.04020713269710541, -0.04151109978556633, -0.010478241369128227, -0.07112964987754822, 0.04249636456370354, -0.07224051654338837, -0.0034800004214048386, 0.00236824550665915, 0.010555967688560486, -0.03203164041042328, 0.037891972810029984, -0.02616111934185028, -0.0008278241730295122, 0.017560439184308052, 0.041257958859205246, -0.025739748030900955, 0.026164483278989792, 0.05348525941371918, -0.036774955689907074, -0.024987423792481422, -0.00121691997628659, -0.015236863866448402, -0.014420176856219769, -0.05028242990374565, -0.025261156260967255, 0.0032032616436481476, -0.02850160002708435, -0.016290737316012383, -0.012102916836738586, 0.042081721127033234, 0.017166901379823685, -0.053616683930158615, -0.0029607575852423906, 0.03976944461464882, -0.03229420632123947, 0.02048860676586628, 0.028386373072862625, 0.041258804500103, -0.010879728011786938, -0.012670319527387619, -0.011185518465936184, -0.040254879742860794, 0.01432582177221775, -0.04814251884818077, 0.069962278008461, -0.0012568278471007943, -0.029671479016542435, -0.035069938749074936, -0.024932406842708588, -0.007192554417997599, -0.03255697339773178, -0.049908459186553955, -0.0384056456387043, 0.04140763729810715, 0.058316394686698914, 0.005312895867973566, 0.008791638538241386, -0.026597116142511368, 0.015573117882013321, -0.02218998409807682, 0.0697646364569664, -0.0007722793961875141, 0.03179927542805672, 0.035293061286211014, 0.015684297308325768, 0.02022360824048519, -0.04786747694015503, 0.04021424055099487, 0.003505833214148879, -0.009536749683320522, -0.009604047052562237, 0.0024743760004639626, -0.010245300829410553, -0.05649224668741226, 0.027707649394869804, -0.02613108977675438, -0.004277006722986698, -0.031377777457237244, -0.04824176803231239, -0.001895994646474719, -0.0358157642185688, -0.0012248598504811525, -0.007297896780073643, 0.023544007912278175, 0.005723932757973671, 0.006176535505801439, 0.0418768934905529, -0.068076953291893, 0.16322538256645203, 0.03313812240958214, 0.01264380756765604, 0.015963038429617882, 0.02841523475944996, 0.041914407163858414, 0.024504106491804123, -0.0019074607407674193, 0.03388165682554245, -0.04394122213125229, 0.02769414894282818, 0.009867794811725616, 0.018820177763700485, 0.02366502396762371, 0.014772049151360989, 0.045007575303316116, -0.044771645218133926, 0.023297032341361046, 0.013999424874782562, -0.03213929757475853, -0.06239735707640648, 0.029743634164333344, 0.021599002182483673, -0.0007989821024239063, 0.011791868135333061, 0.02229166589677334, -0.0005704706418327987, -0.023665420711040497, -0.015264803543686867, -0.01320988405495882, 0.01920800283551216, -0.04494304209947586, 0.015105577185750008, -0.00664934515953064, -0.03616466373205185, 0.05458150804042816, 0.02570129930973053, -0.04166559875011444, -0.00021613790886476636, 0.01433498039841652, -0.024736793711781502, -0.009066270664334297, 0.04780443012714386, -0.06983873248100281, 0.0521823987364769, 0.014036685228347778, -0.040310610085725784, 0.004836916457861662, 0.02700243704020977, -0.04074820503592491, 0.040177710354328156, -0.03820988908410072, 0.030926179140806198, -0.020944414660334587, -0.02306668646633625, 0.00826345570385456, -0.001314174267463386, -0.03235640376806259, 0.015376259572803974, 0.014205270446836948, 0.024073513224720955, 0.00659182807430625, -0.038705531507730484, -0.0021750167943537235, -0.03900665044784546, 0.02289670705795288, 0.04098237678408623, 0.005699418485164642, -0.003997743595391512, -0.024603383615612984, -0.0019221625989302993, -0.03268827497959137, -0.00009761447290657088, -0.02424238622188568, 0.042373426258563995, 0.023381639271974564, -0.024106530472636223, 0.04122505336999893, 0.00002807855707942508, -0.01486382819712162, -0.017722459509968758, -0.024257870391011238, -0.013681082054972649, -0.019644418731331825, 0.011884402483701706, 0.03644179552793503, -0.03566592559218407, -0.0819757729768753, -0.03904455900192261, 0.04263642430305481, 0.04755619913339615, 0.010185849852859974, -0.027259742841124535, -0.013511101715266705, -0.025232288986444473 ]
Pharmacy fellowship and pharmacy residency are the two primary means for pharmacists to obtain post-graduate training. Selecting a career path that is right for you can be challenging. This post is meant to assist in differentiating the options. With commencement season in full effect and the job market flush with newly minted PharmDs, many student pharmacists may be contemplating post-graduate training in either a residency or fellowship. Although the deadlines have already passed for this academic year, for those students in their 1st through 3rd years of pharmacy school who are watching their 4th year colleagues graduate, they may be starting to ponder their future career path after graduation. In general there are two main choices for post-graduate training: pharmacy residency or fellowship. Residencies are very structured 1 or 2 year learning experiences aimed at equipping trainees with the requisite skills of a clinical pharmacist. Those who complete 1 year of residency positions are typically ready for a general staff pharmacist position in either a hospital or community pharmacy setting. Conversely, those who complete a second year of training in a specialized area (e.g. solid organ transplantation) are prepared to function as a clinical pharmacy specialist. While this highly trained individual will likely spend the majority of his or her time focused on provision of direct patient care, they will also likely dedicate some effort (perhaps 10-20%) toward practice-based research projects and scholarly activity. Fellowships, on the other hand, are much less structured. Most are not accredited by a major pharmacy society (as most residencies are), and as such the fellowship director has significant latitude in designing a program specific to the current fellow. Some fellowships do include a component of patient care, however the majority are focused on developing expertise in research and scholarship. The goal of most fellowships is to produce a pharmacist-scientist who is capable of independently functioning as a successfully, extramurally funded researcher. Whereas most pharmacists who complete residency training pursue positions in hospitals or outpatient clinics, fellowship graduates more commonly seek employment in academia or industry. As you can see, these two pathways are quite different, and hence the decision of which to follow has to be predicated on where you see yourself practicing after graduation. If you love patient care and could not envision a job that doesn't allow you to interact with the public on a daily basis, then a research-heavy, fellowship-based training plan may not be best for you. On the contrary, if your dream is to be a faculty member at a college of pharmacy, particularly one where research and scholarship are expected, then a fellowship should be part of your post-graduate training. Personally, I think that the ideal pathway may be to complete both. A post-graduate year one (PGY1) residency provides a very fundamental skill set that I feel all pharmacists practicing in the 21st century require. The basics of patient care, drug information, health care administration, and independent clinical decision making are all instilled as part of a PGY1 training program. Completion of a pharmacy fellowship adds tremendously to a PGY1 foundation, and helps to grow and nurture creativity and independence. These skills will prove very useful even if you don't end up pursuing a research focused career. My former mentor completed a PGY1 residency training program followed by a 2 year Cardiovascular Pharmacotherapy Fellowship. While he did spend some time in academia, he eventually transitioned over to hospital leadership, and he is presently the Director of Pharmacy for a large academic teaching center. It's easy for me to see how the abilities to set a vision and to foster innovation that he learned during fellowship translated very effectively in his new role as a hospital manager. As you can see, the decision of which post-graduate career path to follow is complex and multifaceted. I would encourage you that when facing this decision, a certain degree of introspection is mandatory. Take time during school to explore different extracurricular activates and be sure to explore a diverse set of Introductory and Advanced Pharmacy Practice Rotations (IPPEs and APPEs) in order to find your true passion. Seeking out the advice of a trusted mentor is also essential. In the end, only you can decide what type of post-graduate training is best for you.
[ 0.007069391664117575, -0.0011165029136464, -0.01455649919807911, -0.018412187695503235, -0.01699971780180931, -0.00359282735735178, -0.003222104161977768, 0.024374885484576225, 0.02000216767191887, 0.019854385405778885, 0.031079797074198723, 0.007487815339118242, 0.01577061042189598, -0.02618182636797428, 0.025509769096970558, 0.038905929774045944, 0.0006585525115951896, -0.025937261059880257, -0.0279192253947258, 0.007394728250801563, -0.028738530352711678, 0.04663313552737236, -0.05219108983874321, -0.024860307574272156, -0.047535356134176254, 0.013501439243555069, 0.010501139797270298, 0.017706196755170822, 0.04371563717722893, 0.05940181389451027, -0.010802911594510078, -0.026995984837412834, 0.025879645720124245, -0.04584018513560295, -0.05044097453355789, -0.03280288726091385, 0.031214818358421326, -0.05066757649183273, -0.005390481557697058, -0.014982075430452824, 0.0312044657766819, -0.005861841607838869, 0.02185404859483242, -0.022839920595288277, -0.037007469683885574, 0.0037407258059829473, -0.007847589440643787, -0.042232997715473175, 0.002543092705309391, -0.04191675782203674, -0.007563197053968906, 0.0018504937179386616, -0.004177441354840994, -0.0038750767707824707, -0.002762906951829791, 0.042695239186286926, 0.01697547733783722, -0.01946772262454033, 0.007783243432641029, 0.05016075447201729, -0.038986023515462875, 0.018758898600935936, 0.00017780305643100291, -0.08301641047000885, 0.03717328608036041, 0.000027734176910598762, 0.006674931850284338, -0.001103134360164404, 0.005530796013772488, -0.01590917818248272, 0.0010363514302298427, -0.005449190735816956, -0.022712750360369682, -0.013807740993797779, 0.006400389596819878, -0.020862918347120285, 0.01770537532866001, 0.028033999726176262, 0.008530068211257458, -0.011502409353852272, 0.018079794943332672, 0.023117365315556526, -0.0015408048639073968, -0.008183497004210949, -0.04537191987037659, -0.02528192102909088, -0.004802908282727003, -0.0030348889995366335, 0.02624129131436348, 0.0018812165362760425, 0.017260205000638962, 0.04649768024682999, 0.02701273374259472, -0.037061214447021484, 0.010796422138810158, 0.05687927082180977, -0.025647921487689018, 0.02895069308578968, 0.041001096367836, 0.021938778460025787, 0.031476885080337524, 0.023290840908885002, 0.03924134001135826, 0.03329886496067047, -0.057719092816114426, -0.02478357031941414, 0.015093793161213398, -0.02395346388220787, -0.014382313936948776, -0.0363038033246994, 0.00652412511408329, -0.032701559364795685, -0.009083465673029423, -0.004419524688273668, 0.0004915238823741674, 0.05404667556285858, -0.009814525954425335, 0.011751764453947544, -0.05982670187950134, 0.014596602879464626, 0.04523790255188942, -0.008381620980799198, 0.058561451733112335, -0.014208346605300903, 0.04743732884526253, -0.0215414147824049, -0.030933717265725136, 0.06381938606500626, -0.063157819211483, -0.03913519158959389, 0.021281229332089424, -0.03526303544640541, -0.03527131676673889, 0.024798808619379997, -0.01189620140939951, 0.028761256486177444, 0.017755361273884773, 0.03841126710176468, 0.012442643754184246, -0.05179554596543312, 0.03530262038111687, 0.04428102821111679, 0.005859898868948221, 0.08254072815179825, -0.002587167313322425, 0.015236793085932732, -0.024229176342487335, -0.03536447137594223, -0.03243150934576988, 0.008569365367293358, -0.024838276207447052, -0.008024596609175205, -0.035372037440538406, 0.005713180173188448, -0.0358089916408062, -0.0005956575041636825, 0.027302226051688194, 0.01332254521548748, 0.007594924420118332, 0.03219878301024437, -0.024385714903473854, 0.019231218844652176, -0.006794400978833437, 0.05144858732819557, 0.012732173316180706, 0.03497390076518059, -0.023765267804265022, 0.02286946028470993, 0.00007100021321093664, -0.03247399628162384, 0.025176087394356728, -0.012277397327125072, -0.010614275932312012, 0.03334014490246773, 0.022812295705080032, 0.05527850612998009, 0.040331751108169556, 0.014139089733362198, 0.039873916655778885, 0.04403239116072655, -0.044998813420534134, 0.00596692506223917, 0.009672969579696655, 0.06846796721220016, 0.004488141275942326, 0.013681842014193535, 0.00972672738134861, -0.011716647073626518, -0.016862967982888222, -0.048139628022909164, -0.04132208228111267, 0.06301446259021759, -0.012537154369056225, 0.04746422544121742, -0.009658051654696465, -0.012421059422194958, -0.028018739074468613, -0.024356510490179062, 0.007213887758553028, -0.048301417380571365, -0.019621223211288452, 0.05050423741340637, -0.03941786289215088, 0.045231543481349945, -0.00013384359772317111, 0.00477964710444212, -0.01524540688842535, 0.07265635579824448, -0.017755314707756042, -0.000011290280781395268, 0.04212559014558792, 0.020385725423693657, -0.021435417234897614, -0.015007530339062214, 0.023372242227196693, -0.028650442138314247, -0.03685080632567406, 0.05507728457450867, 0.017113303765654564, -0.01029291097074747, 0.019126953557133675, -0.007998218759894371, 0.048790544271469116, 0.05397740751504898, -0.013289645314216614, -0.009164989925920963, 0.032583557069301605, 0.029252152889966965, -0.02107192389667034, 0.005825754255056381, -0.008894787169992924, 0.05564475804567337, 0.01521088182926178, 0.0666632130742073, 0.045892249792814255, 0.0012391741620376706, 0.03569166734814644, 0.07549703121185303, -0.023936457931995392, 0.025963187217712402, -0.0027182919438928366, 0.017704524099826813, -0.0027862710412591696, 0.029162153601646423, -0.03192107006907463, 0.03692583739757538, -0.03711507096886635, 0.009579320438206196, -0.0459115169942379, 0.05696970596909523, -0.03617502748966217, 0.03334742784500122, 0.03405846655368805, 0.02469065971672535, -0.03619590401649475, 0.010089288465678692, 0.008083696477115154, 0.051630355417728424, -0.040299005806446075, -0.019668975844979286, 0.006436759606003761, 0.018407797440886497, -0.028890112414956093, 0.02160838432610035, 0.036986343562603, 0.01775652915239334, 0.020236598327755928, 0.04714546352624893, -0.003897889517247677, -0.0437689833343029, -0.045248761773109436, -0.05788834020495415, -0.05635916441679001, -0.04813719913363457, -0.032942064106464386, -0.0022546565160155296, 0.005256044212728739, -0.022530972957611084, 0.02745911478996277, -0.00926134828478098, -0.017843278124928474, -0.018530044704675674, 0.008808325044810772, 0.04355438053607941, 0.029648009687662125, 0.048244282603263855, -0.03472829982638359, 0.04848524183034897, -0.00880457367748022, 0.04279138892889023, -0.04311610385775566, -0.022641504183411598, -0.0307626873254776, 0.0018343331757932901, 0.03932592645287514, -0.01938421092927456, -0.006943279877305031, -0.007854176685214043, -0.05954170227050781, -0.04862992465496063, -0.0022115756291896105, 0.01837312802672386, -0.009675005450844765, 0.003999585285782814, -0.006244090385735035, 0.052578218281269073, 0.017909785732626915, -0.05626954883337021, 0.03583308681845665, -0.003973448183387518, -0.028006086125969887, 0.02738811820745468, 0.038951944559812546, -0.0008072932832874358, -0.07132504135370255, 0.05954202637076378, 0.040295958518981934, 0.0058952271938323975, -0.008556443266570568, -0.03890267759561539, -0.021503282710909843, 0.02444428764283657, 0.029150143265724182, -0.02963465265929699, -0.005470680072903633, 0.06425263732671738, 0.013462478294968605, -0.0844508484005928, 0.028042355552315712, -0.03962679207324982, -0.03778314217925072, -0.0325818732380867, -0.019035788252949715, 0.04385870695114136, 0.012954436242580414, 0.0559622161090374, -0.014323156327009201, -0.020232534036040306, -0.0043160500936210155, -0.006290635094046593, 0.05601371452212334, -0.009016681462526321, 0.01001724787056446, 0.02752496302127838, 0.010818851180374622, 0.028298761695623398, 0.012813329696655273, -0.040657952427864075, -0.0006221281946636736, 0.008553840219974518, 0.017794866114854813, 0.019706305116415024, 0.022856902331113815, 0.009482720866799355, 0.02264118194580078, 0.04107322543859482, -0.041585613042116165, -0.005428458098322153, -0.004104700870811939, -0.0006322856643237174, -0.03693607449531555, 0.02934519201517105, -0.007659727241843939, -0.020425256341695786, -0.02448098547756672, -0.05357751622796059, 0.008752535097301006, 0.012406058609485626, 0.054601721465587616, -0.0697023868560791, 0.07321109622716904, -0.0068749962374567986, -0.037131600081920624, 0.04405471682548523, -0.029520845040678978, -0.005802125204354525, 0.04217548295855522, -0.011725271120667458, 0.017705721780657768, -0.011544127017259598, -0.008049462921917439, -0.02220424823462963, 0.024921134114265442, 0.024348070845007896, -0.01832948625087738, 0.022201942279934883, -0.05900948494672775, -0.0014925722498446703, -0.006318031810224056, -0.032876648008823395, 0.018739352002739906, -0.02154850959777832, 0.01875496469438076, -0.013393213972449303, -0.03636340796947479, -0.044238027185201645, 0.05997779965400696, 0.03857361152768135, 0.021695276722311974, -0.009826773777604103, 0.020872924476861954, 0.00443118205294013, 0.01959972083568573, 0.04155843332409859, 0.0020026215352118015, 0.04957001656293869, -0.03200799226760864, 0.033867672085762024, 0.004051828756928444, 0.0023031081072986126, -0.04429167881608009, -0.0158443171530962, -0.033526014536619186, 0.03853647783398628, 0.0013260425766929984, -0.021055612713098526, -0.00803377851843834, 0.018663950264453888, -0.02174479328095913, -0.00003524424755596556, -0.02302306517958641, 0.0017214667750522494, -0.022564638406038284, 0.039212219417095184, -0.005841244477778673, -0.023987343534827232, -0.005931290332227945, -0.023251578211784363, 0.03732970729470253, 0.04737948253750801, -0.025959135964512825, -0.040445536375045776, 0.02019619196653366, -0.03942001610994339, -0.04928850755095482, 0.022602569311857224, 0.016861990094184875, -0.010763561353087425, -0.002318295883014798, -0.031690143048763275, 0.015260095708072186, -0.006073846481740475, -0.0004385493812151253, -0.029622318223118782, 0.0005717003950849175, 0.026744551956653595, 0.016613418236374855, 0.022332465276122093, 0.011559546925127506, -0.016119012609124184, 0.0003918237634934485, -0.06282372772693634, 0.002817604225128889, 0.017829950898885727, 0.0004911788855679333, 0.01155767310410738, -0.002365988213568926, 0.01766439713537693, 0.035208359360694885, -0.027463823556900024, 0.018208097666502, -0.031461335718631744, 0.03851053863763809, -0.05349356308579445, -0.028224514797329903, 0.053862202912569046, -0.019342679530382156, -0.06345560401678085, 0.024586664512753487, 0.03660919517278671, -0.032158683985471725, 0.0030984377954155207, -0.009814167395234108, -0.04419855773448944, 0.057458508759737015, -0.020275404676795006, 0.0005970579222775996, 0.0007179919048212469, -0.03194500505924225, 0.05063192546367645, -0.042737413197755814, -0.017679421231150627, -0.013356825336813927, -0.002236071042716503, -0.0231324452906847, -0.04865695908665657, -0.005613112356513739, -0.00856668408960104, -0.04802532121539116, -0.0032083129044622183, 0.015374904498457909, -0.021418748423457146, 0.008667475543916225, 0.01868894323706627, -0.0013373872498050332, 0.007640039082616568, 0.010314099490642548, 0.0001724466565065086, -0.041934650391340256, 0.02712072804570198, -0.0017981210257858038, -0.013213623315095901, -0.020202266052365303, -0.00006308602314675227, 0.004584942944347858, -0.05281199887394905, -0.03668401017785072, 0.014664866961538792, -0.01919425092637539, -0.03266371041536331, -0.043786026537418365, 0.0086170993745327, -0.03235892951488495, 0.00922145415097475, 0.03009907528758049, 0.01766566000878811, -0.001292471424676478, 0.03689024597406387, 0.004279084037989378, 0.0538504496216774, 0.024940086528658867, -0.05417002737522125, -0.03631267324090004, 0.0013924710219725966, -0.026136819273233414, 0.08332078158855438, 0.012210549786686897, -0.018316280096769333, -0.02626548521220684, -0.03711918741464615, -0.012021947652101517, -0.01617899350821972, -0.013962467201054096, -0.032978355884552, -0.02583138830959797, -0.0163559690117836, 0.034531060606241226, 0.021996116265654564, 0.024299466982483864, -0.005862797610461712, -0.06360755115747452, 0.008795063942670822, -0.046364087611436844, 0.007394127547740936, -0.0034322927240282297, -0.012532300315797329, -0.009759826585650444, 0.07392176985740662, 0.007891736924648285, 0.02200991101562977, -0.02451975829899311, 0.02445300482213497, 0.020554229617118835, -0.00939868949353695, -0.056480757892131805, -0.09249245375394821, 0.0026431011501699686, 0.03461243584752083, 0.029794063419103622, -0.005809957627207041, -0.026845291256904602, 0.03102174587547779, -0.05382930114865303, 0.015108850784599781, -0.015798337757587433, 0.01571919396519661, 0.00872096698731184, 0.021021677181124687, 0.056566670536994934, -0.009958083741366863, -0.014886458404362202, -0.03140685707330704, 0.037665609270334244, 0.05238525569438934, 0.005855118855834007, -0.030254410579800606, -0.013575812801718712, -0.032665856182575226, -0.04934568330645561, 0.0453292578458786, -0.030253926292061806, -0.024704119190573692, -0.04737308248877525, -0.01633462868630886, 0.04577426239848137, -0.030267488211393356, 0.04742002114653587, 0.00779722910374403, -0.028159812092781067, 0.007219860330224037, -0.022587472572922707, 0.033162642270326614, 0.018444085493683815, 0.009356138296425343, 0.011347644962370396, -0.04262556880712509, 0.0038011171855032444, 0.011187165975570679, -0.04272569715976715, -0.02076372504234314, -0.055055972188711166, 0.007438431493937969, 0.05376546084880829, -0.016374049708247185, 0.04540777578949928, 0.0018482371233403683, -0.04203459247946739, -0.010585268959403038, 0.03458989039063454, -0.011272046715021133, 0.008473477326333523, 0.05883989483118057, 0.002224583178758621, -0.024967163801193237, 0.021902406588196754, -0.02176455594599247, -0.01644354686141014, -0.02230949141085148, 0.06030963733792305, -0.02140304073691368, -0.027487270534038544, 0.01659376174211502, 0.04581977427005768, -0.030527787283062935, -0.06050596386194229, 0.021443206816911697, -0.000004521515165833989, 0.012364508584141731, -0.01667662151157856, 0.016145817935466766, 0.010012826882302761, -0.013945575803518295, 0.03038225881755352, 0.02358778566122055, -0.03658680245280266, 0.03892282396554947, -0.021039137616753578, 0.01375498715788126, -0.03883565962314606, -0.03153107687830925, 0.030328817665576935, -0.014230080880224705, -0.024259895086288452, -0.010182274505496025, -0.014846377074718475, 0.014285613782703876, 0.013681895099580288, 0.039395324885845184, -0.05041036009788513, 0.002195370849221945, 0.04395454749464989, 0.010455292649567127, 0.029887843877077103, 0.015852542594075203, -0.017996134236454964, 0.001337994821369648, -0.031811222434043884, -0.028437724336981773, -0.0050709908828139305, 0.010499568656086922, 0.009386480785906315, 0.05568061023950577, -0.043235912919044495, 0.004070271737873554, 0.03915907442569733, 0.01313693355768919, 0.03503639996051788, -0.05453791469335556, -0.06583409756422043, -0.0405472069978714, -0.04167040064930916, -0.021215250715613365, -0.011452844366431236, 0.017074009403586388, 0.04893779754638672, -0.00626275734975934, -0.0185686107724905, 0.022471752017736435, 0.02274368517100811, -0.030419891700148582, -0.012837979011237621, -0.0445711649954319, 0.055201657116413116, -0.039137471467256546, -0.04722687974572182, -0.05878701061010361, -0.009415705688297749, -0.02826668508350849, 0.019786417484283447, -0.029779020696878433, 0.02380536124110222, 0.006156946998089552, 0.035062823444604874, 0.0055559477768838406, 0.010222581215202808, -0.007574730087071657, -0.04619929566979408, 0.012159628793597221, 0.07446474581956863, -0.01779344491660595, 0.04627453163266182, 0.020029975101351738, -0.017899738624691963, 0.044079989194869995, 0.01097183022648096, -0.05301081761717796, -0.009554273448884487, 0.019748449325561523, -0.02771371603012085, -0.022329505532979965, -0.04992557689547539, -0.021178552880883217, -0.011066273786127567, -0.06694918870925903, 0.0025434636045247316, -0.00651418836787343, 0.0016856276197358966, 0.02818279340863228, -0.008769211359322071, -0.008280622772872448, 0.05438518896698952, 0.01674303412437439, 0.022757254540920258, 0.029635479673743248, 0.05602457746863365, 0.010131511837244034, -0.005478473845869303, 0.00018042045121546835, 0.040961477905511856, 0.001841952558606863, -0.013396329246461391, 0.009016159921884537, 0.005859450437128544, -0.02294519916176796, 0.026296352967619896, -0.027002694085240364, -0.003279479220509529, -0.044571664184331894, -0.01810021698474884, -0.03519773110747337, 0.04280218482017517, 0.0459442101418972, -0.018243227154016495, -0.001003210199996829, -0.03704071789979935, 0.0037331506609916687, -0.00046230992302298546, -0.03513495251536369, -0.03486326336860657, 0.023670941591262817, -0.020806139335036278, -0.03686527907848358, -0.008524907752871513, -0.05653558298945427, 0.009286199696362019, 0.00028609822038561106, 0.0033694813027977943, -0.03605206683278084, 0.021005012094974518, 0.036215223371982574, 0.025403453037142754, -0.010881367139518261, -0.027198003605008125, 0.022583860903978348, 0.03553862124681473, -0.033985842019319534, -0.03582115098834038, 0.028690721839666367, 0.014936515130102634, 0.021917233243584633, -0.017621604725718498, 0.002824208466336131, 0.023557215929031372, 0.011046746745705605, 0.012530590407550335, -0.036460913717746735, -0.002168423729017377, -0.02515237405896187, 0.014416576363146305, -0.0000864747999003157, -0.007872997783124447, -0.06045838072896004, 0.026685725897550583, -0.01285984180867672, -0.03174852579832077, -0.040885213762521744, 0.021109092980623245, 0.014367705211043358, -0.033212482929229736, 0.016674015671014786, -0.009433219209313393, 0.051648106426000595, -0.019495606422424316, 0.013417736627161503, 0.054582931101322174, 0.00706032058224082, 0.03175467252731323, 0.05642014741897583, 0.0014463701518252492, 0.027391785755753517, 0.05861695110797882, -0.013779019936919212, -0.001287050312384963, 0.04993259534239769, 0.04977680742740631, -0.004182826261967421, -0.04112161323428154, -0.009634962305426598, 0.004594528581947088, 0.005800803657621145, 0.012599148787558079, 0.022290632128715515, 0.014999006874859333, 0.010839489288628101, -0.02289425954222679, -0.011489667929708958, 0.05453325808048248, -0.028617799282073975, 0.00715377414599061, 0.0021216832101345062, -0.04255419224500656, -0.017873961478471756, 0.04913922771811485, 0.03903552144765854, 0.041595060378313065, 0.0434761643409729, 0.02960957959294319, -0.0032300224993377924, 0.03335916996002197, 0.02191787399351597, -0.01476210169494152, -0.035727739334106445, 0.006690116599202156, -0.013746744953095913, 0.003314443165436387, -0.04919884726405144, -0.0006697904318571091, -0.039701901376247406, 0.04101809486746788, -0.014365526847541332, -0.0033761458471417427, 0.02404426969587803, -0.03662798926234245, -0.02315821312367916, -0.051066454499959946, 0.05941023677587509, -0.04290107265114784, 0.004870602395385504, 0.023189758881926537, -0.009662475436925888, -0.06342031806707382, 0.016338961198925972, -0.013740106485784054, 0.055953867733478546, 0.02238713949918747, 0.06834089010953903, -0.024092551320791245, 0.04644922539591789, 0.06170836463570595, -0.005296837072819471, -0.02385525219142437, 0.03305749595165253, 0.02548643760383129, -0.045085642486810684, 0.016416003927588463, -0.022834420204162598, -0.01798390783369541, -0.03476735204458237, -0.018875977024435997, -0.03599025309085846, 0.05585459619760513, -0.0032482556998729706, -0.04976246505975723, -0.013505863025784492, 0.021764330565929413, -0.03305896371603012, 0.010773299261927605, 0.02398979291319847, 0.02912418358027935, 0.01630498096346855, -0.01944783329963684, -0.0027226796373724937, -0.03783855587244034, -0.03336166590452194, -0.024153022095561028, 0.040363386273384094, 0.010378807783126831, -0.03411034867167473, -0.04855486750602722, -0.05580664053559303, 0.007445315830409527, 0.025896728038787842, -0.041958048939704895, -0.052589304745197296, 0.010150378569960594, 0.028433235362172127, 0.022250985726714134, 0.00021580768225248903, -0.023016052320599556, 0.022721463814377785, 0.021576980128884315, 0.06003440544009209, 0.008898250758647919, 0.035031720995903015, 0.011673059314489365, -0.02551025152206421, 0.026927577331662178, -0.03121105395257473, 0.02253907173871994, -0.04190714657306671, -0.012025956064462662, -0.02380940690636635, 0.02882140316069126, -0.014424863271415234, -0.07186518609523773, -0.019986771047115326, 0.033288903534412384, 0.022410865873098373, -0.01249082013964653, -0.06786846369504929, -0.00397574482485652, -0.035017143934965134, -0.0085515845566988, -0.03574749082326889, 0.032337382435798645, -0.015215009450912476, 0.011472669430077076, -0.00732993520796299, -0.03187093883752823, 0.15968747437000275, 0.06053227186203003, 0.04967940226197243, 0.014320607297122478, 0.02008962631225586, 0.03456059470772743, 0.030774284154176712, -0.0050613489001989365, 0.01368155051022768, -0.036167554557323456, -0.0007083794916979969, -0.012711497955024242, 0.012099849991500378, -0.008830874226987362, 0.0280121099203825, 0.0665246769785881, -0.033133186399936676, 0.004441655240952969, 0.015292936004698277, -0.03284365311264992, -0.06766452640295029, 0.016996068879961967, -0.0042921025305986404, 0.019294919446110725, -0.03574635833501816, -0.02463938482105732, -0.001150712138041854, -0.03324383124709129, 0.0035636983811855316, 0.010719351470470428, 0.0337158627808094, -0.01663893088698387, 0.02745756134390831, -0.03517830744385719, -0.03666067123413086, 0.03580914065241814, 0.019862180575728416, -0.03024042397737503, -0.01481207087635994, 0.0188052449375391, -0.006214863620698452, 0.02666490525007248, 0.02387917973101139, -0.06223834678530693, -0.002395027782768011, 0.044131506234407425, -0.05535496771335602, -0.026502665132284164, -0.024725940078496933, -0.06349797546863556, 0.06973282247781754, -0.058939918875694275, 0.028095727786421776, -0.01561054028570652, -0.024444760754704475, -0.004779542796313763, -0.012161711230874062, -0.03340709209442139, 0.00795042421668768, 0.024110401049256325, 0.0397908091545105, -0.00861907284706831, -0.011045723222196102, -0.004321688786149025, -0.020313642919063568, 0.0029777318704873323, 0.025063995271921158, -0.007565220817923546, -0.01864049583673477, -0.01632430963218212, -0.04251810163259506, -0.0003793943615164608, -0.014689651317894459, -0.045874208211898804, 0.024292156100273132, 0.020374413579702377, -0.034492023289203644, 0.03347136452794075, -0.015256932005286217, -0.036860521882772446, 0.006314237602055073, -0.0019790141377598047, -0.015080925077199936, 0.026099419221282005, 0.02867884561419487, 0.022583460435271263, -0.039127957075834274, -0.047339603304862976, -0.023973416537046432, 0.029286781325936317, 0.05320408195257187, 0.02006296068429947, -0.022317655384540558, 0.011298679746687412, -0.033178843557834625 ]
ะ’ะพัะบั€ะตัะตะฝัะบะพะตย โ€” ะฑั‹ะฒัˆะตะต ัะตะปะพ, ัั‚ะฐะฒัˆะตะต ั‡ะฐัั‚ัŒัŽ ะœะพัะบะฒั‹ ะฒ XVIII ัั‚ะพะปะตั‚ะธะธ. ะ ะฐัะฟะพะปะฐะณะฐะปะพััŒ ะฝะฐ ั‚ะตั€ั€ะธั‚ะพั€ะธะธ ัะพะฒั€ะตะผะตะฝะฝะพะณะพ ั€ะฐะนะพะฝะฐ ะŸั€ะตัะฝะตะฝัะบะพะณะพ ั€ะฐะนะพะฝะฐ. ะกะตะปะพ ะ’ะพัะบั€ะตัะตะฝัะบะพะต ะฝะฐั…ะพะดะธะปะพััŒ ะฑะปะธะท ัะตะปะฐ ะšัƒะดั€ะธะฝะพ ัƒ ั€ะตะบะธ ะŸั€ะตัะฝะธ. ะ•ะณะพ ะฒะพะทะฝะธะบะฝะพะฒะตะฝะธะต ะดะฐั‚ะธั€ัƒะตั‚ัั ะฟะพัะปะตะดะฝะตะน ั‡ะตั‚ะฒะตั€ั‚ัŒัŽ XVII ะฒะตะบะฐ. ะ’ 1681 ะณะพะดัƒ ั†ะฐั€ัŒ ะคะตะดะพั€ ะะปะตะบัะตะตะฒะธั‡ ะฒั‹ะฑั€ะฐะป ัั‚ัƒ ะผะตัั‚ะฝะพัั‚ัŒ ะดะปั ัั‚ั€ะพะธั‚ะตะปัŒัั‚ะฒะฐ ะฝะพะฒะพะณะพ ะทะฐะณะพั€ะพะดะฝะพะณะพ ะดะฒะพั€ั†ะฐ ั ะดะพะผะพะฒะพะน ะบะฐะผะตะฝะฝะพะน ะ’ะพัะบั€ะตัะตะฝัะบะพะน ั†ะตั€ะบะพะฒัŒัŽ. ะ’ัะบะพั€ะต ะฟะพะฑะปะธะทะพัั‚ะธ ะฒะพะทะฝะธะบะปะพ ะฟะพัะตะปะตะฝะธะต, ะณะดะต ะถะธะปะฐ ะดะฒะพั€ั†ะพะฒะฐั ะฟั€ะธัะปัƒะณะฐ. ะ’ ะดะพะบัƒะผะตะฝั‚ะฐั… 1680-ั… ะณะพะดะพะฒ ะฟะพัะตะปะตะฝะธะต ะธะผะตะฝัƒะตั‚ัั ยซะณะพััƒะดะฐั€ะตะฒั‹ะผ ะฝะพะฒั‹ะผ ัะตะปัŒั†ะพะผ ะ’ะพัะบั€ะตัะตะฝัะบะธะผยป. ะ ะตั‡ะบะฐ ะŸั€ะตัะฝั ะฑั‹ะปะฐ ะฟะตั€ะตะณะพั€ะพะถะตะฝะฐ ะฝะตัะบะพะปัŒะบะธะผะธ ะฟะปะพั‚ะธะฝะฐะผะธ, ะพะบะพะปะพ ะฒะพะทะฝะธะบัˆะธั… ะฟั€ัƒะดะพะฒ ะฑั‹ะป ั€ะฐะทะฑะธั‚ ะพะฑัˆะธั€ะฝั‹ะน ัะฐะด ะพะฑั‰ะตะน ะฟะปะพั‰ะฐะดัŒัŽ 63 ะณะตะบั‚ะฐั€ะฐ. ะกะพะณะปะฐัะฝะพ ะพะฟะธัะฐะฝะธัŽ ัะพะฒั€ะตะผะตะฝะฝะธะบะพะฒ: ยซะฐ ะฒ ั‚ะพะผ ัะฐะดัƒ ัะฐะดะพะฒะพะณะพ ัั‚ั€ะพะตะฝะธั 2400 ัะฑะปะพะฝัŒ ะฟะพ ะผะตัั‚ะฐะผ ะฝะฐ ะณั€ัะดะฐั…, 560 ะฟั€ะธะฒะธะฒะพะฒ, 34 ะณั€ัะดั‹ ะฟะพั‡ะตะบ, 250 ะบัƒัั‚ะพะฒ ะฒะธัˆะฝัะณัƒ, 112 ะณั€ัะด ัะผะพั€ะพะดะธะฝั‹ ะบั€ะฐัะฝะพะน. ะฃ ั‚ะพะณะพ ัะฐะดัƒ ัะฐะดะพะฒะฝะธะบะพะฒ 13 ั‡ะตะปะพะฒะตะบยป. ะ’ ะ’ะพัะบั€ะตัะตะฝัะบะพะผ ั‚ะฐะบะถะต ะฝะฐั…ะพะดะธะปัั ะŸะพั‚ะตัˆะฝั‹ะน ะดะฒะพั€, ะฒ ะบะพั‚ะพั€ะพะผ ัะพะดะตั€ะถะฐะปะธััŒ ั€ะฐะทะปะธั‡ะฝั‹ะต ะทะฒะตั€ะธ. ะะฐะฟั€ะธะผะตั€, ะฒ 1685 ะณะพะดัƒ ั‚ะฐะผ ะฑั‹ะป ะฑะตะปั‹ะน ะผะตะดะฒะตะดัŒ. ะ˜ะท-ะทะฐ ัะผะตั€ั‚ะธ ั†ะฐั€ั ะคะตะดะพั€ะฐ ะ’ะพัะบั€ะตัะตะฝัะบะพะต ะฝะต ัั‚ะฐะปะพ ะฟะพะฟัƒะปัั€ะฝะพะน ั€ะตะทะธะดะตะฝั†ะธะตะน ะธ ะฒัะบะพั€ะต ะฟั€ะพะธะณั€ะฐะปะพ ะฒ ะบะพะฝะบัƒั€ะตะฝั†ะธะธ ั ะšะพะปะพะผะตะฝัะบะธะผ ะธ ะ˜ะทะผะฐะนะปะพะฒั‹ะผ. ะŸั€ะธะผะตั‡ะฐะฝะธั ะ›ะธั‚ะตั€ะฐั‚ัƒั€ะฐ ะ˜ัั‚ะพั€ะธั‡ะตัะบะธะต ะผะตัั‚ะฝะพัั‚ะธ ะธ ั€ะฐะนะพะฝั‹ ะœะพัะบะฒั‹
[ -0.027458755299448967, 0.0018119384767487645, 0.0014113258803263307, -0.0006902662571519613, -0.012518404051661491, 0.01861640252172947, 0.0008045717258937657, 0.01133277453482151, 0.0032260052394121885, 0.030313147231936455, 0.04240443930029869, -0.00790855661034584, 0.020523976534605026, -0.025595901533961296, -0.013760662637650967, -0.027813808992505074, -0.05601358041167259, -0.02750895544886589, -0.04227018356323242, 0.01834338903427124, 0.00581240002065897, 0.031302351504564285, -0.07671983540058136, -0.06392674893140793, -0.02354220300912857, 0.015730254352092743, 0.014517835341393948, 0.02332998439669609, 0.0378449447453022, 0.05884966626763344, -0.0048343222588300705, -0.03941700607538223, 0.021329784765839577, -0.06448481231927872, -0.0013541184598580003, -0.01909872516989708, 0.013358754105865955, -0.044683050364255905, -0.004931678995490074, -0.06626962870359421, 0.01784132979810238, 0.007065831683576107, 0.02618536166846752, -0.009741944260895252, -0.032860543578863144, -0.0006074286065995693, -0.023128710687160492, -0.03647462651133537, -0.026879483833909035, -0.007798622362315655, 0.026925064623355865, -0.03306664153933525, 0.03215602785348892, -0.031175745651125908, 0.0034933355636894703, 0.026520593091845512, 0.0076094032265245914, -0.019268281757831573, 0.0005153018864803016, 0.018429948017001152, -0.006249511148780584, -0.01228277012705803, 0.06635521352291107, -0.04738114774227142, 0.00285482220351696, -0.008753080852329731, 0.006756975781172514, -0.020240478217601776, 0.011326667852699757, -0.042507752776145935, -0.007466218434274197, -0.007908272556960583, -0.01645629294216633, -0.028495190665125847, -0.020405642688274384, -0.006034571211785078, -0.0036455939989537, -0.008999030105769634, 0.02925224043428898, 0.02187786065042019, 0.039073605090379715, 0.053187403827905655, 0.008276011794805527, 0.025410961359739304, -0.04667387530207634, -0.032212741672992706, -0.02181342989206314, 0.006818866822868586, -0.006521803792566061, 0.009260065853595734, 0.012571382336318493, 0.033530093729496, -0.00021057469712104648, -0.014181156642735004, 0.04264795035123825, 0.04711024835705757, -0.047236744314432144, 0.05119152367115021, -0.008471079170703888, 0.029680438339710236, 0.05117585510015488, 0.017163896933197975, -0.005854128859937191, 0.05749807134270668, -0.041223570704460144, 0.0024049384519457817, 0.030005725100636482, 0.01330591645091772, 0.013366085477173328, -0.045467376708984375, 0.022382767871022224, -0.008585083298385143, 0.03527021035552025, 0.021519124507904053, -0.008299519307911396, 0.05298597738146782, -0.006147964857518673, 0.026870451867580414, -0.03591465577483177, -0.010939355008304119, 0.0028316264506429434, -0.002809451427310705, 0.03684600815176964, 0.014253273606300354, 0.002681012963876128, -0.042144328355789185, -0.049514200538396835, 0.06258555501699448, -0.024812543764710426, -0.022223075851798058, 0.006330734118819237, -0.044949453324079514, 0.014858325943350792, 0.02404886856675148, 0.007733298931270838, 0.014589758589863777, -0.0014055698411539197, 0.01838856190443039, 0.013429462909698486, -0.051033105701208115, 0.047021035104990005, 0.000717993825674057, 0.001004865625873208, 0.07898518443107605, -0.0033736792393028736, 0.005157689098268747, 0.018660075962543488, 0.018383312970399857, -0.025923017412424088, 0.03639880567789078, -0.010670789517462254, -0.0021709019783884287, 0.004045525100082159, 0.015104432590305805, 0.025963759049773216, 0.011521896347403526, -0.011989101767539978, 0.009219611994922161, 0.006125960499048233, 0.03211463987827301, -0.034703467041254044, -0.013375400565564632, -0.0349954217672348, 0.024926085025072098, 0.012403533793985844, 0.04576193541288376, -0.011273621581494808, -0.03330409154295921, -0.031451448798179626, -0.011823666281998158, 0.026539942249655724, 0.0038180495612323284, -0.04612955451011658, -0.006409180350601673, 0.03201296553015709, 0.011016499251127243, 0.0012853103689849377, 0.017936361953616142, -0.001197482692077756, 0.04490191489458084, -0.008867689408361912, -0.02271321788430214, 0.01842968352138996, 0.03209659457206726, 0.025465507060289383, 0.0018928913632407784, -0.018518930301070213, -0.018840720877051353, -0.05233334004878998, -0.046683795750141144, 0.002556829946115613, 0.029179934412240982, 0.0024152868427336216, 0.003960594069212675, 0.014845346100628376, 0.019555767998099327, -0.027827687561511993, 0.001043846132233739, -0.01630086451768875, -0.03513728827238083, -0.01173450518399477, 0.0736231580376625, -0.042482130229473114, 0.007337719202041626, 0.019945578649640083, -0.03397742658853531, 0.04561017453670502, 0.06244309991598129, -0.026246635243296623, 0.03149224445223808, 0.023943837732076645, -0.0015881868312135339, -0.03788380324840546, -0.010224776342511177, -0.0005307833198457956, -0.007671348284929991, -0.04109009727835655, 0.06577349454164505, -0.029133951291441917, -0.03280068561434746, 0.01918366178870201, 0.03218565136194229, 0.023952074348926544, 0.056521542370319366, 0.014412528835237026, -0.010662471875548363, 0.0007831373950466514, 0.09762484580278397, 0.0008283357601612806, 0.007347673177719116, 0.030060388147830963, 0.07110464572906494, 0.010676463134586811, 0.03368149325251579, 0.029321951791644096, -0.010704892687499523, 0.03905380889773369, 0.03463026136159897, -0.01500513032078743, 0.031937334686517715, -0.0027128250803798437, 0.004723639693111181, 0.022368215024471283, 0.03625710308551788, -0.01635707914829254, 0.06932160258293152, 0.007334721740335226, 0.013868688605725765, -0.015004855580627918, 0.024179616943001747, -0.009431302547454834, 0.04135039076209068, -0.017775192856788635, 0.05694283917546272, -0.05196608603000641, -0.007464057765901089, 0.03982078284025192, 0.02458016388118267, -0.005604049656540155, -0.018729062750935555, 0.007410181220620871, -0.006398826837539673, -0.0016075873281806707, -0.005502886138856411, 0.016975542530417442, 0.010088968090713024, 0.024042410776019096, 0.027120811864733696, -0.0138584915548563, -0.028493203222751617, -0.007584416773170233, -0.05288483947515488, -0.018459340557456017, -0.014250950887799263, -0.05528166517615318, 0.03144345432519913, 0.07554849237203598, -0.03330906853079796, -0.0020535066723823547, 0.0016772591043263674, -0.017396219074726105, -0.01917223632335663, 0.021139567717909813, 0.047310832887887955, -0.0005383977550081909, 0.040326077491045, -0.02935153990983963, 0.032528433948755264, 0.006234851665794849, 0.04454074054956436, -0.033055055886507034, -0.006049692165106535, -0.0031837241258472204, 0.005998574662953615, 0.044724706560373306, -0.029418446123600006, -0.01921941339969635, -0.023058930411934853, -0.027065757662057877, -0.07219637930393219, -0.005318349692970514, 0.02279331348836422, -0.007905413396656513, -0.0010851029073819518, -0.008479162119328976, 0.0424790121614933, 0.019558655098080635, -0.036082711070775986, 0.021743392571806908, -0.018894648179411888, -0.05971720442175865, 0.05557304993271828, 0.019409965723752975, -0.010188600979745388, -0.06715356558561325, 0.0720614492893219, 0.0408850722014904, -0.010017504915595055, -0.029616892337799072, -0.017989549785852432, -0.023264620453119278, 0.0021316821221262217, 0.015967106446623802, -0.05113143473863602, -0.04279319569468498, 0.03028619848191738, 0.031194696202874184, -0.07453043013811111, 0.026132386177778244, -0.05994945392012596, -0.0421074703335762, -0.028802242130041122, -0.026750393211841583, 0.06453887373209, 0.03246670961380005, 0.02799602411687374, -0.04076382890343666, -0.0033396552316844463, -0.0015108430525287986, 0.009046405553817749, 0.03296400606632233, -0.016800465062260628, -0.005414220970124006, 0.028529861941933632, -0.021431243047118187, -0.00197886792011559, 0.043147046118974686, -0.01679798774421215, -0.008542356081306934, 0.01420852355659008, 0.029339294880628586, -0.011516389437019825, 0.0142920957878232, -0.011565719731152058, 0.007689320016652346, 0.06435488909482956, -0.021812910214066505, -0.0043153646402060986, 0.015567767433822155, 0.020233115181326866, 0.01677103526890278, 0.006111144088208675, 0.009519183076918125, 0.002878140192478895, -0.04134327173233032, -0.054465144872665405, 0.018550200387835503, 0.01981884427368641, 0.046756867319345474, -0.016876954585313797, 0.08273464441299438, 0.016001056879758835, -0.025338267907500267, 0.03341779112815857, -0.06755199283361435, -0.0011864494299516082, 0.0572364516556263, -0.0068008736707270145, 0.03688357397913933, -0.029369862750172615, 0.020462362095713615, -0.04530242830514908, 0.0362030453979969, 0.01901368610560894, 0.015579938888549805, 0.04064588248729706, -0.028669703751802444, -0.0005576540133915842, -0.024395102635025978, -0.019064052030444145, -0.020304786041378975, -0.018598593771457672, -0.007517593447118998, -0.011483128182590008, -0.057600442320108414, -0.0651148110628128, 0.019760778173804283, 0.01575789600610733, 0.02080668695271015, -0.02075772173702717, 0.06564965844154358, 0.05775972828269005, 0.022537263110280037, 0.06698647141456604, -0.02954530343413353, -0.027372092008590698, -0.05426354706287384, 0.05095763877034187, 0.03301112726330757, 0.00111692538484931, -0.011725577525794506, 0.002609239425510168, -0.029313692823052406, 0.0069991666823625565, 0.007466611452400684, -0.02626827172935009, -0.03867458552122116, 0.006787078455090523, -0.0176345556974411, -0.016415778547525406, -0.04573359712958336, -0.011592177674174309, -0.008955583907663822, 0.04913774132728577, 0.030483588576316833, -0.03454246744513512, 0.013673480600118637, -0.024561651051044464, 0.02510947361588478, 0.0450638085603714, 0.017609164118766785, -0.040385231375694275, -0.008987442590296268, 0.016272976994514465, -0.008887285366654396, -0.017366573214530945, 0.041523393243551254, -0.0018082638271152973, 0.025053709745407104, -0.07637899369001389, 0.027000688016414642, 0.018224665895104408, 0.0033217647578567266, -0.0140226474031806, -0.00719369575381279, 0.03978142887353897, 0.005411876365542412, 0.04964294284582138, -0.012683533132076263, -0.0233712587505579, 0.021420875564217567, -0.06427167356014252, 0.010089978575706482, -0.011671126820147038, 0.026504265144467354, 0.006645383778959513, -0.01150559913367033, -0.029477883130311966, 0.045939065515995026, 0.00578358955681324, 0.011491511948406696, 0.0004454685258679092, 0.008766062557697296, -0.08402495831251144, -0.019606556743383408, 0.049079883843660355, -0.039694894105196, -0.005911731161177158, 0.004341523628681898, 0.0447024442255497, -0.035966262221336365, -0.004569416865706444, 0.033384766429662704, -0.04476867616176605, 0.012077770195901394, -0.038074664771556854, -0.0014377670595422387, -0.0184046421200037, -0.0353558249771595, 0.030805369839072227, -0.02112901583313942, 0.04814126342535019, 0.006255947984755039, -0.016648421064019203, -0.04103764146566391, -0.06217558681964874, -0.017440099269151688, 0.03116907924413681, -0.03400972858071327, -0.0032195134554058313, -0.01835792139172554, -0.026273300871253014, -0.01590920425951481, -0.030689578503370285, -0.01941392756998539, 0.023315219208598137, -0.029043417423963547, 0.014423889108002186, -0.0075500658713281155, 0.0005846904241479933, 0.0022621615789830685, 0.011571795679628849, -0.0038124334532767534, -0.009655597619712353, 0.022037643939256668, -0.03880850225687027, -0.04775720834732056, -0.03347870334982872, 0.004586466122418642, -0.008427802473306656, -0.03318455070257187, -0.018561460077762604, -0.00018336258654017001, 0.01318329107016325, 0.03524412587285042, 0.020156506448984146, 0.027627933770418167, -0.009300325997173786, -0.03768645226955414, 0.05188877508044243, 0.061015766113996506, -0.049488309770822525, -0.05274644494056702, 0.018584972247481346, -0.008487886749207973, 0.00995390024036169, -0.008724555373191833, -0.0005520302220247686, -0.06940022855997086, -0.05783245339989662, -0.022731583565473557, -0.021623484790325165, -0.01819070801138878, -0.0361512266099453, -0.025256073102355003, -0.02323552593588829, 0.06594821810722351, 0.00546395406126976, -0.024042857810854912, -0.0054222652688622475, -0.03694452345371246, -0.006588554475456476, 0.009034181945025921, -0.03677191212773323, -0.002805091207846999, -0.02824394777417183, -0.02407504990696907, 0.06471127271652222, 0.015404907986521721, 0.025869721546769142, 0.002330230316147208, 0.014921585097908974, 0.004219191614538431, -0.018344122916460037, -0.05225808918476105, -0.07019923627376556, 0.003651691833510995, 0.00884985737502575, -0.01062283106148243, 0.029875094071030617, -0.0679745152592659, 0.03475804626941681, -0.05910438671708107, -0.0336647666990757, -0.037812359631061554, -0.011189558543264866, 0.030648209154605865, -0.009795051999390125, 0.049195297062397, -0.03244064003229141, 0.01725037209689617, -0.004326373804360628, 0.05237109586596489, 0.05835806950926781, 0.01334655936807394, -0.014725986868143082, -0.05092989280819893, -0.055060092359781265, -0.047615814954042435, 0.029333876445889473, -0.01348061952739954, -0.005619886796921492, -0.016672376543283463, -0.018558789044618607, 0.09243927150964737, 0.007891894318163395, 0.05088391900062561, 0.06532710045576096, -0.010530677624046803, -0.0017761364579200745, -0.04975025728344917, -0.01348355133086443, 0.0534498356282711, -0.03563221916556358, -0.04311065748333931, -0.003364398842677474, -0.03879686817526817, 0.032606154680252075, -0.032706134021282196, -0.0530100092291832, -0.060698315501213074, 0.011325858533382416, 0.06840100139379501, -0.027326319366693497, 0.0668581873178482, 0.018801817670464516, -0.04703884944319725, -0.028829138725996017, 0.047813184559345245, 0.03538384661078453, 0.012152525596320629, 0.06304465979337692, -0.0028604771941900253, -0.007897309958934784, 0.02431945875287056, 0.01817225106060505, 0.012778843753039837, -0.02037005126476288, 0.03855430707335472, 0.01742827519774437, -0.05433649197220802, 0.01514213252812624, 0.06484769284725189, -0.06604377180337906, -0.05974166840314865, 0.000770616577938199, 0.019231460988521576, -0.004077264107763767, -0.04552311822772026, 0.019870126619935036, 0.011177987791597843, 0.004953186027705669, 0.017382577061653137, 0.032463062554597855, 0.017274368554353714, 0.025009894743561745, 0.022107483819127083, 0.042264506220817566, -0.025883043184876442, 0.024013197049498558, 0.03518179431557655, -0.024710651487112045, -0.009930051863193512, -0.02383475936949253, -0.026636673137545586, -0.005266929976642132, -0.009822559542953968, 0.060728520154953, -0.01780305989086628, 0.033233024179935455, 0.03797287121415138, -0.03320327773690224, 0.041014451533555984, -0.013514826074242592, 0.014320699498057365, 0.019406873732805252, -0.014614671468734741, -0.06130465492606163, -0.026777589693665504, 0.007868343032896519, -0.00907172728329897, 0.012409713119268417, -0.039595410227775574, -0.000538373424205929, 0.054212577641010284, 0.008806360885500908, -0.016202617436647415, -0.06010708957910538, -0.05902056768536568, -0.04776706546545029, -0.02663574554026127, -0.04419244825839996, -0.010435954667627811, -0.012712868861854076, 0.00967263150960207, -0.03563995286822319, -0.045872241258621216, -0.0072570196352899075, 0.03255883976817131, -0.007630744017660618, 0.023296121507883072, -0.023944824934005737, 0.006683242041617632, -0.05433233827352524, -0.04148408770561218, -0.03809250518679619, 0.015199392102658749, 0.0003297237562946975, 0.018961841240525246, 0.006646192166954279, 0.020609239116311073, -0.007792404852807522, 0.016560163348913193, -0.019806519150733948, 0.015119537711143494, 0.015223812311887741, -0.012674761936068535, -0.0035855621099472046, 0.011726247146725655, -0.005352078936994076, 0.021929705515503883, 0.040835242718458176, -0.050723232328891754, 0.013542159460484982, 0.016631310805678368, -0.02818952687084675, -0.045036010444164276, -0.013426797464489937, 0.014719338156282902, -0.026809576898813248, -0.06827431917190552, -0.0028945612721145153, -0.009255189448595047, -0.05585075914859772, 0.004930849652737379, -0.025862012058496475, 0.024432364851236343, 0.01109128724783659, -0.011993058025836945, -0.02221544273197651, 0.029865717515349388, -0.013962597586214542, 0.01830892078578472, 0.009792842902243137, -0.00353436591103673, 0.025176268070936203, -0.011142188683152199, 0.023133231326937675, 0.0022876705043017864, 0.05095139145851135, -0.03390654921531677, 0.02870504930615425, 0.00531630078330636, -0.015716150403022766, 0.0509059764444828, -0.02921179309487343, -0.03647821024060249, -0.07580104470252991, -0.019994042813777924, 0.006121084094047546, 0.032556843012571335, 0.028606032952666283, -0.0009103550692088902, 0.028026504442095757, -0.02269023470580578, -0.05683005973696709, -0.011328436434268951, -0.037442851811647415, -0.05961174890398979, 0.036791298538446426, -0.010921335779130459, -0.024167479947209358, -0.00846019759774208, -0.02347811684012413, 0.008889266289770603, -0.01626473106443882, -0.012706265784800053, -0.017191728577017784, 0.033474236726760864, 0.027289489284157753, 0.027920590713620186, -0.0028571633156389, -0.022715890780091286, 0.01680324412882328, 0.016053149476647377, -0.02206571400165558, -0.02068103849887848, 0.018885519355535507, 0.026622001081705093, -0.0013380564050748944, -0.024834036827087402, -0.026781726628541946, 0.0019438975723460317, 0.0052010370418429375, -0.0140561293810606, -0.014254650101065636, 0.03450700640678406, 0.0068984501995146275, 0.018339447677135468, -0.023891815915703773, -0.00770585099235177, -0.029518181458115578, 0.02613680809736252, -0.016218725591897964, -0.005732639692723751, -0.07046131789684296, 0.02269580028951168, 0.03692921623587608, -0.01533767394721508, 0.012174168601632118, 0.04718739911913872, 0.027690136805176735, 0.013581108301877975, 0.019386613741517067, -0.04328641667962074, 0.0028581980150192976, 0.039462119340896606, 0.019833682104945183, -0.003457738785073161, 0.04518755525350571, 0.04971497505903244, 0.009816336445510387, 0.005369012709707022, 0.026021497324109077, 0.028190484270453453, 0.004075611010193825, 0.007340467534959316, -0.041036125272512436, 0.012436697259545326, 0.02385689876973629, -0.006917955819517374, -0.007530213799327612, -0.017810432240366936, -0.0036140591837465763, -0.0399785041809082, -0.041888050734996796, 0.04306451976299286, -0.01865236647427082, 0.008378604426980019, -0.018326107412576675, -0.019849760457873344, 0.0020397179760038853, 0.01213900838047266, 0.054872363805770874, 0.028183594346046448, 0.024755612015724182, 0.03801894187927246, -0.004781884606927633, 0.06167939305305481, 0.037148766219615936, -0.008939315564930439, -0.029884282499551773, 0.013585957698523998, 0.009084157645702362, 0.02448362298309803, -0.021665314212441444, -0.006843967363238335, -0.053287167102098465, 0.02703491598367691, -0.029027530923485756, -0.014440222643315792, 0.03963915631175041, -0.025796422734856606, 0.034271515905857086, -0.031777236610651016, 0.024781882762908936, -0.03020794503390789, -0.01942342147231102, 0.022175034508109093, -0.004584019538015127, -0.011971953324973583, 0.04969612509012222, -0.014647815376520157, 0.06112542003393173, 0.01760747656226158, 0.022937273606657982, -0.019601421430706978, 0.020030466839671135, 0.045796655118465424, -0.03443654999136925, -0.002357248682528734, 0.014730144292116165, -0.0024475001264363527, -0.04798533767461777, -0.005410281475633383, -0.004209806676954031, 0.02725266106426716, -0.02021203748881817, -0.020932627841830254, 0.011157895438373089, 0.0282904040068388, 0.012836378999054432, -0.03649921342730522, -0.004932833835482597, 0.03627178445458412, -0.01974220760166645, 0.02170761302113533, -0.006578929256647825, 0.03338635712862015, 0.00499314907938242, -0.018091365694999695, -0.046966567635536194, -0.04377797618508339, -0.002985097235068679, -0.03769919276237488, 0.07825213670730591, 0.004866845905780792, -0.016604918986558914, -0.039138104766607285, -0.04364371299743652, -0.011746321804821491, 0.016263693571090698, -0.04145083948969841, -0.04380767419934273, 0.0366441011428833, 0.05461924523115158, 0.022011946886777878, 0.010264393873512745, -0.018514959141612053, 0.013487395830452442, 0.02241268940269947, 0.055551037192344666, 0.002960760612040758, -0.0002529627236071974, 0.027413172647356987, -0.018171345815062523, 0.014235291630029678, -0.01578781008720398, 0.03465118259191513, -0.01324124913662672, -0.006439301185309887, -0.019749000668525696, 0.0219806507229805, -0.02308274619281292, -0.08542204648256302, 0.017921842634677887, 0.004887914750725031, 0.006504683755338192, -0.030713973566889763, -0.0747600644826889, -0.011658446863293648, -0.04399043694138527, 0.015192121267318726, -0.04027169942855835, -0.0023003367241472006, 0.0038832651916891336, 0.03211570903658867, 0.003723454661667347, -0.09302723407745361, 0.15280088782310486, 0.05666741356253624, 0.0368582047522068, -0.011887481436133385, 0.027952419593930244, 0.06159739941358566, 0.026543499901890755, -0.03386370465159416, -0.0025259116664528847, -0.03891720995306969, 0.0322420559823513, 0.007847525179386139, 0.019208714365959167, -0.02355239726603031, 0.009142720140516758, 0.027202701196074486, -0.035255882889032364, 0.019706057384610176, 0.025924211367964745, -0.033825937658548355, -0.050281036645174026, 0.026732467114925385, -0.01596401073038578, 0.011535934172570705, -0.0024231094866991043, 0.025073157623410225, 0.02004859410226345, -0.04766128957271576, -0.012586339376866817, -0.023133303970098495, 0.007795287296175957, -0.002379929181188345, 0.049800436943769455, 0.005737487226724625, -0.002580952364951372, 0.020838959142565727, 0.010329588316380978, -0.013003570958971977, -0.005251148249953985, 0.01695726066827774, -0.0015215027378872037, -0.012471099384129047, 0.06453222036361694, -0.003915097564458847, 0.004283984657377005, 0.030907580628991127, -0.04891261085867882, 0.016043100506067276, -0.0035828216932713985, -0.032932646572589874, 0.062440741807222366, -0.03645915165543556, -0.002270214958116412, -0.047789014875888824, -0.034397877752780914, 0.016610365360975266, 0.025315353646874428, -0.016844000667333603, -0.009926911443471909, 0.011475842446088791, 0.004663944244384766, -0.02129792794585228, 0.0007873948197811842, 0.031208520755171776, -0.03130543977022171, 0.02007109299302101, 0.024630345404148102, 0.00753713957965374, -0.0116811478510499, -0.02703819051384926, -0.01777661219239235, -0.03134481981396675, -0.02837272547185421, -0.010378058068454266, 0.025061121210455894, 0.02135349065065384, -0.006680591031908989, 0.0405854657292366, 0.03913906216621399, -0.02888123318552971, -0.007590272463858128, -0.016880227252840996, 0.005490555893629789, -0.007003467995673418, 0.039266958832740784, 0.04240408539772034, -0.024432163685560226, -0.04085814207792282, -0.015743691474199295, 0.027982959523797035, 0.03107556700706482, 0.030876092612743378, -0.0020550384651869535, -0.020074760541319847, -0.022168602794408798 ]
While the holiday season is one of the most wonderful times of the year, our society has ruined it with the over-glorified tradition of gingerbread. Gingerbread is a tradition during the holidays, not because it tastes good or looks amazing, but only because we have been engaging in the custom year after year and nobody has questioned the true value of it. It is so tasteless and childish that it does not deserve to be called a holiday staple. Gingerbread does not taste remotely of ginger; in fact, it doesn't taste like anything at allโ€”with the exception of cardboard. No matter how freshly-baked your loaf is, the flavor is still as if it were left on the counter for over a year or as if it never entered an oven in the rest place. Some people attempt to compensate for this dry tastelessness by adding far too much ginger and other spices. is creates an overly potent and tongue-coating assault that no one deserves to experience. While gingerbread is incredibly bland on its own, the addition of a random melange of spices only makes it a thousand times worse. As an elementary school activity, making gingerbread men and houses was admittedly fun. But older individuals still seem to insist on partaking in these child- hood activities even though the fun has worn off. What's the point of spending time decorating some cold, hard slabs of gingerbread with globs of sticky frosting and squished gumdrops when there are much better things to do that won't bore you to near-death? For example, you could adorn some tree ornaments for a classier outlet of creativity, cozy up by a nice fire or do literally anything else. The worth of gingerbread has been over-exaggerated by enthusiastic individuals who have yet to see that the baked good lacks flavor, appeal to interest, and overall value. Students are in school from August to December sitting in hard wooden desks, so why punish themselves with cookies made of the same material? There are so many other recipes, flavors and tastes out there that would do a wonderful job replacing gingerbread as the classic holiday cookie. The unruly reign of gingerbread must end. In no way should such a pathetic excuse for food be part of such a wonderful time as the holiday season.
[ 0.0008495657239109278, 0.006470170803368092, 0.010256682522594929, -0.0033785956911742687, -0.030907638370990753, -0.011734671890735626, 0.011978046968579292, 0.028944622725248337, -0.0015793100465089083, 0.013217578642070293, 0.05175366252660751, -0.007062401156872511, 0.02397972159087658, -0.02891508862376213, -0.0010267922189086676, -0.035238802433013916, -0.030587688088417053, -0.03994973003864288, -0.01959436759352684, 0.008418031968176365, -0.00321572064422071, 0.021766405552625656, -0.03698977455496788, -0.04040522500872612, -0.01577797718346119, 0.030594320967793465, 0.021842116490006447, -0.01820278726518154, 0.06216522678732872, 0.06552797555923462, -0.007995828986167908, -0.01575581356883049, 0.03954446688294411, -0.06400797516107559, -0.0006332946359179914, -0.01337683666497469, 0.026876725256443024, -0.02983393706381321, 0.006342872511595488, -0.021795419976115227, 0.0023361349012702703, -0.03608393296599388, 0.0364932082593441, -0.016901176422834396, -0.034235648810863495, 0.007453884929418564, 0.00244180578738451, -0.024457059800624847, 0.025245048105716705, -0.014194776304066181, 0.00755313178524375, -0.00030658216564916074, 0.025001509115099907, 0.028856568038463593, 0.03051457554101944, 0.013246316462755203, 0.004155046306550503, -0.004598874598741531, -0.014560737647116184, 0.030709045007824898, 0.02466127648949623, 0.007948881946504116, 0.014196251519024372, -0.0710475817322731, 0.02931957319378853, 0.007593368645757437, -0.013155077584087849, -0.0019120536744594574, 0.011917339637875557, -0.026487376540899277, -0.0029637760017067194, 0.009603245183825493, -0.014816767536103725, -0.022482912987470627, -0.01898592710494995, -0.001878894865512848, -0.0027477641124278307, 0.02240086905658245, -0.0025244136340916157, 0.0004502416413743049, 0.024476969614624977, 0.05446416512131691, 0.03614082559943199, 0.011845031753182411, -0.03810419142246246, -0.03203596919775009, 0.023063402622938156, 0.02784118242561817, 0.004144509322941303, 0.012211221270263195, -0.01621394231915474, 0.04785798117518425, -0.004535195883363485, -0.010864250361919403, 0.027690669521689415, 0.05017828568816185, -0.04753781855106354, 0.03537581115961075, 0.02623238041996956, -0.048866719007492065, 0.055310916155576706, 0.009076862595975399, 0.003395858919247985, 0.0332767553627491, -0.042720500379800797, -0.006073666736483574, 0.023971235379576683, -0.0011907657608389854, -0.03685064986348152, 0.01565631292760372, -0.02246851474046707, -0.016995452344417572, -0.011539359577000141, -0.007818808779120445, -0.008504129946231842, 0.017939254641532898, 0.00456190574914217, 0.043568722903728485, -0.052703410387039185, 0.010382927022874355, 0.024126533418893814, -0.012658463791012764, 0.032598141580820084, -0.035618625581264496, -0.006315149366855621, -0.01612451672554016, 0.0034681798424571753, 0.036333441734313965, -0.0065873595885932446, -0.01944177970290184, 0.014060423709452152, -0.013407740741968155, 0.01864231377840042, 0.02996562421321869, -0.011459124274551868, 0.015254794619977474, -0.004860170651227236, 0.029029089957475662, 0.02272154949605465, -0.05209902301430702, 0.024791507050395012, 0.006707052234560251, -0.0055578965693712234, 0.08717913925647736, 0.015099085867404938, -0.006048542447388172, -0.0004292826051823795, 0.00813981331884861, -0.023614177480340004, 0.020801616832613945, 0.002242036396637559, 0.022303402423858643, -0.003492967924103141, -0.009247072041034698, -0.01300038956105709, -0.017188673838973045, 0.02848084829747677, -0.019514132291078568, 0.005729152821004391, 0.0026329676620662212, -0.02137148194015026, 0.03456670790910721, -0.04055656120181084, 0.06526389718055725, -0.014332540333271027, 0.04008025303483009, -0.039166565984487534, -0.01332978717982769, -0.0295272134244442, -0.026657316833734512, 0.029033364728093147, -0.0006832602084614336, -0.03642929345369339, 0.003481346182525158, 0.0103794289752841, 0.04714646190404892, 0.048866335302591324, 0.005080826580524445, 0.05181710794568062, 0.058062225580215454, -0.0718156099319458, 0.012222888879477978, 0.02180572785437107, 0.06691434979438782, 0.0007578614167869091, -0.02634953334927559, -0.0272931307554245, -0.028949053958058357, -0.03311442583799362, -0.03515513986349106, 0.006148121785372496, 0.03355914354324341, -0.013606575317680836, 0.0049653081223368645, 0.02781287021934986, -0.008373472839593887, -0.029163360595703125, 0.00014684023335576057, -0.009755889885127544, -0.04319828376173973, -0.062379978597164154, 0.0768212303519249, -0.04709286615252495, 0.02155565842986107, 0.0053720735013484955, -0.03200610354542732, 0.025002477690577507, 0.07853785157203674, -0.07319153845310211, 0.01606675423681736, -0.007818153128027916, 0.006616043392568827, 0.005193378310650587, 0.010092324577271938, -0.028300324454903603, -0.010638232342898846, -0.037436265498399734, 0.02436627447605133, 0.012847891077399254, -0.007942363619804382, 0.002673022449016571, -0.00018937929417006671, 0.03784002736210823, 0.00448068929836154, 0.0020403910893946886, -0.0032772019039839506, 0.011868300847709179, 0.04256463795900345, -0.0284754429012537, 0.0020403608214110136, -0.026898618787527084, 0.039638761430978775, 0.033786874264478683, 0.03534088656306267, 0.014561308547854424, 0.004895854741334915, 0.04823523387312889, 0.018123596906661987, -0.0019545182585716248, 0.022561868652701378, 0.01891428418457508, 0.015602503903210163, 0.029163679108023643, 0.030339887365698814, -0.038106102496385574, 0.04863400757312775, 0.002082746010273695, 0.04140700399875641, -0.007730366196483374, 0.03673113137483597, -0.01398008968681097, 0.011890336871147156, 0.05493048578500748, 0.04751770570874214, -0.016494056209921837, -0.005260144360363483, 0.016359340399503708, 0.04901348799467087, -0.022969242185354233, -0.02198723703622818, 0.0037644952535629272, 0.035190023481845856, 0.001508348505012691, -0.007614200934767723, 0.04530155286192894, -0.00589101854711771, -0.008603552356362343, 0.028532160446047783, -0.03871122747659683, -0.03738969936966896, -0.030549317598342896, -0.05531907454133034, -0.04473783075809479, -0.022752758115530014, -0.027942469343543053, 0.03212237358093262, 0.0432036891579628, -0.03266175836324692, 0.02873510681092739, -0.0033541463781148195, -0.017782585695385933, -0.003218772355467081, 0.01978588104248047, 0.045970723032951355, 0.04049019142985344, 0.03882794454693794, -0.013661817647516727, 0.042991504073143005, 0.015149296261370182, 0.004790154285728931, -0.030226754024624825, -0.026241589337587357, 0.00680034002289176, 0.00024413930077571422, 0.03563500940799713, 0.018845079466700554, -0.01182012353092432, -0.025260919705033302, -0.008963708765804768, -0.07266594469547272, 0.02122105471789837, 0.0006724786944687366, 0.0068213604390621185, 0.0017313221469521523, -0.0537126325070858, 0.01339798979461193, 0.04547378420829773, -0.030838867649435997, 0.053923629224300385, 0.02122367173433304, -0.016874024644494057, 0.03877095505595207, -0.004148661624640226, 0.004823783412575722, -0.04859771952033043, 0.01510618906468153, 0.042309436947107315, 0.021453285589814186, -0.03246024250984192, -0.01593833416700363, -0.014190333895385265, 0.01767561584711075, 0.02345723658800125, -0.032222993671894073, -0.02974078617990017, 0.03856240212917328, -0.003315015695989132, -0.0747653990983963, 0.032402992248535156, -0.023342402651906013, -0.010271581821143627, -0.017795700579881668, -0.038187284022569656, 0.012471163645386696, 0.047644805163145065, 0.020330017432570457, 0.004081404767930508, -0.008540558628737926, 0.021772071719169617, 0.010072998702526093, 0.05401097983121872, -0.01798672415316105, 0.01618071459233761, 0.048721641302108765, -0.000584262830670923, 0.022406576201319695, 0.037855423986911774, -0.01006792951375246, 0.008438922464847565, 0.02686481922864914, 0.030338022857904434, 0.013173219747841358, 0.03876584395766258, 0.005450602155178785, 0.032787226140499115, 0.047469306737184525, -0.04173540323972702, 0.014473304152488708, 0.040823813527822495, 0.02115965262055397, 0.009661315940320492, -0.015133562497794628, 0.005174306221306324, -0.011179259046912193, -0.056727200746536255, -0.035468026995658875, 0.03700992837548256, 0.005192091688513756, 0.05927315726876259, -0.06427167356014252, 0.07160020619630814, -0.009750794619321823, -0.030813908204436302, 0.06235802173614502, -0.05780307203531265, 0.0013213439378887415, 0.017748644575476646, -0.026864996179938316, 0.05231333151459694, -0.026647545397281647, 0.0008815291803330183, -0.020312875509262085, 0.02653624303638935, 0.021680476143956184, -0.0060500879772007465, 0.033970195800065994, -0.025530997663736343, -0.008910669945180416, -0.005528195761144161, -0.01713777892291546, -0.021115519106388092, -0.017566528171300888, 0.017451662570238113, 0.00819137692451477, -0.029383018612861633, -0.05819506198167801, 0.023949017748236656, 0.017040476202964783, 0.056570496410131454, 0.022245677188038826, 0.020415011793375015, -0.038778167217969894, 0.019452327862381935, 0.013655848801136017, -0.003320020390674472, 0.0073928870260715485, -0.058783404529094696, 0.04071978107094765, 0.011385184712707996, -0.0409705676138401, -0.00930214487016201, -0.014995677396655083, -0.03166940063238144, 0.036170631647109985, 0.016410142183303833, -0.04685639962553978, -0.028465723618865013, 0.022167367860674858, 0.030473509803414345, 0.027202920988202095, -0.015249148942530155, 0.014948847703635693, -0.014683823101222515, 0.027656609192490578, 0.021132929250597954, -0.05791875720024109, -0.013333866372704506, -0.03274732455611229, 0.038285210728645325, 0.04908666014671326, 0.016535436734557152, -0.04871096462011337, -0.014578381553292274, -0.03936551511287689, -0.049542952328920364, 0.005634058732539415, 0.01700528711080551, -0.021253781393170357, 0.03982914611697197, -0.04402455314993858, 0.012004981748759747, 0.0125453881919384, 0.013516144827008247, -0.02196044847369194, 0.02320197783410549, 0.028231624513864517, -0.016869409009814262, 0.07036187499761581, 0.000896719575393945, -0.010594838298857212, 0.01035094354301691, -0.047543760389089584, 0.005402624141424894, 0.02516273967921734, -0.014159179292619228, 0.012775929644703865, -0.00014844110410194844, 0.01899293251335621, 0.03086823597550392, -0.02014133520424366, 0.016482334583997726, -0.013847059570252895, 0.006473591551184654, -0.04836117476224899, -0.046059876680374146, 0.0589853934943676, -0.016706369817256927, -0.03319660574197769, -0.0037813058588653803, 0.04963008686900139, -0.009525549598038197, -0.01174553669989109, 0.035203639417886734, -0.0285031795501709, 0.04275022819638252, -0.026701899245381355, 0.008833887055516243, -0.025096701458096504, -0.03671436011791229, 0.02473863586783409, -0.04677469655871391, 0.004262682516127825, 0.0012368593597784638, -0.01146029308438301, -0.030461883172392845, -0.046515025198459625, -0.021693242713809013, 0.03628934174776077, -0.012090696953237057, 0.0020096711814403534, -0.009700905531644821, -0.0178153645247221, -0.01495582889765501, -0.004674113355576992, 0.008264673873782158, 0.0037579836789518595, -0.003885706653818488, -0.030122525990009308, 0.005346781574189663, 0.05426191911101341, -0.0018763174302875996, -0.033174529671669006, -0.050954125821590424, -0.029390448704361916, 0.03352430835366249, -0.003439167281612754, -0.04505212604999542, 0.027171459048986435, -0.0025179150979965925, -0.037072569131851196, -0.021130230277776718, 0.014880764298141003, -0.025594959035515785, 0.024753939360380173, 0.043202780187129974, -0.006662448868155479, 0.0030990447849035263, 0.00027914997190237045, -0.055509407073259354, 0.023119010031223297, 0.01060037687420845, -0.06979349255561829, -0.058929234743118286, 0.03509583696722984, -0.03185606375336647, 0.034151047468185425, 0.0013273435179144144, -0.03413737565279007, -0.08264169096946716, -0.05102180317044258, -0.005682393442839384, -0.01545310951769352, -0.03936313837766647, -0.04849711060523987, -0.030697051435709, -0.021373305469751358, 0.029335254803299904, -0.02188855968415737, -0.007105432916432619, -0.01593671180307865, -0.07411576807498932, -0.016405291855335236, -0.01238726545125246, -0.03294071555137634, -0.025693759322166443, -0.016959298402071, -0.019798895344138145, 0.08588360995054245, -0.00493131298571825, 0.01721102185547352, 0.003220748156309128, 0.010108974762260914, 0.01785930059850216, -0.0020668532233685255, -0.051975008100271225, -0.01474573090672493, 0.00986024085432291, -0.0017871481832116842, 0.004733778536319733, 0.030533667653799057, -0.02463684044778347, 0.07101801782846451, -0.05941058322787285, 0.010018553584814072, -0.03948859125375748, -0.004573699086904526, -0.00898655317723751, -0.013923178426921368, 0.03560035675764084, -0.016514666378498077, -0.00833913590759039, -0.048453204333782196, 0.05794626101851463, 0.06778951734304428, -0.0026810350827872753, -0.04930174723267555, -0.02308477647602558, -0.04964388161897659, -0.04918666183948517, 0.011379704810678959, -0.04044131189584732, 0.01187602337449789, -0.05987691879272461, -0.035291630774736404, 0.03934715688228607, 0.014302484691143036, 0.019727662205696106, 0.05747002735733986, -0.023646727204322815, -0.01170339435338974, -0.032042570412158966, 0.02633216790854931, 0.05074995011091232, -0.039572302252054214, 0.006525937467813492, -0.038844719529151917, -0.040896207094192505, -0.02925448678433895, -0.038257550448179245, -0.028436914086341858, -0.048873040825128555, -0.0005517567042261362, 0.05575695261359215, -0.052840180695056915, 0.013541392050683498, -0.027299508452415466, -0.05190258100628853, -0.041991978883743286, 0.035746872425079346, 0.005951286293566227, 0.02070900797843933, 0.04021593928337097, 0.0017327239038422704, -0.02375604771077633, 0.013450034894049168, 0.023299461230635643, -0.005587803665548563, -0.016233809292316437, 0.03323376178741455, 0.00005096061067888513, -0.04941131919622421, 0.030888214707374573, 0.05999269336462021, -0.07437054067850113, -0.030796140432357788, 0.011909605003893375, -0.022032173350453377, 0.024150751531124115, -0.03270694613456726, -0.013670951128005981, -0.02755030244588852, 0.012641356326639652, 0.027774261310696602, 0.048939261585474014, -0.009636567905545235, 0.023333724588155746, 0.005996552295982838, 0.04461292549967766, -0.04071912169456482, -0.00562168937176466, 0.010793601162731647, -0.03431352227926254, -0.019560856744647026, -0.021748872473835945, -0.005808250978589058, 0.017184516414999962, -0.0026048338040709496, 0.03886287286877632, 0.013937773182988167, 0.01471609529107809, 0.04711979255080223, -0.023857038468122482, 0.03968646749854088, -0.02058129757642746, -0.02032928355038166, -0.006640314590185881, -0.04463806748390198, -0.05625133216381073, -0.07587527483701706, -0.02965637296438217, -0.009233498014509678, 0.018478451296687126, -0.04696696996688843, -0.012391723692417145, 0.009479881264269352, 0.014342330396175385, 0.018402015790343285, -0.019597269594669342, -0.06112577021121979, -0.06063591316342354, -0.06982181966304779, -0.0316898450255394, -0.031407833099365234, 0.001245924737304449, 0.022006770595908165, 0.017994673922657967, -0.02628771960735321, -0.03225287050008774, 0.01857438124716282, -0.04055537283420563, -0.010325105860829353, -0.03611487150192261, 0.046928271651268005, -0.036625977605581284, -0.03428281843662262, -0.039153486490249634, 0.018001580610871315, -0.03979993611574173, -0.0056067174300551414, -0.030587444081902504, 0.003994589205831289, -0.01694207265973091, 0.027616329491138458, 0.01686558686196804, 0.022100329399108887, -0.0020805567037314177, -0.03398508206009865, 0.0024712872691452503, 0.06249397248029709, 0.023692021146416664, 0.009035100229084492, 0.013004458509385586, -0.02434091456234455, 0.02671620063483715, -0.011659861542284489, -0.03649463132023811, -0.013740901835262775, 0.006408343091607094, 0.004102941602468491, 0.018044907599687576, -0.03366478905081749, 0.0006977406446821988, -0.008771026507019997, -0.051492784172296524, 0.04236728698015213, -0.05087893828749657, 0.03191153705120087, 0.021237626671791077, -0.005440752487629652, -0.008574483916163445, 0.046459171921014786, -0.004232505802065134, 0.04123874008655548, -0.0031484898645430803, 0.03878307342529297, -0.016951560974121094, 0.019102944061160088, 0.004593016114085913, 0.036045100539922714, 0.03167520463466644, -0.0022926751989871264, -0.009952551685273647, -0.011419936083257198, -0.00007009336695773527, 0.041530534625053406, -0.03004716895520687, 0.019034288823604584, -0.041439238935709, 0.023058975115418434, 0.009750804863870144, 0.05830491706728935, 0.004457805305719376, -0.029825014993548393, 0.0232712309807539, -0.03575240820646286, -0.034348264336586, -0.0010539585491642356, -0.06275779008865356, -0.012573866173624992, 0.018395762890577316, -0.010220316238701344, -0.011376767419278622, -0.015835296362638474, -0.005351592320948839, 0.020978491753339767, -0.027164209634065628, 0.0035505343694239855, 0.01118328794836998, 0.02491629868745804, -0.026880841702222824, 0.054866477847099304, -0.006685881409794092, -0.00819696206599474, 0.00659180898219347, 0.0423857681453228, -0.034817710518836975, -0.03840792179107666, 0.028455911204218864, 0.03389495983719826, 0.027955245226621628, 0.005952933337539434, 0.010409441776573658, 0.013956399634480476, 0.0019616279751062393, 0.051747485995292664, 0.0020817830227315426, 0.002154912566766143, 0.01455023605376482, 0.025066306814551353, -0.008632599376142025, -0.02184591442346573, -0.042882636189460754, 0.028882119804620743, 0.0017939516110345721, -0.03177308663725853, -0.05640426650643349, 0.07645033299922943, 0.03041207790374756, 0.0038303283508867025, 0.05459672212600708, 0.024994898587465286, 0.06802701950073242, -0.03266426548361778, 0.027935365214943886, -0.017455030232667923, 0.05839976295828819, 0.0063367863185703754, 0.0463595949113369, 0.009060093201696873, 0.02058384381234646, 0.045763906091451645, 5.46327328265761e-7, 0.018642431125044823, 0.03421367332339287, 0.02997923269867897, -0.030266687273979187, 0.01472265925258398, -0.011669005267322063, 0.00941197294741869, 0.01488681510090828, -0.01616661809384823, -0.021184392273426056, -0.02345176227390766, 0.008215678855776787, -0.01990559883415699, -0.028884157538414, 0.031404025852680206, -0.04032347351312637, 0.00964073371142149, 0.019306916743516922, 0.0415412038564682, 0.009587153792381287, 0.03282465040683746, -0.0069081149995327, 0.04362466186285019, 0.0661119818687439, 0.0358729250729084, -0.00867022480815649, 0.05025540292263031, -0.01833796687424183, -0.0009031175286509097, -0.014299300499260426, 0.02437492087483406, 0.022894537076354027, -0.002727508544921875, 0.005811783019453287, -0.02134629152715206, -0.026740774512290955, 0.0546153262257576, -0.03160962089896202, -0.012517937459051609, 0.027912739664316177, -0.04010888189077377, -0.029488159343600273, -0.0464964359998703, 0.05379949510097504, -0.022619152441620827, -0.023533737286925316, 0.01930512674152851, -0.0012942932080477476, -0.017316194251179695, 0.03140854090452194, -0.006865575909614563, 0.05561135336756706, 0.004202274605631828, 0.03735587000846863, -0.027037406340241432, 0.031260039657354355, 0.04834694415330887, -0.01665715128183365, -0.0288167092949152, 0.025522559881210327, -0.003465676214545965, -0.033167216926813126, -0.028831779956817627, -0.02285626158118248, -0.014218573458492756, -0.018887333571910858, -0.02123631164431572, -0.007104427553713322, 0.04380182921886444, -0.00016243669961113483, -0.047857802361249924, 0.019937140867114067, 0.02585735358297825, -0.05794880911707878, 0.013745220378041267, -0.013128519058227539, 0.014027283526957035, -0.011718390509486198, -0.004103421699255705, -0.024851076304912567, -0.030454210937023163, -0.004372928291559219, -0.007172524929046631, 0.06344347447156906, -0.023212820291519165, -0.04408658295869827, -0.045632254332304, -0.07163499295711517, -0.04917636141180992, -0.002168352948501706, -0.04755952209234238, -0.060699425637722015, 0.030685145407915115, 0.06822512298822403, 0.005075004883110523, 0.009866422973573208, -0.0032737029250711203, 0.0022087525576353073, 0.014615021646022797, 0.04903871566057205, -0.012211899273097515, 0.013659306801855564, 0.0020102604757994413, -0.011637239716947079, 0.026921512559056282, -0.03906014934182167, 0.04746551439166069, -0.024133851751685143, -0.015086136758327484, -0.029015690088272095, -0.0065384614281356335, -0.0011455098865553737, -0.06400634348392487, 0.02429327927529812, 0.01741364598274231, -0.006707800552248955, -0.008537931367754936, -0.07754796743392944, 0.01753290928900242, -0.042088016867637634, 0.0046774959191679955, -0.06474346667528152, 0.007724321447312832, 0.005728630814701319, -0.011437270790338516, -0.0073599559254944324, -0.0667097344994545, 0.1304563581943512, 0.05501231923699379, 0.02890726737678051, 0.02501862868666649, 0.06197651848196983, 0.049751147627830505, 0.025984039530158043, -0.03668494522571564, -0.005076125729829073, -0.014641935005784035, 0.03539377450942993, -0.010859489440917969, 0.04873872548341751, 0.020632201805710793, 0.019973138347268105, 0.055195994675159454, -0.03632064163684845, 0.016492415219545364, 0.014054296538233757, -0.032393015921115875, -0.06906025856733322, 0.019541841000318527, 0.018261367455124855, 0.005964608862996101, 0.010585441254079342, -0.016552196815609932, 0.0031185816042125225, -0.0484459362924099, -0.03186469152569771, -0.04132208228111267, 0.05216462165117264, -0.009518397971987724, 0.016785869374871254, -0.0220770463347435, -0.04065163433551788, 0.05168085917830467, 0.025127824395895004, -0.05809495598077774, 0.024572132155299187, 0.000771002727560699, -0.04045959934592247, 0.005195403937250376, 0.048248764127492905, -0.037500571459531784, 0.020985079929232597, 0.027834279462695122, -0.022966520860791206, 0.006077381316572428, -0.00173812301363796, -0.038335807621479034, 0.06850016862154007, -0.06410552561283112, 0.021891402080655098, -0.0029282302130013704, -0.04094788059592247, 0.017833871766924858, 0.0043327040039002895, -0.027492940425872803, -0.0020140863489359617, -0.024344490841031075, 0.014733545482158661, 0.004931856878101826, -0.005118504166603088, 0.00634932704269886, -0.04798420891165733, -0.012290666811168194, 0.03698531165719032, 0.0006403023726306856, -0.005908876191824675, -0.03778913617134094, -0.02758801355957985, -0.026244115084409714, -0.009318727068603039, 0.005990908015519381, 0.054227158427238464, 0.06015053763985634, -0.025267167016863823, 0.049255963414907455, -0.005234900396317244, -0.022198952734470367, -0.012077347375452518, -0.07075502723455429, -0.019276442006230354, 0.011127421632409096, 0.03536716103553772, 0.03553071245551109, -0.012082444503903389, -0.01172071322798729, -0.01592576876282692, 0.06994684785604477, 0.05181276425719261, 0.020674290135502815, -0.001345836091786623, 0.00032191211357712746, -0.0009359599207527936 ]
Go sporty this summer with this vintage navy and white striped v-neck t-shirt from the Nike. Perfect for pairing with denim and white kicks for a stylish sporty vibe. Please select some product options before adding this product to your cart. Go sporty this summer with this vintage navy and white striped v-neck t-shirt from the Abercrombie & Fitch. Perfect for pairing with denim and white kicks for a stylish sporty vibe. Will fit a UK 8-10, model shown is a UK 8 and 5'5. !! Typography is the work of typesetters, compositors, typographers, graphic designers, art directors, manga artists, comic book artists, graffiti artists, and nowโ€”anyone who arranges words, letters, numbers, and symbols for publication, display, or distributionโ€”from clerical workers and newsletter writers to anyone self-publishing materials. Copyright ยฉ 2018 Bendita Ciencia Todos los Derechos Reservados. Powered by .
[ -0.02497531846165657, 0.015093939378857613, 0.017587462440133095, 0.01973564364016056, 0.00021068989008199424, 0.007596118841320276, -0.006436584517359734, 0.0023658229038119316, 0.020879393443465233, 0.03359388932585716, -0.0003801417478825897, 0.005293699447065592, -0.0032300162129104137, -0.02941543608903885, 0.011495166458189487, -0.0017661486053839326, -0.011086142621934414, -0.042337216436862946, -0.026641514152288437, 0.03015461191534996, -0.00707616750150919, 0.015111006796360016, -0.08437828719615936, -0.03511560335755348, 0.007500788662582636, 0.03134777396917343, 0.017470816150307655, -0.025218868628144264, 0.06628073006868362, 0.02049238793551922, -0.024770578369498253, -0.03792647644877434, 0.028760846704244614, -0.07622749358415604, -0.029225701466202736, -0.006253911182284355, 0.024812785908579826, -0.01774386316537857, -0.023327164351940155, -0.03174208849668503, 0.042406171560287476, -0.005914510693401098, 0.029663942754268646, -0.017031101509928703, -0.04052787646651268, -0.02347956970334053, -0.00966761913150549, -0.04072804003953934, 0.017880650237202644, -0.04509691521525383, 0.015859534963965416, -0.023542597889900208, 0.019141441211104393, 0.00461927056312561, -0.019236324355006218, 0.04835524037480354, 0.006006245501339436, 0.010902497917413712, -0.028326228260993958, 0.041719987988471985, 0.01495249755680561, -0.012240941636264324, 0.04582568258047104, -0.053425610065460205, 0.012255525216460228, -0.004300610162317753, -0.002192359883338213, 0.005502406973391771, 0.012176514603197575, -0.006640711799263954, 0.029194287955760956, -0.010804742574691772, -0.027630912140011787, 0.0005668179946951568, -0.009095166809856892, 0.025882935151457787, 0.005463415756821632, 0.006557135377079248, -0.040011730045080185, 0.0105433389544487, 0.019263310357928276, 0.05779697000980377, 0.007087494246661663, 0.017510242760181427, -0.06768304854631424, -0.009586147964000702, -0.0212238822132349, 0.009390217252075672, 0.016303693875670433, 0.002255677478387952, 0.008016721345484257, 0.06366869807243347, -0.008803692646324635, -0.024029823020100594, 0.05513586103916168, 0.03829898685216904, -0.04979534447193146, 0.007527485955506563, 0.005007878877222538, 0.027427030727267265, 0.027323752641677856, -0.006189230363816023, 0.005497900769114494, 0.04710789769887924, -0.034026168286800385, 0.008714648894965649, 0.0014614986721426249, -0.04536950960755348, -0.011160720139741898, -0.023649344220757484, 0.0038083004765212536, -0.013512990437448025, 0.04300220310688019, 0.04227994382381439, -0.026626328006386757, 0.02916252799332142, 0.008907045237720013, 0.02827860787510872, -0.04269035533070564, 0.018808064982295036, 0.0029852581210434437, 0.02960769645869732, 0.030463673174381256, 0.02033361978828907, 0.02250656858086586, -0.0214628204703331, -0.02572769857943058, 0.032791949808597565, -0.05495546758174896, -0.011940508149564266, 0.011234731413424015, -0.031372494995594025, -0.015369865112006664, 0.024547230452299118, -0.018981315195560455, 0.024670999497175217, -0.0080870371311903, 0.03180558606982231, -0.014856776222586632, -0.050410300493240356, 0.0531250461935997, 0.03156198933720589, 0.01900039054453373, 0.0851767286658287, 0.023789256811141968, 0.03376695513725281, 0.026369735598564148, 0.007065693382173777, -0.050604820251464844, 0.012612223625183105, -0.04494341462850571, 0.015999600291252136, -0.016819942742586136, 0.025168638676404953, -0.0259139034897089, -0.0020422530360519886, 0.0019429291132837534, 0.012979437597095966, 0.013024607673287392, 0.04135943204164505, -0.027115795761346817, 0.014972289092838764, 0.016685359179973602, 0.03759082034230232, -0.03853742405772209, 0.03557998314499855, -0.032816655933856964, 0.00868073757737875, -0.015105425380170345, -0.050600867718458176, -0.0033025501761585474, 0.00816761888563633, 0.018914368003606796, 0.02064422518014908, 0.0005773759330622852, 0.03841711953282356, 0.02562638558447361, -0.018768327310681343, 0.03956400230526924, 0.04622374102473259, -0.015328981913626194, -0.04527762159705162, 0.0027543003670871258, 0.07634595781564713, -0.018756292760372162, -0.0022546194959431887, 0.007478232029825449, -0.027597276493906975, -0.04047078639268875, 0.006003950256854296, -0.0043429299257695675, 0.008499538525938988, -0.023567480966448784, 0.022378364577889442, -0.003604069584980607, -0.00022309814812615514, -0.0012333632912486792, 0.005273246206343174, 0.0047622304409742355, -0.07794952392578125, -0.01289178803563118, 0.062484871596097946, -0.030479321256279945, 0.013479027897119522, -0.024298617616295815, -0.017228521406650543, 0.012066085822880268, 0.06648968905210495, -0.0372832715511322, 0.00047955921036191285, 0.043723154813051224, -0.0016309318598359823, 0.006174921989440918, -0.003041322808712721, -0.002113252878189087, -0.039725806564092636, -0.019315196201205254, 0.0695609450340271, -0.031754616647958755, 0.016192635521292686, -0.019536610692739487, 0.0077688731253147125, 0.06610262393951416, 0.05830269679427147, 0.032516177743673325, 0.008041588589549065, 0.022489700466394424, 0.07255084067583084, -0.009200786240398884, 0.0009042953606694937, -0.009015850722789764, 0.05071379616856575, 0.04375041648745537, 0.052263110876083374, 0.03538363054394722, 0.010771168395876884, -0.012109016999602318, 0.07419796288013458, 0.017427032813429832, 0.031855326145887375, -0.005121358670294285, 0.022737734019756317, 0.02615753747522831, 0.019213790073990822, -0.01639915630221367, 0.005430786870419979, 0.006369804032146931, 0.01176811009645462, -0.019901728257536888, 0.014014776796102524, -0.01359121035784483, 0.03596924617886543, 0.04045187681913376, 0.03665795922279358, -0.01887798123061657, 0.009085437282919884, 0.03001433238387108, 0.042396172881126404, -0.00971563532948494, 0.022137431427836418, -0.004298148676753044, 0.03236749768257141, 0.006554048508405685, 0.03039989061653614, 0.025249650701880455, 0.016198359429836273, 0.00909385085105896, 0.020514370873570442, -0.004947179928421974, -0.02898922935128212, -0.0702151283621788, -0.06511233001947403, -0.058410804718732834, -0.04657694324851036, -0.04038823023438454, 0.02539193257689476, 0.025819212198257446, -0.04233695566654205, 0.052484553307294846, -0.01023783814162016, -0.014796939678490162, -0.0200742669403553, 0.010768944397568703, 0.04590548947453499, 0.01191787701100111, 0.0519665963947773, -0.03774304315447807, 0.023788193240761757, -0.027836346998810768, 0.038515642285346985, -0.0464252308011055, -0.005445871967822313, 0.006214273162186146, -0.00912665855139494, 0.0433770976960659, -0.041793420910835266, -0.04090050607919693, 0.008648501709103584, -0.0412747897207737, -0.04593588411808014, 0.003623321419581771, 0.01750219613313675, -0.00865281280130148, 0.003849460044875741, -0.06723877042531967, 0.05406765267252922, 0.021640868857502937, -0.010784145444631577, 0.044840820133686066, 0.02937026508152485, -0.04377276077866554, 0.06431137025356293, 0.03241503983736038, 0.0024431217461824417, -0.044043440371751785, 0.061544351279735565, 0.044775065034627914, -0.019686797633767128, -0.02434580959379673, 0.010049994103610516, -0.06846129149198532, 0.027028096839785576, 0.03296481817960739, -0.008188036270439625, -0.009110469371080399, 0.04482116550207138, 0.02933388575911522, -0.07663674652576447, 0.03128312900662422, -0.05280417576432228, -0.05387846753001213, -0.04607168585062027, -0.05887757986783981, 0.029124008491635323, 0.00773052079603076, 0.016359243541955948, 0.015187369659543037, -0.04565322399139404, 0.034899696707725525, 0.0453660674393177, 0.05052843317389488, -0.00988232996314764, 0.0459795743227005, 0.05815848708152771, -0.00043557118624448776, 0.00972498208284378, -0.013219088315963745, -0.02596486546099186, -0.037315770983695984, 0.038401972502470016, -0.02223351038992405, 0.05400172248482704, 0.044196709990501404, 0.01845747046172619, -0.006713395938277245, 0.05922176316380501, -0.05176568403840065, -0.023952357470989227, 0.018370918929576874, 0.04338851571083069, 0.04028945416212082, 0.004649335518479347, 0.027317119762301445, -0.022014152258634567, -0.03686247393488884, -0.043485891073942184, 0.027140267193317413, 0.008866040967404842, 0.051269613206386566, -0.04111633822321892, 0.038267768919467926, 0.019521204754710197, -0.03967301920056343, 0.018946491181850433, -0.04264647513628006, -0.030703585594892502, 0.04331730678677559, 0.013493971899151802, 0.032476700842380524, -0.03787948563694954, 0.010311204940080643, -0.0432087667286396, 0.004589081276208162, 0.01250144001096487, 0.004366606008261442, 0.031447749584913254, -0.006122363265603781, -0.012684149667620659, -0.01065501756966114, -0.05802229791879654, -0.03420238196849823, 0.001833888702094555, 0.02001090534031391, -0.026261869817972183, -0.07640883326530457, -0.02349589206278324, 0.016337497159838676, 0.0322052501142025, 0.03576701879501343, 0.010911715216934681, 0.01428579818457365, 0.02048393338918686, 0.02047472447156906, 0.023762334138154984, -0.0281242486089468, 0.0025692402850836515, -0.017718391492962837, 0.016722632572054863, 0.03529621660709381, -0.02517227828502655, -0.02186722680926323, -0.0374792143702507, -0.013223222456872463, 0.010668529197573662, -0.01821514219045639, -0.03613173961639404, -0.03409796953201294, 0.008905596099793911, -0.00909259170293808, 0.02071763016283512, -0.03634373098611832, -0.02761424519121647, -0.02656881883740425, 0.021615689620375633, 0.03905041888356209, -0.035943325608968735, 0.0062928530387580395, -0.05102519318461418, 0.019742488861083984, 0.05731714516878128, -0.004103032872080803, -0.02464415319263935, -0.015488041564822197, -0.049741245806217194, -0.048646435141563416, -0.00448622927069664, 0.04175415262579918, 0.02756369113922119, 0.03876728564500809, -0.0535261295735836, 0.010809498839080334, 0.051608774811029434, -0.00883964542299509, -0.021633204072713852, -0.014644877053797245, 0.02254454605281353, 0.020696744322776794, 0.058177921921014786, -0.00791848823428154, -0.034758731722831726, 0.023232992738485336, -0.0888051763176918, 0.019981427118182182, 0.010487714782357216, -0.024801425635814667, -0.020562926307320595, 0.019067097455263138, 0.009764816612005234, 0.059853315353393555, -0.010480659082531929, 0.00454552099108696, 0.0011107949540019035, 0.031125880777835846, -0.022516779601573944, -0.035944920033216476, 0.05702873691916466, -0.0014097965322434902, -0.04908577352762222, 0.012056238017976284, 0.027303865179419518, -0.0101854233071208, -0.014458338730037212, 0.020419100299477577, -0.05396859347820282, 0.028015950694680214, -0.04025556892156601, -0.007443487178534269, -0.02667939104139805, -0.04882979765534401, -0.027827374637126923, -0.03532833233475685, 0.01605954021215439, 0.010015170089900494, -0.021198512986302376, -0.038322772830724716, -0.013442791067063808, -0.006120177451521158, 0.009280586615204811, -0.023127593100070953, 0.04326466843485832, -0.01892736926674843, -0.005859916098415852, 0.005963516421616077, -0.008303556591272354, 0.021682167425751686, 0.0175384059548378, -0.0549425445497036, 0.005435462575405836, 0.007660526782274246, 0.03416219726204872, -0.004020881839096546, 0.020357726141810417, -0.03706375136971474, -0.004642574116587639, -0.014581148512661457, -0.0081763481721282, -0.04438779875636101, -0.006783576682209969, -0.01972663775086403, 0.001098872278816998, 0.0004431255511008203, -0.00014378450578078628, -0.021002739667892456, 0.007322169374674559, 0.048843152821063995, 0.026172611862421036, -0.0118337981402874, 0.030176470056176186, -0.04867476597428322, 0.04764330014586449, 0.014465984888374805, -0.03413832560181618, -0.0577656552195549, 0.05139411613345146, 0.028234221041202545, 0.052322521805763245, -0.0016981216613203287, -0.015524813905358315, -0.03332778066396713, -0.06233111023902893, -0.03425462543964386, -0.029238004237413406, -0.0032069305889308453, -0.025344207882881165, -0.027504095807671547, -0.016204221174120903, 0.03914909437298775, -0.029396437108516693, -0.008781500160694122, -0.007932438515126705, -0.05458072945475578, 0.005013877525925636, -0.029471809044480324, -0.007192014716565609, -0.014802472665905952, -0.012579728849232197, -0.029126614332199097, 0.05121273919939995, 0.009151245467364788, 0.021277014166116714, 0.031029770150780678, 0.03164356201887131, 0.002753347856923938, -0.014828324317932129, -0.02742476388812065, -0.04147210717201233, -0.012082167901098728, 0.00971908401697874, 0.021874694153666496, 0.01341801043599844, -0.04104794189333916, 0.038237620145082474, -0.047357141971588135, -0.000996533315628767, -0.0038024301175028086, -0.009090447798371315, -0.000644678482785821, -0.009074716828763485, 0.036211807280778885, -0.03578600659966469, -0.000056952321756398305, -0.02532072365283966, 0.02070324681699276, 0.013388239778578281, 0.00902884267270565, -0.024062827229499817, -0.02382078766822815, -0.03858770802617073, -0.06751006096601486, 0.010805842466652393, -0.012697037309408188, -0.012969234958291054, -0.06241365894675255, -0.02248528227210045, 0.04134736582636833, -0.0012751314789056778, 0.03360523656010628, 0.05895039811730385, -0.012200121767818928, 0.007390451151877642, -0.02486821450293064, 0.04434027895331383, 0.04118557646870613, -0.02566465549170971, -0.0008895673090592027, -0.03552908077836037, -0.015398704446852207, 0.005514032673090696, -0.0446745902299881, -0.05161728709936142, -0.0482574924826622, 0.0036676060408353806, 0.05308394506573677, -0.013886144384741783, 0.05845271795988083, -0.01614549197256565, -0.03239314258098602, -0.04398263245820999, 0.017882736399769783, 0.04285116866230965, 0.013242926448583603, 0.02337649278342724, -0.007266788277775049, -0.0018899280112236738, 0.01850098930299282, -0.010596767999231815, -0.020776936784386635, -0.03339337185025215, 0.05725542828440666, -0.0033564134500920773, -0.042727965861558914, 0.03565721958875656, 0.02415844053030014, -0.028801878914237022, 0.0009993065614253283, 0.02134883962571621, 0.005936014000326395, 0.014457314275205135, -0.03743412345647812, 0.047342874109745026, 0.010740957222878933, -0.0038828246761113405, 0.017330972477793694, 0.035396043211221695, -0.0077890208922326565, 0.05034681782126427, -0.029257461428642273, 0.033059798181056976, -0.0372806154191494, -0.01272520050406456, 0.001293779700063169, -0.03295283019542694, -0.039498113095760345, -0.045339230448007584, -0.0014384024543687701, -0.02178695984184742, -0.008847794495522976, 0.04513976722955704, -0.008578907698392868, 0.012895101681351662, 0.027761150151491165, -0.010412381030619144, 0.02461262047290802, 0.01618931256234646, -0.022426074370741844, 0.016275612637400627, -0.025078510865569115, -0.04471895098686218, -0.04237779229879379, 0.030388999730348587, -0.022535834461450577, 0.020900364965200424, -0.05716347321867943, -0.0035496652126312256, 0.043732497841119766, -0.0007944976096041501, -0.01907970756292343, -0.03955749049782753, -0.059571772813797, -0.07773317396640778, -0.057197242975234985, -0.023445041850209236, -0.02028682827949524, -0.022440752014517784, 0.05222509428858757, 0.019833389669656754, -0.01877126283943653, -0.00029699935112148523, 0.015477531589567661, -0.011502381414175034, 0.04429634287953377, -0.04054781794548035, 0.02103283815085888, -0.047946225851774216, -0.04416203498840332, -0.038910213857889175, 0.005638979375362396, -0.020753981545567513, 0.013037855736911297, -0.003985101357102394, 0.046001918613910675, -0.018975766375660896, 0.010286157950758934, -0.015990236774086952, 0.035892732441425323, -0.011979253962635994, -0.04263491928577423, -0.016131319105625153, 0.07587942481040955, 0.01505690161138773, 0.021530644968152046, 0.03882109746336937, -0.027561865746974945, 0.03591174632310867, 0.0008832829771563411, -0.028558189049363136, -0.03690361604094505, 0.007478234823793173, 0.003785440931096673, -0.011776122264564037, -0.03298913687467575, -0.052639007568359375, -0.03305661678314209, -0.03710663691163063, 0.04284559562802315, -0.00038984863203950226, 0.02036355622112751, -0.0007344988989643753, -0.020419156178832054, -0.02542276307940483, 0.06445317715406418, 0.012817958369851112, 0.03380347788333893, -0.02302606962621212, 0.017140861600637436, 0.03002105839550495, -0.003015276277437806, 0.010142412036657333, 0.009616093710064888, 0.03697720170021057, -0.02819284424185753, 0.0076348134316504, 0.00819780956953764, -0.038555361330509186, 0.04332903400063515, 0.00007189437019405887, -0.02944103814661503, -0.06633362919092178, -0.02400616556406021, -0.011994248256087303, 0.05102553963661194, 0.005217273719608784, 0.012484694831073284, 0.041352830827236176, -0.025569897145032883, -0.04911429062485695, 0.010254957713186741, -0.05586886405944824, -0.00845226552337408, 0.03499045595526695, -0.01960453949868679, -0.03588961809873581, -0.003106800839304924, -0.0512348897755146, 0.03737606853246689, -0.007715032435953617, -0.010290155187249184, -0.02548004873096943, 0.006454580929130316, 0.0013335562543943524, 0.02059403620660305, 0.004916863981634378, -0.013929134234786034, 0.02330727130174637, 0.03254689276218414, -0.03740667924284935, -0.05094004422426224, 0.0019128380808979273, 0.0324242003262043, 0.03440265730023384, -0.012403507716953754, -0.03186579421162605, 0.029980169609189034, -0.01250896230340004, -0.011993864551186562, 0.012084919027984142, 0.03419383242726326, -0.015288661234080791, 0.03012951649725437, -0.004139638040214777, -0.008966696448624134, -0.028072312474250793, 0.04535989090800285, 0.0069364458322525024, -0.006622616201639175, -0.0227107722312212, 0.020902767777442932, 0.03750111907720566, -0.008424916304647923, 0.03566184267401695, -0.00554389925673604, 0.036141734570264816, -0.018711838871240616, 0.008064884692430496, -0.042036231607198715, 0.0426199734210968, 0.03072078339755535, 0.043441709131002426, 0.00510632898658514, 0.016003889963030815, 0.06387946754693985, 0.011025398969650269, 0.012509501539170742, 0.013799668289721012, 0.04202387481927872, -0.03502408787608147, 0.029921479523181915, -0.03558507189154625, 0.024621719494462013, 0.01473191473633051, -0.02136225998401642, -0.010420264676213264, -0.04271190986037254, 0.001062559662386775, -0.002948717912659049, -0.0025421190075576305, 0.052229173481464386, -0.025754636153578758, 0.010873745195567608, -0.014189979061484337, -0.013326721265912056, -0.02678515762090683, 0.0482570081949234, 0.023555103689432144, 0.0023206272162497044, 0.03542254492640495, 0.024763841181993484, -0.004056860692799091, 0.048124659806489944, 0.009267742745578289, 0.028269406408071518, -0.03298070281744003, -0.0012265751138329506, 0.03682519122958183, -0.016771098598837852, -0.03450124338269234, 0.013568134978413582, -0.031988948583602905, 0.04122035577893257, -0.04162978008389473, -0.036180008202791214, 0.05386237055063248, -0.01889762282371521, -0.014140399172902107, -0.03871464729309082, 0.04248389974236488, -0.01713831163942814, 0.003498545615002513, 0.00027730726287700236, -0.00009624307858757675, -0.023994313552975655, 0.063923180103302, -0.016705427318811417, 0.06398774683475494, 0.013931693509221077, 0.04433036595582962, -0.005976198706775904, 0.03487885743379593, 0.05124937742948532, -0.0347563773393631, -0.012779619544744492, 0.021746819838881493, -0.022809363901615143, -0.03817638382315636, 0.002020310377702117, -0.027698248624801636, -0.002629442373290658, -0.017013009637594223, -0.007413919549435377, -0.012715904042124748, 0.042651500552892685, -0.014137890189886093, -0.045474447309970856, -0.024246055632829666, 0.024970298632979393, -0.03070138953626156, 0.015016316436231136, -0.015355338342487812, 0.03235379606485367, -0.0030826861038804054, -0.01629078947007656, -0.05605870112776756, -0.0077387080527842045, -0.006750859320163727, -0.051423195749521255, 0.04188336431980133, -0.012451441027224064, -0.015965530648827553, -0.007483352907001972, -0.03608858957886696, -0.028573619201779366, 0.021088488399982452, -0.03011207841336727, -0.026155563071370125, 0.03947456181049347, 0.02794148027896881, -0.0009774190839380026, 0.003380697686225176, 0.000025782652301131748, 0.019979149103164673, 0.052647825330495834, 0.05990464612841606, -0.004841709043830633, 0.03526118025183678, 0.036149270832538605, -0.035252105444669724, 0.020954875275492668, -0.01995127834379673, 0.020236322656273842, -0.045380618423223495, 0.01509617269039154, -0.04499529302120209, 0.03419872000813484, 0.005686621181666851, -0.06312251091003418, 0.0005893068155273795, 0.01116589829325676, -0.004800983238965273, -0.016743892803788185, -0.09013280272483826, -0.011016977950930595, -0.021142151206731796, -0.0034517967142164707, -0.0505603663623333, 0.03142906352877617, 0.033198315650224686, -0.011188818141818047, 0.026164257898926735, -0.06231814622879028, 0.1517764776945114, 0.021589746698737144, 0.025122331455349922, 0.020960506051778793, 0.01637602224946022, 0.039373286068439484, 0.0005052537308074534, -0.007418445311486721, 0.0041307853534817696, 0.0040491544641554356, 0.008005297742784023, -0.02125992439687252, 0.01583670824766159, -0.004385001957416534, 0.004225411918014288, 0.038419194519519806, -0.04099923372268677, 0.021878646686673164, 0.015453458763659, -0.03491678461432457, -0.07414232939481735, 0.04867001622915268, 0.04122908413410187, 0.0011862976243719459, 0.016267862170934677, 0.008800377137959003, 0.017569351941347122, -0.04857896640896797, -0.025412393733859062, -0.014461307786405087, 0.04256206378340721, -0.016286207363009453, 0.026980150490999222, -0.027858536690473557, -0.023785172030329704, 0.03413379564881325, 0.0002862851833924651, -0.009805615060031414, -0.02257024310529232, 0.024918003007769585, -0.014160909689962864, -0.024065371602773666, 0.02976473607122898, -0.02956046536564827, -0.0043295882642269135, 0.018587131053209305, -0.023107031360268593, 0.012350553646683693, 0.012410502880811691, -0.03807056322693825, 0.06166417896747589, -0.03332676365971565, 0.043660763651132584, -0.02921874262392521, -0.03746332228183746, 0.01228462252765894, 0.006021181121468544, -0.03103080578148365, 0.012120638974010944, -0.021423542872071266, 0.0037105297669768333, -0.00969767291098833, -0.02941797859966755, -0.011701212264597416, -0.03504340723156929, -0.024473441764712334, 0.021812332794070244, 0.0020024743862450123, 0.016676247119903564, -0.031494494527578354, -0.01230345107614994, -0.036378614604473114, -0.01473043579608202, -0.054284095764160156, 0.015536359511315823, 0.00031817180570214987, -0.04887760430574417, 0.05091393366456032, 0.008407498709857464, -0.031664952635765076, -0.007418524473905563, -0.04043220728635788, 0.0036674330476671457, -0.0004762238822877407, 0.02522418648004532, 0.03525587543845177, -0.042061757296323776, -0.04083576053380966, -0.03916926309466362, 0.053746555000543594, 0.05783700570464134, 0.032873667776584625, -0.0006591996061615646, -0.007062038406729698, -0.03209645301103592 ]
Hands up if you want to get your hands on the newest and hottest medal in town!! The newest race in Oswestry is taking place on Sunday 13 October 2019 and Hope House are excited to be involved. The Oswestry 10k is perfect for first time runners as well as 10k regulars seeking a new PB. The race is a fast one lap race, starting and finishing in Oswestry Town Centre with fully closed roads. The Route is mainly on town roads with a nice scenic section towards the end. We would love you to join Team Hope House for this inaugural event. Entry is just ยฃ15 plus ยฃ100 minimum fundraising target. You will receive your free Hope House running vest for joining our team. Minimum age 15. Please note: by signing up to this event you are agreeing that you will be taking part in this event at your own risk, and the promoters or any person involved in the organisation of the event will not be responsible for any illness or injury caused by your participation. You also grant Hope House the right to use photographs/videos taken of you during the event, i.e. on the Hope House website/Facebook page.
[ 0.00976626668125391, 0.00479733245447278, -0.01974804326891899, -0.007660743314772844, -0.013093600049614906, -0.015739919617772102, 0.021183675155043602, 0.06486106663942337, 0.010421717539429665, -0.022247031331062317, 0.027793364599347115, 0.003933233674615622, 0.018386434763669968, -0.025451740249991417, 0.0028696218505501747, 0.005155428312718868, -0.050882481038570404, -0.02580964006483555, -0.010957065038383007, 0.010778193362057209, -0.0075854044407606125, 0.03527282550930977, -0.08426406234502792, -0.044507499784231186, -0.0058290427550673485, 0.02034241147339344, 0.01734052784740925, -0.02946564368903637, 0.03268037736415863, 0.05461546406149864, -0.03193744644522667, -0.08178209513425827, 0.05019791051745415, -0.037222713232040405, -0.0333263985812664, -0.02724446915090084, 0.032816331833601, -0.02105725184082985, -0.04695460572838783, -0.06440668553113937, 0.019504163414239883, -0.024081284180283546, 0.017117716372013092, -0.0018543209880590439, -0.06300143897533417, -0.029356664046645164, -0.03505673632025719, 0.003296636277809739, 0.02193405292928219, -0.04003462940454483, 0.009391027502715588, -0.02093384973704815, -0.00231618108227849, -0.019107095897197723, 0.014187159948050976, 0.06432410329580307, 0.014353166334331036, 0.0034641041420400143, -0.015485298819839954, 0.02122196927666664, 0.01997695490717888, 0.004774120170623064, 0.01894453354179859, -0.05818741396069527, 0.03255124390125275, 0.01775168627500534, -0.007575970143079758, -0.033706676214933395, -0.003978812601417303, -0.04512818157672882, 0.012287331745028496, 0.009408144280314445, -0.014630730263888836, -0.031650908291339874, 0.004966049455106258, -0.013952873647212982, -0.013946139253675938, 0.03921181708574295, -0.022545887157320976, 0.013832153752446175, 0.03413639962673187, 0.051161278039216995, 0.03231699764728546, -0.003703853813931346, -0.04156448319554329, -0.005815653596073389, -0.004080688115209341, -0.006796084810048342, 0.002177310176193714, 0.004029988776892424, -0.004692806396633387, 0.042575106024742126, 0.01736311987042427, -0.0024979705922305584, 0.043242838233709335, 0.004890513140708208, -0.030724216252565384, 0.01478435005992651, 0.009768047370016575, 0.0014332060236483812, 0.01095596794039011, 0.022143328562378883, 0.011598015204071999, 0.006670617964118719, -0.055455245077610016, 0.0005586964543908834, 0.02383958362042904, -0.020779943093657494, 0.0005870597087778151, -0.016688868403434753, 0.006141360849142075, -0.010052497498691082, 0.044662266969680786, -0.004883778281509876, -0.0030790865421295166, 0.04289775714278221, -0.012744685634970665, 0.010406987741589546, -0.01978047378361225, 0.029294218868017197, 0.04522296413779259, 0.0014034472405910492, 0.053965937346220016, -0.005078432150185108, 0.013872457668185234, -0.040131498128175735, -0.030643049627542496, 0.04989203065633774, -0.05787926912307739, -0.04088979214429855, 0.007024895399808884, -0.08322137594223022, -0.0026724613271653652, 0.01342673972249031, 0.00742920208722353, 0.026585573330521584, 0.014861532486975193, 0.039105821400880814, -0.003999226726591587, -0.06734376400709152, 0.045135416090488434, 0.020697860047221184, -0.006300593260675669, 0.07694710791110992, -0.001333310967311263, 0.023957490921020508, 0.01898781955242157, -0.034338418394327164, -0.03733475133776665, 0.02337806671857834, -0.0183867234736681, 0.042684271931648254, -0.019329050555825233, 0.023844584822654724, -0.014667006209492683, 0.004846994765102863, -0.020308485254645348, -0.00822952575981617, 0.017871834337711334, 0.045194730162620544, -0.028765123337507248, 0.022541573271155357, -0.03222370520234108, 0.03438315540552139, -0.011768965981900692, 0.01673370786011219, -0.026548488065600395, -0.01703084260225296, 0.013109845109283924, -0.008390425704419613, -0.0074840993620455265, -0.01248217560350895, -0.010009339079260826, 0.016025561839342117, 0.02116691879928112, 0.08139608800411224, 0.04298442229628563, -0.001092806225642562, 0.04506166651844978, 0.034016888588666916, -0.04127282649278641, -0.011084390804171562, 0.0010616083163768053, 0.10594768822193146, 0.00741725554689765, -0.01675831340253353, -0.00882958248257637, -0.02565493993461132, -0.03850623220205307, -0.058500830084085464, 0.008288763463497162, 0.041166577488183975, -0.03353700041770935, 0.037600480020046234, 0.015860192477703094, -0.029557054862380028, 0.022222304716706276, -0.03655162826180458, -0.036183759570121765, -0.052128762006759644, -0.011645217426121235, 0.06668707728385925, -0.021276285871863365, 0.043957795947790146, 0.005047509912401438, -0.018260018900036812, 0.04938938096165657, 0.04044089466333389, -0.027268989011645317, -0.033476877957582474, 0.031178822740912437, 0.007645894307643175, -0.020510124042630196, 0.008405272848904133, 0.03458647429943085, -0.002279146108776331, -0.034183185547590256, 0.06826101988554001, 0.004161309916526079, -0.03860870376229286, -0.0038774735294282436, 0.030469724908471107, 0.03991737589240074, 0.0709955245256424, -0.009275439195334911, -0.00392721826210618, 0.022253811359405518, 0.05404696613550186, -0.010161591693758965, -0.0064534819684922695, -0.01733570545911789, 0.04857410863041878, 0.033395811915397644, 0.03662620857357979, 0.05842782184481621, 0.02709055133163929, 0.006414878647774458, 0.030578091740608215, -0.02790975570678711, 0.03006335347890854, 0.004924147855490446, -0.013077945448458195, 0.04302529990673065, 0.03467854857444763, 0.006208548787981272, 0.012212056666612625, -0.015591764822602272, -0.021756231784820557, -0.005200627259910107, 0.05646321550011635, 0.006274660583585501, 0.05461800843477249, 0.002475057728588581, 0.02104920707643032, -0.01692788675427437, 0.010530568659305573, 0.03711627423763275, 0.07374101877212524, -0.03169360011816025, 0.007895374670624733, 0.027180258184671402, 0.02044994756579399, -0.02334076166152954, 0.019304513931274414, 0.04052295908331871, 0.03529168665409088, 0.004040002357214689, 0.009587409906089306, 0.0007998210494406521, -0.05849118530750275, -0.028017889708280563, -0.037846047431230545, -0.026950908824801445, -0.025936678051948547, -0.05990280956029892, 0.03396875038743019, 0.06865821033716202, -0.04733054339885712, 0.0166974775493145, 0.0018730928422883153, 0.011881249956786633, -0.014247162267565727, 0.004687582142651081, 0.05269860848784447, 0.011765421368181705, 0.005992078222334385, -0.06526046246290207, 0.02305557392537594, -0.025554314255714417, 0.018139652907848358, -0.05978116765618324, -0.004065170418471098, 0.01749049313366413, -0.00698380870744586, 0.0337284691631794, -0.028612451627850533, -0.02836308442056179, -0.010708731599152088, -0.044605884701013565, -0.03148975595831871, 0.00869996938854456, -0.012260690331459045, -0.007474187761545181, -0.011898737400770187, -0.033372774720191956, 0.037138860672712326, 0.053193073719739914, -0.04307369887828827, 0.03387683257460594, 0.0394459143280983, -0.031330082565546036, 0.05071770399808884, 0.044338226318359375, -0.013691729865968227, -0.06322730332612991, 0.05963188782334328, 0.035421356558799744, -0.007097438909113407, -0.006433526054024696, -0.012702975422143936, -0.044677089899778366, -0.021108588203787804, -0.006761367432773113, -0.027582768350839615, -0.012102784588932991, 0.03856204077601433, 0.017154406756162643, -0.047228943556547165, 0.020835714414715767, -0.0049675218760967255, -0.013664615340530872, -0.036982931196689606, -0.011170510202646255, 0.011672581546008587, 0.026190143078565598, 0.050798941403627396, 0.02936963364481926, -0.050586532801389694, 0.007425544783473015, 0.022308383136987686, 0.04645615443587303, -0.024740425869822502, 0.022829530760645866, 0.04091346263885498, 0.01943817175924778, 0.009418081492185593, -0.003304513869807124, -0.006135214120149612, -0.029156368225812912, 0.009011263959109783, -0.013466144911944866, 0.016256803646683693, 0.052042294293642044, -0.007049242500215769, 0.009731704369187355, 0.02630801871418953, -0.028950883075594902, 0.0060387603007256985, -0.009368416853249073, 0.009140952490270138, -0.0008085173321887851, 0.011473802849650383, 0.029210787266492844, 0.01612018793821335, -0.030957451090216637, -0.04694903641939163, 0.045966990292072296, 0.02646201103925705, 0.0504705049097538, -0.05502831190824509, 0.07165330648422241, -0.01684981770813465, 0.0012825292069464922, 0.01822030544281006, -0.04529135301709175, 0.004432751797139645, 0.028515851125121117, -0.008091513067483902, 0.04558819532394409, -0.03120788000524044, 0.056909386068582535, -0.003447190625593066, 0.03753720968961716, 0.003738903906196356, 0.009871629066765308, 0.030929669737815857, -0.01426647324115038, -0.015850288793444633, 0.02642005868256092, -0.018602857366204262, -0.015164251439273357, -0.031484898179769516, 0.02061629667878151, -0.027957454323768616, -0.05836037918925285, -0.052239637821912766, 0.027912408113479614, 0.00498926779255271, 0.05561601370573044, -0.00895573291927576, 0.04597855731844902, 0.0031248729210346937, -0.023055458441376686, 0.024608833715319633, -0.027185866609215736, 0.018923329189419746, -0.036208052188158035, 0.041519682854413986, 0.024793745949864388, -0.04931636527180672, -0.03465038165450096, 0.012824294157326221, -0.03387821838259697, 0.0031858186703175306, 0.022297808900475502, -0.06316003203392029, -0.036652062088251114, 0.028098104521632195, -0.04530712962150574, 0.0008201992022804916, -0.04595264419913292, -0.016727639362215996, -0.035693854093551636, 0.005604438483715057, 0.007645071484148502, -0.035495974123477936, 0.023199141025543213, -0.048536550253629684, 0.04278179630637169, 0.0439143143594265, 0.002633351134136319, -0.04871167242527008, -0.0048187486827373505, -0.008937083184719086, -0.024618780240416527, 0.012395053170621395, 0.022696472704410553, 0.023145388811826706, -0.011092660948634148, -0.04617450386285782, 0.01614871434867382, 0.036383140832185745, 0.015296872705221176, -0.006979749072343111, 0.016392020508646965, 0.051613226532936096, -0.004238155670464039, 0.027897484600543976, -0.004589980933815241, -0.012998171150684357, 0.022040054202079773, -0.05369936302304268, 0.009073411114513874, -0.016259798780083656, -0.02246260456740856, 0.03634931892156601, 0.01616634987294674, 0.04847594350576401, 0.0348471961915493, 0.010864202864468098, 0.02084260806441307, -0.03437846899032593, 0.029257722198963165, -0.052701685577631, -0.06063293293118477, 0.06501124799251556, -0.0036042234860360622, -0.0489930734038353, 0.03646280989050865, 0.029277073219418526, -0.0335024893283844, -0.0095050735399127, 0.004185802768915892, -0.04247171804308891, 0.04047519341111183, -0.01617198809981346, 0.012688265182077885, -0.027398748323321342, 0.008544357493519783, 0.031171690672636032, -0.013879888691008091, 0.042676281183958054, -0.01961650513112545, -0.027568325400352478, -0.05021118372678757, -0.05836731195449829, -0.018250957131385803, 0.008113118819892406, 0.0038510439917445183, 0.005917665082961321, -0.019727233797311783, -0.017612064257264137, 0.013460610993206501, -0.008929206989705563, 0.00840242300182581, 0.017885468900203705, -0.006615994963794947, 0.010254955850541592, -0.007310979068279266, 0.013389076106250286, -0.01637282222509384, 0.00043397556873969734, -0.0154201565310359, 0.012153019197285175, 0.006850130390375853, 0.0021352353505790234, -0.04250591993331909, -0.020663389936089516, -0.021983591839671135, -0.01728549785912037, -0.017919017001986504, 0.006961008533835411, -0.026280011981725693, 0.015184999443590641, 0.009306997060775757, 0.013815528713166714, 0.02385042794048786, 0.022238245233893394, -0.012439754791557789, 0.023953553289175034, 0.02192806825041771, -0.06760212033987045, -0.0506211593747139, 0.00806987751275301, -0.01034405268728733, 0.07031667232513428, -0.009680589661002159, 0.0001531920861452818, -0.04326692223548889, -0.06518328189849854, -0.016659490764141083, -0.04952679201960564, -0.004237986635416746, -0.04979868605732918, -0.04558505117893219, -0.00704818544909358, 0.0214409027248621, 0.011322886683046818, -0.03160656616091728, -0.0021572173573076725, -0.03351768106222153, 0.022622685879468918, -0.034216590225696564, -0.018474437296390533, -0.014055351726710796, 0.0023597420658916235, 0.015921179205179214, 0.0454656220972538, 0.02344135381281376, 0.022233685478568077, 0.00017618518904782832, 0.029687827453017235, -0.004484051372855902, -0.009745980612933636, -0.036588069051504135, -0.04866179823875427, 0.014386293478310108, -0.007260484620928764, -0.004452552180737257, 0.00593588687479496, -0.01743067242205143, 0.025490351021289825, 0.00453823572024703, -0.008552846498787403, -0.026625461876392365, -0.024983635172247887, 0.004990914836525917, -0.0007721715373918414, 0.03582996129989624, -0.012898249551653862, 0.02728964015841484, 0.008955472148954868, 0.050660595297813416, 0.02779785357415676, -0.006654464639723301, -0.044739607721567154, -0.0073397052474319935, -0.02789771743118763, -0.04127761349081993, 0.021832061931490898, -0.008371920324862003, -0.013798018917441368, -0.015085901133716106, -0.01961192488670349, 0.05758318305015564, 0.006557711400091648, 0.027544409036636353, 0.04381673410534859, -0.04386133328080177, 0.007130065001547337, -0.02956058457493782, 0.020992735400795937, 0.04110287129878998, 0.004718671552836895, -0.017239592969417572, -0.0364728681743145, -0.029506927356123924, 0.006213517859578133, -0.04083588346838951, -0.06096472218632698, -0.06841503083705902, -0.020806005224585533, 0.04916676506400108, -0.009919744916260242, 0.038848698139190674, -0.020950034260749817, -0.04928132891654968, -0.034749433398246765, 0.04624707251787186, 0.008212732151150703, 0.008509459905326366, 0.06050637736916542, 0.0017020367085933685, -0.004602459259331226, 0.001821555895730853, 0.011228234507143497, 0.005321999546140432, -0.028511418029665947, 0.04162703454494476, 0.009723399765789509, -0.0500289723277092, 0.051464181393384933, 0.08761336654424667, -0.04391729086637497, -0.036823879927396774, 0.013250822201371193, 0.009515590034425259, -0.001437198487110436, -0.02619342692196369, 0.014196964912116528, 0.010123553685843945, -0.006192636676132679, 0.016622964292764664, 0.012830548919737339, -0.013669522479176521, 0.040405627340078354, -0.046486373990774155, 0.021993160247802734, -0.042938314378261566, -0.0032244373578578234, 0.005246682092547417, 0.002016406739130616, -0.031653840094804764, -0.01626489870250225, -0.02061815746128559, -0.030790362507104874, -0.032246507704257965, 0.020945465192198753, 0.0008340178756043315, 0.03638073056936264, 0.016991784796118736, -0.011177037842571735, 0.033266954123973846, -0.0225741695612669, -0.014014534652233124, 0.024516528472304344, -0.028876759111881256, -0.032884631305933, -0.031577348709106445, 0.025700144469738007, 0.00015545135829597712, 0.023215902969241142, -0.041933324187994, 0.021753666922450066, 0.028661632910370827, -0.0003069628728553653, 0.007945995777845383, -0.06313225626945496, -0.039766136556863785, -0.04610162228345871, -0.05909998342394829, -0.012088176794350147, -0.018765119835734367, 0.000032054329494712874, 0.02124013938009739, 0.0006953077390789986, -0.042447470128536224, 0.004109779838472605, -0.00845355074852705, -0.02150472067296505, 0.009053172543644905, -0.03585096076130867, 0.033489473164081573, -0.05216279625892639, -0.05075380578637123, -0.0494200624525547, -0.004753523040562868, -0.02291296236217022, 0.034372344613075256, -0.05684821680188179, 0.01940770260989666, -0.02047872170805931, 0.02022368647158146, 0.010375351645052433, 0.012775475159287453, -0.026008324697613716, -0.03380584344267845, -0.003074034582823515, 0.07275579124689102, 0.010180814191699028, 0.04769072309136391, 0.016066405922174454, -0.0021218499168753624, 0.041364025324583054, 0.002294221892952919, -0.025753621011972427, 0.024239199236035347, 0.006898343097418547, 0.028509998694062233, -0.008350660093128681, -0.04130426421761513, 0.0011506888549774885, -0.015287373214960098, -0.04625799134373665, 0.04611789062619209, -0.02375471219420433, -0.005960626527667046, 0.024601411074399948, 0.012066002003848553, 0.003480170853435993, 0.07467605918645859, -0.0047064474783837795, 0.010604613460600376, 0.0006654862663708627, 0.03420693799853325, -0.002719813259318471, -0.016506770625710487, -0.012955955229699612, 0.016788531094789505, 0.025329578667879105, -0.04170624911785126, 0.020070478320121765, -0.003074995707720518, -0.01789913699030876, 0.034048035740852356, -0.007340187206864357, -0.03243574872612953, -0.03065565414726734, -0.044098861515522, 0.006318583618849516, 0.011797129176557064, 0.01338582020252943, 0.005980729125440121, 0.01845531538128853, -0.021182110533118248, -0.04344358295202255, 0.003041123505681753, -0.06647045165300369, -0.01837189681828022, 0.045949261635541916, -0.02487732470035553, 0.003953074105083942, 0.014883956871926785, -0.0483580119907856, 0.01511926669627428, -0.01210313942283392, -0.01126920711249113, -0.01994192600250244, 0.036576710641384125, 0.0027029162738472223, 0.02415141463279724, -0.005061061587184668, 0.013149064034223557, 0.01893918402493, 0.03787342086434364, -0.054261237382888794, -0.04449237138032913, 0.018336834385991096, 0.016465982422232628, 0.030443964526057243, 0.006914474535733461, 0.020614828914403915, 0.026514505967497826, -0.008137582801282406, 0.019413866102695465, -0.028931325301527977, 0.01984550803899765, -0.004348317161202431, 0.05715363845229149, -0.007070564199239016, 0.024346133694052696, -0.03247111290693283, 0.055139921605587006, -0.006975118536502123, -0.03358403220772743, -0.054194025695323944, 0.03159782662987709, 0.022552043199539185, -0.03797801584005356, 0.03653823956847191, -0.010092686861753464, 0.03666694089770317, -0.01632307842373848, 0.005583326797932386, -0.022836418822407722, 0.032178204506635666, 0.043083176016807556, 0.034609127789735794, -0.0019418856827542186, 0.038652483373880386, 0.06134982407093048, 0.005213066935539246, -0.006993033457547426, 0.04221273586153984, 0.039264023303985596, -0.006878452375531197, -0.00039641367038711905, -0.013680748641490936, 0.019711222499608994, -0.003371812868863344, -0.02499455399811268, 0.022735578939318657, -0.03969384729862213, 0.006376586854457855, -0.0022336351685225964, -0.023318348452448845, 0.03097093105316162, -0.00006641288928221911, 0.019335366785526276, -0.0025915910955518484, -0.023974813520908356, -0.013064827769994736, 0.034660711884498596, -0.02666967175900936, 0.015967687591910362, 0.04345838353037834, 0.013460883870720863, 0.0040976726450026035, 0.0562305673956871, 0.007223723456263542, -0.000962770776823163, -0.028462477028369904, 0.01617095246911049, -0.009846853092312813, 0.005543564911931753, -0.02831282466650009, 0.00732781458646059, -0.04782234504818916, 0.012588666751980782, -0.032956562936306, -0.012431453913450241, 0.05007196217775345, -0.03961601108312607, 0.010685347020626068, -0.06348570436239243, 0.016540272161364555, -0.06724953651428223, -0.011697366833686829, 0.028600526973605156, -0.0039772274903953075, -0.01861925981938839, 0.03183270990848541, -0.00047616090159863234, 0.025854751467704773, 0.007009198423475027, 0.047940537333488464, -0.0036016427911818027, 0.018585501238703728, 0.07040348649024963, -0.04923497885465622, -0.03890731558203697, 0.0013178088702261448, -0.011249911971390247, -0.026320939883589745, -0.010782619006931782, -0.04138052463531494, -0.024749038740992546, -0.028192095458507538, -0.02726590633392334, -0.02819378487765789, 0.04278478026390076, -0.026600472629070282, -0.09156418591737747, 0.002233111532405019, 0.038969386368989944, -0.04014398902654648, -0.009679857641458511, 0.013268561102449894, 0.03421039506793022, 0.007376960478723049, -0.005170546472072601, -0.04494364187121391, -0.035374369472265244, 0.0013086432591080666, -0.05701379105448723, 0.023209981620311737, -0.007959826849400997, -0.02125365100800991, -0.01570863090455532, -0.07632825523614883, -0.01470387727022171, 0.0201259795576334, -0.0279756560921669, -0.013148313388228416, 0.017578186467289925, 0.05593448132276535, -0.006144160870462656, 0.007579420227557421, -0.04807446151971817, -0.0022507912945002317, 0.038106780499219894, 0.050699636340141296, -0.027847642078995705, -0.0008942296262830496, 0.009901745244860649, -0.009855770505964756, 0.02870357595384121, -0.04719704017043114, 0.03617388382554054, -0.005193380173295736, -0.014589961618185043, -0.02443658374249935, 0.03571048006415367, -0.01811881549656391, -0.04711846262216568, 0.007027711719274521, -0.006904523819684982, -0.004228190518915653, -0.028237082064151764, -0.06514593213796616, 0.01656362973153591, -0.05703456327319145, -0.03627045080065727, -0.04550633952021599, 0.024259304627776146, 0.012226316146552563, 0.007212422788143158, -0.03092234395444393, -0.061783988028764725, 0.149674192070961, 0.046936988830566406, 0.030136337503790855, 0.014904189854860306, 0.030372221022844315, 0.05492894724011421, 0.03746965155005455, -0.0024677617475390434, -0.00372199690900743, -0.011976155452430248, 0.0370696559548378, 0.0081024169921875, 0.04063597321510315, -0.05709657073020935, 0.03733761981129646, 0.04469512403011322, -0.03520696982741356, 0.03307168930768967, 0.026106514036655426, -0.04907424747943878, -0.03944028541445732, 0.026681069284677505, -0.0038661870639771223, 0.0456727035343647, -0.020123770460486412, 0.04336808994412422, 0.022320730611681938, -0.048736874014139175, -0.027930565178394318, -0.0024557567667216063, 0.021152352914214134, -0.025937052443623543, 0.04246263951063156, -0.015854954719543457, -0.06266221404075623, 0.06477157026529312, -0.015427252277731895, -0.029166970402002335, 0.014065487310290337, 0.022966550663113594, 0.026721512898802757, -0.002846522256731987, 0.059209782630205154, -0.06810086965560913, 0.012894559651613235, 0.013922221027314663, -0.02921861782670021, 0.020452547818422318, 0.0040743350982666016, -0.004314187448471785, 0.030660409480333328, -0.0297312680631876, 0.023789148777723312, 0.00962040014564991, -0.013093341141939163, -0.01905248314142227, -0.00020336738089099526, -0.020495111122727394, -0.02704705111682415, -0.023350883275270462, 0.03623545914888382, 0.015146232210099697, -0.02194204553961754, 0.013129656203091145, -0.036620959639549255, 0.035899121314287186, 0.022692980244755745, 0.01977923884987831, 0.0032747492659837008, -0.033109549432992935, -0.00784514844417572, -0.007493329234421253, -0.006534703075885773, -0.008885598741471767, 0.034489989280700684, 0.03686738386750221, -0.006139392498880625, 0.05662452429533005, 0.015014448203146458, -0.035819124430418015, -0.00666428729891777, -0.0253729410469532, -0.020239435136318207, 0.015109322965145111, 0.02262231521308422, 0.012136595323681831, -0.03966324403882027, -0.04339154064655304, -0.05099409818649292, 0.06284300982952118, 0.05096448212862015, 0.03469672054052353, -0.04415089637041092, -0.00068084237864241, 0.006359211169183254 ]
Available 24/7 Free Consultations Robert R. Duncan Why Hire Duncan Law Group? Chicago Construction Site Safety Violation Lawsuits Illinois Bicycle Laws Illinois Car Inspection Laws What Is a Letter of Representation? Illinois Subrogation Statute Robert Duncan Selected to the Top 100: Illinois Super Lawyers List for 2020 Posted on February 27, 2020 in Duncan Law Group is pleased to announce that founder, Bob Duncan, has been named to the list of Super Lawyers for the sixth year in a row and third Top 100: Illinois Super Lawyer selection in the last five years. Super Lawyers is a rating service that allows lawyers to nominate their peers to be highlighted for their professional achievements. Lawyers that make the list are selected through peer nominations, evaluations, and independent research. Attorney Duncan has been selected to the list from 2015 to 2020. About Attorney Duncan Attorney Duncan has represented clients who have suffered from injuries in cases ranging from medical malpractice to catastrophic personal injury and has experience in both federal and state courts. In addition to his personal injury and medical negligence practice, Attorney Duncan represents thousands of individuals in class action cases against some of the largest corporate institutions in the United States. A 2002 graduate from the University of Illinois College of Law, he's also been recognized on the Top 40 Under 40 for the National Trial Lawyers Association from 2012 to 2017 and is regularly invited to speak at seminars on topics including civil practice and procedure. View Attorney Robert Duncan's CV here. Tens of Millions Recovered for Injured Clients At Duncan Law Group, our attorneys take client recovery seriously. We empathize with individuals who have been harmed as a result of another's negligence and work tirelessly to ensure our clients receive the compensation they're owed for their injuries, which can include medical bills, lost wages, and property damage. Our team of accomplished Chicago personal injury attorneys has recovered tens of millions of dollars on behalf of our clients, proving our dedication to helping the injured heal and move on with their lives. If you want to seek justice for your injuries, look no further than Duncan Law Group. Call our personal injury law firm today at (312) 202-3283, or contact us online. IF YOU OR A LOVED ONE HAS BEEN INJURED IN AN ACCIDENT, DON'T WAIT - SPEAK TO OUR ATTORNEY TODAY! Request Your Free Consultation Chicago office 161 N. Clark, Suite 2550A Chicago, IL 60601 Get Directions Wheaton office 1776 S. Naperville Rd., Wheaton, IL 60189 Get Directions Moline Office 1610 5th Ave. Moline, IL 61625 Get Directions Copyright ยฉ 2022 Duncan Law Group The information presented on this website is not meant as legal advice. Please contact Duncan Law Group for answers to your accident and personal injury questions.
[ -0.03900744765996933, -0.0055905673652887344, -0.030790409073233604, 0.010000159032642841, -0.015125502832233906, -0.02489028312265873, -0.01011273730546236, 0.019350294023752213, 0.028760530054569244, 0.02410985343158245, 0.041362348943948746, -0.003079335205256939, 0.02043209783732891, -0.05060417577624321, -0.01248252671211958, -0.01492264959961176, -0.04215405508875847, -0.02415880560874939, 0.019920621067285538, 0.013277260586619377, -0.014229508116841316, 0.015311447903513908, -0.02831244468688965, -0.023531872779130936, -0.011164135299623013, 0.03370580077171326, 0.021297885105013847, -0.014317106455564499, 0.06295084953308105, 0.05053558945655823, -0.03579309955239296, -0.03653693571686745, 0.02571762166917324, -0.047788336873054504, -0.044593069702386856, -0.045030832290649414, 0.06818792223930359, -0.002553303260356188, -0.014933344908058643, -0.037833813577890396, -0.004041693173348904, -0.0067866793833673, 0.025189243257045746, -0.050347305834293365, -0.06263284385204315, -0.007794377859681845, -0.012726759538054466, -0.032688628882169724, -0.004735110327601433, -0.05377625301480293, 0.0028026169165968895, 0.01080735120922327, 0.03161729499697685, 0.0043419296853244305, 0.01598929427564144, -0.004112936556339264, -0.011171395890414715, -0.023281952366232872, -0.018341653048992157, 0.046303849667310715, 0.03840772435069084, -0.007321224082261324, 0.03760441392660141, -0.02722747251391411, 0.058299627155065536, 0.01765771582722664, 0.007141484413295984, -0.022175399586558342, 0.02458326332271099, -0.030211633071303368, -0.0025169127620756626, 0.017061403021216393, -0.027548115700483322, 0.016070181503891945, -0.011197988875210285, 0.029349680989980698, -0.007027918007224798, 0.0011070528998970985, 0.005453249905258417, 0.0006946242647245526, 0.00018644319789018482, 0.014788683503866196, 0.022873185575008392, 0.02239682339131832, -0.053105294704437256, 0.007920768111944199, -0.005013287998735905, 0.038608744740486145, 0.013037919998168945, 0.019962241873145103, 0.01677526719868183, 0.04962153732776642, 0.007963134907186031, -0.025898462161421776, 0.027306878939270973, 0.03247644752264023, -0.06289979815483093, 0.011455746367573738, 0.0024922958109527826, 0.005456820596009493, 0.038223426789045334, 0.026746707037091255, 0.007885202765464783, 0.04763432964682579, -0.03376011177897453, -0.010652809403836727, -0.01485332753509283, -0.028400523588061333, -0.004495583008974791, -0.022080451250076294, 0.01515272818505764, -0.02766207791864872, 0.007517288438975811, -0.005140453111380339, 0.00904513243585825, 0.03741899132728577, 0.001645270036533475, 0.03178532049059868, -0.03510851413011551, 0.01366481278091669, 0.0314222015440464, 0.020209183916449547, 0.054119840264320374, -0.03348197042942047, 0.00731873232871294, -0.04333085939288139, -0.020413285121321678, 0.0503225214779377, -0.012660899199545383, 0.0113242631778121, 0.0078641502186656, -0.0378740094602108, -0.027748800814151764, 0.031015271320939064, 0.005137343425303698, 0.0077388696372509, -0.013687542639672756, 0.017404906451702118, 0.03995620086789131, -0.0486760176718235, 0.037791699171066284, 0.004360430408269167, -0.015096149407327175, 0.08383942395448685, 0.047301195561885834, 0.024701915681362152, -0.035577330738306046, -0.021493246778845787, -0.02378983423113823, 0.007596045266836882, -0.06017458811402321, 0.023466816172003746, 0.01048955600708723, 0.01983063854277134, 0.009078406728804111, -0.018599027767777443, 0.001526788342744112, 0.003258160315454006, 0.031217161566019058, 0.029282014816999435, -0.020500417798757553, -0.0006052599637769163, -0.010548248887062073, 0.02887389250099659, 0.010064078494906425, 0.026520023122429848, -0.033197883516550064, -0.01053634937852621, -0.020047197118401527, -0.03035828284919262, 0.02653641253709793, -0.011453093960881233, -0.02197565697133541, 0.0006195557652972639, 0.04020405560731888, 0.024046439677476883, 0.02940157800912857, -0.004383509978652, 0.01290844101458788, 0.04734884575009346, -0.04152487963438034, -0.013478872366249561, -0.001075900625437498, 0.02517927624285221, -0.010213891975581646, -0.005272355861961842, 0.007677681744098663, -0.017388775944709778, -0.03321995586156845, -0.025957951322197914, 0.009718207642436028, 0.013225756585597992, -0.0226858239620924, 0.012600100599229336, 0.0007995327468961477, 0.007325515151023865, -0.008957509882748127, -0.009952070191502571, 0.012262863107025623, -0.04477670043706894, 0.019756820052862167, 0.04062279686331749, -0.02538636326789856, 0.015956124290823936, -0.017229270190000534, -0.04095520079135895, 0.0497039332985878, 0.0808410793542862, -0.044152725487947464, -0.01301537360996008, 0.02735046111047268, 0.01666102185845375, -0.032697971910238266, -0.015155453234910965, 0.008088513277471066, -0.0004449457919690758, -0.030120814219117165, 0.041098155081272125, -0.012519844807684422, -0.0424993559718132, 0.013341745361685753, -0.003293245565146208, 0.049940742552280426, 0.02645007148385048, 0.00467362767085433, 0.010489736683666706, 0.012325122952461243, 0.032672058790922165, -0.03781671077013016, -0.007014194969087839, 0.01686534658074379, 0.06276557594537735, 0.0044379448518157005, 0.053491462022066116, 0.01467618066817522, -0.0015160215552896261, 0.05730990320444107, 0.030578436329960823, 0.007007550913840532, 0.02472720853984356, -0.005241613835096359, 0.02719135209918022, 0.04329916089773178, 0.02242336980998516, -0.01683110184967518, 0.030453002080321312, -0.011163035407662392, -0.0007599322707392275, -0.05092853680253029, 0.009732541628181934, 0.004944187123328447, 0.03287940099835396, 0.019493665546178818, 0.04530744254589081, -0.04372185096144676, 0.0060020736418664455, 0.047369539737701416, 0.07759775221347809, -0.04518644139170647, 0.006559894420206547, 0.005179090891033411, 0.024089917540550232, -0.050722066313028336, 0.0211620032787323, 0.016685202717781067, 0.025647275149822235, -0.006769106257706881, 0.00393280852586031, -0.022479157894849777, -0.031056182458996773, -0.028840096667408943, -0.04508461803197861, -0.003967175260186195, -0.03209774196147919, -0.049406662583351135, -0.020672695711255074, 0.03229113295674324, -0.03572680801153183, 0.0454576276242733, -0.01580077037215233, -0.00866291020065546, 0.009389882907271385, -0.02097867801785469, 0.026993023231625557, 0.031170515343546867, 0.05851118266582489, -0.02686372771859169, 0.017793644219636917, 0.0003067245415877551, 0.02665669471025467, -0.03061535395681858, -0.03488321229815483, -0.01924329251050949, -0.012565312907099724, 0.04544530808925629, 0.001027631456963718, -0.011947217397391796, -0.018577812239527702, -0.0504581555724144, -0.04014790058135986, 0.027024291455745697, 0.018764421343803406, 0.004123465623706579, 0.005748780444264412, -0.05825811251997948, 0.05077889934182167, 0.030193334445357323, -0.036032795906066895, 0.058474455028772354, 0.0575956255197525, -0.01384658645838499, 0.058617621660232544, 0.02820442244410515, -0.01124509796500206, -0.03461844474077225, 0.04535636305809021, 0.031093258410692215, -0.002308906288817525, -0.019497498869895935, -0.02761104889214039, -0.013918878510594368, 0.020575977861881256, -0.002852733014151454, -0.022479360923171043, -0.011256938800215721, 0.04196222499012947, 0.029149413108825684, -0.06023387983441353, 0.049617867916822433, -0.04854791983962059, -0.04074160382151604, -0.038113389164209366, -0.04388434812426567, 0.006475001107901335, 0.006580016575753689, 0.002642781939357519, 0.023730725049972534, -0.028249137103557587, 0.00041365341166965663, 0.00047903458471409976, 0.05682269483804703, -0.031083865091204643, 0.01776643842458725, 0.02769644930958748, 0.001635375083424151, 0.01243528164923191, 0.0216724444180727, -0.023817013949155807, 0.014818503521382809, 0.037290167063474655, -0.027570834383368492, 0.03722071647644043, 0.019464638084173203, -0.0007535330951213837, 0.021743755787611008, 0.0512915700674057, -0.024538101628422737, -0.0095039252191782, 0.015525953844189644, 0.03271470218896866, 0.03494323045015335, -0.012338432483375072, 0.005939483642578125, -0.006610236596316099, -0.03695882484316826, -0.048298180103302, 0.022291431203484535, -0.017851252108812332, 0.04824770614504814, -0.05264924839138985, 0.06783897429704666, 0.03175532817840576, -0.017360463738441467, 0.03911352902650833, -0.0670747458934784, -0.03655146807432175, 0.008336749859154224, 0.004431982524693012, 0.030399052426218987, -0.013367838226258755, 0.01698511838912964, -0.009270278736948967, 0.004723827354609966, 0.0492997020483017, 0.004551188088953495, -0.01390193123370409, -0.05328342318534851, -0.004085888154804707, -0.02200627140700817, -0.0006620053900405765, -0.010197808034718037, -0.03281202167272568, 0.015828430652618408, 0.014207180589437485, -0.03706422820687294, -0.026533417403697968, 0.012337747029960155, 0.03654804080724716, 0.03944241255521774, -0.02920876257121563, 0.0336451455950737, -0.0036915859673172235, 0.023119695484638214, 0.020806919783353806, -0.021320847794413567, 0.006545967888087034, -0.06500208377838135, 0.047227755188941956, 0.00685442890971899, 0.00433633616194129, -0.041697122156620026, -0.01590203307569027, -0.0002723516372498125, 0.03161806985735893, 0.010308204218745232, -0.029811833053827286, -0.013134998269379139, 0.0007244895678013563, -0.012076676823198795, 0.04269801452755928, -0.04213476926088333, -0.009111377410590649, 0.021382097154855728, 0.05167657509446144, 0.027720771729946136, -0.0427887961268425, 0.020581617951393127, -0.046689748764038086, 0.041702233254909515, 0.05543571710586548, 0.004385769832879305, -0.03540554642677307, -0.010172106325626373, -0.038310520350933075, -0.014111476950347424, -0.009416944347321987, 0.05637824162840843, -0.010681316256523132, 0.004441813565790653, -0.053799331188201904, 0.0007472062716260552, 0.051361873745918274, 0.002319707302376628, -0.034683749079704285, -0.01707637496292591, 0.0027370243333280087, -0.03729075565934181, 0.01504650991410017, -0.003770309267565608, -0.03694610297679901, 0.0010294199455529451, -0.06558931618928909, 0.047861937433481216, -0.023977573961019516, -0.05210475996136665, -0.012973111122846603, 0.03839239105582237, 0.017024539411067963, 0.049312010407447815, -0.022012583911418915, 0.05081048980355263, -0.011497288942337036, 0.03406282514333725, -0.04111548513174057, -0.025780536234378815, 0.024217111989855766, -0.013961391523480415, -0.030330924317240715, 0.045942507684230804, -0.00038628571201115847, -0.020891433581709862, 0.001940664486028254, 0.03641727939248085, -0.03638538718223572, 0.05874777212738991, -0.04314311593770981, 0.04362114518880844, 0.000939618912525475, -0.05308989807963371, 0.02016240544617176, -0.034599240869283676, 0.02940892055630684, 0.0008359497296623886, -0.018922872841358185, -0.03801490366458893, -0.06045472249388695, -0.0189146026968956, 0.002836034633219242, -0.012823815457522869, 0.01072347816079855, -0.00446525402367115, 0.016769113019108772, -0.0197734571993351, -0.021047810092568398, 0.0022253922652453184, 0.007282264064997435, -0.012640614993870258, 0.008636203594505787, 0.005261615384370089, 0.018705636262893677, -0.0020159457344561815, 0.01267351396381855, -0.05477159470319748, 0.019100861623883247, -0.010716558434069157, -0.01741134747862816, -0.044569261372089386, 0.004721023607999086, -0.021600713953375816, 0.011383900418877602, -0.030223509296774864, -0.006753170862793922, -0.011923464946448803, 0.03838147968053818, 0.023853503167629242, -0.0005888451123610139, 0.01971440762281418, 0.03250826522707939, -0.019308436661958694, 0.04074768349528313, 0.02050020359456539, -0.07342042773962021, -0.03254377469420433, 0.030551569536328316, -0.026157962158322334, 0.03030427359044552, 0.018437309190630913, -0.03920987993478775, -0.05295134708285332, -0.03432915732264519, 0.0018477498088032007, -0.048263099044561386, -0.03720666468143463, -0.03470182418823242, -0.032515887171030045, -0.016444982960820198, 0.022838972508907318, 0.03645946457982063, -0.0048432620242238045, 0.007070654537528753, -0.024172373116016388, 0.022595807909965515, -0.029366470873355865, -0.0354471281170845, -0.012223268859088421, -0.029728097841143608, 0.0075328657403588295, 0.0675877258181572, 0.02475355565547943, 0.01828305795788765, 0.017772138118743896, -0.01607426442205906, 0.028860488906502724, -0.019938014447689056, -0.05954024940729141, -0.055936411023139954, -0.01694418303668499, -0.00008923408313421533, 0.0015248141717165709, 0.0033239310141652822, -0.019847800955176353, 0.06485795229673386, -0.030605832114815712, 0.013106700964272022, -0.007583565544337034, 0.003921227995306253, -0.004839115310460329, -0.03148298338055611, 0.0584239661693573, -0.03254663944244385, -0.017768125981092453, 0.004930529277771711, 0.0628182590007782, 0.02972188964486122, 0.01380364503711462, -0.03534914180636406, -0.027976712211966515, -0.04519840329885483, -0.06531500071287155, 0.033248208463191986, -0.028109215199947357, -0.0213841050863266, -0.07615870237350464, -0.02789284661412239, 0.0564417690038681, -0.022783171385526657, 0.04615342989563942, 0.02536955289542675, -0.002523121889680624, -0.007349058054387569, 0.021369442343711853, 0.03292941302061081, 0.037892892956733704, -0.02748824469745159, -0.0129791758954525, -0.00892027746886015, -0.03451452776789665, 0.005559777840971947, -0.04714097082614899, -0.0309445858001709, -0.06190618872642517, -0.03226744756102562, 0.0644773319363594, -0.034621551632881165, 0.05943721532821655, -0.00033832938061095774, -0.044200364500284195, -0.07405560463666916, 0.08189861476421356, -0.012202484533190727, 0.04292807728052139, 0.04957617074251175, -0.050437361001968384, -0.011947402730584145, 0.005363475531339645, -0.004042853135615587, -0.00547529011964798, -0.043623004108667374, 0.058747682720422745, 0.0073298318311572075, -0.019627302885055542, -0.005210755858570337, 0.05516057088971138, -0.059470903128385544, -0.031082339584827423, 0.010940498672425747, -0.002053705742582679, -0.010531250387430191, -0.04752613231539726, 0.015922952443361282, 0.022332457825541496, -0.022886116057634354, -0.006019750144332647, 0.07159700989723206, -0.0008672007243148983, 0.04879381135106087, -0.012365561909973621, 0.08999677002429962, -0.01992458663880825, -0.0018839070107787848, 0.033266108483076096, 0.022837607190012932, -0.006314848084002733, -0.04806460067629814, -0.03185444697737694, 0.010322179645299911, -0.010285116732120514, 0.04862392321228981, -0.026044461876153946, 0.01278637908399105, 0.024799639359116554, -0.012661018408834934, 0.031189555302262306, -0.007585498970001936, -0.027203358709812164, 0.00713651068508625, -0.02657316066324711, -0.03752638399600983, -0.03018324077129364, 0.02138337679207325, 0.023235423490405083, 0.037842508405447006, -0.05597632750868797, -0.018081028014421463, 0.024091288447380066, 0.03039035014808178, 0.006156683899462223, -0.05232138931751251, -0.031045014038681984, -0.004609116353094578, -0.03850952908396721, -0.023956745862960815, -0.014051491394639015, -0.006476647220551968, 0.013342728838324547, -0.00719024520367384, -0.06114088371396065, 0.005096913781017065, 0.00826252531260252, -0.0347946397960186, -0.00902540236711502, -0.05941557511687279, 0.009096126072108746, -0.019202901050448418, -0.013576202094554901, -0.035672370344400406, 0.011883212253451347, -0.016121545806527138, 0.02923106960952282, -0.018644753843545914, 0.022358471527695656, 0.015478318557143211, 0.021855361759662628, 0.002014064695686102, -0.02301262505352497, -0.01917068101465702, -0.04252675920724869, -0.021322274580597878, 0.02212384156882763, 0.011515473946928978, 0.03314563259482384, 0.02496848814189434, -0.02051737904548645, 0.046579938381910324, -0.012825378216803074, -0.0044021387584507465, -0.007924654521048069, 0.012630356475710869, 0.0046766833402216434, -0.0002739331976044923, -0.04779859259724617, -0.03468140587210655, -0.015696890652179718, -0.03623121604323387, 0.03377535566687584, 0.03453238680958748, 0.03668224811553955, -0.025937974452972412, -0.018765952438116074, 0.006685028318315744, 0.056945156306028366, -0.03826732933521271, 0.004454032052308321, -0.0021371408365666866, 0.040885910391807556, 0.029327740892767906, -0.011331780813634396, 0.0403234139084816, 0.020158670842647552, 0.005294303875416517, -0.013528717681765556, 0.003413374302908778, 0.01750332862138748, 0.025218093767762184, 0.049194399267435074, -0.02511361800134182, -0.0010844651842489839, -0.031527671962976456, -0.029859501868486404, 0.009208567440509796, 0.08071707934141159, 0.004825810436159372, -0.0020428260322660208, 0.029576223343610764, -0.021690422669053078, -0.03262855485081673, 0.024154791608452797, -0.059991784393787384, -0.013713611289858818, 0.06366658955812454, -0.01554443035274744, -0.005662125069648027, -0.04351997375488281, -0.05238177627325058, -0.0025172699242830276, -0.022385410964488983, -0.010079782456159592, -0.02744738757610321, 0.03004159778356552, 0.004430070053786039, 0.0391191802918911, 0.002493425039574504, 0.02646680176258087, 0.015407390892505646, 0.06677286326885223, -0.04911534860730171, -0.04886946454644203, 0.025450434535741806, 0.0037333194632083178, 0.0032163665164262056, -0.0024462039582431316, 0.0006611422868445516, 0.020501911640167236, -0.016388585790991783, -0.0050217946991324425, 0.035383280366659164, 0.017581943422555923, 0.004641109146177769, 0.0063005476258695126, -0.025141872465610504, 0.006628643721342087, -0.025333473458886147, 0.06071307882666588, -0.012035269290208817, -0.05834897980093956, -0.03242109343409538, 0.026652486994862556, 0.03346347063779831, -0.0031985705718398094, 0.04746465012431145, 0.0011421843664720654, 0.04520581290125847, -0.01745964027941227, 0.010956600308418274, -0.02207460254430771, 0.04488897696137428, 0.0487220361828804, 0.030606945976614952, 0.01598607562482357, 0.03915739804506302, 0.053627170622348785, 0.017306886613368988, -0.010369937866926193, 0.017554249614477158, 0.021406082436442375, -0.02498709224164486, 0.0034015330020338297, -0.01962106116116047, 0.06149568781256676, 0.021446468308568, -0.02744973823428154, 0.005922520067542791, -0.06497445702552795, 0.024924110621213913, -0.028202028945088387, 0.0013509535929188132, 0.047058213502168655, -0.026690278202295303, 0.0014164920430630445, 0.009164592251181602, -0.022380750626325607, -0.010301127098500729, 0.028568085283041, 0.01639830321073532, -0.00642052898183465, 0.05791627988219261, 0.02099345251917839, -0.0029714147094637156, 0.048784565180540085, 0.0004345627676229924, -0.00014568932238034904, -0.05550917237997055, -0.013110135681927204, 0.009455028921365738, 0.0031776318792253733, -0.005523858591914177, 0.02849673666059971, -0.021244125440716743, 0.007626907434314489, -0.025100748986005783, 0.013839379884302616, 0.04248335584998131, -0.06863637268543243, -0.03609737753868103, -0.02956410124897957, 0.04539063945412636, -0.03698304295539856, 0.005858047399669886, 0.04826304689049721, -0.040413547307252884, -0.04523308202624321, 0.037792131304740906, -0.003114616498351097, 0.020725352689623833, 0.001364583964459598, 0.040996599942445755, 0.018523216247558594, 0.020450973883271217, 0.07347214967012405, -0.07415122538805008, 0.00962576363235712, 0.019089892506599426, -0.03226179629564285, -0.06793016940355301, -0.026210080832242966, -0.04843162000179291, -0.01891029253602028, -0.018894152715802193, 0.002640252001583576, 0.00913071259856224, 0.04591307416558266, 0.014966118149459362, -0.06184006482362747, 0.005402142181992531, 0.03713329881429672, -0.05252166464924812, 0.02279607579112053, 0.009989515878260136, 0.05075475573539734, -0.015614019706845284, -0.016416186466813087, -0.008911386132240295, -0.0455755777657032, -0.009904984384775162, -0.03854648768901825, 0.011759421788156033, -0.00846066139638424, -0.03688306361436844, -0.04918776452541351, -0.0196149330586195, -0.036021701991558075, 0.004240956157445908, -0.05394700542092323, -0.03322208300232887, 0.014674870297312737, 0.05540541186928749, -0.02273428440093994, 0.009678547270596027, -0.010027457028627396, 0.015008005313575268, 0.009783901274204254, 0.057755641639232635, 0.016170630231499672, 0.03666060417890549, 0.030578382313251495, -0.027202121913433075, 0.015520035289227962, -0.015538080595433712, 0.018266011029481888, -0.008636153303086758, -0.030657727271318436, -0.03981884568929672, 0.02682824619114399, -0.035103559494018555, -0.07838474959135056, 0.017178121954202652, 0.032394155859947205, 0.012728785164654255, -0.02221420221030712, -0.059080179780721664, 0.010037973523139954, -0.01869894005358219, -0.02494819462299347, -0.04732519015669823, 0.01639935001730919, 0.01264745183289051, -0.0018768695881590247, 0.017756981775164604, -0.08112899959087372, 0.1347988098859787, 0.018288584426045418, 0.014729597605764866, 0.03285587206482887, 0.0272735096514225, 0.059585463255643845, 0.034769583493471146, -0.012106368318200111, -0.020150750875473022, -0.053585730493068695, 0.02260679565370083, -0.02645184099674225, 0.014985578134655952, 0.003362760180607438, 0.029647251591086388, 0.058079805225133896, -0.05946888402104378, -0.019799331203103065, -0.001915350672788918, -0.05768983066082001, -0.02130795083940029, 0.029268892481923103, 0.0016119562787935138, 0.012187161482870579, -0.00201936112716794, -0.019488360732793808, 0.02385292574763298, -0.07019557058811188, -0.023477081209421158, 0.0007574961637146771, 0.03330352529883385, -0.030821148306131363, 0.03867929428815842, -0.031298961490392685, -0.018749406561255455, 0.04695453867316246, 0.03379475325345993, -0.013310270383954048, 0.012946776114404202, 0.03617740422487259, -0.023058367893099785, -0.00004412381167639978, 0.041050612926483154, -0.05290072038769722, 0.010339914821088314, 0.006888933479785919, -0.04989078268408775, 0.003006519051268697, 0.026341797783970833, -0.026775401085615158, 0.01892201229929924, -0.017294440418481827, 0.027686892077326775, -0.0014342512004077435, -0.01411279197782278, 0.0392327681183815, -0.005827633664011955, -0.01662038452923298, -0.02719085104763508, -0.005827165208756924, 0.03689924627542496, 0.02878980152308941, -0.02710164338350296, 0.006648300681263208, -0.015684029087424278, 0.01593630760908127, 0.018234414979815483, 0.018049953505396843, -0.02550925873219967, 0.012198916636407375, 0.01130003947764635, -0.024216221645474434, -0.009204146452248096, -0.042372237890958786, 0.02513350546360016, 0.04413885995745659, -0.029360419139266014, 0.03118743747472763, 0.03740186616778374, -0.006697408389300108, -0.022270524874329567, -0.027875250205397606, -0.014552043750882149, -0.0048370216973125935, 0.019853409379720688, 0.05498620867729187, -0.043739091604948044, -0.027412941679358482, -0.04830210655927658, 0.03869668394327164, 0.03275974094867706, 0.014421102590858936, -0.011130496859550476, 0.011018411256372929, -0.02934758923947811 ]
Book The Venue Upcoming Events ยซ Who is Jill Scott? 20th Anniversary Tour ยซ Music Hall at Fair Park Music Hall at Fair Park Music Hall at Fair Park ***Please note: On the day of the performance, tickets will be available for purchase at the Music Hall Box Office beginning 1 1/2 hours before the performance.*** 909 1st Ave Who is Jill Scott? 20th Anniversary Tour Show times may vary, Buy Tickets to pick times. Three-time Grammy Award-winning singer-songwriter, New York Times best-selling poet, and critically acclaimed actor are only a few titles held by Jill Scott. Before having the #1 album in the country with "The Light of The Sun", performing at The White House, being named People Magazine's Top TV Breakout Star of 2010 and appearing on VH1 Divas alongside Aretha Franklin, the triple threat began her career collaborating with musical icons, The Roots, Will Smith, and Common in the late 90s. In 2000, she released her much anticipated debut record, Who is Jill Scott? Words & Sounds, Vol. 1, a double platinum album that earned Scott several Grammy nominations, including Best New Artist. Two more critically acclaimed albums followed, Beautifully Human: Words & Sounds, Vol. 2 and The Real Thing: Words & Sounds, Vol. 3 which garnered two more Grammy Awards and spawned multiple worldwide tours. Never limited to music, Jill Scott is a true multimedia brand across books, clothing, TV and film. Most recently, Jill starred in Get On Up: A James Brown Biopic, as DeeDee, the wife of James Brown. She also starred alongside Tyler Perry & Janet Jackson in the #1 national movie series Why Did I Get Married? (Pt. 1 and 2), Baggage Claim, Steel Magnolias and Sins of the Mother which aired on Lifetime and became the second-most watched premiere in the network's history. Jill was also casted as the lead character in the HBO/BBC mini-series filmed on location in Botswana, The No.1 Ladies Detective Agency, a Peabody Award-winning show directed by the late Oscar Award-winning director Anthony Minghella. In 2017, Jill Scott was casted as "Nayyirah Shariff" in the original Lifetime film Flint, a drama based on the Flint water crisis in Flint, Michigan โ€“ also starring Betsy Brandy, Marin Ireland and Queen Latifah. A consummate writer at heart, she penned The Moments, The Minutes, The Hours, a compilation of poems that instantly became a New York Times bestseller. Scott also developed an intimates line for Ashley Stewart and founded Blues Babe, a registered 501(c)3 foundation that has raised over hundreds of thousands dollars to support minority students pursuing college degrees. Jill released her highly anticipated 5th studio album WOMAN on July 24, 2015 which opened on the music charts at #1 giving Jill her 2nd consecutive number one album. In January of 2017, Jill Scott marked her brand's expansion into stationary, releasing an exclusive "Jill Scott" greeting card collection in partnership with Hallmark Mahogany. Jill Scott received a 2017 Grammy nomination in the "Best Traditional R&B Performance" category for her single, "Can't Wait." Jill's most recent endeavor โ€“ find her taking on the role of "Hazel" in the BET + remake of the 1996 romantic comedy, The First Wives Club. Sech Suenos Tour 2020 Music Hall at Fair Park is proudly powered by WordPress Jeffrey Osborne and Peabo Bryson
[ -0.038581881672143936, -0.011001678183674812, -0.01550976186990738, 0.006622702348977327, -0.017339373007416725, -0.014115909114480019, -0.05201856791973114, 0.018255947157740593, -0.004468604456633329, -0.008697018958628178, 0.034019652754068375, -0.005511428229510784, 0.02373240888118744, -0.051684603095054626, -0.018459588289260864, 0.004107345826923847, -0.0471624992787838, 0.009760525077581406, -0.02078542299568653, 0.00308353453874588, -0.0041271997615695, 0.004289721604436636, -0.06396987289190292, -0.009570366702973843, -0.015690093860030174, 0.05705077201128006, 0.02623353712260723, 0.0009846760658547282, 0.06142926961183548, 0.04728733375668526, -0.034517936408519745, -0.03635674715042114, 0.02745445817708969, -0.02932504005730152, -0.02168702706694603, -0.03677840530872345, 0.0477139949798584, -0.017356932163238525, -0.03942896053195, -0.06120273098349571, -0.021715007722377777, -0.024418700486421585, 0.04343794658780098, -0.04029263183474541, -0.05165320634841919, 0.023641791194677353, -0.02760608308017254, -0.026483828201889992, 0.014653075486421585, -0.025195447728037834, -0.023629408329725266, -0.02096082828938961, 0.04376259446144104, -0.012809587642550468, 0.008363007567822933, 0.0035528019070625305, -0.024636344984173775, -0.020116977393627167, -0.02727871760725975, 0.016334928572177887, 0.033613964915275574, -0.006193024106323719, 0.007593747228384018, -0.05130713805556297, 0.023088937625288963, 0.010399439372122288, 0.024389222264289856, -0.02910792827606201, 0.032695285975933075, -0.02917620725929737, 0.013504233211278915, 0.006177538074553013, -0.024473965167999268, -0.016519969329237938, 0.0036291428841650486, 0.007789712864905596, -0.01141408272087574, 0.0014296936569735408, -0.00044946480193175375, -0.004386004526168108, 0.014403984881937504, 0.0423223040997982, 0.010721351951360703, 0.02065192349255085, -0.052276723086833954, -0.03033660352230072, -0.006341014988720417, 0.015634402632713318, 0.004844644106924534, -0.010293731465935707, -0.004139744210988283, 0.07277870923280716, 0.013045825995504856, -0.02531597577035427, 0.04263576120138168, 0.026788203045725822, -0.07089611142873764, 0.017050955444574356, 0.004687592852860689, 0.008372261188924313, -0.008730411529541016, 0.018338026478886604, -0.004674285184592009, 0.042061157524585724, -0.02871023118495941, -0.017258552834391594, 0.020979726687073708, 0.002705143066123128, -0.03323131427168846, -0.032298386096954346, 0.02044801041483879, -0.012602332048118114, 0.027960749343037605, -0.00019935106683988124, -0.00900652538985014, 0.035944320261478424, 0.024558890610933304, 0.05944898724555969, -0.03284914419054985, 0.005517466925084591, 0.038904666900634766, 0.0032010420691221952, 0.04290759935975075, -0.008742529898881912, 0.04586047679185867, -0.04715985804796219, -0.010259375907480717, 0.030475568026304245, -0.022683268412947655, -0.041035477072000504, 0.02798319235444069, -0.041798461228609085, 0.027282925322651863, 0.0025596097111701965, 0.01571488380432129, 0.036153316497802734, 0.009383506141602993, 0.03547942638397217, 0.011949235573410988, -0.06685680896043777, 0.05193794146180153, 0.017955133691430092, 0.004258975386619568, 0.0848960429430008, 0.04765342175960541, 0.029353158548474312, 0.008182570338249207, -0.008586053736507893, -0.0547962412238121, 0.019532157108187675, -0.03043651208281517, 0.05818162485957146, -0.004405740648508072, 0.07481104880571365, 0.03330935165286064, 0.0044212425127625465, -0.014543253928422928, 0.004438288509845734, 0.01969411037862301, 0.06345431506633759, -0.02616729401051998, 0.002408407861366868, 0.0008837681380100548, 0.04232107847929001, -0.011485299095511436, 0.018252238631248474, 0.004300100263208151, -0.016275493428111076, 0.013128814287483692, -0.025335419923067093, 0.028605325147509575, -0.0038515033666044474, -0.015847736969590187, 0.02119923010468483, 0.012671503238379955, 0.027921341359615326, 0.054118622094392776, -0.008081491105258465, 0.021483557298779488, 0.02525916136801243, -0.024760454893112183, -0.011659611016511917, -0.0014728837413713336, 0.058520544320344925, -0.03175155818462372, -0.020649012178182602, -0.023384565487504005, -0.03026852384209633, -0.06972185522317886, -0.03605296090245247, -0.01626712828874588, 0.006701205391436815, -0.031502097845077515, 0.017555831000208855, 0.01062046643346548, 0.03504388779401779, -0.04017484560608864, -0.03603663668036461, -0.051526281982660294, -0.03873510658740997, 0.016269501298666, 0.02849615179002285, -0.026904761791229248, 0.027132024988532066, 0.003402841044589877, -0.009934045374393463, 0.040660008788108826, 0.040368519723415375, -0.0237260852009058, 0.0062716081738471985, 0.03129987418651581, 0.029208390042185783, -0.003974957391619682, -0.018486661836504936, 0.004871070850640535, -0.0060148537158966064, 0.0009723094990476966, 0.04395801201462746, -0.03844042867422104, 0.005130367819219828, -0.002536300802603364, -0.000007335240297834389, 0.049460142850875854, 0.029909668490290642, 0.015460635535418987, -0.016951000317931175, 0.028239982202649117, 0.0502898283302784, -0.030596820637583733, -0.0369717963039875, -0.02143026702105999, 0.042004551738500595, 0.07236742228269577, 0.05783704295754433, 0.043676793575286865, 0.018482863903045654, 0.045266274362802505, 0.03777705505490303, 0.016672618687152863, 0.015568168833851814, -0.009895242750644684, 0.0077910651452839375, 0.05970124527812004, 0.06290509551763535, -0.029422419145703316, 0.009831802919507027, -0.018227804452180862, -0.01216854341328144, 0.001823866507038474, 0.020940620452165604, -0.0002483843418303877, 0.04472813382744789, 0.0014126343885436654, 0.048484884202480316, -0.021192969754338264, 0.021072909235954285, 0.04101277142763138, 0.043085381388664246, -0.000805591931566596, -0.007534670643508434, 0.0008736707968637347, 0.03658474609255791, -0.028652243316173553, -0.007188015151768923, 0.02610022760927677, 0.017885761335492134, -0.022706640884280205, 0.03126497194170952, -0.033078745007514954, -0.06558478623628616, -0.03866022452712059, -0.05224214494228363, -0.028911206871271133, -0.034919366240501404, -0.04349933937191963, -0.004168286453932524, 0.03783633932471275, -0.013248682022094727, 0.02714291214942932, 0.01837867870926857, -0.022162199020385742, -0.04594767093658447, -0.03525695577263832, 0.03813343495130539, 0.05235469713807106, 0.017531994730234146, -0.024475211277604103, 0.04229099676012993, 0.016542397439479828, 0.03977370262145996, -0.026115527376532555, -0.001789017696864903, -0.030085885897278786, -0.017839482054114342, 0.027430742979049683, -0.026257330551743507, -0.027454083785414696, -0.021618887782096863, -0.05901515111327171, -0.037153732031583786, 0.025070104748010635, 0.0363941453397274, -0.008009416051208973, 0.023801520466804504, -0.03352639451622963, 0.06875921785831451, 0.055434368550777435, -0.04909558966755867, 0.031734172254800797, 0.04877253994345665, -0.0122013408690691, 0.061632029712200165, 0.05764400213956833, -0.0029994468204677105, -0.06125936657190323, 0.01135088037699461, 0.05035413056612015, 0.017714256420731544, -0.025691449642181396, 0.0026976936496794224, -0.029945679008960724, 0.012195331044495106, 0.004831749014556408, 0.010608199052512646, -0.03825681656599045, 0.05655505135655403, 0.011180986650288105, -0.062343865633010864, -0.004637349862605333, -0.06890947371721268, 0.007298368960618973, -0.017828920856118202, -0.02395332045853138, 0.00042639116873033345, 0.0472232885658741, 0.027326032519340515, 0.027350427582859993, -0.009498250670731068, -0.004839023109525442, 0.013657455332577229, 0.02942720428109169, -0.020409725606441498, -0.010871296748518944, 0.03929594159126282, -0.0329592265188694, 0.02495192177593708, 0.007776038255542517, -0.02810361236333847, 0.0032939021475613117, 0.001471937634050846, -0.02598557248711586, 0.003959540743380785, -0.00037292324122972786, -0.02386954426765442, 0.012262982316315174, 0.05113457143306732, 0.0010900667402893305, -0.017737213522195816, -0.0021512864623218775, 0.017254875972867012, 0.025883164256811142, 0.017612477764487267, 0.03729001805186272, -0.039104439318180084, -0.03997663035988808, -0.051739297807216644, 0.0350385382771492, -0.007083440199494362, 0.06602709740400314, -0.07318094372749329, 0.05760486051440239, 0.0036856576334685087, -0.017272327095270157, 0.025724045932292938, -0.059155095368623734, 0.007086608093231916, 0.05654013156890869, -0.01247907429933548, 0.02543899230659008, -0.034766897559165955, 0.05252595618367195, -0.04458077624440193, 0.018773416057229042, 0.038133323192596436, 0.005980134941637516, 0.007471070624887943, -0.03578430786728859, -0.015226081013679504, -0.006461719516664743, -0.018235208466649055, -0.011399555951356888, -0.028751280158758163, 0.019071029499173164, 0.0005287608364596963, -0.04019765555858612, -0.05031822994351387, 0.037616971880197525, 0.049684204161167145, 0.008511834777891636, -0.020999513566493988, 0.03790200874209404, 0.021679522469639778, 0.016141923144459724, 0.03135820850729942, -0.0013407075311988592, 0.04017163813114166, -0.05504011735320091, 0.030860882252454758, 0.0024786419235169888, -0.02002584934234619, -0.016628064215183258, -0.03146059438586235, -0.03507044166326523, 0.04283704236149788, 0.028556713834404945, -0.03420863673090935, -0.017680710181593895, 0.005006133113056421, -0.0171054620295763, 0.020784620195627213, -0.03680061921477318, -0.01269244309514761, -0.017311623319983482, 0.015983911231160164, 0.01338296290487051, -0.051472682505846024, 0.029740415513515472, -0.02728118933737278, 0.07782410085201263, 0.057591427117586136, -0.008245430886745453, -0.039347726851701736, -0.02880021184682846, -0.035675350576639175, -0.004964063409715891, 0.03583155572414398, 0.04651540145277977, 0.001087950193323195, -0.0022050340194255114, -0.033900585025548935, 0.047541629523038864, 0.041726406663656235, -0.013570796698331833, 0.004647273104637861, 0.014206917956471443, 0.00753940362483263, 0.012910888530313969, 0.01089760847389698, -0.01808025874197483, -0.005282653495669365, 0.0150059899315238, -0.024827346205711365, 0.005391059909015894, 0.007735265418887138, -0.02624368667602539, 0.006522770505398512, 0.017819810658693314, 0.030647510662674904, 0.03823854401707649, -0.003217142540961504, 0.009647496044635773, -0.0033920968417078257, 0.0466858334839344, -0.03335503488779068, -0.017886197194457054, 0.04506835713982582, 0.03977262228727341, -0.0013018797617405653, 0.011739258654415607, 0.0786108672618866, -0.009936237707734108, 0.04820388928055763, 0.03757104277610779, -0.025073645636439323, 0.03380599245429039, -0.029792869463562965, -0.0030915511306375265, -0.05570307746529579, -0.023285426199436188, -0.013148807920515537, -0.006047483999282122, 0.05300537496805191, 0.008804189041256905, 0.0003782240382861346, -0.036654867231845856, -0.04014255851507187, -0.020595954731106758, -0.023404451087117195, -0.021562501788139343, -0.02188958413898945, 0.028674671426415443, -0.012588542886078358, 0.008374246768653393, 0.0077042412012815475, 0.011974877677857876, -0.021768219769001007, -0.033313922584056854, 0.019722873345017433, -0.023662278428673744, -0.018723471090197563, 0.014308169484138489, -0.009220603853464127, -0.022966567426919937, 0.010735997930169106, 0.012125344946980476, -0.03201250731945038, -0.049488309770822525, -0.0023112839553505182, -0.04895857349038124, -0.004770217463374138, -0.02263021655380726, 0.0020694180857390165, 0.0038970112800598145, 0.01288751233369112, 0.05733812227845192, 0.004796545021235943, 0.009236600250005722, 0.0175885409116745, -0.020590756088495255, 0.0191237423568964, 0.016946732997894287, -0.0059798662550747395, -0.02105666883289814, 0.049991827458143234, 0.002664626808837056, 0.04102769494056702, 0.003379030618816614, -0.014435388147830963, -0.05998147651553154, -0.017686637118458748, 0.016812551766633987, -0.004616193473339081, -0.027339160442352295, -0.05774349719285965, -0.015877151861786842, -0.011009317822754383, 0.031954485923051834, 0.03332829102873802, 0.0029473979957401752, 0.034102797508239746, -0.03337562084197998, 0.015154147520661354, -0.03619445115327835, -0.025647200644016266, -0.02828902006149292, 0.011652106419205666, 0.01749681681394577, 0.028864003717899323, -0.0008994866511784494, 0.05911514535546303, 0.015382981859147549, 0.02127799764275551, 0.0058214254677295685, -0.043671268969774246, -0.05434545874595642, -0.04369140416383743, -0.01928430050611496, -0.008808406069874763, 0.02242084965109825, 0.001072316663339734, -0.0261483546346426, 0.050064533948898315, -0.026511386036872864, -0.009861967526376247, -0.01962307281792164, -0.00017057107470463961, 0.002923083258792758, -0.05702146142721176, 0.07411427795886993, -0.02105342037975788, -0.03409183397889137, -0.002149776788428426, 0.04130735993385315, 0.018588857725262642, -0.017887676134705544, -0.004897642880678177, -0.047781068831682205, -0.03465357422828674, -0.05060028284788132, 0.015367498621344566, -0.007060885429382324, -0.03976552188396454, -0.04342348128557205, -0.032044027000665665, 0.01998155005276203, -0.02542402222752571, 0.05834077671170235, 0.04414742812514305, -0.0024947836063802242, -0.005878935102373362, -0.05405179411172867, 0.000606015557423234, 0.047527920454740524, -0.02495218813419342, -0.02819015458226204, -0.014938345178961754, -0.06108156219124794, -0.03942374885082245, -0.030155124142766, -0.05712050572037697, -0.052186526358127594, -0.03295671194791794, 0.03501015901565552, 0.004834527615457773, 0.04852210357785225, -0.006115985102951527, -0.022089136764407158, -0.05059131979942322, 0.056057702749967575, -0.014288629405200481, 0.01128427218645811, 0.05086935684084892, -0.02729858085513115, -0.020943734794855118, 0.000886670546606183, 0.01688847504556179, -0.002245677402243018, -0.03428707271814346, 0.06155573949217796, 0.003935686312615871, -0.027550693601369858, 0.0637366995215416, 0.0897742509841919, -0.06233474239706993, -0.03152601793408394, -0.005175821948796511, -0.02942982316017151, -0.010319435968995094, -0.050729528069496155, -0.002615679521113634, -0.007166177034378052, -0.02417856827378273, 0.014320993795990944, 0.03668753802776337, 0.014466525055468082, 0.04866664111614227, -0.007179871667176485, 0.010289465077221394, -0.052850402891635895, -0.005853049922734499, 0.015188472345471382, -0.020253386348485947, -0.026208918541669846, -0.03642314299941063, -0.006214211229234934, 0.004469939507544041, -0.0134339714422822, 0.014515640214085579, -0.018598943948745728, 0.008103614673018456, 0.05568963289260864, -0.005854837596416473, 0.02368507906794548, -0.009971166029572487, -0.005044430494308472, 0.0040998682379722595, -0.02872719056904316, -0.03336310759186745, -0.03681290149688721, 0.017153112217783928, 0.001078413100913167, 0.035126037895679474, -0.05519001930952072, 0.021700790151953697, 0.02430104836821556, 0.0015291848685592413, 0.008345218375325203, -0.05395666882395744, -0.024680403992533684, -0.06473749130964279, -0.036796364933252335, -0.009198473766446114, -0.006493536289781332, 0.03982510790228844, 0.03635706007480621, 0.030470822006464005, -0.03170090168714523, -0.009316339157521725, 0.00951115507632494, -0.02783229388296604, 0.013903552666306496, -0.028910312801599503, 0.03749918192625046, -0.016152216121554375, -0.035043492913246155, -0.0348944328725338, -0.00135889183729887, -0.03311321511864662, -0.01431400515139103, 0.0005547960172407329, 0.0048632132820785046, -0.0015493343817070127, 0.02846676856279373, -0.015508678741753101, 0.008548102341592312, -0.021426834166049957, -0.04697329178452492, 0.01875460334122181, 0.015786465257406235, 0.0023694909177720547, 0.05756484344601631, 0.05047190189361572, -0.01999230682849884, 0.0365888774394989, 0.010454963892698288, -0.028864238411188126, -0.024713557213544846, -0.0071322000585496426, 0.00017157322145067155, 0.0026220246218144894, -0.027738362550735474, -0.015122968703508377, -0.007727599237114191, -0.03389207273721695, 0.03994765505194664, -0.0010727567132562399, -0.0018739814404398203, 0.01877911016345024, -0.0016746848123148084, 0.008296117186546326, 0.04808938503265381, 0.002476239576935768, 0.03276925906538963, 0.011647149920463562, 0.008865172043442726, -0.007215678691864014, 0.020902305841445923, 0.023462262004613876, 0.045961808413267136, 0.03864827752113342, -0.033338762819767, -0.003585035214200616, -0.003943209070712328, -0.009991359896957874, 0.04340440779924393, -0.04610294848680496, -0.0504586324095726, -0.06576531380414963, -0.027700399979948997, -0.008916985243558884, 0.045117735862731934, 0.03419594094157219, 0.007492266595363617, 0.01722051203250885, -0.04384014010429382, -0.042857710272073746, 0.010291703045368195, -0.028222734108567238, -0.04639018326997757, 0.029148226603865623, 0.01870325766503811, -0.004435574635863304, -0.01199502032250166, -0.0522773303091526, -0.005159769672900438, 0.0034539252519607544, 0.009632593020796776, -0.02270076423883438, 0.04666649550199509, 0.007588896434754133, 0.03302038088440895, -0.012210769578814507, -0.0009811964118853211, 0.0005902131088078022, 0.06439930200576782, -0.042172178626060486, -0.04549669846892357, 0.0023472774773836136, 0.02926289290189743, 0.04062893986701965, -0.012075016275048256, 0.006696678698062897, 0.011747733689844608, 0.0019208162557333708, -0.000030080456781433895, 0.014417191036045551, 0.005007102154195309, -0.0005136656109243631, 0.028035495430231094, -0.01472530234605074, 0.006369857117533684, -0.0035187366884201765, 0.051345858722925186, -0.013960335403680801, -0.0424126498401165, -0.01701587438583374, 0.04929155483841896, 0.0555901862680912, -0.038421280682086945, 0.02217963896691799, 0.00816046167165041, 0.029973672702908516, -0.031192060559988022, 0.0027496011462062597, -0.01928701065480709, 0.060726605355739594, 0.0427723228931427, 0.039178263396024704, -0.0006931533571332693, 0.0052335369400680065, 0.04858970269560814, 0.013538436032831669, 0.007513015065342188, 0.03969626501202583, 0.03669721260666847, -0.02057364396750927, -0.0364728718996048, -0.012798342853784561, 0.014622492715716362, 0.0054659536108374596, -0.027293112128973007, -0.01534550916403532, -0.01830941252410412, -0.005408088676631451, -0.01757965236902237, -0.009281858801841736, 0.04725395888090134, 0.013223049230873585, 0.01719968020915985, -0.012983797118067741, 0.008846433833241463, -0.02291555143892765, 0.04578806832432747, 0.026609288528561592, 0.033891912549734116, 0.012729961425065994, 0.025861652567982674, -0.018416840583086014, 0.04354160651564598, 0.013644442893564701, -0.012330385856330395, -0.027010388672351837, 0.005547226872295141, 0.02321224845945835, -0.013813234865665436, -0.022599102929234505, 0.009418785572052002, -0.04403611645102501, 0.029381318017840385, -0.016043055802583694, -0.01859961450099945, 0.030914820730686188, -0.060806017369031906, -0.030373936519026756, -0.05706421658396721, 0.05069265514612198, -0.021709274500608444, 0.0032891302835196257, 0.036224670708179474, -0.017577311024069786, -0.021884510293602943, 0.049752555787563324, 0.0025496736634522676, 0.031450603157281876, -0.005322735756635666, 0.030926309525966644, -0.011955722235143185, 0.011327101849019527, 0.05098433047533035, -0.05367877334356308, -0.02805675007402897, 0.012386399321258068, -0.019229242578148842, -0.0530056357383728, -0.042451076209545135, -0.027073878794908524, -0.021506553515791893, -0.031662099063396454, 0.007097683381289244, 0.004862586967647076, 0.025821829214692116, 0.008167512714862823, -0.04766537994146347, 0.0067627038806676865, 0.03869200497865677, -0.0376722551882267, 0.031117163598537445, 0.01979994773864746, 0.05578494444489479, -0.03097827173769474, -0.019340071827173233, -0.054198455065488815, -0.05037319287657738, 0.014138709753751755, -0.05231582745909691, 0.014842931181192398, -0.013371650129556656, 0.002901490544900298, -0.03753409907221794, -0.07222657650709152, -0.009312844835221767, 0.005906233564019203, -0.02629855088889599, -0.04385702311992645, 0.006595565937459469, 0.049460604786872864, 0.010683421045541763, -0.012517742812633514, -0.04925134778022766, -0.023165687918663025, 0.038663655519485474, 0.047044213861227036, -0.03281508386135101, 0.03235934302210808, 0.018080292269587517, -0.0145492572337389, 0.01835179515182972, 0.00018393847858533263, 0.022744396701455116, -0.04105550795793533, -0.047956403344869614, -0.05431296303868294, 0.0068848710507154465, -0.023456262424588203, -0.05646046996116638, -0.0051187253557145596, -0.009294125251471996, 0.018040118739008904, -0.019487105309963226, -0.07163016498088837, 0.003026371356099844, -0.044759996235370636, -0.030088642612099648, -0.03863544389605522, 0.027623498812317848, -0.007905702106654644, -0.01163182407617569, -0.017860187217593193, -0.0743429884314537, 0.14351406693458557, 0.04573171213269234, 0.03524361550807953, 0.0020756053272634745, 0.010905987583100796, 0.03287654370069504, 0.01951831951737404, -0.010095515288412571, -0.003979971632361412, -0.058733079582452774, 0.023646945133805275, -0.01923391781747341, 0.02496352791786194, 0.002634149743244052, 0.0061645652167499065, 0.05919742211699486, -0.012550882063806057, -0.018546095117926598, 0.03301827237010002, -0.06584405153989792, -0.05156780406832695, 0.021839596331119537, -0.008027135394513607, 0.011957736685872078, 0.0017704403726384044, 0.02404048480093479, 0.007671745494008064, -0.022004423663020134, -0.01829700358211994, 0.0002008919109357521, 0.03412454575300217, -0.01351422630250454, 0.05644765496253967, -0.020591337233781815, -0.05348389968276024, 0.03553324192762375, -0.00476490892469883, -0.0029043436516076326, 0.020369235426187515, 0.04951154440641403, 0.009329629130661488, 0.01983913965523243, -0.00046226292033679783, -0.033712998032569885, 0.010847856290638447, 0.027409138157963753, -0.026100879535079002, 0.0008905454888008535, 0.024153148755431175, -0.04895678907632828, 0.03148699179291725, -0.023794187232851982, 0.03741947188973427, -0.008189825341105461, -0.0417000912129879, 0.00035441856016404927, -0.004542861133813858, -0.0211358480155468, -0.03721030801534653, 0.012841254472732544, 0.04417536407709122, 0.015170206315815449, -0.04621771723031998, -0.0026274987030774355, -0.027599960565567017, 0.03271128237247467, 0.05885443463921547, 0.00003727313378476538, -0.009766602888703346, -0.008495853282511234, -0.012504714541137218, -0.022906620055437088, -0.019304661080241203, -0.03445893153548241, 0.0024344606790691614, 0.01497083343565464, -0.024064142256975174, 0.06290454417467117, 0.012833429500460625, -0.027755511924624443, -0.002954417373985052, -0.03515172004699707, 0.0017156216781586409, 0.003781168954446912, 0.04764971137046814, 0.0445338599383831, -0.022121278569102287, -0.049606069922447205, -0.033599842339754105, 0.05411895737051964, 0.053709179162979126, 0.02122431807219982, -0.026048779487609863, -0.01804199069738388, -0.02201191522181034 ]
August 15, 2017 by Clay Song of the Day #3,329: 'Girl (Live)' โ€“ Elvis Costello vs. The Beatles Our second Final Four matchup is a battle of London lads: Elvis Costello vs. The Beatles. A nice connection here, as Costello has been a die-hard Beatles fan since he was nine years old and 27 years later teamed up with Paul McCartney to write an excellent batch of songs that both men released on future albums. Costello made it here by beating Carly Rae Jepsen, John Mayer and Michael Jackson in the first three rounds, then toppling the resilient Taylor Swift with 78% of the vote. The Beatles defeated Shakira, Ben Folds and Lyle Lovett before besting Randy Newman with 75% in Round Four. Quite a gauntlet. This half of the Final Four is identical to the one I arrived at when running through these brackets solo. That means three of the final four artists in the community version match my own picks. Great minds think alike! This is truly a matchup without a loser. I'll be thrilled to see either contestant advance, and saddened to lose the other. Both are top five artists for me and have been for a very long time. I've been a Beatles fan longer. Like a lot of young people, regardless of generation, I discovered the Fab Four in my teens and gobbled up their catalog until I knew it by heart. Once, during a lazy 9th grade summer, I typed out the lyrics to every one of their songs. By ear, on a typewriter. It's with the spirit of that 14-year-old kid that I'm voting for the incomparable Beatles today, even against one of the greatest singer-songwriters ever. [Note: An earlier version of this post featured a performance of 'Penny Lane' by Costello at the White House during Barack Obama's presidency. I later realized I had featured that song on the blog before โ€” a big no-no! โ€” so I replaced it with this song.] Is there anybody going to listen to my story All about the girl who came to stay? She's the kind of girl you want so much It makes you sorry Still, you don't regret a single day Ah girl Girl, girl When I think of all the times I've tried so hard to leave her She will turn to me and start to cry And she promises the earth to me And I believe her After all this times I don't know why Ah, girl She's the kind of girl who puts you down When friends are there, you feel a fool When you say she's looking good She acts as if it's understood She's cool, cool, cool, cool Was she told when she was young that pain Would lead to pleasure? Did she understand it when they said That a man must break his back to earn His day of leisure? Will she still believe it when he's dead? This entry was posted in song of the day and tagged Elvis Costello, mmrd5, montaukmadness, Penny Lane, The Beatles. 5 thoughts on "Song of the Day #3,329: 'Girl (Live)' โ€“ Elvis Costello vs. The Beatles" I need to step back from the contest for a moment to note how wonderful it was to have Obama as our president for eight years for a million reasons, one of which was his appreciation for the arts and the way in which artists embraced him. I can't imagine anyone other than Kid Rock or Ted Nugent playing for our current Embarassment-in-Chief. Sad! Anyway, back to the contestโ€ฆof course I've been a fan of The Beatles since I was probably in diapers, but what you describe occurring for you as a teenager โ€“ becoming a fan as a teenager and gobbling up the records โ€“ was exactly what happened to me with Costello. The only other artist having that same impact on me also made the final four of this contest โ€“ Billy Joel. So for me, the vote goes to Costello, though I too will be happy to see either advance to the championship round. As Daniel said a few rounds ago, it would have been special and unexpected to see a worthy but often under appreciated artist such as Lyle Lovett become the winner of Montauk Madness, as any generic poll might produce a result with Dylan or The Beatles as the winner. Still, now that foolish voters have ousted Lovett from the contest, there is nothing left to do but demonstrate why the Beatles often do end up with that crown. Yes, they influenced countless artists but not without continuing to make a powerful impression on those young people who came along long after they were first making their music, I watched both my brother and my daughter go through similarly obsessive Beatles phases decades (and then decades plus!) after that music had first been released. As Daniel also said in a post earlier in this contest, we don't have the luxury of time having already passed to be able to "prove" that a Taylor Swift, say, will have a lasting appeal (though I'm willing to place bets that my future grandchildren will one day be singing along with her songs). With the Beatles, no such projection is necessary. We know that their music continues to resonate generation after generation. It is not to reward them for having stood the test of time but to recognize how meaningful their music had always been that I cast my vote for the inevitable winner of this here contestโ€ฆ the Beatles. Beatles all the way! The Cool Guy (Daniel) says: I don't necessarily have a dog in this race anymore. Billy Joel is the closest artist still in this competition to my favorite artist, whereas I wouldn't put the other 3 even in my top 10. That being said, as Amy said, I did make a comment a little whiles back saying I think the competition would be boring if The Beatles and Bob Dylan were the final 2. 2 that could be considered the favorite artist by anybody on the street. Perhaps, that means that their rightful place is in the top two. However, I will continue to do what's in my power to make this competition reflect a more unique perspective. Therefore, in that vain I will vote for Elvis Costello. A truly under appreciated artist who is one of the best songwriters out there. He masterfully has worked his way through many genres throughout his prolific career, all the while only on few occasions receiving the audience to correspond with the quality. Here I will try in my small way to rectify that by voting for him. Dana, thanks for stepping back! One day before the best inauguration ever, the best speech ever and the most visited inauguration ever I read about the problems that DT had to find musical support (Nugent, I was a fan, sorry, I was 15 years oldโ€ฆ). My first thought was confirmed the other day: Toby Keithโ€ฆ Back to the contest. Beatles, Costello, Dylan, yadda yadda, I don't care who wins, Lu and Tift won my heart many years ago, I am faithful๐Ÿ˜‰
[ -0.0017200042493641376, -0.006639423780143261, -0.017983943223953247, 0.0015249424614012241, -0.03774850443005562, 0.00033566050115041435, -0.01810470223426819, 0.010058329440653324, 0.02981368452310562, 0.0004028802795801312, 0.04641393572092056, 0.02317493036389351, 0.013776988722383976, -0.03949979692697525, -0.02550675719976425, -0.024284692481160164, -0.03766447305679321, -0.02879943698644638, -0.008311856538057327, 0.005993336904793978, -0.011346329003572464, 0.023030290380120277, -0.04992445930838585, -0.007051814813166857, 0.010493790730834007, 0.0444687195122242, 0.03793583810329437, 0.01604001224040985, 0.030946703627705574, 0.03938401862978935, -0.019081061705946922, -0.021072855219244957, 0.05525306612253189, -0.043273381888866425, -0.02597808465361595, -0.0307678934186697, 0.049261484295129776, -0.010717117227613926, -0.013265683315694332, -0.06212850287556648, 0.003832070156931877, -0.036654114723205566, -0.002232812810689211, -0.01937389187514782, -0.021957481279969215, -0.020422102883458138, 0.0160498209297657, -0.014487170614302158, 0.02790253609418869, -0.04206975921988487, -0.00926282536238432, -0.016978586092591286, 0.016418537124991417, 0.004692857153713703, 0.027356334030628204, -0.013354801572859287, 0.0012511936947703362, -0.0159765537828207, -0.01803053542971611, 0.044923849403858185, 0.016893163323402405, -0.016448691487312317, 0.05008179321885109, -0.06409157812595367, 0.0032614609226584435, 0.0018850447377189994, 0.016674300655722618, -0.03262287750840187, 0.034945257008075714, -0.031105775386095047, -0.03635024651885033, -0.000003841464604192879, -0.035378407686948776, -0.020232321694493294, 0.00985681265592575, 0.004787775222212076, -0.0026592176873236895, 0.008804394863545895, -0.00478982413187623, 0.01589304395020008, 0.006500823423266411, 0.07234867662191391, 0.00241812109015882, 0.023592064157128334, -0.05746481940150261, -0.06279192864894867, 0.014408184215426445, 0.03840426728129387, 0.003585114609450102, -0.005724660586565733, 0.012884678319096565, 0.0544753223657608, 0.0036203404888510704, -0.011621394194662571, 0.058518197387456894, 0.06814322620630264, -0.027924496680498123, 0.012672187760472298, 0.01662406697869301, -0.007103478070348501, 0.053112149238586426, 0.0015656566247344017, -0.030173994600772858, 0.01369169820100069, -0.05535769835114479, -0.009470061399042606, 0.034068308770656586, -0.008365550078451633, 0.01121111772954464, -0.03900570049881935, 0.003319469979032874, -0.028483528643846512, 0.03613615408539772, 0.03496386483311653, -0.04847855120897293, 0.04003502428531647, 0.015858056023716927, 0.07514527440071106, -0.06609991192817688, 0.0053308699280023575, 0.02854059264063835, 0.0004661281709559262, 0.030917907133698463, -0.025656791403889656, 0.004005263093858957, -0.02490171603858471, -0.07105188071727753, 0.07735491544008255, -0.03642493113875389, -0.031841594725847244, 0.007245167158544064, -0.0040120012126863, 0.054072920233011246, 0.026787661015987396, -0.0026001553051173687, 0.040414419025182724, -0.013616599142551422, 0.0319993831217289, 0.0391525998711586, -0.047273240983486176, 0.07443446666002274, 0.015331290662288666, 0.014860779047012329, 0.08377659320831299, -0.04624588415026665, 0.02691015787422657, 0.014851132407784462, 0.016388215124607086, -0.047407787293195724, 0.03676419332623482, -0.03264106065034866, 0.023802705109119415, -0.027905849739909172, 0.05643978714942932, 0.0050735450349748135, 0.00014838420611340553, 0.01053899247199297, -0.0121831726282835, 0.000024104499971144833, 0.025748543441295624, -0.04632725566625595, 0.005785070825368166, -0.010180273093283176, 0.043895695358514786, -0.006713565904647112, 0.014378218911588192, -0.001123923109844327, -0.004334561061114073, -0.001616559224203229, -0.012646066024899483, 0.01197302807122469, -0.007102641277015209, 0.0022162371315062046, 0.029067348688840866, 0.05165789648890495, 0.05706115812063217, 0.037322066724300385, -0.01600034534931183, 0.026193935424089432, 0.020961949601769447, -0.021293114870786667, -0.016723865643143654, -0.01688450016081333, 0.044061172753572464, -0.0007787275244481862, 0.017683636397123337, 0.012633328326046467, -0.00017409873544238508, -0.036374013870954514, -0.02891583926975727, -0.0008978231926448643, 0.014125537127256393, -0.056638605892658234, 0.030822385102510452, 0.038504160940647125, 0.0027826004661619663, -0.004592740908265114, -0.017909394577145576, -0.020922377705574036, -0.045617640018463135, 0.007631688378751278, 0.071670763194561, -0.0365145243704319, 0.0379776768386364, 0.007587970234453678, -0.03319516405463219, 0.04371003806591034, 0.05675211921334267, -0.008281785063445568, 0.021598922088742256, 0.052701037377119064, 0.009865682572126389, 0.0031091950368136168, -0.0076551358215510845, -0.03247140720486641, -0.0044425129890441895, 0.012870303355157375, 0.05812066048383713, 0.0008211174281314015, 0.018308954313397408, -0.004839478060603142, 0.03668348863720894, 0.03385651111602783, 0.022955618798732758, 0.0014185723848640919, -0.026295650750398636, -0.009367680177092552, 0.04153376445174217, -0.020122425630688667, 0.012610248290002346, -0.004226844757795334, 0.0386260524392128, 0.04596700891852379, 0.07069402933120728, 0.03858247771859169, 0.04050537571310997, 0.024810632690787315, 0.010588647797703743, -0.0218973271548748, 0.013812302611768246, 0.007826779037714005, -0.010311129502952099, 0.027984246611595154, 0.043955836445093155, 0.0031465315259993076, 0.04843170940876007, 0.0029738082084804773, 0.008808987215161324, 0.003267883090302348, 0.015329752117395401, 0.016662880778312683, 0.025219112634658813, 0.054290562868118286, 0.0622137188911438, -0.023866448551416397, 0.015985196456313133, 0.03290591388940811, 0.04397951811552048, -0.007269951980561018, -0.03222221881151199, -0.004507871810346842, 0.01467926986515522, -0.020762654021382332, 0.00536138704046607, 0.05266726762056351, 0.012880992144346237, 0.0006709135486744344, 0.02751661092042923, -0.005739825312048197, -0.014630356803536415, -0.022367047145962715, -0.06576909869909286, -0.04558487609028816, -0.016999075189232826, -0.03827785328030586, 0.013799970038235188, 0.034315746277570724, -0.020221631973981857, 0.01703488826751709, -0.02024492621421814, -0.02959102764725685, -0.029306357726454735, -0.0035572792403399944, 0.03989830240607262, 0.005170476622879505, 0.056762006133794785, -0.03394877165555954, 0.054060518741607666, 0.011176115833222866, 0.04780931770801544, -0.0036968181375414133, -0.04265867918729782, 0.0033510506618767977, -0.004414545837789774, -0.012235301546752453, -0.0026422543451189995, -0.019815029576420784, 0.0013473002472892404, -0.038481175899505615, -0.04294506460428238, 0.05335329473018646, 0.04229377582669258, -0.0078016468323767185, 0.013347999192774296, -0.043769676238298416, 0.04341169446706772, 0.03501487895846367, -0.03661367669701576, 0.028952719643712044, 0.04003017768263817, -0.049181144684553146, 0.051827605813741684, 0.05607391521334648, 0.019827673211693764, -0.03098929114639759, 0.05678081512451172, 0.05582461506128311, 0.01527408417314291, -0.044958699494600296, 0.001080099493265152, -0.035264771431684494, -0.015965495258569717, 0.045997243374586105, -0.005664731841534376, -0.05720287933945656, 0.04953128471970558, -0.0005805817199870944, -0.05726681649684906, 0.009716530330479145, -0.04390300437808037, -0.027095269411802292, -0.005539431236684322, -0.03537255525588989, 0.030189432203769684, 0.031153280287981033, 0.025222552940249443, -0.005500552710145712, -0.015895657241344452, 0.007061921525746584, 0.020428426563739777, 0.03313266113400459, -0.048967376351356506, 0.012123607099056244, 0.021875934675335884, -0.005827582906931639, 0.01060313917696476, 0.0025189120788127184, -0.019458724185824394, -0.017658626660704613, 0.02418995462357998, -0.0021947361528873444, 0.009369993582367897, -0.0010295701213181019, -0.031120875850319862, 0.01149233989417553, 0.033622223883867264, -0.009755352512001991, -0.006843503098934889, -0.016428282484412193, 0.004338450729846954, -0.009840181097388268, 0.022590450942516327, 0.0029016039334237576, -0.03454281762242317, -0.020093010738492012, -0.1036418005824089, 0.03906236216425896, -0.004754726309329271, 0.04442547261714935, -0.06925012916326523, 0.0598224401473999, 0.003433058736845851, -0.00025350681971758604, 0.04255089908838272, -0.06898747384548187, 0.007781899534165859, 0.0598791278898716, 0.004758788738399744, 0.009710000827908516, -0.048207562416791916, 0.0133573729544878, -0.024354757741093636, -0.0024045626632869244, 0.025726335123181343, 0.016909072175621986, 0.020738763734698296, -0.04099990054965019, -0.06872603297233582, -0.0011570488568395376, 0.0017420572694391012, 0.003517185803502798, -0.022666655480861664, 0.005912325344979763, -0.0595088005065918, -0.03362626954913139, -0.03466189652681351, 0.03749270364642143, 0.02280626818537712, 0.029768511652946472, 0.018143320456147194, 0.03577771037817001, -0.0021226322278380394, 0.032297831028699875, 0.03917491063475609, -0.016567321494221687, 0.012025110423564911, -0.06967084854841232, 0.03599924221634865, 0.009130063466727734, -0.028553267940878868, -0.017146442085504532, -0.0018239014316350222, -0.0506197027862072, 0.0153090450912714, -0.007744127884507179, -0.027018383145332336, -0.03467564284801483, 0.008348781615495682, -0.0007207845919765532, 0.014773149974644184, -0.046295084059238434, -0.010998000390827656, -0.007101150695234537, 0.01171765848994255, 0.017960017547011375, -0.06250632554292679, 0.020943133160471916, -0.046484023332595825, 0.04464822635054588, 0.04490015283226967, -0.004732201341539621, -0.04108460247516632, -0.0455138236284256, -0.06692931801080704, -0.06432095170021057, 0.004800225142389536, 0.06694723665714264, 0.007360532879829407, 0.019394589588046074, -0.050613876432180405, 0.030108418315649033, 0.04325301572680473, -0.022926103323698044, -0.01912808045744896, 0.0001424142246833071, 0.04013248533010483, 0.006837759632617235, 0.0243854783475399, -0.008936830796301365, -0.01994912140071392, 0.010447490960359573, -0.04996679723262787, 0.0008252572733908892, 0.015416467562317848, -0.009346752427518368, 0.02953273430466652, -0.043064817786216736, 0.029857344925403595, 0.02724841982126236, 0.006818102207034826, -0.0061581009067595005, -0.00322193861939013, 0.03115958347916603, -0.029306117445230484, -0.03777804225683212, 0.0452139787375927, 0.02858283743262291, -0.006070773582905531, 0.024840956553816795, 0.03778594359755516, -0.009888038970530033, 0.011628909036517143, 0.047676779329776764, -0.04706514999270439, 0.05085329711437225, -0.019356219097971916, 0.03686868026852608, -0.021552743390202522, -0.05919633060693741, 0.019736895337700844, -0.02354520931839943, 0.006459391210228205, 0.019520500674843788, -0.021817026659846306, -0.025573240593075752, -0.060635361820459366, -0.017918406054377556, -0.0286274291574955, -0.023859389126300812, -0.009383032098412514, 0.025501295924186707, -0.011510713025927544, 0.005393846891820431, -0.013811233453452587, 0.036961328238248825, -0.0009149606921710074, -0.001686110976152122, 0.007269247900694609, -0.005294231232255697, 0.011538289487361908, 0.009167376905679703, 0.018834218382835388, -0.02473568543791771, 0.03039715811610222, 0.041009437292814255, -0.008197526447474957, -0.0475936159491539, 0.007208985276520252, -0.027366794645786285, -0.019139856100082397, 0.013690857216715813, 0.0017509190365672112, -0.03692786395549774, 0.024584950879216194, 0.023729495704174042, 0.00785831268876791, -0.00864031258970499, 0.04931415244936943, -0.036913707852363586, 0.05326210334897041, 0.01639825664460659, -0.03596651181578636, -0.035464901477098465, 0.022307859733700752, -0.011950175277888775, 0.03162694349884987, 0.0013511396246030927, -0.032860249280929565, -0.07427287846803665, -0.06865706294775009, 0.008513640612363815, -0.03366360813379288, -0.04868648201227188, -0.054818492382764816, -0.03543147072196007, -0.04181193560361862, 0.038880977779626846, -0.005748833063989878, 0.013069872744381428, 0.0006865074974484742, -0.005700631998479366, 0.02154550887644291, -0.02812582440674305, -0.037537768483161926, -0.05234880372881889, -0.021749678999185562, -0.02388438582420349, 0.060738176107406616, -0.03149702772498131, 0.03389403596520424, 0.03399429842829704, 0.01678302139043808, -0.01709778420627117, -0.031022844836115837, -0.047494713217020035, -0.04444218426942825, -0.02137724682688713, -0.007538884878158569, 0.01570301689207554, 0.01223358977586031, -0.04687759652733803, 0.04079696908593178, -0.03239595144987106, 0.009824912063777447, -0.029734991490840912, -0.02718854509294033, -0.02827010676264763, -0.0025287100579589605, 0.07129150629043579, -0.011847298592329025, -0.009402910247445107, -0.024937249720096588, 0.04737125337123871, 0.026467764750123024, 0.005069680977612734, -0.050695933401584625, -0.004190082661807537, -0.02586946450173855, -0.046586234122514725, 0.027004798874258995, -0.042251553386449814, -0.02966221608221531, -0.06527948379516602, 0.013433479703962803, 0.01896435022354126, -0.02311050333082676, 0.030838243663311005, 0.04727879539132118, -0.0034037409350275993, 0.011037683114409447, -0.02080477401614189, -0.009124642238020897, 0.036350373178720474, -0.01611804962158203, -0.011082150973379612, -0.03327827900648117, -0.02127772569656372, 0.030940085649490356, -0.06091047450900078, -0.028929002583026886, -0.021219678223133087, -0.038283683359622955, 0.05162648856639862, -0.01773916371166706, 0.034718677401542664, -0.03921135514974594, -0.033449623733758926, -0.04137389734387398, 0.02145620435476303, -0.004949797876179218, 0.0205983929336071, 0.05253900960087776, 0.022076809778809547, -0.008583945222198963, 0.009844537824392319, -0.004377818666398525, -0.002762111835181713, -0.022767603397369385, 0.06204982101917267, -0.02380005456507206, -0.023071348667144775, 0.05535951629281044, 0.041456714272499084, -0.06345348805189133, -0.056873854249715805, -0.015685178339481354, -0.035856109112501144, -0.010668938979506493, -0.03768188878893852, 0.0076384772546589375, -0.02088777907192707, -0.036740489304065704, 0.01115147303789854, 0.04878118261694908, 0.01065253559499979, 0.02363070845603943, -0.002659337595105171, 0.017785875126719475, -0.04620267078280449, 0.019709672778844833, 0.01776926778256893, -0.007701529655605555, -0.018350346013903618, -0.020944911986589432, -0.00786333717405796, 0.02080495096743107, 0.01798100583255291, 0.044719599187374115, -0.031113747507333755, 0.0004149571468587965, 0.01998155005276203, -0.028046991676092148, 0.040550049394369125, -0.014196706935763359, 0.01052468828856945, -0.001337155350483954, -0.01679200865328312, -0.05817517265677452, -0.03093360923230648, 0.03299056366086006, -0.004678303841501474, 0.04343673959374428, -0.0355171300470829, -0.009244343265891075, 0.011824331246316433, 0.0013793307589367032, 0.01448703184723854, -0.06492003798484802, -0.03360942751169205, -0.05794020742177963, -0.05576656758785248, -0.0004608662275131792, 0.02881825901567936, 0.0060631288215518, 0.05420287698507309, -0.01719992607831955, -0.026075711473822594, 0.012721775099635124, 0.016633817926049232, -0.006061985157430172, 0.023432618007063866, -0.03287447616457939, 0.01888221502304077, -0.04508250206708908, -0.021832283586263657, -0.04455689713358879, 0.008498799055814743, -0.00089569843839854, -0.017169948667287827, 0.006784616969525814, 0.024853793904185295, 0.01879756711423397, 0.04617190361022949, -0.018477855250239372, 0.020097995176911354, 0.001026331796310842, -0.021788451820611954, 0.0007526943227276206, 0.020498190075159073, 0.007699077483266592, 0.04542791098356247, 0.03225867450237274, 0.007298533339053392, 0.0359405092895031, 0.009482820518314838, -0.016149891540408134, -0.026500027626752853, 0.003967917989939451, 0.024827877059578896, 0.006248970981687307, -0.017344985157251358, -0.03277203440666199, 0.0005770762218162417, -0.0205592829734087, 0.0314350500702858, 0.0006441876175813377, 0.008815867826342583, -0.010869884863495827, -0.020756980404257774, 0.0021833309438079596, 0.06332867592573166, 0.0003289800079073757, 0.04739438742399216, 0.01967385783791542, 0.03695535659790039, 0.0036028188187628984, -0.0028546657413244247, 0.007317326031625271, -0.0025160794612020254, 0.020046815276145935, -0.0045496379025280476, -0.01886577531695366, -0.008823959156870842, -0.012253875844180584, 0.01681942120194435, -0.0006176789756864309, -0.07033221423625946, -0.04882000759243965, -0.021303366869688034, 0.01591167226433754, 0.025582322850823402, 0.00004183765850029886, -0.0059056878089904785, 0.04683918133378029, -0.04389438405632973, -0.04651334509253502, 0.006404765881597996, -0.05446557700634003, -0.01034562848508358, 0.024665866047143936, -0.006990751717239618, 0.0001968700671568513, 0.0014138685073703527, -0.035758715122938156, 0.016494179144501686, 0.014973390847444534, -0.009133262559771538, -0.004699161276221275, 0.03080405853688717, -0.017588157206773758, 0.019810780882835388, -0.012138452380895615, -0.021037211641669273, -0.01342074666172266, 0.05260784178972244, -0.027612455189228058, -0.037588730454444885, -0.0010391238611191511, 0.010194463655352592, -0.0010900504421442747, -0.007992010563611984, 0.024463020265102386, -0.00840478390455246, 0.011788160540163517, -0.04459243640303612, -0.006500563584268093, 0.034037813544273376, 0.021594038233160973, 0.024809306487441063, -0.0026222916785627604, 0.01891366019845009, -0.0458531379699707, 0.05186175927519798, -0.0000773341380408965, -0.029954755678772926, -0.0011740343179553747, 0.03363485261797905, 0.018481506034731865, -0.03947761654853821, 0.06651846319437027, 0.003414392238482833, 0.037324197590351105, -0.0011659287847578526, 0.012803435325622559, -0.010788824409246445, 0.039626769721508026, 0.028686603531241417, 0.0247421283274889, -0.029537884518504143, 0.051314592361450195, 0.04512893781065941, -0.0224505253136158, 0.036779895424842834, 0.03196351230144501, 0.02906622365117073, -0.04524993151426315, -0.001849805237725377, -0.046144213527441025, -0.00011968617764068767, -0.0015280169900506735, -0.026659173890948296, 0.022662652656435966, -0.020003443583846092, 0.004217067733407021, -0.03070911392569542, 0.005348000209778547, 0.05771531164646149, -0.00289229117333889, -0.008300489746034145, 0.007220698986202478, -0.012337861582636833, 0.007113059516996145, 0.0343785285949707, -0.020199144259095192, 0.019467847421765327, 0.06293985247612, 0.01033227238804102, 0.0215657539665699, 0.04148141294717789, 0.012485162355005741, 0.008396727032959461, -0.031140903010964394, -0.010172969661653042, 0.025018949061632156, -0.02276623249053955, -0.02169843763113022, 0.020884249359369278, -0.0418713204562664, 0.025420216843485832, -0.020213741809129715, -0.031735390424728394, 0.057915445417165756, -0.04033321887254715, 0.017051633447408676, -0.032789286226034164, 0.02019820362329483, -0.028226952999830246, -0.022948691621422768, 0.04668011888861656, -0.003799689933657646, -0.022238627076148987, 0.032771408557891846, 0.02238147146999836, 0.029638318344950676, -0.023441726341843605, 0.03332820534706116, -0.0397489033639431, -0.0014510642504319549, 0.03233947604894638, -0.024060284718871117, -0.04071192443370819, 0.029784532263875008, -0.023166082799434662, -0.043150465935468674, 0.004854845814406872, -0.022547803819179535, -0.01835760287940502, 0.003907124977558851, -0.013557969592511654, -0.01123413909226656, 0.009754800237715244, -0.011903326958417892, -0.04589340090751648, 0.009316409938037395, 0.01634625345468521, -0.07033422589302063, 0.02685006707906723, 0.0052823214791715145, 0.041827280074357986, -0.01585092954337597, -0.02354435808956623, -0.04273026064038277, 0.015488932840526104, -0.02573905885219574, -0.016529198735952377, 0.01038210466504097, -0.002788276644423604, -0.030090991407632828, -0.03448603302240372, -0.051687054336071014, -0.047548066824674606, 0.018937574699521065, -0.024545781314373016, -0.026417382061481476, 0.05486983433365822, 0.025646526366472244, 0.01563757285475731, -0.007464406080543995, -0.003249790519475937, 0.025142185389995575, 0.008983050473034382, 0.05649163946509361, -0.018191080540418625, 0.0544704794883728, 0.012172667309641838, -0.03178487718105316, 0.053089700639247894, -0.03757035359740257, 0.04888620600104332, -0.02647405117750168, 0.01444255094975233, -0.026232214644551277, 0.03652893751859665, -0.0620034821331501, -0.050232768058776855, 0.009535693563520908, 0.02069907635450363, 0.01566518470644951, -0.02677708864212036, -0.0612330436706543, 0.00892460998147726, -0.04524888098239899, -0.006997846532613039, -0.02284054458141327, 0.04713389649987221, -0.0025676453951746225, 0.006089222151786089, -0.023737363517284393, -0.06878101080656052, 0.12168309837579727, 0.002723644021898508, -0.005825079511851072, -0.008503586053848267, 0.01948370970785618, 0.009091127663850784, 0.023113951086997986, -0.034938324242830276, -0.0040562935173511505, -0.03688453882932663, 0.04135271534323692, -0.00862234365195036, 0.023439627140760422, -0.0070400298573076725, 0.03663330152630806, 0.04103343188762665, -0.017457058653235435, 0.04654560983181, 0.020573748275637627, -0.04718774929642677, -0.058948665857315063, 0.010558433830738068, 0.018469179049134254, 0.022860024124383926, -0.012935103848576546, 0.020594926550984383, 0.030705846846103668, -0.03887338191270828, 0.0023122355341911316, -0.018004361540079117, 0.03934533894062042, -0.028134409338235855, 0.04309994727373123, 0.009580082260072231, -0.04520056024193764, 0.03837762027978897, -0.005259282421320677, 0.009483406320214272, -0.016921862959861755, 0.0010323375463485718, -0.024057121947407722, -0.0017260952154174447, 0.027439355850219727, -0.04464685916900635, 0.0025569635909050703, 0.020419539883732796, -0.05699460208415985, 0.044697608798742294, -0.004363438114523888, -0.038790442049503326, 0.06116292253136635, -0.02095174975693226, 0.018634099513292313, -0.016715507954359055, -0.059788815677165985, 0.02063537947833538, 0.010925115086138248, -0.0057092392817139626, -0.015799961984157562, -0.04063339903950691, 0.012222511693835258, -0.01951128989458084, -0.036570023745298386, -0.014695034362375736, -0.0319092720746994, 0.015525201335549355, 0.03487512096762657, -0.031085304915905, -0.0072163548320531845, -0.04016716778278351, -0.023587210103869438, -0.012553632259368896, -0.020962031558156013, -0.02923509292304516, 0.02305152826011181, 0.010037573985755444, -0.03319968655705452, 0.06764623522758484, -0.0030482488218694925, 0.004391386639326811, -0.042257264256477356, -0.059694841504096985, -0.02386963926255703, -0.004741473123431206, 0.05286982282996178, 0.04348641261458397, -0.015730682760477066, -0.0448911115527153, 0.007578669581562281, 0.06319276243448257, 0.057179730385541916, 0.028631530702114105, -0.04596926271915436, -0.001451063551940024, -0.024387473240494728 ]
I always get excited when I get to try new restaurants, or more importantly ones I haven't heard about โ€ฆ and are halal friendly! Win win! I recently came across Kiri, a Japanese Restaurant just off Bond Street (opposite Drunch!) My friend and I headed there after a rainy shopping trip.. one of many! The interior is a small-mid sized space.. and whenever a guest arrives at the restaurant the host shouts something in Japanese and the rest of the service responds (in a similar shouting tone!) in Japanese โ€ฆ now I had no idea what they were saying but it sounded like fun nonetheless. The service was really helpful.. the fact that I hadn't asked him about halal options but we had enquiries about it while booking was great. All the halal dishes were pointed out to us and explained. Now the dishes that are halal are pretty random. Some of the chicken, some of he steaks were halal but not all, this is because some contain alcohol. We decided to go for a few mixed options. The concept is small plates so no real starters or mains I guess (apart from steaks etc) so we ordered a bunch of dishes โ€“ Miso Aubergine, shrimp tempura and a whole lot of sushi, chicken teriyaki (but as the teriyaki sauce contains alcohol we opted for a yuzu sauce) and kimchi rice. First โ€ฆ the Miso Aubergine wasn't something I was totally keen on because it fels a bit odd to be having aubergines when there are halal meat dishes to be eaten! But our lovely waiter was quite insistent so we tried it.. and so glad we did. It was great I loved it, I felt that the skin was a bit hard but the tastiness really took over. For sushi, we got the salmon and tuna maki. The tuna was my favourite, it was crunchy and so tasty although at ยฃ12 for 6 pieces it was pushing it a bit in terms of price vs experience. The shrimp tempura was nothing special, just a regular tempura doing it's thing in life, but nothing exciting โ€“ it was a mediocre dish or at least felt like it in comparison to everything else. I'd miss this one off next time round I think. We got the Chicken Teriyaki but our waiter advised against the teriyaki sauce as it contains alcohol. He gave us an option of some alternative sauces and we went for a yuzu. This was one of my favourtie dishes, and I could have licked the plate clean if it was socially acceptable. The chicken was tender, juicy and so tasty! I can't remember the last time I had such succulent chicken โ€“ it was pretty dreamy! We got some kimchee rice to go with the chicken which was great on its own to be honest! Now onto the desserts, there was nothing that really excited me about their dessert menu but nonetheless we went ahead and ordered 2 because you can't have a meal without a dessert! My friend got the chocolate mousse and I went for the ice cream โ€“ 2 flavours of green tea and black sesame seed ice cream. I absolutely loved both flavours, the green tea was just the right amount of tea-flavoured and the black sesame seed the right amount of sweet, what a great combo! Overall, I absolutely loved this little gem of a place tucked away in the back streets of Oxford Street. I don't think there is anything that I could fault about this restaurant. I think I may have found my new favourite hideout. Although I have to say for 8 small dishes, I wasn't expecting the bill to be ยฃ85 (ยฃ42 per person). I know 8 dishes sounds like a lot and you're probably thinking i'm expecting too much for too less, but I guess the size of the dishes was not enough to warrant a ยฃ42 pp bill. Part from that I have to commend the service, everyone was so friendly, helpful and accommodating. Overall, giving Kiri a total TLH score of 7 out of 10.
[ -0.026804808527231216, 0.009924580343067646, -0.025765109807252884, -0.01531878300011158, -0.03300300985574722, -0.013898637145757675, 0.01705823838710785, 0.04923105612397194, -0.0014620678266510367, 0.03077038750052452, 0.02787192165851593, 0.022346215322613716, 0.005271900445222855, -0.05290134623646736, -0.03690757974982262, -0.02292337641119957, -0.02522306703031063, -0.009434370324015617, -0.01837472803890705, -0.025600064545869827, 0.0372585654258728, 0.02439993806183338, -0.08191268891096115, -0.03709174320101738, -0.013269513845443726, 0.03553327918052673, 0.03838300704956055, -0.02072783373296261, 0.06754220277070999, 0.05556748807430267, -0.012548807077109814, -0.017260929569602013, 0.05328099802136421, -0.05594908073544502, -0.022905418649315834, -0.026894109323620796, 0.029489312320947647, -0.015397759154438972, -0.03218024596571922, -0.05021633580327034, -0.018057607114315033, -0.009720118716359138, 0.04987047240138054, -0.02081964537501335, -0.04338064417243004, 0.015346653759479523, -0.0177196953445673, -0.047171153128147125, 0.03328222036361694, -0.04590362682938576, 0.022043263539671898, 0.01801222935318947, -0.0017153105000033975, 0.004057462327182293, -0.003094752784818411, 0.0044448780827224255, -0.002350245136767626, -0.012318311259150505, -0.028735866770148277, 0.027732890099287033, 0.0000220516503759427, 0.012210173532366753, 0.032074134796857834, -0.054614100605249405, 0.028598392382264137, 0.022622961550951004, -0.004840238485485315, -0.008441412821412086, 0.01484537310898304, -0.02477181702852249, 0.0008125262684188783, -0.0070422012358903885, -0.02981186844408512, -0.024396566674113274, -0.029754551127552986, 0.012064828537404537, -0.013987461104989052, 0.02096705138683319, -0.0011216752463951707, -0.011858965270221233, -0.003935874905437231, 0.07695019990205765, 0.02487213723361492, 0.0010140476515516639, -0.06538937985897064, -0.003214807715266943, 0.039829157292842865, 0.042433373630046844, 0.009479846805334091, 0.008861740119755268, 0.018178483471274376, 0.03792084753513336, -0.012195219285786152, -0.038555216044187546, 0.05472244322299957, 0.05873439088463783, -0.022351300343871117, 0.020091285929083824, -0.0077840667217969894, -0.0191058162599802, 0.024889394640922546, 0.011888259090483189, -0.011793531477451324, 0.023152895271778107, -0.04420831426978111, 0.0050594680942595005, 0.00685944315046072, -0.00779401371255517, -0.005336940288543701, -0.021995946764945984, 0.008254277519881725, -0.030948437750339508, 0.023189155384898186, -0.01187395304441452, -0.015118283219635487, 0.04470302164554596, 0.021820569410920143, 0.05661243200302124, -0.031936317682266235, 0.021784871816635132, 0.004707242362201214, -0.005782501306384802, 0.04459512233734131, 0.012355664744973183, 0.01704011857509613, -0.04948992282152176, 0.005601517390459776, 0.05144968628883362, -0.034568801522254944, -0.008808051235973835, 0.004844456911087036, -0.0693526417016983, -0.015286829322576523, 0.017808107659220695, -0.00400960398837924, 0.004833066835999489, -0.03795175999403, 0.04227464273571968, -0.014322839677333832, -0.059118226170539856, 0.05448388308286667, 0.0014007006539031863, 0.00985451228916645, 0.09229080379009247, 0.014421027153730392, 0.014751763083040714, 0.00864435825496912, -0.010069773532450199, -0.03661128878593445, 0.02271486259996891, -0.012745466083288193, -0.0033769013825803995, 0.013143067248165607, 0.011399476788938046, 0.01508042961359024, -0.007934905588626862, 0.020824478939175606, 0.022507531568408012, 0.008771372959017754, 0.020821573212742805, -0.028688445687294006, 0.02037830278277397, -0.03806867450475693, 0.06828632205724716, -0.0014730413677170873, 0.030434872955083847, -0.03826204687356949, -0.0073692225851118565, 0.011741811409592628, -0.042778242379426956, 0.02060054801404476, 0.00560365105047822, 0.003109672339633107, 0.004617991857230663, 0.03262176737189293, 0.05555175244808197, 0.038577254861593246, -0.02264956571161747, 0.05150868371129036, 0.04105124622583389, -0.04984656348824501, 0.037427254021167755, -0.000778050918597728, 0.03647255152463913, 0.02624138444662094, -0.02125268615782261, -0.027837339788675308, -0.035667844116687775, -0.03397990018129349, -0.028667373582720757, -0.03477589040994644, 0.03462224453687668, -0.06086021289229393, 0.02563355676829815, 0.021520104259252548, 0.022223884239792824, 0.005367763806134462, -0.008590779267251492, -0.01127066183835268, -0.0519140362739563, -0.03588910773396492, 0.07458944618701935, -0.010711891576647758, 0.04499667510390282, 0.013742057606577873, -0.030160777270793915, 0.01560238841921091, 0.056566640734672546, -0.05395010486245155, 0.013920788653194904, -0.0027719319332391024, 0.01428421400487423, -0.03473590314388275, -0.027974458411335945, 0.002777043730020523, -0.0311374943703413, -0.0357009656727314, 0.018653947860002518, -0.02899356372654438, -0.000024647721147630364, 0.028581397607922554, 0.011046956293284893, 0.03004913032054901, 0.05009670928120613, -0.010367185808718204, 0.001665670657530427, -0.01421528123319149, 0.04126989096403122, 0.0008467550505883992, -0.03259991854429245, -0.05654074251651764, 0.04122954607009888, 0.033539436757564545, 0.05990377068519592, 0.055464789271354675, 0.023839708417654037, 0.04037848487496376, 0.060077693313360214, -0.0035282571334391832, 0.01676117442548275, 0.01642271876335144, 0.023160869255661964, 0.038401562720537186, 0.04844771698117256, -0.008093667216598988, 0.02931227535009384, 0.0186995230615139, -0.007764041889458895, -0.011888185515999794, 0.01897074654698372, 0.003604076337069273, 0.024164006114006042, 0.03186334669589996, 0.040939148515462875, -0.03331935778260231, 0.00103465944994241, 0.02435174025595188, 0.06073937565088272, 0.014267461374402046, -0.002796933753415942, -0.014854054898023605, 0.02428886853158474, -0.003467818722128868, -0.027413763105869293, 0.029256610199809074, 0.024113567546010017, -0.019882896915078163, 0.0000068253089011705015, -0.011073006317019463, -0.03895420581102371, -0.05748296529054642, -0.04917832836508751, -0.0323701947927475, -0.032114654779434204, -0.020549720153212547, -0.006293718237429857, 0.06795962154865265, -0.02729320526123047, 0.04210718348622322, 0.010483866557478905, -0.025420110672712326, -0.014716257341206074, -0.01511942408978939, 0.0446760393679142, 0.04739630967378616, 0.04191645607352257, -0.012784812599420547, 0.03045833297073841, -0.007320240139961243, 0.029549019411206245, -0.021063143387436867, 0.0030067889019846916, -0.012403511442244053, 0.02689872868359089, 0.02762852981686592, 0.0009942754404619336, -0.01546640694141388, 0.004135125316679478, -0.03406854718923569, -0.03787100315093994, 0.024029243737459183, -0.021110061556100845, 0.017304973676800728, 0.010619377717375755, -0.041762519627809525, 0.01909526064991951, 0.03813663870096207, 0.0013753519160673022, 0.037894587963819504, 0.049732133746147156, -0.02924548275768757, 0.0028937652241438627, -0.014530462212860584, 0.003511460730805993, -0.04105854779481888, 0.0375915989279747, 0.040700145065784454, 0.0003258399374317378, -0.0060737584717571735, -0.03080112859606743, -0.04088178277015686, 0.002528231590986252, 0.014631525613367558, -0.020424209535121918, -0.00661541847512126, 0.05428284406661987, 0.007144902367144823, -0.06541366875171661, 0.02266049012541771, -0.04681796208024025, -0.018541904166340828, -0.017051653936505318, -0.0328022725880146, 0.04448060318827629, 0.029502052813768387, 0.02828535996377468, 0.01696249097585678, -0.0429573655128479, 0.006386260502040386, 0.031384870409965515, 0.047772929072380066, -0.03168746829032898, 0.012554174289107323, 0.037074409425258636, 0.008645926602184772, 0.027281219139695168, -0.007250661496073008, -0.023948118090629578, -0.0341099314391613, -0.012266396544873714, 0.006338889244943857, 0.02633804641664028, 0.032503340393304825, 0.02249164879322052, 0.02054600790143013, 0.07759741693735123, -0.02859598398208618, -0.00299657741561532, 0.02072860300540924, 0.005801421590149403, 0.014180818572640419, -0.005141259636729956, 0.039164088666439056, -0.006716870237141848, -0.01889297366142273, -0.031685490161180496, 0.026891812682151794, -0.003360362723469734, 0.001969004049897194, -0.04633548483252525, 0.07057326287031174, 0.0007997985812835395, -0.02245223894715309, 0.04627726599574089, -0.07187294960021973, -0.014166268520057201, 0.05180003121495247, -0.021676398813724518, 0.034129366278648376, -0.03765637055039406, 0.006000157445669174, -0.05272103101015091, 0.018692173063755035, 0.044521551579236984, -0.04906230419874191, 0.039491917937994, -0.031244952231645584, -0.05786645784974098, -0.014326398260891438, 0.0020111119374632835, -0.03152376413345337, -0.0052299825474619865, 0.027406878769397736, -0.002188957529142499, -0.05252929404377937, -0.04382152110338211, 0.002447745529934764, 0.01746799238026142, 0.05204692482948303, -0.023245302960276604, 0.03191696107387543, 0.04057320952415466, 0.021915338933467865, 0.02305477298796177, -0.016285371035337448, 0.0178624726831913, -0.012295546941459179, 0.05431904271245003, 0.031884144991636276, -0.02510509081184864, -0.01957087591290474, -0.006241331342607737, -0.013289042748510838, 0.006108274217694998, -0.01794143207371235, -0.010868904180824757, -0.03575167432427406, -0.0046874647960066795, -0.013692871667444706, 0.02805299684405327, -0.03969727084040642, -0.02592172473669052, 0.0015155416913330555, 0.026961030438542366, 0.01591474562883377, -0.053327299654483795, -0.0036656116135418415, -0.013202904723584652, 0.0707516223192215, 0.03191931173205376, -0.016983918845653534, -0.05196407809853554, -0.024032218381762505, -0.03672117739915848, -0.022280901670455933, 0.003480970859527588, 0.05366205424070358, 0.007984812371432781, 0.026836400851607323, -0.03762350231409073, 0.016647731885313988, 0.049219947308301926, -0.029835356399416924, 0.0024607365485280752, -0.0260598324239254, 0.023218907415866852, -0.009374624118208885, 0.06722977757453918, -0.022057367488741875, -0.02420986443758011, 0.020658178254961967, -0.05790049955248833, -0.009269226342439651, -0.012780974619090557, -0.005371736362576485, 0.005598817020654678, -0.004328688606619835, 0.02344387397170067, 0.02725156396627426, 0.0003087473742198199, 0.02691548503935337, -0.020181015133857727, 0.023682020604610443, -0.036387719213962555, -0.019364777952432632, 0.011760654859244823, 0.005950231105089188, -0.03158530592918396, 0.0674603059887886, 0.04073763266205788, -0.015151215717196465, -0.010867329314351082, 0.020512867718935013, -0.05100987106561661, 0.04222820699214935, -0.05300050601363182, 0.02810715138912201, 0.023714745417237282, -0.04313138872385025, 0.019058624282479286, -0.05548376217484474, 0.033095017075538635, 0.03442938253283501, 0.0023899974767118692, -0.045802585780620575, -0.046599131077528, -0.04909634590148926, 0.005647024605423212, -0.008543340489268303, 0.01718568056821823, 0.003570742206647992, -0.014530355110764503, -0.029847348108887672, -0.007452851627022028, 0.008654940873384476, 0.016847578808665276, 0.0019206780707463622, 0.020392170175909996, 0.003047182923182845, 0.023490507155656815, 0.019179638475179672, -0.020529108121991158, -0.0333106704056263, 0.011352064087986946, -0.031981565058231354, -0.01615682989358902, -0.0625067725777626, 0.0014432090101763606, -0.0195428766310215, -0.04140065610408783, -0.016324196010828018, 0.007916418835520744, 0.0037580099888145924, 0.001059907372109592, 0.012537229806184769, 0.01247086189687252, 0.029307788237929344, 0.004713814705610275, -0.03636041656136513, 0.03871694952249527, 0.026176083832979202, -0.03982831537723541, -0.02073015831410885, 0.03817319869995117, -0.021520180627703667, 0.03073101118206978, -0.011124515905976295, -0.008459742181003094, -0.06480637937784195, -0.07776417583227158, -0.006678524427115917, -0.028385568410158157, -0.028040457516908646, -0.05562494322657585, -0.021183865144848824, -0.05042106285691261, 0.04553152620792389, -0.0021617040038108826, -0.020930510014295578, 0.00036943587474524975, -0.03336270526051521, 0.010328267700970173, -0.014867531135678291, -0.039691582322120667, -0.02076113596558571, 0.005685494747012854, 0.0029626379255205393, 0.040900520980358124, -0.0015565238427370787, 0.053178828209638596, 0.029239093884825706, 0.014512207359075546, -0.004536834545433521, -0.03413330763578415, -0.044876694679260254, -0.046354420483112335, -0.02092643454670906, 0.021604275330901146, 0.011256792582571507, 0.013880685903131962, -0.04441986232995987, 0.02357199788093567, -0.04551224038004875, 0.018244190141558647, -0.04907107725739479, -0.025074517354369164, 0.004083588253706694, -0.01238948106765747, 0.0613204687833786, -0.006567785516381264, -0.00961942970752716, -0.022302355617284775, 0.05669153481721878, 0.03592593967914581, -0.0073485830798745155, -0.03317854925990105, -0.03470242768526077, -0.04631975293159485, -0.04214474931359291, 0.0282928217202425, -0.04403068497776985, -0.020133163779973984, -0.04013734683394432, 0.007151097524911165, 0.02095015160739422, -0.012130163609981537, 0.02713925763964653, 0.06571299582719803, -0.01938357762992382, 0.003161539090797305, -0.052440933883190155, 0.029854457825422287, 0.045417461544275284, -0.04728654772043228, -0.01833438314497471, -0.006121764425188303, -0.044503360986709595, 0.006317570805549622, -0.031914886087179184, -0.04023349657654762, -0.01668805070221424, -0.036206506192684174, 0.06293641775846481, -0.03322033956646919, 0.04694868251681328, 0.017601583153009415, -0.06074715405702591, -0.044135093688964844, 0.06955339014530182, 0.009012564085423946, -0.007849025540053844, 0.04825723171234131, -0.017118966206908226, -0.01235873345285654, 0.003940686117857695, -0.0016154632903635502, 0.025996319949626923, -0.033801086246967316, 0.05135698243975639, -0.0023475883062928915, -0.04022103175520897, 0.02060066908597946, 0.0289969090372324, -0.05116070434451103, -0.033385492861270905, 0.0019947560504078865, 0.020767783746123314, -0.01435614749789238, -0.009470243938267231, -0.01856611855328083, -0.017679089680314064, 0.013430518098175526, 0.03087405115365982, 0.020493129268288612, -0.015464461408555508, 0.04939298704266548, 0.042878035455942154, 0.017650553956627846, -0.03749588504433632, -0.009431835263967514, 0.03271838650107384, -0.023458490148186684, -0.0417192280292511, 0.00812454242259264, -0.0024995494168251753, 0.0001599027746124193, -0.016706125810742378, 0.02864488586783409, -0.029853977262973785, 0.010614786297082901, 0.01747254468500614, -0.003968259785324335, 0.04740113765001297, -0.008745416067540646, -0.0020445086993277073, 0.020867589861154556, -0.02725461684167385, -0.04240952059626579, -0.044378481805324554, 0.031559526920318604, -0.02686947211623192, 0.0316934660077095, -0.01679210551083088, 0.011702550575137138, 0.03170870989561081, -0.007275652140378952, -0.014498545788228512, -0.037431471049785614, -0.009756242856383324, -0.029190964996814728, -0.07366111129522324, -0.03524649888277054, 0.01898416504263878, -0.0020452095195651054, 0.017875107005238533, 0.014373993501067162, -0.04734671115875244, -0.032028768211603165, 0.010348831303417683, -0.01619693450629711, 0.016031676903367043, -0.019270317628979683, 0.0373150035738945, -0.028259947896003723, -0.053908802568912506, -0.039400435984134674, 0.005835522431880236, -0.024060754105448723, -0.010264290496706963, -0.022369366139173508, -0.0011185953626409173, -0.005733191501349211, 0.03706507757306099, 0.0003301875258330256, 0.05622725561261177, -0.012534499168395996, -0.03997209668159485, 0.008478065952658653, 0.02210133709013462, 0.03878514841198921, 0.03848280385136604, -0.019411804154515266, -0.016483809798955917, 0.0424535870552063, -0.00036979743163101375, 0.012664915062487125, -0.019582778215408325, -0.028848817571997643, 0.012938220053911209, -0.011765997856855392, -0.035998567938804626, -0.02055973745882511, 0.011448252014815807, -0.027536047622561455, 0.01922665908932686, 0.002236897125840187, -0.01363253965973854, 0.013745023868978024, 0.000028506345188361593, 0.00569260073825717, 0.08627931773662567, 0.006901696790009737, 0.03858339414000511, -0.0024931898806244135, 0.04335986450314522, 0.02330874837934971, -0.05268269032239914, 0.02881951816380024, 0.02977403625845909, 0.03300995007157326, -0.011826680973172188, -0.0004041462379973382, 0.03876136615872383, -0.0016070265555754304, 0.029654117301106453, -0.022697215899825096, -0.01574944145977497, -0.06090741604566574, -0.0005464304122142494, 0.008538613095879555, 0.03318384662270546, 0.025950415059924126, -0.0037282865960150957, 0.007244786247611046, -0.04850199446082115, -0.06108351796865463, 0.017101453617215157, -0.040459416806697845, -0.021252674981951714, 0.02400774322450161, 0.004702447447925806, -0.03528338298201561, -0.04671037569642067, -0.020481137558817863, 0.014321362599730492, -0.035580843687057495, -0.011029490269720554, -0.02404721826314926, 0.010781966149806976, -0.01715708151459694, 0.04675380513072014, -0.0033569347579032183, -0.021803956478834152, -0.005735398270189762, 0.06253744661808014, -0.02280113287270069, -0.049022920429706573, 0.008557929657399654, 0.03299710527062416, 0.017071858048439026, -0.005266835913062096, -0.0005925147561356425, 0.03190523386001587, 0.005435744766145945, -0.0005817168275825679, -0.007967603392899036, 0.01614905707538128, 0.006217210087925196, 0.04324677586555481, -0.004187819082289934, -0.015153770335018635, -0.053884316235780716, 0.06390757113695145, 0.0027994902338832617, -0.02623649500310421, -0.02195197157561779, 0.027411948889493942, 0.025392718613147736, -0.0022658496163785458, 0.027431806549429893, 0.017287330701947212, 0.054453905671834946, -0.018954049795866013, 0.050165653228759766, -0.0040734815411269665, 0.020445499569177628, 0.04541114717721939, 0.02823176048696041, -0.041291750967502594, 0.037193477153778076, 0.042829010635614395, 0.004313752520829439, -0.010804054327309132, 0.03618309274315834, 0.016362572088837624, -0.028713922947645187, 0.005937501322478056, -0.027260007336735725, 0.01653663069009781, -0.033736445009708405, -0.004010901320725679, -0.005343984346836805, -0.04187111556529999, -0.011743351817131042, -0.00693741999566555, -0.014032486826181412, 0.06471572816371918, -0.07074371725320816, 0.02827463485300541, -0.027581023052334785, 0.0006406084285117686, -0.0089644193649292, 0.04476342350244522, -0.02109031192958355, 0.007523887325078249, 0.032030683010816574, -0.013249307870864868, -0.03380124270915985, 0.044065218418836594, 0.012498192489147186, -0.02642505057156086, -0.04420507699251175, 0.026193007826805115, 0.013135099783539772, -0.016187535598874092, -0.0007783703040331602, 0.025413287803530693, -0.021345283836126328, 0.01885959878563881, -0.04080822318792343, -0.00041946923010982573, 0.022919075563549995, -0.0365513451397419, 0.012384853325784206, -0.07221347838640213, 0.02897009626030922, -0.04262768104672432, -0.0011591289658099413, -0.003188828472048044, -0.011231974698603153, -0.021810786798596382, 0.03259293735027313, 0.0160424392670393, 0.01160044688731432, 0.008741176687180996, 0.06666310131549835, -0.01901431195437908, -0.003495893906801939, 0.053662579506635666, -0.02686925418674946, -0.03144967928528786, 0.009557022713124752, 0.01655644364655018, -0.03717798739671707, -0.009584244340658188, -0.05309293791651726, -0.012026198208332062, 0.0005166651681065559, -0.009272669441998005, -0.00938833225518465, 0.04793504253029823, 0.0017962688580155373, -0.05410963296890259, 0.04077472537755966, 0.007881009951233864, -0.03270818293094635, 0.03322068601846695, 0.010794246569275856, 0.013458470813930035, -0.0025974963791668415, 0.018156515434384346, -0.05873626470565796, -0.024581177160143852, 0.015205403789877892, -0.03577755019068718, 0.010407881811261177, -0.04642772674560547, -0.014961475506424904, -0.0284213088452816, -0.027092592790722847, -0.01537535060197115, -0.004635097924619913, -0.02659950777888298, -0.06771427392959595, 0.041248295456171036, 0.034931499511003494, -0.0011175000108778477, 0.005706508178263903, -0.04066887125372887, -0.004257269203662872, 0.029286643490195274, 0.05556691437959671, -0.014362807385623455, 0.017375225201249123, 0.036321986466646194, -0.02203129045665264, 0.04793494939804077, -0.028163786977529526, 0.03411073982715607, 0.022446857765316963, -0.024575885385274887, -0.008205081336200237, 0.017816221341490746, -0.021688837558031082, -0.03697868809103966, 0.057991813868284225, 0.014095842838287354, -0.010973267257213593, -0.015334762632846832, -0.0710250735282898, 0.005054089240729809, -0.055518653243780136, -0.04280487447977066, -0.07274715602397919, 0.04387424513697624, 0.01770426146686077, 0.023871826007962227, -0.016680361703038216, -0.057729292660951614, 0.1416769176721573, 0.06132565811276436, 0.03678550198674202, 0.016628703102469444, 0.042685046792030334, 0.021685820072889328, 0.017666364088654518, -0.007448738906532526, 0.004931312520056963, -0.03198093920946121, 0.07866913825273514, -0.022230178117752075, 0.028720486909151077, 0.01133760530501604, 0.027447206899523735, 0.031147420406341553, -0.03938550502061844, 0.009630117565393448, 0.017190994694828987, -0.04871606454253197, -0.04877864569425583, -0.01067638024687767, 0.030063258484005928, -0.03229717165231705, -0.018302103504538536, 0.02082251012325287, -0.007705466356128454, -0.054725173860788345, 0.013100064359605312, -0.0323178693652153, 0.023719796910881996, -0.03772290423512459, 0.04222499579191208, 0.01107923872768879, -0.04171924293041229, 0.03296563774347305, 0.007998327724635601, -0.042700789868831635, 0.04022067040205002, 0.032574333250522614, -0.0023003427777439356, 0.005053096916526556, 0.04590946435928345, -0.03805678337812424, 0.022109638899564743, 0.018877651542425156, -0.034599535167217255, 0.012089877389371395, 0.010761872865259647, -0.045463927090168, 0.05591980367898941, -0.027931565418839455, 0.03838944062590599, -0.014585752040147781, -0.044072024524211884, 0.011378285475075245, 0.020729873329401016, -0.002909007016569376, -0.013527109287679195, -0.014650629833340645, 0.02760297805070877, 0.02390126697719097, -0.034787748008966446, -0.012631663121283054, -0.05329766124486923, 0.02422931045293808, 0.02274537831544876, 0.0022521389182657003, 0.023428548127412796, -0.004592281766235828, -0.016539180651307106, -0.009759064763784409, 0.005373204592615366, -0.010945579037070274, 0.02515239641070366, 0.00967484526336193, -0.00555834686383605, 0.030657030642032623, 0.033071089535951614, -0.02250472642481327, -0.01749591715633869, -0.03044804371893406, -0.021731222048401833, -0.008115598000586033, 0.02042556367814541, 0.04924052208662033, -0.053945425897836685, -0.04028374329209328, -0.05184638127684593, 0.05195550248026848, 0.04726894199848175, 0.02999863587319851, 0.008725627325475216, 0.006362362299114466, -0.012926223687827587 ]
SCOTLAND'S Boat Show 2018 takes to the water and shore with a new, expanded layout and more attractions as thousands head to Kip Marina, Inverkip this October from all over the UK. Meanwhile Inspiration Marine are also aiming for their biggest ever range of design-led Hanse yachts to be on display with the potential for more to be added as the show approaches. Moving to a new waterside location, Marine Sales Scotland's powerboat offering promises a full range of boats for all budgets and interests including an expanded display of the popular Quicksilver Activ models. Managing director Stan Prosser said: "Scotland's Boat Show at Kip Marina has firmly established itself as the most important show in the north and continues to attract more visitors from all over the UK year on year, with Marine Sales Scotland similarly enjoying increased sales each show." A new small boat area will feature Hartley Boats's flagship display of award-winning sport dinghies. Building on last year's show, and with the aim of encouraging more people to get involved in boats and boating in Scotland for the first time, the ever-popular RYA Scotland pavilion moves to a new and larger site and showcases the latest marine and leisure products from UK-wide companies. It's also the base for RYA Scotland's free taster sessions which allow visitors to try a short hands-on experience on yachts, motor yachts, rigid inflatable boats and sailing dinghies in the safe environment of Kip Marina under the expert eye of RYA Scotland's partners SportScotland National Centre Cumbrae, Ocean Youth Trust Scotland, Clyde Muirshiel Country Park and You and Sea Training. More than 350 visitors took part in the sessions last year. RYA Scotland's new online booking service, available via scotlandsboatshow.co.uk aims to significantly increase the number of participants across all age groups and abilities. For mobility-impaired visitors, Clyde Muirshiel will again be featuring the wheelyboat Discovery, sailing taster sessions will be available in the accessible Hansa 303 dinghies while Ocean Youth Trust Scotland will also have their yacht open for visitors to go aboard. Another popular visitor is the 60-foot Taeping, the first Clipper round-the-world race yacht, which will be welcoming visitors throughout the show for those wishing a closer view. Back on shore the popular Sika Marine Stage and Theatre moves to the RYA Scotland pavilion and is the venue for three days of free lectures and presentations organised in association with the Cruising Association. On offer will be a series of subject themes ranging from the Cruising Association's expert's advice on sailing round Britain to sampling the fresh Scottish produce of Alba Seafood. More undercover exhibition space is added for 2018 with the new Riverside Inverclyde Pavilion which is the venue for smaller boats, marine andleisure exhibitors, plus an expanded Kip Marina Chandlery and the new location for the Taste Inverclyde/Chartroom cafรฉ. The new car and motorhome area features cars from Porsche, Morgan, Mitsubishi and Lotus, prestigious motorhomes from Swift and luxury holiday homes from Cloch Caravans. There will be the opportunity to take a ride in an F1 Powerboat, courtesy of Gordon Cook Racing, or a helicopter flight over Kip Marina, viewing the stunning scenery of the Firth of Clyde with the team from Adventure001 -- advance bookings for flights and the F1 Powerboats will be available on scotlandsboatshow.co.uk. The Clyde LifeStyle Pavilion will host more than 40 artisan craft and luxury goods exhibitors and everything from fashion to furniture. There will be food and drink exhibitors in the adjacent West College Scotland Food and Drink Pavilion plus the live demonstration theatre where students show off their skills using fresh Scottish produce. Alongside this is the new Taste Inverclyde pavilion with displays from local food producers and providers, a food truck section and a covered outdoor eating area. For the family, there will be pipe bands, the Inverclyde and Largs Rock Choirs, birds of prey from KG Hawks and a giant fun area for youngsters. Holt Leisure managing director Gavin McDonagh said: "The Boat Show team have worked tirelessly to build on previous years' successes and, together with our key partners and sponsors, we are delighted to have established Scotland's Boat Show as the major event on the Scottish marine calendar for both our visitors and those involved in Scotland's marine and tourism businesses." Scotland's Boat Show 2018 takes place on the 12, 13 and 14 October. Admission is free and car parking is ยฃ5 per vehicle. For more information visit www.scotlandsboatshow.co.uk.
[ 0.0019746338948607445, 0.004165500868111849, -0.011173063889145851, -0.01232470478862524, -0.014955487102270126, -0.004458483308553696, -0.008578265085816383, 0.03059668466448784, 0.0017600187566131353, 0.015235792845487595, 0.027158191427588463, 0.009727736935019493, -0.0024082898162305355, -0.0195771474391222, -0.008505348116159439, -0.023428751155734062, -0.013849877752363682, 0.0031283318530768156, -0.008101536892354488, 0.01272030919790268, 0.0038377554155886173, 0.005168636795133352, -0.059974305331707, -0.056665483862161636, -0.035118672996759415, 0.032127752900123596, 0.001779897720552981, -0.006707368418574333, 0.0722365528345108, 0.03550206869840622, -0.02954210713505745, -0.0327145978808403, 0.025905048474669456, -0.03342071920633316, -0.031236661598086357, -0.015240184962749481, -0.004166386090219021, -0.012784373015165329, -0.02548539638519287, -0.07029402256011963, -0.015578212216496468, -0.01904764585196972, 0.05547937750816345, -0.00008138101838994771, -0.025060024112462997, 0.015900826081633568, -0.0016868464881554246, -0.03768404573202133, 0.013114729896187782, -0.013491862453520298, 0.01418006420135498, 0.0006254500476643443, 0.03816414251923561, -0.012059335596859455, -0.013187030330300331, 0.026297636330127716, -0.028095846995711327, 0.002812616527080536, -0.0282330010086298, 0.04836156964302063, 0.017035696655511856, -0.018540147691965103, 0.01754317805171013, -0.03365402668714523, 0.04047876596450806, 0.010817086324095726, -0.004531230311840773, -0.052167605608701706, 0.02622717060148716, -0.018777647987008095, -0.029811911284923553, 0.014514570124447346, -0.014272096566855907, 0.0041156308725476265, -0.014155246317386627, 0.00608746986836195, -0.026097113266587257, 0.02547100931406021, -0.022776439785957336, -0.0034580507781356573, 0.039235927164554596, 0.0250814501196146, -0.003397056134417653, 0.006207166239619255, -0.08595548570156097, -0.009545004926621914, -0.017299899831414223, 0.004912789445370436, 0.032988786697387695, -0.006211829837411642, 0.019141653552651405, 0.04364171251654625, -0.026562299579381943, -0.036241330206394196, 0.050449199974536896, 0.015552908182144165, -0.011023787781596184, 0.003479406703263521, -0.0003911309177055955, 0.008145090192556381, 0.01753733865916729, -0.013008615002036095, 0.0012306125136092305, 0.030343541875481606, -0.06381906569004059, 0.011484071612358093, -0.008816586807370186, -0.010773153975605965, -0.006844466086477041, -0.013296162709593773, 0.022966530174016953, -0.02933500148355961, 0.05336403474211693, -0.014315958134829998, 0.025774730369448662, 0.01308532990515232, -0.009356344118714333, 0.03477222099900246, 0.00023618870181962848, 0.039208780974149704, 0.005642211064696312, 0.00512815872207284, 0.02146759256720543, -0.010631261393427849, 0.0062535544857382774, -0.027743341401219368, 0.01455469150096178, 0.044169921427965164, -0.028927205130457878, -0.0011923154816031456, 0.0028650376480072737, -0.0643252357840538, -0.010383984073996544, 0.04315759986639023, 0.011921815574169159, 0.007974744774401188, -0.008811748586595058, 0.05932484194636345, 0.012241494841873646, -0.050646305084228516, 0.03584917634725571, 0.013216123916208744, 0.019300565123558044, 0.08212731033563614, -0.002653984585776925, 0.048001497983932495, 0.029081322252750397, -0.040325988084077835, -0.059231508523225784, 0.032704293727874756, -0.008902412839233875, 0.044122446328401566, -0.019841596484184265, 0.019644062966108322, 0.00891402829438448, -0.018034107983112335, -0.01963535137474537, 0.013482950627803802, 0.028706658631563187, 0.05316895619034767, -0.05324304476380348, 0.012972881086170673, -0.005777598358690739, 0.042634885758161545, -0.02016638219356537, 0.024345966055989265, -0.00901760719716549, -0.013883466832339764, 0.004006567411124706, -0.010983760468661785, 0.005919960793107748, 0.005326671060174704, -0.023609157651662827, 0.00188285275362432, 0.02149716019630432, 0.06313449889421463, 0.04595214128494263, -0.0017150712665170431, 0.03705833479762077, 0.031146952882409096, -0.044093914330005646, -0.024201035499572754, 0.033622030168771744, 0.042942602187395096, -0.013035955838859081, -0.015178930945694447, 0.0057524265721440315, -0.013319875113666058, -0.059512071311473846, -0.02338526025414467, 0.0023541655391454697, 0.024015409871935844, -0.05356811359524727, 0.04103649780154228, 0.003395038191229105, -0.005445648916065693, -0.01754940301179886, -0.015965212136507034, -0.00699558574706316, -0.025547724217176437, -0.004702224396169186, 0.07586077600717545, -0.0112899886444211, 0.03437715023756027, 0.021798694506287575, -0.03967004269361496, 0.00048675277503207326, 0.058905843645334244, -0.06571986526250839, 0.003987637814134359, 0.02262348309159279, 0.008378530852496624, -0.0016494656447321177, -0.0255015566945076, 0.014545914717018604, 0.006570170167833567, -0.03208982199430466, 0.05030408129096031, 0.0012483344180509448, -0.032403454184532166, 0.03501805290579796, 0.017359189689159393, 0.09090248495340347, 0.051356542855501175, -0.005751330405473709, 0.011949657462537289, -0.0044154454953968525, 0.05081453546881676, 0.007837193086743355, 0.001959736691787839, -0.04213101044297218, 0.04856768995523453, 0.028669292107224464, 0.07624255865812302, 0.011995203793048859, -0.002494528889656067, 0.0182493943721056, 0.052710190415382385, -0.020934350788593292, 0.007235558237880468, 0.004390320274978876, 0.00943782553076744, 0.042984578758478165, 0.02863776497542858, -0.0096293855458498, 0.02078218199312687, -0.008706169202923775, -0.014892817474901676, 0.007278897799551487, 0.03223073482513428, -0.009295029565691948, 0.040298692882061005, 0.021032782271504402, 0.03410300984978676, -0.024580340832471848, 0.021564166992902756, 0.03670059144496918, 0.02084544487297535, -0.036520108580589294, 0.025557639077305794, -0.015709441155195236, 0.018252655863761902, -0.021311022341251373, -0.0005936053930781782, 0.011053556576371193, 0.048124972730875015, -0.01476059015840292, -0.003604344790801406, -0.020280806347727776, -0.03298076242208481, -0.026867782697081566, -0.03152143955230713, -0.044389739632606506, -0.03933028131723404, -0.052334364503622055, -0.018064185976982117, 0.030685218051075935, -0.004570445977151394, 0.04093289375305176, -0.012851991690695286, 0.0013670489424839616, 0.003031669184565544, -0.009674234315752983, 0.05305482819676399, 0.030126040801405907, 0.01437421329319477, -0.0485108382999897, 0.03721318393945694, -0.024378152564167976, 0.04191211983561516, -0.043916407972574234, 0.06265140324831009, 0.0014058643719181418, -0.005927485879510641, 0.01674509234726429, -0.013577721081674099, -0.03292197734117508, -0.03038819320499897, -0.04434865340590477, -0.03424692153930664, 0.013520599342882633, 0.02584904618561268, -0.02150401473045349, -0.011767476797103882, -0.034912943840026855, 0.04939175024628639, 0.03684725612401962, -0.03798888251185417, 0.026161644607782364, 0.046315234154462814, -0.040206436067819595, 0.024942392483353615, 0.02779945731163025, -0.019298721104860306, -0.06453301757574081, 0.030186204239726067, 0.034672632813453674, -0.001788601279258728, -0.017237162217497826, -0.02385784313082695, -0.029789647087454796, 0.015513951890170574, 0.0273265577852726, 0.0035607879981398582, -0.04870079830288887, 0.05488836392760277, 0.02803010120987892, -0.06728211790323257, 0.024296408519148827, -0.006733299233019352, -0.030362363904714584, -0.053712520748376846, -0.057099469006061554, -0.0013075682800263166, 0.028007566928863525, 0.0358099639415741, 0.044299621134996414, -0.04457041993737221, -0.006784796714782715, 0.0552271269261837, 0.05688338726758957, -0.03152020648121834, 0.017690060660243034, 0.02042328007519245, -0.02013322524726391, -0.018218548968434334, 0.020716696977615356, -0.04885861650109291, -0.021270528435707092, -0.0052652196027338505, -0.0057388897985219955, 0.049826834350824356, 0.0018773279152810574, -0.011648112908005714, 0.012826007790863514, 0.0440857857465744, -0.00936188455671072, 0.008396483026444912, 0.014239175245165825, 0.032239463180303574, 0.04712764918804169, 0.003787362016737461, 0.049081381410360336, -0.009806778281927109, -0.007374584674835205, -0.04449344798922539, 0.031011048704385757, 0.019149908795952797, 0.04297973960638046, -0.06623400747776031, 0.04068132862448692, 0.014887810684740543, -0.03405332937836647, 0.05529601126909256, -0.038394663482904434, -0.04519389569759369, 0.03628348559141159, 0.0040560439229011536, 0.0274499524384737, -0.03253990039229393, 0.012875951826572418, -0.031126482412219048, -0.0027060850989073515, 0.018521996214985847, 0.013056671246886253, 0.036420296877622604, 0.004181062337011099, -0.040161244571208954, -0.027652112767100334, -0.02623109519481659, 0.01607225090265274, -0.03178972378373146, -0.012844917364418507, -0.003755783662199974, -0.05945364013314247, -0.03309078887104988, 0.05161453038454056, 0.029762819409370422, 0.02093399129807949, -0.024648532271385193, 0.056258365511894226, 0.01713949255645275, 0.028531940653920174, 0.042003121227025986, -0.015442614443600178, 0.06107146665453911, -0.02453763782978058, 0.050804514437913895, 0.010547428391873837, -0.043321944773197174, -0.03403712809085846, -0.029245002195239067, -0.02593410573899746, 0.06096414849162102, 0.010926296934485435, -0.033747654408216476, -0.01844211108982563, -0.0007220819243229926, -0.03974126651883125, 0.01758516952395439, -0.01651138626039028, 0.0007251528440974653, 0.008509613573551178, 0.013159091584384441, 0.03318626433610916, -0.05071688070893288, 0.021609608083963394, -0.03903624787926674, 0.040005430579185486, 0.05130525678396225, -0.018859710544347763, -0.018250128254294395, -0.018592366948723793, -0.02783774398267269, -0.012439748272299767, 0.0016181529499590397, 0.01686827652156353, 0.03354579582810402, -0.001698636682704091, -0.010023178532719612, 0.03785363584756851, 0.022983359172940254, -0.037140581756830215, -0.00020802969811484218, -0.016341501846909523, 0.025857731699943542, 0.026974154636263847, 0.0350041426718235, -0.01999255083501339, -0.04722059890627861, 0.006170371547341347, -0.030538426712155342, 0.009546882472932339, -0.014328671619296074, 0.0067762513644993305, 0.011593183502554893, -0.011491196230053902, 0.031407322734594345, 0.05527748540043831, 0.019232993945479393, 0.0062967995181679726, -0.01396163459867239, 0.04343431070446968, -0.05622553825378418, -0.04121485352516174, 0.03530304878950119, 0.030059922486543655, -0.018884072080254555, 0.02861432358622551, 0.019104767590761185, -0.026590734720230103, 0.026095403358340263, 0.007841465063393116, -0.04258452728390694, 0.021343475207686424, -0.032297275960445404, 0.017044253647327423, -0.00035297026624903083, -0.04386566951870918, -0.007445791270583868, -0.027290750294923782, 0.02226855233311653, -0.03655034676194191, 0.007467781659215689, -0.05198781564831734, -0.048984162509441376, -0.02809380739927292, 0.004448484163731337, 0.010552416555583477, 0.03731221333146095, 0.002618292113766074, -0.01543591171503067, -0.006533981766551733, -0.03621817007660866, 0.015431245788931847, -0.00138066615909338, -0.011424295604228973, 0.030867816880345345, 0.011127411387860775, -0.01033720187842846, 0.014649906195700169, -0.017279230058193207, -0.050013914704322815, -0.004715910647064447, -0.010626664385199547, -0.02351946197450161, -0.06076566129922867, 0.002018745755776763, 0.01719466596841812, -0.007619369309395552, -0.025024572387337685, 0.0013552178861573339, -0.0035882494412362576, 0.010927151888608932, 0.022023238241672516, -0.0027244985103607178, -0.00912166852504015, 0.004511624108999968, -0.033100977540016174, 0.022780366241931915, 0.03264358267188072, -0.050574105232954025, -0.032847434282302856, 0.03387225419282913, -0.018467534333467484, 0.036311570554971695, -0.03545437753200531, -0.02935592085123062, -0.030500805005431175, -0.04755287617444992, -0.012897640466690063, -0.04003355652093887, 0.0005509013426490128, -0.0450848825275898, -0.03839435800909996, -0.0021947999484837055, 0.032311953604221344, 0.010078859515488148, 0.0134766586124897, 0.009517289698123932, -0.015485573559999466, 0.015422630123794079, -0.035531263798475266, -0.04985712096095085, -0.025643914937973022, -0.013560603372752666, 0.01502209808677435, 0.03312128782272339, 0.014004593715071678, 0.01778673194348812, 0.00836192537099123, 0.013883939012885094, 0.01608261838555336, 0.0023461156524717808, -0.03313693031668663, -0.05866169556975365, -0.030060136690735817, -0.01575922593474388, 0.014306827448308468, 0.004197315312922001, -0.01841517724096775, 0.0328826978802681, -0.02590356022119522, -0.00019250536570325494, -0.005956548266112804, -0.018126266077160835, -0.0055591329000890255, -0.04100849851965904, 0.06803280860185623, -0.05104196071624756, -0.0029164557345211506, 0.009969880804419518, 0.055289484560489655, 0.026533251628279686, 0.0056640226393938065, 0.006507398560643196, -0.03476076200604439, -0.016259269788861275, -0.05607075244188309, 0.020484739914536476, -0.05167883262038231, -0.028788665309548378, -0.04061180725693703, -0.012677826918661594, 0.019241508096456528, -0.0017038509249687195, 0.04406674951314926, 0.04479623958468437, -0.022654281929135323, 0.007367011159658432, -0.049495160579681396, 0.01433202251791954, 0.03853391110897064, 0.016264528036117554, -0.022734079509973526, 0.006030337419360876, -0.032515790313482285, 0.022841541096568108, -0.05303727835416794, -0.0538845993578434, -0.0402175672352314, -0.023198306560516357, 0.060412343591451645, -0.003953586798161268, 0.0449005626142025, -0.019679611548781395, -0.03357530012726784, -0.03306032344698906, 0.03794330731034279, 0.024767978116869926, -0.006939884275197983, 0.026955898851156235, 0.014545237645506859, -0.006078115664422512, -0.00750339450314641, 0.00012777217489201576, -0.010547202080488205, -0.039636824280023575, 0.05646548047661781, -0.013961202464997768, -0.0518878735601902, 0.027792874723672867, 0.08456055819988251, -0.04320649802684784, -0.05872837081551552, 0.02123243734240532, -0.017751598730683327, 0.00089909607777372, -0.0311635360121727, 0.010601729154586792, -0.03292631357908249, -0.02374941110610962, -0.0008408328285440803, 0.026690790429711342, 0.014641452580690384, 0.041841235011816025, -0.009552949108183384, 0.0362720787525177, -0.05257752537727356, 0.0026621478609740734, -0.016274861991405487, 0.0004929265705868602, -0.035993289202451706, -0.039619602262973785, 0.001018623006530106, -0.027600007131695747, 0.027948595583438873, 0.04831940308213234, -0.031102342531085014, -0.01146409846842289, 0.031476911157369614, -0.012744158506393433, 0.02053179405629635, -0.014364453963935375, 0.00939479935914278, 0.051625706255435944, -0.0392044298350811, -0.02559390477836132, -0.02441897802054882, 0.030039438977837563, 0.01420412678271532, 0.03884810209274292, -0.05109689012169838, -0.013738375157117844, 0.04856548830866814, -0.023869315162301064, -0.02843313477933407, -0.02507745660841465, -0.08053223043680191, -0.019348090514540672, -0.02076687477529049, -0.014823170378804207, -0.025975145399570465, 0.03160712495446205, 0.031760074198246, 0.006964327301830053, -0.056748367846012115, -0.007040638010948896, 0.01506071537733078, -0.019846593961119652, 0.005039970390498638, -0.019811848178505898, 0.015666192397475243, -0.030661379918456078, -0.052221138030290604, -0.04171934723854065, -0.0012364123249426484, -0.038456134498119354, -0.009577160701155663, -0.018966669216752052, 0.0053650629706680775, 0.047758497297763824, 0.03687979280948639, 0.00814527552574873, 0.019617075100541115, -0.022437678650021553, -0.06880463659763336, -0.01244557648897171, 0.014528555795550346, -0.01433817483484745, 0.0638522207736969, 0.023600218817591667, -0.014085660688579082, 0.06438810378313065, 0.008221924304962158, -0.0015410113846883178, 0.00010823252523550764, -0.006771418731659651, 0.026260623708367348, 0.010692939162254333, -0.04826176539063454, -0.0007874375442042947, 0.016140230000019073, -0.016900835558772087, 0.054552968591451645, 0.0022821808233857155, -0.01881374977529049, 0.008824382908642292, -0.009790057316422462, -0.015567323192954063, 0.026698069646954536, 0.006971495226025581, 0.018211083486676216, 0.03186987340450287, 0.011812820099294186, 0.014910684898495674, -0.001470435643568635, 0.03586937487125397, 0.017845500260591507, 0.022827038541436195, -0.03802252188324928, 0.02817624993622303, 0.041308678686618805, -0.03932860493659973, 0.040504176169633865, -0.02206471934914589, -0.04388709366321564, -0.03355911374092102, 0.004374968819320202, 0.027697619050741196, 0.06315243244171143, 0.004918873775750399, 0.027728281915187836, -0.006293749902397394, -0.022629503160715103, -0.021008256822824478, -0.007348857820034027, -0.048020754009485245, -0.033443570137023926, 0.006454905495047569, -0.027866849675774574, -0.026781586930155754, -0.0022522681392729282, -0.03375473618507385, -0.008421318605542183, -0.017704308032989502, -0.003973575308918953, -0.012410256080329418, 0.03055519051849842, -0.0121564706787467, 0.031561966985464096, 0.0009955212008208036, -0.01818779483437538, 0.045530956238508224, 0.057995591312646866, -0.025117656216025352, -0.05092654377222061, -0.0019238244276493788, 0.020146317780017853, -0.021041125059127808, 0.002877379534766078, 0.0025806832127273083, 0.016074812039732933, 0.011222572065889835, 0.002787332981824875, -0.01413674745708704, 0.04464077204465866, 0.001161225140094757, 0.046643998473882675, -0.0013600762467831373, -0.027995070442557335, -0.04445387423038483, 0.04258103296160698, -0.0036664025392383337, -0.03895147889852524, -0.03290523961186409, 0.027788236737251282, 0.03743366897106171, -0.017724892124533653, 0.017504090443253517, 0.02462465688586235, 0.03107616864144802, -0.027225825935602188, 0.02312830090522766, -0.01439928263425827, 0.014742298983037472, 0.0756044089794159, 0.012949789874255657, -0.003260605502873659, 0.025380343198776245, 0.037516504526138306, 0.025421397760510445, -0.013518283143639565, 0.07079668343067169, 0.012146133929491043, -0.017410200089216232, 0.04006345197558403, -0.03314610570669174, 0.02308497577905655, -0.0018759064842015505, -0.026434486731886864, -0.00492582144215703, -0.03119993396103382, -0.038799528032541275, -0.006969274953007698, -0.01337627787142992, 0.05164538696408272, -0.02141285501420498, 0.010042409412562847, -0.0029151919297873974, -0.00939794909209013, 0.019892588257789612, 0.03603443503379822, 0.014576599933207035, 0.055184707045555115, 0.014602863229811192, -0.00016318884445354342, -0.018052075058221817, 0.043462373316287994, 0.03661186993122101, 0.011599794961512089, -0.01303914375603199, 0.017252543941140175, 0.0232851505279541, 0.0004427401872817427, -0.02333497814834118, 0.0220938827842474, -0.02250637859106064, 0.05366964638233185, -0.041407886892557144, -0.04550155624747276, 0.009648466482758522, -0.056878700852394104, 0.0068156602792441845, -0.0679074227809906, 0.05237464979290962, -0.042964205145835876, -0.024175256490707397, 0.009605209343135357, -0.010282687842845917, -0.0262307059019804, 0.031825028359889984, -0.01771474815905094, 0.01671178825199604, 0.023431232199072838, 0.04859276860952377, -0.03366151079535484, 0.029124373570084572, 0.07379072904586792, -0.032548338174819946, -0.04429241642355919, 0.014809131622314453, 0.032736390829086304, -0.023139597848057747, -0.012892740778625011, -0.0540335588157177, -0.004750943277031183, 0.0057202731259167194, -0.061097003519535065, 0.03566356748342514, 0.07460834085941315, -0.003052222542464733, -0.05216464772820473, 0.00034326259628869593, 0.049701180309057236, -0.016734760254621506, -0.008017179556190968, 0.01877710223197937, 0.02876252308487892, 0.028301486745476723, 0.010814564302563667, -0.05801624804735184, -0.046985894441604614, -0.026537006720900536, -0.042355503886938095, 0.006245522294193506, -0.0250965915620327, -0.021278951317071915, -0.023540901020169258, -0.033646125346422195, -0.023058295249938965, 0.004741767421364784, -0.036101214587688446, -0.07049562782049179, 0.02318531833589077, 0.04097617045044899, 0.023324094712734222, 0.0123921362683177, -0.03691796585917473, -0.007180328480899334, 0.033810246735811234, 0.05880206450819969, -0.008240310475230217, 0.04503680765628815, 0.04123770445585251, -0.02518358640372753, 0.004303277004510164, -0.029187966138124466, 0.015949781984090805, -0.029388580471277237, -0.03694489598274231, -0.01621439680457115, 0.01194075495004654, -0.020380409434437752, -0.055112726986408234, 0.007971594110131264, 0.02429172955453396, -0.012300314381718636, -0.01003159862011671, -0.0683935135602951, 0.004834843799471855, -0.06922558695077896, -0.049965303391218185, -0.04410982131958008, 0.011090575717389584, 0.02029854618012905, 0.0057880328968167305, -0.01500552985817194, -0.06904898583889008, 0.1725555956363678, 0.014709241688251495, 0.01699424535036087, -0.0029723774641752243, 0.03596413508057594, 0.07148078083992004, 0.022928964346647263, -0.02428353764116764, -0.020374000072479248, -0.06626163423061371, 0.020427996292710304, 0.013854311779141426, 0.04573225602507591, 0.01747126132249832, 0.02106386609375477, 0.05346586927771568, -0.0598905049264431, 0.016207706183195114, 0.04324698448181152, -0.05855587124824524, -0.03265071287751198, 0.027756651863455772, -0.010318586602807045, -0.0027268382254987955, -0.0005017985822632909, 0.01233350858092308, 0.020579462870955467, -0.03311891853809357, -0.03248554840683937, -0.01865958981215954, -0.0026212120428681374, -0.017971962690353394, 0.03182489052414894, 0.014882415533065796, -0.04265988618135452, 0.04262661561369896, -0.015050780959427357, -0.06801396608352661, 0.015260844491422176, 0.032086096704006195, -0.009362435899674892, -0.007653912995010614, 0.043477725237607956, -0.01565617509186268, 0.004209988284856081, 0.017335420474410057, -0.02046528086066246, 0.0046949912793934345, 0.020109761506319046, -0.03780616819858551, 0.051321908831596375, -0.022756198421120644, 0.057166047394275665, -0.015066600404679775, -0.045149512588977814, 0.009394019842147827, -0.011975663714110851, -0.03935461863875389, -0.0012906865449622273, 0.011302600614726543, 0.02949797548353672, -0.010546931996941566, -0.0436624251306057, 0.02771230973303318, -0.029157599434256554, -0.0038436250761151314, 0.02339884638786316, -0.0019796842243522406, 0.014255679212510586, -0.03750821575522423, -0.010956447571516037, 0.002006994793191552, 0.02123994566500187, 0.011472584679722786, 0.042854517698287964, 0.019237246364355087, -0.026044098660349846, 0.008634009398519993, 0.02604304626584053, -0.03942200168967247, -0.009040920995175838, -0.03717923164367676, -0.006957515608519316, -0.04093976318836212, 0.0056463549844920635, 0.02670201100409031, -0.029058588668704033, -0.05100509896874428, -0.012005338445305824, 0.06404206901788712, 0.05552444979548454, 0.06288489699363708, -0.04664205014705658, 0.005106588359922171, -0.006708190310746431 ]
Lubiรกn es un municipio y localidad espaรฑola de la provincia de Zamora, en la comunidad autรณnoma de Castilla y Leรณn. Es uno de los municipios bilingรผes de la provincia de Zamora, ya que sus habitantes utilizan habitualmente tanto el castellano como el gallego. Geografรญa Se encuentra situado al noroeste de la provincia de Zamora, junto a la provincia de Orense y prรณximo a la frontera con Portugal. Pertenece a la denominada Alta Sanabria, una subcomarca de la comarca histรณrica y tradicional de Sanabria. En su tรฉrmino municipal se encuentran las localidades de Aciberos, Chanos, Las Hedradas, Hedroso, Lubiรกn y Padornelo. Se localiza a 139 kilรณmetros de la capital provincial. Su ubicaciรณn geogrรกfica, contigua a Galicia y prรณxima a Portugal, ha propiciado que sea uno de los pocos municipios bilingรผes de la provincia de Zamora, ya que sus habitantes utilizan habitualmente el idioma espaรฑol y el gallego. El tรฉrmino municipal estรก atravesado por la Autovรญa de las Rรญas Bajas A-52 entre los pK 98 y 111, asรญ como por la carretera nacional N-525, que en algรบn tramo se ha renombrado como ZA-106. Cuenta con una estaciรณn de ferrocarril convencional, la estaciรณn de Lubiรกn. En la actualidad se estรก construyendo la futura Lรญnea Ferroviaria de Alta Velocidad entre Madrid y Galicia, que pasarรก por el municipio, aunque las estaciones mรกs cercanas serรกn La Gudiรฑa-AV u Otero de Sanabria. El relieve del territorio es muy quebrado y con difรญcil acceso a las restantes localidades zamoranas de Sanabria. Por el norte se extiende la Sierra Segundera y por el sur la Sierra Gamoneda. Entre estas montaรฑas, se encuentra el valle de Lubiรกn, formado por el rรญo Tuela y sus afluentes (rรญo Pedro, rรญo Leira), al que se accede por el puerto de Padornelo (1360 metros) desde Requejo y del que se sale por el puerto de la Canda (1250 metros) hacia Galicia. La altitud del tรฉrmino municipal oscila entre los 1783 metros en el entorno de la Fraga da Osa (Sierra Segundera) y los 870 metros a orillas del rรญo Tuela en la frontera con el tรฉrmino municipal de Hermisende. El pueblo se alza a 1065 metros sobre el nivel del mar. El camino mozรกrabe-sanabrรฉs Lubiรกn es el รบltimo municipio del camino mozรกrabe-sanabrรฉs a su paso por la provincia de Zamora. En esta poblaciรณn el peregrino encuentra la primera de las mรกs de un centenar de "piedras", todas diferentes, realizadas por el escultor orensano Carballo y dispuestas a lo largo del trazado por la provincia de Orense. Historia En la Edad Media, con el avance de la Reconquista, Lubiรกn quedรณ integrado en el Reino de Leรณn, adscripciรณn que mantuvo posteriormente, hecho por el cual, durante la Edad Moderna, la documentaciรณn recoge explรญcitamente la pertenencia de Lubiรกn al Adelantamiento del Reino de Leรณn. Existe la teorรญa, sobre la base de la tradiciรณn oral local, de que Lubiรกn pudo pertenecer a la Orden del Temple durante รฉpoca medieval, si bien la falta de documentos no permite hacer ninguna afirmaciรณn concluyente al respecto. Ya en la Edad Contemporรกnea, al crearse en 1833 las actuales provincias, Lubiรกn quedรณ integrado en la provincia de Zamora, dentro รฉsta de la Regiรณn Leonesa. Monumentos y lugares de interรฉs Santuario de la Virgen de la Tuiza. Declarado Bien de Interรฉs Cultural, conserva en su interior la Virgen de las Nieves, patrona de la Alta Sanabria. Castro de As Muradellas. Se trata de un antiguo castro astur que data del Estรก declarado Bien de Interรฉs Cultural. Iglesia de San Mamรฉs. Construida en estilo barroco tardรญo. Arquitectura tradicional. Sus viviendas se suelen organizar siguiendo el esquema de cuadra (corte) en planta baja y vivienda en la superior, a la que se accede mediante una escalera exterior que desemboca en un corredor de madera, elementos destacados de la arquitectura sanabresa. Los muros se construyen con mampuesto de granito, mientras que la estructura de forjados y cubierta se realiza con madera de roble. El interior de la vivienda suele limitarse a varios dormitorios y una cocina alrededor de la cual se organiza la vida. Cortello dos Lobos. Es un antiguo y peculiar recinto realizado con arquitectura tradicional como trampa para la caza de lobos. Cultura Fiestas Entre las principales fiestas de esta localidad, destacan: Virgen de la Tuiza, el 5 de agosto. Fiesta local, los dรญas 8 y 9 de septiembre. Romerรญa de la Tuiza, el รบltimo fin de semana de septiembre. En Lubiรกn tambiรฉn se organizan otros actos como el de folk-rock Nas Portelas y el de bandas de mรบsica tradicional. Demografรญa El municipio de Lubiรกn, como la mayorรญa de los municipios de Sanabria, se encuentra en una situaciรณn de decrecimiento vegetativo. La situaciรณn actual tiene su origen en varias oleadas de emigraciรณn, principalmente el รฉxodo rural de los aรฑos 1950 y 1960 con destino a Madrid, Barcelona o Bilbao. Si bien este fue el movimiento migratorio mรกs intenso, tambiรฉn tuvieron lugar otros con anterioridad y con posterioridad a las dรฉcadas indicadas, como los que durante la primera mitad del se centraron primero en Iberoamรฉrica -principalmente Argentina y Cuba - y posteriormente en Europa -Francia, Suiza y Alemania-. La continua emigraciรณn ha afectado negativamente al dato mรกs visible, el de la densidad de poblaciรณn de Lubiรกn, con una evoluciรณn negativa que es consecuencia directa del cada vez menor nรบmero de vecinos. Pero tambiรฉn han afectado a otros aspectos menos visibles a simple vista como son los relacionados con la composiciรณn de su masa de poblaciรณn. En este sentido, se ha producido un notable crecimiento del รญndice de envejecimiento y el รญndice de natalidad es sensiblemente inferior al de mortalidad. Nรบcleos de poblaciรณn El municipio se divide en seis nรบcleos de poblaciรณn, que poseรญan la siguiente poblaciรณn en 2020 segรบn el INE. Ayuntamiento La alcaldรญa lleva varias legislaturas en manos del PSOE, siendo clave para ello la figura de Felipe Lubiรกn, alcalde del municipio desde 1979. Vรฉase tambiรฉn Referencias Enlaces externos Ayuntamiento de Lubiรกn Localidades de Lubiรกn Localidades de Sanabria Localidades de la provincia de Zamora
[ -0.0050993384793400764, -0.0035505364648997784, 0.022807370871305466, -0.02027927339076996, -0.023929990828037262, 0.002346786204725504, 0.006780912168323994, 0.02812044881284237, 0.015294131822884083, 0.03139280900359154, 0.06687243282794952, 0.00916434545069933, 0.007743993774056435, -0.021143583580851555, -0.020304668694734573, -0.01852881908416748, -0.034717533737421036, -0.03633515164256096, 0.01760195940732956, 0.0020033754408359528, -0.01834181696176529, 0.008640970103442669, -0.08735288679599762, -0.012290410697460175, 0.019433986395597458, 0.01607462950050831, 0.03474591299891472, -0.0011210847878828645, 0.05327918380498886, 0.059981781989336014, -0.017420290037989616, -0.031191594898700714, 0.035449519753456116, -0.029839251190423965, -0.004685550928115845, -0.01274503767490387, 0.00895041786134243, -0.034266985952854156, 0.03133389353752136, -0.06411514431238174, 0.06459879875183105, -0.021945897489786148, 0.028491659089922905, -0.029794776812195778, -0.017456822097301483, -0.02218960039317608, -0.007254740688949823, -0.04072882980108261, 0.0005141524598002434, -0.0385495088994503, 0.012651132419705391, 0.019420843571424484, 0.0030765063129365444, 0.024517662823200226, 0.011979750357568264, 0.0028316054958850145, 0.01404770277440548, -0.013487131334841251, -0.006759470794349909, 0.019542640075087547, 0.0002693055139388889, 0.018100140616297722, 0.0033635306172072887, -0.04964049160480499, 0.03996781259775162, 0.020186947658658028, 0.003926261328160763, 0.019171038642525673, 0.049342408776283264, -0.04770152270793915, -0.0015786172589287162, 0.005809401627629995, 0.009742596186697483, -0.06781301647424698, 0.005829776171594858, 0.033180560916662216, -0.02140355296432972, -0.004206749144941568, -0.016322176903486252, 0.010261785238981247, 0.04283959046006203, 0.054785244166851044, 0.004784080665558577, 0.02586793154478073, -0.07497865706682205, 0.0006483383476734161, -0.03391067683696747, 0.037634413689374924, -0.01548350416123867, -0.005617271177470684, 0.001202078303322196, 0.04532213509082794, 0.03186584636569023, -0.005249061621725559, 0.02804991789162159, 0.06599605083465576, -0.06393297016620636, 0.05269835516810417, -0.01239983644336462, -0.013108428567647934, 0.018490634858608246, 0.03775540739297867, 0.009221334010362625, 0.04403954744338989, -0.04501011222600937, -0.018937788903713226, -0.008423040620982647, -0.007254902273416519, 0.01274004764854908, -0.05670821666717529, -0.0005094170919619501, -0.024780169129371643, 0.002046478446573019, 0.002278436440974474, -0.012137724086642265, 0.04447055980563164, -0.009716692380607128, 0.04179368540644646, -0.024175450205802917, -0.00946149043738842, -0.02164924517273903, 0.022856222465634346, 0.05602160841226578, -0.019151631742715836, 0.0010354783153161407, -0.04156360775232315, -0.040839068591594696, 0.05091024190187454, -0.03173790127038956, -0.02739890106022358, 0.007878219708800316, -0.046903226524591446, 0.011995606124401093, 0.0040964060463011265, -0.00023139690165407956, 0.04631619527935982, 0.031984537839889526, 0.014585661701858044, 0.03612418472766876, -0.05975572019815445, 0.05481674149632454, 0.03824187070131302, -0.0008389048743993044, 0.0985802412033081, 0.0036840829998254776, 0.03226561099290848, 0.030121836811304092, -0.013978980481624603, -0.012835672125220299, 0.0337647907435894, -0.0382721871137619, 0.020191822201013565, 0.019973304122686386, 0.0219650249928236, 0.009370612911880016, 0.011863878928124905, -0.004186100326478481, 0.008780157193541527, 0.012743426486849785, 0.03877883404493332, -0.012405824847519398, 0.02650415152311325, 0.004743694793432951, 0.0368451364338398, -0.019651984795928, 0.023824436590075493, -0.03855615854263306, -0.004316000733524561, -0.028268514201045036, -0.041866838932037354, 0.016059404239058495, 0.01798178441822529, 0.015994371846318245, 0.01825845241546631, 0.013828323222696781, 0.03763092681765556, 0.002788616344332695, -0.01755470596253872, 0.03920576348900795, 0.01996319741010666, -0.004412434995174408, -0.024012135341763496, -0.020513193681836128, 0.06593306362628937, 0.02941993437707424, 0.0004433387075550854, -0.01314849779009819, -0.03330377861857414, -0.037035152316093445, -0.01126789953559637, 0.013176124542951584, 0.05509291589260101, 0.0009406146709807217, 0.022561635822057724, 0.0030227582901716232, 0.002843777881935239, -0.00800153985619545, -0.00014339144399855286, -0.02261480875313282, -0.0683596283197403, -0.037188656628131866, 0.0755147710442543, -0.00839136727154255, 0.02666475437581539, -0.0017370118293911219, -0.027653183788061142, 0.02479236014187336, 0.07483097910881042, 0.00319988583214581, -0.0010810227831825614, 0.047067418694496155, 0.003331425366923213, -0.029714399948716164, 0.014560546725988388, 0.0009237777558155358, -0.04255560040473938, -0.01787629909813404, 0.05517538636922836, 0.0010062172077596188, -0.008432726375758648, -0.007389077916741371, 0.039164043962955475, 0.01858784444630146, 0.036364320665597916, 0.003453361801803112, 0.018475737422704697, 0.0026371811982244253, 0.04496615007519722, -0.007963531650602818, 0.009305492043495178, 0.004754262510687113, 0.030075890943408012, 0.02982197143137455, 0.04003705084323883, 0.024437861517071724, 0.02529788762331009, 0.04250633716583252, 0.0433623343706131, -0.028244968503713608, 0.017798729240894318, -0.009124555625021458, 0.030231475830078125, 0.05088679492473602, 0.01104593276977539, -0.009308608248829842, 0.02505391091108322, 0.007575188763439655, 0.006632511038333178, -0.022901028394699097, 0.04192286729812622, -0.025520537048578262, 0.03684280440211296, 0.0033036749809980392, 0.021030543372035027, -0.03038087487220764, 0.007911860942840576, 0.006241841707378626, 0.044783174991607666, -0.0531047023832798, -0.02447941154241562, 0.02922808937728405, 0.01861225999891758, 0.012484675273299217, 0.04703625664114952, 0.029590021818876266, 0.017025388777256012, 0.009995660744607449, 0.024467242881655693, -0.00795456487685442, -0.05146164447069168, -0.02701692096889019, -0.0455540306866169, -0.07516516745090485, -0.045520056039094925, -0.07538583874702454, 0.004043517634272575, 0.06073800101876259, -0.07011126726865768, 0.02057194709777832, -0.0003961148322559893, -0.008467291481792927, -0.021949123591184616, -0.013000847771763802, 0.03234091401100159, 0.015444418415427208, 0.05298527702689171, -0.03835831210017204, 0.03389010205864906, -0.014272276312112808, 0.014900720678269863, -0.014295794069766998, -0.010999953374266624, -0.032149117439985275, -0.008396022953093052, -0.0008542834548279643, -0.009098469279706478, 0.02347240224480629, 0.022099586203694344, -0.023359008133411407, -0.03822478652000427, 0.02546769008040428, 0.014528301544487476, -0.03300107643008232, 0.02755471132695675, -0.04623831808567047, 0.04889224097132683, 0.025575459003448486, -0.01458925660699606, 0.03559647127985954, 0.05593343824148178, -0.04547135904431343, 0.027301976457238197, 0.002155094174668193, 0.022596023976802826, -0.04654466360807419, 0.0652773380279541, 0.04494043439626694, 0.017623692750930786, -0.049263518303632736, -0.005034400150179863, -0.03472396358847618, 0.00020827593107242137, 0.02239336259663105, 0.00017524088616482913, -0.029848285019397736, 0.026996977627277374, 0.02552022971212864, -0.09019828587770462, 0.033423297107219696, -0.0250165406614542, -0.034347258508205414, -0.051960352808237076, -0.0579192079603672, 0.029395094141364098, 0.01793612726032734, 0.02621014043688774, -0.03656778857111931, -0.03614167496562004, -0.022369317710399628, 0.006511055864393711, 0.05405481532216072, -0.03334374725818634, 0.03975734859704971, 0.045974791049957275, 0.041321754455566406, 0.0402848981320858, -0.0011227395152673125, -0.0032187472097575665, 0.0003778580285143107, 0.01574193872511387, -0.007394582498818636, 0.0081087751314044, 0.025810228660702705, 0.004889965523034334, 0.008975910022854805, 0.035094257444143295, -0.028644779697060585, 0.005611578468233347, 0.03514914587140083, 0.03341372311115265, 0.029855048283934593, -0.002274057362228632, 0.005095887463539839, -0.01854708045721054, -0.027596259489655495, -0.04769832640886307, 0.03922925516963005, 0.02753804251551628, 0.04550942778587341, -0.053601253777742386, 0.04588783532381058, -0.018226495012640953, -0.04407312348484993, 0.03954169154167175, -0.06074272841215134, -0.02330499328672886, 0.04046740382909775, -0.014078368432819843, 0.056266844272613525, -0.03763977438211441, 0.014251511543989182, 0.0043425243347883224, 0.0019230709876865149, 0.01491895504295826, 0.023136215284466743, 0.01166979968547821, -0.002058567013591528, -0.015621591359376907, -0.03011077456176281, -0.04686550796031952, -0.008665019646286964, -0.016842946410179138, 0.011140835471451283, -0.007556537631899118, -0.041575346142053604, -0.052305370569229126, 0.05260574072599411, 0.04938424006104469, 0.043324340134859085, -0.012759092263877392, 0.01539607997983694, 0.014747602865099907, 0.01767868734896183, 0.04564106464385986, -0.03160029277205467, 0.0200837180018425, -0.02329130843281746, 0.07396430522203445, -0.015762943774461746, -0.016040973365306854, 0.005161010194569826, -0.02810913510620594, -0.027639541774988174, 0.03522404655814171, 0.008979657664895058, -0.031483083963394165, -0.0371725857257843, 0.025994036346673965, -0.014858141541481018, 0.017335552722215652, -0.0282973013818264, -0.025625042617321014, -0.024581126868724823, 0.037575241178274155, 0.007351385895162821, -0.04379614442586899, -0.006556025240570307, -0.06050558015704155, 0.03037692792713642, 0.03841346874833107, 0.0020720220636576414, -0.010968891903758049, -0.04194575920701027, -0.0071745640598237514, -0.012424999848008156, -0.013955384492874146, 0.0433809757232666, -0.004816447850316763, 0.004337889142334461, -0.04257317632436752, 0.014589698985219002, 0.05639340355992317, -0.0074505191296339035, -0.0026181016582995653, 0.013290123082697392, 0.02649272419512272, 0.004385395906865597, 0.03368261083960533, -0.013808724470436573, -0.030355874449014664, 0.011042545549571514, -0.061440978199243546, 0.0018582571065053344, -0.01614335924386978, -0.049428507685661316, -0.00732499361038208, 0.0007776528946124017, 0.00612935284152627, 0.035413842648267746, -0.024019349366426468, -0.008890771307051182, -0.012135960161685944, 0.03981434553861618, -0.03657655045390129, -0.027874361723661423, 0.041226670145988464, -0.01748858019709587, -0.028937701135873795, -0.008650686591863632, 0.04378107562661171, -0.03533260524272919, -0.010546636767685413, 0.05180954933166504, -0.04530913755297661, 0.026390455663204193, -0.04499134421348572, -0.015648681670427322, 0.010089539922773838, -0.0228179469704628, 0.012375115416944027, -0.01085677556693554, 0.02500341832637787, -0.006524654105305672, -0.00858610775321722, -0.009100405499339104, -0.05615739896893501, -0.02528776414692402, -0.0034734720829874277, -0.01397773902863264, 0.027816081419587135, -0.005672515835613012, -0.023958073928952217, -0.015216462314128876, -0.034304533153772354, 0.0020165422465652227, -0.006736860144883394, -0.018476467579603195, -0.005267779342830181, 0.021197233349084854, 0.03022918663918972, 0.03620864078402519, 0.029401537030935287, -0.022349650040268898, -0.018957162275910378, 0.00545491511002183, -0.0032562112901359797, -0.02981455810368061, 0.030715208500623703, -0.001407424220815301, -0.0013288871850818396, -0.02148120291531086, -0.022492341697216034, -0.023664461448788643, 0.018002860248088837, 0.01921098865568638, 0.010436654090881348, 0.004825810436159372, 0.01533456426113844, -0.04631476476788521, 0.03927772119641304, 0.009362309239804745, -0.07925407588481903, -0.03446480259299278, 0.010758867487311363, 0.00824203621596098, 0.0458003431558609, -0.006105144042521715, 0.005268629174679518, -0.052183330059051514, -0.04051036015152931, -0.024247368797659874, -0.03813236951828003, -0.0024061989970505238, -0.037980660796165466, -0.02435830421745777, -0.023115435615181923, -0.00686752051115036, 0.020680777728557587, -0.023773418739438057, -0.0010489000706002116, -0.04864319786429405, 0.0037149980198591948, -0.031525857746601105, -0.03356368467211723, -0.042827166616916656, -0.03252177685499191, -0.047546397894620895, 0.07500598579645157, 0.022149359807372093, -0.006545215379446745, -0.010967015288770199, 0.0280142892152071, 0.0125045794993639, -0.04863038659095764, -0.028912648558616638, -0.04822089895606041, -0.0064123342745006084, -0.0030396967194974422, -0.02517080307006836, 0.01459630485624075, -0.02959415316581726, 0.059101808816194534, -0.044839076697826385, 0.009768662974238396, -0.004388739354908466, -0.03491230681538582, -0.008757076226174831, 0.0019142801174893975, 0.026388293132185936, -0.029322626069188118, 0.0022210057359188795, 0.006539441645145416, 0.048270635306835175, 0.05704711005091667, -0.0041080666705966, -0.057116445153951645, -0.028339039534330368, -0.048318102955818176, -0.06317399442195892, 0.029986537992954254, -0.0477621965110302, -0.014852195978164673, -0.022445471957325935, -0.009113545529544353, 0.03778776526451111, 0.005443297792226076, 0.001226402586326003, 0.0314941331744194, -0.025246059522032738, -0.00587682519108057, -0.027505794540047646, 0.06084843724966049, 0.03564922511577606, -0.022843534126877785, 0.002888093236833811, -0.028726933524012566, -0.013370060361921787, 0.017767421901226044, -0.05107472836971283, -0.055498942732810974, -0.06246285140514374, 0.012488620355725288, 0.07613340765237808, -0.02632286585867405, 0.031064093112945557, -0.009509445168077946, -0.04557567462325096, -0.049336470663547516, 0.015560486353933811, -0.002221003407612443, 0.03305253013968468, 0.04637700691819191, -0.009229704737663269, -0.014904948882758617, 0.04131836071610451, -0.01041773147881031, 0.006617779843509197, -0.035704586654901505, 0.05326138809323311, -0.01061526220291853, -0.046905770897865295, 0.004611697513610125, 0.019080717116594315, -0.04392983391880989, -0.022492026910185814, 0.008750761859118938, 0.00437704473733902, -0.007527966983616352, -0.01852627471089363, 0.02241189405322075, -0.008172553963959217, -0.015224257484078407, -0.013872659765183926, 0.012922867201268673, 0.0065897610038518906, 0.06031683459877968, -0.00927609484642744, 0.04173881933093071, -0.028417790308594704, 0.005328534170985222, 0.02502324990928173, -0.038725174963474274, -0.0053149620071053505, -0.02956271916627884, -0.02484043873846531, -0.029996979981660843, -0.003992930520325899, 0.023891590535640717, -0.019158469513058662, 0.04106241092085838, 0.03554113209247589, 0.026798607781529427, 0.0448371060192585, 0.0015850375639274716, -0.02318289875984192, 0.03228241205215454, -0.028950722888112068, -0.06309451162815094, -0.03258379176259041, 0.030484400689601898, -0.006094742100685835, 0.04180704429745674, -0.058827996253967285, -0.008687499910593033, 0.036508768796920776, -0.002729319501668215, 0.004261305555701256, -0.03714783117175102, -0.04887720197439194, -0.03941385820508003, -0.04638137295842171, -0.05099045857787132, -0.017784925177693367, -0.011329065077006817, 0.029436640441417694, 0.01727684773504734, -0.03200824186205864, 0.015440686605870724, 0.01663779653608799, -0.059023212641477585, 0.025729985907673836, -0.019571499899029732, 0.02858811803162098, -0.06882685422897339, -0.04931706190109253, -0.03376263380050659, 0.014725076034665108, 0.018142210319638252, -0.016692325472831726, -0.02394375577569008, 0.029525276273489, 0.030784370377659798, 0.02273867465555668, 0.036025140434503555, -0.00523737259209156, 0.0008566194446757436, -0.05257629603147507, -0.029898270964622498, 0.01318156998604536, 0.016403598710894585, 0.03195531666278839, 0.03242315351963043, 0.004988794680684805, 0.03166878595948219, 0.0022268875036388636, -0.01340301614254713, -0.011712499894201756, -0.0067049311473965645, -0.004332561511546373, -0.006487441714853048, 0.0022879496682435274, -0.05428292602300644, -0.03234036639332771, -0.031749650835990906, 0.04906020686030388, -0.02430747263133526, 0.030113479122519493, -0.011356761679053307, -0.014304200187325478, 0.01396466139703989, 0.0350346639752388, 0.008271959610283375, -0.00041758237057365477, -0.0026227724738419056, 0.04336254671216011, 0.026800312101840973, -0.013914177194237709, 0.0203536543995142, 0.04109007492661476, 0.028988419100642204, -0.03150506690144539, 0.006103046704083681, 0.03616698086261749, -0.008743110112845898, 0.03457868844270706, -0.03929203376173973, -0.016792217269539833, -0.01130671426653862, -0.025178443640470505, -0.002697659656405449, 0.030957650393247604, 0.0009661128860898316, 0.012867435812950134, 0.009495173580944538, -0.016811801120638847, -0.05366728827357292, 0.012031405232846737, -0.0900886058807373, -0.05068380758166313, 0.024636048823595047, -0.03780738264322281, -0.023265093564987183, -0.0256915595382452, -0.04471223056316376, 0.029813773930072784, -0.03585776686668396, -0.014964682050049305, 0.011184158734977245, 0.014051630161702633, 0.0028738745022565126, 0.034574273973703384, -0.022273559123277664, 0.0030595229472965, 0.02921086922287941, 0.017460312694311142, -0.036939799785614014, -0.04566728696227074, -0.0016193344490602612, 0.02975602075457573, 0.004160628654062748, 0.019142160192131996, -0.002884554909542203, 0.03681433945894241, -0.02454625442624092, 0.003949266392737627, 0.00139180151745677, 0.023436153307557106, 0.005052950233221054, 0.025724366307258606, -0.009196647442877293, 0.0038065218832343817, -0.03885870426893234, 0.05002700909972191, -0.04217100143432617, -0.024361751973628998, -0.052312545478343964, 0.033812016248703, 0.04116465151309967, -0.014605352655053139, 0.032910097390413284, 0.020945250988006592, 0.03469349816441536, -0.006756937596946955, 0.014370601624250412, -0.005363184958696365, 0.06025460362434387, 0.056458480656147, 0.0254029780626297, -0.023045293986797333, 0.01721465401351452, 0.046319469809532166, -0.032932624220848083, -0.03802964836359024, 0.04790632054209709, 0.011551504954695702, 0.007248053792864084, 0.017252812162041664, -0.044302694499492645, 0.008498169481754303, 0.04276232793927193, -0.00860544852912426, -0.010123360902071, -0.01605077274143696, -0.009508071467280388, -0.009321914054453373, 0.009358198381960392, 0.04381309077143669, -0.004994592629373074, -0.0073953368701040745, -0.012578963302075863, -0.03213271498680115, -0.00509391725063324, 0.04168357700109482, 0.015798605978488922, -0.018529590219259262, 0.04169305041432381, 0.026338588446378708, -0.023864582180976868, 0.037555381655693054, 0.008294905535876751, -0.0018551729153841734, -0.004484291188418865, 0.008210573345422745, 0.005212268326431513, -0.00727116921916604, -0.030528433620929718, -0.011892283335328102, -0.011476768180727959, 0.008839881047606468, -0.05469793826341629, -0.014875889755785465, 0.006730599328875542, -0.02674463763833046, -0.02023272030055523, -0.046420034021139145, 0.02109367959201336, -0.074642114341259, -0.016736270859837532, 0.023645387962460518, 0.021164895966649055, -0.01811901666224003, 0.04126007482409477, 0.024596132338047028, 0.03938448056578636, 0.01819216087460518, 0.05140237137675285, 0.012775441631674767, 0.02231535315513611, 0.012811671942472458, -0.024633703753352165, -0.04509075731039047, 0.02434101700782776, -0.005461564753204584, -0.031889408826828, -0.036486897617578506, -0.033398956060409546, -0.004739073105156422, 0.006774194538593292, -0.02890186384320259, 0.0029422459192574024, 0.05783072113990784, -0.04802623763680458, -0.030870338901877403, 0.021602794528007507, 0.052465926855802536, -0.03395438566803932, 0.03435735031962395, 0.01106744073331356, 0.03523141145706177, 0.01782074198126793, -0.015466379001736641, -0.02480475790798664, -0.051154974848032, -0.02182925119996071, -0.06073283776640892, 0.05663418397307396, -0.033277709037065506, 0.011220700107514858, -0.03399698808789253, -0.03407572954893112, -0.0033059774432331324, 0.022636353969573975, -0.051790133118629456, -0.0017667084466665983, 0.0462932363152504, 0.03236284479498863, -0.01072323601692915, 0.027450792491436005, -0.03374067321419716, -0.009452511556446552, 0.018181441351771355, 0.08260136842727661, -0.006971313618123531, 0.028931133449077606, 0.017110809683799744, -0.005801108665764332, 0.023348389193415642, -0.029627671465277672, 0.03703427314758301, 0.004096152260899544, -0.014415370300412178, -0.0002714207221288234, 0.01869341731071472, -0.03235151618719101, -0.058243390172719955, 0.006606157403439283, 0.011136067099869251, 0.015230475924909115, -0.0024592429399490356, -0.07019629329442978, 0.015062793157994747, -0.041114866733551025, -0.004871673416346312, -0.020528681576251984, -0.024867262691259384, 0.00583646958693862, -0.040086548775434494, 0.021241936832666397, -0.05302056670188904, 0.14987808465957642, 0.0387362502515316, 0.040766291320323944, 0.004739739000797272, 0.015404251404106617, 0.06536978483200073, -0.007369913626462221, 0.0020766090601682663, 0.015068809501826763, -0.0027249252889305353, 0.029429201036691666, 0.005760766100138426, 0.010008162818849087, -0.0034083230420947075, 0.026832215487957, 0.06783588230609894, -0.04070974886417389, 0.0025365676265209913, 0.0182017982006073, -0.043606940656900406, -0.04827440530061722, 0.03862641751766205, 0.013005087152123451, 0.023566419258713722, 0.0028527837712317705, 0.03405173867940903, 0.01745949685573578, -0.04303751140832901, 0.003704611212015152, -0.020129039883613586, -0.008664289489388466, -0.03463935852050781, 0.03413766995072365, 0.01198089774698019, -0.031586796045303345, 0.03140714019536972, 0.003586679231375456, -0.018393447622656822, -0.014675411395728588, 0.02466435171663761, -0.029102548956871033, 0.012137999758124352, 0.04112573340535164, -0.04578302428126335, 0.016358500346541405, 0.04799795523285866, -0.04127375781536102, 0.0313488133251667, 0.005482115782797337, -0.0009733270271681249, 0.07792697846889496, -0.03925071284174919, -0.011896256357431412, -0.026461688801646233, -0.035875026136636734, 0.0001236274401890114, 0.016401777043938637, -0.012279929593205452, -0.029846295714378357, 0.006081802770495415, 0.030960524454712868, 0.014333543367683887, -0.024144111201167107, 0.01088250707834959, -0.07016545534133911, 0.0027308184653520584, 0.027927780523896217, 0.01754923351109028, -0.03313977271318436, -0.04786631092429161, -0.02258911170065403, -0.012582368217408657, -0.005883373785763979, -0.036849718540906906, 0.04230146482586861, 0.0573592409491539, -0.03770560398697853, 0.030882829800248146, -0.0395713672041893, 0.004036824218928814, -0.019439836964011192, -0.06606646627187729, 0.010454653762280941, -0.003049822524189949, 0.0284513421356678, 0.023434612900018692, -0.02149513177573681, -0.046885933727025986, -0.035811543464660645, 0.04896846413612366, 0.05144010856747627, -0.0051543619483709335, -0.01246923953294754, -0.03675074502825737, 0.005802124738693237 ]
While exploring the coastline, our surfEXPLORE team met a cross-section of local residents, including tribal people with little involvement with or concern for 21st-century tech or culture, betel-nut-chewing indigenous Papuan people who have lived in this area continuously for roughly 30,000 years, and quite a few transmigrasiโ€”ethnic Malay Asian Indonesians who've received government assistance to leave crowded areas like Java and Bali and resettle in Papua. What we did not see was a single Caucasian foreigner (other than ourselves) in three weeks on the coast. SurfEXPLORE is a multi-national group who travel to some of the world's more remote and exotic locations seeking undiscovered surfing waves, and teaming up with Adventurers and Scientists for Conservation (ASC) to contribute to environmental research along the way. Our core team is French surfer Erwan Simon, British longboard champion Sam Bleakley, Italian surfer Emiliano Cataldi, and me, American photographer John Seaton Callahan. This was our fifth project in Pacific Indonesia, and it remains one of our favorite places to travel, explore, and surf. When we contacted the Tourism Official in Sarmi, a large town on the coast known as "Kota Ombak," or "City of Waves" in Bahasa, the woman there said they recorded 24 foreign visitors in all of 2014. And as we have at each stop on our journeys, we made scientific use out of our presence here, collecting water samples for the team at ASC Microplastics to analyze and add to their database of microplastic content throughout the world's waters.
[ 0.000007837279554223642, 0.03318076208233833, -0.039756715297698975, -0.037676356732845306, 0.0063186753541231155, -0.017260996624827385, -0.010934051126241684, 0.03794875741004944, 0.05743032693862915, 0.011899478733539581, 0.03007643111050129, -0.03848353400826454, -0.007202113512903452, -0.022416286170482635, -0.03438449278473854, -0.017038807272911072, -0.02738172560930252, -0.02443201094865799, -0.02756161242723465, -0.012969652190804482, 0.009977618232369423, 0.008368149399757385, -0.03666699677705765, -0.05337684229016304, -0.01642700470983982, -0.003926699515432119, 0.04078206047415733, -0.009262624196708202, 0.06046310439705849, 0.06383927166461945, -0.02893104963004589, -0.023705806583166122, 0.03529873862862587, -0.05293099582195282, -0.0021623829379677773, -0.0042874375358223915, 0.018593598157167435, -0.03359494358301163, -0.04348047450184822, -0.04651165381073952, 0.00030737367342226207, -0.03369957208633423, 0.05700864642858505, -0.012006925418972969, -0.035383958369493484, 0.014517226256430149, -0.0038214463274925947, -0.02706487663090229, 0.009699500165879726, -0.03802990913391113, 0.030089257284998894, 0.02200375683605671, 0.005594032816588879, 0.014617021195590496, 0.020673858001828194, 0.016813429072499275, -0.011021043173968792, -0.009783297777175903, -0.014674900099635124, 0.013543548993766308, 0.006073547527194023, 0.0028770118951797485, 0.026787174865603447, -0.06722480058670044, 0.020653579384088516, 0.03310098871588707, -0.0008329190313816071, -0.01221789512783289, 0.04759174585342407, -0.02870437130331993, -0.017652183771133423, 0.0027105954941362143, -0.004795760847628117, -0.03212377801537514, -0.02333521656692028, -0.016720805317163467, 0.0011828975984826684, 0.022572997957468033, -0.01176539808511734, -0.012933909893035889, 0.03404344245791435, 0.06500441581010818, 0.008115449920296669, 0.033974092453718185, -0.04863915964961052, -0.02833607606589794, -0.0011322638019919395, 0.021726977080106735, 0.03844883292913437, 0.018364842981100082, 0.006470361724495888, 0.0827358067035675, -0.025373335927724838, -0.025532320141792297, 0.02922377549111843, 0.03882312402129173, -0.026939358562231064, 0.019857443869113922, -0.01385157648473978, -0.01585155911743641, 0.05278974398970604, 0.029246021062135696, -0.029158787801861763, 0.0466427281498909, -0.013540278188884258, 0.017096104100346565, -0.03818352147936821, -0.009212668985128403, 0.008508008904755116, -0.0312553234398365, 0.004149518441408873, -0.013289623893797398, 0.0036587773356586695, -0.00040765965241007507, 0.026218833401799202, 0.03706192970275879, 0.01032822672277689, 0.054932963103055954, -0.02457575872540474, -0.020687047392129898, -0.014806575141847134, 0.001300038187764585, 0.032289206981658936, 0.00542994262650609, -0.0027499799616634846, -0.03866490721702576, -0.042548973113298416, 0.012546696700155735, -0.04368250444531441, 0.009302954189479351, 0.008784335106611252, -0.055504150688648224, -0.007547268643975258, 0.00959545373916626, -0.0044111283496022224, 0.03291080519556999, -0.001251595327630639, 0.022897634655237198, 0.016385843977332115, -0.06491576880216599, 0.030366571620106697, 0.036225490272045135, 0.002093236893415451, 0.11945298314094543, -0.0022388030774891376, 0.04421347379684448, 0.02611895650625229, -0.0076682171784341335, -0.039208922535181046, 0.03442301228642464, -0.024735065177083015, 0.0018890852807089686, -0.003912432584911585, 0.016081126406788826, -0.003714236430823803, 0.012937638908624649, -0.01150207407772541, 0.017937669530510902, 0.044911108911037445, 0.014383780770003796, -0.06720814853906631, 0.02271878719329834, -0.004570588003844023, 0.028591370210051537, -0.0014435813063755631, 0.03622668981552124, -0.023806221783161163, -0.007075911853462458, 0.026400694623589516, -0.013484101742506027, 0.021213440224528313, 0.004564709961414337, -0.00017936076619662344, 0.020316658541560173, 0.011615117080509663, 0.0454145148396492, 0.06754756718873978, 0.004092157818377018, 0.038063421845436096, 0.03443250432610512, -0.023385757580399513, 0.007855433970689774, 0.0027517531998455524, 0.0458240881562233, -0.0027673905715346336, -0.02029675431549549, -0.023131074383854866, -0.030484871938824654, -0.028923887759447098, -0.016387898474931717, -0.010789996944367886, 0.03997871279716492, -0.0608016699552536, -0.021227000281214714, 0.016831573098897934, 0.015783822163939476, -0.005066978745162487, -0.03428700938820839, -0.0058941300958395, -0.053000401705503464, -0.052552513778209686, 0.051703207194805145, -0.03675058111548424, 0.029988300055265427, -0.01990228146314621, -0.005691245198249817, 0.028034633025527, 0.08021190017461777, -0.04513578861951828, -0.006713506765663624, 0.037011563777923584, 0.008254334330558777, -0.005420510657131672, -0.04202538728713989, 0.010562654584646225, -0.02384394407272339, -0.013890709728002548, 0.03324899822473526, -0.009282444603741169, -0.02690182253718376, -0.0009977351874113083, -0.006433466449379921, 0.023492204025387764, 0.004382016137242317, 0.003605848178267479, 0.02398950792849064, 0.008738063275814056, 0.056631073355674744, -0.04169090837240219, -0.010790538974106312, -0.030071550980210304, 0.020861487835645676, 0.02906469628214836, 0.057023078203201294, 0.03153484687209129, 0.026541240513324738, 0.03193007409572601, 0.056039437651634216, 0.009703585878014565, -0.015236705541610718, 0.03438921272754669, 0.023005802184343338, 0.046050794422626495, 0.03014286421239376, 0.00899447500705719, 0.023290591314435005, -0.02076462097465992, -0.028446875512599945, -0.05592741817235947, 0.02963132970035076, -0.017073579132556915, 0.05339406430721283, 0.01453268714249134, 0.012878967449069023, -0.04066593572497368, -0.01799726113677025, 0.03517929092049599, 0.05003351345658302, -0.005431234370917082, -0.02307625487446785, -0.02225017175078392, 0.009999064728617668, -0.013950340449810028, -0.03379429504275322, 0.0218923632055521, 0.0020748861134052277, -0.0076373605988919735, 0.015744609758257866, -0.014186067506670952, -0.035478293895721436, -0.060258880257606506, -0.03132118284702301, -0.06235101819038391, -0.049044013023376465, -0.04112793505191803, 0.0014004998374730349, 0.03574179857969284, -0.030590299516916275, 0.006640932522714138, 0.013627281412482262, -0.03582404926419258, -0.0349409244954586, 0.014614690095186234, 0.036690812557935715, 0.02031567320227623, 0.045339908450841904, -0.034121256321668625, 0.0021708018612116575, 0.0006678462377749383, 0.04104655236005783, -0.03169580176472664, 0.03525616228580475, -0.014898878522217274, -0.0030723349191248417, 0.03632640838623047, 0.01317963283509016, 0.019349653273820877, -0.0250534750521183, -0.04370759427547455, -0.038315705955028534, 0.022412480786442757, -0.00033825391437858343, -0.01602763868868351, -0.0028192386962473392, -0.014032457955181599, 0.04809670150279999, 0.03388693928718567, -0.006933294702321291, 0.056888360530138016, 0.046257805079221725, -0.0011916498187929392, 0.03969421237707138, -0.0023293145932257175, 0.024176625534892082, -0.052670467644929886, 0.056868407875299454, 0.0509549044072628, -0.015839891508221626, -0.015644457191228867, 0.00614026328548789, -0.074582040309906, 0.024737995117902756, 0.032995596528053284, -0.01833987608551979, -0.027939917519688606, 0.04376285895705223, 0.021987570449709892, -0.08174270391464233, 0.039851076900959015, -0.03288479894399643, -0.05324403941631317, -0.02327771857380867, -0.05619872361421585, 0.025366196408867836, 0.04793485254049301, 0.01790440082550049, 0.001354489359073341, -0.01106137316673994, -0.03585890308022499, 0.02079802192747593, -0.00006814187509007752, -0.02219976857304573, 0.007685635704547167, 0.041473567485809326, -0.024606235325336456, 0.020638013258576393, 0.007605921011418104, -0.015331813134253025, 0.0028987897094339132, 0.009017392992973328, 0.025032654404640198, 0.03650347888469696, 0.032218098640441895, 0.021025829017162323, 0.009723726660013199, 0.08716264367103577, -0.05256795883178711, -0.0007813731208443642, 0.026799360290169716, 0.026333244517445564, 0.02036701701581478, 0.016171209514141083, 0.013761418871581554, -0.013644331134855747, -0.03255245089530945, -0.029834402725100517, 0.007070917636156082, 0.02169213443994522, 0.02671615406870842, -0.06627606600522995, 0.06307138502597809, -0.016762519255280495, -0.013560276478528976, 0.025234706699848175, -0.02438591606914997, -0.019137566909193993, 0.062121257185935974, 0.022197697311639786, 0.05516219139099121, -0.04994222894310951, 0.011506821028888226, -0.016909239813685417, 0.01953096315264702, 0.019502412527799606, -0.009110149927437305, 0.006642587017267942, -0.003198738908395171, -0.042218469083309174, -0.004339707084000111, -0.032031264156103134, -0.026020217686891556, -0.03326014429330826, 0.011192242614924908, -0.00017135059169959277, -0.04637955501675606, -0.024126369506120682, 0.03965203836560249, 0.012274210341274738, 0.01786009408533573, -0.015063446946442127, -0.0011922866106033325, 0.021320482715964317, 0.020652690902352333, 0.03433435037732124, -0.03150931000709534, 0.0036509213969111443, -0.003609415842220187, 0.02794978953897953, 0.018820108845829964, -0.04912962764501572, -0.018393119797110558, -0.025763340294361115, -0.03262519836425781, 0.0030475680250674486, 0.0293668732047081, -0.022468242794275284, -0.020301995798945427, 0.03100561536848545, 0.0006309850723482668, 0.021172363311052322, -0.05238819494843483, 0.0008653777767904103, -0.030296938493847847, 0.025339964777231216, 0.01641172356903553, -0.030518393963575363, -0.01465700101107359, -0.03836087882518768, 0.07776312530040741, 0.03866016864776611, -0.004589934833347797, -0.04544813930988312, -0.022139715030789375, -0.028131768107414246, -0.019374791532754898, 0.009399760514497757, 0.02186979167163372, 0.007602950092405081, 0.006518785376101732, -0.0379057452082634, 0.007256284821778536, 0.021288815885782242, 0.025553638115525246, -0.02010970562696457, -0.01579897850751877, -0.0049898759461939335, 0.0061542377807199955, 0.029615510255098343, -0.0221563670784235, -0.027935856953263283, 0.020826539024710655, -0.04899010434746742, 0.02414799854159355, 0.003177145030349493, -0.030203482136130333, 0.02653789147734642, 0.015465066768229008, 0.0010193036869168282, 0.05173514783382416, -0.010885939933359623, 0.0000342311650456395, 0.014151292853057384, 0.061406102031469345, -0.0378170982003212, -0.0318107008934021, 0.029329121112823486, -0.019681941717863083, -0.054244838654994965, 0.049298591911792755, 0.053625594824552536, -0.01000527199357748, 0.023556623607873917, 0.01067048404365778, -0.06387565284967422, 0.03746058791875839, -0.04816503822803497, 0.03239690512418747, 0.015301716513931751, -0.03590569645166397, -0.002839291701093316, -0.03757540509104729, 0.009884783066809177, 0.004243425093591213, -0.04257436841726303, -0.015429026447236538, -0.057623349130153656, -0.02001478709280491, 0.017776085063815117, 0.0057154553942382336, 0.03540174663066864, 0.01997079886496067, -0.0165079478174448, -0.013444172218441963, -0.005572999827563763, -0.007060314994305372, -0.02661052532494068, -0.029459059238433838, -0.00557225476950407, 0.04161285236477852, 0.013804422691464424, 0.016019318252801895, -0.005966595374047756, -0.03288423269987106, 0.006682885345071554, -0.005592213477939367, -0.03333360329270363, -0.04137372598052025, 0.02348753809928894, -0.013317720964550972, 0.0013764225877821445, -0.03075423650443554, -0.009538291953504086, -0.02580089494585991, 0.004694473464041948, 0.010135805234313011, -0.0010079680941998959, 0.01511794701218605, -0.01314893364906311, -0.04259488359093666, 0.06834717094898224, -0.005593994632363319, -0.054796431213617325, -0.03267858922481537, 0.03595264256000519, -0.005232682451605797, 0.03611881658434868, 0.004784020595252514, -0.03072606585919857, -0.0562589094042778, -0.05284314602613449, -0.010900027118623257, -0.0443505123257637, -0.03138669580221176, -0.03691471740603447, -0.007746297866106033, -0.03422146663069725, 0.0373275950551033, -0.0023744148202240467, 0.0007765702321194112, 0.03528764471411705, -0.01624278537929058, -0.010487405583262444, -0.0011918629752472043, -0.01806570589542389, -0.006771469954401255, -0.019217217341065407, -0.0053046089597046375, 0.04902069270610809, -0.012548784725368023, -0.017720045521855354, 0.0032006718683987856, 0.046747900545597076, 0.031986795365810394, -0.007054531015455723, -0.039967723190784454, -0.04773804545402527, -0.03401500731706619, -0.01744525320827961, -0.000029174787414376624, 0.00847689714282751, -0.028953753411769867, 0.061117012053728104, -0.030402015894651413, -0.014231831766664982, -0.018403775990009308, -0.01309109479188919, -0.004737136419862509, -0.018146291375160217, 0.06090763211250305, -0.01823985017836094, 0.00026843781233765185, 0.010998782701790333, 0.01958603598177433, 0.03614325076341629, -0.010389872826635838, -0.019215352833271027, -0.03845129907131195, -0.01871572434902191, -0.04368143901228905, 0.06179864704608917, -0.030060868710279465, -0.034042272716760635, -0.028554018586874008, -0.0007362811011262238, 0.042737264186143875, -0.02944607101380825, 0.04787236452102661, 0.056148629635572433, -0.003108434844762087, -0.026707028970122337, -0.005646075122058392, 0.023332811892032623, 0.014407961629331112, -0.02894066832959652, -0.021725347265601158, -0.015289164148271084, -0.004153850022703409, 0.004750511609017849, -0.01758468896150589, -0.049990758299827576, -0.035185687243938446, -0.013090834021568298, 0.07085669040679932, -0.03027685172855854, 0.053292084485292435, -0.009854709729552269, -0.053160957992076874, -0.036166466772556305, 0.011838939972221851, 0.023178517818450928, -0.0051927645690739155, 0.05179397016763687, -0.0023577541578561068, 0.014653648249804974, 0.0376182422041893, 0.003936341032385826, 0.020598487928509712, -0.03087901696562767, 0.07255835086107254, 0.0076070199720561504, -0.050585415214300156, 0.03020631894469261, 0.06756400316953659, -0.06735049933195114, -0.0636361613869667, -0.01441886555403471, 0.011576181277632713, 0.009849442169070244, -0.018616370856761932, -0.0032659110147506, -0.016566356644034386, -0.02959306165575981, -0.015175157226622105, 0.04280722141265869, -0.002572558354586363, 0.04464692249894142, 0.011226440779864788, 0.03941704332828522, -0.04581161215901375, 0.02708590216934681, 0.04275947064161301, -0.014819064177572727, -0.027844594791531563, 0.006310954224318266, -0.02084925025701523, -0.0011015032650902867, -0.0036538620479404926, 0.009540664963424206, -0.0365026518702507, 0.011393495835363865, 0.01491429191082716, -0.007155364379286766, 0.05198967084288597, 0.027114752680063248, -0.008687270805239677, 0.015736637637019157, -0.0461634136736393, -0.018880566582083702, -0.03575723618268967, 0.042969390749931335, -0.005218123085796833, 0.02127857878804207, -0.02424302138388157, 0.0014263440389186144, 0.028799477964639664, 0.0019871757831424475, 0.006205403245985508, -0.04858818277716637, -0.025449443608522415, -0.0394902341067791, -0.06274782866239548, -0.057068902999162674, -0.012354661710560322, -0.011156769469380379, -0.007667060010135174, 0.01279494445770979, -0.026418529450893402, -0.004459856078028679, -0.018994508311152458, -0.00017858014325611293, 0.02180042490363121, -0.013515801168978214, 0.06367551535367966, -0.06339981406927109, -0.04035380855202675, -0.015343434177339077, -0.03333032503724098, -0.004578405525535345, 0.012323218397796154, -0.020617153495550156, 0.01923670992255211, -0.010112573392689228, 0.018295718356966972, 0.01674399897456169, 0.03793082386255264, -0.022754445672035217, -0.016357602551579475, -0.003498772392049432, 0.036414436995983124, 0.00725889578461647, 0.019601872190833092, 0.014571057632565498, -0.02083061821758747, 0.019965998828411102, -0.0025180561933666468, -0.024089019745588303, -0.012473847717046738, 0.009578674100339413, 0.009428435936570168, 0.008610459044575691, -0.05556259676814079, 0.006072421558201313, -0.00182457291521132, -0.033760424703359604, -0.017241381108760834, 0.012897538021206856, -0.015777122229337692, -0.005156687926501036, -0.012697882018983364, -0.006459301337599754, 0.06444818526506424, -0.021683640778064728, 0.026226717978715897, -0.011229687370359898, 0.028578387573361397, 0.022359328344464302, 0.008614940568804741, 0.028244784101843834, 0.022523894906044006, 0.03314300999045372, -0.042557694017887115, 0.027800200507044792, 0.04368557035923004, -0.035445887595415115, 0.03126513957977295, -0.032985106110572815, -0.020449860021471977, -0.0033727118279784918, -0.0038965605199337006, -0.011251631192862988, 0.056561049073934555, -0.006998597644269466, 0.007587562780827284, 0.019762452691793442, -0.034189123660326004, -0.028185203671455383, 0.018648359924554825, -0.06794276833534241, -0.0033034770749509335, 0.038215577602386475, -0.052423376590013504, -0.016762731596827507, -0.00023286642681341618, -0.02472986839711666, 0.03263008967041969, -0.012842042371630669, -0.05331550911068916, 0.00710613327100873, 0.02861033007502556, 0.002966565079987049, 0.06863656640052795, 0.019236652180552483, -0.0033300442155450583, 0.011560499668121338, 0.03802730143070221, -0.050213057547807693, -0.04377051442861557, -0.01742766983807087, 0.016955722123384476, 0.02075393684208393, -0.007770489901304245, -0.020272256806492805, 0.01426937896758318, -0.03387871012091637, -0.02084856666624546, -0.022329160943627357, 0.0068142530508339405, 0.006104459520429373, 0.05391114205121994, 0.04670465737581253, -0.020012380555272102, -0.01809493638575077, 0.03571578860282898, 0.024092411622405052, -0.025877604261040688, -0.02185150608420372, 0.04745529592037201, 0.020348619669675827, -0.009136693552136421, 0.015874743461608887, 0.009241824969649315, 0.054726164788007736, -0.009880517609417439, 0.04249974712729454, 0.0065962765365839005, 0.03689802810549736, 0.03496851772069931, 0.02883421815931797, 0.007956615649163723, 0.03877124935388565, 0.04862170293927193, 0.001821656827814877, -0.007497617043554783, 0.03658604994416237, 0.026441138237714767, -0.03240406513214111, -0.015504862181842327, -0.029869036749005318, 0.005927198100835085, 0.02058287523686886, -0.015672851353883743, -0.022660642862319946, -0.042549990117549896, -0.002127718413248658, 0.02209531143307686, 0.0029918295331299305, 0.04878310114145279, -0.033230334520339966, 0.00988366175442934, 0.0025927068199962378, -0.010857549495995045, -0.008352245204150677, 0.012239244766533375, -0.007869072258472443, -0.00346877658739686, 0.04077053442597389, 0.011690300889313221, -0.05496387183666229, 0.05185287073254585, 0.00022932211868464947, -0.015415585599839687, -0.043684251606464386, 0.0036249179393053055, 0.020565293729305267, -0.022310536354780197, -0.038424085825681686, -0.022730190306901932, -0.0375157929956913, 0.032231248915195465, -0.05856183171272278, -0.023036213591694832, 0.012905777432024479, -0.015802908688783646, -0.025870593264698982, -0.05329892411828041, 0.02708248980343342, -0.07693182677030563, -0.016410550102591515, 0.01126090344041586, 0.0008478141389787197, 0.0011260997271165252, 0.056534796953201294, 0.00542342197149992, 0.056221671402454376, -0.008966959081590176, 0.06622586399316788, -0.0017166340257972479, 0.03851848468184471, 0.05058343708515167, -0.021234938874840736, -0.02316151186823845, 0.033248092979192734, -0.008263559080660343, -0.04741095006465912, -0.04125896096229553, -0.0516490638256073, 0.021044963970780373, -0.017219483852386475, -0.029659872874617577, 0.005884609650820494, 0.06251102685928345, 0.013135197572410107, -0.031094687059521675, 0.013705315999686718, 0.04750370979309082, -0.050142042338848114, 0.020413177087903023, 0.00032749210367910564, 0.006677302066236734, 0.0012663650559261441, -0.01392954308539629, -0.023997008800506592, -0.03562026470899582, -0.0017900319071486592, -0.08804060518741608, 0.042479660362005234, -0.004346401430666447, -0.004879184067249298, -0.006980100646615028, -0.05167881399393082, -0.05097271129488945, -0.008961804211139679, -0.030606484040617943, -0.06612177938222885, 0.021657397970557213, 0.04039911553263664, 0.016168147325515747, -0.026065390557050705, -0.04245518520474434, 0.0010240559931844473, 0.06754797697067261, 0.0804557278752327, -0.006321616470813751, 0.0470113642513752, 0.014695567078888416, -0.029691647738218307, 0.04578681290149689, -0.03463556244969368, 0.023557540029287338, 0.02151268906891346, -0.0010967449052259326, -0.0030973388347774744, 0.026553621515631676, -0.037810251116752625, -0.03728436678647995, 0.014366301707923412, 0.01818057708442211, 0.01178702525794506, -0.03695439547300339, -0.05941911041736603, 0.00031594373285770416, -0.045528262853622437, 0.00753993634134531, -0.037067729979753494, 0.00243573822081089, 0.015466021373867989, -0.015115588903427124, 0.01742190681397915, -0.05379381775856018, 0.16702723503112793, 0.0589783750474453, 0.02837538532912731, -0.00452832505106926, 0.028163526207208633, 0.05539166182279587, 0.0397934764623642, -0.03009820729494095, 0.004431840963661671, -0.020802706480026245, 0.051325488835573196, -0.01637478917837143, 0.015186164528131485, -0.0008356297039426863, 0.010578598827123642, 0.05053752660751343, -0.04185358062386513, 0.015133953653275967, 0.011302400380373001, -0.02994528040289879, -0.02971457503736019, 0.0438791885972023, -0.0016080645145848393, 0.005562475882470608, 0.005011796019971371, 0.03579770028591156, -0.0016450230032205582, -0.026726065203547478, 0.008628466166555882, -0.024067703634500504, 0.019208474084734917, -0.031874917447566986, 0.021690096706151962, -0.012817376293241978, -0.024969205260276794, 0.030212488025426865, 0.006985385436564684, -0.044395457953214645, 0.022627614438533783, 0.01841265894472599, -0.03240719437599182, 0.006572373677045107, 0.043991878628730774, -0.02057075873017311, -0.019300369545817375, 0.05012720450758934, -0.03075365535914898, 0.013380186632275581, 0.011603732593357563, -0.04674668237566948, 0.06970798969268799, -0.033660490065813065, 0.03328406810760498, -0.013107323087751865, -0.02795117348432541, 0.017121704295277596, 0.010456116870045662, -0.01999758556485176, -0.01548559870570898, -0.0008085859590210021, 0.0738120824098587, -0.011172444559633732, -0.024155428633093834, 0.011327175423502922, -0.04790942370891571, 0.01774381287395954, 0.019004208967089653, -0.012343528680503368, -0.046366993337869644, -0.04240523651242256, -0.024898117408156395, 0.003386233001947403, -0.014276630245149136, -0.027748771011829376, 0.03756984323263168, 0.03068295307457447, -0.026958124712109566, 0.028550846502184868, -0.0032099487725645304, -0.028553403913974762, 0.007935870438814163, -0.066529780626297, 0.007755113299936056, 0.020210368558764458, 0.021877532824873924, 0.03899304196238518, -0.03938067704439163, -0.026655707508325577, -0.045338425785303116, 0.06168739125132561, 0.030446290969848633, 0.005648659076541662, -0.027067914605140686, 0.0055395811796188354, -0.005217934492975473 ]
In this issue of Hospital Pediatrics, Khurana Hershey et al9 demonstrate that variation in asthma care continues to exist, reinforcing findings in earlier studies. They used the Ohio Pediatric Asthma Registry, a comprehensive statewide prospective study linking clinical, demographic, environmental, and health outcomes data from the 6 major children's hospitals in Ohio. The authors report wide variation in hospital-level rates of what they term "nonstandard" practices (eg, inpatient ipratropium, IV steroids, chest radiographs, antibiotics). Rates of these practices ranged from 20% to 93% across the 6 hospitals. The authors also explored associations between provider practices and time until "physiologic readiness for discharge (PRD)," measured as hours from admission to first 4-hour albuterol spacing or discharge. They found that several practices were associated with shorter PRD (use of spot pulse oximetry) and longer PRD (continuous albuterol, IV steroids, antibiotics, chest radiographs). However, as the authors acknowledge, their analyses have a limitation. The authors had no ability to account for potential differences across hospitals in the severity of patients' asthma exacerbations because of the lack of standardized assessment tools. Consequently, their conclusions about relationships between practices and PRD may be due to confounding (eg, more severe patients get continuous albuterol and need longer hospital stays). This limits our ability to apply their findings to improve asthma care. QI shows promise for tackling unwarranted variation, but our current approaches most often focus on small-scale, local interventions and favor action over evidence.19 As the field looks forward and becomes better resourced for conducting QI, we should endeavor to improve our expertise and approaches to fully realize QI's potential for reducing unwarranted variation and achieving large-scale improvements in care for our patients. We propose 3 strategies for improving QI to achieve these goals. For QI interventions to have more widespread benefits for children, potential adopters need adequate guidance on exactly how to implement interventions successfully. Implementation science can be used to provide frameworks and guidance on how to design and evaluate QI interventions to facilitate more successful uptake.21 Authors of QI reports and studies should better describe how they designed and implemented their interventions, what barriers they faced and how they were overcome, and which components of their intervention were most important in improving care. After initial gains are achieved with a QI intervention, improvements are often lost as attention shifts to other priorities and staff revert to the "old way" of doing things. Few pediatric QI interventions have examined outcomes >6 months after implementation.22 Although there are general frameworks for sustaining the benefits of QI interventions,23 it is still unclear which strategies are most feasible and effective. Understanding this will require sustained data collection and monitoring. Local QI interventions to standardize care are only a first step in addressing unwarranted practice variation. The next important steps are improving our QI strategies and reach. To achieve widespread improvements in child health, we must scale up QI interventions that prove effective. We urge QI leaders to develop further expertise to apply rigorous study designs (eg, include control units and sites), expand their efforts to include more settings (eg, an academic center and affiliated community hospitals), detail the implementation strategies used, and monitor outcomes for longer durations of time. By leveraging our field's passion for QI in these ways, we can realize true gains in providing the highest quality care for children within and beyond our hospital walls. We acknowledge Naomi Bardach, Michael Cabana, and Amy Markowitz for their thoughtful comments on earlier drafts of this commentary.
[ -0.003902155440300703, 0.02120921202003956, -0.02835218608379364, 0.026765063405036926, -0.0023757554590702057, -0.015052937902510166, 0.009514858946204185, 0.005813331808894873, 0.027743807062506676, 0.017184309661388397, 0.010401374660432339, 0.0361420102417469, -0.007412514183670282, -0.021360883489251137, -0.013876322656869888, 0.005853261332958937, -0.043604880571365356, 0.005929499864578247, -0.02527717687189579, 0.012475695461034775, -0.02686292491853237, 0.04647967591881752, -0.057186707854270935, -0.011864839121699333, -0.0038306964561343193, 0.04611769691109657, 0.011714586988091469, -0.026124071329832077, 0.08181305974721909, 0.05967797711491585, -0.0292050801217556, -0.03664395585656166, 0.034448955208063126, -0.017801234498620033, -0.04380775988101959, -0.0418081097304821, 0.03395000100135803, -0.033778026700019836, -0.03340078517794609, -0.00495232455432415, -0.036712754517793655, 0.009751148521900177, 0.04776130989193916, -0.04907337203621864, -0.06929747015237808, -0.040896762162446976, -0.0177997387945652, 0.0037773202639073133, 0.019777825102210045, -0.03628777712583542, -0.016306743025779724, -0.017967160791158676, 0.02156098559498787, 0.0078094457276165485, -0.010380120947957039, -0.014027732424438, 0.005665642209351063, 0.0008934519719332457, -0.030729865655303, 0.04171594977378845, -0.003568350337445736, -0.015153778716921806, 0.020730389282107353, -0.05578470230102539, 0.04850766435265541, 0.04056251421570778, -0.003993115853518248, -0.027446700260043144, 0.0023797948379069567, -0.01826457865536213, 0.0033844944555312395, 0.040416330099105835, 0.010068155825138092, -0.01597885973751545, 0.00553889712318778, -0.015541072003543377, 0.001738569582812488, -0.027571143582463264, 0.0019533548038452864, 0.017509635537862778, 0.024610737338662148, 0.03326600417494774, 0.0062872013077139854, 0.020186208188533783, -0.057013802230358124, -0.018011033535003662, 0.036478932946920395, -0.0003889699000865221, 0.01608559861779213, 0.01945250853896141, 0.03224492445588112, 0.04295890033245087, -0.009379720315337181, -0.014539098367094994, 0.03834332525730133, 0.05403263866901398, -0.042418744415044785, 0.03413017466664314, 0.014887887984514236, -0.012276735156774521, 0.06663788855075836, 0.05673033744096756, 0.010611566714942455, 0.012043846771121025, -0.07643173635005951, -0.009096117690205574, 0.029001472517848015, -0.01822429895401001, -0.036331020295619965, -0.01858304627239704, -0.011632848531007767, -0.009735909290611744, -0.00797805655747652, 0.003509354079142213, 0.019945796579122543, 0.05705137923359871, -0.011817533522844315, 0.05618446692824364, -0.045485030859708786, 0.0366661474108696, 0.04124976322054863, -0.002588970120996237, 0.0034542372450232506, -0.039198536425828934, 0.028042124584317207, -0.019499240443110466, -0.027017632499337196, 0.04028190299868584, -0.01899545080959797, -0.012102890759706497, -0.002165434416383505, -0.014924461022019386, -0.027671655640006065, 0.00705729192122817, 0.0052778092212975025, -0.008432332426309586, 0.029062895104289055, 0.015476656146347523, 0.013605996966362, -0.04567534103989601, 0.025181449949741364, 0.038061995059251785, 0.016439026221632957, 0.07643447071313858, 0.010629677213728428, 0.0628201887011528, -0.020392684265971184, -0.026941077783703804, -0.034957416355609894, -0.005884856451302767, -0.020133154466748238, 0.02018691785633564, 0.01139153353869915, 0.02455233410000801, 0.0036682654172182083, 0.01519292127341032, -0.004614728037267923, -0.0069585382007062435, -0.03762626647949219, 0.021137619391083717, -0.009356955997645855, 0.045960891991853714, -0.012707914225757122, 0.04204085096716881, 0.0012596847955137491, 0.024209797382354736, -0.034195102751255035, -0.008374115452170372, -0.0032399683259427547, -0.03886043652892113, 0.011706947349011898, 0.010990431532263756, -0.02498607151210308, 0.013572475872933865, 0.036962125450372696, 0.07646942883729935, 0.029355380684137344, 0.033215463161468506, 0.022943265736103058, 0.07080759853124619, -0.06216442212462425, -0.02146676927804947, 0.022304929792881012, 0.043172601610422134, 0.023978091776371002, 0.019996125251054764, 0.011249186471104622, -0.01602012664079666, -0.05637521669268608, -0.044987067580223083, -0.014870179817080498, 0.03916597738862038, -0.03866898640990257, 0.0418950691819191, -0.0033270977437496185, -0.016613774001598358, 0.025128012523055077, -0.004315408878028393, 0.04587411507964134, -0.04155604913830757, -0.056125931441783905, 0.03837953880429268, -0.032923806458711624, 0.023521604016423225, -0.0266012754291296, -0.02127717435359955, 0.021269530057907104, 0.055806443095207214, -0.04106815531849861, 0.009513395838439465, 0.028988180682063103, 0.020692404359579086, -0.03498941287398338, 0.017941394820809364, -0.010086661204695702, -0.012849808670580387, 0.007126562297344208, 0.042939361184835434, -0.0017814142629504204, -0.004010562319308519, -0.01809075102210045, -0.007103851530700922, 0.04868141561746597, 0.041270170360803604, 0.0045343972742557526, -0.015098814852535725, 0.051416054368019104, 0.053800344467163086, -0.03714601695537567, 0.00009063288598554209, 0.0048984866589307785, 0.05094485357403755, 0.010347112081944942, 0.06027005612850189, 0.04546516016125679, 0.01753956638276577, 0.03956323117017746, 0.043409597128629684, -0.011692281812429428, 0.0014412241289392114, 0.01737646758556366, 0.011434939689934254, 0.01353480201214552, 0.025283945724368095, -0.03462809696793556, 0.04850180074572563, -0.011489097960293293, -0.002137325005605817, -0.021250847727060318, 0.02719181217253208, -0.011213897727429867, 0.042446792125701904, 0.06895728409290314, 0.028647996485233307, -0.03843587636947632, 0.010053993202745914, 0.00403425469994545, 0.04578648880124092, -0.017171544954180717, -0.023709462955594063, 0.031768277287483215, 0.0338207483291626, -0.018059469759464264, -0.021368958055973053, 0.02155393175780773, 0.019101178273558617, -0.02193394862115383, 0.0062016998417675495, 0.01968439109623432, -0.017614880576729774, -0.0155852772295475, -0.06648484617471695, -0.04959643632173538, -0.05137885361909866, -0.05318104103207588, 0.02509165368974209, 0.004964557942003012, -0.03498789295554161, 0.028246691450476646, -0.019871219992637634, -0.015654340386390686, -0.005789007525891066, -0.00060634920373559, 0.08187592029571533, 0.04142154008150101, 0.047457896173000336, -0.030849672853946686, 0.028942080214619637, 0.0036660018377006054, 0.007648054044693708, -0.010199766606092453, -0.028216727077960968, -0.029090430587530136, -0.004350602626800537, 0.03385648876428604, -0.03334934636950493, 0.01904660277068615, 0.00557139003649354, -0.0722346156835556, -0.05250251293182373, 0.024739574640989304, -0.005265797022730112, 0.006889723241329193, -0.017031176015734673, -0.037217896431684494, 0.06129319593310356, 0.005124385003000498, -0.044910624623298645, 0.04088206589221954, 0.03085627220571041, -0.038735970854759216, 0.03588521480560303, 0.02410866506397724, 0.0030737058259546757, -0.049330681562423706, 0.029101017862558365, 0.012522991746664047, -0.0211082361638546, -0.03746843338012695, -0.029133383184671402, -0.057030852884054184, 0.006058649625629187, 0.005970156751573086, -0.026713667437434196, -0.05026736855506897, 0.042932093143463135, -0.0009089867817237973, -0.09053309261798859, 0.03137553855776787, -0.08928467333316803, -0.0076369633898139, -0.0417710542678833, 0.0005760420463047922, 0.0015197617467492819, -0.018453968688845634, 0.02690817415714264, 0.0016010787803679705, -0.02751022018492222, 0.02906183898448944, 0.029272524639964104, 0.05686257407069206, -0.009684563614428043, -0.0029630938079208136, 0.00448458781465888, 0.004609730560332537, 0.03783775493502617, -0.005883181933313608, -0.013857460580766201, -0.0023051511961966753, -0.004434923641383648, 0.012158917263150215, -0.00830015167593956, 0.034651484340429306, 0.007011173292994499, 0.0191755760461092, 0.015767201781272888, -0.04399358481168747, -0.00900888442993164, 0.02125680260360241, 0.026609577238559723, -0.023801380768418312, 0.013788360171020031, -0.0015922101447358727, -0.015479265712201595, -0.068935327231884, -0.03314637392759323, 0.017621997743844986, 0.03481205925345421, 0.045107562094926834, -0.055667098611593246, 0.08200051635503769, -0.023923031985759735, -0.027731159701943398, 0.06810208410024643, -0.037235356867313385, -0.022867528721690178, 0.045616649091243744, -0.020307444036006927, 0.0366789810359478, -0.04378935694694519, -0.013041151687502861, 0.017753655090928078, 0.012576090171933174, 0.030062351375818253, 0.003591660875827074, 0.03451636806130409, -0.010429516434669495, 0.017593348398804665, 0.017119506374001503, -0.01305308099836111, 0.0025625783018767834, 0.0007892283028922975, -0.009447621181607246, -0.026784170418977737, -0.04129573702812195, -0.041068773716688156, 0.011011214926838875, 0.04194432869553566, 0.035024259239435196, -0.005895941983908415, 0.06671681255102158, -0.02966640517115593, 0.018179289996623993, 0.06721967458724976, 0.031236251816153526, 0.0148178581148386, -0.05015483871102333, 0.028051776811480522, 0.03762845695018768, -0.020861506462097168, -0.012420655228197575, -0.0365905836224556, -0.005642309784889221, 0.022814976051449776, 0.0167614184319973, -0.02282126061618328, -0.05886581912636757, -0.00021640505292452872, 0.012155125848948956, 0.04024168476462364, -0.03263576701283455, -0.01096364576369524, -0.04140416532754898, 0.0358121283352375, -0.004996381234377623, -0.04493505880236626, 0.003669940633699298, -0.025621818378567696, 0.031650789082050323, 0.03957880288362503, -0.028835084289312363, -0.0448014922440052, -0.05718397721648216, -0.003572040004655719, -0.017265373840928078, 0.023706864565610886, 0.006876996718347073, -0.014230115339159966, 0.02797277644276619, -0.036119915544986725, 0.018720552325248718, 0.04350109398365021, 0.02923746034502983, 0.00763115007430315, 0.01091758906841278, 0.03354549780488014, 0.021461114287376404, 0.024073941633105278, 0.020856494084000587, -0.0089069539681077, 0.024511318653821945, -0.06345253437757492, 0.048573095351457596, 0.016025004908442497, 0.005141090601682663, -0.012307011522352695, 0.006192458793520927, 0.019352132454514503, 0.03349076211452484, 0.005539115518331528, 0.010708659887313843, -0.010968424379825592, 0.026006575673818588, -0.02778923697769642, -0.03174075856804848, 0.0157469529658556, -0.0012293586041778326, -0.03661268576979637, 0.05438091605901718, -0.002526681637391448, -0.013695294968783855, -0.021632222458720207, -0.021083680912852287, -0.04295305907726288, 0.07443331927061081, -0.011062121950089931, 0.03467352315783501, 0.0003119401226285845, -0.06262346357107162, 0.01974431611597538, -0.021261516958475113, 0.020464787259697914, -0.01102104689925909, -0.026419969275593758, -0.03669573366641998, -0.042385444045066833, -0.022929860278964043, 0.012815948575735092, -0.025087770074605942, 0.025847546756267548, 0.005639292765408754, -0.0503593385219574, -0.027378343045711517, -0.021993296220898628, 0.01960185542702675, 0.002635916229337454, 0.0012661011423915625, -0.006935529410839081, 0.016091320663690567, -0.0048766182735562325, 0.007684590294957161, -0.03222284093499184, -0.0428982675075531, -0.015580033883452415, -0.013244610279798508, -0.012867064215242863, -0.04168058559298515, 0.013949651271104813, -0.05815921351313591, -0.045055702328681946, -0.03463616594672203, 0.02892094850540161, 0.004529118072241545, 0.023634398356080055, 0.02414998784661293, 0.002169462852180004, 0.007864080369472504, 0.02182743325829506, -0.017771463841199875, 0.03691904991865158, -0.021138321608304977, -0.06089258939027786, -0.04610276594758034, 0.0014258685987442732, -0.012362795881927013, 0.06508642435073853, -0.01305612176656723, -0.049111928790807724, -0.0623798668384552, -0.0657455325126648, 0.0206673014909029, -0.016256731003522873, -0.02769901417195797, -0.005911335349082947, -0.03636932745575905, -0.006947413552552462, 0.0015486133052036166, 0.006305968388915062, -0.011306536383926868, -0.011999486945569515, -0.015361101366579533, 0.0034953788854181767, -0.021084843203425407, -0.025920962914824486, 0.041173603385686874, -0.01260490994900465, -0.0011707348749041557, 0.06329277902841568, -0.0073686824180185795, 0.000001179729338218749, -0.007500397972762585, 0.06064382195472717, -0.0043518696911633015, -0.0034973607398569584, -0.03976283222436905, -0.0743604302406311, -0.01058610063046217, 0.006601354572921991, 0.023093760013580322, -0.0044603412970900536, -0.007195435930043459, 0.03760362043976784, -0.05457143485546112, 0.02663573808968067, -0.028856391087174416, 0.0030166541691869497, 0.009361745789647102, -0.020886920392513275, 0.04056168720126152, -0.02044646255671978, 0.011330550536513329, -0.025777414441108704, 0.030445853248238564, 0.040556736290454865, -0.0028221667744219303, -0.018903303891420364, -0.03201716020703316, -0.049415428191423416, -0.02240382879972458, 0.004133211448788643, -0.02440647780895233, 0.011739201843738556, -0.03500210493803024, -0.008291685953736305, 0.051286011934280396, -0.004241770599037409, 0.02278205007314682, 0.03173112869262695, -0.03985421732068062, -0.034620560705661774, -0.031649909913539886, -0.008411061950027943, 0.023228727281093597, 0.0010582474060356617, 0.0458126924932003, -0.018063468858599663, -0.023012124001979828, -0.005958729889243841, -0.0035125738941133022, -0.018496889621019363, -0.026256147772073746, -0.026394683867692947, 0.06040828302502632, -0.02602252922952175, 0.027781469747424126, 0.03340369462966919, -0.06527966260910034, -0.033925868570804596, 0.03953622281551361, 0.012100225314497948, 0.013091693632304668, 0.040913499891757965, -0.029500292614102364, -0.024069398641586304, 0.003154279198497534, -0.0019262254936620593, -0.003808017121627927, -0.024338945746421814, 0.05741007253527641, -0.001915368833579123, -0.03551231324672699, 0.03970266506075859, 0.05080755054950714, -0.041302502155303955, -0.023499352857470512, 0.00146427471190691, 0.0005351245636120439, 0.006019857712090015, -0.03582186996936798, -0.010041680186986923, -0.012278669513761997, -0.018473394215106964, 0.020350491628050804, 0.010054347105324268, -0.03632452338933945, 0.02244965173304081, -0.006013869773596525, 0.03899846225976944, -0.0017741295741871, 0.0037340957205742598, 0.012353328056633472, -0.010858762077987194, 0.01279585063457489, -0.02646644599735737, 0.0004315669648349285, 0.020235903561115265, -0.02286534570157528, 0.05568099021911621, 0.0038943581748753786, -0.007589052896946669, 0.02456962876021862, -0.01768086664378643, 0.03213516250252724, 0.004719377961009741, -0.00685117207467556, 0.015544716268777847, -0.032553963363170624, -0.06039439141750336, -0.03711438179016113, 0.013517697341740131, -0.007051886525005102, 0.022947700694203377, -0.004792193882167339, -0.0037685916759073734, 0.05392375960946083, 0.017780372872948647, 0.021956486627459526, -0.057807303965091705, -0.052709974348545074, -0.03589171916246414, -0.06116736680269241, 0.0016448140377178788, -0.048396430909633636, 0.014393553137779236, 0.01993350125849247, 0.007164729293435812, -0.01671505905687809, 0.021458107978105545, 0.02126212790608406, -0.03592708706855774, -0.02793753892183304, -0.023487145081162453, 0.0232296921312809, -0.02043895050883293, -0.07201443612575531, -0.03233225643634796, 0.023787887766957283, 0.014586912468075752, 0.01052437536418438, -0.027791181579232216, 0.01097684632986784, 0.0025535840541124344, 0.04009107127785683, 0.03778515011072159, 0.030032441020011902, -0.049058981239795685, -0.038044121116399765, 0.019981633871793747, 0.0373787023127079, 0.008487793616950512, 0.023900149390101433, 0.03654633089900017, -0.020402995869517326, 0.023593008518218994, -0.019851498305797577, -0.031641438603401184, -0.010239653289318085, 0.015555611811578274, -0.0035571795888245106, -0.02536865323781967, -0.0682433620095253, -0.04688933119177818, 0.003232124727219343, -0.03610456362366676, 0.03783128783106804, 0.014954298734664917, -0.0017773911822587252, -0.0003022421442437917, -0.009518221020698547, -0.007754309102892876, 0.05347514897584915, -0.020561784505844116, 0.01865249127149582, 0.02218550629913807, 0.018149804323911667, 0.04225488752126694, 0.038567133247852325, 0.006371892988681793, 0.018041789531707764, -0.011387920007109642, -0.036192070692777634, 0.004860298242419958, 0.02190602570772171, 0.013610923662781715, 0.01632123999297619, -0.039095886051654816, -0.007187805604189634, -0.01958788000047207, 0.0016611807513982058, -0.009131338447332382, 0.061012107878923416, 0.031371358782052994, -0.010686814785003662, 0.0039492710493505, -0.02276182547211647, -0.023548807948827744, 0.00832305196672678, -0.09927462786436081, -0.041246168315410614, 0.024980628862977028, -0.02198123373091221, -0.015547024086117744, -0.00986911728978157, -0.031277380883693695, -0.008701920509338379, -0.0055193523876369, -0.01276487484574318, -0.025774814188480377, 0.02082257904112339, 0.016763992607593536, 0.04312397912144661, 0.022647449746727943, 0.011505408212542534, 0.035944562405347824, 0.01920461654663086, -0.05768153816461563, -0.026138484477996826, -0.011642768047749996, 0.014438491314649582, 0.03847913071513176, 0.005435931496322155, -0.022216977551579475, 0.02582024224102497, -0.003218619618564844, 0.021729836240410805, -0.013781352899968624, 0.013762183487415314, -0.033706918358802795, -0.018598342314362526, 0.010570721700787544, -0.002301823114976287, -0.029506254941225052, 0.019835215061903, 0.015526958741247654, -0.05513347312808037, -0.012132328003644943, 0.05262519791722298, 0.025924857705831528, -0.025536634027957916, 0.0064385998994112015, -0.0024813220370560884, 0.026509689167141914, -0.01445938739925623, 0.007864143699407578, 0.03444280847907066, 0.04015740007162094, 0.05385008081793785, 0.04079940915107727, -0.01908882148563862, 0.0005139824352227151, 0.05909626930952072, 0.00832627434283495, 0.03409541770815849, 0.028411585837602615, 0.011742665432393551, -0.02168632298707962, -0.020837489515542984, -0.013988007791340351, 0.042833950370550156, -0.00464112963527441, -0.011150580830872059, -0.008105656132102013, -0.03389424458146095, -0.01483207568526268, 0.0030250591225922108, -0.047219160944223404, 0.0260875653475523, -0.021036965772509575, -0.01767842285335064, 0.007010747212916613, -0.02138177677989006, 0.003215197240933776, 0.05020725727081299, -0.005397244822233915, -0.006174091249704361, 0.03050745092332363, 0.024162983521819115, -0.021356996148824692, 0.06290784478187561, 0.009928052313625813, 0.016850102692842484, -0.004661725368350744, 0.005556606221944094, 0.018408838659524918, -0.009683954529464245, -0.04490668699145317, 0.03426913544535637, -0.025262609124183655, 0.04016227647662163, -0.02098500356078148, -0.03375132754445076, 0.06137509271502495, -0.05156983435153961, -0.0495724193751812, -0.05116879194974899, 0.047775980085134506, -0.016788240522146225, -0.017905719578266144, 0.056097228080034256, 0.01683739572763443, -0.0030378245282918215, 0.05565762147307396, -0.008498896844685078, 0.022562280297279358, 0.02777089923620224, 0.04931652918457985, 0.009802402928471565, 0.027915194630622864, 0.08643195033073425, -0.002944825915619731, -0.015736987814307213, 0.021860402077436447, -0.028011878952383995, -0.05091782286763191, -0.008662493899464607, -0.03655427694320679, -0.008601388894021511, 0.0028730733320116997, -0.01206583995372057, -0.00210381718352437, 0.03031492792069912, -0.03654208779335022, -0.016695329919457436, -0.010099945589900017, -0.00613768445327878, -0.04278293251991272, 0.014320564456284046, 0.015689169988036156, 0.053317591547966, 0.01117108017206192, -0.009360487572848797, -0.026690999045968056, -0.04518932104110718, -0.00044605747098103166, -0.01960120163857937, 0.0343768447637558, -0.039607349783182144, -0.06563743203878403, -0.023686712607741356, -0.052307043224573135, -0.003957794047892094, -0.013565115630626678, -0.05955711379647255, -0.036965254694223404, 0.017647258937358856, 0.04892253875732422, -0.00020861909433733672, -0.0052742077969014645, -0.04399479925632477, -0.006684325635433197, 0.0511714369058609, 0.06422343850135803, 0.005309725645929575, 0.052995000034570694, 0.04840224236249924, -0.027387816458940506, -0.013812496326863766, -0.06616726517677307, 0.0017268123337998986, -0.003909004386514425, -0.036264415830373764, -0.018295759335160255, 0.036136530339717865, -0.002406882354989648, -0.07690709829330444, -0.004330949392169714, 0.01954500935971737, 0.00460156099870801, -0.03724224120378494, -0.08091600984334946, -0.008355238474905491, -0.035867031663656235, 0.023183027282357216, -0.051163557916879654, 0.013319692574441433, 0.020307067781686783, -0.017604811117053032, 0.012212683446705341, -0.04195075109601021, 0.13151563704013824, 0.022888725623488426, 0.01892738789319992, -0.041555602103471756, 0.051013365387916565, 0.05862343683838844, 0.032107189297676086, 0.01491832360625267, -0.0072686560451984406, -0.031309500336647034, 0.006811328697949648, -0.0013022328494116664, 0.026005234569311142, 0.033879462629556656, 0.027179433032870293, 0.037287965416908264, -0.03527170792222023, 0.004994922783225775, 0.017092440277338028, -0.027747271582484245, -0.06472095847129822, 0.019770044833421707, 0.025396043434739113, 0.03380978852510452, -0.034587323665618896, -0.01768423244357109, 0.019862307235598564, -0.049685969948768616, 0.0038485201075673103, -0.01688290201127529, 0.02184103988111019, -0.02895290032029152, 0.043198902159929276, -0.03666209802031517, -0.02344847470521927, 0.04391242563724518, -0.0004921620129607618, 0.018941214308142662, 0.007783672772347927, -0.003966649994254112, -0.029651980847120285, 0.01612602360546589, 0.029246734455227852, -0.028325604274868965, 0.022550413385033607, 0.015351396054029465, -0.029857398942112923, 0.02793828770518303, -0.00800030305981636, -0.03926675766706467, 0.08877664804458618, -0.03907017409801483, 0.040018174797296524, 0.012494746595621109, -0.02225104160606861, -0.004262798931449652, -0.013497221283614635, -0.030337514355778694, 0.013437725603580475, 0.00550398975610733, 0.028556302189826965, 0.0027659714687615633, -0.012991335242986679, -0.006294793915003538, 0.0009189785341732204, 0.002043723128736019, 0.022561153396964073, -0.013798357918858528, -0.008417612873017788, -0.00941967498511076, -0.0030201496556401253, -0.0177301038056612, 0.001377786509692669, -0.023333866149187088, 0.03906901180744171, 0.028304962441325188, -0.0004267239710316062, 0.0346837192773819, -0.025633851066231728, -0.03753429651260376, 0.004366531036794186, -0.011817862279713154, 0.03178452327847481, -0.013443528674542904, 0.036735981702804565, 0.05150498449802399, -0.06805272400379181, -0.07857654243707657, -0.0223868228495121, 0.032974883913993835, 0.01849062368273735, 0.03166467323899269, -0.023082520812749863, -0.011747362092137337, -0.01907624490559101 ]
HomeยปFilesยปDeath penaltyยปA brief on the death penalty during the first half of 2020 22 July, 2020 Death penalty, Monitoring Death penalty Egyptian Front monitored the death penalty in Egypt during the first half of 2020. It appears that Egyptian authorities insist on using the death penalty in criminal offenses and are widely using it in political cases. This in addition to violations committed against the defendants in these cases during their trial period and thus infringing their right to a fair trial. During the first half of 2020, Civil and Military Criminal courts issued 171 death sentences, most of which are criminal cases. Also, the Cassation Court upheld sentences on 10 defendants in 3 cases, most of which are political. Meanwhile, Egyptian authorities executed 34 persons in 11 cases, 3 of which include events of political violence. Egyptian courts continue to widely use the death penalty in several crimes. A number of 105 crimes are punishable by the death penalty as stipulated by Penal Code no. 58 for the year 1937 and its amendments, Military Code of Justice no. 25 for the year 1966, Firearms and ammunition law no. 394 for the year 1954, and Narcotic Drugs Control law no. 182 for the year 1960. The death penalty in Egypt is problematic as it is widely used in various crimes not only in heavy ones. Also, the defendants are mostly deprived of their right to a fair trial due to the grave violations of standards of a fair trial. Within the framework of the monthly monitoring of the death penalty, the Egyptian front has communicated with lawyers and monitored the media for documentation purposes. Egyptian front has documented the execution of 34 defendants, 10 of whom are part of 3 cases of terrorism and political violence known in the media as "Churches bombing", "Al-Wahat case", and "Al-Farafra Checkpoint". It also monitored the confirmation of the Cassation Courts to execute 10 defendants, 7 of whom are part of political violence case known as "Helwan police station". This in addition to handing down death sentences to 171 defendants, 40 of whom are part of two political violence cases known in the media as "Ansar Beit alMaqdis" (37 to be executed) and "Assassination attempt of Alexandria's Security Chief" (3 to be executed). 37 out of the 40 are part of "Ansar Beit al Maqdis" and the other 3 are part of the Assassination Attempt case. Meanwhile, the documents of 158 defendants in 59 cases, 40 of whom are part of political cases, were referred to the Grand Mufti for his advisory opinion regarding their death sentence. The Death penalty situation during the first half of 2020 First: Execution of the death penalty. Egyptian Front monitored the execution of at least 34 defendants in 11 cases, 8 of whom were convicted in case no. 165 for the year 2017, Military, known in the media as "bombing churches" on February 25, 2020. Hisham Ashmawy was executed on March 4th against the backdrop of case no. 1 for the year 2014, Military, known in the media as "alFarafra Checkpoint". Abdel Rahim al-Mesmar- was also executed against the backdrop of case no. 160 for the year 2018, West Cairo Military, known in the media as "Al-Wahat Case". While Egyptian Front assures it stands against terrorism and does not by any means claim the innocence of any of the aforementioned defendants, it however emphasizes the importance of maintaining fair trial standards for everyone without discrimination. It has appeared that a number of defendants were subjected to enforced disappearances, physical and mental coercion, and the investigation sources were kept unknown. This reveals clear violations to fair trial standards in cases of capital punishment. An infographic showing the executions during the first half of 2020 Second: Confirming death sentences The Court of Cassation upheld the death sentence of one person in a criminal case in January 2020. In March, it upheld another death sentence on two defendants' criminal case. It also confirmed the death sentences of 7 political defendants in case no. 8280/2014 Helwan felonies, known in the media as "Helwan Police Station". Therefore, the total number of cases upheld by Court of Cassation in the first half of 2020 is 10 in 3 cases. ูAn Infographic showing the situation of death sentences upheld during the first half of 2020 Third: Death sentences Egyptian Front monitored death sentences handed down to more than 171 defendants in 73 cases, 40 of whom are part of two political cases; Ansar Beit al Maqdis and Assassination Attempt of Alexandria's Security Chief cases. Worthy to note that the latter is an emergency state security case where once a verdict is issued from an Emergency state security court it cannot be appealed. Also, 131 defendants were sentenced to death in 71 criminal cases. An Infographic showing death sentence status during the first half of 2020 Fourth: Referrals to the Grand Mufti Egyptian courts referred more than 158 defendants in 59 cases to the Grand Mufti to get his advisory religious opinion on their death sentences. 40 of these defendants are part of political cases known as Ansar Beit al Maqdis and Attempted assassination of Alexandria's security chief. An Infographic showing the status of Al Mufti referrals during the first half of 2020
[ -0.004842751193791628, -0.0009709845180623233, -0.02016531303524971, -0.0025367129128426313, -0.05169438570737839, -0.026070423424243927, -0.029809094965457916, 0.010993178002536297, 0.017397092655301094, 0.03574971482157707, 0.02198800817131996, -0.020014043897390366, 0.012839419767260551, -0.016523273661732674, -0.013100006617605686, 0.021027468144893646, -0.037065889686346054, -0.02296597883105278, -0.007836130447685719, -0.003567623905837536, -0.04417355731129646, 0.011855595745146275, -0.04528646171092987, -0.03812289983034134, -0.018061412498354912, 0.04187016561627388, 0.01368059404194355, 0.000950114568695426, 0.08395180106163025, 0.026857417076826096, 0.010453084483742714, -0.016699213534593582, 0.0558672733604908, -0.06762022525072098, 0.01570013538002968, -0.01671537384390831, 0.04650021716952324, -0.03379405662417412, -0.014407907612621784, -0.029063191264867783, 0.012438817881047726, 0.003232633462175727, 0.044149018824100494, -0.03705933317542076, -0.03959733992815018, -0.027439866214990616, -0.006282545626163483, -0.024776220321655273, 0.023091714829206467, -0.022211257368326187, -0.02612965926527977, 0.00825933925807476, 0.032920416444540024, -0.04431493952870369, 0.003021416487172246, 0.004690568428486586, 0.01814168319106102, -0.02603561244904995, -0.028857259079813957, 0.053179558366537094, 0.06098642945289612, -0.0008756929310038686, 0.019389750435948372, -0.05005792900919914, 0.022990621626377106, 0.03172522783279419, 0.004790406208485365, -0.002987456973642111, 0.0258923452347517, -0.05526991933584213, -0.005567083600908518, -0.03187942132353783, -0.03899889066815376, -0.0163129810243845, 0.018602006137371063, -0.009717918932437897, -0.012303872965276241, -0.01593191921710968, 0.011410178616642952, 0.007584514562040567, 0.0035803269129246473, 0.0437064990401268, -0.0006188945844769478, -0.005698951426893473, -0.05175456777215004, -0.032060883939266205, -0.02299920655786991, 0.007136372849345207, 0.005864848382771015, 0.016902770847082138, -0.016915863379836082, 0.03773120418190956, -0.016615858301520348, -0.03398757427930832, 0.015208710916340351, 0.04397472366690636, -0.034997791051864624, 0.03994736447930336, 0.01805790141224861, -0.0037172038573771715, 0.04023366793990135, 0.03492529317736626, -0.00024383048003073782, 0.06186150759458542, -0.03914051875472069, -0.03636603429913521, 0.010057881474494934, -0.008476334623992443, -0.024996433407068253, -0.024870147928595543, 0.017675356939435005, 0.013123114593327045, 0.017071392387151718, -0.0023690422531217337, -0.00988703966140747, 0.04603259637951851, -0.022037571296095848, 0.005397825501859188, -0.03623936325311661, 0.03171485662460327, 0.0011674583656713367, 0.02833174169063568, 0.033484846353530884, -0.0031334199011325836, 0.00469541922211647, -0.03365625813603401, -0.003610735759139061, 0.0416625514626503, -0.025225354358553886, -0.05596946179866791, 0.005472647491842508, -0.03377335146069527, 0.002203974174335599, -0.008895423263311386, -0.011335588991641998, 0.02943253144621849, 0.0060097286477684975, 0.03680857643485069, 0.018726561218500137, -0.04457290098071098, 0.019691770896315575, 0.013882170431315899, 0.006856574676930904, 0.07481128722429276, 0.0010701350402086973, 0.06485658884048462, 0.005297370720654726, 0.02043590508401394, -0.018268702551722527, 0.04307618737220764, -0.03651919588446617, 0.017429126426577568, -0.014255770482122898, 0.03156659007072449, 0.010610437951982021, -0.010774384252727032, -0.002308668103069067, -0.0020682907197624445, -0.026881931349635124, 0.051652874797582626, -0.018688900396227837, 0.006553883198648691, -0.010533342137932777, 0.043107204139232635, -0.028896844014525414, 0.01890026591718197, -0.034295469522476196, -0.01961539499461651, -0.0010504062520340085, -0.05759010463953018, 0.038019899278879166, -0.02829279750585556, 0.01155052799731493, 0.03952290117740631, 0.04510411247611046, 0.030253320932388306, 0.030066881328821182, -0.008117720484733582, 0.0666896179318428, 0.06829026341438293, -0.03615811467170715, 0.004841494839638472, -0.0013111389707773924, 0.04401173070073128, 0.00744717987254262, 0.005789639428257942, 0.013677048496901989, -0.028286615386605263, -0.04039044678211212, -0.03912243992090225, -0.032662615180015564, 0.03857175260782242, -0.025737207382917404, 0.019182367250323296, 0.012127358466386795, -0.01423994917422533, -0.025754453614354134, -0.017057904973626137, 0.012479049153625965, -0.031324565410614014, -0.020576484501361847, 0.033976759761571884, -0.010610721074044704, 0.05163520947098732, -0.018288031220436096, -0.038413308560848236, 0.03626391664147377, 0.05166741833090782, -0.025571750476956367, 0.020837340503931046, 0.05247824266552925, 0.0031602149829268456, 0.002178580267354846, -0.012670698575675488, 0.024727094918489456, 0.002588944975286722, -0.039082154631614685, 0.06863853335380554, -0.038718726485967636, 0.019061721861362457, -0.020383356139063835, 0.010805957950651646, 0.025778360664844513, 0.04671285301446915, 0.006066117435693741, -0.016346970573067665, 0.021616287529468536, 0.06105409935116768, -0.0017321945633739233, -0.02044043131172657, -0.0002721947093959898, 0.05190068855881691, 0.011958325281739235, 0.05524098500609398, 0.04513752833008766, 0.02427562139928341, 0.051964256912469864, 0.04636958986520767, -0.040608517825603485, 0.04831904172897339, -0.020438989624381065, -0.0227910578250885, 0.05104242265224457, 0.02310606651008129, -0.0027344515547156334, 0.05535763129591942, 0.00624535046517849, -0.017340203747153282, -0.02765204757452011, -0.0006710434099659324, 0.014135269448161125, 0.041119787842035294, 0.029781829565763474, 0.04467235133051872, -0.04763508588075638, 0.009008248336613178, 0.05664817988872528, 0.05045923963189125, -0.023624766618013382, -0.013188638724386692, -0.015656735748052597, 0.027596425265073776, 0.030892031267285347, -0.007030986249446869, 0.014517178758978844, 0.04897642508149147, 0.014417669735848904, 0.010259924456477165, 0.010900506749749184, -0.028453858569264412, -0.04662354663014412, -0.051664602011442184, -0.07058461755514145, -0.025068234652280807, -0.043514274060726166, -0.0017643035389482975, 0.0340692438185215, -0.029099201783537865, 0.032629095017910004, -0.029187383130192757, -0.00665747094899416, 0.020469682291150093, -0.013205504976212978, 0.016804613173007965, 0.01487779151648283, 0.022265484556555748, -0.04681669548153877, 0.02999999187886715, 0.004683028906583786, 0.028720244765281677, -0.028638403862714767, -0.037060417234897614, 0.0011024490231648088, 0.01201198436319828, 0.04692869633436203, -0.020438002422451973, 0.004365996923297644, 0.005378275644034147, 0.00035027600824832916, -0.053410835564136505, -0.023733917623758316, 0.0008855581399984658, 0.005534632131457329, -0.0203244648873806, -0.02866285853087902, 0.067806676030159, 0.03795468062162399, -0.02754267491400242, 0.04512143135070801, 0.045262835919857025, -0.01764724962413311, 0.03986389562487602, 0.02489403262734413, 0.028295228257775307, -0.063626229763031, 0.05724431201815605, 0.04616956785321236, -0.03694097697734833, 0.0071248565800487995, -0.0273109283298254, -0.03150486946105957, -0.014303953386843204, 0.013178517110645771, -0.027663199231028557, -0.023439357057213783, 0.024997219443321228, 0.04232243821024895, -0.06721150130033493, 0.023325160145759583, -0.030532091856002808, -0.022738683968782425, -0.03773879632353783, -0.01277780719101429, 0.005728001706302166, 0.010578506626188755, 0.021217402070760727, -0.014800296165049076, -0.02304874174296856, -0.00038101652171462774, -0.005054428242146969, 0.05049760267138481, -0.05572032928466797, 0.03934648260474205, 0.012824385426938534, -0.013477709144353867, 0.036456234753131866, 0.04066077247262001, -0.003925214521586895, -0.01323840580880642, 0.010595196858048439, -0.0011399684008210897, 0.04196254536509514, 0.025761546567082405, 0.016174327582120895, -0.015493327751755714, 0.0459781289100647, -0.020998870953917503, -0.012476188130676746, 0.028153689578175545, -0.0042728097178041935, 0.03434180095791817, -0.03169989958405495, 0.0054834336042404175, 0.0006176524329930544, -0.044698044657707214, -0.02180403284728527, 0.015521593391895294, 0.0037675215862691402, 0.030733751133084297, -0.07092250883579254, 0.07762376219034195, -0.005495843477547169, -0.02819834090769291, 0.0247539933770895, -0.06439914554357529, 0.0253881998360157, 0.04152920842170715, -0.009437736123800278, 0.04546300694346428, -0.0356559157371521, 0.0008239370072260499, 0.009145036339759827, 0.031871918588876724, 0.040360238403081894, 0.005136086605489254, 0.053741805255413055, -0.04234341159462929, -0.002856762148439884, 0.00816718116402626, -0.032544780522584915, -0.007496764417737722, -0.01225307583808899, 0.003057166002690792, -0.024665789678692818, -0.05120079964399338, -0.0813322588801384, -0.0036025047302246094, 0.03690703213214874, 0.08642739057540894, -0.005740871652960777, 0.016645697876811028, 0.009770432487130165, 0.026715746149420738, 0.01043784525245428, 0.0014843607787042856, 0.020409272983670235, -0.0370890311896801, 0.08210628479719162, -0.027827799320220947, -0.02140634134411812, -0.014966216869652271, -0.0330871045589447, 0.014836166054010391, 0.04666166752576828, -0.004601371008902788, -0.01882900670170784, -0.0782516822218895, -0.0031044180504977703, -0.004425843711942434, 0.0001126141069107689, -0.0076355827040970325, -0.004216562025249004, 0.007378904614597559, 0.055440858006477356, 0.00989921297878027, -0.04223346337676048, 0.020251132547855377, -0.03220248967409134, 0.05031552538275719, 0.04761229828000069, -0.004299428313970566, -0.024496406316757202, -0.034532129764556885, -0.04420502111315727, -0.03925003111362457, 0.01400001347064972, 0.02583063393831253, 0.02985590696334839, 0.0026401325594633818, -0.0589047446846962, 0.031850073486566544, 0.04215041548013687, 0.012614328414201736, -0.01961342804133892, -0.00370927806943655, 0.00737164868041873, 0.00501669617369771, 0.03472493216395378, -0.012982569634914398, -0.006174460519105196, 0.036085210740566254, -0.08615213632583618, 0.02671959437429905, -0.028104018419981003, -0.010868357494473457, 0.00909875426441431, 0.006158080417662859, 0.035123080015182495, 0.03420107811689377, -0.00886223092675209, -0.003911533858627081, -0.007706178817898035, 0.01777222566306591, -0.049630697816610336, -0.021881189197301865, 0.045080818235874176, -0.022640807554125786, -0.028667613863945007, 0.052735887467861176, 0.00753184175118804, -0.02397245354950428, -0.010446532629430294, 0.0258006788790226, -0.04159392789006233, 0.012902582995593548, -0.02255934104323387, 0.012525875121355057, -0.007498172111809254, -0.007332257926464081, 0.006411109119653702, -0.04862706735730171, 0.023378347977995872, 0.01281379722058773, -0.0375535786151886, -0.04905444756150246, -0.06122713163495064, -0.0451870933175087, 0.007039260119199753, -0.024337241426110268, 0.002240402391180396, 0.0037652533501386642, -0.009247860871255398, -0.005573263391852379, -0.005186602007597685, -0.028146937489509583, 0.03519520163536072, -0.03385617956519127, -0.02352004311978817, 0.012106583453714848, 0.011515631340444088, 0.006971455179154873, -0.02930605784058571, -0.024382784962654114, -0.009185020811855793, -0.02510904148221016, -0.028582869097590446, -0.05251816660165787, -0.03886106610298157, -0.01652734912931919, -0.018833115696907043, -0.023735620081424713, 0.002906965557485819, -0.005997126456350088, -0.012639555148780346, 0.01191974151879549, 0.003065604716539383, 0.01927977427840233, -0.007366889156401157, -0.017632879316806793, 0.03588847070932388, 0.02067815698683262, -0.06875156611204147, -0.003648441983386874, 0.02803470566868782, -0.00802102591842413, 0.05759159475564957, -0.0057732523418962955, -0.011414872482419014, -0.05919092148542404, -0.07264533638954163, -0.036919571459293365, -0.04985301196575165, -0.02627713419497013, -0.03324517607688904, -0.013754492625594139, -0.01780981943011284, 0.009233810938894749, -0.005099073518067598, -0.003726678667590022, -0.015490326099097729, -0.03646558150649071, 0.0193061213940382, -0.02794671803712845, -0.017496483400464058, 0.007358508184552193, -0.062037549912929535, 0.007361569907516241, 0.06177503615617752, 0.04167613387107849, 0.02948073297739029, 0.018886467441916466, 0.0024374343920499086, -0.01952584832906723, -0.009936608374118805, -0.048446089029312134, -0.0672137662768364, -0.009621628560125828, 0.021637380123138428, -0.0008621437009423971, -0.03773763030767441, -0.02428281120955944, 0.04940812662243843, -0.019686294719576836, 0.024492662400007248, -0.03296124190092087, -0.035795748233795166, -0.029170742258429527, -0.014699313789606094, 0.05954969674348831, -0.023978495970368385, 0.03919689729809761, 0.003850614884868264, 0.04169384762644768, 0.05736768618226051, 0.0019207496661692858, -0.0009044407634064555, -0.03459544852375984, -0.021872105076909065, -0.05859725922346115, 0.03430097550153732, -0.015672212466597557, -0.014340915717184544, -0.04498520493507385, 0.006987412925809622, 0.05172383412718773, -0.012218576855957508, 0.05455426871776581, 0.06713245064020157, -0.02387220785021782, -0.0023652068339288235, -0.03132360056042671, 0.06946706026792526, 0.03828360140323639, -0.026457153260707855, -0.010050368495285511, -0.0023988806642591953, -0.007871025241911411, 0.016460951417684555, -0.03114331141114235, -0.04966038092970848, -0.038349468261003494, 0.02029603347182274, 0.06387805193662643, -0.028390727937221527, 0.05626329779624939, -0.0030113256070762873, -0.042952388525009155, -0.06368480622768402, 0.04093530774116516, -0.013657589443027973, 0.02556988038122654, 0.05336882919073105, 0.005011362489312887, 0.01501154899597168, 0.0274215005338192, 0.026072274893522263, 0.0113918986171484, -0.0737932100892067, 0.057427987456321716, -0.028247253969311714, -0.055434033274650574, 0.01983630284667015, 0.05224495381116867, -0.040529463440179825, -0.020962297916412354, -0.012000217102468014, -0.018223052844405174, -0.02971671335399151, -0.04564869403839111, 0.017618857324123383, -0.02467823587357998, -0.0044152261689305305, 0.0013457119930535555, 0.004626944661140442, 0.017598744481801987, 0.031383316963911057, 0.009707402437925339, 0.045730892568826675, -0.026253778487443924, -0.020259566605091095, 0.015334256924688816, 0.007227979134768248, -0.018699798732995987, -0.04932985082268715, 0.0142495883628726, -0.005834639072418213, 0.0022004786878824234, 0.0571095310151577, 0.006083209067583084, 0.03706641495227814, 0.045361533761024475, -0.00986037589609623, 0.03885573148727417, -0.037244848906993866, -0.028044244274497032, 0.026684558019042015, 0.00847182609140873, -0.06420936435461044, -0.023695942014455795, 0.027459394186735153, -0.001675196341238916, 0.0708879679441452, -0.049832843244075775, -0.015861758962273598, 0.034323517233133316, -0.0014458243967965245, -0.015524248592555523, -0.07387206703424454, -0.03361570090055466, -0.0379757322371006, -0.02957761473953724, -0.0232954490929842, 0.0014063281705603004, -0.032702259719371796, 0.013384361751377583, -0.0050964923575520515, -0.05936179310083389, -0.005969525780528784, 0.05059659481048584, -0.012572227045893669, -0.00742062833160162, -0.0199924036860466, 0.020175034180283546, -0.04304812103509903, -0.022914385423064232, -0.05388980358839035, 0.0037798576522618532, -0.002270152559503913, 0.004079492297023535, -0.011734139174222946, 0.02542373724281788, 0.01914970949292183, 0.033915385603904724, 0.018359648063778877, 0.015757476910948753, -0.026133548468351364, -0.03227344527840614, -0.030245590955018997, -0.004281397443264723, 0.014003106392920017, 0.051998887211084366, 0.034636370837688446, -0.021164128556847572, 0.026847930625081062, -0.021085752174258232, -0.029763564467430115, 0.003064859425649047, 0.014057335443794727, -0.002420197008177638, -0.0064569259993731976, -0.049630194902420044, -0.07327943295240402, -0.009673621505498886, -0.028123995289206505, 0.014088427647948265, -0.032485172152519226, 0.020029809325933456, -0.0005579659482464194, -0.008362730033695698, -0.0022220781538635492, 0.07106436789035797, -0.009278998710215092, 0.01780117116868496, 0.015764061361551285, 0.01800306886434555, 0.009246602654457092, -0.03486824780702591, 0.03512771055102348, -0.000899393402505666, 0.01274811290204525, 0.010660365223884583, 0.004043079447001219, 0.02061338536441326, 0.012456347234547138, 0.041738756000995636, -0.017062250524759293, -0.03540152683854103, -0.04860388860106468, -0.007298363838344812, -0.018891585990786552, 0.05286106839776039, -0.013751058839261532, -0.0023339297622442245, 0.018029820173978806, -0.01391558162868023, -0.07088317722082138, -0.006843247916549444, -0.05032282695174217, -0.01287479791790247, 0.0502152182161808, -0.004838638938963413, -0.00650998717173934, 0.01294208038598299, -0.05526820942759514, -0.026496190577745438, -0.00941197108477354, -0.00017130709602497518, -0.022252419963479042, 0.01512670237571001, -0.010187133215367794, 0.03226044774055481, 0.018388548865914345, 0.03791335970163345, 0.00870177149772644, 0.04328851029276848, -0.050544798374176025, -0.03586631640791893, 0.02847851999104023, 0.030403420329093933, -0.01044200174510479, 0.005721974652260542, -0.031280916184186935, 0.019883504137396812, -0.01407674141228199, -0.008408132940530777, 0.006096200551837683, -0.005361184477806091, 0.00234519992955029, 0.040976665914058685, -0.0026697313878685236, -0.00011681610340019688, -0.005704959388822317, 0.028751200065016747, 0.0009674649336375296, -0.028210962191224098, -0.03248249366879463, 0.017885446548461914, 0.03210243955254555, 0.0005085861193947494, 0.02851448580622673, 0.01784617267549038, -0.01143996138125658, -0.017435157671570778, 0.012560730800032616, -0.009629704989492893, 0.05110783874988556, 0.022133301943540573, 0.025697167962789536, -0.013301442377269268, 0.020092453807592392, 0.08022566884756088, -0.02603040263056755, -0.013222535140812397, 0.0011560064740478992, 0.0029433262534439564, -0.02507287822663784, 0.038385942578315735, -0.048431895673274994, 0.010677685961127281, 0.004848677199333906, -0.009929840452969074, 0.011895507574081421, -0.034056998789310455, 0.03645840659737587, -0.011297890916466713, 0.006167091894894838, 0.06179611384868622, -0.04767290875315666, -0.002938092453405261, -0.023203132674098015, -0.00937738548964262, 0.012289849109947681, 0.025057118386030197, 0.003137811552733183, 0.026672031730413437, 0.03063296154141426, 0.03869778290390968, 0.004808067809790373, 0.038675155490636826, 0.04337873309850693, 0.030478956177830696, -0.03415042906999588, 0.02173347771167755, 0.030048461630940437, -0.0008416048949584365, -0.025204621255397797, 0.010608934797346592, -0.018485376611351967, 0.0215687844902277, -0.051181890070438385, -0.012432620860636234, 0.031929124146699905, -0.04331517592072487, -0.009737451560795307, -0.04913057014346123, 0.03626229986548424, -0.029561307281255722, 0.00026561543927527964, 0.03398512303829193, 0.003109018551185727, 0.0003368046891409904, 0.04642421379685402, 0.004582193214446306, 0.00024118591682054102, -0.0028580750804394484, 0.06262385100126266, 0.01208536047488451, 0.010923977941274643, 0.028784753754734993, -0.004864847287535667, 0.0059636482037603855, 0.02404743619263172, -0.02297843247652054, -0.04747607558965683, -0.024986332282423973, -0.033900972455739975, -0.01322050392627716, 0.012945338152348995, -0.016550324857234955, -0.024626297876238823, 0.04612099006772041, 0.018530717119574547, -0.0767485648393631, 0.007404377683997154, -0.005381208844482899, -0.018176930025219917, 0.018852878361940384, 0.021372966468334198, 0.020371591672301292, -0.010164001025259495, -0.012104546651244164, -0.02325516566634178, -0.0073791975155472755, -0.004663278814405203, -0.029619082808494568, 0.042075030505657196, -0.003603958059102297, -0.008181784301996231, -0.05127612128853798, -0.05431264266371727, 0.0032750132959336042, 0.012749915011227131, -0.07416049391031265, -0.049112703651189804, 0.007175090257078409, 0.0377039909362793, 0.014279894530773163, 0.02195013128221035, -0.047694701701402664, 0.03369824215769768, 0.013092142529785633, 0.03844873979687691, -0.003345760516822338, 0.015258056111633778, 0.029431801289319992, 0.00393116008490324, 0.02305508218705654, -0.01724986359477043, 0.02430703118443489, -0.004425744991749525, -0.025144396349787712, -0.021371161565184593, -0.01612444408237934, -0.02236822061240673, -0.05326059088110924, 0.015303206630051136, 0.02517980895936489, 0.0029501591343432665, -0.021401142701506615, -0.06398442387580872, -0.01830090582370758, -0.03497595712542534, 0.006684412248432636, -0.030244899913668633, 0.03484758734703064, -0.013466747477650642, 0.012624671682715416, -0.004704584833234549, -0.04735175520181656, 0.15470516681671143, 0.04040142893791199, 0.015064938925206661, 0.023584099486470222, -0.015962744131684303, 0.0360727496445179, 0.02194170095026493, 0.004744508303701878, -0.007796209305524826, -0.04601270332932472, 0.011930287815630436, -0.02056366205215454, 0.0056049395352602005, 0.014415453188121319, 0.014868626371026039, 0.07215099781751633, 0.0017886216519400477, 0.02266686223447323, 0.030566483736038208, -0.0437200553715229, -0.06988182663917542, 0.023194879293441772, 0.001506793312728405, -0.000033104897738667205, 0.00034390168730169535, 0.04379729554057121, 0.020324358716607094, -0.046917203813791275, 0.013707985170185566, -0.0035564310383051634, 0.020747344940900803, -0.05844429135322571, 0.022629400715231895, -0.0006570015684701502, -0.04739532247185707, 0.08099275082349777, 0.004978093318641186, -0.040506668388843536, 0.010488980449736118, 0.007041845005005598, -0.00042466717422939837, 0.01395393256098032, 0.028497323393821716, -0.03486351668834686, -0.0007832281407900155, 0.04976102337241173, -0.049897823482751846, 0.02121184766292572, 0.014813348650932312, -0.05268307775259018, 0.04326256737112999, -0.022703126072883606, 0.032350219786167145, -0.023797834292054176, -0.04964376613497734, -0.00012003111623926088, 0.02120566926896572, 0.00616065738722682, -0.03375802934169769, 0.0012719999067485332, 0.0505777932703495, 0.018407002091407776, -0.015599055215716362, 0.010111221112310886, -0.029080288484692574, -0.005269323009997606, 0.01751827634871006, -0.005192903336137533, -0.0002789126301649958, -0.021916180849075317, -0.008554920554161072, -0.020781785249710083, 0.013440066948533058, 0.02890356257557869, 0.02143142558634281, 0.023224154487252235, -0.03552035242319107, 0.033496465533971786, 0.010191128589212894, -0.031438905745744705, 0.003249731147661805, -0.020560622215270996, -0.007234483957290649, -0.0246084276586771, 0.005188957788050175, 0.022920018061995506, -0.04635583981871605, -0.056487880647182465, 0.012719537131488323, 0.016292070969939232, 0.05687727779150009, -0.0033111004158854485, -0.012738477438688278, -0.025721417739987373, -0.025491390377283096 ]
Christer Segersteรฉn is resigning from his position as Chairman of Sรถdra after a total of 24 years on the Board. The Nomination Committee has proposed Lena Ek as new Chairman, and Hans Berggren as new Board member. Christer Segersteรฉn was Vice Chairman for 18 years and Chairman for four. In 2015, he will turn 65. "The proposals that the Nomination Committee will now present to the AGM will ensure that the Board is composed of appropriate and highly competent members, who also represent renewal. Lena Ek has an extensive background in politics and has served on the Board of Sรถdra for 10 years. Hans Berggren has extensive experience in the industry, as well as in cooperative enterprises. Both are forest owners and members of Sรถdra," says Nomination Committee Chairman, Tomas Andersson. Lena Ek has worked politically at municipal, county, national and EU levels, and serves on the Board of the Swedish Centre Party as well as the Party's Executive Committee. She was Minister for the Environment from 2011-2014 under the Swedish Alliance government and since the election in 2014, has been a Member of the Riksdag and Deputy Chair of the Committee on Environment and Agriculture. Lena Ek has been a member of Sรถdra for many years, and owns forest properties outside Mรถnsterรฅs where she grew up. She served on Sรถdra's Board from 2000-2010. She was born in 1958, has a degree in international law, and lives in Valdemarsvik. "Sรถdra is an important organisation and means a lot to us as members. Whatever forest owners do, they can always turn to Sรถdra, and the value that Sรถdra generates for us as its owners is fantastic. The forest and forest fibre have enormous potential in terms of new products and new markets. It is an honour to be recommended by the Nomination Committee," said Lena Ek. The proposed new Board member is Hans Berggren, President of the co-operative association Sveriges Stรคrkelseproducenter and its three subsidiaries Lyckeby Culinar AB, Lyckeby Starch AB and Kockens AB. The Group generates sales of SEK 1.2 billion and sells products to the paper and food industries. Hans Berggren was born in 1956, is an agronomist and lives outside Karlshamn. Anders Grennborg, 62, is resigning from the Board after 13 years, and Caroline Sundewall after five years. The proposed re-elections to the Board are Marie Hallรฉn and Ola Hildingsson. Sรถdra's Annual General Meeting will be held on 19 May in Vรคxjรถ.
[ 0.014667208306491375, -0.024037877097725868, 0.010523333214223385, -0.0032045086845755577, -0.0009564705542288721, 0.023049568757414818, -0.010981299914419651, 0.03194909915328026, -0.024628859013319016, 0.009650178253650665, 0.03986678272485733, -0.022488174960017204, 0.018826307728886604, -0.031276438385248184, -0.008174479939043522, 0.008757938630878925, -0.009132602252066135, 0.0015139529714360833, -0.006611960008740425, 0.00474842032417655, 0.020402757450938225, 0.0022714261431246996, -0.06454518437385559, -0.03442181274294853, -0.041923560202121735, 0.014395377598702908, -0.011484803631901741, 0.003850458888337016, 0.08695036917924881, 0.03489282354712486, -0.019502343609929085, -0.0617433562874794, 0.048069000244140625, -0.07284803688526154, -0.009205683134496212, -0.02513217180967331, 0.007944048382341862, -0.018029015511274338, -0.025032980367541313, -0.03226511552929878, 0.026987111195921898, 0.0025731034111231565, 0.04484477639198303, -0.04435485973954201, -0.02416212111711502, -0.01030924916267395, -0.024122701957821846, -0.0370468907058239, -0.027613645419478416, -0.03393695876002312, 0.03455931693315506, -0.0018905834294855595, 0.04932359233498573, -0.0014724771026521921, 0.039607614278793335, 0.02108464017510414, -0.020405834540724754, 0.016306191682815552, -0.01188927423208952, 0.029917532578110695, 0.036063939332962036, -0.006980590522289276, 0.015221563167870045, -0.023833906278014183, 0.0660521388053894, 0.02869662083685398, 0.007291631307452917, -0.0035685391630977392, 0.019643323495984077, -0.017013726755976677, -0.0063928826712071896, 0.008059523068368435, -0.04306015372276306, -0.013654481619596481, 0.008130107074975967, 0.01793438196182251, -0.007678813301026821, 0.0288159791380167, 0.0004990827292203903, 0.02853032574057579, 0.009878627024590969, 0.03730754181742668, 0.010862570255994797, 0.0056864540092647076, -0.0506611168384552, -0.0276833176612854, 0.003926516976207495, 0.052269455045461655, -0.01341218687593937, 0.03587210550904274, 0.024660859256982803, 0.06618938595056534, 0.003976384177803993, -0.006063704378902912, 0.02755342237651348, 0.045608922839164734, -0.062295425683259964, 0.03188956528902054, 0.011243686079978943, -0.020434705540537834, 0.01958957128226757, -0.028993315994739532, 0.03629814460873604, 0.058077551424503326, -0.02306368574500084, -0.03078356944024563, 0.013977933675050735, 0.008594262413680553, 0.014134641736745834, -0.023661738261580467, 0.008765065111219883, -0.03371620923280716, 0.05519101396203041, 0.0017317902529612184, 0.01937517337501049, 0.02979949489235878, -0.02319733239710331, 0.028743058443069458, -0.02246061898767948, 0.011578151024878025, -0.0020827902480959892, -0.006393488962203264, 0.01568138785660267, -0.0022661746479570866, 0.018980981782078743, -0.002881233347579837, 0.015252901241183281, 0.0622878223657608, -0.04592618718743324, -0.007867636159062386, 0.0028924860525876284, -0.05294504389166832, -0.0032490896992385387, -0.0007908903644420207, 0.027404341846704483, 0.014003846794366837, 0.0037066126242280006, 0.021834129467606544, 0.03337880223989487, -0.047507937997579575, 0.058894168585538864, 0.061351433396339417, 0.004933421034365892, 0.09073279052972794, -0.03023170493543148, 0.040598999708890915, -0.012565535493195057, -0.003058717120438814, -0.00672918139025569, 0.02688010036945343, -0.031095482409000397, 0.029048370197415352, 0.006103337276726961, 0.009965679608285427, 0.022869497537612915, 0.010804155841469765, 0.0019530031131580472, -0.005454119294881821, 0.03688901662826538, 0.011074450798332691, -0.030011801049113274, 0.01032538153231144, -0.02207529917359352, 0.021124456077814102, -0.023853253573179245, 0.02843663841485977, -0.03013976849615574, 0.008854638785123825, -0.023412292823195457, -0.008875101804733276, 0.05943107232451439, 0.0250262264162302, -0.025569111108779907, -0.009955409914255142, 0.008028869517147541, 0.030827375128865242, 0.06013674661517143, 0.01148339081555605, 0.026909710839390755, 0.031671009957790375, -0.02291158400475979, -0.00941599253565073, 0.018523436039686203, 0.08630945533514023, 0.01836865395307541, -0.016205916181206703, 0.0028212121687829494, -0.030347436666488647, -0.007346908561885357, -0.03733476251363754, -0.008611137978732586, 0.0195423923432827, 0.01651603914797306, 0.010909824632108212, 0.006957169156521559, -0.002571570221334696, -0.02070819027721882, 0.022793244570493698, 0.003142840461805463, -0.03822948411107063, -0.0036575444974005222, 0.038665592670440674, -0.061698101460933685, 0.036560095846652985, -0.02237693779170513, -0.015595591627061367, 0.028271162882447243, 0.04923275113105774, -0.03974195942282677, 0.017407305538654327, 0.03531009331345558, 0.04239833354949951, -0.0168057382106781, -0.0352322943508625, -0.013129367493093014, 0.004943578038364649, -0.03257902339100838, 0.06142157316207886, 0.0021483185701072216, -0.03735892474651337, 0.007036651950329542, 0.0033612626139074564, 0.04358262941241264, 0.029915722087025642, -0.003763399552553892, 0.003702380694448948, 0.03423576056957245, 0.05736304819583893, 0.0020299903117120266, -0.012950988486409187, 0.003641403978690505, 0.03244820609688759, 0.03409890830516815, 0.06001773849129677, 0.03645329922437668, -0.0011445648269727826, 0.05698258802294731, 0.04074915871024132, -0.0003857299452647567, 0.017829790711402893, -0.018327340483665466, -0.014418237842619419, 0.05118345469236374, 0.061473481357097626, -0.0054572392255067825, 0.023644980043172836, -0.011159178800880909, 0.0009142784401774406, 0.02736445516347885, 0.033549901098012924, -0.010709068737924099, 0.038600124418735504, 0.04125283285975456, 0.03574507310986519, -0.040065452456474304, 0.03508492186665535, 0.016949856653809547, 0.0159321166574955, -0.022018399089574814, -0.004464269150048494, -0.008923009037971497, -0.013061496429145336, 0.003567092353478074, 0.021327631548047066, -0.0037397879641503096, 0.018838025629520416, -0.008612128905951977, 0.05698173865675926, -0.018100755289196968, -0.059489019215106964, -0.0021230082493275404, -0.04446261748671532, -0.020330408588051796, -0.03316115215420723, -0.030659811571240425, 0.02303996868431568, 0.05101786181330681, -0.051113311201334, 0.027976006269454956, -0.0031500954646617174, -0.011705669574439526, -0.008974337950348854, 0.026287388056516647, 0.03569558635354042, -0.011865654960274696, 0.04705202579498291, -0.006375555880367756, 0.016367442905902863, 0.011624542996287346, 0.027229607105255127, -0.02953185886144638, 0.019712775945663452, -0.001852916437201202, -0.013096839189529419, 0.037045300006866455, -0.04183864966034889, -0.04865128919482231, -0.03396086022257805, -0.029470253735780716, -0.060103051364421844, -0.015236654318869114, 0.0014849890721961856, -0.023753497749567032, -0.016512814909219742, -0.0008299771579913795, 0.04584287106990814, -0.003032078966498375, -0.05259226635098457, 0.052573781460523605, 0.03964797779917717, -0.02161322720348835, 0.037087127566337585, 0.04219634830951691, -0.00831566471606493, -0.05431343987584114, 0.05241347476840019, 0.038361288607120514, 0.01794476807117462, -0.057491011917591095, -0.06438789516687393, -0.036879703402519226, 0.005520765669643879, 0.018750017508864403, -0.023118825629353523, -0.039764221757650375, 0.023113558068871498, 0.01730729639530182, -0.06382936239242554, 0.05130143091082573, -0.052559323608875275, -0.05916420742869377, -0.05402958020567894, -0.06392616033554077, 0.034439567476511, 0.05967291072010994, 0.03015022724866867, 0.001407150411978364, -0.02012006938457489, -0.0030604887288063765, 0.0032000350765883923, 0.040877312421798706, -0.06287627667188644, 0.01339726336300373, 0.040230244398117065, -0.004119265824556351, 0.00881720520555973, 0.05518025904893875, -0.004083775915205479, -0.029869936406612396, 0.012419047765433788, -0.020458916202187538, 0.02191130258142948, 0.027113638818264008, 0.010314484126865864, 0.010691662319004536, 0.03703545406460762, -0.020726896822452545, -0.026465466246008873, 0.013574309647083282, -0.02083474211394787, 0.012827831320464611, -0.020559215918183327, 0.005410321988165379, -0.01858873851597309, -0.037115007638931274, -0.0714987963438034, -0.006128544919192791, 0.013894166797399521, 0.04834035038948059, -0.07144410908222198, 0.07336787134408951, -0.0022358072455972433, -0.027101172134280205, 0.009065295569598675, -0.0611390545964241, 0.007195546757429838, 0.043220680207014084, -0.014905668795108795, 0.02563176304101944, -0.06600956618785858, 0.009084254503250122, -0.004518712405115366, 0.017167605459690094, 0.009685521014034748, 0.035441696643829346, 0.008081739768385887, -0.03771381452679634, -0.015042772516608238, -0.027308784425258636, -0.0315270721912384, -0.002945141401141882, -0.04309208318591118, -0.01850297674536705, 0.0016968094278126955, -0.060258764773607254, -0.025333335623145103, -0.010685452260077, 0.005664813332259655, 0.03687717393040657, 0.010613050311803818, 0.042781297117471695, 0.02671699970960617, 0.04141126573085785, 0.06153858080506325, -0.04082334786653519, 0.010620852001011372, -0.042971283197402954, 0.012025136500597, 0.0179150253534317, 0.005723202135413885, -0.018592897802591324, -0.026430213823914528, -0.004937964025884867, 0.024625953286886215, 0.022037392482161522, -0.05599839985370636, -0.031977176666259766, -0.005738220177590847, -0.0011008346918970346, 0.021271608769893646, -0.021741660311818123, -0.03425187990069389, 0.007990958169102669, 0.05933581665158272, 0.006783701479434967, -0.05931523069739342, -0.018816353753209114, -0.04545752331614494, 0.04752470925450325, 0.012976547703146935, -0.028054330497980118, -0.040931131690740585, -0.046631474047899246, -0.011071484535932541, -0.01281268335878849, 0.01297045312821865, 0.015495842322707176, -0.009922598488628864, 0.007959144189953804, -0.038093261420726776, 0.040562715381383896, 0.01934671401977539, 0.016898898407816887, -0.006444111000746489, -0.019620653241872787, 0.03616270422935486, 0.01354824099689722, 0.044005416333675385, 0.013048660010099411, -0.04521702975034714, 0.006894064601510763, -0.04666317626833916, 0.0049592796713113785, -0.033010464161634445, -0.012804277241230011, -0.02838132530450821, 0.017104528844356537, 0.030117852613329887, 0.02166864089667797, -0.034172479063272476, -0.00026342543424107134, -0.016423285007476807, 0.032691746950149536, -0.05178738385438919, -0.031038042157888412, 0.06607218086719513, 0.017421452328562737, -0.01814212091267109, 0.02571345679461956, 0.04624298959970474, -0.01761857606470585, 0.023064155131578445, 0.02494162693619728, -0.035206377506256104, 0.02054252289235592, -0.0361417680978775, 0.04130580276250839, -0.025785230100154877, -0.053133774548769, 0.022267328575253487, 0.0025808068457990885, 0.02987484075129032, -0.004755332600325346, -0.004512517247349024, -0.04686744883656502, -0.06178392842411995, -0.012823805212974548, -0.024255162104964256, -0.012422846630215645, -0.010004843585193157, 0.023895088583230972, -0.02287987619638443, -0.00251941941678524, 0.006614270154386759, -0.004806894809007645, 0.01898697018623352, -0.016539886593818665, -0.023795779794454575, 0.018082275986671448, 0.03409961983561516, 0.03767959028482437, -0.0005425519775599241, -0.013529248535633087, -0.022997796535491943, -0.008117029443383217, -0.0529036708176136, -0.03582785651087761, -0.011855329386889935, -0.012657997198402882, 0.004792570136487484, -0.012824065051972866, -0.023344064131379128, 0.009125455282628536, 0.04290342703461647, 0.008197336457669735, 0.0027757599018514156, 0.005115535110235214, 0.008775181137025356, -0.005914062261581421, 0.06364770978689194, 0.0550273060798645, -0.0661519318819046, -0.045146360993385315, 0.024181079119443893, -0.006228393409401178, 0.02337026037275791, 0.004853139631450176, -0.014133256860077381, -0.020741216838359833, -0.06952942162752151, 0.00328722782433033, -0.032022636383771896, -0.0010944914538413286, -0.03848947584629059, -0.018073590472340584, 0.015226448886096478, 0.02944876439869404, -0.005000102333724499, -0.0056303939782083035, 0.000006819728696427774, -0.04054464027285576, -0.004895301070064306, -0.027773449197411537, -0.046828217804431915, -0.018782244995236397, -0.036977656185626984, 0.0013258905382826924, 0.06251607090234756, 0.0016288521001115441, -0.0038445559330284595, -0.010965149849653244, -0.01676882989704609, -0.0020641356240957975, -0.003946964163333178, -0.01650688424706459, -0.03539348021149635, 0.004518164321780205, -0.020079707726836205, -0.016253279522061348, 0.013540487736463547, -0.044559430330991745, 0.04956679791212082, -0.045366883277893066, -0.022835349664092064, 0.01929921843111515, -0.022386780008673668, -0.018549509346485138, -0.012890447862446308, 0.05149899050593376, -0.03789769113063812, 0.04686469957232475, -0.04126090928912163, 0.04352578520774841, 0.06123007833957672, 0.020796891301870346, -0.0373578816652298, -0.014510097913444042, -0.04625293239951134, -0.06033524498343468, 0.018359532579779625, -0.04590729624032974, -0.059257254004478455, -0.04916441813111305, 0.025104902684688568, 0.03665313869714737, 0.004640404134988785, 0.04888206347823143, 0.040999241173267365, -0.0370890311896801, -0.007597044110298157, -0.035013336688280106, -0.0030871934723109007, 0.027657525613904, -0.01957627385854721, -0.015904296189546585, -0.011145300231873989, -0.014383446425199509, 0.005627995822578669, -0.033750809729099274, -0.03802719712257385, -0.07278960943222046, -0.011732347309589386, 0.0632810965180397, -0.009315507486462593, 0.04577742889523506, -0.0033662221394479275, -0.03506850078701973, -0.042401231825351715, 0.06844251602888107, 0.004439060110598803, 0.01114707626402378, 0.022960195317864418, 0.010637668892741203, -0.010144264437258244, 0.041389334946870804, 0.014873611740767956, -0.01154607068747282, -0.04395803436636925, 0.09628719836473465, 0.03479110449552536, -0.05774977058172226, 0.03354636952280998, 0.08110245317220688, -0.064371757209301, -0.03378318250179291, -0.001426519243977964, 0.010573511011898518, 0.01804603636264801, 0.004644543863832951, 0.031124170869588852, 0.021168746054172516, -0.03319019079208374, 0.00942735280841589, 0.024400994181632996, -0.00375437387265265, 0.005213914439082146, 0.007731267716735601, 0.04005453735589981, -0.042301636189222336, 0.007446931209415197, 0.05380910634994507, -0.02410009317100048, -0.04387211054563522, -0.036750659346580505, -0.007724354974925518, -0.012696623802185059, -0.008429300971329212, 0.05785270407795906, -0.02307269349694252, 0.026537233963608742, 0.015908213332295418, 0.02460956573486328, 0.036301273852586746, -0.005525556392967701, -0.014554076828062534, 0.05130445212125778, -0.0023602000437676907, -0.03830854222178459, -0.028142016381025314, 0.0022765465546399355, 0.009609187953174114, 0.02000199258327484, -0.06777407974004745, 0.003466763999313116, 0.04234963282942772, 0.01676671952009201, -0.02569371834397316, -0.041021838784217834, -0.021244075149297714, 0.002800600603222847, -0.004812247585505247, -0.04503672942519188, -0.014503727667033672, -0.016046686097979546, 0.021149389445781708, -0.010594331659376621, -0.009825246408581734, -0.004859997425228357, 0.004099140875041485, -0.020343370735645294, 0.030603323131799698, -0.04294247552752495, 0.007687271572649479, -0.02362792380154133, -0.0680919885635376, -0.04020678624510765, -0.0035622543655335903, -0.03540303558111191, 0.006954151205718517, -0.045545462518930435, 0.014094442129135132, 0.023113567382097244, 0.00285506434738636, 0.05687754973769188, 0.017502743750810623, -0.011599371209740639, -0.01243921834975481, -0.025684213265776634, 0.04997261241078377, 0.0074015408754348755, 0.016783544793725014, 0.05129750818014145, 0.006360445637255907, 0.06443239003419876, -0.008701768703758717, -0.030170677229762077, -0.03646756708621979, -0.019202252849936485, 0.014622108079493046, -0.0028884331695735455, -0.023196712136268616, -0.03393707424402237, -0.02673874795436859, -0.04777470603585243, 0.012592391110956669, 0.0012754659401252866, 0.00010488482075743377, -0.011055014096200466, -0.020573586225509644, -0.012956556864082813, 0.037690669298172, -0.03392228111624718, 0.009453964419662952, 0.021669143810868263, 0.012992983683943748, 0.026529157534241676, 0.009821762330830097, 0.014477076940238476, 0.03549038991332054, -0.013737238943576813, -0.0403914600610733, -0.0010283213341608644, 0.024916432797908783, -0.0045776208862662315, 0.045036520808935165, -0.04258435219526291, -0.009480230510234833, -0.03274006396532059, 0.0011245061177760363, 0.006827729754149914, 0.0459616556763649, 0.008121197111904621, -0.02320418693125248, 0.009939094074070454, -0.02576405182480812, -0.020764479413628578, -0.006197435315698385, -0.07804413139820099, -0.03141302987933159, 0.0022879319731146097, -0.04071811959147453, -0.047641973942518234, -0.029217276722192764, -0.01160416379570961, 0.023816769942641258, 0.028199711814522743, -0.012401164509356022, -0.016146760433912277, 0.007732821628451347, 0.001049712998792529, 0.027507798746228218, -0.021556848660111427, 0.0014815503964200616, 0.03966709226369858, 0.040790051221847534, -0.05887449532747269, -0.02913822792470455, 0.017862452194094658, 0.03397452458739281, -0.007948857732117176, -0.018562491983175278, 0.003965805750340223, -0.00937685091048479, 0.01532113365828991, 0.010257791727781296, 0.008917276747524738, 0.039476558566093445, -0.0018890294013544917, 0.035083673894405365, 0.018778899684548378, -0.0012709646252915263, -0.04789905995130539, 0.038675930351018906, -0.020499881356954575, -0.040828023105859756, -0.06177154928445816, 0.016530442982912064, 0.027147077023983, -0.02827957086265087, 0.03796257823705673, -0.0028622818645089865, 0.045743294060230255, -0.013213835656642914, 0.01335173100233078, -0.012759131379425526, 0.040058575570583344, 0.01500129234045744, 0.028638873249292374, -0.018207566812634468, 0.019961772486567497, 0.03857932612299919, 0.013343527913093567, -0.01835566572844982, 0.0661378875374794, -0.009507746435701847, -0.02542703039944172, -0.0000969995599007234, -0.013528210110962391, 0.0006281032110564411, 0.01669086329638958, -0.0020119864493608475, 0.010519448667764664, -0.0051169865764677525, 0.001694167498499155, -0.0004084730171598494, -0.0008923657587729394, 0.043947577476501465, -0.026525545865297318, -0.004411415662616491, 0.019343651831150055, -0.04370114952325821, -0.017995469272136688, 0.053776126354932785, -0.007799732964485884, -0.006220352835953236, 0.024946583434939384, 0.021285971626639366, -0.002179351169615984, 0.04640042781829834, 0.03346985951066017, 0.01637067086994648, -0.04201025888323784, -0.00728986831381917, 0.03806893900036812, 0.012771396897733212, -0.06912744045257568, -0.01943878084421158, -0.011498223058879375, 0.029720302671194077, -0.054987821727991104, -0.015889398753643036, 0.030366789549589157, -0.03909682109951973, -0.03480114787817001, -0.03161424398422241, 0.04058026149868965, -0.04099637642502785, 0.0043352097272872925, 0.02167626842856407, 0.00011892761540366337, -0.018276160582900047, 0.027688773348927498, -0.013483489863574505, 0.038731805980205536, 0.01583053357899189, 0.037849061191082, -0.022213244810700417, 0.0056908102706074715, 0.032133374363183975, -0.061505500227212906, -0.016440438106656075, 0.023959731683135033, -0.00254357629455626, -0.03446188196539879, -0.03811106085777283, -0.03282619267702103, 0.0064141103066504, -0.005823928397148848, -0.035936400294303894, 0.007290064822882414, 0.030714256688952446, -0.014589142985641956, -0.026696251705288887, 0.009786094538867474, 0.041583649814128876, -0.02512575499713421, -0.02376721426844597, -0.0114209009334445, 0.0472099669277668, -0.021893221884965897, -0.017688650637865067, -0.008810405619442463, -0.04197581857442856, -0.012812737375497818, -0.04006000980734825, 0.06105097755789757, -0.010402897372841835, -0.025476552546024323, -0.041272737085819244, -0.01941191591322422, -0.04591717943549156, 0.0028286415617913008, -0.05229629576206207, -0.04104113206267357, 0.025094037875533104, 0.0401412658393383, 0.005071644205600023, 0.003025001846253872, -0.01694144308567047, 0.03215615823864937, 0.021593833342194557, 0.08768755942583084, -0.006357125006616116, 0.013099871575832367, -0.00300616305321455, -0.005080939270555973, 0.01947958953678608, -0.022320881485939026, 0.02616763301193714, -0.015588379465043545, -0.0436265766620636, -0.010441646911203861, 0.008970609866082668, 0.007912342436611652, -0.053038906306028366, 0.02045661211013794, 0.0010736723197624087, 0.00524308905005455, -0.017706602811813354, -0.05307293310761452, 0.010524390265345573, -0.04772946238517761, -0.010477506555616856, -0.03559602424502373, 0.003824627725407481, 0.008028976619243622, 0.01651073433458805, -0.0043680984526872635, -0.057723820209503174, 0.14537139236927032, 0.04831276461482048, 0.044242218136787415, 0.008516128174960613, 0.00990236271172762, 0.07217183709144592, 0.0174259040504694, -0.03963049128651619, -0.021070290356874466, -0.030789976939558983, 0.016756214201450348, -0.0016745026223361492, -0.0036284946836531162, -0.024959789589047432, -0.010155169293284416, 0.07703129202127457, -0.04452519118785858, 0.005739443004131317, 0.025599874556064606, -0.04525336995720863, -0.04571043699979782, 0.04374855011701584, -0.014926308766007423, 0.02553967386484146, -0.02199309878051281, -0.0018387949094176292, 0.0160360224545002, -0.030702980235219002, -0.007180347573012114, -0.013650929555296898, 0.05115152895450592, -0.038672979921102524, 0.02069704607129097, -0.011684856377542019, -0.0057085053995251656, 0.0418073795735836, -0.019917413592338562, -0.055797748267650604, -0.01377785298973322, 0.005338198505342007, 0.009138216264545918, 0.0332840196788311, 0.026414785534143448, -0.04412853717803955, 0.033075980842113495, 0.022903993725776672, -0.03545628860592842, 0.010634364560246468, 0.022631436586380005, -0.04510428383946419, 0.06645730882883072, -0.038526955991983414, 0.041206587105989456, -0.03809535875916481, 0.010820244438946247, 0.028087859973311424, 0.014848455786705017, -0.02344890870153904, -0.008506707847118378, 0.0013096547918394208, 0.043349213898181915, -0.02003026194870472, -0.01445890311151743, 0.0535455122590065, -0.042385026812553406, 0.005974333733320236, 0.016026344150304794, 0.02369469404220581, -0.010392311029136181, -0.012223522178828716, -0.02195536345243454, -0.0007804555352777243, 0.005924792028963566, -0.014712831936776638, 0.008998889476060867, 0.03156521916389465, 0.020526325330138206, 0.04337584972381592, 0.03410312905907631, 0.0014255843125283718, -0.006534447893500328, -0.04865225777029991, -0.02846006117761135, 0.0009237302001565695, 0.039052870124578476, 0.02021009288728237, -0.04963880777359009, -0.00865210872143507, -0.03877244144678116, 0.05096402391791344, 0.03327903151512146, 0.0011475736973807216, -0.05369332805275917, -0.032328397035598755, -0.011993425898253918 ]
It's a city so crazy for coffee that two identical Starbucks can be found kitty-corner from one another and both are busy. Sep. 29, 2009 3:46 p.m. VANCOUVER โ€” It's a city so crazy for coffee that two identical Starbucks can be found kitty-corner from one another and both are busy. So when Vancouverites found out that just one brand of brew will be available at Olympic venues when the 2010 Games come to town, the roast quickly began. Far Coast, brewed by sponsor Coca-Cola, will be the official coffee of the Games, and that's hard to swallow for some locals. "They better have paid a lot of money to pay off the Olympics, because otherwise it's not worth the effort," said Norbert Pinter, 26, after taking a sip of Far Coast and comparing it to the Starbucks in his hand. Ahead of the Games, a coffee competition is already percolating. "It's a shame that they (tourists) are only going to get one variety of coffee offered. I think they should be allowed to get more than one type of coffee at Olympic venues," said Dylan Ashwood, 25, outside a local gourmet chain.
[ -0.0058341361582279205, 0.015012766234576702, -0.009845280088484287, 0.02699960023164749, -0.012270261533558369, -0.021378498524427414, 0.018546022474765778, 0.045241259038448334, 0.0042499047704041, 0.019557956606149673, 0.0306190624833107, 0.010055458173155785, 0.002460724674165249, -0.03956848382949829, -0.027632610872387886, -0.00862896628677845, -0.029088038951158524, -0.009934509173035622, -0.035892944782972336, 0.0020386057440191507, 0.018056273460388184, 0.014431312680244446, -0.0705428496003151, -0.04279881343245506, -0.01226112525910139, 0.038061100989580154, 0.027750447392463684, -0.022361451759934425, 0.04702049493789673, 0.05982338264584541, -0.0023576109670102596, -0.05176481604576111, 0.030240656808018684, -0.047008201479911804, -0.02514268271625042, 0.002400600118562579, 0.02211749739944935, -0.0184091217815876, -0.015938755124807358, -0.043234068900346756, 0.015287446789443493, -0.06727632880210876, 0.04317931830883026, 0.017351331189274788, -0.034604672342538834, 0.0076496717520058155, -0.04221314936876297, -0.027946030721068382, 0.03546727076172829, -0.038458943367004395, 0.023257462307810783, 0.012145034037530422, 0.026414206251502037, 0.033027905970811844, -0.012314491905272007, -0.0014851802261546254, -0.016246287152171135, 0.0056371018290519714, 0.014891643077135086, 0.04615897312760353, -0.0005893431371077895, -0.00020918139489367604, 0.020085526630282402, -0.06587212532758713, 0.03576469421386719, -0.007039590273052454, 0.013337664306163788, -0.004640464670956135, 0.050635650753974915, -0.03753191977739334, 0.005520922131836414, 0.007286863401532173, -0.01005527377128601, -0.019082888960838318, 0.002093480434268713, -0.01822744309902191, -0.0052153184078633785, 0.0029968449380248785, -0.01137560699135065, -0.007518860045820475, -0.007712936960160732, 0.06061769649386406, -0.0036910418421030045, -0.009522128850221634, -0.057746004313230515, -0.02413591556251049, -0.023034904152154922, -0.0008388379355892539, 0.019628537818789482, -0.0005305030499584973, 0.015253249555826187, 0.026932531967759132, 0.005706414580345154, -0.00655321916565299, 0.03265810385346413, 0.04304628074169159, -0.037225142121315, 0.03009098209440708, -0.0038082387764006853, -0.017729416489601135, 0.039632685482501984, 0.002555861370638013, 0.014410140924155712, 0.045623667538166046, -0.03223337233066559, -0.012118595652282238, -0.010235115885734558, 0.019036155194044113, 0.027290277183055878, 0.002200210466980934, -0.015151577070355415, -0.00815648678690195, 0.022338587790727615, -0.013945678249001503, -0.004354111850261688, 0.03586382046341896, 0.006128917448222637, 0.029409637674689293, -0.04672379419207573, 0.0410480722784996, -0.01776139624416828, -0.007871042937040329, 0.03329414129257202, -0.0032155225053429604, 0.024557337164878845, -0.06438703835010529, -0.0356045663356781, 0.04061535745859146, -0.04867266118526459, -0.025467485189437866, 0.006090546492487192, -0.04076036810874939, -0.007366728503257036, 0.011611895635724068, -0.012026775628328323, 0.038049109280109406, 0.01940646395087242, 0.05328601971268654, -0.011865421198308468, -0.06522771716117859, 0.06321589648723602, 0.012684540823101997, 0.014109202660620213, 0.08498352766036987, -0.02190818451344967, 0.015678266063332558, 0.02100001834332943, 0.018498504534363747, -0.03837043046951294, 0.03420426696538925, -0.04589669406414032, 0.0012574519496411085, -0.022213982418179512, 0.01047153864055872, -0.03796619921922684, -0.0018267318373546004, 0.034782037138938904, -0.008302628062665462, 0.01649089716374874, 0.036385755985975266, -0.06351912766695023, 0.016908491030335426, -0.02337692864239216, 0.058385785669088364, -0.02757173590362072, 0.01712464727461338, -0.04915776476264, -0.004214939195662737, 0.01422443799674511, -0.021789919584989548, -0.0060814861208200455, -0.013653491623699665, -0.017852379009127617, 0.017996544018387794, 0.036534398794174194, 0.05396829545497894, 0.0213395357131958, -0.01170265395194292, 0.054601918905973434, 0.055950526148080826, -0.056076530367136, -0.011232116259634495, 0.01911529153585434, 0.04167574644088745, 0.017522651702165604, 0.006022116634994745, -0.03151796758174896, -0.04087164252996445, -0.039938949048519135, -0.026999983936548233, 0.014979181811213493, 0.005272132344543934, -0.027453424409031868, 0.04890481382608414, 0.002022411674261093, -0.006637845654040575, -0.021728990599513054, -0.035022806376218796, 0.017620835453271866, -0.07077255845069885, -0.030399862676858902, 0.047812700271606445, -0.022348251193761826, 0.048809487372636795, -0.001527247717604041, -0.00521106319501996, 0.0030293811578303576, 0.05422288551926613, -0.049953922629356384, -0.0001381046895403415, 0.040622491389513016, 0.0005844062543474138, -0.02052183263003826, -0.04711855947971344, 0.0055540939792990685, -0.02977703884243965, -0.02995377779006958, 0.05017947778105736, -0.009885082952678204, -0.03912902623414993, 0.000582003325689584, 0.01013724971562624, 0.06266229599714279, 0.03574960306286812, 0.00361219746991992, -0.0016419271705672145, 0.02147819660604, 0.0780959278345108, -0.02386251650750637, -0.011277024634182453, -0.0137181980535388, 0.04001303389668465, 0.01076632458716631, 0.06474419683218002, 0.03497365117073059, -0.006653096992522478, 0.047100525349378586, 0.05244051292538643, -0.015508266165852547, 0.01454971730709076, 0.013568662106990814, 0.03802764415740967, 0.028973810374736786, 0.04191668704152107, -0.03628071770071983, 0.03330912068486214, -0.030948221683502197, 0.007552551571279764, -0.0046966951340436935, 0.04214216768741608, -0.004367202986031771, 0.027202751487493515, 0.004853334743529558, 0.06444251537322998, -0.02531447447836399, -0.0111782131716609, 0.0015875030076131225, 0.058220025151968, -0.0233171246945858, -0.012013566680252552, 0.002394308801740408, 0.02663828805088997, -0.03587834909558296, -0.03155813366174698, 0.025127211585640907, 0.0018296769121661782, -0.00661621754989028, 0.013648147694766521, -0.020479194819927216, 0.0027172777336090803, -0.03538528084754944, -0.03290765359997749, -0.0395834781229496, -0.027289794757962227, -0.03630639985203743, 0.01163196936249733, 0.031643401831388474, -0.041951898485422134, 0.03275905176997185, 0.017097631469368935, -0.016950443387031555, -0.007873202674090862, 0.014253398403525352, 0.03342849388718605, 0.01891448348760605, 0.04522904008626938, -0.05191473290324211, 0.02639598958194256, 0.008307342417538166, 0.05099254101514816, -0.004338221158832312, 0.009323918260633945, -0.025853442028164864, -0.0036137718707323074, 0.03522954136133194, 0.010234539397060871, -0.006624921225011349, -0.003018956631422043, -0.04191172122955322, -0.04523361474275589, 0.009531029500067234, 0.005638807080686092, 0.00990235060453415, 0.010866022668778896, -0.04609813913702965, 0.06531978398561478, 0.007019831333309412, -0.03451477736234665, 0.029047802090644836, 0.04701440781354904, -0.03684090077877045, 0.040790870785713196, 0.017594218254089355, -0.02288874424993992, -0.06644763052463531, 0.04104752466082573, 0.03306114673614502, -0.008165192790329456, -0.0321403443813324, -0.00043261819519102573, -0.03587187081575394, -0.0017383595695719123, 0.0380181260406971, -0.0255858413875103, -0.032626520842313766, 0.02988913282752037, 0.03757646307349205, -0.040324773639440536, 0.01466447301208973, -0.05916599556803703, -0.009754144586622715, -0.03385618329048157, -0.06231563165783882, 0.0061334772035479546, -0.003350468585267663, 0.017341285943984985, 0.012822933495044708, -0.014728386886417866, -0.015494545921683311, 0.008956910111010075, 0.03530799597501755, -0.013370928354561329, 0.004234122112393379, 0.0610591284930706, 0.0031047873198986053, 0.005417932756245136, 0.02221403643488884, -0.019188228994607925, -0.0240243561565876, -0.013930912129580975, 0.029133377596735954, 0.018792321905493736, 0.007950210012495518, 0.027496520429849625, 0.014818672090768814, 0.05424045771360397, -0.03432817757129669, 0.0020753182470798492, 0.033245861530303955, 0.008495371788740158, 0.0377642847597599, 0.002786823082715273, -0.006971689406782389, 0.02673684060573578, -0.014153446070849895, -0.03642851114273071, 0.043634455651044846, 0.04926722124218941, 0.05557654798030853, -0.034858353435993195, 0.0603100024163723, -0.014167136512696743, -0.05385735258460045, 0.04388787969946861, -0.04018465802073479, -0.03247024863958359, 0.04345860332250595, 0.005295942537486553, 0.03230496123433113, -0.030223838984966278, 0.028419241309165955, -0.0290539488196373, 0.053046442568302155, 0.03201398625969887, 0.02788756601512432, 0.03411247581243515, -0.0019258939428254962, -0.042041998356580734, -0.03822026401758194, -0.044484395533800125, 0.006423125974833965, -0.008556526154279709, 0.004800750408321619, -0.0345025472342968, -0.0337659977376461, -0.042702578008174896, 0.0173069778829813, 0.030795367434620857, 0.04100056737661362, -0.012868286110460758, 0.04624684527516365, -0.0032774368301033974, 0.01586838625371456, 0.04476712644100189, -0.017103230580687523, -0.004912268370389938, -0.04108863323926926, 0.04881870374083519, 0.004301648586988449, -0.034836333245038986, -0.053434401750564575, -0.033361390233039856, -0.023920847102999687, 0.009911700151860714, -0.0068043493665754795, -0.02126283571124077, -0.034265242516994476, 0.04842198267579079, 0.0003639141214080155, 0.053941600024700165, -0.013008534908294678, 0.011707523837685585, -0.014006719924509525, 0.03058745339512825, 0.01859487034380436, -0.07331795990467072, -0.008431732654571533, -0.03567206859588623, 0.04544839635491371, 0.06417083740234375, -0.03146619349718094, -0.04957282543182373, -0.03036349266767502, -0.022228233516216278, -0.06438617408275604, 0.005470195319503546, 0.020635655149817467, -0.016465017572045326, 0.0013338199350982904, -0.02194526046514511, 0.029781877994537354, 0.018953172490000725, -0.008457929827272892, -0.03225737437605858, -0.011817500926554203, 0.03798571228981018, 0.010814460925757885, 0.04196540266275406, -0.0044993325136601925, -0.03365906700491905, -0.004391137044876814, -0.03624970093369484, -0.0030696673784404993, 0.006560615263879299, -0.0010922092478722334, -0.009315547533333302, 0.013696673326194286, 0.004078041762113571, 0.0443342961370945, 0.006607274059206247, 0.027049865573644638, -0.013914010487496853, 0.04854339733719826, -0.03667529299855232, -0.05306380242109299, 0.048392403870821, -0.005528341047465801, -0.009443510323762894, 0.038978271186351776, 0.05305156484246254, -0.03498212993144989, 0.02555439993739128, 0.02347641997039318, -0.03978573903441429, 0.019638296216726303, -0.046523433178663254, 0.021535975858569145, 0.009414445608854294, -0.03442604839801788, 0.03608051687479019, -0.04756683111190796, 0.02837561070919037, 0.0014684491325169802, -0.001347867539152503, -0.039556656032800674, -0.07256768643856049, -0.01951105147600174, 0.02344031259417534, 0.0011606932384893298, 0.0578690767288208, 0.024978850036859512, -0.008691646158695221, 0.0021703809034079313, -0.03214983642101288, -0.00919493567198515, 0.0015735193155705929, -0.0076155937276780605, 0.016795147210359573, -0.022849086672067642, -0.021449852734804153, 0.005358632188290358, -0.04272577911615372, -0.041802119463682175, 0.01082750502973795, 0.010887186974287033, -0.0297681987285614, -0.04747024178504944, 0.004112216643989086, -0.03632475435733795, 0.01200534775853157, -0.056432873010635376, 0.005868683103471994, -0.014717761427164078, 0.018946463242173195, 0.009277699515223503, 0.02382398024201393, 0.007836822420358658, -0.009844903834164143, -0.06058496981859207, 0.048284031450748444, 0.04202554374933243, -0.05652649700641632, -0.05229758471250534, 0.0330289751291275, -0.0165606290102005, 0.04343515634536743, 0.014850806444883347, -0.06107282266020775, -0.017334364354610443, -0.07685641199350357, 0.0013459313195198774, -0.0418371707201004, -0.01811145432293415, -0.05579208955168724, -0.05012424662709236, -0.015113765373826027, 0.031291306018829346, 0.0030020049307495356, 0.01054754015058279, 0.024420758709311485, -0.026642097160220146, 0.020426450297236443, 0.0051616583950817585, -0.014818801544606686, -0.018387701362371445, 0.01730453595519066, -0.0012218209449201822, 0.03790609911084175, 0.007048917468637228, 0.024518705904483795, -0.011427193880081177, 0.04783276841044426, -0.011742671951651573, -0.02061167173087597, -0.035656414926052094, -0.020092973485589027, 0.003927517682313919, -0.0044683488085865974, 0.006466669961810112, 0.008331593126058578, -0.024761544540524483, 0.0746433213353157, -0.035514865070581436, 0.0014326804084703326, -0.03154688701033592, 0.0025035394355654716, -0.009843884035944939, -0.004100094083696604, 0.07627338171005249, -0.0022112492006272078, -0.01566258817911148, -0.024917950853705406, 0.04583602026104927, 0.053730547428131104, -0.006045144516974688, -0.03678261116147041, -0.030394092202186584, -0.014037328772246838, -0.06684784591197968, 0.04294809699058533, -0.0251985564827919, -0.021267913281917572, -0.018854722380638123, -0.011438000947237015, 0.046732254326343536, 0.007094732020050287, 0.040632400661706924, 0.0415097251534462, -0.010477116331458092, -0.018871000036597252, -0.027879657223820686, 0.04162987694144249, 0.05481500178575516, -0.017372798174619675, -0.01783904992043972, -0.012043068185448647, -0.043659765273332596, 0.030167745426297188, -0.0266168974339962, -0.013179183937609196, -0.031274281442165375, -0.009217181243002415, 0.06209815666079521, -0.04673630744218826, 0.020848801359534264, -0.04320539906620979, -0.07277168333530426, -0.04523799195885658, 0.019647663459181786, -0.0071386233903467655, -0.013545412570238113, 0.06422027945518494, -0.012118379585444927, -0.02429540827870369, -0.005994483828544617, 0.003725238610059023, -0.016247427091002464, -0.033889658749103546, 0.055622752755880356, -0.014371538534760475, -0.06367410719394684, 0.04898959398269653, 0.06305653601884842, -0.04084605351090431, -0.044947054237127304, -0.024546129629015923, 0.007946874015033245, -0.029035011306405067, -0.05197698622941971, 0.007275908719748259, -0.020548386499285698, -0.024068785831332207, -0.025491371750831604, 0.026449153199791908, 0.009021119214594364, 0.03732968494296074, 0.008054963313043118, 0.03115534968674183, -0.051618512719869614, 0.02499808371067047, 0.003997389692813158, -0.0004987044958397746, -0.03276786580681801, -0.02073522098362446, -0.007904205471277237, -0.009150337427854538, -0.011244885623455048, 0.05130597576498985, -0.016109131276607513, -0.0007385762291960418, 0.03782547265291214, -0.013079410418868065, 0.060160018503665924, 0.01124638132750988, 0.002997128525748849, -0.0000814578088466078, -0.04543567821383476, -0.03580892086029053, -0.06592436879873276, -0.0001766245550243184, -0.029435154050588608, 0.021217741072177887, -0.014415222220122814, 0.0009399655973538756, 0.03619460016489029, -0.017227642238140106, 0.00614418787881732, -0.039398156106472015, -0.05537950247526169, -0.030521053820848465, -0.04012177139520645, -0.021860573440790176, -0.0219496451318264, -0.004092044197022915, 0.02870907634496689, 0.02558380924165249, -0.017932433634996414, -0.002274890895932913, -0.023908518254756927, -0.0177330132573843, -0.0041690608486533165, -0.02362789958715439, 0.023762043565511703, -0.05962037295103073, -0.05600936338305473, -0.01237423438578844, 0.011580828577280045, -0.022646507248282433, 0.030185846611857414, -0.012162815779447556, 0.005601473152637482, -0.01454752217978239, 0.030859095975756645, -0.0011120710987597704, 0.04155497997999191, -0.002784912707284093, -0.039277322590351105, 0.010056714527308941, 0.029793355613946915, -0.01671292632818222, 0.008872327394783497, 0.01985323056578636, 0.0024580820463597775, 0.008605508133769035, -0.024894962087273598, -0.036719366908073425, -0.009680820629000664, -0.013468261808156967, -0.018102632835507393, 0.014158949255943298, -0.046817366033792496, -0.022034235298633575, -0.0029504303820431232, -0.022133616730570793, 0.02828562632203102, -0.012531406246125698, -0.007847580127418041, 0.009897587820887566, -0.0007763794274069369, -0.0004007982788607478, 0.0695389062166214, 0.006116217002272606, 0.0424685999751091, -0.006101470440626144, 0.039919164031744, 0.013003751635551453, -0.0069566089659929276, 0.0360536202788353, 0.02641909569501877, 0.04203597828745842, -0.03640751913189888, -0.006928655318915844, 0.026270657777786255, -0.030332596972584724, 0.05312789976596832, -0.0140316691249609, -0.046058766543865204, -0.05023719742894173, -0.025799542665481567, -0.003522077575325966, 0.020987316966056824, 0.01805735006928444, 0.032391659915447235, 0.03394683077931404, -0.03160543739795685, -0.040922097861766815, -0.009604413993656635, -0.0846516489982605, -0.03230227157473564, 0.03761855512857437, -0.019813288003206253, -0.014709430746734142, -0.003989452961832285, -0.03206184133887291, 0.00828093197196722, -0.03759394586086273, -0.0399484820663929, 0.005361276678740978, 0.0334673672914505, 0.009438184089958668, 0.021575145423412323, -0.0205784123390913, -0.00779734319075942, 0.014986529015004635, 0.03282452002167702, -0.0474163256585598, -0.0295514315366745, 0.030790261924266815, 0.027601713314652443, 0.019932057708501816, 0.027517030015587807, -0.04388664662837982, 0.004773201420903206, -0.004222007934004068, -0.01839929260313511, 0.0014201798476278782, 0.01237255334854126, -0.021510208025574684, 0.03392701596021652, 0.01567266695201397, -0.022517720237374306, -0.035119518637657166, 0.06358183175325394, -0.01833905093371868, -0.019613346084952354, -0.051622528582811356, 0.03845493122935295, 0.038094840943813324, -0.0124590415507555, 0.04308316856622696, -0.020859142765402794, 0.022534066811203957, -0.017613591626286507, 0.04984224960207939, -0.039384759962558746, 0.04345608502626419, 0.013380927965044975, 0.04472125321626663, 0.005772083066403866, 0.026487860828638077, 0.03447682783007622, 0.017730142921209335, -0.009272987954318523, 0.044537127017974854, 0.022577686235308647, -0.010794565081596375, -0.003565589664503932, -0.0066749900579452515, 0.018806805834174156, -0.007012717891484499, -0.024034209549427032, -0.002112893620505929, -0.015263920649886131, 0.0015613712603226304, 0.010046959854662418, -0.0027196069713681936, 0.05451390519738197, -0.025682920590043068, -0.009836379438638687, -0.001244809478521347, -0.036958757787942886, -0.029795465990900993, 0.01729428768157959, 0.0011526539456099272, 0.00933140143752098, 0.035546835511922836, 0.013478362001478672, -0.010537853464484215, 0.03573072701692581, 0.03546822443604469, 0.0021808852907270193, -0.020554164424538612, 0.0027057279366999865, 0.026094483211636543, -0.00459150318056345, -0.04139000549912453, 0.026712244376540184, -0.059849150478839874, 0.028892269358038902, -0.019319357350468636, -0.01278376393020153, 0.03930409252643585, -0.039241187274456024, 0.0071248807944357395, -0.04360869899392128, 0.02622620016336441, -0.0741475448012352, -0.0034965123049914837, 0.02950478345155716, -0.0043367356993258, -0.0244681928306818, 0.03001170977950096, -0.006774425972253084, 0.029230225831270218, 0.023326141759753227, 0.06642540544271469, -0.007651555351912975, 0.01852051541209221, 0.04444730654358864, 0.015799183398485184, -0.020111646503210068, 0.04010133817791939, 0.00635805306956172, -0.04740801081061363, -0.04146719351410866, -0.0313444547355175, -0.013053517788648605, 0.0035074767656624317, -0.00891574751585722, 0.016276070848107338, 0.03852207213640213, -0.014057074673473835, -0.008104830048978329, -0.008358696475625038, 0.03683459386229515, -0.0421212799847126, -0.026606401428580284, 0.015508871525526047, 0.023557376116514206, -0.025064557790756226, -0.007574967108666897, -0.05375056713819504, -0.04175339639186859, 0.0012541009346023202, -0.023527415469288826, 0.07131961733102798, -0.011550653725862503, -0.011404239572584629, -0.015150624327361584, -0.06361328810453415, -0.03428042307496071, -0.004320098087191582, -0.03914406895637512, -0.06840082257986069, 0.033216316252946854, 0.03408835083246231, -0.003500476246699691, -0.01797468028962612, -0.0123444814234972, 0.0031180919613689184, 0.044882480055093765, 0.04819715768098831, 0.008860539644956589, 0.004154251888394356, 0.03328640013933182, -0.0032183919101953506, 0.029974492266774178, -0.048594702035188675, 0.03307647258043289, 0.002286679809913039, 0.0029045308474451303, -0.017717935144901276, 0.03279247134923935, -0.004954834934324026, -0.049942001700401306, 0.002601553685963154, 0.004708486143499613, 0.013654923066496849, -0.02860899455845356, -0.06823223829269409, 0.025370830669999123, -0.0006595486775040627, -0.04071956127882004, -0.00706474157050252, 0.01868332177400589, 0.031597696244716644, 0.015847358852624893, 0.0032586941961199045, -0.08402702957391739, 0.15232650935649872, 0.012064623646438122, 0.02205515094101429, 0.004618003033101559, 0.03611050173640251, 0.0635325238108635, 0.026707224547863007, -0.006249744910746813, -0.014605368487536907, 0.006703823339194059, 0.03538455441594124, -0.049990516155958176, 0.021483540534973145, 0.013199557550251484, 0.012322826310992241, 0.04431688040494919, -0.023256981745362282, 0.00924360565841198, 0.009648794308304787, -0.03075120784342289, -0.03933069482445717, 0.006014586891978979, 0.012837588787078857, 0.02808048203587532, -0.009200509637594223, 0.018094059079885483, -0.0040657357312738895, -0.04255690425634384, 0.0230579636991024, -0.030210699886083603, 0.04910127446055412, -0.01893533021211624, 0.04165434464812279, -0.00851636752486229, -0.04001970961689949, 0.05661097913980484, -0.011838334612548351, -0.026575040072202682, 0.004457947798073292, 0.013310840353369713, -0.04177723452448845, 0.0039009926840662956, 0.004163567908108234, -0.02959441766142845, 0.02117220312356949, 0.03892179951071739, -0.037352826446294785, 0.008460897020995617, 0.0015976782888174057, -0.03096628561615944, 0.07357089966535568, -0.011535904370248318, 0.08096063882112503, 0.024561237543821335, -0.02611117996275425, 0.011247246526181698, -0.0013300502905622125, -0.023128090426325798, 0.009970947168767452, -0.018160562962293625, 0.04815816134214401, -0.007261405233293772, -0.011165939271450043, 0.023888304829597473, -0.05197172239422798, 0.013983426615595818, 0.05743185430765152, -0.005996114108711481, -0.004463668446987867, -0.03235417604446411, -0.018700990825891495, 0.028224926441907883, -0.003729272400960326, -0.014809874817728996, 0.03448810055851936, 0.020285964012145996, -0.01979779824614525, 0.015405603684484959, 0.012420153245329857, -0.01963391713798046, -0.008473815396428108, -0.048541657626628876, 0.00592287490144372, 0.00919246580451727, 0.027180124074220657, 0.0268710907548666, -0.005930470768362284, -0.024366872385144234, -0.0183833297342062, 0.05342625081539154, 0.045531775802373886, 0.04258900135755539, -0.01024283841252327, -0.0007381436298601329, -0.017551910132169724 ]
<?php ?> <?php get_header(); ?> <div class="pagenev"><div class="conwidth"><?php design_breadcrumbs() ?></div></div> <div id="container"> <div id="content-full"> <?php if (have_posts()) : while (have_posts()) : the_post();?> <h1 id="post-<?php the_ID(); ?>" class="page-title"><?php the_title();?></h1> <div class="entrytext"> <?php the_content(); ?> </div><div class="clear"> </div> <?php edit_post_link('Edit This Entry', '<p>', '</p>'); ?> <?php comments_template(); ?> <?php endwhile; endif; ?> </div> <?php get_footer(); ?>
[ -0.022855471819639206, -0.0024914448149502277, -0.015242904424667358, -0.006890729535371065, -0.013006220571696758, 0.012862250208854675, 0.0060060955584049225, 0.0223170667886734, 0.024553874507546425, 0.040845271199941635, 0.029036616906523705, 0.037185750901699066, 0.006260470952838659, -0.010815194807946682, -0.016432123258709908, -0.00514011038467288, -0.022501539438962936, -0.028976334258913994, -0.053613726049661636, 0.004642380401492119, -0.02703002654016018, 0.020575011149048805, -0.056034352630376816, -0.026823395863175392, -0.029882559552788734, 0.043399661779403687, 0.0064366343431174755, 0.0012364406138658524, 0.038504164665937424, 0.07589109987020493, -0.022572332993149757, -0.02581179141998291, 0.01573890447616577, -0.033566590398550034, -0.01281355693936348, -0.01330571249127388, 0.04374344274401665, -0.0460873618721962, -0.019043078646063805, -0.0370631068944931, 0.012643749825656414, -0.014392608776688576, 0.011059597134590149, -0.05594153702259064, -0.046682022511959076, 0.008615738712251186, -0.010827205143868923, -0.006102115847170353, 0.008709615096449852, -0.04496609792113304, 0.027896033599972725, -0.00851898267865181, 0.015370664186775684, -0.004086524713784456, -0.019541261717677116, 0.029622238129377365, -0.0016006485093384981, -0.026443777605891228, -0.045059043914079666, 0.04535339027643204, 0.022203726693987846, 0.009549031034111977, 0.014080910012125969, -0.06671875715255737, 0.03047899343073368, 0.016186250373721123, -0.01565428264439106, -0.007745819166302681, 0.014176403172314167, -0.02347026765346527, -0.027728306129574776, 0.00813158880919218, -0.003400139743462205, -0.03247883915901184, -0.027066078037023544, 0.019448814913630486, -0.013822783716022968, 0.007981738075613976, -0.008294622413814068, 0.030732691287994385, -0.0063800388015806675, 0.059223808348178864, -0.0030806642025709152, -0.0058862934820353985, -0.043449416756629944, -0.026342036202549934, -0.0045046815648674965, -0.0018093585968017578, 0.013477104716002941, -0.004561782348901033, -0.023386133834719658, 0.04252809286117554, 0.029041483998298645, 0.012691873125731945, 0.022092901170253754, 0.046921506524086, -0.02362440899014473, 0.050109636038541794, 0.0007748636999167502, -0.0003043109900318086, 0.04213223233819008, 0.014291618019342422, -0.022289741784334183, 0.015640484169125557, -0.03997154161334038, -0.00042864755960181355, 0.00928936805576086, -0.015192012302577496, -0.010890038684010506, -0.025294868275523186, -0.026495689526200294, 0.0011480393586680293, 0.011397745460271835, 0.015598015859723091, 0.003985009156167507, 0.035861290991306305, 0.011978372931480408, 0.03627424314618111, -0.0322430357336998, 0.009802797809243202, 0.016292572021484375, -0.007301673758774996, -0.00560269970446825, -0.017903218045830727, 0.004923412576317787, -0.033131226897239685, -0.023058831691741943, 0.07388260215520859, -0.03209231048822403, -0.008832600899040699, 0.001502178842201829, -0.033841464668512344, -0.025780195370316505, 0.033694081008434296, -0.016932159662246704, 0.02792470157146454, -0.00008670526585774496, 0.03388746455311775, 0.048184286803007126, -0.041636884212493896, 0.03602486848831177, 0.036467742174863815, 0.00883856974542141, 0.06697448343038559, 0.002406961051747203, 0.0559622198343277, -0.010658790357410908, -0.007727406453341246, -0.030980275943875313, 0.029986513778567314, -0.03604673594236374, 0.02343667857348919, -0.004329255782067776, 0.02054455876350403, -0.018180979415774345, -0.018702104687690735, -0.017830394208431244, 0.009203201159834862, 0.013036785647273064, 0.0437949113547802, -0.029789181426167488, 0.004870950244367123, -0.01708264648914337, 0.05616961419582367, -0.02713537961244583, 0.06360706686973572, -0.02787019871175289, -0.02446872554719448, -0.025387989357113838, -0.05542647838592529, 0.022139091044664383, -0.010944811627268791, -0.0018716849153861403, -0.01235490757972002, 0.015915757045149803, 0.029086166992783546, 0.02635153941810131, -0.015705091878771782, 0.04674391448497772, 0.0198315791785717, -0.014029157347977161, -0.007290591020137072, 0.015415080823004246, 0.0745655968785286, -0.003361893817782402, -0.021609045565128326, 0.0222032368183136, -0.024742966517806053, -0.05141741409897804, -0.013667218387126923, 0.03389449790120125, 0.036022111773490906, -0.056313592940568924, -0.001851070555858314, 0.022112060338258743, 0.011085175909101963, -0.03907020390033722, 0.006239722017198801, 0.009347247891128063, -0.04506587237119675, -0.046808384358882904, 0.052707742899656296, -0.018034018576145172, 0.028822816908359528, 0.010956049896776676, -0.028266169130802155, 0.013426929712295532, 0.07253995537757874, -0.06444641947746277, -0.012793490663170815, 0.05120702460408211, -0.005693967919796705, -0.03134968876838684, -0.020825212821364403, -0.0025157516356557608, -0.03262562304735184, -0.04768119007349014, 0.019941776990890503, -0.01483081839978695, -0.005359169561415911, 0.009031140245497227, 0.01004994846880436, 0.040695641189813614, 0.03473484143614769, -0.0003209043061360717, 0.045585714280605316, 0.006729308515787125, 0.034097034484148026, -0.017160538583993912, -0.003236612072214484, -0.005318840499967337, 0.008938459679484367, 0.016733724623918533, 0.0424731969833374, 0.020880363881587982, 0.0033581473398953676, 0.010840574279427528, 0.06897636502981186, 0.013447652570903301, 0.013172907754778862, 0.0022610791493207216, 0.01425801683217287, 0.034388359636068344, 0.006743817590177059, -0.01627466082572937, 0.009077592752873898, -0.007988477125763893, 0.010418391786515713, 0.0021724672988057137, 0.0337240993976593, 0.020947404205799103, 0.05602193996310234, 0.0392288863658905, 0.022243082523345947, -0.025443261489272118, 0.003783778753131628, 0.03677477315068245, 0.03278234228491783, -0.02480969950556755, -0.005035053938627243, 0.009524050168693066, 0.025774599984288216, -0.020473690703511238, -0.009509650990366936, 0.014498846605420113, 0.005710673984140158, 0.01148863323032856, -0.010361230000853539, -0.004777846392244101, -0.06195202097296715, -0.015514652244746685, -0.04801446571946144, -0.05606052279472351, -0.015512661077082157, -0.040041979402303696, 0.0067407856695353985, 0.041802212595939636, -0.03705578297376633, 0.036095134913921356, 0.008203905075788498, 0.001682356814853847, -0.012637300416827202, -0.0022594917099922895, 0.027966171503067017, 0.009724744595587254, 0.0268555898219347, -0.03408706933259964, 0.0353296622633934, 0.007264443673193455, 0.033189110457897186, -0.04923386499285698, -0.009138653986155987, 0.020469266921281815, -0.03592296689748764, 0.019227057695388794, -0.03911980241537094, 0.007361692376434803, -0.0035843737423419952, -0.016259001567959785, -0.059509895741939545, -0.028963854536414146, -0.012013424187898636, -0.027333945035934448, 0.009242301806807518, -0.05794484540820122, 0.019004428759217262, 0.012165085412561893, -0.027429163455963135, 0.05786360800266266, 0.03414817526936531, -0.026824070140719414, 0.048352599143981934, 0.03529057279229164, 0.01864735037088394, -0.059378962963819504, 0.05990052595734596, 0.027665676549077034, 0.02622806839644909, -0.02017453871667385, -0.03691388666629791, -0.04971251264214516, 0.004138100892305374, 0.011957948096096516, -0.021114828065037727, -0.011088439263403416, 0.04404039680957794, 0.02919710986316204, -0.07052922993898392, 0.019770672544836998, -0.04137028753757477, -0.021965807303786278, -0.038176991045475006, -0.03605832904577255, 0.01978382281959057, 0.02410941943526268, 0.020055975764989853, 0.028804458677768707, 0.0095177898183465, 0.003444007597863674, 0.007913686335086823, 0.05422721058130264, -0.011516885831952095, 0.010869855992496014, 0.04478421062231064, -0.005857592448592186, 0.0003376568201929331, -0.001243678038008511, -0.014474225230515003, -0.023082185536623, 0.02405896596610546, 0.012946744449436665, 0.01641114242374897, 0.03989735245704651, 0.010693018324673176, -0.0029284250922501087, 0.07225208729505539, -0.0527370385825634, -0.004259936511516571, 0.0030404243152588606, 0.023029528558254242, 0.04893011227250099, 0.02232893742620945, 0.020833663642406464, -0.02755754254758358, -0.04210035502910614, -0.06812675297260284, 0.034646615386009216, 0.035172924399375916, 0.051280003041028976, -0.06701602041721344, 0.07963041961193085, 0.0013572039315477014, -0.05581646412611008, 0.033425722271203995, -0.07255534827709198, 0.00084455352043733, 0.06642112880945206, 0.008535743691027164, 0.03961237519979477, -0.02410699799656868, 0.032233528792858124, -0.031317971646785736, -0.007586716208606958, 0.04670293629169464, -0.013250814750790596, 0.06129943206906319, -0.02266097068786621, -0.010617949068546295, -0.01671784371137619, -0.004135726485401392, -0.014537852257490158, -0.04698266461491585, 0.03945641964673996, -0.008607764728367329, -0.023182297125458717, -0.05007946118712425, 0.02348184399306774, 0.03752638027071953, 0.05588969215750694, -0.01063203252851963, -0.01009992603212595, 0.0004942008526995778, 0.05896646901965141, 0.0262726079672575, -0.01401201356202364, 0.028279921039938927, -0.024270348250865936, 0.04945351555943489, 0.026337996125221252, -0.010864251293241978, -0.02502412162721157, -0.0024573812261223793, -0.033789392560720444, 0.04608688876032829, 0.027615103870630264, -0.027964206412434578, -0.0701446384191513, 0.0167564507573843, -0.02741985395550728, 0.025359690189361572, -0.03882141411304474, -0.04348977282643318, -0.02550625428557396, 0.0320938415825367, 0.027238192036747932, -0.03284816816449165, 0.00972317811101675, -0.034091025590896606, 0.04791433364152908, 0.03022719733417034, 0.001529041095636785, -0.03278949856758118, -0.023878268897533417, -0.044913459569215775, -0.024784959852695465, 0.021049626171588898, 0.05843249708414078, -0.0023403214290738106, 0.016680195927619934, -0.04096630588173866, 0.024050133302807808, 0.027398495003581047, 0.03345700725913048, 0.005214398261159658, -0.023920930922031403, 0.021407073363661766, -0.004312863573431969, 0.061930716037750244, -0.005002771504223347, -0.0016377775464206934, -0.0031868121586740017, -0.04302021488547325, -0.006306621711701155, 0.009573505260050297, -0.010242091491818428, -0.007886837236583233, 0.004240895621478558, 0.0010054855374619365, 0.05754416063427925, -0.016072917729616165, -0.009586078114807606, 0.003928102552890778, 0.01658596657216549, -0.024788834154605865, -0.02126256190240383, 0.04240012168884277, 0.012364234775304794, -0.021458836272358894, 0.04951747879385948, 0.04409940540790558, -0.018312223255634308, 0.006042113993316889, 0.030760567635297775, -0.05050492286682129, 0.03198900818824768, -0.04571966454386711, 0.00996438693255186, -0.02263960801064968, -0.021043067798018456, 0.031131206080317497, -0.04740775749087334, 0.036105405539274216, -0.0021349373273551464, -0.03345649316906929, -0.04915130138397217, -0.05037623271346092, -0.005196503363549709, 0.03117533028125763, -0.02332438714802265, -0.02105637826025486, -0.0008174347458407283, -0.019834371283650398, -0.01298542320728302, -0.04043302685022354, -0.0010320610599592328, -0.00022125322720967233, -0.0032790927216410637, 0.007611221168190241, 0.004087839275598526, 0.026483507826924324, 0.031045136973261833, -0.00027862441493198276, -0.038677722215652466, -0.009317832998931408, 0.008948343805968761, -0.02632005140185356, -0.04789440333843231, -0.004472778644412756, 0.00020689316443167627, -0.030540747568011284, -0.03280289098620415, 0.01767558418214321, -0.013519559055566788, 0.0008073822245933115, 0.021653033792972565, 0.023114928975701332, 0.014814384281635284, 0.009335838258266449, -0.03043276071548462, 0.025166887789964676, 0.015010915696620941, -0.05063912272453308, -0.018220970407128334, 0.04223538562655449, -0.019644498825073242, 0.04182405397295952, 0.01271906029433012, -0.036039043217897415, -0.024046853184700012, -0.0512305349111557, 0.000854457903187722, -0.02249925769865513, -0.03641672432422638, -0.04528084769845009, -0.010011332109570503, -0.012131886556744576, 0.02396235428750515, 0.02184540592133999, -0.0018966796342283487, 0.010459063574671745, -0.03862806409597397, 0.009866592474281788, -0.034903641790151596, -0.01698385551571846, -0.01668805629014969, -0.009813444688916206, -0.024308135733008385, 0.0549231581389904, 0.042724624276161194, 0.018170852214097977, 0.01620621234178543, -0.01822018250823021, 0.031143711879849434, -0.008421799167990685, -0.05104290693998337, -0.014421057887375355, -0.0015408628387376666, -0.010497450828552246, 0.001436659600585699, -0.004832727834582329, -0.045776981860399246, 0.05253279209136963, -0.04584812745451927, 0.006004083901643753, -0.025778843089938164, -0.013797021470963955, -0.01882363297045231, -0.023742686957120895, -0.009692138992249966, -0.01849324069917202, -0.006994482595473528, -0.033338647335767746, 0.049081798642873764, 0.006286170799285173, -0.02371915616095066, -0.0425858236849308, -0.033547911792993546, -0.03307008743286133, -0.027141107246279716, 0.004190178122371435, -0.023504754528403282, 0.004374855197966099, -0.04992018640041351, 0.008537638001143932, 0.057909365743398666, -0.0015791141195222735, 0.05177360773086548, 0.08568917959928513, -0.01402636431157589, 0.02306954935193062, -0.013867727480828762, 0.01778058521449566, 0.03550706058740616, -0.031421173363924026, 0.013892438262701035, 0.029968583956360817, -0.020695628598332405, -0.012057576328516006, -0.01962280459702015, -0.04462173581123352, -0.04168317839503288, -0.021446704864501953, 0.07113863527774811, -0.036674126982688904, 0.052312131971120834, -0.03719369322061539, -0.0512177050113678, -0.044715747237205505, 0.06692565977573395, 0.013449822552502155, 0.021940018981695175, 0.0522749237716198, -0.006371550261974335, 0.0008284189971163869, 0.020553937181830406, -0.007137632928788662, 0.016080142930150032, -0.060473550111055374, 0.07934913039207458, 0.005292248446494341, -0.04691042751073837, 0.023056097328662872, 0.045183271169662476, -0.046951163560152054, -0.055401600897312164, -0.017909172922372818, -0.0027857671957463026, 0.0073797195218503475, -0.008394815027713776, 0.024202466011047363, -0.025229455903172493, 0.003647505072876811, 0.02885138988494873, 0.001962102483958006, -0.008001282811164856, 0.023648489266633987, 0.007564941421151161, 0.03486024960875511, -0.04366541653871536, 0.022244127467274666, 0.06130625307559967, -0.009439792484045029, -0.005474265199154615, -0.036404918879270554, -0.021934881806373596, -0.008974243886768818, 0.005404930096119642, 0.052885059267282486, -0.003842958016321063, -0.0048886071890592575, 0.036866605281829834, -0.020368874073028564, 0.045605484396219254, 0.01203150674700737, -0.009761601686477661, 0.022884851321578026, -0.036485154181718826, -0.04886223375797272, -0.041132938116788864, 0.029088567942380905, 0.0024033787194639444, 0.010708235204219818, -0.0341574065387249, 0.024926181882619858, 0.034499391913414, -0.0008497768430970609, -0.04457022249698639, -0.043324124068021774, -0.04053710028529167, -0.04348228871822357, -0.051683083176612854, -0.04972830414772034, -0.017997225746512413, 0.005344349425286055, -0.011903049424290657, -0.02155306003987789, -0.004253641236573458, -0.0033463977742940187, 0.02210697904229164, -0.015967203304171562, 0.019775506108999252, -0.03546375036239624, 0.02342837303876877, -0.0765705406665802, -0.05638585239648819, -0.04762506112456322, -0.00005525605956790969, -0.03459452465176582, -0.003421909874305129, 0.0076866974122822285, 0.02157670445740223, -0.02321883663535118, 0.016647955402731895, 0.018307805061340332, 0.0282195582985878, 0.0018731409218162298, -0.01866631954908371, 0.034892380237579346, 0.02851133607327938, -0.018104515969753265, 0.028596488758921623, 0.03146522864699364, -0.031431399285793304, 0.01785185933113098, 0.012765957973897457, -0.024459175765514374, -0.02787570282816887, 0.012382874265313148, 0.03377137333154678, -0.009146586060523987, -0.0187158714979887, -0.023411210626363754, -0.00958616565912962, -0.04777035862207413, -0.019906479865312576, 0.016957983374595642, 0.03368500992655754, 0.007323174271732569, -0.03086855821311474, 0.009104915894567966, 0.059580978006124496, -0.021570470184087753, 0.046948790550231934, -0.001086656702682376, 0.023347122594714165, 0.04136635363101959, -0.020916933193802834, 0.05781540647149086, 0.019751593470573425, 0.03827166184782982, -0.00029324652859941125, -0.022682074457406998, 0.008724388666450977, -0.009466375224292278, 0.04913882911205292, -0.012409687042236328, -0.01625075563788414, -0.040662460029125214, 0.018267299979925156, -0.0064808521419763565, 0.04810621589422226, -0.014847633428871632, -0.0006966053624637425, 0.02478574775159359, -0.013830193318426609, -0.011778118088841438, 0.03163706883788109, -0.0467708520591259, -0.03340182080864906, 0.04751306027173996, -0.019572975113987923, -0.006119652185589075, -0.03880536928772926, -0.03540261089801788, -0.01663256250321865, -0.018154354766011238, 0.015091517940163612, -0.02265598624944687, 0.026155071333050728, -0.00851017888635397, 0.016166044399142265, -0.023287249729037285, 0.026820411905646324, 0.026788631454110146, 0.04158075153827667, -0.03868157044053078, -0.05766216292977333, 0.050223011523485184, -0.0009899402502924204, 0.03043925203382969, -0.02868049032986164, 0.0020718579180538654, 0.009098176844418049, -0.02012978307902813, 0.013435177505016327, 0.012137530371546745, 0.02497212588787079, -0.021784672513604164, 0.005161576438695192, -0.020701467990875244, 0.0008598956046625972, -0.023931223899126053, 0.055080194026231766, 0.0021889337804168463, -0.013811953365802765, -0.011838257312774658, 0.03788069263100624, 0.04878130555152893, -0.0019025254296138883, 0.052092526108026505, 0.007651700172573328, 0.03814300522208214, -0.00094172841636464, 0.006558210588991642, -0.006651050876826048, 0.07109830528497696, 0.039433445781469345, 0.03604048117995262, 0.0034978126641362906, 0.007399646565318108, 0.028130142018198967, -0.011756744235754013, -0.01727091521024704, 0.0291144922375679, 0.005187462083995342, -0.026139438152313232, -0.00017410483269486576, 0.03386319428682327, -0.016284000128507614, 0.020330581814050674, -0.016174165531992912, -0.020631255581974983, -0.04547061398625374, -0.009233164601027966, -0.038416385650634766, -0.0009767765877768397, 0.07339733839035034, -0.02863907627761364, -0.020080702379345894, -0.00023224383767228574, -0.030456261709332466, -0.005190637428313494, 0.06426694244146347, -0.030125897377729416, 0.01577034778892994, 0.005996281281113625, 0.03037249483168125, 0.0036140973679721355, 0.036852285265922546, 0.018281104043126106, 0.025763003155589104, -0.03629608452320099, -0.018589820712804794, 0.02649690955877304, 0.006532564293593168, -0.04264365881681442, -0.016464464366436005, -0.02284160815179348, 0.047314416617155075, -0.006161127705127001, -0.0021547027863562107, 0.04728037118911743, -0.03618030995130539, -0.013877644203603268, -0.01935971900820732, 0.023410076275467873, -0.031567223370075226, -0.009273535571992397, 0.037963300943374634, -0.017437778413295746, -0.02322838455438614, 0.015810923650860786, -0.008196708746254444, 0.02312791347503662, -0.026429494842886925, 0.07048861682415009, -0.02395321987569332, 0.03380974009633064, 0.02705625630915165, -0.04387196898460388, -0.00038103299448266625, 0.03478172421455383, 0.00037389606586657465, -0.04576500877737999, -0.021301360800862312, -0.053801726549863815, -0.01519759651273489, -0.008355939760804176, -0.029682550579309464, 0.001579968840815127, 0.024560146033763885, -0.014217061921954155, -0.034571681171655655, -0.018509531393647194, 0.035407256335020065, -0.0489320270717144, -0.0006810291088186204, 0.010872826911509037, -0.006250426173210144, -0.02735140360891819, 0.0003714142949320376, -0.03214691951870918, -0.00380871444940567, -0.0029142540879547596, -0.062042612582445145, 0.028151847422122955, -0.026893874630331993, -0.031890787184238434, -0.0548497699201107, -0.03810298442840576, -0.02032649517059326, 0.038013722747564316, -0.033623211085796356, -0.03275265172123909, 0.04630160704255104, 0.04217307269573212, 0.01692870818078518, 0.010397144593298435, -0.014279453083872795, 0.011750484816730022, 0.014412975870072842, 0.06293950229883194, 0.024913351982831955, 0.0667249783873558, 0.027257878333330154, -0.0032143888529390097, 0.029823312535881996, -0.026564575731754303, 0.041925620287656784, -0.005562994629144669, -0.018407149240374565, -0.01920398510992527, 0.009108037687838078, -0.01970183663070202, -0.053098615258932114, -0.003589015221223235, 0.05204620584845543, -0.031056353822350502, -0.02843720279633999, -0.07684454321861267, -0.03130514547228813, -0.05351465940475464, -0.022813957184553146, -0.08178210258483887, 0.02780129201710224, 0.002192164771258831, -0.013960778713226318, -0.002011811127886176, -0.07899531722068787, 0.1780957579612732, 0.05698160082101822, 0.02600698545575142, 0.007766444701701403, 0.02899763360619545, 0.034256577491760254, 0.021647688001394272, 0.012250103987753391, 0.007736163679510355, -0.05860355868935585, 0.04631422087550163, -0.02208978869020939, 0.029878145083785057, 0.025349682196974754, 0.044988613575696945, 0.03698235750198364, -0.040993764996528625, -0.008141076192259789, 0.015111956745386124, -0.04642864689230919, -0.08535540848970413, 0.007312207017093897, 0.0023074019700288773, 0.027564750984311104, 0.007029311265796423, 0.04069502279162407, -0.008995807729661465, -0.05409994721412659, -0.005559966433793306, -0.023100102320313454, 0.041198354214429855, -0.04235536605119705, 0.04265863820910454, 0.007032628636807203, -0.04604952782392502, 0.018751518800854683, -0.003018077230080962, -0.02997405268251896, -0.01329108513891697, 0.024139514192938805, -0.020618515089154243, -0.028960758820176125, 0.03319263830780983, -0.04694234952330589, 0.02138231322169304, 0.02788246050477028, -0.03055660054087639, 0.017585203051567078, 0.0033297925256192684, -0.0435466468334198, 0.04187610000371933, -0.03790762275457382, 0.005958755500614643, -0.02746099978685379, -0.01688568852841854, 0.01054946705698967, 0.04169115051627159, -0.015572624281048775, -0.02805742807686329, 0.008434454910457134, 0.010530272498726845, 0.023161830380558968, -0.04798845201730728, 0.00933854840695858, -0.062324535101652145, -0.0026501608081161976, 0.01625455915927887, 0.03744004666805267, 0.012320692650973797, -0.03671852871775627, -0.0101722227409482, -0.025343703106045723, 0.04020492359995842, -0.01576090417802334, 0.03865506872534752, 0.03650495409965515, -0.03661461919546127, 0.026812147349119186, -0.0000811539139249362, -0.03273536637425423, -0.004345309920608997, -0.00571527611464262, -0.02256477065384388, -0.02370060235261917, 0.030155165120959282, 0.05710023641586304, -0.04132843017578125, -0.030115075409412384, -0.03201946243643761, 0.07242424786090851, 0.05250781401991844, 0.028432216495275497, -0.004314331337809563, -0.010645159520208836, -0.011582070961594582 ]
Strencom inks โ‚ฌ300,000 deal with Irish animator Brown Bag Films News > Strencom inks โ‚ฌ300,000 deal with Irish animator Brown Bag Films Featured Article 24 Oct 2014 Data networks provider Strencom has inked a three-year contract with Irish animation company Brown Bag Films valued at โ‚ฌ300,000. The company has already implemented a combined Unified Communications as a Service (UCaaS) and has managed connectivity solution to Brown Bag Films, who produces children's animation series such as Henry Hugglemonster, Peter Rabbit, Octonauts and Doc McStuffins. Strencom's UCaaS solution offers Brown Bag Films a virtual collaboration space, connecting its Dublin-based offices with its partners around the world. The technology allows Brown Bag Films to switch between audio and video conferencing, instant messaging, and desktop and application sharing, to facilitate global animation production. "When we implemented Strencom we immediately began to see creative and productivity gains that we hadn't initially planned," said Cathal Gaffney, CEO of Brown Bag Films in a statement. "It has immensely improved internal communications helping to facilitate our scaling in Ireland and internationally." Tim Murphy, CEO, Strencom added: "Brown Bag Films is one of the world's most original and creative animation studios. It has a tradition of leveraging advanced technologies to produce great films and TV shows. We are delighted that our integrated UCaaS and managed connectivity platform is helping them with collaboration among colleagues, customers and partners worldwide." Dean Van Nguyen This article was originally published on www.siliconrepublic.com and can be found at: http://www.siliconrepublic.com/business/item/38957-strencom-inks-300-000-deal/ (Photo Caption) Tim Murphy, CEO of Strencom, and Cathal Gaffney, CEO of Brown Bag Films Optibelt Urethane Belting โ€“ The Letterkenny site really going places NCAD and Tympany Medical consortium awarded โ‚ฌ3.2m grant Six Ireland-based researchers bag โ‚ฌ12m in European funding Dรกire Keogh confirmed as next DCU president
[ -0.019442370161414146, -0.017149878665804863, -0.01547643356025219, -0.004888318944722414, 0.007880772463977337, 0.011195681057870388, -0.04155884310603142, 0.007113727740943432, 0.006296083331108093, 0.0167376846075058, 0.035237379372119904, 0.013805567286908627, 0.008691836148500443, -0.03339826315641403, -0.008083008229732513, -0.006611163262277842, -0.006082839332520962, -0.012059696018695831, 0.009855574928224087, -0.030087189748883247, 0.019311973825097084, 0.03100249543786049, -0.04523422196507454, -0.021981123834848404, 0.0006670959992334247, 0.052483730018138885, 0.03993406146764755, -0.0036151399835944176, 0.09831740707159042, 0.03793159872293472, -0.015496236272156239, -0.037570081651210785, 0.01149604469537735, -0.05751083046197891, -0.01543955598026514, -0.04016231745481491, 0.02177540399134159, -0.022865960374474525, -0.011602941900491714, -0.0414467379450798, 0.007122672162950039, -0.029293864965438843, 0.04518274962902069, -0.06217608600854874, -0.03685374930500984, -0.013553428463637829, 0.0035047712735831738, -0.008651859126985073, 0.015963198617100716, -0.004651255905628204, -0.008786804042756557, -0.008874192833900452, 0.020386554300785065, 0.004389949608594179, 0.01225924864411354, 0.012367765419185162, -0.024138644337654114, -0.005249985959380865, -0.05068593472242355, 0.04213237017393112, 0.03428078442811966, 0.0073530543595552444, 0.03549788519740105, -0.060121819376945496, 0.04369015619158745, 0.021453481167554855, 0.009331156499683857, -0.01593048870563507, 0.002550097880885005, 0.00847551692277193, 0.013929280452430248, 0.026345036923885345, -0.02349785342812538, -0.03277065232396126, 0.007885451428592205, 0.0014187443302944303, -0.017231382429599762, 0.007922236807644367, -0.011625413782894611, -0.0073853908106684685, 0.03368375077843666, 0.046726044267416, 0.0020724155474454165, 0.0037378016859292984, -0.058347202837467194, -0.0024286748375743628, 0.005473489407449961, -0.011108087375760078, 0.005277744494378567, 0.006095029879361391, 0.009829767979681492, 0.03941063955426216, -0.00632752850651741, -0.01884787529706955, 0.027969378978013992, 0.047294631600379944, -0.05522588640451431, 0.03587906435132027, -0.011395566165447235, 0.006102885585278273, 0.015949316322803497, 0.03609804809093475, -0.022263890132308006, 0.04490923881530762, -0.019592924043536186, -0.004412926733493805, 0.00887821614742279, -0.0230850912630558, -0.038817375898361206, -0.01875683292746544, -0.017093032598495483, -0.021493487060070038, 0.027304543182253838, -0.03190707787871361, 0.009298770688474178, 0.03551406040787697, -0.019670290872454643, 0.03915345296263695, -0.026988914236426353, 0.022570116445422173, -0.0022441118489950895, 0.01652790978550911, 0.05249747633934021, -0.023745249956846237, 0.018026020377874374, -0.04923787713050842, 0.013684391044080257, 0.0321677140891552, -0.02098395861685276, 0.018582653254270554, 0.01368201058357954, -0.06489145755767822, -0.05098439007997513, 0.006285894196480513, 0.01674046739935875, 0.023831753060221672, 0.007889867760241032, 0.06235234811902046, 0.03780323266983032, -0.038211390376091, 0.026271821931004524, 0.018806729465723038, -0.007170472294092178, 0.11294044554233551, -0.0023425838444381952, 0.03341978043317795, -0.03345244750380516, -0.046837933361530304, -0.036418166011571884, -0.0011537309037521482, -0.011375422589480877, 0.02348407730460167, -0.0033462392166256905, 0.03310428932309151, -0.008871424943208694, -0.024233657866716385, -0.030901240184903145, 0.028477992862462997, 0.04146602377295494, 0.029182886704802513, 0.0021763138938695192, 0.0368979312479496, 0.001721596228890121, 0.04098710045218468, -0.014681779779493809, 0.028661763295531273, -0.02783401869237423, -0.02319527417421341, -0.015362152829766273, -0.010865920223295689, 0.018052678555250168, 0.015583327040076256, -0.009739239700138569, 0.032811909914016724, 0.005804541055113077, 0.04188961908221245, 0.08981482684612274, -0.02291538193821907, 0.030395280569791794, 0.02982720546424389, -0.029101353138685226, -0.013667269609868526, -0.01091384794563055, 0.06770637631416321, 0.01619766093790531, 0.022377632558345795, 0.016934487968683243, -0.015277471393346786, -0.012923680245876312, -0.019556475803256035, -0.0020188787020742893, 0.020884878933429718, -0.042495246976614, 0.027140367776155472, -0.010341038927435875, -0.0020230624359101057, -0.010812361724674702, -0.04999025538563728, 0.009315960109233856, -0.03235626220703125, -0.029432769864797592, 0.03466128930449486, -0.01945618726313114, 0.015444113872945309, -0.0004253421211615205, -0.026473555713891983, 0.012414603494107723, 0.05672680214047432, -0.036289721727371216, -0.01510126143693924, 0.03275642544031143, -0.021260716021060944, 0.0013720669085159898, 0.004442615434527397, 0.0065372115932404995, 0.011088607832789421, -0.01936015486717224, 0.04563707485795021, -0.0019561494700610638, -0.01954244077205658, -0.00342046981677413, 0.04150776565074921, 0.022827278822660446, 0.03627792000770569, -0.028226768597960472, 0.010385023429989815, 0.017180602997541428, 0.04444316774606705, -0.012791294604539871, -0.00846615806221962, -0.017498314380645752, 0.07456754893064499, 0.01094179879873991, 0.05379045009613037, 0.03648841008543968, 0.010618427768349648, 0.033679962158203125, 0.024125833064317703, 0.0015447359764948487, 0.03178226202726364, 0.0009720019297674298, -0.004347650799900293, 0.008850906044244766, 0.011572087183594704, 0.018597396090626717, 0.002084561623632908, -0.02531702257692814, -0.008162538520991802, -0.005549775902181864, 0.04137008264660835, -0.026476120576262474, 0.037445008754730225, 0.02583998814225197, 0.03393779695034027, -0.006301101762801409, 0.013107641600072384, 0.02150978520512581, 0.07765376567840576, -0.001560691394843161, -0.00427604466676712, -0.022979678586125374, 0.012823875062167645, -0.00005654140841215849, 0.01636090688407421, 0.046587079763412476, 0.0025190303567796946, -0.026500122621655464, 0.014975009486079216, -0.02293800748884678, -0.026293667033314705, -0.05065496638417244, -0.06907505542039871, -0.04193805158138275, -0.045994602143764496, -0.05813048779964447, -0.019990691915154457, 0.02497503161430359, -0.04781391844153404, 0.03254697844386101, 0.0032646364998072386, 0.024354400113224983, -0.000057844663388095796, -0.03569056838750839, 0.03107764571905136, 0.03609156236052513, 0.029986249282956123, -0.05468291416764259, 0.023717587813735008, -0.013384148478507996, 0.05672784149646759, -0.0012967733200639486, 0.01296828594058752, -0.035884637385606766, -0.016291214153170586, 0.04611137509346008, 0.0035986085422337055, -0.00215115025639534, -0.009289367124438286, -0.04963695630431175, -0.027015896514058113, 0.006585154682397842, 0.005596732720732689, 0.017401067540049553, 0.014124246314167976, -0.01679903268814087, 0.04125633090734482, 0.026568954810500145, -0.03659733012318611, 0.06933038681745529, 0.03382771089673042, -0.04163921996951103, 0.045728277415037155, 0.022818198427557945, 0.009686446748673916, -0.06188139691948891, 0.04873364791274071, 0.028658907860517502, 0.020476045086979866, -0.02853764034807682, 0.005881867837160826, -0.05386950820684433, 0.007273300550878048, -0.0001501257938798517, 0.014145443215966225, -0.014613534323871136, 0.03731982409954071, 0.04018240049481392, -0.057800114154815674, 0.021264435723423958, -0.045825518667697906, -0.005762131884694099, -0.023277610540390015, -0.0215481948107481, 0.0017739338800311089, 0.01123077142983675, 0.02125396952033043, -0.019239384680986404, -0.022862615063786507, 0.01141321286559105, 0.015162541531026363, 0.03832230344414711, -0.0063866968266665936, 0.0010665042791515589, 0.031192360445857048, 0.005135681480169296, 0.04596804454922676, 0.03754769638180733, -0.030512018129229546, 0.004348947200924158, 0.005412951577454805, -0.006029738113284111, 0.011522977612912655, 0.02245551347732544, 0.015538259409368038, 0.05089164152741432, 0.028443900868296623, -0.03015117347240448, 0.01833702065050602, 0.004456124734133482, 0.03441568464040756, 0.04055953398346901, 0.001632570754736662, 0.026589777320623398, -0.029883230105042458, -0.03281954303383827, -0.05271996930241585, 0.031137187033891678, 0.0021278189960867167, 0.048344824463129044, -0.07307720184326172, 0.030226891860365868, -0.0011598001001402736, -0.03755195811390877, 0.030059393495321274, -0.05444307252764702, -0.011738904751837254, 0.03466673567891121, -0.023323101922869682, 0.036686357110738754, -0.060893721878528595, 0.028712831437587738, 0.02151675522327423, -0.01997089385986328, 0.01792597398161888, 0.004781445022672415, 0.0355859138071537, -0.04241426661610603, 0.00421352032572031, -0.030301876366138458, -0.02838236279785633, 0.005914709996432066, -0.05567439645528793, -0.021226022392511368, -0.028322117403149605, -0.012896179221570492, -0.0606711246073246, 0.017881782725453377, 0.025176620110869408, 0.05471738055348396, -0.03379585221409798, 0.03133079409599304, -0.019441019743680954, 0.01696416549384594, 0.040488019585609436, -0.010719383135437965, 0.0230809785425663, -0.02494504675269127, 0.02439681813120842, 0.011585116386413574, -0.018841853365302086, -0.03901357203722, -0.010819920338690281, -0.04706096649169922, 0.02965567447245121, -0.013033532537519932, -0.026280365884304047, -0.03400225564837456, -0.007950284518301487, 0.006333604454994202, 0.013554729521274567, -0.008281202986836433, -0.014530941843986511, -0.014301164075732231, 0.031025459989905357, 0.013921798206865788, -0.05677168443799019, -0.02222014218568802, -0.022942619398236275, 0.03284936398267746, 0.0341462716460228, -0.013937783427536488, -0.022228913381695747, -0.02064867690205574, -0.03438183665275574, -0.025474604219198227, -0.012637125328183174, 0.0014988225884735584, -0.011898997239768505, -0.006803242489695549, -0.033179085701704025, 0.028774723410606384, 0.027222152799367905, 0.010657726787030697, 0.005835363641381264, 0.013928120024502277, 0.020173417404294014, 0.0293200071901083, 0.03960045799612999, -0.0018325555138289928, -0.04071025922894478, 0.019623439759016037, -0.050400540232658386, 0.030500851571559906, -0.02425059676170349, -0.034300703555345535, -0.008261462673544884, 0.005863596685230732, 0.010098003782331944, 0.06648159772157669, -0.02135254070162773, -0.011464284732937813, 0.005156242288649082, 0.04836442321538925, -0.06402488052845001, -0.05281965062022209, 0.044045738875865936, 0.0078258216381073, -0.0173402838408947, 0.021960308775305748, 0.0317402184009552, -0.027361109852790833, 0.00031836939160712063, 0.02417008765041828, -0.0448458194732666, 0.028373466804623604, -0.051802586764097214, 0.01655779778957367, -0.01145715732127428, -0.03622714430093765, 0.005382965784519911, -0.005358503665775061, 0.03005531057715416, -0.01109759695827961, -0.020812099799513817, -0.01927196979522705, -0.03975411877036095, 0.004271249286830425, -0.011170713230967522, -0.03539014235138893, 0.017223622649908066, 0.008692098781466484, -0.025440795347094536, -0.03146893158555031, -0.016614213585853577, -0.013777916319668293, 0.03261544555425644, -0.02377999760210514, 0.007926424965262413, -0.005158999469131231, -0.0002767286205198616, 0.019719135016202927, -0.032634567469358444, -0.04779708385467529, 0.014044343493878841, -0.024145208299160004, -0.007392654195427895, -0.061704035848379135, 0.014383334666490555, -0.027154186740517616, -0.022326143458485603, -0.02238178625702858, 0.017386574298143387, -0.014760278165340424, 0.0020274114795029163, 0.02409379743039608, -0.015060344710946083, 0.007869411259889603, 0.023360099643468857, -0.032696086913347244, 0.07263966649770737, -0.011255585588514805, -0.046111445873975754, -0.04567769914865494, 0.06094031408429146, -0.018818547949194908, 0.02782076969742775, -0.004251217003911734, -0.015965387225151062, -0.05121201276779175, -0.027957424521446228, 0.004891157615929842, -0.05351558327674866, -0.0006495471461676061, -0.04782687500119209, -0.024884594604372978, -0.0049115391448140144, 0.04784044623374939, -0.007318810094147921, -0.015913916751742363, 0.009414702653884888, -0.03512335196137428, 0.017520057037472725, -0.05102338269352913, -0.05458013340830803, -0.035433217883110046, -0.018483605235815048, 0.002681843936443329, 0.04482746124267578, -0.006728364620357752, 0.03057064488530159, 0.008541444316506386, -0.001363175455480814, 0.032606206834316254, -0.01288975216448307, -0.06762534379959106, -0.05429217964410782, -0.013805936090648174, -0.008890481665730476, -0.0039344546385109425, 0.013318846002221107, -0.043825387954711914, 0.033271968364715576, -0.05186513811349869, 0.007534339092671871, -0.021598191931843758, -0.022238781675696373, -0.019444700330495834, -0.019204581156373024, 0.0580451563000679, -0.02451121062040329, 0.033097509294748306, 0.0026889268774539232, 0.060019657015800476, 0.0786844938993454, 0.02116026170551777, -0.03412714973092079, -0.02445567399263382, -0.04246469587087631, -0.03278743103146553, 0.049546025693416595, -0.054695095866918564, -0.019434837624430656, -0.018277686089277267, 0.011448935605585575, 0.03940913453698158, -0.003606399754062295, 0.04786215350031853, 0.02331709675490856, -0.007898513227701187, -0.014480218291282654, -0.00024314990150742233, 0.023417923599481583, 0.039439622312784195, -0.029242420569062233, 0.000383048813091591, -0.01582256704568863, -0.007102664560079575, 0.0010176872601732612, -0.05926874652504921, -0.05826498940587044, -0.06024537608027458, -0.008144612424075603, 0.05178358033299446, -0.05120859667658806, 0.031908489763736725, -0.039037685841321945, -0.05450087785720825, -0.06477686762809753, 0.040852904319763184, -0.026553867384791374, 0.0024650203995406628, 0.07069850713014603, 0.017794037237763405, -0.01453991699963808, 0.029341673478484154, -0.011934466660022736, -0.01066701952368021, -0.006939586717635393, 0.05532856658101082, -0.013446127064526081, -0.06319685280323029, 0.0072053358890116215, 0.055327314883470535, -0.055672839283943176, -0.04476913437247276, 0.00962026696652174, -0.013031194917857647, 0.007704475428909063, -0.01856934279203415, 0.034359078854322433, 0.013841045089066029, -0.00014020332309883088, 0.019616179168224335, 0.04201865568757057, -0.004030434414744377, 0.06643129885196686, 0.01790657453238964, 0.025621764361858368, -0.03179503604769707, 0.02047339268028736, 0.018385715782642365, -0.04104612395167351, -0.041012465953826904, -0.05353252962231636, -0.00413981219753623, -0.020172925665974617, 0.009442830458283424, 0.03378003463149071, -0.012665943242609501, 0.04964016377925873, 0.04505576565861702, 0.007209848612546921, 0.08292394876480103, 0.010183663107454777, -0.027364635840058327, 0.0289519764482975, -0.05422462150454521, -0.03369085118174553, -0.03533852472901344, 0.039054859429597855, 0.024427352473139763, 0.014279372058808804, -0.0459517240524292, -0.013459171168506145, 0.03870098292827606, 0.02952524833381176, 0.014033177867531776, -0.038413532078266144, -0.04658869281411171, -0.03824075311422348, -0.01819426193833351, -0.012019621208310127, -0.004237693268805742, -0.004445388447493315, 0.030382011085748672, 0.04072980210185051, -0.04132057726383209, 0.000015857460311963223, -0.008670110255479813, -0.02508002519607544, 0.014898968860507011, -0.031930454075336456, 0.01291565503925085, -0.061441026628017426, -0.05290594696998596, -0.008808743208646774, -0.006199211813509464, -0.03814014047384262, -0.03512100130319595, 0.004713469184935093, 0.013999011367559433, 0.0034468891099095345, -0.01358218863606453, 0.005342910531908274, 0.0004895991296507418, -0.018367422744631767, -0.0650462806224823, -0.03198428824543953, 0.0517706498503685, -0.0054674637503921986, 0.035110943019390106, 0.01344469003379345, -0.013514102436602116, 0.024318816140294075, -0.0037953699938952923, -0.02546658180654049, -0.03633308410644531, 0.02798616886138916, -0.005474329460412264, 0.04155632480978966, -0.02510794997215271, -0.016478173434734344, 0.012490502558648586, -0.013343644328415394, 0.024655068293213844, -0.0010080782230943441, -0.008365984074771404, 0.01829271763563156, -0.020375339314341545, -0.0004350377421360463, 0.05514461174607277, 0.001443933928385377, 0.059421394020318985, 0.013512298464775085, -0.014195500873029232, 0.015851380303502083, -0.018406633287668228, 0.03254275768995285, 0.011431023478507996, 0.014310515485703945, -0.06417209655046463, -0.0016121246153488755, 0.0373385027050972, -0.027452019974589348, 0.02107374556362629, -0.026707401499152184, -0.033697400242090225, -0.03002578392624855, -0.02967522293329239, 0.00019980002252850682, 0.019009938463568687, 0.00770941935479641, 0.013046260923147202, 0.02389541268348694, -0.036936886608600616, -0.013142461888492107, 0.0014009920414537191, -0.058188147842884064, -0.04683700576424599, 0.048967957496643066, 0.0057357605546712875, -0.007078052032738924, -0.02512546069920063, -0.035006728023290634, -0.0005201711319386959, -0.018362637609243393, 0.024029267951846123, -0.015343539416790009, 0.057250309735536575, -0.0157984159886837, 0.03236359357833862, -0.03424181789159775, -0.00758329825475812, 0.015555472113192081, 0.0534982904791832, -0.04582463204860687, -0.023491624742746353, 0.020747706294059753, 0.037377238273620605, 0.006873306818306446, -0.005002560559660196, -0.014967521652579308, 0.02074519172310829, 0.022463371977210045, 0.010491721332073212, -0.0029260669834911823, 0.06242401525378227, -0.005400081630796194, 0.04010734707117081, 0.01311424933373928, 0.013491147197782993, -0.017328836023807526, 0.051908090710639954, 0.022237414494156837, -0.0435609370470047, -0.0445207841694355, 0.03782736882567406, 0.040172431617975235, -0.04133855178952217, 0.018845289945602417, 0.01743931882083416, 0.05684276297688484, -0.023721547797322273, 0.0090675363317132, -0.01244214829057455, 0.04284970462322235, 0.02474825643002987, 0.026016931980848312, -0.020922690629959106, 0.008127517066895962, 0.05060718581080437, -0.011314480565488338, -0.023530863225460052, 0.028009237721562386, 0.01590576581656933, -0.055740561336278915, 0.002087207743898034, -0.020832080394029617, 0.03999349847435951, 0.01926231198012829, -0.033432915806770325, 0.002277086954563856, -0.011742227710783482, 0.0021766466088593006, -0.0018235439201816916, -0.008193328976631165, 0.03350246325135231, -0.015148025937378407, -0.024982109665870667, -0.012240821495652199, -0.02522392012178898, -0.0009934204863384366, 0.040711548179388046, 0.02055951952934265, -0.005216261837631464, 0.006401135586202145, 0.02818330191075802, -0.010585078969597816, 0.0292318407446146, 0.015170655213296413, 0.00094690325204283, -0.024182872846722603, -0.001210653455927968, 0.010748022235929966, 0.009932465851306915, 0.007281398866325617, 0.00942907202988863, -0.03845435753464699, 0.03547928109765053, -0.012343269772827625, -0.02750829979777336, 0.023743631318211555, -0.048573050647974014, -0.025391291826963425, -0.04655681923031807, 0.0577160120010376, -0.07244884222745895, -0.014493066817522049, 0.02756025455892086, -0.026298312470316887, -0.017987940460443497, 0.00987130869179964, -0.02838626131415367, 0.01613815873861313, 0.025025244802236557, 0.04751966893672943, -0.012633144855499268, 0.04976046457886696, 0.058723658323287964, -0.012617676518857479, -0.008223114535212517, 0.04972916468977928, -0.027058981359004974, -0.013623925857245922, -0.01851307414472103, -0.04214388132095337, -0.002021457999944687, -0.03127152472734451, -0.02587028406560421, -0.00993714202195406, 0.04025845229625702, -0.022255010902881622, -0.016562746837735176, 0.008808910846710205, 0.0363314114511013, -0.034055195748806, -0.026908405125141144, 0.022250663489103317, 0.0746554508805275, -0.005743405316025019, 0.0009973455453291535, -0.027890490368008614, -0.031143713742494583, -0.017149850726127625, -0.0500367246568203, 0.02881869114935398, -0.01767520047724247, -0.014871378429234028, -0.029608450829982758, -0.05041614547371864, -0.03979400917887688, -0.009669807739555836, -0.017769891768693924, -0.032869063317775726, 0.0583990216255188, 0.04505041614174843, 0.008565462194383144, 0.018386151641607285, -0.024518318474292755, -0.00672105560079217, 0.04070428013801575, 0.07188770174980164, -0.0017176910769194365, 0.033455099910497665, 0.03258480876684189, 0.013991067185997963, 0.02255251444876194, -0.04944763705134392, 0.023081233724951744, -0.0206748116761446, -0.02829880453646183, -0.00916657131165266, 0.024537429213523865, -0.0077767139300704, -0.06310679018497467, -0.01461516972631216, 0.02137618698179722, 0.007828961126506329, -0.019349681213498116, -0.06876350194215775, -0.008401011116802692, -0.07009498029947281, -0.00661852303892374, -0.033861517906188965, 0.02338765189051628, 0.017360126599669456, -0.013790007680654526, 0.007516889367252588, -0.026668814942240715, 0.16348561644554138, 0.049439091235399246, 0.038063593208789825, 0.019200704991817474, 0.045366305857896805, 0.044724300503730774, 0.03647371381521225, -0.027976714074611664, 0.011887619271874428, -0.03625761717557907, 0.004924330860376358, 0.009643789380788803, 0.034922387450933456, 0.007284391205757856, 0.032575998455286026, 0.05925007537007332, -0.04401972144842148, 0.004432304762303829, -0.013884574174880981, -0.026313884183764458, -0.06654880195856094, -0.0088315699249506, 0.006931906566023827, 0.00011965741578023881, -0.024694809690117836, 0.017515437677502632, 0.014400812797248363, -0.049203887581825256, -0.005593196954578161, -0.010970852337777615, 0.03140987828373909, -0.033227693289518356, 0.037705909460783005, -0.05983021482825279, -0.050354067236185074, 0.07301870733499527, 0.022638512775301933, -0.012759914621710777, 0.01735866442322731, 0.0011703248601406813, -0.031296879053115845, 0.011234244331717491, 0.053472403436899185, -0.07581900805234909, 0.051140137016773224, 0.02861846052110195, -0.023595048114657402, 0.012468534521758556, 0.018677031621336937, -0.03912396356463432, 0.05264243483543396, -0.021955639123916626, 0.030517030507326126, -0.03270582854747772, -0.04021037742495537, -0.0034783477894961834, 0.013811718672513962, -0.02948797307908535, 0.0025185521226376295, 0.016372384503483772, 0.03421531617641449, 0.01624581590294838, 0.005678622517734766, 0.009533883072435856, -0.05404547601938248, 0.007713004946708679, -0.035355936735868454, 0.05684370920062065, -0.013366449624300003, -0.00935787707567215, -0.03676271066069603, -0.0003218854544684291, -0.005707840900868177, -0.018866783007979393, 0.029523257166147232, 0.03352632001042366, -0.026169611141085625, 0.05100418999791145, 0.030552811920642853, -0.013255193829536438, -0.008777777664363384, -0.022276947274804115, 0.019467025995254517, 0.00031349537312053144, 0.023668626323342323, 0.05465750768780708, -0.05985082685947418, -0.033831387758255005, -0.011845238506793976, 0.020518101751804352, 0.0478515625, 0.025654954835772514, -0.0355113185942173, -0.023854544386267662, 0.00844400841742754 ]
Casella, E.Collin, A.Harris, D.Ferse, S. C. A.Bejarano, S.Parravicini, V.Hench, J. L.Rovere, A. We propose a novel technique to measure the small-scale three-dimensional features of a shallow-water coral reef using a small drone equipped with a consumer grade camera, a handheld GPS and structure from motion (SfM) algorithms. We used a GoPro HERO4 with a modified lens mounted on a DJI Phantom 2 drone (maximum total takeoff weight < 2 kg) to perform a 10 min flight and collect 306 aerial images with an overlap equal or greater than 90%. We mapped an area of 8380 m2 , obtaining as output an orthorectified aerial photomosaic and a bathymetric digital elevation model (DEM) with a resolution of 0.78 and 1.56 cm pixel-1, respectively. Through comparison with airborne LiDAR data for the same area, we verified that the location of the ortho-rectified aerial photomosaic is accurate within ~1.4 m. The bathymetric difference between our DEM and the LiDAR dataset is -0.016 ยฑ 0.45 m (1s). Our results show that it is possible, in conditions of calm waters, low winds and minimal sun glint, to deploy consumer-grade drones as a relatively low-cost and rapid survey technique to produce multispectral and bathymetric data on shallow-water coral reefs. We discuss the utility of such data to monitor temporal changes in topographic complexity of reefs and associated biological processes.
[ 0.018853135406970978, 0.0005949641927145422, -0.014067929238080978, -0.030569223687052727, 0.007169737946242094, 0.026607096195220947, -0.005012641195207834, 0.041896164417266846, 0.06001976877450943, 0.029695754870772362, 0.011991855688393116, -0.003973066341131926, -0.005848517641425133, -0.011566098779439926, 0.01304110698401928, -0.0032016539480537176, -0.017726833000779152, -0.02752467803657055, -0.006491466425359249, 0.0006911149248480797, 0.0014498635428026319, -0.000556700921151787, -0.04362171143293381, -0.049815867096185684, -0.021086011081933975, 0.035155050456523895, 0.024327969178557396, 0.004129474516957998, 0.054027486592531204, 0.06329278647899628, -0.014609390869736671, -0.022906435653567314, 0.02417486533522606, -0.05162860453128815, -0.009502319619059563, -0.01868005283176899, 0.04097619280219078, -0.027023809030652046, -0.01152735948562622, -0.05701432749629021, 0.02579459734261036, -0.006794811226427555, 0.031092891469597816, -0.04110113903880119, 0.007323513738811016, -0.007670432794839144, 0.016582218930125237, -0.01578456535935402, -0.014287530444562435, 0.0034472430124878883, -0.008752579800784588, -0.008860759437084198, 0.013495517894625664, -0.018025187775492668, -0.008309191092848778, 0.0038574093487113714, -0.005096533335745335, -0.04633530601859093, -0.012374739162623882, 0.012935211881995201, 0.007220919243991375, 0.026573816314339638, 0.04416603967547417, -0.06103869155049324, 0.016963262110948563, 0.017587935552001, -0.016506236046552658, -0.01787407509982586, 0.023132165893912315, -0.05188877508044243, -0.01618003658950329, -0.0048853615298867226, 0.01481045875698328, 0.011843803338706493, -0.01891142874956131, -0.01045632641762495, -0.008553259074687958, -0.011348260566592216, -0.022497668862342834, 0.03663573041558266, 0.007582579739391804, 0.06768544763326645, -0.008269868791103363, 0.018169265240430832, -0.052394818514585495, -0.04167131707072258, -0.004756375681608915, 0.001987324096262455, 0.013370869681239128, 0.015710847452282906, -0.004688682500272989, 0.07471645623445511, -0.00243496336042881, 0.012749611400067806, 0.02706218510866165, 0.033316656947135925, -0.031205011531710625, 0.026136675849556923, 0.013790921308100224, 0.016994433477520943, 0.053768742829561234, 0.06012660264968872, 0.014954856596887112, 0.07954588532447815, -0.036209993064403534, -0.0015440043061971664, 0.010718796402215958, -0.01111606601625681, 0.005519646219909191, -0.02366526424884796, 0.03515981137752533, 0.013828764669597149, 0.01725958101451397, 0.011326144449412823, -0.0159431342035532, 0.029105843976140022, 0.0015600592596456409, 0.04235087335109711, -0.024837899953126907, 0.017090627923607826, -0.014684375375509262, 0.02801494300365448, 0.03874431550502777, -0.022062145173549652, 0.0014506952138617635, -0.06579077988862991, -0.03172694891691208, 0.04701988026499748, -0.019384998828172684, -0.026034049689769745, 0.00434707710519433, -0.053455695509910583, -0.018537191674113274, 0.04344259575009346, -0.013447999954223633, -0.02980087511241436, -0.01778419502079487, 0.019716480746865273, 0.013045568950474262, -0.06714019179344177, 0.026381654664874077, 0.009584221057593822, -0.02408873476088047, 0.08980127424001694, -0.015914766117930412, 0.04743226617574692, -0.001464952016249299, -0.015343114733695984, -0.03862245753407478, 0.00038797344313934445, -0.021065829321742058, -0.008211163803935051, 0.0010986351408064365, 0.030033504590392113, 0.013814718462526798, -0.003997043706476688, -0.02653004415333271, 0.039772700518369675, 0.023090047761797905, 0.02397834323346615, -0.00031315465457737446, -0.019041448831558228, -0.030982479453086853, 0.027827439829707146, -0.006467079743742943, 0.03818549960851669, -0.004277295898646116, -0.014521441422402859, -0.0060651046223938465, -0.034619543701410294, 0.028829917311668396, -0.01076113898307085, -0.008934403769671917, 0.010495653375983238, 0.010700932703912258, 0.025698164477944374, 0.04579903930425644, -0.0014454486081376672, 0.06312860548496246, 0.0334857814013958, -0.024558955803513527, -0.029731662943959236, -0.0209468062967062, 0.07046491652727127, -0.030864594504237175, -0.0018026588950306177, -0.014794950373470783, -0.045452047139406204, -0.02146202139556408, -0.024831637740135193, -0.015625694766640663, 0.03021404705941677, -0.009817204438149929, 0.01959247514605522, -0.01958797313272953, 0.029782075434923172, -0.010221377946436405, -0.006909734103828669, -0.02821630798280239, -0.04347226768732071, -0.023973921313881874, 0.033428389579057693, -0.05255766585469246, 0.029060672968626022, -0.0432589091360569, 0.003471957752481103, 0.05356084927916527, 0.06060519814491272, -0.06859470903873444, 0.010160972364246845, 0.05283788591623306, -0.011779606342315674, -0.032477132976055145, -0.024930192157626152, 0.011984234675765038, -0.005545100197196007, -0.008410475216805935, 0.03893538564443588, 0.010915713384747505, -0.011479156091809273, 0.026477700099349022, -0.005934884771704674, 0.03793158009648323, 0.006260647904127836, -0.01480945572257042, 0.02983851172029972, -0.0005721725174225867, 0.05378185212612152, -0.005986243486404419, 0.006450144574046135, -0.029861463233828545, 0.041969094425439835, 0.007203003391623497, 0.04193943738937378, 0.01594444550573826, 0.028748769313097, 0.032515015453100204, 0.03140993043780327, 0.007610346656292677, -0.004695103969424963, 0.015103762038052082, 0.030597109347581863, 0.038315318524837494, 0.022949688136577606, 0.0076047577895224094, 0.04444650188088417, -0.0011236468562856317, -0.009973113425076008, -0.04119909927248955, 0.04077089950442314, -0.06437694281339645, 0.044762711971998215, 0.013934549875557423, 0.012245520018041134, -0.03177053481340408, -0.003320814110338688, 0.03141003102064133, 0.06865838170051575, -0.020992102101445198, -0.024171864613890648, 0.005346403922885656, 0.012313973158597946, 0.02661707252264023, -0.026339475065469742, 0.01937062479555607, 0.02684153988957405, -0.009053857997059822, 0.021917928010225296, -0.009758672676980495, -0.048627618700265884, -0.08140294253826141, -0.04101533070206642, -0.08553237468004227, -0.039328910410404205, -0.06632927805185318, 0.010045358911156654, 0.014853990636765957, -0.027050543576478958, 0.027322864159941673, -0.006412629038095474, -0.04046410694718361, -0.0314473956823349, -0.013808581978082657, 0.016388632357120514, 0.00619906559586525, 0.02860482968389988, -0.03426848724484444, 0.03421569615602493, 0.025423381477594376, 0.04477958008646965, -0.030976740643382072, 0.00267420313321054, -0.008367768488824368, -0.019067170098423958, 0.0038415412418544292, -0.01802874729037285, 0.007132026832550764, -0.012694409117102623, -0.06753058731555939, -0.03172210231423378, 0.006592556834220886, -0.005282432772219181, -0.03455178812146187, -0.0005303291836753488, -0.021681934595108032, 0.055137552320957184, 0.02846905216574669, -0.024769166484475136, 0.06216020509600639, 0.04546390846371651, -0.04259970411658287, 0.07704580575227737, 0.022165291011333466, 0.01725947856903076, -0.038395367562770844, 0.07042808085680008, 0.050507597625255585, -0.02471034787595272, -0.009984946809709072, -0.018810106441378593, -0.015322699211537838, 0.021550513803958893, 0.017023637890815735, 0.014734241180121899, -0.020925989374518394, 0.04266003891825676, 0.04038152098655701, -0.06771886348724365, 0.02322152815759182, -0.03782849386334419, -0.030700169503688812, -0.04984216019511223, -0.029302256181836128, 0.020147863775491714, 0.045063361525535583, 0.03978660702705383, -0.008170225657522678, -0.03647065907716751, -0.031787678599357605, 0.005701129790395498, 0.02177722379565239, -0.06058654934167862, 0.02224072627723217, 0.03218865767121315, -0.017194868996739388, 0.028944773599505424, 0.0032157041132450104, 0.0005789278075098991, -0.0035333670675754547, 0.03057439811527729, -0.006235132459551096, 0.02931779995560646, 0.0005123252631165087, 0.017471352592110634, 0.027521666139364243, 0.03680630028247833, -0.01698661968111992, -0.011812645941972733, 0.0006897665443830192, 0.010388407856225967, 0.03896413370966911, -0.007583790924400091, 0.013691959902644157, -0.015084583312273026, -0.03528529778122902, -0.014177190139889717, 0.021216873079538345, 0.03471509367227554, 0.054469235241413116, -0.016809584572911263, 0.03942703828215599, 0.012451661750674248, -0.051709868013858795, 0.03972039744257927, -0.04701721668243408, -0.01779354363679886, 0.054972220212221146, -0.005852765403687954, 0.028409771621227264, -0.033401768654584885, -0.0020655421540141106, -0.014567825011909008, -0.003276035888120532, 0.02284313552081585, -0.008716583251953125, 0.039064791053533554, -0.027680344879627228, -0.03879595920443535, -0.017341412603855133, -0.032161109149456024, -0.04007581248879433, -0.011265639215707779, -0.009659850969910622, -0.014761043712496758, -0.0514739528298378, -0.031265124678611755, 0.04149877279996872, 0.02230171672999859, 0.05032920837402344, 0.0195452943444252, 0.03300105035305023, 0.020296787843108177, 0.031793441623449326, 0.04924198240041733, -0.014750588685274124, 0.026911374181509018, -0.044194795191287994, 0.03322942182421684, 0.0009533176198601723, -0.03328080475330353, -0.006693209521472454, 0.0074064042419195175, -0.017210349440574646, 0.04523549601435661, 0.008460293523967266, -0.006647215690463781, -0.0037826846819370985, 0.01322302408516407, -0.01635746844112873, -0.0012620080960914493, -0.023861847817897797, -0.007935226894915104, -0.03140786662697792, 0.01958562433719635, 0.020401518791913986, -0.064607635140419, -0.013056128285825253, -0.029575280845165253, 0.051429592072963715, 0.03073100931942463, -0.03494603559374809, -0.02814755216240883, -0.02154938317835331, -0.02419443428516388, -0.01400856114923954, -0.00756979500874877, 0.023917414247989655, 0.01489653903990984, 0.0054504661820828915, -0.02216149866580963, 0.021117551252245903, 0.026177523657679558, -0.013276489451527596, -0.05048711225390434, 0.002206365345045924, 0.006775671150535345, 0.010977941565215588, 0.03314465656876564, -0.0016795933479443192, -0.024948330596089363, 0.006528847385197878, -0.05710853636264801, -0.002076629316434264, 0.029485588893294334, -0.01693720743060112, 0.019070064648985863, 0.03127584978938103, -0.005988469813019037, 0.01050962321460247, -0.04764122888445854, 0.0014484934508800507, 0.004511173348873854, 0.027916206046938896, -0.04329361021518707, -0.06154158338904381, 0.035109661519527435, -0.004754025489091873, -0.02359600178897381, 0.029946470633149147, 0.008001154288649559, -0.013502306304872036, 0.026750288903713226, 0.04876900464296341, -0.05470683053135872, 0.011838615871965885, -0.045848309993743896, 0.008801719173789024, -0.00120937405154109, -0.0404839888215065, 0.05027676746249199, -0.02335432730615139, 0.04255339130759239, 0.001608863240107894, -0.023425322026014328, -0.04655833914875984, -0.05358433350920677, 0.0031726015731692314, 0.038720451295375824, -0.021340344101190567, -0.007989517413079739, 0.028679724782705307, -0.014435618184506893, 0.01469611469656229, -0.02000793069601059, 0.019126856699585915, 0.006249974947422743, -0.02131720446050167, 0.006817857269197702, -0.0053268601186573505, -0.0027070778887718916, 0.027206311002373695, 0.00527169369161129, -0.047527506947517395, -0.007872417569160461, -0.021485036239027977, -0.03535395860671997, -0.05402139946818352, 0.03630736097693443, -0.017373625189065933, 0.0016441720072180033, -0.025900347158312798, -0.03041757456958294, 0.003473706543445587, 0.009827917441725731, 0.0054910690523684025, -0.01519270334392786, 0.04884379729628563, -0.012550258077681065, -0.011045234277844429, 0.04911254346370697, 0.021503090858459473, -0.06356984376907349, -0.003907469101250172, 0.04439907893538475, 0.02623957395553589, 0.010388761758804321, -0.03762021288275719, -0.004392883740365505, -0.049815695732831955, -0.05625695735216141, -0.006590200588107109, -0.048401106148958206, -0.008806994184851646, -0.054731905460357666, -0.0486045777797699, -0.014008533209562302, 0.024749577045440674, 0.03384196013212204, -0.005760084837675095, 0.017581796273589134, -0.048928797245025635, -0.009591885842382908, -0.02646005153656006, -0.028575915843248367, -0.011075662449002266, -0.00535725150257349, -0.016208590939641, 0.051356006413698196, -0.008747315034270287, -0.003695352468639612, -0.016438277438282967, 0.049015939235687256, 0.025148851796984673, 0.00797168631106615, -0.06406153738498688, -0.024665819481015205, -0.0224721971899271, -0.0034912358969449997, 0.005247685592621565, -0.0010361636523157358, -0.024402860552072525, 0.03732295334339142, -0.037440840154886246, 0.03904057294130325, 0.0041922456584870815, -0.0007870701956562698, 0.003537626937031746, -0.011328162625432014, 0.04583996161818504, -0.002712512155994773, 0.01314069889485836, -0.02473320998251438, 0.03899389132857323, 0.03193291649222374, 0.003394953440874815, -0.03215775266289711, -0.03721873462200165, -0.007060585543513298, -0.06245594099164009, 0.03006628528237343, -0.03855060786008835, -0.06150253862142563, -0.041795726865530014, -0.016864851117134094, 0.020611237734556198, 0.004045015666633844, 0.044476915150880814, 0.06721991300582886, 0.024581704288721085, -0.011182043701410294, -0.02396591752767563, 0.005281703546643257, 0.052756160497665405, -0.011002419516444206, -0.008973753079771996, -0.02306338958442211, -0.013909916393458843, -0.014653789810836315, -0.018356673419475555, -0.05476867035031319, -0.05379218980669975, -0.00209515867754817, 0.03579556196928024, -0.0007161590037867427, 0.03874550387263298, 0.011995210312306881, -0.03146102651953697, -0.036164943128824234, 0.032838817685842514, 0.026024948805570602, -0.01084144413471222, 0.02568848803639412, -0.008579282090067863, 0.020255323499441147, 0.01983562856912613, 0.01785924844443798, -0.03061904013156891, -0.05580953136086464, 0.04716026037931442, 0.008494003675878048, -0.04664476215839386, -0.0004401793412398547, 0.06149166077375412, -0.07021572440862656, -0.03231541067361832, 0.03769687935709953, -0.00788828358054161, 0.03159407526254654, -0.05245159566402435, 0.012686597183346748, 0.004551552701741457, -0.020321359857916832, 0.0010807691141963005, 0.01909530721604824, -0.011454734951257706, 0.01786201260983944, 0.017626462504267693, 0.04226428642868996, -0.04853346198797226, 0.01219717413187027, 0.06482937932014465, -0.015330443158745766, -0.05913110077381134, -0.012160931713879108, -0.03737044334411621, -0.009282314218580723, 0.019351806491613388, 0.02493320032954216, -0.02717462368309498, 0.00031929145916365087, 0.027838002890348434, 0.024220578372478485, 0.016415098682045937, 0.0381401889026165, 0.015060434117913246, 0.024486135691404343, -0.02918892540037632, -0.0658106654882431, -0.029673805460333824, 0.04681483656167984, -0.005700135603547096, 0.037433724850416183, -0.048512279987335205, 0.004438710864633322, 0.059531472623348236, 0.026964066550135612, -0.04083159193396568, -0.04600079357624054, -0.05016832798719406, -0.0365983247756958, -0.03796933963894844, -0.054002512246370316, -0.03796456754207611, 0.0013916217721998692, 0.016173291951417923, 0.015492701902985573, -0.018877748399972916, 0.029724393039941788, 0.016956914216279984, -0.01943332701921463, 0.010124887339770794, -0.023819785565137863, 0.009188534691929817, -0.02626633644104004, -0.0346960686147213, -0.036210838705301285, -0.005644175689667463, 0.004258564207702875, 0.010049993172287941, -0.007402718998491764, 0.012736939825117588, 0.00044490056461654603, 0.031764425337314606, 0.027042165398597717, 0.053911011666059494, -0.009376365691423416, -0.034356389194726944, 0.002176955807954073, 0.015358689241111279, -0.006923510693013668, 0.025434279814362526, 0.03163784742355347, -0.009670558385550976, 0.01711815781891346, 0.005245776381343603, 0.011574110016226768, -0.018611641600728035, 0.0251401849091053, -0.0009730622405186296, -0.015250843949615955, -0.020604323595762253, 0.009817160665988922, 0.0001020802665152587, -0.04715689644217491, 0.006663816515356302, 0.010188110172748566, -0.018521958962082863, 0.006547608412802219, -0.003040623851120472, -0.001666337251663208, 0.04156070202589035, 0.019093621522188187, 0.023686828091740608, -0.035401541739702225, 0.009169881232082844, -0.001248440588824451, -0.003751069074496627, 0.009500035084784031, 0.038076821714639664, -0.020689966157078743, -0.06387574225664139, 0.027327435091137886, 0.013435794040560722, -0.037238266319036484, 0.057498734444379807, -0.030812092125415802, -0.03606609255075455, -0.02741706557571888, -0.012470397166907787, -0.0033319545909762383, 0.0397539883852005, -0.04424918442964554, 0.007228241302073002, 0.007840665057301521, -0.03261033818125725, -0.04432986304163933, 0.014192702248692513, -0.07045627385377884, -0.019436391070485115, 0.06167526915669441, -0.02601449005305767, -0.02577611431479454, -0.0017024573171511292, -0.01352771371603012, -0.005547132343053818, -0.03926697000861168, -0.008761645294725895, 0.0334867499768734, 0.025351405143737793, 0.025385815650224686, 0.03520020842552185, 0.006435172166675329, -0.018961794674396515, -0.004543089307844639, 0.03297478333115578, -0.055895157158374786, -0.05329990014433861, -0.024490347132086754, 0.043980177491903305, 0.001863112673163414, -0.032669275999069214, -0.026072442531585693, 0.01997199095785618, -0.018557779490947723, -0.009558468125760555, 0.0004357431025709957, 0.017970550805330276, -0.0004879262996837497, 0.04794721305370331, 0.04373018816113472, -0.001587548991665244, -0.026412922888994217, 0.006125422194600105, 0.0013005462242290378, -0.018751446157693863, -0.053902432322502136, 0.013433155603706837, 0.018680494278669357, -0.009328154847025871, 0.04963183403015137, 0.010220855474472046, 0.027579553425312042, -0.022513892501592636, 0.034085050225257874, 0.01777997799217701, 0.017874812707304955, 0.030845975503325462, 0.046864647418260574, -0.016237694770097733, 0.06480731815099716, 0.03030989319086075, -0.002201998373493552, 0.022893374785780907, 0.04172264784574509, 0.038454581052064896, -0.025866225361824036, -0.020832255482673645, -0.04047023877501488, 0.0021623747888952494, 0.007513158489018679, -0.013076277449727058, -0.036829087883234024, -0.01389151532202959, 0.0035598804242908955, -0.010159268975257874, -0.007719355169683695, 0.04789042845368385, 0.0021569174714386463, -0.006787894293665886, -0.014959107153117657, -0.0017223900649696589, -0.0000014533545709127793, -0.0014788589905947447, -0.026468494907021523, 0.04646347463130951, 0.03558368608355522, 0.06125926226377487, -0.02585182711482048, 0.029063109308481216, 0.016744541004300117, 0.023334410041570663, -0.022102100774645805, 0.029509805142879486, -0.009563779458403587, 0.022650815546512604, -0.045844849199056625, -0.06813198328018188, -0.04036848992109299, 0.04523126035928726, -0.032460767775774, -0.035534683614969254, 0.014720922335982323, -0.0341261588037014, -0.029238764196634293, -0.03960229828953743, 0.020779311656951904, -0.04259327054023743, -0.01895665004849434, 0.008093887008726597, -0.010813960805535316, -0.025631124153733253, 0.0883587971329689, 0.0041930777952075005, 0.033301614224910736, 0.01876913011074066, 0.08397334814071655, -0.008874151855707169, 0.05238701403141022, 0.033281031996011734, -0.031135885044932365, 0.001422307686880231, 0.0413510836660862, -0.0012465589679777622, -0.006272439379245043, -0.02577032521367073, -0.028224658221006393, 0.037077270448207855, -0.004992766305804253, -0.03686584159731865, -0.00018419534899294376, 0.06396698951721191, 0.00490949023514986, -0.02918224409222603, 0.027629127725958824, 0.023821579292416573, -0.023811863735318184, 0.0228817667812109, 0.0024423932190984488, 0.04335029423236847, 0.024518370628356934, 0.006394336931407452, -0.021022943779826164, -0.02060670405626297, 0.017539210617542267, -0.0439155213534832, 0.01414023619145155, 0.012070968747138977, -0.0059961057268083096, -0.03575623035430908, -0.06775150448083878, -0.0164475180208683, 0.009306669235229492, -0.00965317152440548, -0.056903887540102005, 0.021163759753108025, 0.06295686960220337, 0.03376229852437973, 0.013876674696803093, -0.02280273847281933, -0.004938018042594194, 0.042708620429039, 0.06869584321975708, 0.01405639573931694, 0.06900566071271896, 0.0459781289100647, -0.0013938359916210175, 0.013522048480808735, -0.028047077357769012, 0.015347993932664394, -0.0005039990646764636, -0.022394025698304176, 0.016907669603824615, 0.029630323871970177, -0.03538370132446289, -0.0761542022228241, 0.024654148146510124, 0.04458359256386757, 0.020030323415994644, -0.0018413207726553082, -0.05787784606218338, 0.012421752326190472, -0.039760056883096695, 0.026636280119419098, -0.04393531382083893, 0.016930459067225456, 0.025900723412632942, -0.04091762378811836, 0.004839002154767513, -0.050705332309007645, 0.1506873369216919, 0.05408027768135071, 0.007571122609078884, -0.008978351019322872, 0.008152227848768234, 0.02756384387612343, 0.04401330277323723, -0.00938569288700819, 0.02518303506076336, -0.05123237520456314, 0.04524018242955208, -0.018438328057527542, 0.01777912676334381, -0.003199135884642601, 0.010528389364480972, 0.03692939504981041, -0.015055228024721146, 0.0015243439702317119, 0.041208576411008835, -0.03664600849151611, -0.06877951323986053, 0.03178765997290611, -0.008189796470105648, 0.001779095851816237, 0.012130608782172203, 0.0029015527106821537, 0.0002805767871905118, -0.054437845945358276, -0.0023137670941650867, -0.026155751198530197, -0.0044159553945064545, -0.06870422512292862, 0.03931577876210213, -0.016098573803901672, -0.03128760680556297, 0.005214772652834654, 0.0094649288803339, -0.04365428164601326, -0.054085616022348404, 0.006805866025388241, -0.027472708374261856, -0.002482679905369878, 0.01833677478134632, -0.0430765338242054, -0.013285205699503422, 0.040429167449474335, -0.016758866608142853, 0.008884764276444912, 0.025803092867136, -0.058524567633867264, 0.07175484299659729, -0.05772053077816963, -0.013034689240157604, -0.01733611710369587, -0.07446333765983582, 0.005228742957115173, -0.01034596934914589, -0.03688320145010948, -0.010266078636050224, 0.0417679138481617, 0.024850452318787575, 0.01565728522837162, -0.02109564282000065, 0.019173748791217804, -0.03597179427742958, -0.019576458260416985, 0.004886252339929342, -0.01900395378470421, -0.014026306569576263, -0.019951965659856796, -0.0013084657257422805, -0.0015999043826013803, 0.008572530001401901, -0.012800430878996849, 0.018468499183654785, 0.058266665786504745, -0.005135434679687023, 0.06021358072757721, 0.0003508452500682324, -0.040242038667201996, -0.03000839799642563, -0.04432957246899605, -0.0025427520740777254, -0.005335723981261253, 0.053911756724119186, 0.038603365421295166, -0.026539001613855362, -0.05064833164215088, -0.04466676339507103, 0.051374807953834534, 0.05674715340137482, 0.04230678454041481, -0.00606418214738369, -0.01814539171755314, 0.003019223688170314 ]
Want a FREEBIE on your birthday? Click here! Find Your BIGGBYยฎ!: Check your BIGGBYยฎ card! B Involved Rewarding Our Fanatics The Craft of BIGGBYยฎ COFFEE Freeze Specials Latte Specials Creme Freeze Smoothies Favorite Lattes The BIGG List of Drinks B Connected Share your photos & stories with us Posted on November 8, 2011 January 29, 2017 BIGGBY LOCATIONS CELEBRATE VETERAN'S DAY BY GIVING BACK Military veteran and store owner will donate half of stores profits to "She Serves VFW" LANSING, MI., NOV. 8, 2011 โ€“ Behind the counter in her BIGGBY COFFEE apron, multi-unit store owner and Lansing native, Paula Thompson, has another side of her even some of her closest customers don't know about, United States Military Veteran. As a way to honor the U.S. Military and show her support to other Veteran's, Thompson will donate half the proceeds from her stores โ€“ located in Lansing (2002 W. Saginaw) and in Ionia (2331 S. State Rd.) โ€“ to the national She Serves VFW on Veteran's day, this Friday, Nov. 11. "Obviously this day is a very important to both my family and I," Thompson said. "Over the past few years, I have picked a few different organizations like She Serves VFW to donate to as a way show my gratitude and support for the work they do." Before becoming a part of the BIGGBY COFFEE franchise family, Thompson graduated from the United States Military Academy at West Point and served five years active duty at Ft. Bragg in North Carolina. Along with her husband, Mark, the two served a combined total of four tours in Iraq, spanning more than three years, before returning to Michigan in 2007. "Once I was home, I got involved with BIGGBY through my mom, who owns stores herself, and since day one I have loved every minute of it," Thompson said. "It was originally supposed to be my husband who opened our store, but after he was deployed for his final tour in Iraq, it became my responsibility. Today I can say it's the best job in the world." So along with her one-month old daughter, Thompson opened her Lansing store on her husband's birthday in June of 2007. Then, in April of 2010 on the seventh anniversary of their first deployment, Paula purchased her store in Ionia. "Both of my stores are in very supportive communities so I know we will have an awesome turnout for Veteran's day," Thompson said. "I am very grateful for the support I have received and for the way everything has turned outโ€ฆ now it's my turn to say thank you and give back." About BIGGBY COFFEEยฎ East Lansing, Mich.-based BIGGBYยฎ COFFEE opened a single store in March of 1995 based on the founding principle that coffee-lovers and the coffee-curious alike would benefit from a less pretentious approach to the standard gourmet cafรฉ paradigm. BIGGBY COFFEE introduced connoisseur-worthy drinks with pronounceable names like Teddy Bear and Caramel Marvel, and barista staff surprised guests with simple gestures like free kazoos and bouncy balls for no other reason than to brighten their day. The "Big 'B'" on the orange background caught on, and today BIGGBY COFFEE has 136 cafes open or under contract across six states including: Michigan, Ohio, Illinois, Indiana, South Carolina, Wisconsin and Texas. For more information, visit www.biggby.com. Share and unite on #BIGGBYNation Take a walk on the wild(flower) side! ? Here's to an extra shot of โ˜€๏ธ Coffee Haul! Instagram: @@anna_rittenhouse Coffee with Friends! ? ยฉ 2020 BIGGBYยฎ COFFEE. All rights reserved "BIGGBYยฎ" and the Orange Square "B" logo are registered trademarks of Global Orange, LLC. Privacy Policy Terms & Conditions Loyalty Terms & Conditions
[ 0.005268584005534649, 0.011254564858973026, -0.023097211495041847, 0.05954885855317116, -0.028916049748659134, -0.021745262667536736, 0.010323449037969112, 0.05284765362739563, -0.011967726051807404, 0.0018026719335466623, 0.008644739165902138, 0.013299954123795033, 0.024264078587293625, -0.02499443106353283, -0.00974329374730587, -0.006887142080813646, -0.012603649869561195, -0.010900167748332024, -0.017333241179585457, 0.0005243174382485449, -0.002868983894586563, 0.012205231934785843, -0.0646432489156723, -0.026476869359612465, -0.009581099264323711, 0.05452726036310196, 0.008834543637931347, -0.0036644868087023497, 0.06266885995864868, 0.035971008241176605, -0.036507777869701385, -0.047460898756980896, 0.024272680282592773, -0.07817786931991577, -0.010515647940337658, 0.009646533988416195, 0.057411860674619675, -0.038449376821517944, -0.0240547526627779, -0.039731454104185104, 0.0017175001557916403, -0.04171636700630188, 0.05753324553370476, -0.006519366055727005, -0.06656218320131302, -0.009420949965715408, -0.008710874244570732, -0.03274873271584511, 0.04960433766245842, -0.05269811302423477, 0.005238163284957409, 0.000443642376922071, -0.0189072173088789, 0.009122329764068127, -0.009823532775044441, 0.012810181826353073, -0.005678191781044006, -0.013573742471635342, -0.0015506349736824632, 0.038933537900447845, 0.014178620651364326, 0.004392929375171661, 0.0349823497235775, -0.08082118630409241, 0.034706391394138336, 0.019672637805342674, -0.01944873295724392, -0.007593914400786161, 0.027194533497095108, -0.00546336779370904, 0.01849300228059292, -0.030728232115507126, -0.034809600561857224, -0.02512398548424244, -0.0001835069851949811, -0.0068759857676923275, 0.00329451821744442, -0.0020362106151878834, -0.032459259033203125, -0.0010654721409082413, 0.006047932431101799, 0.03754962980747223, 0.0027399633545428514, 0.0033210692927241325, -0.06250932067632675, -0.016666719689965248, 0.0026241648010909557, 0.04341940954327583, -0.00041313745896331966, 0.010579712688922882, -0.0000065150929913215805, 0.03604113310575485, 0.004827070515602827, 0.004473860841244459, 0.0411224439740181, 0.025399334728717804, -0.05452926084399223, 0.03196782246232033, 0.003082589479163289, 0.0018524349434301257, 0.03112921305000782, 0.008063580840826035, 0.02135019563138485, 0.055902041494846344, -0.02616923116147518, 0.008340397849678993, 0.025106582790613174, -0.009818514809012413, -0.015589004382491112, -0.0395720936357975, 0.013688946142792702, -0.027885178104043007, 0.035123661160469055, 0.003177475417032838, 0.009817911311984062, 0.05668113753199577, 0.01201321929693222, 0.030897492542862892, -0.05949794128537178, 0.02446071244776249, 0.01943712681531906, 0.009309522807598114, 0.04800676554441452, -0.006988591514527798, 0.041424669325351715, -0.04617244005203247, -0.03252959996461868, 0.04741651564836502, -0.023974409326910973, -0.023132288828492165, 0.014719491824507713, -0.033565178513526917, -0.015029072761535645, 0.018734749406576157, -0.0002498835092410445, 0.009324842132627964, -0.009653706103563309, 0.03642132505774498, 0.008121814578771591, -0.059778034687042236, 0.0610782727599144, 0.004836450796574354, 0.013731805607676506, 0.08490020781755447, 0.022053644061088562, 0.016329698264598846, -0.004394422750920057, -0.007783450186252594, -0.017913734540343285, 0.013260476291179657, -0.04778561741113663, 0.03570716455578804, 0.00009011960355564952, 0.013437559828162193, -0.007433330174535513, 0.025714369490742683, 0.010985862463712692, 0.02872266247868538, 0.012718845158815384, 0.014549066312611103, -0.023588674142956734, -0.0011648429790511727, -0.015420825220644474, 0.04561837390065193, -0.025911640375852585, 0.00032470488804392517, -0.02017381228506565, 0.01871912181377411, -0.009582780301570892, -0.03215944766998291, 0.024246493354439735, -0.011073770932853222, -0.026939280331134796, 0.026114417240023613, 0.03687411546707153, 0.07636215537786484, 0.03870594501495361, -0.042481303215026855, 0.05643497779965401, 0.03930359333753586, -0.0637291744351387, -0.027084670960903168, 0.010486475192010403, 0.05300858989357948, -0.0008111610659398139, -0.005688454490154982, -0.0023288496304303408, -0.03524972125887871, -0.013971453532576561, -0.03502684831619263, 0.00048245079233311117, 0.01847696490585804, -0.012843139469623566, 0.03373530134558678, 0.008532142266631126, 0.04901452735066414, -0.020009806379675865, -0.009179739281535149, -0.00903434306383133, -0.06075924262404442, -0.0095546655356884, 0.033715393394231796, -0.022686053067445755, 0.017243390902876854, -0.034674882888793945, -0.04623938351869583, 0.04269906505942345, 0.07816306501626968, -0.048367809504270554, -0.004894020035862923, 0.023928005248308182, -0.006277074571698904, 0.004087828565388918, -0.04906124994158745, -0.0072954981587827206, -0.013999264687299728, 0.0009618968470022082, 0.03830554708838463, -0.016924777999520302, -0.01685386896133423, -0.0009747898438945413, -0.006680306512862444, 0.06545227766036987, 0.0681137666106224, 0.034242503345012665, -0.014871700666844845, 0.026084044948220253, 0.03918662294745445, -0.0472639799118042, -0.033493902534246445, 0.000710667809471488, 0.05732446536421776, 0.04428467899560928, 0.07857614755630493, 0.04339396208524704, 0.01218445785343647, 0.04877639189362526, 0.05043423920869827, 0.004989226348698139, 0.04299278184771538, -0.00032541470136493444, 0.0028822750318795443, 0.020346879959106445, 0.018584061414003372, -0.016920482739806175, 0.01020788960158825, -0.03141574189066887, -0.020067526027560234, -0.01882195472717285, 0.04217230901122093, 0.004151140805333853, 0.045541003346443176, -0.02147156558930874, 0.05248266085982323, -0.04848930984735489, -0.020425692200660706, 0.01840881258249283, 0.05469786748290062, -0.0013761026784777641, 0.013337448239326477, 0.004597422666847706, 0.0231579951941967, -0.046841543167829514, 0.005496906582266092, 0.022345663979649544, 0.023462116718292236, 0.013601938262581825, 0.03782283142209053, -0.033935222774744034, -0.04940568283200264, -0.023900656029582024, -0.05613502115011215, -0.021295873448252678, -0.039185330271720886, -0.025143371894955635, 0.0013081830693408847, 0.048590272665023804, -0.020099328830838203, 0.02664000354707241, 0.010745469480752945, -0.016467491164803505, -0.003995558712631464, -0.02621348761022091, 0.03169984370470047, 0.02247750386595726, 0.024845561012625694, -0.04737532511353493, 0.01748880185186863, 0.02551078610122204, 0.042759720236063004, -0.021142082288861275, -0.008993810974061489, -0.012821727432310581, 0.004459236282855272, 0.016951605677604675, 0.003323471639305353, -0.03701568394899368, 0.011133838444948196, -0.04296793416142464, -0.03966926038265228, 0.013736370019614697, 0.025347646325826645, 0.0016382239991798997, 0.010437882505357265, -0.07966862618923187, 0.038234446197748184, 0.01513585913926363, -0.04132911190390587, 0.036766719073057175, 0.04041224345564842, -0.02991258166730404, 0.05285213515162468, 0.04986682906746864, -0.022559409961104393, -0.05102616921067238, 0.0331106036901474, 0.0619610920548439, 0.02351905032992363, -0.03995509818196297, -0.010915620252490044, -0.03780446946620941, 0.01365326251834631, 0.006050788331776857, -0.009953625500202179, -0.024389760568737984, 0.06304163485765457, 0.012458601035177708, -0.05922473222017288, 0.025856714695692062, -0.07298503071069717, -0.02325577847659588, -0.028143808245658875, -0.06380125135183334, 0.042504340410232544, -0.0048355464823544025, 0.0143547048792243, 0.02721153013408184, -0.010039404965937138, 0.019691241905093193, 0.009304375387728214, 0.06600043922662735, -0.01591527834534645, 0.027278125286102295, 0.06166430562734604, 0.001749272458255291, 0.0027138367295265198, 0.02792837657034397, 0.0019143273821100593, -0.031619563698768616, -0.015787463635206223, -0.001684493152424693, 0.03215068578720093, 0.046517133712768555, 0.026313183829188347, 0.019865984097123146, 0.07017164677381516, -0.05391303822398186, 0.0036816864740103483, 0.019155442714691162, 0.010533996857702732, 0.016567565500736237, -0.010794667527079582, 0.00855330377817154, -0.0036770261358469725, -0.05579650029540062, -0.054691120982170105, 0.026019969955086708, 0.031979382038116455, 0.036915622651576996, -0.04893101751804352, 0.04792596772313118, -0.011968213133513927, -0.03848601132631302, 0.02585488185286522, -0.07715938240289688, -0.0035120276734232903, 0.02484116703271866, -0.03873664140701294, 0.03193853422999382, -0.041531145572662354, 0.02622627466917038, -0.029105937108397484, 0.01574583351612091, 0.02970658428966999, -0.004623844288289547, 0.023818813264369965, -0.0317700169980526, -0.0287715345621109, -0.012473954819142818, -0.00911728572100401, -0.012387224473059177, -0.03344555199146271, 0.016050871461629868, -0.023544637486338615, -0.034613244235515594, -0.056996192783117294, 0.03773926943540573, 0.00891035608947277, 0.029600584879517555, -0.006517816334962845, 0.02856711484491825, 0.012214983813464642, 0.019235307350754738, 0.0780225470662117, -0.008796416223049164, -0.002006493741646409, -0.05825627222657204, 0.060478951781988144, 0.03184729069471359, -0.02089633233845234, -0.009147342294454575, -0.0415511392056942, -0.055403076112270355, 0.03891643509268761, -0.022713350132107735, -0.0202384851872921, -0.05992585048079491, 0.05394011363387108, -0.025939786806702614, 0.03243361786007881, -0.015776265412569046, -0.0038609583862125874, -0.03322958946228027, 0.02124698832631111, 0.022387683391571045, -0.057448677718639374, 0.010963700711727142, -0.0246031042188406, 0.05183010548353195, 0.052448347210884094, 0.002269170945510268, -0.03831978142261505, -0.023473406210541725, -0.03787221014499664, -0.02148873545229435, 0.021527152508497238, 0.018434684723615646, -0.0038509052246809006, 0.00006272937025642022, -0.02560052089393139, 0.03805732727050781, 0.011843505315482616, -0.016612444072961807, -0.041149478405714035, -0.00943802110850811, 0.04053830727934837, 0.009633238427340984, 0.055652398616075516, 0.015194641426205635, -0.0288609117269516, 0.03158095106482506, -0.047663912177085876, 0.004895739257335663, -0.01669619046151638, -0.008950231596827507, -0.021223604679107666, -0.00145016482565552, 0.016177937388420105, 0.014897244982421398, -0.007523785345256329, 0.022133708000183105, -0.00922904908657074, 0.020693877711892128, -0.026424383744597435, -0.027929620817303658, 0.05193735286593437, 0.010687263682484627, -0.03676737844944, 0.043871890753507614, 0.07482688874006271, -0.04536980763077736, 0.030206285417079926, 0.015240167267620564, -0.04923815280199051, 0.04091237857937813, -0.057644110172986984, 0.012728478759527206, -0.04961974918842316, -0.03201286867260933, 0.01479437854140997, -0.02722752094268799, 0.016361156478524208, -0.01608504354953766, -0.007784515619277954, -0.03460889309644699, -0.06695781648159027, -0.022096404805779457, 0.013388706371188164, -0.0105943838134408, 0.015064835548400879, 0.015145459212362766, -0.01437994372099638, -0.011617696844041348, -0.013435771688818932, 0.024866366758942604, 0.015049540437757969, -0.022050736472010612, 0.021214274689555168, 0.007961063645780087, -0.018639301881194115, 0.032547783106565475, -0.02205183357000351, -0.043613821268081665, 0.020429814234375954, -0.00014795930474065244, -0.03319867327809334, -0.04620207101106644, -0.003931662533432245, -0.058984316885471344, -0.008748342283070087, -0.04924941062927246, 0.011033265851438046, -0.04803283140063286, 0.011081702075898647, 0.024719027802348137, 0.006858534645289183, -0.002250090939924121, 0.010885004885494709, -0.04337504133582115, 0.03137101233005524, 0.027262065559625626, -0.030376166105270386, -0.02591831237077713, 0.04910343885421753, -0.01014283113181591, 0.0446602962911129, -0.014285028912127018, -0.01334436610341072, -0.01762722246348858, -0.05094451457262039, -0.018203023821115494, -0.03897009789943695, -0.021123748272657394, -0.04322865977883339, -0.03504759818315506, -0.020771436393260956, 0.05072714015841484, 0.00440178019925952, 0.0008016846259124577, -0.006743057630956173, -0.012585993856191635, -0.009502924978733063, -0.016545049846172333, -0.022815795615315437, -0.033669162541627884, -0.018143180757761, -0.03563223034143448, 0.06337001919746399, 0.006153399590402842, 0.01475463341921568, -0.00006594292062800378, 0.00785635132342577, 0.01656147465109825, -0.003173438599333167, -0.02006261982023716, -0.03250453993678093, -0.007681318558752537, -0.018291259184479713, 0.032494526356458664, 0.019687576219439507, -0.044457368552684784, 0.046822790056467056, -0.0339171439409256, 0.004084104206413031, -0.02811715565621853, -0.03534838557243347, 0.004710841923952103, -0.009474452584981918, 0.03715744987130165, -0.047254618257284164, 0.021332858130335808, -0.03682633861899376, 0.04746624454855919, 0.03099679760634899, 0.023502668365836143, -0.03439292684197426, -0.032075848430395126, -0.0480983629822731, -0.0715581625699997, 0.023514728993177414, -0.03938610106706619, -0.01847670041024685, -0.016772238537669182, -0.01616131141781807, 0.043381161987781525, -0.020372888073325157, 0.04491033777594566, 0.054582688957452774, -0.018094666302204132, -0.02335052564740181, -0.04180639982223511, 0.01926133781671524, 0.029483715072274208, 0.0035844873636960983, 0.00930157769471407, -0.01443064957857132, -0.02924180217087269, -0.006194723770022392, -0.07487965375185013, -0.03166709467768669, -0.007680862210690975, -0.015484245494008064, 0.07071615010499954, -0.03161610662937164, 0.0383484773337841, -0.037411704659461975, -0.05513494089245796, -0.04929264262318611, 0.03970572352409363, 0.01463273260742426, -0.01726124808192253, 0.046327587217092514, 0.00897231139242649, -0.024920856580138206, -0.006269201170653105, -0.014552976936101913, 0.006220715120434761, -0.05712594464421272, 0.04568440094590187, 0.0018323486438021064, -0.053545787930488586, 0.023202436044812202, 0.04632200300693512, -0.03614242747426033, -0.0426347590982914, -0.010147908702492714, 0.021930508315563202, -0.00986463762819767, -0.021715709939599037, 0.005448613315820694, 0.008595075458288193, -0.00420483248308301, 0.029313871636986732, 0.021570997312664986, 0.02597796730697155, 0.03097747452557087, 0.004885539878159761, 0.024957185611128807, -0.05545728653669357, -0.01668388955295086, 0.026126708835363388, -0.012405060231685638, -0.021206658333539963, -0.01633983664214611, -0.02353314682841301, -0.03266001492738724, 0.0037442203611135483, 0.03623293712735176, -0.025431573390960693, 0.0032432873267680407, 0.029167626053094864, -0.009068092331290245, 0.043142545968294144, 0.023009032011032104, -0.0035505788400769234, -0.024767955765128136, -0.041097525507211685, -0.05483543872833252, -0.03761328011751175, -0.003004796802997589, -0.031019089743494987, 0.04383135214447975, -0.061115242540836334, -0.0017273848643526435, 0.029426591470837593, -0.014473519288003445, -0.009488586336374283, -0.044192031025886536, -0.02873067371547222, -0.03244916349649429, -0.040916986763477325, -0.022321254014968872, -0.0190805122256279, 0.0015021421713754535, 0.03659811615943909, 0.025754477828741074, -0.019192086532711983, 0.0031029486563056707, -0.000007063683369779028, -0.020534219220280647, -0.01037526410073042, -0.025750359520316124, 0.030118748545646667, -0.03499995544552803, -0.052061777561903, -0.04027456045150757, 0.004130248911678791, -0.01905413530766964, -0.00006992572889430448, -0.03298597410321236, 0.025376299396157265, 0.010139965452253819, 0.03779727220535278, 0.02230170927941799, 0.014902387745678425, -0.029741700738668442, -0.047464825212955475, 0.02299041487276554, 0.05086483433842659, -0.004062584601342678, 0.021458907052874565, 0.008554922416806221, -0.022730160504579544, 0.03412014991044998, -0.033799417316913605, -0.013566884212195873, -0.03894359618425369, -0.004485964309424162, 0.012596630491316319, 0.035483792424201965, -0.06234893202781677, -0.0033255659509450197, -0.0021399417892098427, -0.02764965407550335, 0.036297865211963654, -0.009045053273439407, 0.0073393527418375015, -0.010257026180624962, 0.011127321049571037, 0.002940378151834011, 0.034373726695775986, 0.0031712728086858988, 0.021346677094697952, -0.004268570337444544, 0.04339265078306198, 0.02510165236890316, -0.007715026382356882, 0.014479430392384529, 0.013722449541091919, 0.04177597165107727, -0.019776171073317528, 0.022261766716837883, 0.02169479988515377, -0.016550138592720032, 0.027452919632196426, -0.02494027651846409, -0.04092664271593094, -0.0367199145257473, -0.029517583549022675, 0.020808594301342964, 0.028462061658501625, 0.0011112837819382548, -0.01676446571946144, 0.013190561905503273, -0.03431743383407593, -0.017380353063344955, 0.01773287169635296, -0.05027592182159424, -0.043993670493364334, 0.06900662183761597, -0.019009416922926903, 0.007092204876244068, -0.00835472159087658, -0.022890059277415276, -0.01877208985388279, -0.016158362850546837, 0.010470208711922169, -0.022637568414211273, 0.024915197864174843, 0.002775543602183461, 0.03129177540540695, 0.00244069192558527, 0.020101668313145638, 0.022391868755221367, 0.05324545502662659, -0.02858847565948963, -0.06066345423460007, 0.028307314962148666, 0.028948869556188583, 0.019246067851781845, -0.0063024237751960754, -0.004280641674995422, -0.0017331821145489812, -0.012641389854252338, -0.013558976352214813, 0.010546824894845486, 0.026147641241550446, 0.018679512664675713, 0.03220463916659355, -0.013719659298658371, -0.003093298990279436, -0.023997336626052856, 0.04301699250936508, -0.040539760142564774, -0.020036768168210983, -0.04036631062626839, 0.06053115800023079, 0.044945403933525085, -0.008764597587287426, 0.05179446190595627, -0.025574207305908203, 0.0225476436316967, -0.004825946409255266, 0.013902460224926472, -0.021823817864060402, 0.047575198113918304, 0.032744262367486954, 0.05195809528231621, -0.012684203684329987, 0.00809426698833704, 0.027939902618527412, 0.010964561253786087, 0.01529514417052269, 0.003530144225805998, 0.048975780606269836, -0.029818443581461906, 0.0015701822703704238, 0.0026595958042889833, -0.007315200753509998, 0.003174402518197894, -0.015318276360630989, 0.01413356326520443, -0.02319597266614437, -0.00880388543009758, -0.004370862618088722, -0.016406726092100143, 0.04643937572836876, -0.006048085633665323, 0.008328018710017204, 0.00042022537672892213, -0.01621922105550766, 0.00635818624868989, 0.03430565819144249, 0.0008080249535851181, 0.0038098508957773447, 0.028740953654050827, 0.006502283737063408, -0.02611173689365387, 0.03005458414554596, 0.007974610663950443, 0.011940974742174149, -0.003989961929619312, 0.03312767669558525, 0.024171149358153343, -0.013605240732431412, -0.012381289154291153, 0.020532594993710518, -0.05382067710161209, 0.04059974476695061, -0.008750619366765022, -0.009867127984762192, 0.05635668709874153, -0.03975619748234749, -0.01291483175009489, -0.05906996876001358, 0.034868717193603516, -0.0366230271756649, -0.014962653629481792, 0.039551664143800735, -0.032101117074489594, -0.02597792260348797, 0.017182422801852226, 0.005393594969063997, 0.014431373216211796, 0.02543426863849163, 0.043172288686037064, -0.004405879881232977, 0.023739684373140335, 0.03690814971923828, -0.04347803443670273, -0.019398026168346405, 0.03233802318572998, -0.030083196237683296, -0.03948308154940605, -0.013567433692514896, -0.04270053654909134, 0.01937979646027088, -0.008405922912061214, -0.005240614991635084, 0.024392761290073395, 0.02078213542699814, 0.028425773605704308, -0.024849094450473785, -0.02853507548570633, 0.022994261234998703, -0.030866682529449463, 0.0009956264402717352, 0.008333769626915455, 0.023133065551519394, -0.01740878075361252, 0.008483785204589367, -0.03947571665048599, -0.005121474154293537, -0.0024827304296195507, -0.023626836016774178, 0.06787149608135223, -0.011088190600275993, -0.023152900859713554, -0.047415949404239655, -0.05323224514722824, -0.022359319031238556, 0.0203869566321373, -0.051542021334171295, -0.03604733943939209, 0.017584824934601784, 0.055894095450639725, -0.02796311303973198, 0.002854641294106841, -0.00507636833935976, -0.023840541020035744, 0.07058043777942657, 0.05170349404215813, -0.01113496907055378, 0.006122755352407694, 0.011531563475728035, 0.00019914450240321457, 0.02058132365345955, -0.026954367756843567, 0.0197520200163126, -0.005997863598167896, -0.03082466684281826, -0.05458461120724678, 0.011551466770470142, -0.015080646611750126, -0.06394965946674347, 0.014920943416655064, 0.006727912928909063, 0.01881161890923977, -0.023340865969657898, -0.08427150547504425, -0.02611786313354969, -0.02148752473294735, -0.0056194583885371685, -0.026776574552059174, 0.02299964241683483, 0.03568897768855095, 0.0021623398642987013, 0.003580781864002347, -0.08419380336999893, 0.15690582990646362, 0.05135522037744522, 0.008108546026051044, 0.016261085867881775, 0.040738191455602646, 0.05862748250365257, 0.0370047353208065, 0.02389795333147049, 0.003120024688541889, -0.03223489969968796, 0.027253568172454834, -0.015205771662294865, 0.029883183538913727, 0.0030070715583860874, 0.008702291175723076, 0.024476101621985435, -0.035815171897411346, 0.005172298289835453, 0.021743517369031906, -0.01657859981060028, -0.05454075708985329, 0.02722594514489174, -0.0028451334219425917, 0.007864509709179401, -0.01725313998758793, 0.0026608267799019814, -0.01462011318653822, -0.04774121567606926, -0.01052345335483551, -0.032288599759340286, 0.036096539348363876, -0.018587280064821243, 0.06463604420423508, -0.00016720678831916302, -0.02372431941330433, 0.05061953887343407, 0.017705457285046577, -0.03506462648510933, 0.010590230114758015, 0.020098639652132988, -0.032506976276636124, -0.0064173052087426186, 0.018666476011276245, -0.025323396548628807, 0.023528218269348145, 0.025508232414722443, -0.04521968960762024, 0.016414975747466087, 0.014222036115825176, -0.009402711875736713, 0.09097342938184738, -0.03428833559155464, 0.047722894698381424, -0.0065827202051877975, -0.013691910542547703, 0.030377520248293877, 0.004546544048935175, -0.03317958116531372, -0.010802002623677254, -0.004555698949843645, 0.0219546128064394, 0.005851736757904291, -0.021700898185372353, 0.025057217106223106, -0.02704676054418087, 0.017253359779715538, 0.03594917431473732, 0.00922208558768034, -0.0058402870781719685, -0.035690274089574814, 0.0014908674638718367, 0.01167354453355074, -0.01119716465473175, -0.04375004395842552, 0.048149459064006805, 0.021235400810837746, -0.031015224754810333, 0.015166430734097958, -0.0031005116179585457, -0.020362796261906624, 0.021074874326586723, -0.056042592972517014, -0.01100926473736763, 0.0017775062005966902, 0.007031170651316643, 0.03396625071763992, -0.02276117168366909, -0.026025861501693726, -0.008140469901263714, 0.04593713581562042, 0.057449791580438614, 0.01252662017941475, 0.008659899234771729, 0.0011561114806681871, -0.01407654769718647 ]
New Revolutionary Japanese Invention Allows Men To Breastfeed Their Babies Snack Attack! Fishermen Watch In Shock As A Hungry Crocodile Steals A Shark They Had Just Caught Touching Bodycam Footage Shows Cop Hugging Scared Suspect After Chase Little Girl Serenades Her Beloved Cat One Last Time Before He Passes Away Sasha Alexander: Interesting Facts About the NCIS and Rizzoli & Isles Star Sasha Alexander is a famous American actress who has Serbian and Italian roots. Sasha Alexander is most renowned for her portrayal of Caitlin Todd in the famous detective drama NCIS. She also played the titular role of coroner Maura Isles in the famous show Rizzoli & Isles. She also starred in the romantic drama flick Rose Fever. Let's find out more about her. Who is Sasha Alexander? When was Sasha Alexander born? She was born on May 17th, 1973 in Los Angeles, California. When did Sasha Alexander start acting? She started acting at school in 7th grade. She also did ice skating, but had to abandon it because she suffered a devastating knee injury. She continued to perform in high school and college, and later moved to New York to perform in traditional summer theater and Shakespeare festivals. She graduated from the University of Southern California's Film School. What is Sasha Alexander's religion? Sasha Alexander is Jewish although ironically her character in the movie Rose Fever is a devout Catholic. Sasha Alexander: Professional Acting Career Sasha Alexander Alexander acted regularly in two short series: the medical drama Presidio Med and the 1920s ABC drama, Wasteland. She was featured in the fourth season of Dawson's Creek as Gretchen Witter, and also in an episode of the comedy series Greg the Bunny, playing the role of a lesbian reporter in which she gives Sarah Silverman a memorable kiss. She was also featured in the films Lucky 13, The Other Couple, and Twin Falls Idaho. Her role on the series NCIS ended in May 2005, and she landed a small role in Mission: Impossible 3. She worked on an episode of the series The Nine as Nick's ex-wife, and most recently has made guest appearances on the series Dark Blue and House MD. What is Sasha Alexander's most famous role? In 2010, Sasha Alexander started portraying the forensic doctor "Maura Isles" on the hit show Rizzoli & Isles during its first, second, third and fourth season, which premiered on June 25th, 2013. Who is Sasha Alexander married to? On August 11, 2007, Sasha Alexander married director Edoardo Ponti, son of actress Sofia Loren and film producer Carlo Ponti. They were married in Geneva, Switzerland. How many children does Sasha Alexander have? Sasha Alexander has two children, Lucia Sofia, born May 12th, 2006 and Leonardo Fortunato, born on December 20th, 2010. Her best friend is Jessica Capshaw. Sasha and Jessica are godmothers to each other's children. Sasha Alexander: Best Quotes Stage work, that's all I have in my background. Wasteland was my first TV experience. Dawson's was my first long-term, I mean the entire season of 22 episodes. I entered into Dawson's Creek to do a couple of episodes. They weren't sure about my role in the beginning, but then the chemistry kind of worked. When I graduated college I needed to make money while I was pursuing acting, so I read screenplays and made a living writing coverage on them for studios. I still feel like I have a lot of growing up to do 'til I find the voice. Everybody has their own voice and their own thing they want to say to the world. I just saw the movie for the first time in its entirely last night. It's really cool when you're in with an audience that's so tuned in and plugged in to what's going on. Hollywood looks to these young people now to say something to the world. I have nothing against that, I think a lot of people have things to say. But I think you need life experience. I always say if you've seen good acting on television, those actors are really good. Because there's just not enough time. You don't have any preparation. I really love the process, with stage, of rehearsal, you get to create a character, and you have a beginning, a middle, and an end of story. And in television, you don't. I'm going to tell stories to the world. I think there's time for me to grow. We'll see. Did Sasha Alexander want to be an exotic dancer? Yes, actress Sasha Alexander famously said in an interview, "I actually wanted to be an exotic dancer, but that didn't work out so I thought I'd take on acting." Why did Sasha Alexander leave NCIS? The long-running hit crime drama on the CBS network, NCIS, just unveiled the season 18 finale this week, leaving the door open for the 19th installment that should appear on screen in late 2021. NCIS began in 2003 with its first episodes, and over the years criminal drama fans have become accustomed to seeing countless characters come and go who have come to life in the plot of the procedural series. One of NCIS's most notable exits was that of star Sasha Alexander, who played agent Caitlin 'Kate' Todd, staying from the series' premiere in 2003 through season 2. At the series premiere, Todd was a Secret Service agent, but team leader Leroy Gibbs (Mark Harmon) made her an offer to be a part of NCIS, and then she quickly became a fan favorite due to her ongoing flirtation with Tony DiNozzo, Michael Weatherly's character. However, it was at the end of the second installment that NCIS surprised fans when they k****d Kate, despite the fact that Sasha Alexander had a six-season contract and fans expected Kate to be around for a long time. Alexander's departure from the CBS series generated intrigue among fans who were dismayed by her character's early d***h on NCIS. Sasha Alexander wanted out of NCIS Well, what many probably do not know is that Sasha Alexander asked to leave her contract, as confirmed by the actress to TV Guide in 2012 saying that she found the workload difficult at NCIS. This explained: "it's tough" because it takes 10 months a year, 17 hours a day to shoot a full season. I truly believe firmly in my heart that I would not be where I am today โ€“ happily married, with two kids, doing things creatively that I want โ€“ if I had stayed, "Alexander said." I didn't want to wake up and be in my 40s and say: ' Oh my God!' But people don't get it. "Behind the scenes, Alexander was having some major problems. When she left NCIS, the official line was that she wanted to move on to other projects. But according to then-showrunner Donald P. Bellisario found that the workload was too much for her. Posted inInfo 7 cosas que las personas felices nunca tienen en su cuarto Copyright ยฉ 2022 Another Perspective โ€“ Glob theme by FameThemes
[ -0.006790877319872379, 0.013313558883965015, -0.004875170532613993, -0.017794648185372353, -0.012673881836235523, -0.01592668518424034, -0.04720790311694145, 0.014340626075863838, -0.0028527837712317705, 0.008423754014074802, 0.03411901742219925, -0.016946589574217796, 0.021720338612794876, -0.023645520210266113, -0.018396906554698944, -0.024478835985064507, 0.004331349860876799, -0.03842579945921898, -0.01563579961657524, -0.0044809263199567795, 0.008715370669960976, 0.028746290132403374, -0.06854887306690216, -0.022868281230330467, -0.045897215604782104, 0.04666706919670105, 0.03925332799553871, -0.014959537424147129, 0.02494659833610058, 0.03229970484972, -0.03147834539413452, -0.034221068024635315, 0.033442433923482895, -0.055299095809459686, 0.016431057825684547, -0.016796082258224487, 0.048362161964178085, 0.0035737412981688976, -0.011619704775512218, -0.05569378286600113, 0.0035094297491014004, -0.02306663803756237, 0.03560884669423103, -0.0014632493257522583, -0.03626954182982445, 0.01887940987944603, 0.010051841847598553, 0.00036888517206534743, 0.014037747867405415, -0.015994135290384293, 0.010691167786717415, -0.00972822867333889, 0.019362568855285645, -0.0014783237129449844, 0.006471619009971619, 0.0004856230807490647, 0.014834210276603699, 0.023807115852832794, 0.018262403085827827, 0.015068786218762398, 0.01873369701206684, -0.03857357054948807, -0.0147548271343112, -0.05706214904785156, 0.010147390887141228, 0.011337424628436565, 0.029867282137274742, -0.002616418059915304, 0.046107515692710876, -0.010153050534427166, 0.0069923195987939835, 0.001225362066179514, -0.05120280385017395, -0.025474920868873596, -0.011425526812672615, 0.009042502380907536, -0.02188505046069622, -0.0021132328547537327, 0.010972382500767708, 0.008927496150135994, 0.024568546563386917, 0.07318883389234543, 0.020499136298894882, 0.0356750525534153, -0.015754418447613716, -0.04725559800863266, -0.021206842735409737, 0.05411818251013756, 0.01813347637653351, 0.010622333735227585, 0.019997544586658478, 0.05746663734316826, 0.00505442637950182, 0.012783847749233246, 0.020985012874007225, 0.06000327691435814, -0.013660892844200134, 0.026186179369688034, 0.035105179995298386, 0.008701810613274574, 0.04214571788907051, 0.04119844362139702, 0.012729847803711891, 0.07441162317991257, -0.023149888962507248, 0.00898350402712822, 0.03605061396956444, 0.0039187646470963955, 0.015547111630439758, -0.01107588317245245, -0.008054995909333229, -0.015174607746303082, 0.025681188330054283, -0.0043851593509316444, 0.008878877386450768, 0.061627913266420364, 0.01544436439871788, 0.046811625361442566, -0.045386359095573425, 0.02887699007987976, 0.009125755168497562, -0.006157137919217348, 0.03289489820599556, -0.027296699583530426, 0.009487680159509182, -0.07349273562431335, -0.0072427475824952126, 0.023796867579221725, -0.013844422064721584, -0.0336289182305336, 0.008020457811653614, -0.04941916838288307, -0.00021485651086550206, 0.0074041495099663734, -0.015243753790855408, 0.003337830537930131, -0.018281755968928337, 0.012540189549326897, 0.02331947162747383, -0.061475373804569244, 0.04291114956140518, 0.008592357859015465, -0.015143371187150478, 0.08374530076980591, 0.011435147374868393, 0.014027732424438, 0.0012012787628918886, -0.02032220922410488, -0.026601146906614304, 0.023148519918322563, -0.06068926677107811, 0.04987501725554466, -0.008493280969560146, -0.003271727589890361, -0.001102814101614058, -0.008752847090363503, 0.019101738929748535, 0.026516376063227654, -0.019747458398342133, 0.04032255336642265, -0.004460653755813837, 0.007941623218357563, -0.01970686763525009, 0.04159412905573845, 0.004214836750179529, 0.030292756855487823, -0.007522251922637224, -0.024425489827990532, -0.017791876569390297, -0.02167293056845665, 0.04175083711743355, 0.0013855064753443003, -0.018613511696457863, 0.016392238438129425, -0.0023560761474072933, 0.018832720816135406, 0.029911601915955544, -0.04891004413366318, 0.024408604949712753, 0.04715704172849655, -0.04296544939279556, -0.014775059185922146, -0.0013413209235295653, 0.048026420176029205, 0.0190201997756958, -0.01624622941017151, 0.005753268022090197, -0.06053990498185158, -0.06370542198419571, -0.057178497314453125, -0.027753716334700584, -0.007848766632378101, -0.009103837423026562, 0.018054435029625893, 0.04369474574923515, 0.01821029745042324, -0.009348222054541111, -0.04743674024939537, -0.009492429904639721, -0.04736891761422157, -0.017551742494106293, 0.07229021936655045, -0.016175083816051483, 0.010820954106748104, -0.014766867272555828, -0.010275088250637054, 0.03830563277006149, 0.0686982125043869, -0.030283572152256966, -0.001073568593710661, 0.0355416014790535, 0.02630644291639328, -0.045946214348077774, -0.019187213853001595, -0.034690920263528824, 0.007605310063809156, -0.062357690185308456, 0.05487561970949173, -0.03564310818910599, 0.00991662684828043, 0.025001872330904007, -0.025148332118988037, 0.053098976612091064, 0.06696301698684692, -0.001271826564334333, -0.003990864381194115, 0.026311829686164856, 0.038017336279153824, -0.02414725348353386, -0.021884439513087273, -0.008859222754836082, 0.05117378383874893, 0.00863507017493248, 0.07453855872154236, 0.031852226704359055, 0.038598425686359406, 0.04269017279148102, 0.03031167946755886, 0.003506653243675828, 0.04370490461587906, -0.01656697876751423, 0.0037469095550477505, 0.03766847029328346, 0.05626970902085304, -0.0013276735553517938, 0.06080319359898567, -0.024622375145554543, -0.018650418147444725, -0.039979152381420135, 0.00951663963496685, -0.00034283276181668043, 0.04078054055571556, 0.021037748083472252, 0.047662220895290375, -0.043815407902002335, 0.002320494269952178, 0.04830855503678322, 0.06324105709791183, -0.025484608486294746, 0.02673390880227089, -0.003501002909615636, 0.00622214749455452, -0.021297628059983253, -0.0013505910756066442, 0.030310193076729774, 0.00017375356401316822, 0.007183864712715149, 0.03329407796263695, 0.006229368969798088, -0.04727283492684364, -0.03943764790892601, -0.05193592607975006, -0.029169728979468346, -0.03747158497571945, -0.04607919976115227, -0.016781112179160118, 0.03997279331088066, -0.04960102587938309, 0.01089845597743988, 0.010898987762629986, -0.015428886748850346, -0.00668707862496376, -0.036551494151353836, 0.0282953642308712, 0.024752680212259293, 0.02320309355854988, -0.05144583806395531, 0.04288523644208908, 0.007388546131551266, 0.034374482929706573, -0.028080105781555176, -0.017720015719532967, -0.02325361780822277, 0.0039433143101632595, 0.022221172228455544, -0.02408311702311039, -0.01588551327586174, -0.042264800518751144, -0.03471321985125542, -0.040191616863012314, 0.03276215121150017, 0.022549783810973167, 0.008797899819910526, 0.005984495859593153, -0.024465057998895645, 0.04191984981298447, 0.027099085971713066, -0.0209555234760046, 0.018353646621108055, 0.03617747500538826, -0.028212709352374077, 0.0660719946026802, 0.0180182047188282, -0.0017315830336883664, -0.021054301410913467, 0.04601341858506203, 0.051963817328214645, 0.015882030129432678, -0.030228398740291595, -0.020817497745156288, -0.03817644715309143, 0.015781717374920845, 0.0115576246753335, -0.0247283186763525, -0.04747313633561134, 0.03317204862833023, 0.010197167284786701, -0.08270197361707687, 0.026609772816300392, -0.05192647501826286, -0.025113223120570183, -0.011262021027505398, -0.04573360085487366, 0.035829149186611176, 0.039468444883823395, 0.049516186118125916, -0.02045200578868389, -0.029127471148967743, 0.0030913075897842646, 0.02164470963180065, 0.04750213399529457, -0.0534447506070137, 0.002101060701534152, 0.02640446648001671, -0.007174712140113115, 0.03397270664572716, 0.0357290543615818, -0.012745717540383339, -0.03222506493330002, 0.016917778179049492, 0.010354898869991302, 0.03043154813349247, 0.06134379282593727, -0.017499279230833054, -0.001754018827341497, 0.03611818328499794, -0.04239862039685249, -0.007267518900334835, 0.013297527097165585, -0.0034202979877591133, 0.03857361897826195, 0.024448176845908165, -0.005740092135965824, -0.04369337484240532, -0.054025426506996155, -0.05070347338914871, 0.0374116413295269, -0.007879559881985188, 0.06428805738687515, -0.040195368230342865, 0.06706511229276657, 0.003252001479268074, -0.04883287847042084, 0.03315727040171623, -0.04885709285736084, 0.0023663833271712065, 0.04851321876049042, 0.005498155485838652, 0.05639493465423584, -0.03729822114109993, 0.023912029340863228, -0.014997564256191254, 0.01511783991008997, 0.04060668125748634, -0.05334046855568886, 0.024252820760011673, -0.021398980170488358, -0.02045459672808647, 0.0066554914228618145, -0.029870565980672836, -0.020264077931642532, -0.02837570197880268, 0.0020726604852825403, 0.0009899574797600508, -0.052880752831697464, -0.056801702827215195, 0.03637657314538956, 0.05235233157873154, 0.05761875584721565, 0.016669990494847298, 0.03743107616901398, 0.007907206192612648, 0.04682423919439316, 0.04153084009885788, -0.016984181478619576, -0.0005579442949965596, -0.05048485845327377, 0.026254380121827126, -0.007648726459592581, -0.015903586521744728, -0.037051647901535034, -0.03997683525085449, -0.02315862476825714, 0.04016292840242386, 0.01475998479872942, -0.03344808891415596, -0.033456165343523026, -0.010693520307540894, -0.009841169230639935, 0.011343871243298054, -0.01747840642929077, -0.028128592297434807, -0.012310546822845936, 0.022983325645327568, 0.0365549735724926, -0.059027668088674545, -0.022920547053217888, -0.0416092574596405, 0.06619862467050552, 0.026722991839051247, -0.002448529237881303, -0.03376438841223717, -0.019206222146749496, -0.039069198071956635, -0.025313274934887886, -0.009145090356469154, 0.026501821354031563, 0.011402711272239685, 0.016747666522860527, -0.03453431650996208, 0.031305503100156784, 0.0422828271985054, 0.0025108479894697666, -0.00842418521642685, -0.0031390623189508915, 0.026891397312283516, 0.03611110523343086, 0.03678235411643982, 0.011678645387291908, -0.03330032527446747, 0.012202399782836437, -0.05155704915523529, 0.06475215405225754, -0.030532365664839745, -0.005831756629049778, -0.006234590895473957, -0.01317478809505701, 0.023978108540177345, 0.049171220511198044, -0.003236697753891349, -0.012117634527385235, -0.05663188546895981, 0.06519632786512375, -0.0434165857732296, -0.05231426656246185, 0.04601456597447395, 0.02051674760878086, -0.015840817242860794, 0.012923815287649632, 0.03942805156111717, -0.004407423082739115, -0.006742422468960285, 0.005458508152514696, -0.0411933995783329, 0.041657157242298126, -0.026586582884192467, 0.02015732042491436, -0.009161250665783882, -0.03251033276319504, 0.01671367883682251, -0.027074359357357025, 0.011647473089396954, 0.0026603173464536667, -0.024189328774809837, -0.01668900065124035, -0.04427291080355644, -0.015776252374053, -0.02677224576473236, -0.00594315817579627, 0.00779659952968359, 0.02449430525302887, -0.029217129573225975, -0.027052966877818108, -0.00911156926304102, -0.01649213209748268, 0.015121662989258766, -0.006091906223446131, -0.01646147295832634, 0.017075130715966225, -0.001622076379135251, -0.010530649684369564, -0.013776889070868492, -0.03997842222452164, 0.015962515026330948, 0.010051694698631763, -0.03045184537768364, -0.054919999092817307, -0.008416685275733471, -0.03187096491456032, -0.007816668599843979, -0.05460602790117264, 0.009435654617846012, -0.01742866262793541, 0.024414408951997757, -0.028075072914361954, -0.01139225997030735, 0.006441502366214991, 0.0005253631970845163, -0.004555815365165472, 0.025844162330031395, 0.04251530021429062, -0.03980015963315964, -0.023154079914093018, 0.057537972927093506, -0.01840520277619362, 0.037046533077955246, -0.015767371281981468, -0.030552435666322708, -0.037509847432374954, -0.02672012895345688, 0.005792536307126284, -0.01981515623629093, -0.015990637242794037, -0.02818462625145912, -0.013525583781301975, -0.02577618509531021, 0.0460098460316658, -0.006505708675831556, 0.019380418583750725, -0.011179572902619839, -0.029249027371406555, 0.022464381530880928, -0.0321822464466095, -0.010672098025679588, -0.009005607105791569, -0.02801363915205002, 0.008046230301260948, 0.04348599538207054, -0.054203152656555176, 0.021085310727357864, 0.002876706188544631, 0.00859073270112276, 0.010746423155069351, -0.03865823894739151, -0.04372329264879227, -0.026177331805229187, 0.014523115940392017, -0.007082864176481962, 0.01230289414525032, 0.004657204262912273, -0.04668392613530159, 0.029935181140899658, -0.06965180486440659, -0.01992746628820896, -0.020038189366459846, -0.04122745990753174, -0.00807817280292511, -0.030383605509996414, 0.05960821360349655, -0.026243794709444046, -0.006492113694548607, -0.023640582337975502, 0.03956463560461998, 0.037270329892635345, 0.011946666054427624, -0.02090389095246792, -0.03280754014849663, -0.025906212627887726, -0.05324716120958328, 0.017862258478999138, -0.047037988901138306, -0.04332834854722023, -0.02857215516269207, -0.014863148331642151, 0.023912034928798676, -0.005157319363206625, 0.033870190382003784, 0.015123318880796432, -0.0011506056180223823, -0.020599929615855217, -0.006820252165198326, 0.005155304446816444, 0.047926902770996094, -0.006801215000450611, 0.0037352063227444887, -0.008332858793437481, -0.03811509534716606, 0.00042605522321537137, -0.043210651725530624, -0.057886023074388504, -0.06301571428775787, -0.007642752956598997, 0.05904978886246681, -0.010854561813175678, 0.04544159024953842, 0.002241796115413308, -0.038580507040023804, -0.02368452586233616, 0.04279341548681259, 0.004176919348537922, 0.023715216666460037, 0.05520585551857948, 0.009518247097730637, -0.03186946362257004, 0.00818084366619587, -0.0016677939565852284, 0.0018414140213280916, -0.026968250051140785, 0.07210120558738708, -0.0016147778369486332, -0.04468824714422226, 0.031506333500146866, 0.05576510727405548, -0.05616949126124382, -0.0552905909717083, 0.010620776563882828, -0.024302668869495392, 0.027489131316542625, -0.031599193811416626, -0.01688258722424507, -0.006048462353646755, -0.03330415487289429, 0.006257765926420689, 0.0435134693980217, -0.005171278957277536, 0.03972991183400154, -0.0020191215444356203, 0.018562739714980125, -0.03553130477666855, 0.0075448439456522465, 0.04393878951668739, -0.006941630970686674, -0.023851951584219933, -0.027608642354607582, -0.02966560237109661, -0.018483852967619896, 0.04258329048752785, 0.019412372261285782, -0.04173211008310318, 0.025644902139902115, 0.04409973323345184, -0.015040358528494835, 0.03790333867073059, -0.00033278364571742713, -0.02050199918448925, 0.010322648100554943, -0.04035811498761177, -0.05951765924692154, -0.052034202963113785, 0.0374438650906086, -0.03804758936166763, 0.018449515104293823, -0.06529558449983597, -0.012172951363027096, 0.031527433544397354, -0.0049714320339262486, -0.009448722936213017, -0.05556005612015724, -0.04088107496500015, -0.026628516614437103, -0.047578152269124985, -0.028015093877911568, 0.003204022767022252, -0.02558569796383381, 0.013666716404259205, -0.0006081773317418993, -0.027456996962428093, 0.010283770971000195, -0.02466464228928089, -0.00642704451456666, 0.009574864991009235, -0.029852157458662987, 0.007487175986170769, -0.029637018218636513, -0.023716473951935768, -0.03878762200474739, -0.0327845998108387, -0.003605886595323682, 0.024898774921894073, 0.011110659688711166, 0.007175946142524481, -0.012414810247719288, 0.019060198217630386, 0.03190052509307861, 0.010004041716456413, -0.003649918595328927, -0.014821460470557213, -0.018759334459900856, 0.03990890085697174, -0.0024833539500832558, 0.030595488846302032, 0.04138932004570961, -0.05104931443929672, 0.025589652359485626, 0.023686787113547325, -0.03560904040932655, -0.038087520748376846, -0.007200601976364851, 0.023714860901236534, 0.03065192885696888, -0.02399306371808052, -0.02858099527657032, -0.012221814133226871, -0.040274351835250854, 0.02104218117892742, 0.05357819050550461, -0.004242457915097475, 0.01415671594440937, 0.008850481361150742, -0.01169834565371275, 0.05411450192332268, -0.024311376735568047, 0.03169025480747223, 0.006132257636636496, 0.007065622601658106, 0.0022499808110296726, -0.012072896584868431, 0.009457328356802464, 0.019846111536026, 0.03798883780837059, -0.015941724181175232, 0.020422127097845078, 0.0260406956076622, 0.026403674855828285, 0.05089966952800751, -0.008519934490323067, -0.050698332488536835, -0.048460789024829865, -0.020428767427802086, -0.013752931728959084, 0.0402371883392334, 0.02099718526005745, 0.010075452737510204, 0.022708896547555923, -0.049658481031656265, -0.05501608923077583, -0.0036917980760335922, -0.07025928795337677, -0.02330184541642666, 0.008122039027512074, -0.007282654754817486, -0.011786493472754955, -0.03436239808797836, -0.02064511738717556, -0.014724791049957275, 0.02479919232428074, 0.02492867223918438, -0.03109779767692089, 0.018563440069556236, 0.007005070336163044, 0.05519561469554901, 0.028529319912195206, -0.006570457946509123, -0.0005187675124034286, 0.04136643558740616, -0.044902168214321136, -0.02737550064921379, -0.006188076455146074, 0.026440614834427834, 0.004572069272398949, -0.009022596292197704, -0.01974826119840145, 0.04387134686112404, 0.011682822369039059, -0.015745697543025017, 0.010097485035657883, 0.04217369481921196, 0.014326120726764202, 0.02298756130039692, -0.04123577103018761, -0.003315897425636649, -0.015376281924545765, 0.03126215934753418, -0.0188540518283844, -0.05048248544335365, -0.0404776893556118, 0.019850198179483414, 0.04003714770078659, -0.02933485060930252, 0.05688002333045006, 0.021038921549916267, 0.030744314193725586, -0.02200743369758129, 0.02602395974099636, 0.007210595533251762, 0.05695595219731331, 0.006631190422922373, 0.056150902062654495, -0.023152856156229973, 0.03299236297607422, 0.037535060197114944, -0.021120520308613777, -0.014118362218141556, 0.03162895143032074, 0.04082385078072548, -0.011163141578435898, -0.02212490886449814, -0.024184957146644592, -0.00092555012088269, -0.0044328151270747185, -0.0009581308695487678, -0.00583557179197669, -0.016341708600521088, 0.006993030197918415, -0.006427706219255924, -0.019249042496085167, 0.03936105594038963, -0.02246863767504692, 0.014155277982354164, -0.01043560728430748, 0.0015070306835696101, -0.039468538016080856, 0.04963970184326172, -0.01537596620619297, 0.038839325308799744, 0.037197891622781754, 0.011154960840940475, -0.02769152820110321, 0.03352637588977814, 0.013645385392010212, 0.007163402158766985, -0.0339890718460083, -0.014885975979268551, 0.02201327681541443, 0.023325661197304726, -0.017227832227945328, 0.021280312910676003, -0.02040315978229046, 0.03429257124662399, -0.0245633814483881, -0.003137078834697604, 0.06420328468084335, -0.046960677951574326, -0.020008042454719543, -0.03016834519803524, 0.06370735913515091, 0.0037641706876456738, 0.010389403440058231, 0.04456755518913269, 0.005828112363815308, -0.009639803320169449, 0.04172103852033615, 0.021902667358517647, 0.046216897666454315, 0.0056691644713282585, 0.05446336418390274, -0.025120137259364128, 0.06925766170024872, 0.029847264289855957, -0.016204833984375, -0.00547994626685977, 0.021384363994002342, -0.025918617844581604, -0.08585549890995026, -0.009699350222945213, -0.027358341962099075, 0.017355624586343765, -0.029763875529170036, 0.023369625210762024, 0.000058420893765287474, 0.04059901461005211, -0.02452005073428154, -0.03765428066253662, 0.009631872177124023, 0.02111160196363926, -0.010629990138113499, 0.012769192457199097, 0.004189210943877697, 0.043556660413742065, -0.014187592081725597, 0.027984673157334328, -0.04794180393218994, -0.03963732346892357, -0.011062687262892723, -0.01602020673453808, 0.043509311974048615, -0.02017289772629738, -0.01847165636718273, -0.024742456153035164, -0.07530242949724197, -0.045056506991386414, -0.0023386573884636164, -0.025793511420488358, -0.06607598811388016, 0.02778738923370838, 0.05287909135222435, 0.004446160979568958, 0.012304295785725117, -0.01388713251799345, 0.007751992903649807, 0.028571536764502525, 0.04773673787713051, 0.013344787061214447, 0.024966469034552574, 0.01184123009443283, -0.030199473723769188, 0.02310267649590969, -0.023529376834630966, 0.004692848306149244, -0.03442943096160889, -0.010772817768156528, -0.020294738933444023, 0.030833454802632332, -0.003343533491715789, -0.06136578693985939, 0.0383414626121521, 0.0024865325540304184, 0.02028944529592991, -0.03696616366505623, -0.07257479429244995, -0.012571549043059349, -0.03275412321090698, 0.01934805139899254, -0.020488427951931953, -0.0069083222188055515, -0.01025925949215889, 0.02861998789012432, 0.0010203705169260502, -0.07362198829650879, 0.1620904505252838, 0.04574600234627724, 0.061219342052936554, -0.023282866925001144, 0.03316820040345192, 0.046627454459667206, 0.007607398554682732, 0.0001274844107683748, 0.010949011892080307, -0.0511775016784668, 0.01891225390136242, -0.0062800743617117405, 0.022458966821432114, 0.0010979430517181754, 0.026772886514663696, 0.051489170640707016, -0.032405510544776917, 0.005905947182327509, 0.024396877735853195, -0.0473017543554306, -0.04608885943889618, 0.031641118228435516, -0.03316459432244301, 0.022860538214445114, -0.015567866154015064, 0.026052994653582573, 0.03531520441174507, -0.05497699975967407, -0.021321957930922508, -0.05777896195650101, 0.030831707641482353, -0.010747156105935574, 0.020238589495420456, -0.03739673271775246, -0.010348289273679256, 0.03938065841794014, -0.022943586111068726, -0.010885398834943771, 0.005933712236583233, 0.026271089911460876, -0.004610102623701096, 0.024602295830845833, 0.023785986006259918, -0.035543084144592285, 0.00718269869685173, 0.004183121956884861, -0.04338472709059715, 0.0015031266957521439, 0.011855473741889, -0.061604999005794525, 0.03659946471452713, -0.04719095677137375, 0.025280402973294258, -0.0017408186104148626, -0.022154483944177628, 0.03744184225797653, 0.0004902432556264102, -0.028239039704203606, 0.010453187860548496, 0.014651961624622345, 0.03010665252804756, -0.004567968193441629, -0.0637139305472374, 0.004557223524898291, 0.005552138667553663, 0.02531176432967186, 0.02591094560921192, 0.0024523085448890924, -0.03827199712395668, -0.01503176148980856, -0.02035878412425518, -0.025205235928297043, -0.0019473943393677473, -0.01986563950777054, 0.04512190446257591, 0.022800583392381668, -0.009354616515338421, 0.0328250490128994, -0.017138594761490822, -0.015558959916234016, -0.02134743519127369, -0.030775895342230797, -0.012064207345247269, 0.01986105553805828, 0.03559669107198715, 0.03487112373113632, 0.002116361865773797, -0.0062129320576786995, -0.013933165930211544, 0.050794076174497604, 0.04223531112074852, 0.0037303452845662832, -0.008041629567742348, 0.025192731991410255, -0.03261886537075043 ]