<!DOCTYPE html><html data-region="na,us" data-reactid=".1c9jte0nxqy" data-react-checksum="-1489080025"><head data-reactid=".1c9jte0nxqy.0"><title data-reactid=".1c9jte0nxqy.0.0">Weakened Harvey Douses Louisiana: Live Coverage</title><meta http-equiv="X-UA-Compatible" content="IE=edge" data-reactid=".1c9jte0nxqy.0.1"/><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" data-reactid=".1c9jte0nxqy.0.2"/><meta name="viewport" content="initial-scale=1.0001, minimum-scale=1.0001,
        maximum-scale=1.0001, user-scalable=no" data-reactid=".1c9jte0nxqy.0.3"/><meta name="description" content="Weakened Harvey Douses Louisiana: Live Coverage" data-reactid=".1c9jte0nxqy.0.4"/><meta name="keywords" content="hurricane harvey texas storm, Live, coverage, from, the, Wall, Street, Journal." data-reactid=".1c9jte0nxqy.0.5"/><meta name="news_keywords" content="hurricane harvey texas storm, Live, coverage, from, the, Wall, Street, Journal." data-reactid=".1c9jte0nxqy.0.6"/><meta name="page.site" content="wsj" data-reactid=".1c9jte0nxqy.0.7"/><meta name="page.site.product" content="WSJ" data-reactid=".1c9jte0nxqy.0.8"/><meta name="stack.name" content="dj01:vir:prod-live-coverage" data-reactid=".1c9jte0nxqy.0.9"/><meta name="referrer" content="always" data-reactid=".1c9jte0nxqy.0.a"/><link rel="canonical" href="https://www.wsj.com/livecoverage/hurricane-harvey-live-coverage" data-reactid=".1c9jte0nxqy.0.b"/><meta property="og:url" content="https://www.wsj.com/livecoverage/hurricane-harvey-live-coverage" data-reactid=".1c9jte0nxqy.0.c:$0"/><meta property="og:title" content="Weakened Harvey Douses Louisiana: Live Coverage" data-reactid=".1c9jte0nxqy.0.c:$1"/><meta property="og:description" content="Tropical Storm Harvey came ashore again, bringing heavy rains and winds to southwestern Louisiana, but far less than the record rainfall it brought to Texas." data-reactid=".1c9jte0nxqy.0.c:$2"/><meta property="og:type" content="article" data-reactid=".1c9jte0nxqy.0.c:$3"/><meta property="og:site_name" content="WSJ" data-reactid=".1c9jte0nxqy.0.c:$4"/><meta property="og:image" content="https://si.wsj.net/public/resources/images/BN-UV000_HARVEY_G_20170824175405.jpg" data-reactid=".1c9jte0nxqy.0.c:$5"/><meta property="twitter:site" content="@wsj" data-reactid=".1c9jte0nxqy.0.c:$6"/><meta property="twitter:app:name:iphone" content="The Wall Street Journal" data-reactid=".1c9jte0nxqy.0.c:$7"/><meta property="twitter:app:name:googleplay" content="The Wall Street Journal" data-reactid=".1c9jte0nxqy.0.c:$8"/><meta property="twitter:card" content="summary_large_image" data-reactid=".1c9jte0nxqy.0.c:$9"/><meta property="twitter:url" content="https://www.wsj.com/livecoverage/hurricane-harvey-live-coverage" data-reactid=".1c9jte0nxqy.0.c:$10"/><meta property="fb:pages" content="8304333127" data-reactid=".1c9jte0nxqy.0.c:$11"/><meta name="fb:app_id" content="368513495882" data-reactid=".1c9jte0nxqy.0.c:$12"/><meta name="page.content.type" content="Blogs" data-reactid=".1c9jte0nxqy.0.c:$13"/><meta name="page.section" content="Live Coverage" data-reactid=".1c9jte0nxqy.0.c:$14"/><meta name="page.content.source" content="WSJ Online" data-reactid=".1c9jte0nxqy.0.c:$15"/><meta name="page.id" content="livecoverage_hurricane-harvey-live-coverage" data-reactid=".1c9jte0nxqy.0.c:$16"/><meta name="ad.id" content="live_article" data-reactid=".1c9jte0nxqy.0.c:$17"/><meta name="page.subsection" content="hurricane-harvey-live-coverage" data-reactid=".1c9jte0nxqy.0.c:$18"/><meta property="article:publisher" content="https://www.facebook.com/wsj" data-reactid=".1c9jte0nxqy.0.c:$19"/><meta name="user.type" content="nonsubscriber" data-reactid=".1c9jte0nxqy.0.c:$20"/><script data-reactid=".1c9jte0nxqy.0.$load-font">
  function loadFont(fontName, woffUrl, woff2Url, onlyLoadFontOnSecondPageload) {
      var nua = navigator.userAgent;
      var noSupport = !window.addEventListener // IE8 and below
              || (nua.match(/(Android (2|3|4.0|4.1|4.2|4.3))|(Opera (Mini|Mobi))/) && !nua.match(/Chrome/))

      if (noSupport) { return; }

      var loSto = {};
      try {
          loSto = localStorage || {};
      } catch(ex) {}

      var localStoragePrefix = 'x-font-' + fontName;
      var localStorageUrlKey = localStoragePrefix + 'url';
      var localStorageCssKey = localStoragePrefix + 'css';
      var storedFontUrl = loSto[localStorageUrlKey];
      var storedFontCss = loSto[localStorageCssKey];

      var styleElement = document.createElement('style');
      styleElement.rel = 'stylesheet';
      document.head.appendChild(styleElement);

      if (storedFontCss && (storedFontUrl === woffUrl || storedFontUrl === woff2Url)) {
          styleElement.textContent = storedFontCss;
      } else {

          var url = (woff2Url && supportsWoff2())
              ? woff2Url // WOFF2 URL provided and supported
              : woffUrl; // only WOFF support

          var request = new XMLHttpRequest();
          request.open('GET', url);
          request.onload = function() {
              if (request.status >= 200 && request.status < 400) {
                  try {
                    loSto[localStorageUrlKey] = url;
                    loSto[localStorageCssKey] = request.responseText;
                    if (!onlyLoadFontOnSecondPageload) {
                      styleElement.textContent = request.responseText;
                    }
                  } catch(e) {
                    loSto.clear();
                    loSto[localStorageUrlKey] = url;
                    loSto[localStorageCssKey] = request.responseText;
                    if (!onlyLoadFontOnSecondPageload) {
                      styleElement.textContent = request.responseText;
                    }
                  }
              }
          };
          request.send();
      }

      function supportsWoff2() {
          if (!window.FontFace) {
              return false;
          }

        var f = new FontFace('t', 'url("data:application/font-woff2,") format("woff2")', {});
        var p = f.load();
        try {p.then(null, function(){});}catch(e){}
        return f.status === 'loading';
      }
    }</script><script data-reactid=".1c9jte0nxqy.0.$load-css">
		function loadCSS( href, before, media ){
			var ss = window.document.createElement( "link" );
			var ref = before || window.document.getElementsByTagName( "meta" )[ 0 ];
			var sheets = window.document.styleSheets;
			ss.rel = "stylesheet";
			ss.href = href.trim();
			ss.media = "only x";
			ref.parentNode.appendChild( ss, ref );
			function toggleMedia(){
				var defined;
				for( var i = 0; i < sheets.length; i++ ){
					if( sheets[ i ].href && sheets[ i ].href.indexOf( href.trim().substr(-8)) > -1 ){
						defined = true;
					}
				}
				if( defined ){
					ss.media = media || "all";
				}
				else {
					setTimeout( toggleMedia );
				}
			}

			toggleMedia();
			return ss;
		}

		window.loadCSS = loadCSS;
  </script><script data-reactid=".1c9jte0nxqy.0.$load-js">
		function loadJS(src) {
			var ref = window.document.getElementsByTagName("head")[0];
			var script = window.document.createElement("script");
			script.src = src;
			script.defer = 1;
			ref.parentNode.insertBefore(script, ref);
			return script;
		}
		window.loadJS = loadJS
	</script><link rel="shortcut icon" href="https://s.wsj.net/media/wsj_favicon-16x16.png" sizes="16x16" type="image/x-icon" data-reactid=".1c9jte0nxqy.0.g:$0"/><link rel="shortcut icon" href="https://s.wsj.net/media/wsj_favicon-32x32.png" sizes="32x32" type="image/x-icon" data-reactid=".1c9jte0nxqy.0.g:$1"/><link rel="apple-touch-icon" href="https://s.wsj.net/media/wsj_apple-touch-icon-144x144.png" sizes="144x144" data-reactid=".1c9jte0nxqy.0.g:$2"/><link rel="apple-touch-icon" href="https://s.wsj.net/media/wsj_apple-touch-icon-114x114.png" sizes="114x114" data-reactid=".1c9jte0nxqy.0.g:$3"/><link rel="apple-touch-icon" href="https://s.wsj.net/media/wsj_apple-touch-icon-72x72.png" sizes="72x72" data-reactid=".1c9jte0nxqy.0.g:$4"/><link rel="apple-touch-icon" href="https://s.wsj.net/media/wsj_apple-touch-icon-57x57.png" sizes="57x57" data-reactid=".1c9jte0nxqy.0.g:$5"/><link rel="apple-touch-icon" href="https://s.wsj.net/media/wsj_apple-touch-icon-180x180.png" sizes="180x180" data-reactid=".1c9jte0nxqy.0.g:$6"/><link rel="apple-touch-icon" href="https://s.wsj.net/media/wsj_apple-touch-icon-152x152.png" sizes="152x152" data-reactid=".1c9jte0nxqy.0.g:$7"/><link rel="apple-touch-icon" href="https://s.wsj.net/media/wsj_apple-touch-icon-120x120.png" sizes="120x120" data-reactid=".1c9jte0nxqy.0.g:$8"/><link rel="apple-touch-icon" href="https://s.wsj.net/media/wsj_apple-touch-icon-76x76.png" sizes="76x76" data-reactid=".1c9jte0nxqy.0.g:$9"/><link rel="apple-touch-icon" href="https://s.wsj.net/media/wsj_apple-touch-icon-60x60.png" sizes="60x60" data-reactid=".1c9jte0nxqy.0.g:$10"/><link rel="manifest" href="https://www.wsj.com/manifest.json" data-reactid=".1c9jte0nxqy.0.g:$11"/><link rel="publisher" href="https://plus.google.com/117720626238470886461" data-reactid=".1c9jte0nxqy.0.g:$12"/><link rel="stylesheet" type="text/css" href="//vir.wsj.net/fp/cdn/fp/assets/5c15646cc386b4a072b9/LiveCoveragePage.css" data-reactid=".1c9jte0nxqy.0.g:$13"/><script type="text/javascript" data-reactid=".1c9jte0nxqy.0.h:$a">window.NREUM||(NREUM={});NREUM.info = {"agent":"","beacon":"bam.nr-data.net","errorBeacon":"bam.nr-data.net","licenseKey":"cd2b77ba49","applicationID":"122323846","applicationTime":944.916246,"transactionName":"ZwEAbRQCWEVVVBYPVl5LJ0EWEVNFR10RSX51ME0WCgpAU1dYFANLUQMHFlwQWkNT","queueTime":0,"ttGuid":"e604c12ceaae80","agentToken":null}; (window.NREUM||(NREUM={})).loader_config={xpid:"VQAPVVRUCxABVlNRBQIPUlI="};window.NREUM||(NREUM={}),__nr_require=function(t,e,n){function r(n){if(!e[n]){var o=e[n]={exports:{}};t[n][0].call(o.exports,function(e){var o=t[n][1][e];return r(o||e)},o,o.exports)}return e[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o<n.length;o++)r(n[o]);return r}({1:[function(t,e,n){function r(t){try{c.console&&console.log(t)}catch(e){}}var o,i=t("ee"),a=t(20),c={};try{o=localStorage.getItem("__nr_flags").split(","),console&&"function"==typeof console.log&&(c.console=!0,o.indexOf("dev")!==-1&&(c.dev=!0),o.indexOf("nr_dev")!==-1&&(c.nrDev=!0))}catch(s){}c.nrDev&&i.on("internal-error",function(t){r(t.stack)}),c.dev&&i.on("fn-err",function(t,e,n){r(n.stack)}),c.dev&&(r("NR AGENT IN DEVELOPMENT MODE"),r("flags: "+a(c,function(t,e){return t}).join(", ")))},{}],2:[function(t,e,n){function r(t,e,n,r,c){try{h?h-=1:o(c||new UncaughtException(t,e,n),!0)}catch(f){try{i("ierr",[f,s.now(),!0])}catch(d){}}return"function"==typeof u&&u.apply(this,a(arguments))}function UncaughtException(t,e,n){this.message=t||"Uncaught error with no additional information",this.sourceURL=e,this.line=n}function o(t,e){var n=e?null:s.now();i("err",[t,n])}var i=t("handle"),a=t(21),c=t("ee"),s=t("loader"),f=t("gos"),u=window.onerror,d=!1,p="nr@seenError",h=0;s.features.err=!0,t(1),window.onerror=r;try{throw new Error}catch(l){"stack"in l&&(t(13),t(12),"addEventListener"in window&&t(6),s.xhrWrappable&&t(14),d=!0)}c.on("fn-start",function(t,e,n){d&&(h+=1)}),c.on("fn-err",function(t,e,n){d&&!n[p]&&(f(n,p,function(){return!0}),this.thrown=!0,o(n))}),c.on("fn-end",function(){d&&!this.thrown&&h>0&&(h-=1)}),c.on("internal-error",function(t){i("ierr",[t,s.now(),!0])})},{}],3:[function(t,e,n){t("loader").features.ins=!0},{}],4:[function(t,e,n){function r(){M++,S=y.hash,this[u]=b.now()}function o(){M--,y.hash!==S&&i(0,!0);var t=b.now();this[l]=~~this[l]+t-this[u],this[d]=t}function i(t,e){E.emit("newURL",[""+y,e])}function a(t,e){t.on(e,function(){this[e]=b.now()})}var c="-start",s="-end",f="-body",u="fn"+c,d="fn"+s,p="cb"+c,h="cb"+s,l="jsTime",m="fetch",v="addEventListener",w=window,y=w.location,b=t("loader");if(w[v]&&b.xhrWrappable){var g=t(10),x=t(11),E=t(8),P=t(6),O=t(13),R=t(7),T=t(14),L=t(9),j=t("ee"),N=j.get("tracer");t(15),b.features.spa=!0;var S,M=0;j.on(u,r),j.on(p,r),j.on(d,o),j.on(h,o),j.buffer([u,d,"xhr-done","xhr-resolved"]),P.buffer([u]),O.buffer(["setTimeout"+s,"clearTimeout"+c,u]),T.buffer([u,"new-xhr","send-xhr"+c]),R.buffer([m+c,m+"-done",m+f+c,m+f+s]),E.buffer(["newURL"]),g.buffer([u]),x.buffer(["propagate",p,h,"executor-err","resolve"+c]),N.buffer([u,"no-"+u]),L.buffer(["new-jsonp","cb-start","jsonp-error","jsonp-end"]),a(T,"send-xhr"+c),a(j,"xhr-resolved"),a(j,"xhr-done"),a(R,m+c),a(R,m+"-done"),a(L,"new-jsonp"),a(L,"jsonp-end"),a(L,"cb-start"),E.on("pushState-end",i),E.on("replaceState-end",i),w[v]("hashchange",i,!0),w[v]("load",i,!0),w[v]("popstate",function(){i(0,M>1)},!0)}},{}],5:[function(t,e,n){function r(t){}if(window.performance&&window.performance.timing&&window.performance.getEntriesByType){var o=t("ee"),i=t("handle"),a=t(13),c=t(12),s="learResourceTimings",f="addEventListener",u="resourcetimingbufferfull",d="bstResource",p="resource",h="-start",l="-end",m="fn"+h,v="fn"+l,w="bstTimer",y="pushState",b=t("loader");b.features.stn=!0,t(8);var g=NREUM.o.EV;o.on(m,function(t,e){var n=t[0];n instanceof g&&(this.bstStart=b.now())}),o.on(v,function(t,e){var n=t[0];n instanceof g&&i("bst",[n,e,this.bstStart,b.now()])}),a.on(m,function(t,e,n){this.bstStart=b.now(),this.bstType=n}),a.on(v,function(t,e){i(w,[e,this.bstStart,b.now(),this.bstType])}),c.on(m,function(){this.bstStart=b.now()}),c.on(v,function(t,e){i(w,[e,this.bstStart,b.now(),"requestAnimationFrame"])}),o.on(y+h,function(t){this.time=b.now(),this.startPath=location.pathname+location.hash}),o.on(y+l,function(t){i("bstHist",[location.pathname+location.hash,this.startPath,this.time])}),f in window.performance&&(window.performance["c"+s]?window.performance[f](u,function(t){i(d,[window.performance.getEntriesByType(p)]),window.performance["c"+s]()},!1):window.performance[f]("webkit"+u,function(t){i(d,[window.performance.getEntriesByType(p)]),window.performance["webkitC"+s]()},!1)),document[f]("scroll",r,{passive:!0}),document[f]("keypress",r,!1),document[f]("click",r,!1)}},{}],6:[function(t,e,n){function r(t){for(var e=t;e&&!e.hasOwnProperty(u);)e=Object.getPrototypeOf(e);e&&o(e)}function o(t){c.inPlace(t,[u,d],"-",i)}function i(t,e){return t[1]}var a=t("ee").get("events"),c=t(23)(a,!0),s=t("gos"),f=XMLHttpRequest,u="addEventListener",d="removeEventListener";e.exports=a,"getPrototypeOf"in Object?(r(document),r(window),r(f.prototype)):f.prototype.hasOwnProperty(u)&&(o(window),o(f.prototype)),a.on(u+"-start",function(t,e){var n=t[1],r=s(n,"nr@wrapped",function(){function t(){if("function"==typeof n.handleEvent)return n.handleEvent.apply(n,arguments)}var e={object:t,"function":n}[typeof n];return e?c(e,"fn-",null,e.name||"anonymous"):n});this.wrapped=t[1]=r}),a.on(d+"-start",function(t){t[1]=this.wrapped||t[1]})},{}],7:[function(t,e,n){function r(t,e,n){var r=t[e];"function"==typeof r&&(t[e]=function(){var t=r.apply(this,arguments);return o.emit(n+"start",arguments,t),t.then(function(e){return o.emit(n+"end",[null,e],t),e},function(e){throw o.emit(n+"end",[e],t),e})})}var o=t("ee").get("fetch"),i=t(20);e.exports=o;var a=window,c="fetch-",s=c+"body-",f=["arrayBuffer","blob","json","text","formData"],u=a.Request,d=a.Response,p=a.fetch,h="prototype";u&&d&&p&&(i(f,function(t,e){r(u[h],e,s),r(d[h],e,s)}),r(a,"fetch",c),o.on(c+"end",function(t,e){var n=this;e?e.clone().arrayBuffer().then(function(t){n.rxSize=t.byteLength,o.emit(c+"done",[null,e],n)}):o.emit(c+"done",[t],n)}))},{}],8:[function(t,e,n){var r=t("ee").get("history"),o=t(23)(r);e.exports=r,o.inPlace(window.history,["pushState","replaceState"],"-")},{}],9:[function(t,e,n){function r(t){function e(){s.emit("jsonp-end",[],p),t.removeEventListener("load",e,!1),t.removeEventListener("error",n,!1)}function n(){s.emit("jsonp-error",[],p),s.emit("jsonp-end",[],p),t.removeEventListener("load",e,!1),t.removeEventListener("error",n,!1)}var r=t&&"string"==typeof t.nodeName&&"script"===t.nodeName.toLowerCase();if(r){var o="function"==typeof t.addEventListener;if(o){var a=i(t.src);if(a){var u=c(a),d="function"==typeof u.parent[u.key];if(d){var p={};f.inPlace(u.parent,[u.key],"cb-",p),t.addEventListener("load",e,!1),t.addEventListener("error",n,!1),s.emit("new-jsonp",[t.src],p)}}}}}function o(){return"addEventListener"in window}function i(t){var e=t.match(u);return e?e[1]:null}function a(t,e){var n=t.match(p),r=n[1],o=n[3];return o?a(o,e[r]):e[r]}function c(t){var e=t.match(d);return e&&e.length>=3?{key:e[2],parent:a(e[1],window)}:{key:t,parent:window}}var s=t("ee").get("jsonp"),f=t(23)(s);if(e.exports=s,o()){var u=/[?&](?:callback|cb)=([^&#]+)/,d=/(.*)\.([^.]+)/,p=/^(\w+)(\.|$)(.*)$/,h=["appendChild","insertBefore","replaceChild"];f.inPlace(HTMLElement.prototype,h,"dom-"),f.inPlace(HTMLHeadElement.prototype,h,"dom-"),f.inPlace(HTMLBodyElement.prototype,h,"dom-"),s.on("dom-start",function(t){r(t[0])})}},{}],10:[function(t,e,n){var r=t("ee").get("mutation"),o=t(23)(r),i=NREUM.o.MO;e.exports=r,i&&(window.MutationObserver=function(t){return this instanceof i?new i(o(t,"fn-")):i.apply(this,arguments)},MutationObserver.prototype=i.prototype)},{}],11:[function(t,e,n){function r(t){var e=a.context(),n=c(t,"executor-",e),r=new f(n);return a.context(r).getCtx=function(){return e},a.emit("new-promise",[r,e],e),r}function o(t,e){return e}var i=t(23),a=t("ee").get("promise"),c=i(a),s=t(20),f=NREUM.o.PR;e.exports=a,f&&(window.Promise=r,["all","race"].forEach(function(t){var e=f[t];f[t]=function(n){function r(t){return function(){a.emit("propagate",[null,!o],i),o=o||!t}}var o=!1;s(n,function(e,n){Promise.resolve(n).then(r("all"===t),r(!1))});var i=e.apply(f,arguments),c=f.resolve(i);return c}}),["resolve","reject"].forEach(function(t){var e=f[t];f[t]=function(t){var n=e.apply(f,arguments);return t!==n&&a.emit("propagate",[t,!0],n),n}}),f.prototype["catch"]=function(t){return this.then(null,t)},f.prototype=Object.create(f.prototype,{constructor:{value:r}}),s(Object.getOwnPropertyNames(f),function(t,e){try{r[e]=f[e]}catch(n){}}),a.on("executor-start",function(t){t[0]=c(t[0],"resolve-",this),t[1]=c(t[1],"resolve-",this)}),a.on("executor-err",function(t,e,n){t[1](n)}),c.inPlace(f.prototype,["then"],"then-",o),a.on("then-start",function(t,e){this.promise=e,t[0]=c(t[0],"cb-",this),t[1]=c(t[1],"cb-",this)}),a.on("then-end",function(t,e,n){this.nextPromise=n;var r=this.promise;a.emit("propagate",[r,!0],n)}),a.on("cb-end",function(t,e,n){a.emit("propagate",[n,!0],this.nextPromise)}),a.on("propagate",function(t,e,n){this.getCtx&&!e||(this.getCtx=function(){if(t instanceof Promise)var e=a.context(t);return e&&e.getCtx?e.getCtx():this})}),r.toString=function(){return""+f})},{}],12:[function(t,e,n){var r=t("ee").get("raf"),o=t(23)(r),i="equestAnimationFrame";e.exports=r,o.inPlace(window,["r"+i,"mozR"+i,"webkitR"+i,"msR"+i],"raf-"),r.on("raf-start",function(t){t[0]=o(t[0],"fn-")})},{}],13:[function(t,e,n){function r(t,e,n){t[0]=a(t[0],"fn-",null,n)}function o(t,e,n){this.method=n,this.timerDuration=isNaN(t[1])?0:+t[1],t[0]=a(t[0],"fn-",this,n)}var i=t("ee").get("timer"),a=t(23)(i),c="setTimeout",s="setInterval",f="clearTimeout",u="-start",d="-";e.exports=i,a.inPlace(window,[c,"setImmediate"],c+d),a.inPlace(window,[s],s+d),a.inPlace(window,[f,"clearImmediate"],f+d),i.on(s+u,r),i.on(c+u,o)},{}],14:[function(t,e,n){function r(t,e){d.inPlace(e,["onreadystatechange"],"fn-",c)}function o(){var t=this,e=u.context(t);t.readyState>3&&!e.resolved&&(e.resolved=!0,u.emit("xhr-resolved",[],t)),d.inPlace(t,y,"fn-",c)}function i(t){b.push(t),l&&(x?x.then(a):v?v(a):(E=-E,P.data=E))}function a(){for(var t=0;t<b.length;t++)r([],b[t]);b.length&&(b=[])}function c(t,e){return e}function s(t,e){for(var n in t)e[n]=t[n];return e}t(6);var f=t("ee"),u=f.get("xhr"),d=t(23)(u),p=NREUM.o,h=p.XHR,l=p.MO,m=p.PR,v=p.SI,w="readystatechange",y=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"],b=[];e.exports=u;var g=window.XMLHttpRequest=function(t){var e=new h(t);try{u.emit("new-xhr",[e],e),e.addEventListener(w,o,!1)}catch(n){try{u.emit("internal-error",[n])}catch(r){}}return e};if(s(h,g),g.prototype=h.prototype,d.inPlace(g.prototype,["open","send"],"-xhr-",c),u.on("send-xhr-start",function(t,e){r(t,e),i(e)}),u.on("open-xhr-start",r),l){var x=m&&m.resolve();if(!v&&!m){var E=1,P=document.createTextNode(E);new l(a).observe(P,{characterData:!0})}}else f.on("fn-end",function(t){t[0]&&t[0].type===w||a()})},{}],15:[function(t,e,n){function r(t){var e=this.params,n=this.metrics;if(!this.ended){this.ended=!0;for(var r=0;r<d;r++)t.removeEventListener(u[r],this.listener,!1);if(!e.aborted){if(n.duration=a.now()-this.startTime,4===t.readyState){e.status=t.status;var i=o(t,this.lastSize);if(i&&(n.rxSize=i),this.sameOrigin){var s=t.getResponseHeader("X-NewRelic-App-Data");s&&(e.cat=s.split(", ").pop())}}else e.status=0;n.cbTime=this.cbTime,f.emit("xhr-done",[t],t),c("xhr",[e,n,this.startTime])}}}function o(t,e){var n=t.responseType;if("json"===n&&null!==e)return e;var r="arraybuffer"===n||"blob"===n||"json"===n?t.response:t.responseText;return l(r)}function i(t,e){var n=s(e),r=t.params;r.host=n.hostname+":"+n.port,r.pathname=n.pathname,t.sameOrigin=n.sameOrigin}var a=t("loader");if(a.xhrWrappable){var c=t("handle"),s=t(16),f=t("ee"),u=["load","error","abort","timeout"],d=u.length,p=t("id"),h=t(19),l=t(18),m=window.XMLHttpRequest;a.features.xhr=!0,t(14),f.on("new-xhr",function(t){var e=this;e.totalCbs=0,e.called=0,e.cbTime=0,e.end=r,e.ended=!1,e.xhrGuids={},e.lastSize=null,h&&(h>34||h<10)||window.opera||t.addEventListener("progress",function(t){e.lastSize=t.loaded},!1)}),f.on("open-xhr-start",function(t){this.params={method:t[0]},i(this,t[1]),this.metrics={}}),f.on("open-xhr-end",function(t,e){"loader_config"in NREUM&&"xpid"in NREUM.loader_config&&this.sameOrigin&&e.setRequestHeader("X-NewRelic-ID",NREUM.loader_config.xpid)}),f.on("send-xhr-start",function(t,e){var n=this.metrics,r=t[0],o=this;if(n&&r){var i=l(r);i&&(n.txSize=i)}this.startTime=a.now(),this.listener=function(t){try{"abort"===t.type&&(o.params.aborted=!0),("load"!==t.type||o.called===o.totalCbs&&(o.onloadCalled||"function"!=typeof e.onload))&&o.end(e)}catch(n){try{f.emit("internal-error",[n])}catch(r){}}};for(var c=0;c<d;c++)e.addEventListener(u[c],this.listener,!1)}),f.on("xhr-cb-time",function(t,e,n){this.cbTime+=t,e?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&"function"==typeof n.onload||this.end(n)}),f.on("xhr-load-added",function(t,e){var n=""+p(t)+!!e;this.xhrGuids&&!this.xhrGuids[n]&&(this.xhrGuids[n]=!0,this.totalCbs+=1)}),f.on("xhr-load-removed",function(t,e){var n=""+p(t)+!!e;this.xhrGuids&&this.xhrGuids[n]&&(delete this.xhrGuids[n],this.totalCbs-=1)}),f.on("addEventListener-end",function(t,e){e instanceof m&&"load"===t[0]&&f.emit("xhr-load-added",[t[1],t[2]],e)}),f.on("removeEventListener-end",function(t,e){e instanceof m&&"load"===t[0]&&f.emit("xhr-load-removed",[t[1],t[2]],e)}),f.on("fn-start",function(t,e,n){e instanceof m&&("onload"===n&&(this.onload=!0),("load"===(t[0]&&t[0].type)||this.onload)&&(this.xhrCbStart=a.now()))}),f.on("fn-end",function(t,e){this.xhrCbStart&&f.emit("xhr-cb-time",[a.now()-this.xhrCbStart,this.onload,e],e)})}},{}],16:[function(t,e,n){e.exports=function(t){var e=document.createElement("a"),n=window.location,r={};e.href=t,r.port=e.port;var o=e.href.split("://");!r.port&&o[1]&&(r.port=o[1].split("/")[0].split("@").pop().split(":")[1]),r.port&&"0"!==r.port||(r.port="https"===o[0]?"443":"80"),r.hostname=e.hostname||n.hostname,r.pathname=e.pathname,r.protocol=o[0],"/"!==r.pathname.charAt(0)&&(r.pathname="/"+r.pathname);var i=!e.protocol||":"===e.protocol||e.protocol===n.protocol,a=e.hostname===document.domain&&e.port===n.port;return r.sameOrigin=i&&(!e.hostname||a),r}},{}],17:[function(t,e,n){function r(){}function o(t,e,n){return function(){return i(t,[f.now()].concat(c(arguments)),e?null:this,n),e?void 0:this}}var i=t("handle"),a=t(20),c=t(21),s=t("ee").get("tracer"),f=t("loader"),u=NREUM;"undefined"==typeof window.newrelic&&(newrelic=u);var d=["setPageViewName","setCustomAttribute","setErrorHandler","finished","addToTrace","inlineHit","addRelease"],p="api-",h=p+"ixn-";a(d,function(t,e){u[e]=o(p+e,!0,"api")}),u.addPageAction=o(p+"addPageAction",!0),u.setCurrentRouteName=o(p+"routeName",!0),e.exports=newrelic,u.interaction=function(){return(new r).get()};var l=r.prototype={createTracer:function(t,e){var n={},r=this,o="function"==typeof e;return i(h+"tracer",[f.now(),t,n],r),function(){if(s.emit((o?"":"no-")+"fn-start",[f.now(),r,o],n),o)try{return e.apply(this,arguments)}catch(t){throw s.emit("fn-err",[arguments,this,t],n),t}finally{s.emit("fn-end",[f.now()],n)}}}};a("setName,setAttribute,save,ignore,onEnd,getContext,end,get".split(","),function(t,e){l[e]=o(h+e)}),newrelic.noticeError=function(t){"string"==typeof t&&(t=new Error(t)),i("err",[t,f.now()])}},{}],18:[function(t,e,n){e.exports=function(t){if("string"==typeof t&&t.length)return t.length;if("object"==typeof t){if("undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer&&t.byteLength)return t.byteLength;if("undefined"!=typeof Blob&&t instanceof Blob&&t.size)return t.size;if(!("undefined"!=typeof FormData&&t instanceof FormData))try{return JSON.stringify(t).length}catch(e){return}}}},{}],19:[function(t,e,n){var r=0,o=navigator.userAgent.match(/Firefox[\/\s](\d+\.\d+)/);o&&(r=+o[1]),e.exports=r},{}],20:[function(t,e,n){function r(t,e){var n=[],r="",i=0;for(r in t)o.call(t,r)&&(n[i]=e(r,t[r]),i+=1);return n}var o=Object.prototype.hasOwnProperty;e.exports=r},{}],21:[function(t,e,n){function r(t,e,n){e||(e=0),"undefined"==typeof n&&(n=t?t.length:0);for(var r=-1,o=n-e||0,i=Array(o<0?0:o);++r<o;)i[r]=t[e+r];return i}e.exports=r},{}],22:[function(t,e,n){e.exports={exists:"undefined"!=typeof window.performance&&window.performance.timing&&"undefined"!=typeof window.performance.timing.navigationStart}},{}],23:[function(t,e,n){function r(t){return!(t&&t instanceof Function&&t.apply&&!t[a])}var o=t("ee"),i=t(21),a="nr@original",c=Object.prototype.hasOwnProperty,s=!1;e.exports=function(t,e){function n(t,e,n,o){function nrWrapper(){var r,a,c,s;try{a=this,r=i(arguments),c="function"==typeof n?n(r,a):n||{}}catch(f){p([f,"",[r,a,o],c])}u(e+"start",[r,a,o],c);try{return s=t.apply(a,r)}catch(d){throw u(e+"err",[r,a,d],c),d}finally{u(e+"end",[r,a,s],c)}}return r(t)?t:(e||(e=""),nrWrapper[a]=t,d(t,nrWrapper),nrWrapper)}function f(t,e,o,i){o||(o="");var a,c,s,f="-"===o.charAt(0);for(s=0;s<e.length;s++)c=e[s],a=t[c],r(a)||(t[c]=n(a,f?c+o:o,i,c))}function u(n,r,o){if(!s||e){var i=s;s=!0;try{t.emit(n,r,o,e)}catch(a){p([a,n,r,o])}s=i}}function d(t,e){if(Object.defineProperty&&Object.keys)try{var n=Object.keys(t);return n.forEach(function(n){Object.defineProperty(e,n,{get:function(){return t[n]},set:function(e){return t[n]=e,e}})}),e}catch(r){p([r])}for(var o in t)c.call(t,o)&&(e[o]=t[o]);return e}function p(e){try{t.emit("internal-error",e)}catch(n){}}return t||(t=o),n.inPlace=f,n.flag=a,n}},{}],ee:[function(t,e,n){function r(){}function o(t){function e(t){return t&&t instanceof r?t:t?s(t,c,i):i()}function n(n,r,o,i){if(!p.aborted||i){t&&t(n,r,o);for(var a=e(o),c=l(n),s=c.length,f=0;f<s;f++)c[f].apply(a,r);var d=u[y[n]];return d&&d.push([b,n,r,a]),a}}function h(t,e){w[t]=l(t).concat(e)}function l(t){return w[t]||[]}function m(t){return d[t]=d[t]||o(n)}function v(t,e){f(t,function(t,n){e=e||"feature",y[n]=e,e in u||(u[e]=[])})}var w={},y={},b={on:h,emit:n,get:m,listeners:l,context:e,buffer:v,abort:a,aborted:!1};return b}function i(){return new r}function a(){(u.api||u.feature)&&(p.aborted=!0,u=p.backlog={})}var c="nr@context",s=t("gos"),f=t(20),u={},d={},p=e.exports=o();p.backlog=u},{}],gos:[function(t,e,n){function r(t,e,n){if(o.call(t,e))return t[e];var r=n();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t,e,{value:r,writable:!0,enumerable:!1}),r}catch(i){}return t[e]=r,r}var o=Object.prototype.hasOwnProperty;e.exports=r},{}],handle:[function(t,e,n){function r(t,e,n,r){o.buffer([t],r),o.emit(t,e,n)}var o=t("ee").get("handle");e.exports=r,r.ee=o},{}],id:[function(t,e,n){function r(t){var e=typeof t;return!t||"object"!==e&&"function"!==e?-1:t===window?0:a(t,i,function(){return o++})}var o=1,i="nr@id",a=t("gos");e.exports=r},{}],loader:[function(t,e,n){function r(){if(!x++){var t=g.info=NREUM.info,e=p.getElementsByTagName("script")[0];if(setTimeout(u.abort,3e4),!(t&&t.licenseKey&&t.applicationID&&e))return u.abort();f(y,function(e,n){t[e]||(t[e]=n)}),s("mark",["onload",a()+g.offset],null,"api");var n=p.createElement("script");n.src="https://"+t.agent,e.parentNode.insertBefore(n,e)}}function o(){"complete"===p.readyState&&i()}function i(){s("mark",["domContent",a()+g.offset],null,"api")}function a(){return E.exists&&performance.now?Math.round(performance.now()):(c=Math.max((new Date).getTime(),c))-g.offset}var c=(new Date).getTime(),s=t("handle"),f=t(20),u=t("ee"),d=window,p=d.document,h="addEventListener",l="attachEvent",m=d.XMLHttpRequest,v=m&&m.prototype;NREUM.o={ST:setTimeout,SI:d.setImmediate,CT:clearTimeout,XHR:m,REQ:d.Request,EV:d.Event,PR:d.Promise,MO:d.MutationObserver};var w=""+location,y={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net",agent:"js-agent.newrelic.com/nr-spa-1071.min.js"},b=m&&v&&v[h]&&!/CriOS/.test(navigator.userAgent),g=e.exports={offset:c,now:a,origin:w,features:{},xhrWrappable:b};t(17),p[h]?(p[h]("DOMContentLoaded",i,!1),d[h]("load",r,!1)):(p[l]("onreadystatechange",o),d[l]("onload",r)),s("mark",["firstbyte",c],null,"api");var x=0,E=t(22)},{}]},{},["loader",2,15,5,3,4]);</script><script type="text/javascript" data-reactid=".1c9jte0nxqy.0.h:$l">
    if (typeof PerformanceObserver !== 'undefined'){
      const observer = new PerformanceObserver((list) => {
        for (const entry of list.getEntries()) {
          const metricName = entry.name;
          const time = Math.round(entry.startTime + entry.duration);

          if (typeof newrelic !== 'undefined') {
            newrelic.setCustomAttribute(metricName, time);
          }
        }
      });
      observer.observe({entryTypes: ['paint']});
    }</script><script type="text/javascript" data-reactid=".1c9jte0nxqy.0.h:$b">window.googletag = {cmd: []};</script><script type="application/ld+json" data-reactid=".1c9jte0nxqy.0.h:$j">[
	{
		"@context": "https://schema.org",
		"@type": "BlogPosting",
		"articleSection": "Live Coverage",
		"headline": "Weakened Harvey Douses Louisiana: Live Coverage",
		"url": "https://www.wsj.com/livecoverage/hurricane-harvey-live-coverage",
		"description": "Weakened Harvey Douses Louisiana: Live Coverage",
		"image": {
			"@type": "ImageObject",
			"url": "https://s.wsj.net/media/wsj_amp_masthead_lg.png",
			"width": "576",
			"height": "60"
		},
		"mainEntityOfPage": {
			"@type": "WebPage",
			"@id": "https://www.wsj.com/livecoverage/hurricane-harvey-live-coverage"
		},
		"author": {
			"@type": "Organization",
			"name": "Wall Street Journal"
		},
		"publisher": {
			"@type": "Organization",
			"name": "Wall Street Journal",
			"logo": {
				"@type": "ImageObject",
				"url": "https://s.wsj.net/media/wsj_amp_masthead_lg.png",
				"width": "576",
				"height": "60"
			}
		},
		"datePublished": "2017-08-31T16:42:04-04:00",
		"dateModified": "2017-08-31T16:42:04-04:00",
		"about": {
			"@type": "Event",
			"offers": {
				"@type": "Offer",
				"url": "https://subscribe.wsj.com"
			},
			"performer": {
				"@type": "Organization",
				"name": "Wall Street Journal"
			},
			"description": "Weakened Harvey Douses Louisiana: Live Coverage",
			"name": "Weakened Harvey Douses Louisiana: Live Coverage",
			"image": {
				"@type": "ImageObject",
				"url": "https://s.wsj.net/media/wsj_amp_masthead_lg.png",
				"width": "576",
				"height": "60"
			},
			"startDate": "2017-08-31T16:42:04-04:00",
			"location": {
				"@type": "Place",
				"address": "United States",
				"name": "United States"
			}
		}
	},
	{
		"@context": "https://schema.org",
		"@type": "NewsArticle",
		"articleSection": "Live Coverage",
		"mainEntityOfPage": {
			"@type": "WebPage",
			"@id": "https://www.wsj.com/livecoverage/hurricane-harvey-live-coverage"
		},
		"author": {
			"@type": "Organization",
			"name": "Wall Street Journal"
		},
		"image": {
			"@type": "ImageObject",
			"url": "https://s.wsj.net/media/wsj_amp_masthead_lg.png",
			"width": "576",
			"height": "60"
		},
		"creator": [
			"Michael Driscoll",
			"Yvonne Dennis",
			"Cynthia Lin",
			"Elizabeth Yuan",
			"Jessica Menton",
			"Mary De Wet",
			"Michael Wright",
			"Paul Dyer",
			"Prabha Natarajan",
			"Lora Western",
			"Hillary Canada",
			"Adam Charles Linscott Martin",
			"Thomas Derpinghaus",
			"Erin Mendell",
			"Chris Kirkham",
			"Constantinos Paris",
			"undefined undefined",
			"Dan Frosch",
			"Erin Ailworth",
			"Russell Gold",
			"Josee Rose",
			"Daniel Papp",
			"Bradley Olson",
			"Melanie Evans",
			"Erica Phillips",
			"Sarah Mcfarlane",
			"Biman Mukherji",
			"Miguel Bustillo",
			"Nicole Friedman",
			"Lisa Vickery",
			"Tim Hanrahan",
			"Philip Izzo",
			"Yogi Patel",
			"Nicole Hong",
			"Cameron McWhirter",
			"Daniela Hernandez",
			"Richard Rubin",
			"Benjamin Kesling",
			"Michael C. Bender",
			"Peter Nicholas",
			"Andrew FitzGerald",
			"Ryan Knutson",
			"Anne Pallivathuckal",
			"Tracy Gan",
			"Deepa Seetharaman",
			"Georgia Wells",
			"Lynn Cook",
			"Alison Sider",
			"Christopher Alessi",
			"Gareth Vipers",
			"Roland Keane",
			"Tedra Meyer",
			"Kate Linebaugh",
			"Jon Kamp",
			"Steven Norton",
			"Angus Loten",
			"Christopher Matthews",
			"Stephanie Yang",
			"Ciara Linnane",
			"Dan Molinski",
			"Ben Eisen",
			"Alicia Caldwell",
			"Benjamin Parkin",
			"Quint Forgey",
			"Joseph Barrett",
			"Ted Mann"
		],
		"headline": "Weakened Harvey Douses Louisiana: Live Coverage",
		"url": "https://www.wsj.com/livecoverage/hurricane-harvey-live-coverage",
		"description": "Weakened Harvey Douses Louisiana: Live Coverage",
		"keywords": [
			"hurricane harvey texas storm",
			"Live",
			"coverage",
			"from",
			"the",
			"Wall",
			"Street",
			"Journal."
		],
		"publisher": {
			"@type": "Organization",
			"name": "Wall Street Journal",
			"logo": {
				"@type": "ImageObject",
				"url": "https://s.wsj.net/media/wsj_amp_masthead_lg.png",
				"width": "576",
				"height": "60"
			}
		},
		"datePublished": "2017-08-31T16:42:04-04:00",
		"dateModified": "2017-08-31T16:42:04-04:00"
	}
]</script><script data-reactid=".1c9jte0nxqy.0.i:$0">loadFont("Retina", "https://www.wsj.com/fonts/retina.css");</script><script data-reactid=".1c9jte0nxqy.0.i:$1">loadFont("Exchange", "https://www.wsj.com/fonts/exchange.css");</script><script data-reactid=".1c9jte0nxqy.0.i:$2">loadFont("Escrow Condensed", "https://www.wsj.com/fonts/escrow.css");</script><script defer="" src="https://assets.vidora.com/js/vidora-client.1.2.7.min.js" data-reactid=".1c9jte0nxqy.0.j:$0"></script><noscript data-reactid=".1c9jte0nxqy.0.k"></noscript><noscript data-reactid=".1c9jte0nxqy.0.l"></noscript><script defer="" src="https://sts3.wsj.net/pb/pb.js" data-reactid=".1c9jte0nxqy.0.m"></script><noscript data-reactid=".1c9jte0nxqy.0.n"></noscript></head><body class="layout-livecoverage" data-reactid=".1c9jte0nxqy.1"><div id="facebook-vendor" data-reactid=".1c9jte0nxqy.1.0:$e"><div id="fb-root" data-reactid=".1c9jte0nxqy.1.0:$e.0"></div><script src="//connect.facebook.net/en_US/sdk.js#xfbml=1&amp;version=v2.5" async="" data-reactid=".1c9jte0nxqy.1.0:$e.1"></script></div><div id="LiveCoveragePage" class="clearfix" data-reactid=".1c9jte0nxqy.1.1"><noscript data-reactid=".1c9jte0nxqy.1.1.0"></noscript><div data-reactid=".1c9jte0nxqy.1.1.1"><div class="style__hat_1vqyrZZ3j7vMCXYKbvaqKa style__at16units_3PypR47bhlOs-U1i7X-jAW" data-reactid=".1c9jte0nxqy.1.1.1.0"><div class="style__sector_2MheU6E2YhuW0ixuHfZJrV" data-reactid=".1c9jte0nxqy.1.1.1.0.0"><div class="style__hat-wrapper_3gylmIinwdpz486ZnbI7lK" data-reactid=".1c9jte0nxqy.1.1.1.0.0.0"><div class="style__hat-button_nVhcUNQnJ0JrAsBof3PA4" data-reactid=".1c9jte0nxqy.1.1.1.0.0.0.0"><span data-reactid=".1c9jte0nxqy.1.1.1.0.0.0.0.0">Dow Jones, a News Corp company</span><span class="style__hat-button-arrow_1lShS8UZw_x0s5SfnsP9H0" data-reactid=".1c9jte0nxqy.1.1.1.0.0.0.0.1"></span></div></div></div><div class="style__hat-inner_23wtWt6P0ekPIV5GPU3Q3P" data-reactid=".1c9jte0nxqy.1.1.1.0.1"><div class="style__sector_2MheU6E2YhuW0ixuHfZJrV" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0"><div class="style__hat-inner-wrapper_1BZeD6isBkT7u8WTzueqiS" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0"><div class="style__hat-close_1UhhgoiMEbv7NiecHltl45" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.0"></div><div class="style__hat-bio_At3mHXiNm0bZCcc0BmoYH" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.1">News Corp is a network of leading companies in the worlds of diversified media, news, education, and information services</div><div class="style__hat-products_BnmgrS6xg0wDsbBrw10_O" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2"><div class="style__hat-title_2r8l92eYb72m5OqrR-bRKq" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.0">Dow Jones</div><ul class="style__hat-col_24MLoTMQxwX3pw0oXCWLGH" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$0"><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$0.$0"><a href="http://www.barrons.com/home-page" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$0.$0.0">Barron&#x27;s</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$0.$1"><a href="http://bigcharts.marketwatch.com" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$0.$1.0">BigCharts</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$0.$2"><a href="http://www.wsj.com/public/page/wsj-x-marketing.html" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$0.$2.0">DJX</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$0.$3"><a href="http://new.dowjones.com/products/dj-news" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$0.$3.0">Dow Jones Newswires</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$0.$4"><a href="https://global.factiva.com/factivalogin/login.asp?productname=global" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$0.$4.0">Factiva</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$0.$5"><a href="http://www.efinancialnews.com" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$0.$5.0">Financial News</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$0.$6"><a href="http://www.mansionglobal.com/" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$0.$6.0">Mansion Global</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$0.$7"><a href="http://www.marketwatch.com" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$0.$7.0">MarketWatch</a></li></ul><ul class="style__hat-col_24MLoTMQxwX3pw0oXCWLGH" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$1"><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$1.$9"><a href="https://newsplus.wsj.com" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$1.$9.0">NewsPlus</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$1.$10"><a href="http://privatemarkets.dowjones.com" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$1.$10.0">Private Markets</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$1.$11"><a href="https://djlogin.dowjones.com/login.asp?productname=rnc" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$1.$11.0">Risk &amp; Compliance</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$1.$12"><a href="http://www.wsj.com/conferences" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$1.$12.0">WSJ Conference</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$1.$13"><a href="http://www.wsj.com/pro/centralbanking" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$1.$13.0">WSJ Pro</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$1.$14"><a href="http://live.wsj.com" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$1.$14.0">WSJ Video</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$1.$15"><a href="http://www.wsj.com" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.2.1:$1.$15.0">WSJ.com</a></li></ul></div><div class="style__hat-products_BnmgrS6xg0wDsbBrw10_O" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3"><div class="style__hat-title_2r8l92eYb72m5OqrR-bRKq" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.0">News Corp</div><ul class="style__hat-col_24MLoTMQxwX3pw0oXCWLGH" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$0"><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$0.$0"><a href="http://www.bigdecisions.com/" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$0.$0.0">Big Decisions</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$0.$1"><a href="http://www.businessspectator.com.au/" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$0.$1.0">Business Spectator</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$0.$2"><a href="https://www.checkout51.com/?utm_source=wsj&amp;utm_medium=digitalhousead&amp;utm_campaign=wsjspotlight" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$0.$2.0">Checkout51</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$0.$3"><a href="http://www.harpercollins.com/" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$0.$3.0">Harper Collins</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$0.$4"><a href="http://nypost.com/" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$0.$4.0">New York Post</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$0.$5"><a href="https://www.proptiger.com" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$0.$5.0">PropTiger</a></li></ul><ul class="style__hat-col_24MLoTMQxwX3pw0oXCWLGH" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$1"><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$1.$6"><a href="http://www.rea-group.com/" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$1.$6.0">REA</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$1.$7"><a href="https://www.realtor.com" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$1.$7.0">realtor.com</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$1.$8"><a href="http://storyful.com/" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$1.$8.0">Storyful</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$1.$9"><a href="http://www.theaustralian.com.au" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$1.$9.0">The Australian</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$1.$10"><a href="http://www.thesun.co.uk/sol/homepage/" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$1.$10.0">The Sun</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$1.$11"><a href="http://www.thetimes.co.uk" data-reactid=".1c9jte0nxqy.1.1.1.0.1.0.0.3.1:$1.$11.0">The Times</a></li></ul></div></div></div></div><div class="style__hat-escape_1xL6YaVfiFPI6DXq3KG-8T" data-reactid=".1c9jte0nxqy.1.1.1.0.2"></div></div><div class="WSJTheme__market-data_hC5Q8XMG_GJnAtA-fH8fF" data-reactid=".1c9jte0nxqy.1.1.1.1"><div class="WSJTheme__md-sector_2ldy1fE4UGlWw3QDFvEj-t WSJTheme__sector-unit-16_FyrB2PB3tLz5S8xVU0FMT WSJTheme__is-not-fixed_386D4bT9LDzlIFTVxjFTKF" data-reactid=".1c9jte0nxqy.1.1.1.1.0"></div></div><header class="style__wsj-header_2eGdYq6qJ9DnSzu70Z4bo1 style__is-not-fixed_1jMhvNaGVIeMp84pBZ9jUj style__at16units_1Ajy8qI5jPkLqbasqIErFs" data-reactid=".1c9jte0nxqy.1.1.1.2"><div class="style__sector_3oQF2HzPyaPy3pHJcg5Ttq" data-reactid=".1c9jte0nxqy.1.1.1.2.0"><div class="style__masthead_2SN97Xk2ktaC_662rHZsz2" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0"><div class="style__customer-nav_AkM4UW2WcCzsQLBzgQ6_d" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.0"><div class="style__customer-nav-container_3_92QdnzUhm-yW2af1yb-D" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.0.0"><a class="style__subscribe_10eYZv7Nrwehps3Vf-Hy-E" href="https://subscribe.wsj.com/hpheaderlink" rel="nofollow" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.0.0.0">Subscribe Now</a><a href="https://accounts.wsj.com/login?target=http%3A%2F%2Fwww.wsj.com" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.0.0.1">Sign In</a><div class="style__wsj-nav-promobottom_3cxo1rW2iu37P_RbJ-Ug8E" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.0.0.2"><a href="" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.0.0.2.0"><img src="" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.0.0.2.0.0"/></a></div></div></div><a class="style__brand-link_21t2YbqaDYvH4LO0QT-vmc" href="https://www.wsj.com/" title="The Wall Street Journal" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.1">The Wall Street Journal</a><a class="style__brand-link_21t2YbqaDYvH4LO0QT-vmc style__slim_3Yt-1Jkecgc27ZlzN3GB5x" href="https://www.wsj.com/" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.2"></a><div class="style__masthead-strap_1M8tiEOK_ZstuN4MWbJKCc" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.3"><li class="style__edition-dropdown_HJVEbEuLi4GNp0fF687Yd style__unexpanded_1qs3bFzn9K-ZtXT8LJMm-S" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.3.1"><div class="style__expand-escaper_fZ8bruo0XIWVTIHmRYEQz" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.3.1.0"></div><span class="style__selected-edition_r8UykRoICUJ4BTKG1Y4Wz" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.3.1.1"><span data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.3.1.1.0">U.S. Edition</span><ul class="style__edition-picker_Y97N7V2PPRAsA6xuRbj4b" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.3.1.1.1"><li data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.3.1.1.1.$0"><a href="#" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.3.1.1.1.$0.0">U.S.</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.3.1.1.1.$1"><a href="#" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.3.1.1.1.$1.0">Asia</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.3.1.1.1.$2"><a href="#" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.3.1.1.1.$2.0">Europe</a></li><li class="style__english_26NIwBYzw2qrvBxpRf5U_Z" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.3.1.1.1.$3"><a href="#" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.3.1.1.1.$3.0">India</a></li><li class="style__non-english_2kSvPo9v3oeKr8n72DS9Kk" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.3.1.1.1.$4"><a href="#" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.3.1.1.1.$4.0">中国 (China)</a></li><li data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.3.1.1.1.$5"><a href="#" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.3.1.1.1.$5.0">日本 (Japan)</a></li></ul></span></li><div class="style__date-time_2anQ8lCVSeknTwwFFvxhre" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.3.3"><p class="" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.3.3.0">February 14, 2018</p></div><div data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.3.4"><a href="http://www.wsj.com/itp" data-reactid=".1c9jte0nxqy.1.1.1.2.0.0.3.4.0">Today&#x27;s Paper</a></div></div></div></div><nav class="style__nav-container_td8wPiDIzq_dVfWpBqVYd" data-reactid=".1c9jte0nxqy.1.1.1.2.1"><div class="style__header-nav-desktop_2YHfB6q4flUaOjYHD74gTY" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0"><div class="style__top-menu-item_8KGjRO5HCpaER0d-onSKQ  style__noHover_2xwr6nQCJKveqxzsQqx1BE" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$0"><a class="style__section-link_3qFFDCltU9vkCrEbSkAO6o" href="https://www.wsj.com/" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$0.0">Home</a></div><div class="style__top-menu-item_8KGjRO5HCpaER0d-onSKQ style__world_c9KbPYuw_Y-8TeKqBaH0y" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1"><a class="style__section-link_3qFFDCltU9vkCrEbSkAO6o" href="https://www.wsj.com/news/world" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.0">World</a><div class="style__subsections_fUWUXEeRyr91sBPf5oQua" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1"><div class="style__subsections-inner_Fp4c0geWqZFW-WpYmwV4S" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1.0"><ul data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1.0.$0"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1.0.$0.0">Regions</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1.0.$0.1:$0"><a href="https://www.wsj.com/news/types/africa-news" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1.0.$0.1:$0.0">Africa</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1.0.$0.1:$1"><a href="https://www.wsj.com/news/types/asia-news" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1.0.$0.1:$1.0">Asia</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1.0.$0.1:$2"><a href="https://www.wsj.com/news/types/canada-news" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1.0.$0.1:$2.0">Canada</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1.0.$0.1:$3"><a href="https://www.wsj.com/news/types/china-news" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1.0.$0.1:$3.0">China</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1.0.$0.1:$4"><a href="https://www.wsj.com/news/types/europe-news" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1.0.$0.1:$4.0">Europe</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1.0.$0.1:$5"><a href="https://www.wsj.com/news/types/latin-america-news" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1.0.$0.1:$5.0">Latin America</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1.0.$0.1:$6"><a href="https://www.wsj.com/news/types/middle-east-news" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1.0.$0.1:$6.0">Middle East</a></li></ul><ul data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1.0.$1"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1.0.$1.0">Sections</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1.0.$1.1:$0"><a href="https://www.wsj.com/news/economy" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1.0.$1.1:$0.0">Economy</a></li></ul><ul class="style__last-col_3FEkuGoMu95AFNMLdEC1hs" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1.0.$2"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1.0.$2.0">More</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1.0.$2.1:$0"><a href="http://www.wsj.com/video/browse/news/world-news" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$1.1.0.$2.1:$0.0">World Video</a></li></ul></div></div></div><div class="style__top-menu-item_8KGjRO5HCpaER0d-onSKQ style__us_2TyhQbn9LedqQvKiLmm-dS" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2"><a class="style__section-link_3qFFDCltU9vkCrEbSkAO6o" href="https://www.wsj.com/news/us" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.0">U.S.</a><div class="style__subsections_fUWUXEeRyr91sBPf5oQua" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1"><div class="style__subsections-inner_Fp4c0geWqZFW-WpYmwV4S" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1.0"><ul data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1.0.$0"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1.0.$0.0">Sections</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1.0.$0.1:$0"><a href="https://www.wsj.com/news/economy" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1.0.$0.1:$0.0">Economy</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1.0.$0.1:$1"><a href="https://www.wsj.com/news/business/law-legal" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1.0.$0.1:$1.0">Law</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1.0.$0.1:$2"><a href="http://www.wsj.com/public/page/new-york-main.html" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1.0.$0.1:$2.0">New York</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1.0.$0.1:$3"><a href="https://www.wsj.com/news/politics" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1.0.$0.1:$3.0">Politics</a></li></ul><ul data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1.0.$1"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1.0.$1.0">Columns &amp; Blogs</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1.0.$1.1:$0"><a href="https://blogs.wsj.com/economics/" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1.0.$1.1:$0.0">Real Time Economics</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1.0.$1.1:$1"><a href="https://blogs.wsj.com/washwire/" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1.0.$1.1:$1.0">Washington Wire</a></li></ul><ul class="style__last-col_3FEkuGoMu95AFNMLdEC1hs" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1.0.$2"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1.0.$2.0">More</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1.0.$2.1:$0"><a href="http://www.wsj.com/news/latest/journalreport" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1.0.$2.1:$0.0">Journal Report</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1.0.$2.1:$1"><a href="http://www.wsj.com/video/browse/news/us-news" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1.0.$2.1:$1.0">U.S. Video</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1.0.$2.1:$2"><a href="http://www.wsj.com/podcasts/latest/wsj-whats-news" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$2.1.0.$2.1:$2.0">What&#x27;s News Podcast</a></li></ul></div></div></div><div class="style__top-menu-item_8KGjRO5HCpaER0d-onSKQ style__politics_1nB9N0wbljif6w8p9q_ix2" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$3"><a class="style__section-link_3qFFDCltU9vkCrEbSkAO6o" href="https://www.wsj.com/news/politics" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$3.0">Politics</a><div class="style__subsections_fUWUXEeRyr91sBPf5oQua" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$3.1"><div class="style__subsections-inner_Fp4c0geWqZFW-WpYmwV4S" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$3.1.0"><ul data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$3.1.0.$0"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$3.1.0.$0.0">Blogs</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$3.1.0.$0.1:$0"><a href="https://blogs.wsj.com/washwire/" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$3.1.0.$0.1:$0.0">Washington Wire</a></li></ul><ul class="style__last-col_3FEkuGoMu95AFNMLdEC1hs" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$3.1.0.$1"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$3.1.0.$1.0">More</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$3.1.0.$1.1:$0"><a href="http://www.wsj.com/video/browse/news/politics-and-campaign" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$3.1.0.$1.1:$0.0">Politics Video</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$3.1.0.$1.1:$1"><a href="http://graphics.wsj.com/wsjnbcpoll/" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$3.1.0.$1.1:$1.0">WSJ/NBC News Poll</a></li></ul></div></div></div><div class="style__top-menu-item_8KGjRO5HCpaER0d-onSKQ style__economy_1vthYxbDtJecOrGFEdvygZ" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$4"><a class="style__section-link_3qFFDCltU9vkCrEbSkAO6o" href="https://www.wsj.com/news/economy" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$4.0">Economy</a><div class="style__subsections_fUWUXEeRyr91sBPf5oQua" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$4.1"><div class="style__subsections-inner_Fp4c0geWqZFW-WpYmwV4S" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$4.1.0"><ul data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$4.1.0.$0"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$4.1.0.$0.0">Blogs</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$4.1.0.$0.1:$0"><a href="https://blogs.wsj.com/economics/" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$4.1.0.$0.1:$0.0">Real Time Economics</a></li></ul><ul class="style__last-col_3FEkuGoMu95AFNMLdEC1hs" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$4.1.0.$1"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$4.1.0.$1.0">More</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$4.1.0.$1.1:$0"><a href="http://projects.wsj.com/econforecast/" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$4.1.0.$1.1:$0.0">Economic Forecasting Survey</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$4.1.0.$1.1:$1"><a href="http://www.wsj.com/video/browse/business/economy" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$4.1.0.$1.1:$1.0">Economy Video</a></li></ul></div></div></div><div class="style__top-menu-item_8KGjRO5HCpaER0d-onSKQ style__business_1ePldRAIUDg4X5Ul4GSiL1" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5"><a class="style__section-link_3qFFDCltU9vkCrEbSkAO6o" href="https://www.wsj.com/news/business" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.0">Business</a><div class="style__subsections_fUWUXEeRyr91sBPf5oQua" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1"><div class="style__subsections-inner_Fp4c0geWqZFW-WpYmwV4S" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0"><ul class="style__business_subsections_2sn201z0UllAuso5MyeM6O style__sections_1jjfiKFV0hfTjf51NRY3Is" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$0"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$0.0">Sections</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$0.1:$0"><a href="https://www.wsj.com/news/business/management" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$0.1:$0.0">Management</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$0.1:$1"><a href="https://www.wsj.com/news/technology" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$0.1:$1.0">Tech/WSJ.D</a></li></ul><ul class="style__business_subsections_2sn201z0UllAuso5MyeM6O style__industries-head_1ItG9ZQWqJTIFE6C81v4k8" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$1"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$1.0">Industries</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$1.1:$0"><a href="https://www.wsj.com/news/business/defense-aerospace" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$1.1:$0.0">Aerospace &amp; Defense</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$1.1:$1"><a href="https://www.wsj.com/news/business/transportation" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$1.1:$1.0">Autos &amp; Transportation</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$1.1:$2"><a href="http://www.wsj.com/public/page/news-real-estate-commercial.html" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$1.1:$2.0">Commercial Real Estate</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$1.1:$3"><a href="https://www.wsj.com/news/business/consumer-products" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$1.1:$3.0">Consumer Products</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$1.1:$4"><a href="https://www.wsj.com/news/business/energy-oil-gas" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$1.1:$4.0">Energy</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$1.1:$5"><a href="https://www.wsj.com/news/business/small-business-marketing" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$1.1:$5.0">Entrepreneurship</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$1.1:$6"><a href="https://www.wsj.com/news/business/financial-services" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$1.1:$6.0">Financial Services</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$1.1:$7"><a href="https://www.wsj.com/news/business/food-tobacco" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$1.1:$7.0">Food &amp; Services</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$1.1:$8"><a href="https://www.wsj.com/news/business/health-industry" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$1.1:$8.0">Health Care</a></li></ul><ul class="style__business_subsections_2sn201z0UllAuso5MyeM6O style__industries-tail_wZFBdF7goOgaydb_bMbRc" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$2"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$2.0"></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$2.1:$0"><a href="https://www.wsj.com/news/business/hotels-casinos" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$2.1:$0.0">Hospitality</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$2.1:$1"><a href="https://www.wsj.com/news/business/law-legal" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$2.1:$1.0">Law</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$2.1:$2"><a href="https://www.wsj.com/news/business/industrial-services" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$2.1:$2.0">Manufacturing</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$2.1:$3"><a href="https://www.wsj.com/news/business/media-marketing" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$2.1:$3.0">Media &amp; Marketing</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$2.1:$4"><a href="https://www.wsj.com/news/business/natural-resources" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$2.1:$4.0">Natural Resources</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$2.1:$5"><a href="https://www.wsj.com/news/business/retail-industry" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$2.1:$5.0">Retail</a></li></ul><ul class="style__business_subsections_2sn201z0UllAuso5MyeM6O style__c-suite_33Am5IfgLWV-dhQGNPHLHC" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$3"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$3.0">C-Suite</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$3.1:$0"><a href="https://www.wsj.com/news/cfo-journal" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$3.1:$0.0">CFO Journal</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$3.1:$1"><a href="https://www.wsj.com/news/cio-journal" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$3.1:$1.0">CIO Journal</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$3.1:$2"><a href="https://www.wsj.com/news/cmo-today" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$3.1:$2.0">CMO Today</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$3.1:$3"><a href="https://www.wsj.com/news/logistics-report" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$3.1:$3.0">Logistics Report</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$3.1:$4"><a href="https://www.wsj.com/news/risk-compliance-journal" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$3.1:$4.0">Risk &amp; Compliance</a></li></ul><ul class="style__business_subsections_2sn201z0UllAuso5MyeM6O style__last-col_3FEkuGoMu95AFNMLdEC1hs" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$4"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$4.0">Columns</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$4.1:$0"><a href="https://www.wsj.com/news/heard-on-the-street" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$4.1:$0.0">Heard on the Street</a></li></ul><ul class="style__business_subsections_2sn201z0UllAuso5MyeM6O style__after-last-col_EiCN7SlBZL55QuzWIBk-l" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$5"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$5.0">More</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$5.1:$0"><a href="http://www.wsj.com/video/browse/business" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$5.1:$0.0">Business Video</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$5.1:$1"><a href="http://www.wsj.com/news/latest/journalreport" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$5.1:$1.0">Journal Report</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$5.1:$2"><a href="http://www.wsj.com/podcasts/latest/wsj-whats-news" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$5.1.0.$5.1:$2.0">Business Podcast</a></li></ul></div></div></div><div class="style__top-menu-item_8KGjRO5HCpaER0d-onSKQ style__tech_1nHLgQTkk9Z2VjIPGg6Igc" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6"><a class="style__section-link_3qFFDCltU9vkCrEbSkAO6o" href="https://www.wsj.com/news/technology" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6.0">Tech</a><div class="style__subsections_fUWUXEeRyr91sBPf5oQua" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6.1"><div class="style__subsections-inner_Fp4c0geWqZFW-WpYmwV4S" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6.1.0"><ul data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6.1.0.$0"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6.1.0.$0.0">Sections</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6.1.0.$0.1:$0"><a href="https://www.wsj.com/news/cio-journal" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6.1.0.$0.1:$0.0">CIO Journal</a></li></ul><ul data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6.1.0.$1"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6.1.0.$1.0">Columns &amp; Blogs</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6.1.0.$1.1:$0"><a href="https://www.wsj.com/news/author/8003" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6.1.0.$1.1:$0.0">Christopher Mims</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6.1.0.$1.1:$1"><a href="https://www.wsj.com/news/author/7872" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6.1.0.$1.1:$1.0">Joanna Stern</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6.1.0.$1.1:$2"><a href="https://www.wsj.com/news/author/8315" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6.1.0.$1.1:$2.0">Li Yuan</a></li></ul><ul class="style__last-col_3FEkuGoMu95AFNMLdEC1hs" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6.1.0.$2"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6.1.0.$2.0">More</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6.1.0.$2.1:$0"><a href="http://graphics.wsj.com/billion-dollar-club/" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6.1.0.$2.1:$0.0">Billion Dollar Startup Club</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6.1.0.$2.1:$1"><a href="http://www.wsj.com/video/browse/tech" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6.1.0.$2.1:$1.0">Tech Video</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6.1.0.$2.1:$2"><a href="http://www.wsj.com/podcasts/latest/wsj-tech-news-briefing" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6.1.0.$2.1:$2.0">Tech Podcast</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6.1.0.$2.1:$3"><a href="http://graphics.wsj.com/tech-startup-stocks-to-watch/" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$6.1.0.$2.1:$3.0">Startup Stock Tracker</a></li></ul></div></div></div><div class="style__top-menu-item_8KGjRO5HCpaER0d-onSKQ style__markets_uKHyhEWIj0MOLsDR_gcYD" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7"><a class="style__section-link_3qFFDCltU9vkCrEbSkAO6o" href="https://www.wsj.com/news/markets" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.0">Markets</a><div class="style__subsections_fUWUXEeRyr91sBPf5oQua" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1"><div class="style__subsections-inner_Fp4c0geWqZFW-WpYmwV4S" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0"><ul data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$0"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$0.0">Sections</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$0.1:$0"><a href="http://www.wsj.com/news/markets/bonds" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$0.1:$0.0">Bonds</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$0.1:$1"><a href="http://www.wsj.com/public/page/news-real-estate-commercial.html" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$0.1:$1.0">Commercial Real Estate</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$0.1:$2"><a href="https://www.wsj.com/news/markets/oil-gold-commodities-futures" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$0.1:$2.0">Commodities &amp; Futures</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$0.1:$3"><a href="http://www.wsj.com/public/page/news-currency-currencies-trading.html" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$0.1:$3.0">Currencies</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$0.1:$4"><a href="http://www.wsj.com/public/page/news-financial-markets-deals.html" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$0.1:$4.0">Deals</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$0.1:$5"><a href="http://www.wsj.com/public/page/news-wall-street.html" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$0.1:$5.0">Financial Services</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$0.1:$6"><a href="http://www.wsj.com/public/page/etf-mutual-funds.html" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$0.1:$6.0">Funds</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$0.1:$7"><a href="http://www.wsj.com/news/markets/stocks" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$0.1:$7.0">Stocks</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$0.1:$8"><a href="https://www.wsj.com/news/column/Your%20Money" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$0.1:$8.0">Your Money</a></li></ul><ul data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$1"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$1.0">Columns &amp; Blogs</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$1.1:$0"><a href="https://www.wsj.com/news/heard-on-the-street" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$1.1:$0.0">Heard on the Street</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$1.1:$1"><a href="https://blogs.wsj.com/moneybeat/" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$1.1:$1.0">MoneyBeat</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$1.1:$2"><a href="http://www.wsj.com/public/page/wealth-management-journal.html" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$1.1:$2.0">Wealth Adviser</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$1.1:$3"><a href="https://www.wsj.com/news/types/ahead-of-the-tape" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$1.1:$3.0">Ahead of the Tape</a></li></ul><ul class="style__last-col_3FEkuGoMu95AFNMLdEC1hs" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$2"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$2.0">More</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$2.1:$0"><a href="https://www.wsj.com/news/cfo-journal" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$2.1:$0.0">CFO Journal</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$2.1:$1"><a href="http://www.wsj.com/news/latest/journalreport" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$2.1:$1.0">Journal Report</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$2.1:$2"><a href="http://markets.wsj.com/us" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$2.1:$2.0">Market Data</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$2.1:$3"><a href="http://www.wsj.com/video/browse/business/markets" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$2.1:$3.0">Markets Video</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$2.1:$4"><a href="http://www.wsj.com/podcasts/latest/wsj-your-money-matters" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$2.1:$4.0">Markets Podcast</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$2.1:$5"><a href="http://www.wsj.com/podcasts/latest/wsj-moneybeat" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$2.1:$5.0">MoneyBeat Podcast</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$2.1:$6"><a href="http://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$2.1:$6.0">Secrets of Wealthy Women Podcast</a></li><li class="style__markets-search_1t5x53rn7yFOT2ODpjdgg6" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$7.1.0.$2.$market-search">Search Quotes and Companies</li></ul></div></div></div><div class="style__top-menu-item_8KGjRO5HCpaER0d-onSKQ style__opinion_3a83PTdweLT52ONsJg_IXi" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8"><a class="style__section-link_3qFFDCltU9vkCrEbSkAO6o" href="https://www.wsj.com/news/opinion" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.0">Opinion</a><div class="style__subsections_fUWUXEeRyr91sBPf5oQua" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1"><div class="style__subsections-inner_Fp4c0geWqZFW-WpYmwV4S" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0"><ul data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$0"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$0.0">Columnists</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$0.1:$0"><a href="https://www.wsj.com/news/author/5461" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$0.1:$0.0">James Freeman</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$0.1:$1"><a href="https://www.wsj.com/news/author/7800" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$0.1:$1.0">William A. Galston</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$0.1:$2"><a href="https://www.wsj.com/news/author/5468" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$0.1:$2.0">Daniel Henninger</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$0.1:$3"><a href="https://www.wsj.com/news/author/5469" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$0.1:$3.0">Holman W. Jenkins</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$0.1:$4"><a href="https://www.wsj.com/news/author/5470" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$0.1:$4.0">William McGurn</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$0.1:$5"><a href="https://www.wsj.com/news/author/5356" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$0.1:$5.0">Peggy Noonan</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$0.1:$6"><a href="https://www.wsj.com/news/author/8590" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$0.1:$6.0">Mary Anastasia O&#x27;Grady</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$0.1:$7"><a href="https://www.wsj.com/news/author/5678" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$0.1:$7.0">Jason Riley</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$0.1:$8"><a href="https://www.wsj.com/news/author/5472" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$0.1:$8.0">Kimberley A. Strassel</a></li></ul><ul data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$1"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$1.0">Reviews</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$1.1:$0"><a href="https://www.wsj.com/news/types/bookshelf" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$1.1:$0.0">Books</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$1.1:$1"><a href="https://www.wsj.com/news/types/film-review" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$1.1:$1.0">Film</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$1.1:$2"><a href="https://www.wsj.com/news/types/television-review" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$1.1:$2.0">Television</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$1.1:$3"><a href="https://www.wsj.com/news/types/theater-review" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$1.1:$3.0">Theater</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$1.1:$4"><a href="https://www.wsj.com/news/types/art-review" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$1.1:$4.0">Art</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$1.1:$5"><a href="https://www.wsj.com/news/types/masterpiece" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$1.1:$5.0">Masterpiece Series</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$1.1:$6"><a href="https://www.wsj.com/news/types/music-review" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$1.1:$6.0">Music</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$1.1:$7"><a href="https://www.wsj.com/news/types/dance-review" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$1.1:$7.0">Dance</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$1.1:$8"><a href="https://www.wsj.com/news/types/opera-review" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$1.1:$8.0">Opera</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$1.1:$9"><a href="https://www.wsj.com/news/types/exhibition-review" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$1.1:$9.0">Exhibition</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$1.1:$10"><a href="https://www.wsj.com/news/types/cultural-commentary" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$1.1:$10.0">Cultural Commentary</a></li></ul><ul class="style__last-col_3FEkuGoMu95AFNMLdEC1hs" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$2"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$2.0">More</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$2.1:$0"><a href="https://www.wsj.com/news/types/review-outlook-u-s" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$2.1:$0.0">Editorials</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$2.1:$1"><a href="https://www.wsj.com/news/types/commentary-u-s" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$2.1:$1.0">Commentary</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$2.1:$2"><a href="https://www.wsj.com/news/types/letters" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$2.1:$2.0">Letters to the Editor</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$2.1:$3"><a href="https://www.wsj.com/news/types/the-saturday-interview" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$2.1:$3.0">The Weekend Interview</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$2.1:$4"><a href="http://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$2.1:$4.0">Potomac Watch Podcast</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$2.1:$5"><a href="http://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$2.1:$5.0">Foreign Edition Podcast</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$2.1:$6"><a href="http://www.wsj.com/video/browse/opinion" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$2.1:$6.0">Opinion Video</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$2.1:$7"><a href="https://www.wsj.com/news/types/notable-quotable" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$2.1:$7.0">Notable &amp; Quotable</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$2.1:$8"><a href="https://www.wsj.com/newsletters#opinion" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$2.1:$8.0">Best of the Web Newsletter</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$2.1:$9"><a href="https://www.wsj.com/newsletters#opinion" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$8.1.0.$2.1:$9.0">Morning Editorial Report Newsletter</a></li></ul></div></div></div><div class="style__top-menu-item_8KGjRO5HCpaER0d-onSKQ style__lifearts_2WEHOVqBgfP3zJD7Ym36pO" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9"><a class="style__section-link_3qFFDCltU9vkCrEbSkAO6o" href="https://www.wsj.com/news/life-arts" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.0">Life &amp; Arts</a><div class="style__subsections_fUWUXEeRyr91sBPf5oQua" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1"><div class="style__subsections-inner_Fp4c0geWqZFW-WpYmwV4S" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0"><ul data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$0"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$0.0">Sections</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$0.1:$0"><a href="https://www.wsj.com/news/life-arts/arts" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$0.1:$0.0">Arts</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$0.1:$1"><a href="https://www.wsj.com/news/life-arts/books" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$0.1:$1.0">Books</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$0.1:$2"><a href="https://www.wsj.com/news/life-arts/automotive" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$0.1:$2.0">Cars</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$0.1:$3"><a href="https://www.wsj.com/news/life-arts/food-cooking-drink" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$0.1:$3.0">Food &amp; Drink</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$0.1:$4"><a href="https://www.wsj.com/news/life-arts/health-wellness" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$0.1:$4.0">Health</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$0.1:$5"><a href="https://www.wsj.com/news/life-arts/ideas" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$0.1:$5.0">Ideas</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$0.1:$6"><a href="http://www.wsj.com/news/realestate" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$0.1:$6.0">Real Estate</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$0.1:$7"><a href="https://www.wsj.com/news/science" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$0.1:$7.0">Science</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$0.1:$8"><a href="https://www.wsj.com/news/life-arts/sports" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$0.1:$8.0">Sports</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$0.1:$9"><a href="https://www.wsj.com/news/life-arts/fashion" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$0.1:$9.0">Style &amp; Fashion</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$0.1:$10"><a href="https://www.wsj.com/news/life-arts/travel" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$0.1:$10.0">Travel</a></li></ul><ul class="style__last-col_3FEkuGoMu95AFNMLdEC1hs" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$1"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$1.0">More</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$1.1:$0"><a href="http://www.wsj.com/news/magazine" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$1.1:$0.0">WSJ. Magazine</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$1.1:$1"><a href="https://blogs.wsj.com/puzzle/" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$1.1:$1.0">WSJ Puzzles</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$1.1:$2"><a href="http://graphics.wsj.com/image-grid/future-of-everything/" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$1.1:$2.0">The Future of Everything</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$1.1:$3"><a href="http://www.wsj.com/video/browse/life-culture" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$1.1:$3.0">Life Video</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$1.1:$4"><a href="http://www.wsj.com/video/browse/life-culture/arts-and-entertainment" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$9.1.0.$1.1:$4.0">Arts Video</a></li></ul></div></div></div><div class="style__top-menu-item_8KGjRO5HCpaER0d-onSKQ style__realestate_3Qu8qIlewxp234a3McBO6e" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$10"><a class="style__section-link_3qFFDCltU9vkCrEbSkAO6o" href="https://www.wsj.com/news/realestate" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$10.0">Real Estate</a><div class="style__subsections_fUWUXEeRyr91sBPf5oQua" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$10.1"><div class="style__subsections-inner_Fp4c0geWqZFW-WpYmwV4S" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$10.1.0"><ul data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$10.1.0.$0"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$10.1.0.$0.0">Sections</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$10.1.0.$0.1:$0"><a href="http://www.wsj.com/public/page/news-real-estate-commercial.html" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$10.1.0.$0.1:$0.0">Commercial Real Estate</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$10.1.0.$0.1:$1"><a href="https://www.wsj.com/houseoftheday" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$10.1.0.$0.1:$1.0">House of the Day</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$10.1.0.$0.1:$2"><a href="http://www.wsj.com/public/page/real-estate-luxury.html" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$10.1.0.$0.1:$2.0">Mansion</a></li></ul><ul class="style__last-col_3FEkuGoMu95AFNMLdEC1hs" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$10.1.0.$1"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$10.1.0.$1.0">More</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$10.1.0.$1.1:$0"><a href="http://www.wsj.com/video/subject/mansion" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$10.1.0.$1.1:$0.0">Real Estate Video</a></li></ul></div></div></div><div class="style__top-menu-item_8KGjRO5HCpaER0d-onSKQ style__magazine_3CmuZ8HlQHaghpx9nb8pev" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$11"><a class="style__section-link_3qFFDCltU9vkCrEbSkAO6o" href="https://www.wsj.com/news/magazine" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$11.0">WSJ. Magazine</a><div class="style__subsections_fUWUXEeRyr91sBPf5oQua" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$11.1"><div class="style__subsections-inner_Fp4c0geWqZFW-WpYmwV4S" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$11.1.0"><ul class="style__last-col_3FEkuGoMu95AFNMLdEC1hs" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$11.1.0.$0"><li class="style__subsection-label_1xQs97-tMySiTxsGYRug1g" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$11.1.0.$0.0">Sections</li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$11.1.0.$0.1:$0"><a href="https://www.wsj.com/news/magazine/fashion" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$11.1.0.$0.1:$0.0">Fashion</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$11.1.0.$0.1:$1"><a href="https://www.wsj.com/news/magazine/art-design" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$11.1.0.$0.1:$1.0">Art &amp; Design</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$11.1.0.$0.1:$2"><a href="https://www.wsj.com/news/magazine/travel" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$11.1.0.$0.1:$2.0">Travel</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$11.1.0.$0.1:$3"><a href="https://www.wsj.com/news/magazine/food" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$11.1.0.$0.1:$3.0">Food</a></li><li class="style__subsection-item_1Eql-UIHQp_EOMm2KWiHfH" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$11.1.0.$0.1:$4"><a href="https://www.wsj.com/news/magazine/culture" data-reactid=".1c9jte0nxqy.1.1.1.2.1.0.$11.1.0.$0.1:$4.0">Culture</a></li></ul></div></div></div></div></nav><div class="style__search-sector_9s_Y-cEHc0JsDLO03AMxu style__sector_3oQF2HzPyaPy3pHJcg5Ttq" data-reactid=".1c9jte0nxqy.1.1.1.2.2"><div class="style__search-wrapper_1bYLpXJNEXNvgt7PcFMhQt" data-reactid=".1c9jte0nxqy.1.1.1.2.2.0"><div class="style__search-button_1U43LWwP8lkdXAurSKQ3k2" data-reactid=".1c9jte0nxqy.1.1.1.2.2.0.0"><span data-reactid=".1c9jte0nxqy.1.1.1.2.2.0.0.0">Search</span></div><div class="style__search-scrim_OUBeGVe_5yBOgEcPKCowk" data-reactid=".1c9jte0nxqy.1.1.1.2.2.0.1"><div class="style__search-close_3xDTUKk-5xIzisClwm30EN" data-reactid=".1c9jte0nxqy.1.1.1.2.2.0.1.0"></div><div class="style__search-form_1ySuHMYRfaxdg7kbNc1cy0" data-reactid=".1c9jte0nxqy.1.1.1.2.2.0.1.1"><form action="#" data-reactid=".1c9jte0nxqy.1.1.1.2.2.0.1.1.0"><input class="style__wsj-search-input_R7oQjW8fXqah81OIFgvIt" placeholder="Enter News, Quotes, Companies or Videos" data-reactid=".1c9jte0nxqy.1.1.1.2.2.0.1.1.0.0"/><button class="style__search-submit_36AD7RDgkLzFtv3AeWjhgR" type="button" data-reactid=".1c9jte0nxqy.1.1.1.2.2.0.1.1.0.1"><span data-reactid=".1c9jte0nxqy.1.1.1.2.2.0.1.1.0.1.0"><span data-reactid=".1c9jte0nxqy.1.1.1.2.2.0.1.1.0.1.0.0">Search</span><i data-reactid=".1c9jte0nxqy.1.1.1.2.2.0.1.1.0.1.0.1">→</i></span></button></form></div></div></div></div></header></div><div class="cb-grid wsj-page" data-reactid=".1c9jte0nxqy.1.1.2"><style data-reactid=".1c9jte0nxqy.1.1.2.0">
      .cb-row:after, .cb-col:after{content:'';display:block;height:0;visibility:hidden;clear:both;}
      .cb-row{margin-left:auto;margin-right:auto;width:100%;}
      .cb-col{box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-sizing:border-box;width:100%;max-width:100%;float:left;min-height:1px;}
      .cb-col{padding-left:10px;padding-right:10px;}
      .cb-col .cb-row{margin-left:-10px;margin-right:-10px;width:auto;}
    </style><div data-reactid=".1c9jte0nxqy.1.1.2.1"><div class="wsj-ie-message" style="display:none;" data-reactid=".1c9jte0nxqy.1.1.2.1.0"><div class="sector" data-reactid=".1c9jte0nxqy.1.1.2.1.0.0"><p data-reactid=".1c9jte0nxqy.1.1.2.1.0.0.0"><strong data-reactid=".1c9jte0nxqy.1.1.2.1.0.0.0.0">BROWSER UPDATE </strong><span data-reactid=".1c9jte0nxqy.1.1.2.1.0.0.0.1">To gain access to the full experience, please upgrade your browser:</span><a class="wsj-ie-message-link" href="https://www.google.com/intl/en_us/chrome/browser/desktop/index.html" data-reactid=".1c9jte0nxqy.1.1.2.1.0.0.0.2"> Chrome</a><span data-reactid=".1c9jte0nxqy.1.1.2.1.0.0.0.3"> |</span><a class="wsj-ie-message-link" href="https://support.apple.com/downloads/" data-reactid=".1c9jte0nxqy.1.1.2.1.0.0.0.4"> Safari</a><span data-reactid=".1c9jte0nxqy.1.1.2.1.0.0.0.5"> |</span><a class="wsj-ie-message-link" href="https://www.mozilla.org/en-US/firefox/new/" data-reactid=".1c9jte0nxqy.1.1.2.1.0.0.0.6"> Firefox</a><span data-reactid=".1c9jte0nxqy.1.1.2.1.0.0.0.7"> |</span><a class="wsj-ie-message-link" href="http://windows.microsoft.com/en-us/internet-explorer/download-ie" data-reactid=".1c9jte0nxqy.1.1.2.1.0.0.0.8"> Internet Explorer</a></p><p data-reactid=".1c9jte0nxqy.1.1.2.1.0.0.1">Note: If you are running Internet Explorer 10 and above, make sure it is not in compatibility mode.</p><span class="dismiss-button" data-reactid=".1c9jte0nxqy.1.1.2.1.0.0.2"></span></div></div><div class="cb-row LiveCoverage" style="max-width:1280px;" data-reactid=".1c9jte0nxqy.1.1.2.1.1"><div data-reactid=".1c9jte0nxqy.1.1.2.1.1.0"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.1.0.0"></noscript></div></div><div class="Banner-wrap" data-reactid=".1c9jte0nxqy.1.1.2.1.2"><div class="LiveCoverageBanner" data-reactid=".1c9jte0nxqy.1.1.2.1.2.0"><h1 data-reactid=".1c9jte0nxqy.1.1.2.1.2.0.1">Weakened Harvey Douses Louisiana: Live Coverage</h1><div class="LiveCoverageBanner-updated" data-reactid=".1c9jte0nxqy.1.1.2.1.2.0.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.2.0.2.0">Last Updated </span><span data-reactid=".1c9jte0nxqy.1.1.2.1.2.0.2.1">Aug 31, 2017 at 4:42 pm ET</span></div><div class="Text Dek" data-reactid=".1c9jte0nxqy.1.1.2.1.2.0.3"><div class="Text-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.2.0.3.0"><p>Tropical storm Harvey came ashore again on Wednesday, bringing heavy rains and whipping winds to southwestern Louisiana, but far less destruction than it brought to Texas.</p>
<p>All readers have open access to our coverage of the storm.</p></div></div><div class="LiveCoverageBanner-share" data-reactid=".1c9jte0nxqy.1.1.2.1.2.0.4"><div class="LiveCoverageBanner-share-text" data-reactid=".1c9jte0nxqy.1.1.2.1.2.0.4.0">SHARE</div><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.2.0.4.1"><a class="Social-icon Social-email" href="mailto:?subject=null&amp;body=null" data-reactid=".1c9jte0nxqy.1.1.2.1.2.0.4.1.0"><span data-reactid=".1c9jte0nxqy.1.1.2.1.2.0.4.1.0.0">Email</span></a><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.2.0.4.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.2.0.4.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.2.0.4.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.2.0.4.1.2.0">Twitter</span></li></ul></div><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.2.0.5"></noscript></div></div><div class="cb-row LiveCoverage" style="max-width:1280px;" data-reactid=".1c9jte0nxqy.1.1.2.1.3"><div class="cb-col" data-reactid=".1c9jte0nxqy.1.1.2.1.3.1"><div class="wsj-ad push" data-reactid=".1c9jte0nxqy.1.1.2.1.3.1.0"></div></div><div class="cb-row lc-space-after relative left LiveCoverageBorders" style="max-width:1280px;" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2"><div class="LiveCoverageHeader --no-filters" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.0"><div class="LiveCoverageHeader-bar" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.0.0"><div class="LiveCoverageHeader-bar-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.0.0.0"><h2 data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.0.0.0.0">Updates</h2></div></div><div class="KeyDevelopments-wrapper" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.0.1"><div class="KeyDevelopments" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.0.1.0"><div class="KeyDevelopments-title" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.0.1.0.0"><svg height="10" width="12" class="LiveCoverage-live-btn" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.0.1.0.0.0"><circle cx="5" cy="5" r="4.5" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.0.1.0.0.0.0"></circle></svg><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.0.1.0.0.1"> </span><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.0.1.0.0.2">Key Developments</span></div><div class="timeline-card" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.0.1.0.1:$0"><div class="timestamp-container" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.0.1.0.1:$0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.0.1.0.1:$0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.0.1.0.1:$0.0.0.0"></span></div></div><div class="headline-wrapper" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.0.1.0.1:$0.1"><h3 class="wsj-headline dj-sg heading-12 unlocked renderAsMarkup" itemprop="name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.0.1.0.1:$0.1.0"><div data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.0.1.0.1:$0.1.0.0"><p>Trump Will Give $1 Million for Harvey Victims: White House</p>
</div></h3></div></div><span class="KeyDevelopments-show-more-wrap" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.0.1.0.2"><span class="KeyDevelopments-show-more" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.0.1.0.2.0">See only Key Developments</span></span></div></div></div><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.1"></noscript><div class="cb-col" style="width:25%;" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.2"></div><div class="cb-col" style="width:50%;" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3"><div class="cb-row" style="max-width:640px;" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0"><div class="cb-col Stream-wrap" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.0"></noscript><div class="LiveCoverageStream" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1"><div class="LiveCoverageCard" id="LCcard-1504212123" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$0_1504212123"><div class="LiveCoverageCard-body" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$0_1504212123.0"><div class="LiveCoverageCard-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$0_1504212123.0.0"><div class="LiveCoverageCard-header --no-header-text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$0_1504212123.0.0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$0_1504212123.0.0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$0_1504212123.0.0.0.0.0"></span></div></div><div class="ArticleCard" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$0_1504212123.0.0.1:$0_article"><a href="https://www.wsj.com/articles/charitable-needs-evolve-after-disasters-1504211135" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$0_1504212123.0.0.1:$0_article.0"><h3 class="wsj-headline dj-sg heading-2 unlocked" itemprop="name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$0_1504212123.0.0.1:$0_article.0.0">Charitable Needs Evolve After Disasters</h3><div class="ArticleCard-img" style="background-image:url(https://si.wsj.net/public/resources/images/IF-AD238_CHARIT_D_20170831160445.jpg);" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$0_1504212123.0.0.1:$0_article.0.1"></div><div class="Text ArticleCard-dek" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$0_1504212123.0.0.1:$0_article.0.2"><div class="Text-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$0_1504212123.0.0.1:$0_article.0.2.0"><p>Sending clothes and water to Texas isn’t the best choice, say charity experts. Cash is more needed after disasters.</p><p class="Text-action">Read Full Article</p></div></div></a></div></div></div><div class="LiveCoverageCard-footer" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$0_1504212123.1"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$0_1504212123.1.0"></noscript><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$0_1504212123.1.1"><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$0_1504212123.1.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$0_1504212123.1.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$0_1504212123.1.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$0_1504212123.1.1.2.0">Twitter</span></li></ul></div></div><div class="LiveCoverageCard" id="LCcard-1504211851" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$1_1504211851"><div class="LiveCoverageCard-body" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$1_1504211851.0"><div class="LiveCoverageCard-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$1_1504211851.0.0"><div class="LiveCoverageCard-header --no-header-text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$1_1504211851.0.0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$1_1504211851.0.0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$1_1504211851.0.0.0.0.0"></span></div></div><div class="ArticleCard" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$1_1504211851.0.0.1:$0_article"><a href="https://www.wsj.com/articles/how-to-detect-disaster-relief-scams-1504211506" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$1_1504211851.0.0.1:$0_article.0"><h3 class="wsj-headline dj-sg heading-2 unlocked" itemprop="name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$1_1504211851.0.0.1:$0_article.0.0">How to Detect Disaster-Relief Scams</h3><div class="ArticleCard-img" style="background-image:url(https://si.wsj.net/public/resources/images/IF-AD236A_CHARI_D_20170831155931.jpg);" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$1_1504211851.0.0.1:$0_article.0.1"></div><div class="Text ArticleCard-dek" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$1_1504211851.0.0.1:$0_article.0.2"><div class="Text-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$1_1504211851.0.0.1:$0_article.0.2.0"><p>Social media, crowdfunding are popular for fraud after disasters like Hurricane Harvey.</p><p class="Text-action">Read Full Article</p></div></div></a></div></div></div><div class="LiveCoverageCard-footer" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$1_1504211851.1"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$1_1504211851.1.0"></noscript><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$1_1504211851.1.1"><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$1_1504211851.1.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$1_1504211851.1.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$1_1504211851.1.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$1_1504211851.1.1.2.0">Twitter</span></li></ul></div></div><div class="LiveCoverageCard" id="LCcard-1504210368" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$2_1504210368"><div class="LiveCoverageCard-body" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$2_1504210368.0"><div class="LiveCoverageCard-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$2_1504210368.0.0"><div class="LiveCoverageCard-header" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$2_1504210368.0.0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$2_1504210368.0.0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$2_1504210368.0.0.0.0.0"></span></div><h3 class="wsj-headline dj-sg heading-2 unlocked" itemprop="name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$2_1504210368.0.0.0.2">President Trump Will Give $1 Million for Harvey Storm Victims: White House</h3></div><div class="Text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$2_1504210368.0.0.1:$0_text"><div class="Text-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$2_1504210368.0.0.1:$0_text.0"><p>White House Press Secretary Sarah Sanders said President Donald Trump plans to donate $1 million to an unspecified charity in support of victims of Hurricane Harvey.</p>
<p>Mr. Trump is &quot;pledging a million dollars of his own personal money to help the people of both Texas and Louisiana,&quot; Ms. Sanders said. She said she believed that the funds would come from Mr. Trump personally, not from a separate entity such as his family foundation. </p>
<p>Ms. Sanders didn&#39;t identify a charity that would be the recipient of the funds. Speaking at a press briefing at the White House, she said Mr. Trump wanted suggestions about the most appropriate group to receive the funds.</p>
<p>&quot;He would like to join in the efforts&quot; of Americans around the country who have given to charity to help victims of the storm, Ms. Sanders said.</p></div></div><div class="Attribution default" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$2_1504210368.0.0.2"><div class="Attribution-byline" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$2_1504210368.0.0.2.1"><p class="Attribution-name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$2_1504210368.0.0.2.1.0"><em data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$2_1504210368.0.0.2.1.0.0"><span class="nowrap" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$2_1504210368.0.0.2.1.0.0.$0_name">Ted Mann</span></em></p></div></div></div></div><div class="LiveCoverageCard-footer" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$2_1504210368.1"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$2_1504210368.1.0"></noscript><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$2_1504210368.1.1"><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$2_1504210368.1.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$2_1504210368.1.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$2_1504210368.1.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$2_1504210368.1.1.2.0">Twitter</span></li></ul></div></div><div class="LiveCoverageCard" id="LCcard-1504210278" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278"><div class="LiveCoverageCard-body" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278.0"><div class="LiveCoverageCard-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278.0.0"><div class="LiveCoverageCard-header" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278.0.0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278.0.0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278.0.0.0.0.0"></span></div><h3 class="wsj-headline dj-sg heading-2 unlocked" itemprop="name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278.0.0.0.2">Houston Schools Push Back Opening Date to Sept. 11 from Sept. 5</h3></div><a href="https://si.wsj.net/public/resources/images/BN-UX285_HARVEY_GR_20170831100012.jpg" class="ImageCard-wrap" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278.0.0.1:$0_image"><img class="ImageCard" src="https://si.wsj.net/public/resources/images/BN-UX285_HARVEY_GR_20170831100012.jpg" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278.0.0.1:$0_image.0"/></a><div class="CaptionCredit" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278.0.0.1:$0_credit"><span class="CaptionCredit__caption" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278.0.0.1:$0_credit.0">Floodwaters from Tropical Storm Harvey surround homes and businesses in Port Arthur, Texas, on Thursday. </span><span class="CaptionCredit__credit" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278.0.0.1:$0_credit.1">GERALD HERBERT/ASSOCIATED PRESS</span></div><div class="Text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278.0.0.1:$1_text"><div class="Text-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278.0.0.1:$1_text.0"><p>Houston Independent School District said it will delay the start of school until Sept. 11 as the city starts to recover from the devastation of Hurricane Harvey.</p>
<p>The nation&#39;s seventh-largest district had already delayed the start of school from the original start date of Aug. 27 to Sept. 5. </p>
<p>In a statement Thursday, the district said it could still push back the state further depending on the weather and the condition of its facilities.</p>
<p>&quot;We are eager to get our students back into the classroom and learning, but we need to be sure that our campuses are safe and that Houston’s infrastructure and roads are ready to handle transporting our students safely to school in the aftermath of Hurricane Harvey,&quot; said superintendent Richard Carranza in a statement. &quot;We are currently assessing any damages to our schools.&quot;</p>
<p>The superintendent also said the district will relax its uniform policy for the first half of the school year. Administrators are returning to work on Sept. 5 and teachers will return Sept. 8.</p></div></div><div class="Attribution default" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278.0.0.2"><div class="Attribution-byline" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278.0.0.2.1"><p class="Attribution-name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278.0.0.2.1.0"><em data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278.0.0.2.1.0.0"><span class="nowrap" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278.0.0.2.1.0.0.$0_name">Joseph Barrett</span></em></p></div></div></div></div><div class="LiveCoverageCard-footer" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278.1"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278.1.0"></noscript><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278.1.1"><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278.1.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278.1.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278.1.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$3_1504210278.1.1.2.0">Twitter</span></li></ul></div></div><div class="LiveCoverageCard" id="LCcard-1504201938" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$4_1504201938"><div class="LiveCoverageCard-body" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$4_1504201938.0"><div class="LiveCoverageCard-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$4_1504201938.0.0"><div class="LiveCoverageCard-header" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$4_1504201938.0.0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$4_1504201938.0.0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$4_1504201938.0.0.0.0.0"></span></div><h3 class="wsj-headline dj-sg heading-2 unlocked" itemprop="name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$4_1504201938.0.0.0.2">Beaumont&#x27;s Neches River Still Rising, Forecast to Crest Friday</h3></div><div class="Text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$4_1504201938.0.0.1:$0_text"><div class="Text-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$4_1504201938.0.0.1:$0_text.0"><p>Beaumont mainly draws its water from the Neches River, which has already well exceeded its prior peak crest, which occurred 23 years ago, and is forecast to peak around midday Friday, according to the National Weather Service.</p>
<p>Even still, the main problem for Beaumont and the region is the massive amount of rain that fell there, said Roger Erickson, a warning coordination meteorologist with the National Weather Service in Lake Charles, La. That sliver of Texas near the Louisiana border got hit with anywhere between 20 and 30 inches of rain in just 24 hours between Tuesday and Wednesday, he said.</p>
<p>“Basically what happened in Houston happened in this area the day after,” Mr. Erickson said. “That’s what caused just massive flooding across the communities.”</p></div></div><img class="ImageCard" src="https://si.wsj.net/public/resources/images/BN-UX398_3cEhW_M_20170831134920.jpg" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$4_1504201938.0.0.1:$3_image"/><div class="CaptionCredit" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$4_1504201938.0.0.1:$3_credit"><span class="CaptionCredit__caption" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$4_1504201938.0.0.1:$3_credit.0">A boat sits near flooded homes in the aftermath of Tropical Storm Harvey in Beaumont, Texas, Thursday.</span><span class="CaptionCredit__credit" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$4_1504201938.0.0.1:$3_credit.1">Gerald Herbert/Associated Press</span></div><div class="Attribution default" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$4_1504201938.0.0.2"><div class="Attribution-byline" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$4_1504201938.0.0.2.1"><p class="Attribution-name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$4_1504201938.0.0.2.1.0"><em data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$4_1504201938.0.0.2.1.0.0"><span class="nowrap" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$4_1504201938.0.0.2.1.0.0.$0_name">Jon Kamp</span></em></p></div></div></div></div><div class="LiveCoverageCard-footer" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$4_1504201938.1"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$4_1504201938.1.0"></noscript><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$4_1504201938.1.1"><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$4_1504201938.1.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$4_1504201938.1.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$4_1504201938.1.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$4_1504201938.1.1.2.0">Twitter</span></li></ul></div></div><div class="LiveCoverageCard" id="LCcard-1504197615" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$5_1504197615"><div class="LiveCoverageCard-body" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$5_1504197615.0"><div class="LiveCoverageCard-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$5_1504197615.0.0"><div class="LiveCoverageCard-header" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$5_1504197615.0.0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$5_1504197615.0.0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$5_1504197615.0.0.0.0.0"></span></div><h3 class="wsj-headline dj-sg heading-2 unlocked" itemprop="name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$5_1504197615.0.0.0.2">Hospital Evacuations Under Way in Beaumont, Texas</h3></div><div class="Text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$5_1504197615.0.0.1:$0_text"><div class="Text-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$5_1504197615.0.0.1:$0_text.0"><p>A lack of city water forced evacuations at Baptist Hospitals of Southeast Texas in Beaumont, which said in a Facebook post that it had to start transferring patients to other acute-care facilities. TV news footage showed staffing loading a patient onto a waiting helicopter.</p>
<p>“Due to the city-wide lack of services, we have no other alternative but to discontinue all services which will include emergency services,” the hospital said.</p></div></div><div class="Attribution default" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$5_1504197615.0.0.2"><div class="Attribution-byline" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$5_1504197615.0.0.2.1"><p class="Attribution-name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$5_1504197615.0.0.2.1.0"><em data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$5_1504197615.0.0.2.1.0.0"><span class="nowrap" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$5_1504197615.0.0.2.1.0.0.$0_name">Jon Kamp</span></em></p></div></div></div></div><div class="LiveCoverageCard-footer" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$5_1504197615.1"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$5_1504197615.1.0"></noscript><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$5_1504197615.1.1"><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$5_1504197615.1.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$5_1504197615.1.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$5_1504197615.1.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$5_1504197615.1.1.2.0">Twitter</span></li></ul></div></div><div class="LiveCoverageCard" id="LCcard-1504195643" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$6_1504195643"><div class="LiveCoverageCard-body" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$6_1504195643.0"><div class="LiveCoverageCard-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$6_1504195643.0.0"><div class="LiveCoverageCard-header" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$6_1504195643.0.0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$6_1504195643.0.0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$6_1504195643.0.0.0.0.0"></span></div><h3 class="wsj-headline dj-sg heading-2 unlocked" itemprop="name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$6_1504195643.0.0.0.2">Texas City Independent Schools, Damaged by Harvey, Won&#x27;t Reopen Until Sept. 11</h3></div><div class="Text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$6_1504195643.0.0.1:$0_text"><div class="Text-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$6_1504195643.0.0.1:$0_text.0"><p>All 14 schools in the Texas City Independent School District southeast of Houston sustained some Harvey-related damage. Most had roof leaks that can be easily fixed, but several schools including those in the city of La Marque flooded to varying degrees, a district spokeswoman said.</p>
<p>The primary school building in La Marque was “completely flooded with 3 feet of water,” the district’s website said. The elementary school had water in the cafeteria and hallways. Parts of the middle school had two feet of water, with the kitchen, library, hallways and some classrooms affected. Roof leaks at the high school caused flooding.</p>
<p>The district, with nearly 9,000 students, isn’t planning to resume classes until Sept. 11. Officials had earlier hoped to reopen Sept. 5.</p>
<p>-- <em>Scott Calvert</em> </p></div></div></div></div><div class="LiveCoverageCard-footer" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$6_1504195643.1"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$6_1504195643.1.0"></noscript><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$6_1504195643.1.1"><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$6_1504195643.1.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$6_1504195643.1.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$6_1504195643.1.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$6_1504195643.1.1.2.0">Twitter</span></li></ul></div></div><div class="LiveCoverageCard" id="LCcard-1504193634" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$7_1504193634"><div class="LiveCoverageCard-body" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$7_1504193634.0"><div class="LiveCoverageCard-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$7_1504193634.0.0"><div class="LiveCoverageCard-header --no-header-text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$7_1504193634.0.0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$7_1504193634.0.0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$7_1504193634.0.0.0.0.0"></span></div></div><div class="IframeCard" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$7_1504193634.0.0.1:$0_video"><div class="IframeCard-video" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$7_1504193634.0.0.1:$0_video.2:$0"><iframe allowfullscreen="true" webkitallowfullscreen="true" mozallowfullscreen="true" frameborder="0" scrolling="no" width="512" height="288" src="https://video-api.wsj.com/api-video/player/v3/iframe.html?guid=CF6794C8-2101-4435-91EA-F6EE4E14D694"></iframe></div></div><div class="Text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$7_1504193634.0.0.1:$1_text"><div class="Text-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$7_1504193634.0.0.1:$1_text.0"><p>Houston sporting-goods retailer Academy has converted its headquarters into a temporary residence for hundreds of police and other emergency responders, offering food and shelter in the midst of Tropical Storm Harvey&#39;s aftermath. </p></div></div></div></div><div class="LiveCoverageCard-footer" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$7_1504193634.1"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$7_1504193634.1.0"></noscript><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$7_1504193634.1.1"><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$7_1504193634.1.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$7_1504193634.1.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$7_1504193634.1.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$7_1504193634.1.1.2.0">Twitter</span></li></ul></div></div><div class="LiveCoverageCard" id="LCcard-1504193498" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$8_1504193498"><div class="LiveCoverageCard-body" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$8_1504193498.0"><div class="LiveCoverageCard-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$8_1504193498.0.0"><div class="LiveCoverageCard-header" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$8_1504193498.0.0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$8_1504193498.0.0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$8_1504193498.0.0.0.0.0"></span></div><h3 class="wsj-headline dj-sg heading-2 unlocked" itemprop="name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$8_1504193498.0.0.0.2">In Harvey’s Wake, Category 2 Hurricane Forms in Atlantic</h3></div><div class="Text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$8_1504193498.0.0.1:$0_text"><div class="Text-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$8_1504193498.0.0.1:$0_text.0"><p>As Texas and Louisiana continue to deal with the aftermath of Harvey, forecasters are monitoring another powerful hurricane that has formed in the distant Atlantic named Irma.</p>
<p>The storm is “rapidly intensifying over the eastern Atlantic,” the National Hurricane Center said in a late-morning update Thursday. Maximum sustained winds have reached nearly 100 miles per hour, making it a Category 2 storm.</p>
<p>The big question is where Irma will go, and what land the storm might threaten, but it remains too soon to tell. The hurricane center’s “forecast cone,” which looks at possible storm tracks through Tuesday morning, still puts Irma somewhere over the Atlantic to the east of the Leeward Islands. </p>
<p>Wherever it goes, the storm could pack a punch: “Irma is forecast to become a major hurricane by tonight and is expected to be an extremely dangerous hurricane for the next several days,” the hurricane center said.</p></div></div><div class="TweetCard" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$8_1504193498.0.0.1:$1_tweet"></div><div class="Attribution default" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$8_1504193498.0.0.2"><div class="Attribution-byline" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$8_1504193498.0.0.2.1"><p class="Attribution-name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$8_1504193498.0.0.2.1.0"><em data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$8_1504193498.0.0.2.1.0.0"><span class="nowrap" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$8_1504193498.0.0.2.1.0.0.$0_name">Jon Kamp</span></em></p></div></div></div></div><div class="LiveCoverageCard-footer" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$8_1504193498.1"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$8_1504193498.1.0"></noscript><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$8_1504193498.1.1"><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$8_1504193498.1.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$8_1504193498.1.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$8_1504193498.1.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$8_1504193498.1.1.2.0">Twitter</span></li></ul></div></div><div class="LiveCoverageCard" id="LCcard-1504192488" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$9_1504192488"><div class="LiveCoverageCard-body" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$9_1504192488.0"><div class="LiveCoverageCard-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$9_1504192488.0.0"><div class="LiveCoverageCard-header --no-header-text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$9_1504192488.0.0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$9_1504192488.0.0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$9_1504192488.0.0.0.0.0"></span></div></div><div class="ArticleCard" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$9_1504192488.0.0.1:$0_article"><a href="https://www.wsj.com/articles/explosions-reported-at-arkema-chemical-plant-1504173125" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$9_1504192488.0.0.1:$0_article.0"><h3 class="wsj-headline dj-sg heading-2 unlocked" itemprop="name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$9_1504192488.0.0.1:$0_article.0.0">Chemicals Catch Fire at Plant Flooded by Harvey</h3><div class="ArticleCard-img" style="background-image:url(https://si.wsj.net/public/resources/images/BN-UX240_3cBvL_TOP_20170831054005.jpg);" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$9_1504192488.0.0.1:$0_article.0.1"></div><div class="Text ArticleCard-dek" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$9_1504192488.0.0.1:$0_article.0.2"><div class="Text-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$9_1504192488.0.0.1:$0_article.0.2.0"><p>Two explosions were reported at a Texas chemical plant, hours after the facility’s owner urged residents and others to stay away.</p><p class="Text-action">Read Full Article</p></div></div></a></div></div></div><div class="LiveCoverageCard-footer" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$9_1504192488.1"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$9_1504192488.1.0"></noscript><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$9_1504192488.1.1"><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$9_1504192488.1.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$9_1504192488.1.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$9_1504192488.1.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$9_1504192488.1.1.2.0">Twitter</span></li></ul></div></div><div class="LiveCoverageCard" id="LCcard-1504192137" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$10_1504192137"><div class="LiveCoverageCard-body" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$10_1504192137.0"><div class="LiveCoverageCard-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$10_1504192137.0.0"><div class="LiveCoverageCard-header" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$10_1504192137.0.0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$10_1504192137.0.0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$10_1504192137.0.0.0.0.0"></span></div><h3 class="wsj-headline dj-sg heading-2 unlocked" itemprop="name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$10_1504192137.0.0.0.2">Harvey Deaths Include Couple Killed by Falling Tree in Tiny Jasper County</h3></div><div class="Text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$10_1504192137.0.0.1:$0_text"><div class="Text-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$10_1504192137.0.0.1:$0_text.0"><p>The Harvey-related deaths in Texas also include a man and a woman crushed by a falling tree as they drove through Jasper County late Tuesday, County Judge Mark Allen confirmed. The deaths there bring the storm-related toll across Texas to at least 33, according to reports from local officials, and the numbers are expected to continue rising.</p>
<p>The couple were sheltering in the tiny county, population roughly 36,000, when the tree in the waterlogged ground toppled over on their vehicle. “The timing, it was a horrible thing to happen,” the judge said.</p>
<p>There was also another death in Jasper County that may be storm related: Judge Allen said a woman there suffered a heart attack and died while trying to fortify her home with sandbags. “I’d would say more likely than not it was a stresser,” he said.</p>
<p>Jasper County sits in a region that was slammed with yet-more rain in Harvey’s final act before the storm finally moved into Louisiana. The county has had mandatory evacuations in low-lying areas, Judge Allen said.</p>
<p>Despite its own struggles, the county is also taking in evacuees from other areas, including about 250 people from nearby Orange County. “The majority are from shelters that began taking on water there, and they called for help,” the judge said. “They fled to our county.”</p>
<p>He said his county may also start taking in people Thursday from Jefferson County, home to the hard-hit cities of Beaumont and Port Arthur.  </p></div></div><div class="Attribution default" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$10_1504192137.0.0.2"><div class="Attribution-byline" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$10_1504192137.0.0.2.1"><p class="Attribution-name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$10_1504192137.0.0.2.1.0"><em data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$10_1504192137.0.0.2.1.0.0"><span class="nowrap" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$10_1504192137.0.0.2.1.0.0.$0_name">Jon Kamp</span></em></p></div></div></div></div><div class="LiveCoverageCard-footer" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$10_1504192137.1"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$10_1504192137.1.0"></noscript><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$10_1504192137.1.1"><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$10_1504192137.1.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$10_1504192137.1.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$10_1504192137.1.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$10_1504192137.1.1.2.0">Twitter</span></li></ul></div></div><div class="LiveCoverageCard" id="LCcard-1504191066" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$11_1504191066"><div class="LiveCoverageCard-body" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$11_1504191066.0"><div class="LiveCoverageCard-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$11_1504191066.0.0"><div class="LiveCoverageCard-header --no-header-text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$11_1504191066.0.0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$11_1504191066.0.0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$11_1504191066.0.0.0.0.0"></span></div></div><div class="ArticleCard" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$11_1504191066.0.0.1:$0_article"><a href="https://www.wsj.com/articles/evacuees-crowd-into-shelters-as-harvey-hits-louisiana-1504190720" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$11_1504191066.0.0.1:$0_article.0"><h3 class="wsj-headline dj-sg heading-2 unlocked" itemprop="name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$11_1504191066.0.0.1:$0_article.0.0">Evacuees Crowd Into Shelters as Harvey Hits Louisiana</h3><div class="ArticleCard-img" style="background-image:url(https://si.wsj.net/public/resources/images/BN-UX285_HARVEY_D_20170831100012.jpg);" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$11_1504191066.0.0.1:$0_article.0.1"></div><div class="Text ArticleCard-dek" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$11_1504191066.0.0.1:$0_article.0.2"><div class="Text-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$11_1504191066.0.0.1:$0_article.0.2.0"><p>As the Houston region begins to emerge from Harvey’s beating, communities in eastern Texas and Louisiana are struggling to handle evacuees displaced by record rainfalls that have submerged entire towns.</p><p class="Text-action">Read Full Article</p></div></div></a></div></div></div><div class="LiveCoverageCard-footer" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$11_1504191066.1"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$11_1504191066.1.0"></noscript><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$11_1504191066.1.1"><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$11_1504191066.1.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$11_1504191066.1.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$11_1504191066.1.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$11_1504191066.1.1.2.0">Twitter</span></li></ul></div></div><div class="LiveCoverageCard" id="LCcard-1504189338" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$12_1504189338"><div class="LiveCoverageCard-body" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$12_1504189338.0"><div class="LiveCoverageCard-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$12_1504189338.0.0"><div class="LiveCoverageCard-header" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$12_1504189338.0.0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$12_1504189338.0.0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$12_1504189338.0.0.0.0.0"></span></div><h3 class="wsj-headline dj-sg heading-2 unlocked" itemprop="name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$12_1504189338.0.0.0.2">Harvey Death Toll Rises to at Least 31; Fort Bend County Reports First Fatalities </h3></div><div class="Text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$12_1504189338.0.0.1:$0_text"><div class="Text-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$12_1504189338.0.0.1:$0_text.0"><p>The death toll in Texas includes a couple in Fort Bend County who drowned yesterday in floodwaters, according to county officials. Those are the first two deaths reported by Ford Bend county officials. </p>
<p>There are at least 31 deaths in Texas connected to Harvey, according to reports from local officials, and the number is expected to rise.</p></div></div><div class="TweetCard" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$12_1504189338.0.0.1:$1_tweet"></div><div class="Attribution default" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$12_1504189338.0.0.2"><div class="Attribution-byline" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$12_1504189338.0.0.2.1"><p class="Attribution-name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$12_1504189338.0.0.2.1.0"><em data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$12_1504189338.0.0.2.1.0.0"><span class="nowrap" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$12_1504189338.0.0.2.1.0.0.$0_name">Jon Kamp</span></em></p></div></div></div></div><div class="LiveCoverageCard-footer" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$12_1504189338.1"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$12_1504189338.1.0"></noscript><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$12_1504189338.1.1"><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$12_1504189338.1.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$12_1504189338.1.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$12_1504189338.1.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$12_1504189338.1.1.2.0">Twitter</span></li></ul></div></div><div class="LiveCoverageCard" id="LCcard-1504188821" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$13_1504188821"><div class="LiveCoverageCard-body" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$13_1504188821.0"><div class="LiveCoverageCard-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$13_1504188821.0.0"><div class="LiveCoverageCard-header --no-header-text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$13_1504188821.0.0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$13_1504188821.0.0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$13_1504188821.0.0.0.0.0"></span></div></div><div class="IframeCard" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$13_1504188821.0.0.1:$0_video"><div class="IframeCard-video" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$13_1504188821.0.0.1:$0_video.2:$0"><iframe allowfullscreen="true" webkitallowfullscreen="true" mozallowfullscreen="true" frameborder="0" scrolling="no" width="512" height="288" src="https://video-api.wsj.com/api-video/player/v3/iframe.html?guid=A022FAEF-30C1-4255-9ACA-AED9CEF1EA3C"></iframe></div></div><div class="Text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$13_1504188821.0.0.1:$1_text"><div class="Text-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$13_1504188821.0.0.1:$1_text.0"><p>Tropical Storm Harvey’s impact on Texas has been catastrophic, but the city of Houston is faring worse than some others. Here&#39;s the science of why Harvey has been especially devastating for the area. </p></div></div></div></div><div class="LiveCoverageCard-footer" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$13_1504188821.1"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$13_1504188821.1.0"></noscript><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$13_1504188821.1.1"><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$13_1504188821.1.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$13_1504188821.1.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$13_1504188821.1.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$13_1504188821.1.1.2.0">Twitter</span></li></ul></div></div><div class="LiveCoverageCard" id="LCcard-1504186939" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$14_1504186939"><div class="LiveCoverageCard-body" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$14_1504186939.0"><div class="LiveCoverageCard-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$14_1504186939.0.0"><div class="LiveCoverageCard-header --no-header-text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$14_1504186939.0.0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$14_1504186939.0.0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$14_1504186939.0.0.0.0.0"></span></div></div><div class="wsj-video video-cover" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$14_1504186939.0.0.1:$0_video"><div class="wsj-image clickable" itemscope="" itemtype="http://schema.org/ImageObject" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$14_1504186939.0.0.1:$0_video.0"><meta itemprop="contentUrl" content="https://m.wsj.net/video/20170830/083017zitner/083017zitner_1280x720.jpg" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$14_1504186939.0.0.1:$0_video.0.0"/><meta itemprop="caption description" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$14_1504186939.0.0.1:$0_video.0.1"/><div class="ResponsiveMedia dj-sg lazyload" style="padding-bottom:56.2500%;" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$14_1504186939.0.0.1:$0_video.0.2"><div class="responsive-media-child" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$14_1504186939.0.0.1:$0_video.0.2.0"></div></div></div></div></div></div><div class="LiveCoverageCard-footer" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$14_1504186939.1"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$14_1504186939.1.0"></noscript><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$14_1504186939.1.1"><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$14_1504186939.1.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$14_1504186939.1.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$14_1504186939.1.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$14_1504186939.1.1.2.0">Twitter</span></li></ul></div></div><div class="LiveCoverageCard" id="LCcard-1504186806" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$15_1504186806"><div class="LiveCoverageCard-body" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$15_1504186806.0"><div class="LiveCoverageCard-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$15_1504186806.0.0"><div class="LiveCoverageCard-header" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$15_1504186806.0.0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$15_1504186806.0.0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$15_1504186806.0.0.0.0.0"></span></div><h3 class="wsj-headline dj-sg heading-2 unlocked" itemprop="name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$15_1504186806.0.0.0.2">Texas Ranchers Drive Cattle to High Ground</h3></div><img class="ImageCard" src="https://si.wsj.net/public/resources/images/BN-UX280_3crE1_M_20170831093540.jpg" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$15_1504186806.0.0.1:$0_image"/><div class="CaptionCredit" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$15_1504186806.0.0.1:$0_credit"><span class="CaptionCredit__caption" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$15_1504186806.0.0.1:$0_credit.0">Cattle is seen on land amid flooding from the Colorado River in La Grange, Texas, on Monday, after floodwaters from Tropical Storm Harvey inundated the area.</span><span class="CaptionCredit__credit" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$15_1504186806.0.0.1:$0_credit.1">Ralph Barrera/Associated Press</span></div><div class="Text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$15_1504186806.0.0.1:$1_text"><div class="Text-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$15_1504186806.0.0.1:$1_text.0"><p>Flooding from Tropical Storm Harvey is threatening cattle in one of the country’s most important ranching states.</p>
<p>Many ranchers moved their livestock to higher ground before the storm. But the amount of rain caught others off guard. Mike Doguet, a rancher in Nome, about 50 miles east of Houston, was forced to cut fences and lead his 450-head herd out onto the highway after the rains left the cattle  standing in water up to their bellies.</p>
<p>“It has been a nightmare,” said Mr. Doguet, who has been traveling across his ranch by boat. “We’re praying this rain stops and the floods go down.”</p>
<p>Texas is the biggest beef cow-producing state in the country. Bill Hyman, president of the Independent Cattlemen’s Association of Texas, estimated up to half of the state’s ranchers were affected by the hurricane.</p>
<p>But with ample supplies elsewhere in the country, the impact on cattle futures markets and beef prices so far has been muted.</p>
<p>Still, officials and ranchers say it could take months--or longer--to recover from the damage. Kane Beef, a packing house in Corpus Christi that can process 1,400 head a day, was shut by the storm. Harvey will likely disrupt the transport of cattle to feedlots and slaughterhouses in north and west Texas, said Steiner Consulting Group.</p>
<p>Officials say it is too early to estimate how much livestock has been lost. The severity of the flooding kept officers from the Texas Animal Health Commission--some of whom work on horseback-- from undertaking inspections during the storm. Some areas remain inaccessible.</p>
<p>Chuck Kiker, who raises 300 cow-calves west of Beaumont, near the Louisiana border, says he hasn’t accounted for around 10 to 15 of his cattle.</p>
<p>“It’s like a giant lake,” Mr. Kiker said. “I’ve lived here all my life and I’ve never seen water like this.”</p>
<p>-- <em>Benjamin Parkin</em> </p></div></div></div></div><div class="LiveCoverageCard-footer" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$15_1504186806.1"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$15_1504186806.1.0"></noscript><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$15_1504186806.1.1"><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$15_1504186806.1.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$15_1504186806.1.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$15_1504186806.1.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$15_1504186806.1.1.2.0">Twitter</span></li></ul></div></div><div class="LiveCoverageCard" id="LCcard-1504185985" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$16_1504185985"><div class="LiveCoverageCard-body" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$16_1504185985.0"><div class="LiveCoverageCard-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$16_1504185985.0.0"><div class="LiveCoverageCard-header" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$16_1504185985.0.0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$16_1504185985.0.0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$16_1504185985.0.0.0.0.0"></span></div><h3 class="wsj-headline dj-sg heading-2 unlocked" itemprop="name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$16_1504185985.0.0.0.2">Coast Guard Opens Up Texas Ports for Small Ships</h3></div><div class="Text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$16_1504185985.0.0.1:$0_text"><div class="Text-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$16_1504185985.0.0.1:$0_text.0"><p>The U.S. Coast Guard is opening the Texas ports of Houston, Galveston and Freeport for small, Panamax type ships that are around 660 feet long, as the cleanup from Harvey continues.</p>
<p>It will take some time before bigger ships like the mainstay Very Large Crude Carriers-- up to 1,550 feet long -- to be allowed in, but the green light means dozens of smaller chemical tankers  and container ships,  stuck outside the ports since Saturday, will discharge or load up cargo.</p>
<p>&quot;While urban search-and-rescue remains our top priority, we understand the importance of reopening ports, which are vital to the flow of goods and services,&quot; said Captain Kevin D. Oditt, incident commander for the Hurricane Harvey response.</p>
<p>-- <em>Costas Paris</em> </p></div></div></div></div><div class="LiveCoverageCard-footer" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$16_1504185985.1"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$16_1504185985.1.0"></noscript><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$16_1504185985.1.1"><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$16_1504185985.1.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$16_1504185985.1.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$16_1504185985.1.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$16_1504185985.1.1.2.0">Twitter</span></li></ul></div></div><div class="LiveCoverageCard" id="LCcard-1504185812" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$17_1504185812"><div class="LiveCoverageCard-body" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$17_1504185812.0"><div class="LiveCoverageCard-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$17_1504185812.0.0"><div class="LiveCoverageCard-header --no-header-text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$17_1504185812.0.0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$17_1504185812.0.0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$17_1504185812.0.0.0.0.0"></span></div></div><div class="TweetCard" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$17_1504185812.0.0.1:$0_tweet"></div></div></div><div class="LiveCoverageCard-footer" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$17_1504185812.1"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$17_1504185812.1.0"></noscript><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$17_1504185812.1.1"><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$17_1504185812.1.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$17_1504185812.1.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$17_1504185812.1.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$17_1504185812.1.1.2.0">Twitter</span></li></ul></div></div><div class="LiveCoverageCard" id="LCcard-1504182527" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$18_1504182527"><div class="LiveCoverageCard-body" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$18_1504182527.0"><div class="LiveCoverageCard-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$18_1504182527.0.0"><div class="LiveCoverageCard-header --no-header-text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$18_1504182527.0.0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$18_1504182527.0.0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$18_1504182527.0.0.0.0.0"></span></div></div><div class="ArticleCard" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$18_1504182527.0.0.1:$0_article"><a href="https://www.wsj.com/articles/j-j-watts-10-million-rush-for-houston-1504181875" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$18_1504182527.0.0.1:$0_article.0"><h3 class="wsj-headline dj-sg heading-2 unlocked" itemprop="name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$18_1504182527.0.0.1:$0_article.0.0">J.J. Watt’s $10 Million Rush for Houston</h3><div class="ArticleCard-img" style="background-image:url(https://si.wsj.net/public/resources/images/BN-UX111_WATT08_D_20170830183107.jpg);" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$18_1504182527.0.0.1:$0_article.0.1"></div><div class="Text ArticleCard-dek" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$18_1504182527.0.0.1:$0_article.0.2"><div class="Text-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$18_1504182527.0.0.1:$0_article.0.2.0"><p>An NFL star’s social media fundraiser for flood victims is closing in on eight figures.</p><p class="Text-action">Read Full Article</p></div></div></a></div></div></div><div class="LiveCoverageCard-footer" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$18_1504182527.1"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$18_1504182527.1.0"></noscript><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$18_1504182527.1.1"><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$18_1504182527.1.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$18_1504182527.1.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$18_1504182527.1.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$18_1504182527.1.1.2.0">Twitter</span></li></ul></div></div><div class="LiveCoverageCard" id="LCcard-1504180035" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$19_1504180035"><div class="LiveCoverageCard-body" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$19_1504180035.0"><div class="LiveCoverageCard-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$19_1504180035.0.0"><div class="LiveCoverageCard-header" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$19_1504180035.0.0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$19_1504180035.0.0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$19_1504180035.0.0.0.0.0"></span></div><h3 class="wsj-headline dj-sg heading-2 unlocked" itemprop="name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$19_1504180035.0.0.0.2">Friday&#x27;s Jobs Report Will Not Show Harvey Impact</h3></div><div class="Text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$19_1504180035.0.0.1:$0_text"><div class="Text-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$19_1504180035.0.0.1:$0_text.0"><p>The August jobs report, to be released Friday by the Labor Department, won&#39;t show disruption caused by Hurricane Harvey and related flooding. By the time Harvey made landfall Aug. 25, nearly all data contributing to report had been collected.</p>
<p>The survey that determines the unemployment rate asks respondents about their work status during the week of the 12th--<a href="https://blogs.wsj.com/economics/2017/08/30/no-government-statisticians-wont-have-to-pull-a-jobs-report-all-nighter/">two full weeks</a> before the storm.  Some data on employer payrolls may have been collected this week, but that survey asks about the pay period that includes the 12th, which for most workers wouldn&#39;t overlap with the last week of August. </p>
<p>If Harvey&#39;s effects leave some in Texas and Louisiana out of work in mid-September, that could be reflected in the following month&#39;s jobs report. But that impact could be countered by those who find employment in coming weeks in cleanup and rebuilding efforts.</p>
<p>A more likely report to reflect Harvey&#39;s economic impact is weekly jobless claims, released every Thursday. The report to be issued on Sept. 7 would include those who sought jobless benefits between Aug. 27 and Sept. 2. Previous natural disasters have caused an increase in claims filings in affected states.</p>
<p> <em>--Eric Morath</em> </p></div></div></div></div><div class="LiveCoverageCard-footer" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$19_1504180035.1"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$19_1504180035.1.0"></noscript><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$19_1504180035.1.1"><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$19_1504180035.1.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$19_1504180035.1.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$19_1504180035.1.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$19_1504180035.1.1.2.0">Twitter</span></li></ul></div></div><div class="LiveCoverageCard" id="LCcard-1504179089" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089"><div class="LiveCoverageCard-body" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.0"><div class="LiveCoverageCard-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.0.0"><div class="LiveCoverageCard-header" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.0.0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.0.0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.0.0.0.0.0"></span></div><h3 class="wsj-headline dj-sg heading-2 unlocked" itemprop="name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.0.0.0.2">Evacuees From East Texas Pour Into Louisiana Shelter</h3></div><div class="Text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.0.0.1:$0_text"><div class="Text-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.0.0.1:$0_text.0"><p>An hour before midnight on Wednesday, a U-Haul truck with unexpected cargo pulled up to the front doors of the Lake Charles Civic Center, the largest makeshift shelter for evacuees of Tropical Storm Harvey in Southwest Louisiana. It was carrying 16 more people displaced by the storm.</p>
<p>The arena’s 675 cots were already occupied, having received hundreds of refugees from Southeast Texas fleeing rising floodwaters after Harvey <a href="https://www.wsj.com/articles/harvey-weakens-sparing-louisiana-the-worst-1504120056">made landfall early Wednesday</a>  morning near the state’s border with Louisiana.</p>
<p>But Bruce Baker--director of the Carey Baptist Association’s Disaster Relief Unit, the Lake Charles non-profit organization helping manage the shelter--wasn’t going to turn away the new guests.</p>
<p>“They came an hour away in the back of a moving van,” said a teary-eyed Mr. Baker, who had just gotten off the phone with local and state emergency officials to inform them of his decision to take on more evacuees. “That’s what we do.”</p>
<p>Following 350 rescue operations Monday night in Louisiana’s Calcasieu Parish, roughly 160 people found shelter at the Civic Center during a relatively quiet Tuesday evening. </p>
<p>But by Wednesday, the numbers became nearly unmanageable as evacuees, mostly from Orange, Texas, fled roughly 35 miles east into Lake Charles to seek shelter after the storm’s 4 a.m. landfall, which pummeled a cluster of cities on the state line.</p>
<p>“As we began to get evacuations from Texas, that got more than a little chaotic,” Mr. Baker said. “It’s been a tough day. … There are people who are going to sleep on the floor tonight.”</p>
<p>The more than 800 people sheltering in the Civic Center Wednesday night were split almost evenly between Louisiana residents and Texas evacuees, Mr. Baker said. The influx of Texans to the arena began at 11 a.m. and continued steadily until 6 p.m.</p>
<p>“Do you know how long we’re going to stay here or what’s going to happen to us?” one evacuee asked a volunteer late Wednesday night. Another asked organizers if they could spare an extra bed for an elderly man in a wheelchair seeking shelter.</p>
<p>At roughly 12:30 a.m. Thursday morning, fire marshals upped the Civic Center’s capacity, helping accommodate another surge of arrivals between 9 p.m. and midnight. Roughly 60 evacuees per hour showed up to the arena with pillows and weary faces--many turned away from other shelters, and some rescued from the nearby, 660-person town of Starks, La., by the venerated civilian rescue fleet known as the Cajun Navy.</p></div></div><img class="ImageCard" src="https://si.wsj.net/public/resources/images/BN-UX260_3cBrh_M_20170831075320.jpg" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.0.0.1:$1_image"/><div class="CaptionCredit" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.0.0.1:$1_credit"><span class="CaptionCredit__caption" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.0.0.1:$1_credit.0">Roger Richard from Lake Charles, La., sits on a cot in the Lake Charles Civic Center Tuesday evening as he and other refugees from Hurricane Harvey flooding make their way into the storm shelter.</span><span class="CaptionCredit__credit" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.0.0.1:$1_credit.1">Advocate Staff Patrick/Zuma Press</span></div><div class="Text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.0.0.1:$2_text"><div class="Text-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.0.0.1:$2_text.0"><p>“The Bible says we’re supposed to love our neighbors,” Mr. Baker said. “So if your neighbor&#39;s got three feet of water in his house, the best way to love him is to show up with a bucket and a mop, and in this case, a boat and a bed.”</p>
<p>Sara Taylor, a 69-year-old senior citizen caregiver from Orange, arrived at the Civic Center sometime after midnight. Her husband refused to evacuate. </p>
<p>Ms. Taylor is not sure when she will leave the shelter, but knows her daughters living in Austin will come for her eventually. She does not know how to swim, and has never before experienced a major flooding event. </p>
<p>“It’s scary. I see it as a life or death matter,” she said. “I’m glad to be here.” </p>
<p>The Cajun Navy rescued Ms. Taylor at her doorstep at 10 p.m., along with her grandson and his three children--triplets who are less than two years old. </p>
<p>“I had fear for them not being able to get out,” she said. “It was beginning to be a nightmare for me.”</p></div></div><div class="Attribution default" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.0.0.2"><div class="Attribution-byline" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.0.0.2.1"><p class="Attribution-name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.0.0.2.1.0"><em data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.0.0.2.1.0.0"><span class="nowrap" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.0.0.2.1.0.0.$0_name">Quint Forgey</span></em></p></div></div></div></div><div class="LiveCoverageCard-footer" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.1"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.1.0"></noscript><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.1.1"><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.1.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.1.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.1.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$20_1504179089.1.1.2.0">Twitter</span></li></ul></div></div><div class="LiveCoverageCard" id="LCcard-1504177457" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$21_1504177457"><div class="LiveCoverageCard-body" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$21_1504177457.0"><div class="LiveCoverageCard-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$21_1504177457.0.0"><div class="LiveCoverageCard-header --no-header-text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$21_1504177457.0.0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$21_1504177457.0.0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$21_1504177457.0.0.0.0.0"></span></div></div><div class="ArticleCard" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$21_1504177457.0.0.1:$0_article"><a href="https://www.wsj.com/articles/as-harvey-wrecks-havoc-european-refiners-set-to-benefit-1504177021" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$21_1504177457.0.0.1:$0_article.0"><h3 class="wsj-headline dj-sg heading-2 locked" itemprop="name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$21_1504177457.0.0.1:$0_article.0.0">As Harvey Wrecks Havoc, European Refiners Set to Benefit</h3><div class="ArticleCard-img" style="background-image:url(https://si.wsj.net/public/resources/images/BN-UX247_harvey_D_20170831062928.jpg);" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$21_1504177457.0.0.1:$0_article.0.1"></div><div class="Text ArticleCard-dek" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$21_1504177457.0.0.1:$0_article.0.2"><div class="Text-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$21_1504177457.0.0.1:$0_article.0.2.0"><p>As Tropical Storm Harvey continues to run roughshod over U.S. refineries, threatening fuel shortages across America, gasoline producers in Europe are sizing up a potential windfall.</p><p class="Text-action">Read Full Article</p></div></div></a></div><div class="Attribution default" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$21_1504177457.0.0.2"><div class="Attribution-byline" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$21_1504177457.0.0.2.1"><p class="Attribution-name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$21_1504177457.0.0.2.1.0"><em data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$21_1504177457.0.0.2.1.0.0"><span class="nowrap" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$21_1504177457.0.0.2.1.0.0.$0_name">Christopher Alessi</span></em></p></div></div></div></div><div class="LiveCoverageCard-footer" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$21_1504177457.1"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$21_1504177457.1.0"></noscript><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$21_1504177457.1.1"><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$21_1504177457.1.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$21_1504177457.1.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$21_1504177457.1.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$21_1504177457.1.1.2.0">Twitter</span></li></ul></div></div><div class="LiveCoverageCard" id="LCcard-1504176141" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$22_1504176141"><div class="LiveCoverageCard-body" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$22_1504176141.0"><div class="LiveCoverageCard-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$22_1504176141.0.0"><div class="LiveCoverageCard-header" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$22_1504176141.0.0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$22_1504176141.0.0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$22_1504176141.0.0.0.0.0"></span></div><h3 class="wsj-headline dj-sg heading-2 unlocked" itemprop="name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$22_1504176141.0.0.0.2">&#x27;I’m Not Waiting for Death to Find Me&#x27;</h3></div><div class="Text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$22_1504176141.0.0.1:$0_text"><div class="Text-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$22_1504176141.0.0.1:$0_text.0"><p>Latanya Robinson, 47 years old, and her husband, who live within the chemical plant&#39;s evacuation zone, left Wednesday. But she said no authorities had asked her to evacuate, and that she only left after seeing the warnings on the local TV news and hearing about it from relatives.</p>
<p>“I’m not waiting for death to find me,” Ms. Robinson said by telephone. “Me and my husband are at my son’s house now, about 10 miles away.”</p>
<p>Ms. Robinson said a neighbor who didn’t leave sent her a text message to inform her that the plant had just exploded. “Two blasts in a row at around 2 a.m.,” she said the neighbor told her. “Now that it’s over, the lady said she’s turning the air off and closing the windows so the smoke doesn’t enter the house, and she’s going to go back to bed.”</p></div></div><div class="Attribution default" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$22_1504176141.0.0.2"><div class="Attribution-byline" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$22_1504176141.0.0.2.1"><p class="Attribution-name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$22_1504176141.0.0.2.1.0"><em data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$22_1504176141.0.0.2.1.0.0"><span class="nowrap" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$22_1504176141.0.0.2.1.0.0.$0_name">Dan Molinski</span></em></p></div></div></div></div><div class="LiveCoverageCard-footer" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$22_1504176141.1"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$22_1504176141.1.0"></noscript><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$22_1504176141.1.1"><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$22_1504176141.1.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$22_1504176141.1.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$22_1504176141.1.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$22_1504176141.1.1.2.0">Twitter</span></li></ul></div></div><div class="LiveCoverageCard" id="LCcard-1504173520" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$23_1504173520"><div class="LiveCoverageCard-body" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$23_1504173520.0"><div class="LiveCoverageCard-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$23_1504173520.0.0"><div class="LiveCoverageCard-header --no-header-text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$23_1504173520.0.0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$23_1504173520.0.0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$23_1504173520.0.0.0.0.0"></span></div></div><div class="TweetCard" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$23_1504173520.0.0.1:$0_tweet"></div></div></div><div class="LiveCoverageCard-footer" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$23_1504173520.1"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$23_1504173520.1.0"></noscript><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$23_1504173520.1.1"><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$23_1504173520.1.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$23_1504173520.1.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$23_1504173520.1.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$23_1504173520.1.1.2.0">Twitter</span></li></ul></div></div><div class="LiveCoverageCard" id="LCcard-1504173229" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$24_1504173229"><div class="LiveCoverageCard-body" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$24_1504173229.0"><div class="LiveCoverageCard-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$24_1504173229.0.0"><div class="LiveCoverageCard-header --no-header-text" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$24_1504173229.0.0.0"><div class="LiveCoverageCard-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$24_1504173229.0.0.0.0"><span class="wsj-timestamp" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$24_1504173229.0.0.0.0.0"></span></div></div><div class="ArticleCard" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$24_1504173229.0.0.1:$0_article"><a href="https://www.wsj.com/articles/explosions-reported-at-arkema-chemical-plant-1504173125" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$24_1504173229.0.0.1:$0_article.0"><h3 class="wsj-headline dj-sg heading-2 locked" itemprop="name" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$24_1504173229.0.0.1:$0_article.0.0">Explosions Reported at Arkema Chemical Plant </h3><div class="ArticleCard-img" style="background-image:url(https://si.wsj.net/public/resources/images/BN-UX240_3cBvL_TOP_20170831054005.jpg);" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$24_1504173229.0.0.1:$0_article.0.1"></div><div class="Text ArticleCard-dek" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$24_1504173229.0.0.1:$0_article.0.2"><div class="Text-inner" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$24_1504173229.0.0.1:$0_article.0.2.0"><p>The chemical firm Arkema said early Thursday there were two explosions at its Texas plant after heavy flooding related to Tropical Storm Harvey.</p><p class="Text-action">Read Full Article</p></div></div></a></div></div></div><div class="LiveCoverageCard-footer" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$24_1504173229.1"><noscript data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$24_1504173229.1.0"></noscript><ul class="Social" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$24_1504173229.1.1"><li class="Social-icon Social-facebook" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$24_1504173229.1.1.1"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$24_1504173229.1.1.1.0">Facebook</span></li><li class="Social-icon Social-twitter" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$24_1504173229.1.1.2"><span data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.3.0.0.1.2:$24_1504173229.1.1.2.0">Twitter</span></li></ul></div></div></div></div></div></div><div class="cb-col LiveCoverageRightRail" style="width:25%;" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.4"><div class="sticky-ad-top lc-ad-fullrail" style="height:1050px;position:relative;" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.4.0"><div style="display:inline-block;" class="stuck-top" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.4.0.0"><div class="wsj-ad" data-cb-ad-id="TopRectangle" data-reactid=".1c9jte0nxqy.1.1.2.1.3.2.4.0.0.0"></div></div></div></div></div><div id="affix_bottom_limit" data-reactid=".1c9jte0nxqy.1.1.2.1.3.3"><div class="cb-col" style="width:75%;" data-reactid=".1c9jte0nxqy.1.1.2.1.3.3.0"><div class="lazyload" data-reactid=".1c9jte0nxqy.1.1.2.1.3.3.0.0"><div data-reactid=".1c9jte0nxqy.1.1.2.1.3.3.0.0.0"></div></div></div><div class="cb-col" style="width:25%;" data-reactid=".1c9jte0nxqy.1.1.2.1.3.3.1"><div class="lazyload" data-reactid=".1c9jte0nxqy.1.1.2.1.3.3.1.0"><div data-reactid=".1c9jte0nxqy.1.1.2.1.3.3.1.0.0"></div></div></div></div></div></div></div><div class="Back2Top-wrap" data-reactid=".1c9jte0nxqy.1.1.3"><div class="Back2Top-inner" data-reactid=".1c9jte0nxqy.1.1.3.0"><div class="Back2Top" data-reactid=".1c9jte0nxqy.1.1.3.0.0"><a data-reactid=".1c9jte0nxqy.1.1.3.0.0.0">TOP</a></div></div></div><footer class="style__at16units_2jJIyllf0--4IXIII2qZzN style__wsj-footer_1V-d2SitNlayhZvNOID6bK" data-reactid=".1c9jte0nxqy.1.1.4"><div class="style__footer-wrap_3j-2ku3Nn1QaoTfEfVBXHg" data-reactid=".1c9jte0nxqy.1.1.4.0"><div class="style__top-links-wrapper_vOuGprXnWYb7_imtr6hJf" data-reactid=".1c9jte0nxqy.1.1.4.0.0"><div class="style__sector_b63KKbwfDeV7C50fFCTNH" data-reactid=".1c9jte0nxqy.1.1.4.0.0.0"><menu class="style__top-links_3-2bbP7aNbPx2rBDuhgtfc style__module_eb9vbyzL3hIkwTewrrjLq" data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0"><li class="style__wsj-logo_11Dcn8qJLd0UHoovXQudV_" data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.0"><a href="https://www.wsj.com" data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.0.0">The Wall Street Journal</a></li><li class="style__footer_3ZkI8ftvF7OkzRyvIT5vOR style__edition-dropdown_HJVEbEuLi4GNp0fF687Yd style__unexpanded_1qs3bFzn9K-ZtXT8LJMm-S" data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.1"><div class="style__expand-escaper_fZ8bruo0XIWVTIHmRYEQz" data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.1.0"></div><span class="style__selected-edition_r8UykRoICUJ4BTKG1Y4Wz" data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.1.1"><span data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.1.1.0">U.S. Edition</span><ul class="style__edition-picker_Y97N7V2PPRAsA6xuRbj4b" data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.1.1.1"><li data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.1.1.1.$0"><a href="#" data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.1.1.1.$0.0">U.S.</a></li><li data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.1.1.1.$1"><a href="#" data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.1.1.1.$1.0">Asia</a></li><li data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.1.1.1.$2"><a href="#" data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.1.1.1.$2.0">Europe</a></li><li class="style__english_26NIwBYzw2qrvBxpRf5U_Z" data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.1.1.1.$3"><a href="#" data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.1.1.1.$3.0">India</a></li><li class="style__non-english_2kSvPo9v3oeKr8n72DS9Kk" data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.1.1.1.$4"><a href="#" data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.1.1.1.$4.0">中国 (China)</a></li><li data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.1.1.1.$5"><a href="#" data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.1.1.1.$5.0">日本 (Japan)</a></li></ul></span></li><li class="style__login_sub_22GXJaK6eFjR4ooPQYXgtT" data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.2"><menu class="style__custom-menu_2cLPIHwukFrsvkFByK0nu5" data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.2.0"><li class="style__subscribe_3na9exS3vg3Zf2A9-QuF9S" data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.2.0.0"><a class="style__subscribe-link_2kEltUj2UAHNRl89qvpiZM" href="https://subscribe.wsj.com/hpfooterlink" rel="nofollow" data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.2.0.0.0">Subscribe Now</a></li><li class="style__login_3VuAM35P8wTb48z-tX1ItJ" data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.2.0.1"><a class="style__logout-link_314o4ZBkcehh1h4Cyxtews" href="https://accounts.wsj.com/login?target=http%3A%2F%2Fwww.wsj.com" data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.2.0.1.0">Sign In</a></li></menu></li><li class="style__back-2-top_VTFyG9aIlBcwzSKG5ZXNe" data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.3"><a data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.3.0"><span data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.3.0.0">TOP</span><span class="style__rotate_2lr8F8N21k6ntf2s6SHDl-" data-reactid=".1c9jte0nxqy.1.1.4.0.0.0.0.3.0.1"> « </span></a></li></menu></div></div><div class="style__sector_b63KKbwfDeV7C50fFCTNH" data-reactid=".1c9jte0nxqy.1.1.4.0.1"><menu class="style__column-links_3jP6Gldq1f4-iwW8nPldmK style__module_eb9vbyzL3hIkwTewrrjLq" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0"><li class="style__link-col_qPOFB9lzq0EfsBSAngGgT" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$0"><p class="style__column-name_2q_SeZUL5gpEK9-5nObB5R" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$0.0">WSJ Membership</p><menu class="style__links-menu_2vjngrpLr2Ll3gzYRZM1Fg" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$0.1"><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$0.1.$0"><a href="http://www.wsjplus.com/?mod=wsjfooter" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$0.1.$0.0">WSJ+ Membership Benefits</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$0.1.$1"><a href="http://subscribe.wsj.com/digitalpack" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$0.1.$1.0">Digital Subscription</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$0.1.$2"><a href="http://subscribe.wsj.com/printpack" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$0.1.$2.0">Print Subscription</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$0.1.$3"><a href="http://subscribe.wsj.com/printanddigitalpack" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$0.1.$3.0">Print and Digital Subscription</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$0.1.$4"><a href="http://www.subscription.wsj.com/?mod=wsjfooter" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$0.1.$4.0">Why Subscribe?</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$0.1.$5"><a href="http://now.wsj.com/mobile/?mod=wsjfooter" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$0.1.$5.0">Download WSJ Apps for iOS and Android</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$0.1.$6"><a href="http://www.subscription.wsj.com/corporate/?mod=wsjfooter" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$0.1.$6.0">Corporate Subscriptions</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$0.1.$7"><a href="http://professor.wsj.com/?mod=wsjfooter" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$0.1.$7.0">Professor Journal</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$0.1.$8"><a href="http://www.wsjstudent.com/?mod=wsjfooter" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$0.1.$8.0">Student Journal</a></li></menu></li><li class="style__link-col_qPOFB9lzq0EfsBSAngGgT" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$1"><p class="style__column-name_2q_SeZUL5gpEK9-5nObB5R" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$1.0">Customer Service</p><menu class="style__links-menu_2vjngrpLr2Ll3gzYRZM1Fg" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$1.1"><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$1.1.$0"><a href="https://customercenter.wsj.com/home" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$1.1.$0.0">Customer Center</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$1.1.$1"><a href="https://customercenter.wsj.com/contact" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$1.1.$1.0">Contact Us</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$1.1.$2"><a href="https://customercenter.wsj.com/livechat/chat?product=WSJ" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$1.1.$2.0">Live Help</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$1.1.$3"><a href="http://www.wsj.com/guidedtour/" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$1.1.$3.0">Redesign Guided Tour</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$1.1.$4"><a href="https://subscribe.wsj.com/notice/CustomerCenterLetter.pdf" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$1.1.$4.0">Notice to Subscribers</a></li></menu></li><li class="style__link-col_qPOFB9lzq0EfsBSAngGgT" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$2"><p class="style__column-name_2q_SeZUL5gpEK9-5nObB5R" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$2.0">Tools &amp; Features</p><menu class="style__links-menu_2vjngrpLr2Ll3gzYRZM1Fg" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$2.1"><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$2.1.$0"><a href="http://www.wsj.com/public/page/email-setup.html" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$2.1.$0.0">Emails &amp; Alerts</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$2.1.$1"><a href="http://www.wsj.com/public/page/guides.html" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$2.1.$1.0">Guides</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$2.1.$2"><a href="http://www.wsj.com/watchlist/news" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$2.1.$2.0">My News</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$2.1.$3"><a href="http://www.wsj.com/public/page/rss_news_and_feeds.html" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$2.1.$3.0">RSS Feeds</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$2.1.$4"><a href="http://topics.wsj.com" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$2.1.$4.0">Topics</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$2.1.$5"><a href="http://www.wsj.com/video" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$2.1.$5.0">Video Center</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$2.1.$6"><a href="http://www.wsj.com/page/0_0_WGT_INVESTORCENTER_MST.html?id=0_0_WGT_INVESTORCENTER&amp;title=Market%20Data" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$2.1.$6.0">Watchlist</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$2.1.$7"><a href="http://www.wsj.com/podcasts" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$2.1.$7.0">Podcasts</a></li></menu></li><li class="style__link-col_qPOFB9lzq0EfsBSAngGgT" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$3"><p class="style__column-name_2q_SeZUL5gpEK9-5nObB5R" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$3.0">Ads</p><menu class="style__links-menu_2vjngrpLr2Ll3gzYRZM1Fg" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$3.1"><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$3.1.$0"><a href="http://www.wsjmediakit.com" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$3.1.$0.0">Advertise</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$3.1.$1"><a href="http://www.wsjlocal.com" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$3.1.$1.0">Advertise Locally</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$3.1.$2"><a href="https://classifieds.wsj.com/ad/Commercial-Real-Estate-Ads" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$3.1.$2.0">Commercial Real Estate Ads</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$3.1.$3"><a href="http://classifieds.wsj.com" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$3.1.$3.0">Place a Classified Ad</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$3.1.$4"><a href="https://classifieds.wsj.com/ad/Business-For-Sale-Ads" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$3.1.$4.0">Sell Your Business</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$3.1.$5"><a href="https://classifieds.wsj.com/ad/Residential-Real-Estate-Ads" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$3.1.$5.0">Sell Your Home</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$3.1.$6"><a href="https://classifieds.wsj.com/ad/Job-Ads" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$3.1.$6.0">Recruitment &amp; Career Ads</a></li></menu></li><li class="style__link-col_qPOFB9lzq0EfsBSAngGgT" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$4"><p class="style__column-name_2q_SeZUL5gpEK9-5nObB5R" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$4.0">More</p><menu class="style__links-menu_2vjngrpLr2Ll3gzYRZM1Fg" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$4.1"><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$4.1.$0"><a href="http://wsj.com/partner" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$4.1.$0.0">Content Partnerships</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$4.1.$1"><a href="http://www.wsj.com/news/column/Corrections" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$4.1.$1.0">Corrections</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$4.1.$2"><a href="http://www.dowjones.com/careers.asp" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$4.1.$2.0">Jobs at WSJ</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$4.1.$3"><a href="http://www.wsj.com/public/page/archive.html" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$4.1.$3.0">News Archive</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$4.1.$4"><a href="https://customercenter.wsj.com/register" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$4.1.$4.0">Register for Free</a></li><li class="style__link-item_2PNRKaQdZEOSnLFkdgrkhS" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$4.1.$5"><a href="http://www.djreprints.com" data-reactid=".1c9jte0nxqy.1.1.4.0.1.0.$4.1.$5.0">Reprints</a></li></menu></li></menu><ul class="style__social-links_1tTcXFp41358k5UXjc0Ql" data-reactid=".1c9jte0nxqy.1.1.4.0.1.1"><li class="style__social-logo_WMPltQbVnKfYUOKzjuDH9" data-reactid=".1c9jte0nxqy.1.1.4.0.1.1.$0"><a class="style__facebook_1HW4lqMFojhY3cDlLZz05P style__icon_16vwfuwmIHjIN_BPxoiLQa" href="http://www.facebook.com/wsj" title="Facebook" data-reactid=".1c9jte0nxqy.1.1.4.0.1.1.$0.0">Facebook</a></li><li class="style__social-logo_WMPltQbVnKfYUOKzjuDH9" data-reactid=".1c9jte0nxqy.1.1.4.0.1.1.$1"><a class="style__twitter_3QxBlupD2n__pP51ERq0Tj style__icon_16vwfuwmIHjIN_BPxoiLQa" href="http://twitter.com/WSJ" title="Twitter" data-reactid=".1c9jte0nxqy.1.1.4.0.1.1.$1.0">Twitter</a></li><li class="style__social-logo_WMPltQbVnKfYUOKzjuDH9" data-reactid=".1c9jte0nxqy.1.1.4.0.1.1.$2"><a class="style__gplus_2KGOLAp7Zl3XscxBbGQcGd style__icon_16vwfuwmIHjIN_BPxoiLQa" href="https://plus.google.com/117720626238470886461/posts" title="Google+" data-reactid=".1c9jte0nxqy.1.1.4.0.1.1.$2.0">Google+</a></li><li class="style__social-logo_WMPltQbVnKfYUOKzjuDH9" data-reactid=".1c9jte0nxqy.1.1.4.0.1.1.$3"><a class="style__youtube_3kGi6AN9LChAzHllzUnv-Y style__icon_16vwfuwmIHjIN_BPxoiLQa" href="http://www.youtube.com/user/WSJDigitalNetwork" title="YouTube" data-reactid=".1c9jte0nxqy.1.1.4.0.1.1.$3.0">YouTube</a></li><li class="style__social-logo_WMPltQbVnKfYUOKzjuDH9" data-reactid=".1c9jte0nxqy.1.1.4.0.1.1.$4"><a class="style__podcast_Z-34mcUDTc_fRwYM4GiRZ style__icon_16vwfuwmIHjIN_BPxoiLQa" href="http://www.wsj.com/public/page/podcast.html" title="Podcasts" data-reactid=".1c9jte0nxqy.1.1.4.0.1.1.$4.0">Podcasts</a></li><li class="style__social-logo_WMPltQbVnKfYUOKzjuDH9" data-reactid=".1c9jte0nxqy.1.1.4.0.1.1.$5"><a class="style__snapchat_Zoh-t3PuIn1Q_1paxDdvv style__icon_16vwfuwmIHjIN_BPxoiLQa" href="https://www.snapchat.com/discover/Wall-Street-Journal/4806310285" title="Snapchat" data-reactid=".1c9jte0nxqy.1.1.4.0.1.1.$5.0">Snapchat</a></li><li class="style__social-logo_WMPltQbVnKfYUOKzjuDH9" data-reactid=".1c9jte0nxqy.1.1.4.0.1.1.$6"><a class="style__googleplay_1jhHvDOISGrUsvEdKI6zO8 style__store-badge_1fVKBhLRmHDy5_K28xuya8" href="https://play.google.com/store/apps/details?id=wsj.reader_sp" title="Google Play" data-reactid=".1c9jte0nxqy.1.1.4.0.1.1.$6.0">Google Play</a></li><li class="style__social-logo_WMPltQbVnKfYUOKzjuDH9" data-reactid=".1c9jte0nxqy.1.1.4.0.1.1.$7"><a class="style__appstore_uZsq67J9f7PtIRQOQd0_o style__store-badge_1fVKBhLRmHDy5_K28xuya8" href="https://itunes.apple.com/us/app/the-wall-street-journal./id364387007?mt=8" title="App Store" data-reactid=".1c9jte0nxqy.1.1.4.0.1.1.$7.0">App Store</a></li><li class="style__social-logo_WMPltQbVnKfYUOKzjuDH9" data-reactid=".1c9jte0nxqy.1.1.4.0.1.1.$8"><a class="style__windowsbadge_2W9VWIYDP9tpNb0JM85wlz style__store-badge_1fVKBhLRmHDy5_K28xuya8" href="https://www.microsoft.com/store/apps/9wzdncrfj4nb?ocid=badge" title="Windows 10" data-reactid=".1c9jte0nxqy.1.1.4.0.1.1.$8.0">Windows 10</a></li></ul></div><div class="style__products-wrapper_Cu6U7DsTHaF0cMHzPpdt3" data-reactid=".1c9jte0nxqy.1.1.4.0.2"><menu class="style__products-links_dJpjdTH0z7x4SSsdSGPph" data-reactid=".1c9jte0nxqy.1.1.4.0.2.0"><li class="style__products-title_3uJiJKIMHjI65jNiWUuXit" data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.0">Dow Jones Products</li><li data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$0"><a href="http://online.barrons.com/home-page" data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$0.0">Barron&#x27;s</a></li><li data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$1"><a href="http://bigcharts.marketwatch.com" data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$1.0">BigCharts</a></li><li data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$2"><a href="http://www.wsj.com/public/page/wsj-x-marketing.html" data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$2.0">DJX</a></li><li data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$3"><a href="http://new.dowjones.com/products/dj-news" data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$3.0">Dow Jones Newswires</a></li><li data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$4"><a href="https://global.factiva.com/factivalogin/login.asp?productname=global" data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$4.0">Factiva</a></li><li data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$5"><a href="http://www.efinancialnews.com" data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$5.0">Financial News</a></li><li data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$6"><a href="http://mansionglobal.com/" data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$6.0">Mansion Global</a></li><li class="style__no-border_2bB9kLpDyKO4eAO8ziLay" data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$7"><a href="http://www.marketwatch.com" data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$7.0">MarketWatch</a></li><li data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$8"><a href="http://pevc.dowjones.com" data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$8.0">Private Markets</a></li><li data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$9"><a href="https://www.realtor.com" data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$9.0">realtor.com</a></li><li data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$10"><a href="https://djlogin.dowjones.com/login.asp?productname=rnc" data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$10.0">Risk &amp; Compliance</a></li><li data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$11"><a href="http://www.wsj.com/conferences" data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$11.0">WSJ Conference</a></li><li data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$12"><a href="http://www.wsj.com/pro/centralbanking" data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$12.0">WSJ Pro Central Banking</a></li><li data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$13"><a href="http://live.wsj.com" data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$13.0">WSJ Video</a></li><li class="style__no-border_2bB9kLpDyKO4eAO8ziLay" data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$14"><a href="http://www.wsjwine.com" data-reactid=".1c9jte0nxqy.1.1.4.0.2.0.1:$14.0">WSJ Wine</a></li></menu></div><div class="style__sector_b63KKbwfDeV7C50fFCTNH" data-reactid=".1c9jte0nxqy.1.1.4.0.3"><menu class="style__footnote-links_Ic0cuQrOH0J6HLfmFogO style__module_eb9vbyzL3hIkwTewrrjLq" data-reactid=".1c9jte0nxqy.1.1.4.0.3.0"><li class="style__policy-item_YlQtHLixtgBrmsn3jfaw9" data-reactid=".1c9jte0nxqy.1.1.4.0.3.0.0:$0"><a href="http://www.wsj.com/policy/privacy-policy" data-reactid=".1c9jte0nxqy.1.1.4.0.3.0.0:$0.0">Privacy Policy</a></li><li class="style__policy-item_YlQtHLixtgBrmsn3jfaw9" data-reactid=".1c9jte0nxqy.1.1.4.0.3.0.0:$1"><a href="http://www.wsj.com/policy/cookie-policy" data-reactid=".1c9jte0nxqy.1.1.4.0.3.0.0:$1.0">Cookie Policy</a></li><li class="style__policy-item_YlQtHLixtgBrmsn3jfaw9" data-reactid=".1c9jte0nxqy.1.1.4.0.3.0.0:$2"><a href="http://www.wsj.com/policy/copyright-policy" data-reactid=".1c9jte0nxqy.1.1.4.0.3.0.0:$2.0">Copyright Policy</a></li><li class="style__policy-item_YlQtHLixtgBrmsn3jfaw9" data-reactid=".1c9jte0nxqy.1.1.4.0.3.0.0:$3"><a href="http://www.wsj.com/policy/data-policy" data-reactid=".1c9jte0nxqy.1.1.4.0.3.0.0:$3.0">Data Policy</a></li><li class="style__policy-item_YlQtHLixtgBrmsn3jfaw9" data-reactid=".1c9jte0nxqy.1.1.4.0.3.0.0:$4"><a href="http://www.wsj.com/policy/subscriber-agreement" data-reactid=".1c9jte0nxqy.1.1.4.0.3.0.0:$4.0">Subscriber Agreement &amp; Terms of Use</a></li><li class="style__last-policy-item_5HmLrlN-zngDtxgbG_F5L" data-reactid=".1c9jte0nxqy.1.1.4.0.3.0.0:$5"><a href="http://www.wsj.com/policy/cookie-policy#cookies-advertising" data-reactid=".1c9jte0nxqy.1.1.4.0.3.0.0:$5.0">Your Ad Choices</a></li><li class="style__copyright_1QetpZqwuu_zc6QIJuEIZx" data-reactid=".1c9jte0nxqy.1.1.4.0.3.0.2"><span data-reactid=".1c9jte0nxqy.1.1.4.0.3.0.2.0">Copyright ©</span><span data-reactid=".1c9jte0nxqy.1.1.4.0.3.0.2.1">2018</span><span data-reactid=".1c9jte0nxqy.1.1.4.0.3.0.2.2"> </span><a href="http://www.dowjones.com" data-reactid=".1c9jte0nxqy.1.1.4.0.3.0.2.3">Dow Jones &amp; Company</a><span data-reactid=".1c9jte0nxqy.1.1.4.0.3.0.2.4">, Inc. All Rights Reserved.</span></li></menu></div></div><div class="footer-ads" data-reactid=".1c9jte0nxqy.1.1.4.1"><div id="cX-scrim" data-reactid=".1c9jte0nxqy.1.1.4.1.0"></div><div id="SI_73f3k49S18cgGAR" data-reactid=".1c9jte0nxqy.1.1.4.1.1"></div></div></footer></div><script type="text/javascript" data-reactid=".1c9jte0nxqy.1.2:$c">(function() {var gads = document.createElement('script');gads.async = true;gads.type = 'text/javascript';var useSSL = 'https:' == document.location.protocol;gads.src = (useSSL ? 'https:' : 'http:') + '//www.googletagservices.com/tag/js/gpt.js';var node = document.getElementsByTagName('script')[0];node.parentNode.insertBefore(gads, node);})();var googleAdSlots = {};googletag.cmd.push(function() {googletag.pubads().setTargeting("page","article");googletag.pubads().disableInitialLoad();googletag.companionAds().setRefreshUnfilledSlots(true);googletag.enableServices();});</script><script type="text/javascript" src="//segment-data.zqtk.net/dowjones-d8s23j?url=http://www.wsj.com/" async="" data-reactid=".1c9jte0nxqy.1.2:$d"></script><script type="text/javascript" src="https://www.wedgies.com/js/widgets.js" async="" data-reactid=".1c9jte0nxqy.1.2:$h"></script><script type="text/javascript" src="https://platform.twitter.com/widgets.js" data-reactid=".1c9jte0nxqy.1.2:$i"></script><script type="text/javascript" data-reactid=".1c9jte0nxqy.1.3">window.PROCESS_ENV = {"API_PROXY_HOST":"http://www.wsj.com","API_PROXY_PATH":"/services/api-proxy/","ARTIRIX_HASH_ASIA":"bQoTG71BbZmFnDtOrKs9fkjY6PaG4GPs5iBq7LOwV1qYt8z6VHVbV5QZM3dcnh6jHuVykEw/iuODymDPjs+VWtVl3S+OuakCP5nDFcoW1k0vjQMVK2xfIYvrhhgyM0e4670WvKPT/GnXvETIxnm3GFWfWEksAIsOCmzFcinejW4UZlTQS83CqPEchcrt9SnW","ARTIRIX_HASH_EUROPE":"bQoTG71BbZmFnDtOrKs9fkjY6PaG4GPs5iBq7LOwV1qYt8z6VHVbV5QZM3dcnh6jHuVykEw/iuODymDPjs+VWgwy6WgtusAwGwoZ7QG/TVhfHj2mx6zL8mQ0ReEUodQQ7RNgLuNCR7IzYJcyP/yu+JdExcmuQYSdWZsOE5mx5NK/angkqbbB64RWQW7v/57q","ARTIRIX_HOST":"http://advertise.realestate.wsj.com","ARTIRIX_PATH_ASIA":"/v1/advert/batch_content.json?slot_names[]=ahp1&advert_contexts[][placement]=ahp1_us_buy_premium_property_a","ARTIRIX_PATH_EUROPE":"/v1/advert/batch_content.json?slot_names[]=ehp1&advert_contexts[][placement]=ehp1_us_buy_premium_property_a","AUTOCOMPLETE_SERVICE":"http://services-staging.dowjones.com","BG_SERVER":"https://wsjstream.wsj.net/bg2","CDN_URL":"https://vir.wsj.net/fp/cdn","CHART_ENV":"MuxPublicSecure","DATACENTER":"ancVirLiveCoverage","DYNAMIC_INSET_SERVICE":"https://www.wsj.com/insetsrv/v1","EREADER_US":"http://ereader.wsj.net","FONTS_IE":"https://fonts.wsj.net/fonts/wsj-fonts-ie.css","HOST_NAME":"https://vir.wsj.net","HOST_NAME_ADS":"https://www.wsj.com","LIVECOVERAGE_APPNAME":"live_coverage","LIVECOVERAGE_FIREBASE_APIKEY":"AIzaSyBoGUl9vJ8EeY_kedx2_ibPkbQ1sOK6rAM","LIVECOVERAGE_FIREBASE_AUTHDOMAIN":"dj-content-firebase-prod.firebaseapp.com","LIVECOVERAGE_FIREBASE_DATABASEURL":"https://dj-content-firebase-prod.firebaseio.com","LIVECOVERAGE_FIREBASE_STORAGEBUCKET":"dj-content-firebase-prod.appspot.com","NEW_UTAG":"true","NODE_ENV":"production","REDIRECT_HOST":"http://www.wsj.com","SERVICE_VERSION":"1.4.0","STACK_NAME":"dj01:vir:prod-live-coverage","TEALIUM_ENV":"prod","VIDEO_PLAYER_CSS":"https://video-api.wsj.com/api-video/player/v3/css/video.min.css","VIDEO_PLAYER_URL":"https://video-api.wsj.com/api-video/player/v3/js/video.min.js","VIDORA_API_KEY":"wsj.E4B14D56D6D304BA4A96A94B14D11AA9","WSJ_VIDEO_SERVICE":"https://video-api.wsj.com/api-video/find_all_videos.asp"};</script><script data-reactid=".1c9jte0nxqy.1.4:$0">loadCSS("https://video-api.wsj.com/api-video/player/v3/css/video.min.css");</script><script src="//vir.wsj.net/fp/cdn/fp/assets/5c15646cc386b4a072b9/LiveCoveragePage.js" data-reactid=".1c9jte0nxqy.1.5:$0"></script><script type="text/javascript" data-reactid=".1c9jte0nxqy.1.7">window.renderApp({"state":{"liveCoverage":{"hurricane-harvey-live-coverage":{"meta":{"hed":"Weakened Harvey Douses Louisiana: Live Coverage","dek":"Tropical storm Harvey came ashore again on Wednesday, bringing heavy rains and whipping winds to southwestern Louisiana, but far less destruction than it brought to Texas.\n\nAll readers have open access to our coverage of the storm.","layout":{"flashline":{"show":"","label":"Live"},"hero":{"enabled":"","type":"image","url":"","fullBleed":false},"filterBar":{"active":true,"title":"Updates","label":"All Filters","tags":{}},"leftRail":{"panels":{"IDX_0":"key-developments"}},"rightRail":{"showAdvert":true,"panels":{}},"panels":{"NEW_PANEL":{"title":"Key Developments","type":"tag","tag":"key-developments","limit":"10"},"key-developments":{"title":"Key Developments","type":"tag","tag":"key-developments","limit":"6"}},"pinned":{"1503682882":null,"1503769510":null,"1503769797":null}},"options":{"slack":{"enabled":false,"groupName":"wsj-hurricane-harvey","groupCreated":null,"error":null},"share":{"event":true,"posts":true},"defaultStyle":"default"},"target":{"web":true,"mobile":true},"paywall":null,"seo":{"showInSitemap":true,"title":"Weakened Harvey Douses Louisiana: Live Coverage","description":"Tropical Storm Harvey came ashore again, bringing heavy rains and winds to southwestern Louisiana, but far less than the record rainfall it brought to Texas.","keywords":"hurricane harvey texas storm","imageUrl":null,"cardTitlePrefix":"Tropical Storm Harvey","image":{"url":"https://si.wsj.net/public/resources/images/BN-UV000_HARVEY_G_20170824175405.jpg","width":553,"height":369}},"users":{"5b5825632d665fb97bb5cb40e448dd69":{"uid":"5b5825632d665fb97bb5cb40e448dd69","displayName":"Michael Driscoll","avatar":"https://firebasestorage.googleapis.com/v0/b/dj-content-firebase-prod.appspot.com/o/apps%2Flive_coverage%2Fmeta%2Fusers%2F5b5825632d665fb97bb5cb40e448dd69.jpg?alt=media&token=03690192-3f57-49b1-88de-275af54e2681","company":null,"title":null},"e114c8f69333b04bb366afa12ad30c49":{"displayName":"Yvonne Dennis","avatar":"https://firebasestorage.googleapis.com/v0/b/dj-content-firebase-prod.appspot.com/o/apps%2Flive_coverage%2Fmeta%2Fusers%2Fe114c8f69333b04bb366afa12ad30c49.jpg?alt=media&token=b7d77105-d1c8-49db-901a-6eaef6541e76","uid":"e114c8f69333b04bb366afa12ad30c49","company":null,"title":null},"4d0122098add9cc3df5059ea22859c71":{"displayName":"Cynthia Lin","avatar":"https://firebasestorage.googleapis.com/v0/b/dj-content-firebase-prod.appspot.com/o/apps%2Flive_coverage%2Fmeta%2Fusers%2F4d0122098add9cc3df5059ea22859c71.jpg?alt=media&token=8adc9db4-8432-400c-9332-b035b9d37880"},"3bf4b21aa5f0e272f83a1566b939addc":{"displayName":"Elizabeth Yuan","avatar":"https://firebasestorage.googleapis.com/v0/b/dj-content-firebase-prod.appspot.com/o/apps%2Flive_coverage%2Fmeta%2Fusers%2F3bf4b21aa5f0e272f83a1566b939addc.jpg?alt=media&token=46742c12-b9f3-4d2b-96e2-83d71c436006","uid":"3bf4b21aa5f0e272f83a1566b939addc","company":null,"title":null},"a92a358c2def21a1c78bff0d1475ba83":{"displayName":"Jessica Menton","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg","uid":"a92a358c2def21a1c78bff0d1475ba83","company":null,"title":null},"5e551cc8edecb6f3bb510ec6a684c514":{"displayName":"Mary De Wet","avatar":"https://firebasestorage.googleapis.com/v0/b/dj-content-firebase-prod.appspot.com/o/apps%2Flive_coverage%2Fmeta%2Fusers%2F5e551cc8edecb6f3bb510ec6a684c514.jpg?alt=media&token=b4870be6-67bd-4df4-9196-0e262b9f0920"},"090091f37177117220b4d743fd549861":{"displayName":"Michael Wright","avatar":"https://firebasestorage.googleapis.com/v0/b/dj-content-firebase-prod.appspot.com/o/apps%2Flive_coverage%2Fmeta%2Fusers%2F090091f37177117220b4d743fd549861.jpg?alt=media&token=aa061a90-fea1-4765-92b5-4f46fa052f7f","uid":"090091f37177117220b4d743fd549861","company":null,"title":null},"d175b6d2faab3d5b7fde296d80b42ae1":{"displayName":"Paul Dyer","avatar":"https://firebasestorage.googleapis.com/v0/b/dj-content-firebase-prod.appspot.com/o/apps%2Flive_coverage%2Fmeta%2Fusers%2Fd175b6d2faab3d5b7fde296d80b42ae1.jpg?alt=media&token=d691b51e-68c9-419e-9fcb-362d856a451a","uid":"d175b6d2faab3d5b7fde296d80b42ae1","company":null,"title":null},"436a4b5dfe8c4855e2f9befd36376f65":{"displayName":"Prabha Natarajan","avatar":"https://firebasestorage.googleapis.com/v0/b/dj-content-firebase-prod.appspot.com/o/apps%2Flive_coverage%2Fmeta%2Fusers%2F436a4b5dfe8c4855e2f9befd36376f65.jpg?alt=media&token=e58ac668-59ff-40b8-8d3c-d9fbdc5a4100","uid":"436a4b5dfe8c4855e2f9befd36376f65","company":null,"title":null},"901300e04efd9620436a277759c4da66":{"displayName":"Lora Western"},"4cd7a012f53ea7035e368046d7faeaff":{"displayName":"Hillary Canada","avatar":"https://firebasestorage.googleapis.com/v0/b/dj-content-firebase-prod.appspot.com/o/apps%2Flive_coverage%2Fmeta%2Fusers%2F4cd7a012f53ea7035e368046d7faeaff.jpg?alt=media&token=c13355d4-438b-4c09-aa93-90bd9c5bbddc","uid":"4cd7a012f53ea7035e368046d7faeaff","company":null,"title":null},"4e8659798e99e6147fbdea9bccf91b10":null,"cf6f8a8632114cd734dc972265d682de":{"displayName":"Adam Charles Linscott Martin","avatar":"http://s.wsj.net/media/wsj-live-blog-icon.jpg"},"e37da3ffec4317d43b0f979b505f5239":{"displayName":"Thomas Derpinghaus","avatar":"https://firebasestorage.googleapis.com/v0/b/dj-content-firebase-prod.appspot.com/o/apps%2Flive_coverage%2Fmeta%2Fusers%2Fe37da3ffec4317d43b0f979b505f5239.jpg?alt=media&token=7cce42f5-287d-4b4b-9a75-b4314d77cb8f"},"ab679a1f94960663de3535719e145ae5":{"displayName":"Erin Mendell","avatar":"https://firebasestorage.googleapis.com/v0/b/dj-content-firebase-prod.appspot.com/o/apps%2Flive_coverage%2Fmeta%2Fusers%2Fab679a1f94960663de3535719e145ae5.jpg?alt=media&token=2fcabff6-3b1a-4560-a945-5f29d7b85d1e"},"c33d05873f020a29a2a2925730413a5f":{"displayName":"Chris Kirkham","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg"},"163709284462c97de5392806d90f6fa2":{"displayName":"Constantinos Paris","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg"},"18a6bba94ae092a4be0a758d7d2e34d7":{"displayName":"undefined undefined"},"d0d14f81483095a325634e6b91bd7068":{"displayName":"Dan Frosch","avatar":"http://s.wsj.net/media/wsj-live-blog-icon.jpg"},"8cb88be5556d08bffc084a4d4ced39f1":{"displayName":"Erin Ailworth","avatar":"http://s.wsj.net/media/wsj-live-blog-icon.jpg"},"9e7ab66a0360c82abe2bf629710678a0":{"displayName":"Russell Gold","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg"},"070ddbb9e0451b450c6f74fc466133a6":{"displayName":"Josee Rose","avatar":"https://firebasestorage.googleapis.com/v0/b/dj-content-firebase-prod.appspot.com/o/apps%2Flive_coverage%2Fmeta%2Fusers%2F070ddbb9e0451b450c6f74fc466133a6.jpg?alt=media&token=24236e31-9098-4fd3-9657-edd242554ace"},"3007593a9449dd01f453c08f40eb0d6b":{"displayName":"Daniel Papp","title":"Special Writer/ News Desk","uid":"3007593a9449dd01f453c08f40eb0d6b","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg","company":null},"e5c97f0c7dced08b0a9f5f33ff8d811b":{"displayName":"Bradley Olson","avatar":"http://s.wsj.net/media/wsj-live-blog-icon.jpg"},"0651886af5fc282fffff120650b4da60":{"displayName":"Melanie Evans","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg"},"6f0f8e78a02b7064a4ac351e2d7e8058":{"displayName":"Erica Phillips","avatar":"http://s.wsj.net/media/wsj-live-blog-icon.jpg"},"07b61d88f80d577bb917fc6ba53256b2":{"displayName":"Sarah Mcfarlane","avatar":"http://s.wsj.net/media/wsj-live-blog-icon.jpg"},"22d5020f18cddee032e82c54679cedf4":{"displayName":"Biman Mukherji","avatar":"http://s.wsj.net/media/wsj-live-blog-icon.jpg"},"5471fc38e0f2784c4ebd3409e587940e":{"displayName":"Miguel Bustillo","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg"},"6bbbbf5eceaaeb7d324a00312faf2432":{"displayName":"Nicole Friedman","avatar":"http://s.wsj.net/media/wsj-live-blog-icon.jpg"},"0abbccbba24a3f627ff787fb33490db8":{"displayName":"Lisa Vickery","avatar":"https://firebasestorage.googleapis.com/v0/b/dj-content-firebase-prod.appspot.com/o/apps%2Flive_coverage%2Fmeta%2Fusers%2F0abbccbba24a3f627ff787fb33490db8.jpg?alt=media&token=559ce9c3-2cd9-4432-9f5c-024279fbc727","uid":"0abbccbba24a3f627ff787fb33490db8","company":null,"title":null},"8c9faf86d82bff6e9a47499369b490aa":{"uid":"8c9faf86d82bff6e9a47499369b490aa","displayName":"Tim Hanrahan","avatar":"https://firebasestorage.googleapis.com/v0/b/dj-content-firebase-prod.appspot.com/o/apps%2Flive_coverage%2Fmeta%2Fusers%2F8c9faf86d82bff6e9a47499369b490aa.jpg?alt=media&token=453fdfc7-2b16-4439-ab91-eee14963427c","company":null,"title":null},"b4821696dcd4dea68f774a3e13cdbd5c":{"displayName":"Philip Izzo","avatar":"https://firebasestorage.googleapis.com/v0/b/dj-content-firebase-prod.appspot.com/o/apps%2Flive_coverage%2Fmeta%2Fusers%2Fb4821696dcd4dea68f774a3e13cdbd5c.jpg?alt=media&token=b0fc1044-b863-4cf6-b64d-9a5ead1723cd"},"00d05a697a94ed2cada61c0ee2f2cbfc":{"displayName":"Yogi Patel","avatar":"https://firebasestorage.googleapis.com/v0/b/dj-content-firebase-prod.appspot.com/o/apps%2Flive_coverage%2Fmeta%2Fusers%2F00d05a697a94ed2cada61c0ee2f2cbfc.jpg?alt=media&token=cf013d6d-9a7e-42a5-9af8-77a4725b5ba3"},"8d7fd24666c3ae580c9db0b659405409":{"displayName":"Nicole Hong","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg"},"67c5cec28754e5c20afdd6277e85c83f":{"displayName":"Cameron McWhirter","avatar":"http://s.wsj.net/media/wsj-live-blog-icon.jpg"},"1d6f939ce54ffe2bd5a11457ffb4aaf5":{"displayName":"Daniela Hernandez","avatar":"https://firebasestorage.googleapis.com/v0/b/dj-content-firebase-prod.appspot.com/o/apps%2Flive_coverage%2Fmeta%2Fusers%2F1d6f939ce54ffe2bd5a11457ffb4aaf5.jpg?alt=media&token=b87454c6-0de4-4dad-9413-24c226ae365d"},"7e04ad448b5d07c14d91118a489e9dc0":{"displayName":"Richard Rubin","avatar":"https://firebasestorage.googleapis.com/v0/b/dj-content-firebase-prod.appspot.com/o/apps%2Flive_coverage%2Fmeta%2Fusers%2F7e04ad448b5d07c14d91118a489e9dc0.jpg?alt=media&token=39f05bfd-7ff0-4838-be19-4fdba3ffe8c3","title":"Tax Policy Reporter"},"443b74a47ffe172e6ecc93924e259c0b":{"displayName":"Benjamin Kesling","avatar":"http://s.wsj.net/media/wsj-live-blog-icon.jpg"},"4cd542b34b14eff88658151789e09b26":{"displayName":"Michael C. Bender","avatar":"http://s.wsj.net/media/wsj-live-blog-icon.jpg","title":"White House Reporter"},"b58eb8adec1c0f910028d2f2cb49ef4e":{"displayName":"Peter Nicholas","avatar":"https://firebasestorage.googleapis.com/v0/b/dj-content-firebase-prod.appspot.com/o/apps%2Flive_coverage%2Fmeta%2Fusers%2Fb58eb8adec1c0f910028d2f2cb49ef4e.jpg?alt=media&token=98325fa6-dd82-46c5-93eb-3f97f83374bb"},"780bf42f4942f7adb7c3c7abdaf79702":{"displayName":"Andrew FitzGerald"},"4ee09e6176dd9a9f35a25b196d446b98":{"displayName":"Ryan Knutson","avatar":"http://s.wsj.net/media/wsj-live-blog-icon.jpg"},"31ac0cead4e421a3235bde910b56ec89":{"displayName":"Anne Pallivathuckal","avatar":"http://s.wsj.net/media/wsj-live-blog-icon.jpg","uid":"31ac0cead4e421a3235bde910b56ec89","company":null,"title":null},"b5b82295d646cac8059001c0f11260ec":{"displayName":"Tracy Gan","avatar":"https://firebasestorage.googleapis.com/v0/b/dj-content-firebase-prod.appspot.com/o/apps%2Flive_coverage%2Fmeta%2Fusers%2Fb5b82295d646cac8059001c0f11260ec.jpg?alt=media&token=0b73484a-bede-40f4-b529-e78ed49f9a29"},"403481dcafaf98da115c556584e453bc":{"displayName":"Deepa Seetharaman","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg"},"2307918b4b1eaad43db3ddb72f13a3cb":{"displayName":"Georgia Wells","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg"},"b379fb8506ab02e31b00b59cc5f37cde":{"displayName":"Lynn Cook","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg"},"79107e149b6a9bd8dee26375672852e0":{"displayName":"Alison Sider","avatar":"http://s.wsj.net/media/wsj-live-blog-icon.jpg"},"1cf299c07d09701d18aba5de1df8877a":{"displayName":"Christopher Alessi","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg"},"db520ca212f71a577c90f8b29d3f4ff5":{"displayName":"Gareth Vipers","avatar":"https://firebasestorage.googleapis.com/v0/b/dj-content-firebase-prod.appspot.com/o/apps%2Flive_coverage%2Fmeta%2Fusers%2Fdb520ca212f71a577c90f8b29d3f4ff5.jpg?alt=media&token=6df4e270-130a-4c59-95de-565c4a6cd9e4","uid":"db520ca212f71a577c90f8b29d3f4ff5","company":null,"title":null},"4b00dc5ac8f8e4dd3464ad1acd0d87ad":{"displayName":"Roland Keane","avatar":"https://firebasestorage.googleapis.com/v0/b/dj-content-firebase-prod.appspot.com/o/apps%2Flive_coverage%2Fmeta%2Fusers%2F4b00dc5ac8f8e4dd3464ad1acd0d87ad.jpg?alt=media&token=7d26ccc6-228b-4f38-abfc-c433432ab227"},"5d9c6f87bf1ed94406516bd65b462999":{"displayName":"Tedra Meyer","avatar":"http://s.wsj.net/media/wsj-live-blog-icon.jpg"},"8f340c6a1a9ea04a2429d44d3aad2d27":{"displayName":"Kate Linebaugh","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg"},"873e6b003439c97aece9dfb675618743":{"displayName":"Jon Kamp","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg"},"f3de396a6990d694c81a32274869443c":{"displayName":"Steven Norton","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg"},"57916317d712aa50718eb36828bb6b2f":{"displayName":"Angus Loten","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg"},"506eae06a9e16554fc9175d7bbcf2f96":{"displayName":"Christopher Matthews","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg"},"789d121ef2a58b9a9099a09e453c1790":{"displayName":"Stephanie Yang","avatar":"http://s.wsj.net/media/wsj-live-blog-icon.jpg"},"ee19743a4061968144d8d038ee5645ad":{"displayName":"Ciara Linnane","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg"},"255912b2faa6780776e1fd75ea42d60d":{"displayName":"Dan Molinski","avatar":"http://s.wsj.net/media/wsj-live-blog-icon.jpg"},"5d96978ee4490c15e0e6e5fbf8e77649":{"displayName":"Ben Eisen","avatar":"https://firebasestorage.googleapis.com/v0/b/dj-content-firebase-prod.appspot.com/o/apps%2Flive_coverage%2Fmeta%2Fusers%2F5d96978ee4490c15e0e6e5fbf8e77649.jpg?alt=media&token=98cd3398-f282-4db7-bfec-8343ae7b3880"},"d1bdef3e21819d502b0cfcdf9e7d044b":{"displayName":"Alicia Caldwell","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg"},"474b872cae73c215220d0cad5a0ba7c1":{"displayName":"Benjamin Parkin","avatar":"http://s.wsj.net/media/wsj-live-blog-icon.jpg"},"2a5de8aab5095490785eb9b6b72ed49d":{"displayName":"Quint Forgey","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg"},"f3b10e0fe84bedc0f36c61d093d203c7":{"displayName":"Joseph Barrett","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg"},"9e808920d1cfa8107fc0e3252ff58a09":{"displayName":"Ted Mann","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg"}},"createdBy":"5b5825632d665fb97bb5cb40e448dd69","tags":{"key-developments":{"label":"Key Developments","id":"key-developments","isHidden":true,"showShortTitle":true,"isImportant":true},"hurricane-harvey":{"label":"Hurricane Harvey","id":"hurricane-harvey"},"fdic":{"label":"FDIC","id":"fdic"},"office-of-the-comptroller-of-the-currency":{"label":"Office of the Comptroller of the Currency","id":"office-of-the-comptroller-of-the-currency"},"tropical-storm-harvey":{"label":"Tropical Storm Harvey","id":"tropical-storm-harvey"},"u-s-coast-guard":{"label":"U.S. Coast Guard","id":"u-s-coast-guard"},"american-red-cross":{"label":"American Red Cross","id":"american-red-cross"},"cellphone-networks":{"label":"Cellphone Networks","id":"cellphone-networks"},"exxon-refinery":{"label":"Exxon Refinery","id":"exxon-refinery"},"key-development":{"label":"Key Development","id":"key-development"},"key-deve":{"label":"key deve","id":"key-deve"},"harvey":{"label":"Harvey","id":"harvey"},"key-cevel":{"label":"key cevel","id":"key-cevel"},"key-de":{"label":"key de","id":"key-de"},"key-devel":{"label":"key devel","id":"key-devel"}},"slug":"hurricane-harvey-live-coverage","bluegrass":"/dj/livecoverage/live_coverage.hurricane-harvey-live-coverage"},"cards":[{"id":"d3ae7ce7-e229-446a-a973-69e7b74c9b30","type":"livecoverage_multi","data":{"0":{"url":"https://www.wsj.com/articles/charitable-needs-evolve-after-disasters-1504211135","type":"article","provider":"wsj.com","headline":"Charitable Needs Evolve After Disasters","summary":"Sending clothes and water to Texas isn’t the best choice, say charity experts. Cash is more needed after disasters.","imageUrl":"https://si.wsj.net/public/resources/images/IF-AD238_CHARIT_D_20170831160445.jpg","articleId":"SB11165587878498893457204583364502547040548","access":"free"}},"meta":{"source":"admin","createdBy":"a92a358c2def21a1c78bff0d1475ba83","display":{"enableSharing":true,"style":"default","user":"a92a358c2def21a1c78bff0d1475ba83"}},"position":null,"status":"published","originalId":"1504212123","createdAt":"1504212124","updatedAt":"1504212124"},{"id":"4bfd108d-fa83-416f-901d-aa606ee07f08","type":"livecoverage_multi","data":{"0":{"url":"https://www.wsj.com/articles/how-to-detect-disaster-relief-scams-1504211506","type":"article","provider":"wsj.com","headline":"How to Detect Disaster-Relief Scams","summary":"Social media, crowdfunding are popular for fraud after disasters like Hurricane Harvey.","imageUrl":"https://si.wsj.net/public/resources/images/IF-AD236A_CHARI_D_20170831155931.jpg","articleId":"SB11165587878498893457204583364470862429576","access":"free"}},"meta":{"source":"admin","createdBy":"a92a358c2def21a1c78bff0d1475ba83","display":{"enableSharing":true,"style":"default","user":"a92a358c2def21a1c78bff0d1475ba83"}},"position":null,"status":"published","originalId":"1504211851","createdAt":"1504211851","updatedAt":"1504211851"},{"id":"08e8ee11-3ee6-47bc-acc2-80fa59acdf11","type":"livecoverage_multi","data":[{"text":"White House Press Secretary Sarah Sanders said President Donald Trump plans to donate $1 million to an unspecified charity in support of victims of Hurricane Harvey.\n\nMr. Trump is \"pledging a million dollars of his own personal money to help the people of both Texas and Louisiana,\" Ms. Sanders said. She said she believed that the funds would come from Mr. Trump personally, not from a separate entity such as his family foundation. \n\nMs. Sanders didn't identify a charity that would be the recipient of the funds. Speaking at a press briefing at the White House, she said Mr. Trump wanted suggestions about the most appropriate group to receive the funds.\n\n\"He would like to join in the efforts\" of Americans around the country who have given to charity to help victims of the storm, Ms. Sanders said.","type":"text"}],"meta":{"source":"admin","createdBy":"a92a358c2def21a1c78bff0d1475ba83","display":{"enableSharing":true,"hed":"President Trump Will Give $1 Million for Harvey Storm Victims: White House","shortTitle":"Trump Will Give $1 Million for Harvey Victims: White House","style":"default","user":"9e808920d1cfa8107fc0e3252ff58a09","attribution":{"ted-mann":{"name":"Ted Mann","title":"","company":"","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg","order":0}}},"tags":{"key-developments":{"id":"key-developments","isHidden":true,"isImportant":true,"label":"Key Developments","showShortTitle":true}}},"position":null,"status":"published","originalId":"1504210368","createdAt":"1504210370","updatedAt":"1504211212"},{"id":"11c28f89-528c-49bd-9030-5fa5d157a446","type":"livecoverage_multi","data":[{"url":"https://si.wsj.net/public/resources/images/BN-UX285_HARVEY_GR_20170831100012.jpg","type":"image","credit":"GERALD HERBERT/ASSOCIATED PRESS","caption":"Floodwaters from Tropical Storm Harvey surround homes and businesses in Port Arthur, Texas, on Thursday. ","linkUrl":"https://si.wsj.net/public/resources/images/BN-UX285_HARVEY_GR_20170831100012.jpg"},{"type":"text","text":"Houston Independent School District said it will delay the start of school until Sept. 11 as the city starts to recover from the devastation of Hurricane Harvey.\n\nThe nation's seventh-largest district had already delayed the start of school from the original start date of Aug. 27 to Sept. 5. \n\nIn a statement Thursday, the district said it could still push back the state further depending on the weather and the condition of its facilities.\n\n\"We are eager to get our students back into the classroom and learning, but we need to be sure that our campuses are safe and that Houston’s infrastructure and roads are ready to handle transporting our students safely to school in the aftermath of Hurricane Harvey,\" said superintendent Richard Carranza in a statement. \"We are currently assessing any damages to our schools.\"\n\nThe superintendent also said the district will relax its uniform policy for the first half of the school year. Administrators are returning to work on Sept. 5 and teachers will return Sept. 8."}],"meta":{"source":"admin","createdBy":"a92a358c2def21a1c78bff0d1475ba83","display":{"attribution":{"joseph-barrett":{"avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg","company":"","name":"Joseph Barrett","order":0,"title":""}},"enableSharing":true,"hed":"Houston Schools Push Back Opening Date to Sept. 11 from Sept. 5","style":"default","user":"f3b10e0fe84bedc0f36c61d093d203c7"}},"position":null,"status":"published","originalId":"1504210278","createdAt":"1504210279","updatedAt":"1504210573"},{"id":"9942c8a5-b463-4cdd-ba25-fc08dac9eb06","type":"livecoverage_multi","data":{"0":{"type":"text","text":"Beaumont mainly draws its water from the Neches River, which has already well exceeded its prior peak crest, which occurred 23 years ago, and is forecast to peak around midday Friday, according to the National Weather Service.\n\nEven still, the main problem for Beaumont and the region is the massive amount of rain that fell there, said Roger Erickson, a warning coordination meteorologist with the National Weather Service in Lake Charles, La. That sliver of Texas near the Louisiana border got hit with anywhere between 20 and 30 inches of rain in just 24 hours between Tuesday and Wednesday, he said.\n\n“Basically what happened in Houston happened in this area the day after,” Mr. Erickson said. “That’s what caused just massive flooding across the communities.”"},"3":{"url":"https://si.wsj.net/public/resources/images/BN-UX398_3cEhW_M_20170831134920.jpg","type":"image","credit":"Gerald Herbert/Associated Press","caption":"A boat sits near flooded homes in the aftermath of Tropical Storm Harvey in Beaumont, Texas, Thursday.","linkUrl":""}},"meta":{"source":"admin","createdBy":"0abbccbba24a3f627ff787fb33490db8","display":{"enableSharing":true,"style":"default","user":"873e6b003439c97aece9dfb675618743","hed":"Beaumont's Neches River Still Rising, Forecast to Crest Friday","attribution":{"jon-kamp":{"name":"Jon Kamp","title":"","company":"","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg","order":0}}}},"position":null,"status":"published","originalId":"1504201938","createdAt":"1504201938","updatedAt":"1504201938"},{"id":"3b63cfe9-0dc6-4fef-9b01-c1060bdfc427","type":"livecoverage_multi","data":{"0":{"type":"text","text":"A lack of city water forced evacuations at Baptist Hospitals of Southeast Texas in Beaumont, which said in a Facebook post that it had to start transferring patients to other acute-care facilities. TV news footage showed staffing loading a patient onto a waiting helicopter.\n\n“Due to the city-wide lack of services, we have no other alternative but to discontinue all services which will include emergency services,” the hospital said."}},"meta":{"source":"admin","createdBy":"0abbccbba24a3f627ff787fb33490db8","display":{"enableSharing":true,"style":"default","user":"873e6b003439c97aece9dfb675618743","hed":"Hospital Evacuations Under Way in Beaumont, Texas","attribution":{"jon-kamp":{"name":"Jon Kamp","title":"","company":"","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg","order":0}}}},"position":null,"status":"published","originalId":"1504197615","createdAt":"1504197616","updatedAt":"1504197616"},{"id":"a4ec215d-10f1-4020-bf32-6a92a8fcc3b2","type":"livecoverage_multi","data":{"0":{"type":"text","text":"All 14 schools in the Texas City Independent School District southeast of Houston sustained some Harvey-related damage. Most had roof leaks that can be easily fixed, but several schools including those in the city of La Marque flooded to varying degrees, a district spokeswoman said.\n\nThe primary school building in La Marque was “completely flooded with 3 feet of water,” the district’s website said. The elementary school had water in the cafeteria and hallways. Parts of the middle school had two feet of water, with the kitchen, library, hallways and some classrooms affected. Roof leaks at the high school caused flooding.\n\nThe district, with nearly 9,000 students, isn’t planning to resume classes until Sept. 11. Officials had earlier hoped to reopen Sept. 5.\n\n-- _Scott Calvert_ "}},"meta":{"source":"admin","createdBy":"0abbccbba24a3f627ff787fb33490db8","display":{"enableSharing":true,"style":"default","user":"0abbccbba24a3f627ff787fb33490db8","hed":"Texas City Independent Schools, Damaged by Harvey, Won't Reopen Until Sept. 11"}},"position":null,"status":"published","originalId":"1504195643","createdAt":"1504195643","updatedAt":"1504195643"},{"id":"ef724609-4bee-45e6-b2d1-1a466a886f59","type":"livecoverage_multi","data":{"0":{"type":"video","text":"","url":"<iframe allowfullscreen=\"true\" webkitallowfullscreen=\"true\" mozallowfullscreen=\"true\" frameborder=\"0\" scrolling=\"no\" width=\"512\" height=\"288\" src=\"https://video-api.wsj.com/api-video/player/v3/iframe.html?guid=CF6794C8-2101-4435-91EA-F6EE4E14D694\"></iframe>"},"1":{"type":"text","text":"Houston sporting-goods retailer Academy has converted its headquarters into a temporary residence for hundreds of police and other emergency responders, offering food and shelter in the midst of Tropical Storm Harvey's aftermath. "}},"meta":{"source":"admin","createdBy":"0abbccbba24a3f627ff787fb33490db8","display":{"enableSharing":true,"style":"default","user":"0abbccbba24a3f627ff787fb33490db8"}},"position":null,"status":"published","originalId":"1504193634","createdAt":"1504193634","updatedAt":"1504193634"},{"id":"22c60e06-b99a-41f0-9912-1afa681568cd","type":"livecoverage_multi","data":{"0":{"type":"text","text":"As Texas and Louisiana continue to deal with the aftermath of Harvey, forecasters are monitoring another powerful hurricane that has formed in the distant Atlantic named Irma.\n\nThe storm is “rapidly intensifying over the eastern Atlantic,” the National Hurricane Center said in a late-morning update Thursday. Maximum sustained winds have reached nearly 100 miles per hour, making it a Category 2 storm.\n\nThe big question is where Irma will go, and what land the storm might threaten, but it remains too soon to tell. The hurricane center’s “forecast cone,” which looks at possible storm tracks through Tuesday morning, still puts Irma somewhere over the Atlantic to the east of the Leeward Islands. \n\nWherever it goes, the storm could pack a punch: “Irma is forecast to become a major hurricane by tonight and is expected to be an extremely dangerous hurricane for the next several days,” the hurricane center said."},"1":{"type":"tweet","text":"","url":"https://twitter.com/NHC_Atlantic/status/903275376947978241"}},"meta":{"source":"admin","createdBy":"0abbccbba24a3f627ff787fb33490db8","display":{"enableSharing":true,"style":"default","user":"873e6b003439c97aece9dfb675618743","hed":"In Harvey’s Wake, Category 2 Hurricane Forms in Atlantic","attribution":{"jon-kamp":{"name":"Jon Kamp","title":"","company":"","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg","order":0}}}},"position":null,"status":"published","originalId":"1504193498","createdAt":"1504193499","updatedAt":"1504193499"},{"id":"8b32eba4-c8dc-4c15-b5ca-57c44d21f5b8","type":"livecoverage_multi","data":{"0":{"url":"https://www.wsj.com/articles/explosions-reported-at-arkema-chemical-plant-1504173125","type":"article","provider":"wsj.com","headline":"Chemicals Catch Fire at Plant Flooded by Harvey","summary":"Two explosions were reported at a Texas chemical plant, hours after the facility’s owner urged residents and others to stay away.","imageUrl":"https://si.wsj.net/public/resources/images/BN-UX240_3cBvL_TOP_20170831054005.jpg","articleId":"SB10157551768076814477104583364001169738738","access":"free"}},"meta":{"source":"admin","createdBy":"0abbccbba24a3f627ff787fb33490db8","display":{"enableSharing":true,"style":"default","user":"0abbccbba24a3f627ff787fb33490db8"}},"position":null,"status":"published","originalId":"1504192488","createdAt":"1504192488","updatedAt":"1504192488"},{"id":"b593ddd4-5dbb-4257-950a-b6b6db261983","type":"livecoverage_multi","data":{"0":{"type":"text","text":"The Harvey-related deaths in Texas also include a man and a woman crushed by a falling tree as they drove through Jasper County late Tuesday, County Judge Mark Allen confirmed. The deaths there bring the storm-related toll across Texas to at least 33, according to reports from local officials, and the numbers are expected to continue rising.\n\nThe couple were sheltering in the tiny county, population roughly 36,000, when the tree in the waterlogged ground toppled over on their vehicle. “The timing, it was a horrible thing to happen,” the judge said.\n\nThere was also another death in Jasper County that may be storm related: Judge Allen said a woman there suffered a heart attack and died while trying to fortify her home with sandbags. “I’d would say more likely than not it was a stresser,” he said.\n\nJasper County sits in a region that was slammed with yet-more rain in Harvey’s final act before the storm finally moved into Louisiana. The county has had mandatory evacuations in low-lying areas, Judge Allen said.\n\nDespite its own struggles, the county is also taking in evacuees from other areas, including about 250 people from nearby Orange County. “The majority are from shelters that began taking on water there, and they called for help,” the judge said. “They fled to our county.”\n\nHe said his county may also start taking in people Thursday from Jefferson County, home to the hard-hit cities of Beaumont and Port Arthur.  "}},"meta":{"source":"admin","createdBy":"0abbccbba24a3f627ff787fb33490db8","display":{"enableSharing":true,"style":"default","user":"873e6b003439c97aece9dfb675618743","hed":"Harvey Deaths Include Couple Killed by Falling Tree in Tiny Jasper County","attribution":{"jon-kamp":{"name":"Jon Kamp","title":"","company":"","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg","order":0}}}},"position":null,"status":"published","originalId":"1504192137","createdAt":"1504192138","updatedAt":"1504192138"},{"id":"36256deb-83d4-4974-8db6-8f07caa32529","type":"livecoverage_multi","data":{"0":{"url":"https://www.wsj.com/articles/evacuees-crowd-into-shelters-as-harvey-hits-louisiana-1504190720","type":"article","provider":"wsj.com","headline":"Evacuees Crowd Into Shelters as Harvey Hits Louisiana","summary":"As the Houston region begins to emerge from Harvey’s beating, communities in eastern Texas and Louisiana are struggling to handle evacuees displaced by record rainfalls that have submerged entire towns.","imageUrl":"https://si.wsj.net/public/resources/images/BN-UX285_HARVEY_D_20170831100012.jpg","articleId":"SB10157551768076814477104583364312598671812","access":"freeforever"}},"meta":{"source":"admin","createdBy":"0abbccbba24a3f627ff787fb33490db8","display":{"enableSharing":true,"style":"default","user":"0abbccbba24a3f627ff787fb33490db8"}},"position":null,"status":"published","originalId":"1504191066","createdAt":"1504191067","updatedAt":"1504191067"},{"id":"3c291079-6906-45b0-bf17-4f1c226bc231","type":"livecoverage_multi","data":{"0":{"type":"text","text":"The death toll in Texas includes a couple in Fort Bend County who drowned yesterday in floodwaters, according to county officials. Those are the first two deaths reported by Ford Bend county officials. \n\nThere are at least 31 deaths in Texas connected to Harvey, according to reports from local officials, and the number is expected to rise."},"1":{"type":"tweet","text":"","url":"https://twitter.com/FBCSO/status/903016492501016576"}},"meta":{"source":"admin","createdBy":"0abbccbba24a3f627ff787fb33490db8","display":{"enableSharing":true,"style":"default","user":"873e6b003439c97aece9dfb675618743","hed":"Harvey Death Toll Rises to at Least 31; Fort Bend County Reports First Fatalities ","attribution":{"jon-kamp":{"name":"Jon Kamp","title":"","company":"","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg","order":0}}}},"position":null,"status":"published","originalId":"1504189338","createdAt":"1504189339","updatedAt":"1504189339"},{"id":"36f8e83b-8380-4367-95ca-73ca43411c23","type":"livecoverage_multi","data":{"0":{"url":"<iframe allowfullscreen=\"true\" webkitallowfullscreen=\"true\" mozallowfullscreen=\"true\" frameborder=\"0\" scrolling=\"no\" width=\"512\" height=\"288\" src=\"https://video-api.wsj.com/api-video/player/v3/iframe.html?guid=A022FAEF-30C1-4255-9ACA-AED9CEF1EA3C\"></iframe>","provider":"wsj.com","type":"video","media":{"src":"https://m.wsj.net/video/20170830/083017harveyqa2/083017harveyqa2_1280x720.jpg","width":1280,"height":720}},"1":{"type":"text","text":"Tropical Storm Harvey’s impact on Texas has been catastrophic, but the city of Houston is faring worse than some others. Here's the science of why Harvey has been especially devastating for the area. "}},"meta":{"source":"admin","createdBy":"0abbccbba24a3f627ff787fb33490db8","display":{"enableSharing":true,"style":"default","user":"0abbccbba24a3f627ff787fb33490db8"}},"position":null,"status":"published","originalId":"1504188821","createdAt":"1504188821","updatedAt":"1504188821"},{"id":"959b1498-a12c-4df6-8174-9a9d7f043bf0","type":"livecoverage_multi","data":{"0":{"url":"https://www.wsj.com/video/how-harvey-could-help-congress-avoid-shutdown/1782FCEF-64C2-4E6F-B181-0925362933D3.html","provider":"wsj.com","type":"video","media":{"src":"https://m.wsj.net/video/20170830/083017zitner/083017zitner_1280x720.jpg","width":1280,"height":720}}},"meta":{"source":"admin","createdBy":"0abbccbba24a3f627ff787fb33490db8","display":{"enableSharing":true,"style":"default","user":"0abbccbba24a3f627ff787fb33490db8"}},"position":null,"status":"published","originalId":"1504186939","createdAt":"1504186940","updatedAt":"1504186940"},{"id":"e992e9d6-c381-444f-b268-62a1a64af6f4","type":"livecoverage_multi","data":[{"url":"https://si.wsj.net/public/resources/images/BN-UX280_3crE1_M_20170831093540.jpg","type":"image","credit":"Ralph Barrera/Associated Press","caption":"Cattle is seen on land amid flooding from the Colorado River in La Grange, Texas, on Monday, after floodwaters from Tropical Storm Harvey inundated the area.","linkUrl":""},{"text":"Flooding from Tropical Storm Harvey is threatening cattle in one of the country’s most important ranching states.\n \nMany ranchers moved their livestock to higher ground before the storm. But the amount of rain caught others off guard. Mike Doguet, a rancher in Nome, about 50 miles east of Houston, was forced to cut fences and lead his 450-head herd out onto the highway after the rains left the cattle  standing in water up to their bellies.\n \n“It has been a nightmare,” said Mr. Doguet, who has been traveling across his ranch by boat. “We’re praying this rain stops and the floods go down.”\n \nTexas is the biggest beef cow-producing state in the country. Bill Hyman, president of the Independent Cattlemen’s Association of Texas, estimated up to half of the state’s ranchers were affected by the hurricane.\n \nBut with ample supplies elsewhere in the country, the impact on cattle futures markets and beef prices so far has been muted.\n \nStill, officials and ranchers say it could take months--or longer--to recover from the damage. Kane Beef, a packing house in Corpus Christi that can process 1,400 head a day, was shut by the storm. Harvey will likely disrupt the transport of cattle to feedlots and slaughterhouses in north and west Texas, said Steiner Consulting Group.\n \nOfficials say it is too early to estimate how much livestock has been lost. The severity of the flooding kept officers from the Texas Animal Health Commission--some of whom work on horseback-- from undertaking inspections during the storm. Some areas remain inaccessible.\n \nChuck Kiker, who raises 300 cow-calves west of Beaumont, near the Louisiana border, says he hasn’t accounted for around 10 to 15 of his cattle.\n \n“It’s like a giant lake,” Mr. Kiker said. “I’ve lived here all my life and I’ve never seen water like this.”\n\n-- _Benjamin Parkin_ ","type":"text"}],"meta":{"source":"admin","createdBy":"0abbccbba24a3f627ff787fb33490db8","display":{"enableSharing":true,"hed":"Texas Ranchers Drive Cattle to High Ground","style":"default","user":"0abbccbba24a3f627ff787fb33490db8"}},"position":null,"status":"published","originalId":"1504186806","createdAt":"1504186807","updatedAt":"1504191603"},{"id":"a816ae9d-f934-4402-b9db-a9934c9044d0","type":"livecoverage_multi","data":{"0":{"type":"text","text":"The U.S. Coast Guard is opening the Texas ports of Houston, Galveston and Freeport for small, Panamax type ships that are around 660 feet long, as the cleanup from Harvey continues.\n\nIt will take some time before bigger ships like the mainstay Very Large Crude Carriers-- up to 1,550 feet long -- to be allowed in, but the green light means dozens of smaller chemical tankers  and container ships,  stuck outside the ports since Saturday, will discharge or load up cargo.\n\n\"While urban search-and-rescue remains our top priority, we understand the importance of reopening ports, which are vital to the flow of goods and services,\" said Captain Kevin D. Oditt, incident commander for the Hurricane Harvey response.\n\n-- _Costas Paris_ "}},"meta":{"source":"admin","createdBy":"0abbccbba24a3f627ff787fb33490db8","display":{"enableSharing":true,"style":"default","user":"0abbccbba24a3f627ff787fb33490db8","hed":"Coast Guard Opens Up Texas Ports for Small Ships"}},"position":null,"status":"published","originalId":"1504185985","createdAt":"1504185985","updatedAt":"1504185985"},{"id":"b5c5f39b-c8cf-437f-a280-a17a5acf157d","type":"livecoverage_multi","data":{"0":{"type":"tweet","text":"","url":"https://twitter.com/hcfmo/status/903233645716135936"}},"meta":{"source":"admin","createdBy":"0abbccbba24a3f627ff787fb33490db8","display":{"enableSharing":true,"style":"default","user":"0abbccbba24a3f627ff787fb33490db8"}},"position":null,"status":"published","originalId":"1504185812","createdAt":"1504185813","updatedAt":"1504185813"},{"id":"1003b792-f25c-4299-8004-d075f7eee9ca","type":"livecoverage_multi","data":{"0":{"url":"https://www.wsj.com/articles/j-j-watts-10-million-rush-for-houston-1504181875","type":"article","provider":"wsj.com","headline":"J.J. Watt’s $10 Million Rush for Houston","summary":"An NFL star’s social media fundraiser for flood victims is closing in on eight figures.","imageUrl":"https://si.wsj.net/public/resources/images/BN-UX111_WATT08_D_20170830183107.jpg","articleId":"SB11165587878498893457204583364183502087030","access":"free"}},"meta":{"source":"admin","createdBy":"0abbccbba24a3f627ff787fb33490db8","display":{"enableSharing":true,"style":"default","user":"0abbccbba24a3f627ff787fb33490db8"}},"position":null,"status":"published","originalId":"1504182527","createdAt":"1504182527","updatedAt":"1504182527"},{"id":"6717632f-2572-4981-bc2d-e9ae794cc447","type":"livecoverage_multi","data":{"0":{"type":"text","text":"The August jobs report, to be released Friday by the Labor Department, won't show disruption caused by Hurricane Harvey and related flooding. By the time Harvey made landfall Aug. 25, nearly all data contributing to report had been collected.\n\nThe survey that determines the unemployment rate asks respondents about their work status during the week of the 12th--[two full weeks](https://blogs.wsj.com/economics/2017/08/30/no-government-statisticians-wont-have-to-pull-a-jobs-report-all-nighter/) before the storm.  Some data on employer payrolls may have been collected this week, but that survey asks about the pay period that includes the 12th, which for most workers wouldn't overlap with the last week of August. \n\nIf Harvey's effects leave some in Texas and Louisiana out of work in mid-September, that could be reflected in the following month's jobs report. But that impact could be countered by those who find employment in coming weeks in cleanup and rebuilding efforts.\n\nA more likely report to reflect Harvey's economic impact is weekly jobless claims, released every Thursday. The report to be issued on Sept. 7 would include those who sought jobless benefits between Aug. 27 and Sept. 2. Previous natural disasters have caused an increase in claims filings in affected states.\n\n _--Eric Morath_ "}},"meta":{"source":"admin","createdBy":"0abbccbba24a3f627ff787fb33490db8","display":{"enableSharing":true,"style":"default","user":"0abbccbba24a3f627ff787fb33490db8","hed":"Friday's Jobs Report Will Not Show Harvey Impact"}},"position":null,"status":"published","originalId":"1504180035","createdAt":"1504180035","updatedAt":"1504180035"},{"id":"c7557720-2883-404a-a2f3-045f9e083aaa","type":"livecoverage_multi","data":[{"text":"An hour before midnight on Wednesday, a U-Haul truck with unexpected cargo pulled up to the front doors of the Lake Charles Civic Center, the largest makeshift shelter for evacuees of Tropical Storm Harvey in Southwest Louisiana. It was carrying 16 more people displaced by the storm.\n\nThe arena’s 675 cots were already occupied, having received hundreds of refugees from Southeast Texas fleeing rising floodwaters after Harvey [made landfall early Wednesday](https://www.wsj.com/articles/harvey-weakens-sparing-louisiana-the-worst-1504120056)  morning near the state’s border with Louisiana.\n\nBut Bruce Baker--director of the Carey Baptist Association’s Disaster Relief Unit, the Lake Charles non-profit organization helping manage the shelter--wasn’t going to turn away the new guests.\n\n“They came an hour away in the back of a moving van,” said a teary-eyed Mr. Baker, who had just gotten off the phone with local and state emergency officials to inform them of his decision to take on more evacuees. “That’s what we do.”\n\nFollowing 350 rescue operations Monday night in Louisiana’s Calcasieu Parish, roughly 160 people found shelter at the Civic Center during a relatively quiet Tuesday evening. \n\nBut by Wednesday, the numbers became nearly unmanageable as evacuees, mostly from Orange, Texas, fled roughly 35 miles east into Lake Charles to seek shelter after the storm’s 4 a.m. landfall, which pummeled a cluster of cities on the state line.\n\n“As we began to get evacuations from Texas, that got more than a little chaotic,” Mr. Baker said. “It’s been a tough day. … There are people who are going to sleep on the floor tonight.”\n\nThe more than 800 people sheltering in the Civic Center Wednesday night were split almost evenly between Louisiana residents and Texas evacuees, Mr. Baker said. The influx of Texans to the arena began at 11 a.m. and continued steadily until 6 p.m.\n\n“Do you know how long we’re going to stay here or what’s going to happen to us?” one evacuee asked a volunteer late Wednesday night. Another asked organizers if they could spare an extra bed for an elderly man in a wheelchair seeking shelter.\n\nAt roughly 12:30 a.m. Thursday morning, fire marshals upped the Civic Center’s capacity, helping accommodate another surge of arrivals between 9 p.m. and midnight. Roughly 60 evacuees per hour showed up to the arena with pillows and weary faces--many turned away from other shelters, and some rescued from the nearby, 660-person town of Starks, La., by the venerated civilian rescue fleet known as the Cajun Navy.\n\n","type":"text","url":""},{"url":"https://si.wsj.net/public/resources/images/BN-UX260_3cBrh_M_20170831075320.jpg","type":"image","credit":"Advocate Staff Patrick/Zuma Press","caption":"Roger Richard from Lake Charles, La., sits on a cot in the Lake Charles Civic Center Tuesday evening as he and other refugees from Hurricane Harvey flooding make their way into the storm shelter.","linkUrl":""},{"text":"“The Bible says we’re supposed to love our neighbors,” Mr. Baker said. “So if your neighbor's got three feet of water in his house, the best way to love him is to show up with a bucket and a mop, and in this case, a boat and a bed.”\n\nSara Taylor, a 69-year-old senior citizen caregiver from Orange, arrived at the Civic Center sometime after midnight. Her husband refused to evacuate. \n\nMs. Taylor is not sure when she will leave the shelter, but knows her daughters living in Austin will come for her eventually. She does not know how to swim, and has never before experienced a major flooding event. \n\n“It’s scary. I see it as a life or death matter,” she said. “I’m glad to be here.” \n\nThe Cajun Navy rescued Ms. Taylor at her doorstep at 10 p.m., along with her grandson and his three children--triplets who are less than two years old. \n\n“I had fear for them not being able to get out,” she said. “It was beginning to be a nightmare for me.”","type":"text"}],"meta":{"source":"admin","createdBy":"0abbccbba24a3f627ff787fb33490db8","display":{"attribution":{"quint-forgey":{"avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg","company":"","name":"Quint Forgey","order":0,"title":""}},"enableSharing":true,"hed":"Evacuees From East Texas Pour Into Louisiana Shelter","style":"default","user":"2a5de8aab5095490785eb9b6b72ed49d"}},"position":null,"status":"published","originalId":"1504179089","createdAt":"1504179089","updatedAt":"1504180677"},{"id":"6800c22a-8c8c-40fa-9264-9e0587a36ec5","type":"livecoverage_multi","data":{"0":{"url":"https://www.wsj.com/articles/as-harvey-wrecks-havoc-european-refiners-set-to-benefit-1504177021","type":"article","provider":"wsj.com","headline":"As Harvey Wrecks Havoc, European Refiners Set to Benefit","summary":"As Tropical Storm Harvey continues to run roughshod over U.S. refineries, threatening fuel shortages across America, gasoline producers in Europe are sizing up a potential windfall.","imageUrl":"https://si.wsj.net/public/resources/images/BN-UX247_harvey_D_20170831062928.jpg","articleId":"SB10157551768076814477104583364020104110216","access":"paid"}},"meta":{"source":"admin","createdBy":"090091f37177117220b4d743fd549861","display":{"enableSharing":true,"style":"default","user":"1cf299c07d09701d18aba5de1df8877a","attribution":{"christopher-alessi":{"name":"Christopher Alessi","title":"","company":"","avatar":"https://s.wsj.net/media/wsj-live-blog-icon.jpg","order":0}}}},"position":null,"status":"published","originalId":"1504177457","createdAt":"1504177457","updatedAt":"1504177457"},{"id":"d3d6e9c4-2a33-4778-8d11-df3cb4da599f","type":"livecoverage_multi","data":{"0":{"type":"text","text":"Latanya Robinson, 47 years old, and her husband, who live within the chemical plant's evacuation zone, left Wednesday. But she said no authorities had asked her to evacuate, and that she only left after seeing the warnings on the local TV news and hearing about it from relatives.\n\n“I’m not waiting for death to find me,” Ms. Robinson said by telephone. “Me and my husband are at my son’s house now, about 10 miles away.”\n\nMs. Robinson said a neighbor who didn’t leave sent her a text message to inform her that the plant had just exploded. “Two blasts in a row at around 2 a.m.,” she said the neighbor told her. “Now that it’s over, the lady said she’s turning the air off and closing the windows so the smoke doesn’t enter the house, and she’s going to go back to bed.”"}},"meta":{"source":"admin","createdBy":"090091f37177117220b4d743fd549861","display":{"enableSharing":true,"style":"default","user":"255912b2faa6780776e1fd75ea42d60d","hed":"'I’m Not Waiting for Death to Find Me'","attribution":{"dan-molinski":{"name":"Dan Molinski","title":"","company":"","avatar":"http://s.wsj.net/media/wsj-live-blog-icon.jpg","order":0}}}},"position":null,"status":"published","originalId":"1504176141","createdAt":"1504176142","updatedAt":"1504176142"},{"id":"8a38031f-3cd8-438e-b72e-3e7305fb1f04","type":"livecoverage_multi","data":{"0":{"type":"tweet","text":"","url":"https://twitter.com/NWSHouston/status/903190236175446016"}},"meta":{"source":"admin","createdBy":"090091f37177117220b4d743fd549861","display":{"enableSharing":true,"style":"default","user":"090091f37177117220b4d743fd549861"}},"position":null,"status":"published","originalId":"1504173520","createdAt":"1504173520","updatedAt":"1504173520"},{"id":"d9773bc7-ad7c-44b8-9217-4e7c76a3bda4","type":"livecoverage_multi","data":{"0":{"url":"https://www.wsj.com/articles/explosions-reported-at-arkema-chemical-plant-1504173125","type":"article","provider":"wsj.com","headline":"Explosions Reported at Arkema Chemical Plant ","summary":"The chemical firm Arkema said early Thursday there were two explosions at its Texas plant after heavy flooding related to Tropical Storm Harvey.","imageUrl":"https://si.wsj.net/public/resources/images/BN-UX240_3cBvL_TOP_20170831054005.jpg","articleId":"SB10157551768076814477104583364001169738738","access":"paid"}},"meta":{"source":"admin","createdBy":"090091f37177117220b4d743fd549861","display":{"enableSharing":true,"style":"default","user":"090091f37177117220b4d743fd549861"}},"position":null,"status":"published","originalId":"1504173229","createdAt":"1504173229","updatedAt":"1504173229"}]}},"marketdata":{"strip":[{"requestId":"NIK","commonName":"NIKKEI 225 Index","ticker":"NIK","countryCode":"JP","exchangeCode":"XTKS","type":"Index","decimalPrecision":2,"value":"21150.39","change":"-94.29","perChange":"-0.44%","deltaBarPosNeg":"deltaBar-neg","volume":"0","timeZone":"JST","localTimeZoneTimestamp":"1:56 PM JST 02/14/18","localTimestamp":"1:56 PM 02/14/18","etTimestamp":"11:56 PM ET 02/13/18","mdTimestamp":"2018-02-13T23:56:00-05:00","timestamp":"2018-02-14T13:56:00","url":"http://quotes.wsj.com/index/JP/NIK","bgChannel":"/quotes/zigman/5986735/delayed","chartingSymbol":"Index/JP/XTKS/NIK","pastCloses":[{"range":"D5","price":21645.37},{"range":"P29D","price":23868.34},{"range":"P3M","price":22028.32},{"range":"YTD","price":22764.94},{"range":"P1Y","price":19437.98},{"range":"P3Y","price":18199.17}],"displayName":"Nikkei","node_env":"production","updatedTimestamp":"2018-02-14T00:16:01-05:00","etOffsetMins":-300,"up":false,"down":true,"displayPrice":"21150.39","displayPerChange":"-0.44%","displayChange":"-94.29"},{"requestId":"HSI","commonName":"Hang Seng Index","ticker":"HSI","countryCode":"HK","exchangeCode":"XHKG","type":"Index","decimalPrecision":2,"value":"30106.51","change":"266.98","perChange":"0.89%","deltaBarPosNeg":"deltaBar-pos","volume":"0","timeZone":"HKST","localTimeZoneTimestamp":"1:01 PM HKST 02/14/18","localTimestamp":"1:01 PM 02/14/18","etTimestamp":"12:01 AM ET 02/14/18","mdTimestamp":"2018-02-14T00:01:00-05:00","timestamp":"2018-02-14T13:01:00","url":"http://quotes.wsj.com/index/HK/HSI","bgChannel":"/quotes/zigman/2622475/delayed","chartingSymbol":"Index/HK/XHKG/HSI","pastCloses":[{"range":"D5","price":30323.2},{"range":"P29D","price":31983.41},{"range":"P3M","price":28851.69},{"range":"YTD","price":29919.15},{"range":"P1Y","price":23994.87},{"range":"P3Y","price":24832.08}],"displayName":"Hang Seng","node_env":"production","updatedTimestamp":"2018-02-14T00:16:01-05:00","etOffsetMins":-300,"up":true,"down":false,"displayPrice":"30106.51","displayPerChange":"0.89%","displayChange":"266.98","hideIn4u":true,"hideWithPortfolio12u":true},{"requestId":"TMUBMUSD10Y","commonName":"U.S. 10 Year Treasury Note","ticker":"TMUBMUSD10Y","countryCode":"BX","exchangeCode":"XTUP","type":"Bond","decimalPrecision":3,"value":"2.818","change":"-0.012","perChange":"-0.42%","deltaBarPosNeg":"deltaBar-neg","volume":"0","timeZone":"EST","localTimeZoneTimestamp":"12:15 AM EST 02/14/18","localTimestamp":"12:15 AM 02/14/18","etTimestamp":"12:15 AM ET 02/14/18","mdTimestamp":"2018-02-14T00:15:56-05:00","timestamp":"2018-02-14T00:15:56.229","url":"http://quotes.wsj.com/bond/BX/TMUBMUSD10Y","bgChannel":"/quotes/zigman/15866666/realtime","chartingSymbol":"Bond/BX/XTUP/TMUBMUSD10Y","pastCloses":[{"range":"D5","price":2.8415},{"range":"P29D","price":2.5493},{"range":"P3M","price":2.396620010402},{"range":"YTD","price":2.4101},{"range":"P1Y","price":2.409},{"range":"P3Y","price":2.0547}],"bondSpecifics":{"isUSBond":true,"tradePrice":99.421875,"tradeChange":"0.102","tradeChangeFractional":"3/32","deltaBarPosNeg":"deltaBar-pos","tradeChangePercent":0.102257531660505,"yield":"2.818%","deltaBarPosYield":"deltaBar-neg","yieldChange":"-0.012","yieldChangePercent":-0.41704955114158476},"displayName":"U.S. 10 Yr","node_env":"production","updatedTimestamp":"2018-02-14T00:16:01-05:00","etOffsetMins":-300,"displayChange":"2.818%","displayPerChange":"2.818%","displayPrice":"3/32","up":true,"down":false,"isUS10YrBond":true,"hideWithPortfolio4u":true},{"requestId":"Crude Oil - Electronic","commonName":"Crude Oil Mar 2018","ticker":"CLH8","countryCode":"US","exchangeCode":"XNYM","type":"Future","decimalPrecision":2,"value":"59.16","change":"-0.03","perChange":"-0.05%","deltaBarPosNeg":"deltaBar-neg","volume":"31,540","timeZone":"EST","localTimeZoneTimestamp":"12:05 AM EST 02/14/18","localTimestamp":"12:05 AM 02/14/18","etTimestamp":"12:05 AM ET 02/14/18","mdTimestamp":"2018-02-14T00:05:54-05:00","timestamp":"2018-02-14T00:05:54","url":"http://quotes.wsj.com/futures/Crude Oil - Electronic","bgChannel":"/quotes/zigman/12641121/delayed","chartingSymbol":"Future/US/XNYM/CLH8","pastCloses":[{"range":"D5","price":61.73},{"range":"P29D","price":64.02},{"range":"P3M","price":55.78},{"range":"YTD","price":60.14},{"range":"P1Y","price":55.18},{"range":"P3Y","price":65.89}],"displayName":"Crude Oil","node_env":"production","updatedTimestamp":"2018-02-14T00:16:01-05:00","etOffsetMins":-300,"up":false,"down":true,"displayPrice":"59.16","displayPerChange":"-0.05%","displayChange":"-0.03","hideIn4u":true},{"requestId":"USDJPY","commonName":"Japanese Yen","ticker":"USDJPY","countryCode":"US","exchangeCode":"XTUP","type":"Currency","decimalPrecision":2,"value":"107.22","change":"-0.60","perChange":"-0.56%","deltaBarPosNeg":"deltaBar-neg","volume":"0","timeZone":"EST","localTimeZoneTimestamp":"12:15 AM EST 02/14/18","localTimestamp":"12:15 AM 02/14/18","etTimestamp":"12:15 AM ET 02/14/18","mdTimestamp":"2018-02-14T00:15:53-05:00","timestamp":"2018-02-14T00:15:53","url":"http://quotes.wsj.com/fx/USDJPY","bgChannel":"/quotes/zigman/16008150/realtime/sampled","chartingSymbol":"Currency/US/XTUP/USDJPY","pastCloses":[{"range":"D5","price":109.34},{"range":"P29D","price":111.276},{"range":"P3M","price":112.873},{"range":"YTD","price":112.702},{"range":"P1Y","price":114.158},{"range":"P3Y","price":118.786}],"displayName":"Yen","node_env":"production","updatedTimestamp":"2018-02-14T00:16:01-05:00","etOffsetMins":-300,"up":false,"down":true,"displayPrice":"107.22","displayPerChange":"-0.56%","displayChange":"-0.60"},{"requestId":"DJIA","commonName":"Dow Jones Industrial Average","ticker":"DJIA","countryCode":"US","exchangeCode":null,"type":"Index","decimalPrecision":2,"value":"24640.45","change":"39.18","perChange":"0.16%","deltaBarPosNeg":"deltaBar-pos","volume":"374,408,378","timeZone":"EST","localTimeZoneTimestamp":"4:54 PM EST 02/13/18","localTimestamp":"4:54 PM 02/13/18","etTimestamp":"4:54 PM ET 02/13/18","mdTimestamp":"2018-02-13T16:54:29-05:00","timestamp":"2018-02-13T16:54:29","url":"http://quotes.wsj.com/index/DJIA","bgChannel":"/quotes/zigman/627449/realtime","chartingSymbol":"Index/US//DJIA","pastCloses":[{"range":"D5","price":24912.77},{"range":"P29D","price":25792.86},{"range":"P3M","price":23409.47},{"range":"YTD","price":24719.22},{"range":"P1Y","price":20504.41},{"range":"P3Y","price":18047.58}],"displayName":"DJIA","node_env":"production","updatedTimestamp":"2018-02-14T00:16:01-05:00","etOffsetMins":-300,"up":true,"down":false,"displayPrice":"24640.45","displayPerChange":"0.16%","displayChange":"39.18","hideIn4u":true,"hideIn12u":true}]},"metadata":{"title":"Weakened Harvey Douses Louisiana: Live Coverage","url":"https://www.wsj.com/livecoverage/hurricane-harvey-live-coverage","description":"Weakened Harvey Douses Louisiana: Live Coverage","keywords":["hurricane harvey texas storm","Live","coverage","from","the","Wall","Street","Journal."],"links":[{"rel":"shortcut icon","href":"https://s.wsj.net/media/wsj_favicon-16x16.png","sizes":"16x16","type":"image/x-icon"},{"rel":"shortcut icon","href":"https://s.wsj.net/media/wsj_favicon-32x32.png","sizes":"32x32","type":"image/x-icon"},{"rel":"apple-touch-icon","href":"https://s.wsj.net/media/wsj_apple-touch-icon-144x144.png","sizes":"144x144"},{"rel":"apple-touch-icon","href":"https://s.wsj.net/media/wsj_apple-touch-icon-114x114.png","sizes":"114x114"},{"rel":"apple-touch-icon","href":"https://s.wsj.net/media/wsj_apple-touch-icon-72x72.png","sizes":"72x72"},{"rel":"apple-touch-icon","href":"https://s.wsj.net/media/wsj_apple-touch-icon-57x57.png","sizes":"57x57"},{"rel":"apple-touch-icon","href":"https://s.wsj.net/media/wsj_apple-touch-icon-180x180.png","sizes":"180x180"},{"rel":"apple-touch-icon","href":"https://s.wsj.net/media/wsj_apple-touch-icon-152x152.png","sizes":"152x152"},{"rel":"apple-touch-icon","href":"https://s.wsj.net/media/wsj_apple-touch-icon-120x120.png","sizes":"120x120"},{"rel":"apple-touch-icon","href":"https://s.wsj.net/media/wsj_apple-touch-icon-76x76.png","sizes":"76x76"},{"rel":"apple-touch-icon","href":"https://s.wsj.net/media/wsj_apple-touch-icon-60x60.png","sizes":"60x60"},{"rel":"manifest","href":"https://www.wsj.com/manifest.json"},{"rel":"publisher","href":"https://plus.google.com/117720626238470886461"}],"prefetch":["//video-api.wsj.com","//fonts.wsj.net","//s.wsj.net","//si.wsj.net","//api.vidora.com","//js-agent.newrelic.com","//bam.nr-data.net","//tags.tiqcdn.com","//static.chartbeat.com","//cdn.cxense.com","//m.wsj.net","//a248.e.akamai.net","//om.dowjoneson.com","//wsjstream.wsj.net","//www.googletagservices.com","//partner.googleadservices.com","//pagead2.googlesyndication.com","//pubads.g.doubleclick.net","//tpc.googlesyndication.com"],"metatags":[{"property":"og:url","content":"https://www.wsj.com/livecoverage/hurricane-harvey-live-coverage"},{"property":"og:title","content":"Weakened Harvey Douses Louisiana: Live Coverage"},{"property":"og:description","content":"Tropical Storm Harvey came ashore again, bringing heavy rains and winds to southwestern Louisiana, but far less than the record rainfall it brought to Texas."},{"property":"og:type","content":"article"},{"property":"og:site_name","content":"WSJ"},{"property":"og:image","content":"https://si.wsj.net/public/resources/images/BN-UV000_HARVEY_G_20170824175405.jpg"},{"property":"twitter:site","content":"@wsj"},{"property":"twitter:app:name:iphone","content":"The Wall Street Journal"},{"property":"twitter:app:name:googleplay","content":"The Wall Street Journal"},{"property":"twitter:card","content":"summary_large_image"},{"property":"twitter:url","content":"https://www.wsj.com/livecoverage/hurricane-harvey-live-coverage"},{"property":"fb:pages","content":"8304333127"},{"name":"fb:app_id","content":"368513495882"},{"name":"page.content.type","content":"Blogs"},{"name":"page.section","content":"Live Coverage"},{"name":"page.content.source","content":"WSJ Online"},{"name":"page.id","content":"livecoverage_hurricane-harvey-live-coverage"},{"name":"ad.id","content":"live_article"},{"name":"page.subsection","content":"hurricane-harvey-live-coverage"},{"property":"article:publisher","content":"https://www.facebook.com/wsj"}],"utag":{"article_format":"web","article_type":"Livecoverage","article_video_count":"","article_image_count":"","article_embedded_count":"","article_internal_link_count":"","article_word_count":"","article_author":"","cms_name":"Live Coverage Manager","page_content_type":"Article","page_content_type_detail":"livecoverage","page_section":"Collection","page_subsection":"Livecoverage","page_content_source":"WSJ Online","page_content_language":"en-US","article_template":"full","page_content_region":"North_America_USA","article_id":"hurricane-harvey-live-coverage","article_headline_orig":"Weakened Harvey Douses Louisiana: Live Coverage","article_headline":"Weakened Harvey Douses Louisiana: Live Coverage","article_publish_orig":"2017-8-31 20:42","article_publish":"2017-8-31 20:42","article_keywords":"hurricane harvey texas storm"},"news_keywords":["hurricane harvey texas storm","Live","coverage","from","the","Wall","Street","Journal."]},"olympics":{},"request":{"browserId":"default","gridSize":"at16units","protocol":"https","componentName":"LiveCoveragePage","params":{"slug":"hurricane-harvey-live-coverage"},"region":"na,us"},"section":{"layout":"livecoverage","newgrid":true,"ads":{"sponsoredSections":{},"msnLinks":{"msnId":"574337211"},"proximic":{},"candybar":{},"nativo":null,"adId":["live_article","sponsoredSection_US"]}},"corphat":[{"ncLinks":[{"title":"Big Decisions","url":"http://www.bigdecisions.com/","nofollow":"false"},{"title":"Business Spectator","url":"http://www.businessspectator.com.au/","nofollow":"false"},{"title":"Checkout51","url":"https://www.checkout51.com/?utm_source=wsj&utm_medium=digitalhousead&utm_campaign=wsjspotlight","nofollow":"false"},{"title":"Harper Collins","url":"http://www.harpercollins.com/","nofollow":"false"},{"title":"New York Post","url":"http://nypost.com/","nofollow":"false"},{"title":"PropTiger","url":"https://www.proptiger.com","nofollow":"false"},{"title":"REA","url":"http://www.rea-group.com/","nofollow":"false"},{"title":"realtor.com","url":"https://www.realtor.com","nofollow":"false"},{"title":"Storyful","url":"http://storyful.com/","nofollow":"false"},{"title":"The Australian","url":"http://www.theaustralian.com.au","nofollow":"false"},{"title":"The Sun","url":"http://www.thesun.co.uk/sol/homepage/","nofollow":"false"},{"title":"The Times","url":"http://www.thetimes.co.uk","nofollow":"false"}]},{"djLinks":[{"title":"Barron's","url":"http://www.barrons.com/home-page","nofollow":"false"},{"title":"BigCharts","url":"http://bigcharts.marketwatch.com","nofollow":"false"},{"title":"DJX","url":"http://www.wsj.com/public/page/wsj-x-marketing.html","nofollow":"false"},{"title":"Dow Jones Newswires","url":"http://new.dowjones.com/products/dj-news","nofollow":"false"},{"title":"Factiva","url":"https://global.factiva.com/factivalogin/login.asp?productname=global","nofollow":"false"},{"title":"Financial News","url":"http://www.efinancialnews.com","nofollow":"false"},{"title":"Mansion Global","url":"http://www.mansionglobal.com/","nofollow":"false"},{"title":"MarketWatch","url":"http://www.marketwatch.com","nofollow":"false"},{"title":"Newsmart","url":"https://www.getnewsmart.com/","nofollow":"false"},{"title":"NewsPlus","url":"https://newsplus.wsj.com","nofollow":"false"},{"title":"Private Markets","url":"http://privatemarkets.dowjones.com","nofollow":"false"},{"title":"Risk & Compliance","url":"https://djlogin.dowjones.com/login.asp?productname=rnc","nofollow":"false"},{"title":"WSJ Conference","url":"http://www.wsj.com/conferences","nofollow":"false"},{"title":"WSJ Pro","url":"http://www.wsj.com/pro/centralbanking","nofollow":"false"},{"title":"WSJ Video","url":"http://live.wsj.com","nofollow":"false"},{"title":"WSJ.com","url":"http://www.wsj.com","nofollow":"false"}]}],"assets":{"head":{"styles":["//vir.wsj.net/fp/cdn/fp/assets/5c15646cc386b4a072b9/LiveCoveragePage.css"],"fonts":[{"name":"Retina","url":"https://www.wsj.com/fonts/retina.css"},{"name":"Exchange","url":"https://www.wsj.com/fonts/exchange.css"},{"name":"Escrow Condensed","url":"https://www.wsj.com/fonts/escrow.css"}],"scripts":["https://assets.vidora.com/js/vidora-client.1.2.7.min.js"]},"body":{"scripts":["//vir.wsj.net/fp/cdn/fp/assets/5c15646cc386b4a072b9/LiveCoveragePage.js"],"styles":["https://video-api.wsj.com/api-video/player/v3/css/video.min.css"]}},"lists":{"FP_BREAKING_NEWS":{"articles":[],"meta":{}},"FP_POPULAR_ON_WSJ":{"articles":[{"articleId":"SB12028962442947793785004584035451103253102","articleType":"U.S.","articleSection":"US","byline":"Nour Malas","timestamp":1518563940000,"flashline":{"type":"us"},"headline":"California Employers in a Bind Over Immigration Enforcement","image":null,"slides":null,"summary":"California businesses are caught between state policies to shield illegal immigrants from deportation and federal moves to step up enforcement. And a new state law isn’t necessarily helping.","isFree":false,"isFreeForever":false,"tags":["AGRIBUSINESS","CALIFORNIA LAWS","DEPORTATION","FARM WORKERS","ICE RAIDS","ILLEGAL IMMIGRANTS","IMMIGRATION","IMMIGRATION POLICY","INDEPENDENT CONTRACTORS","U.S. IMMIGRATION AND CUSTOMS ENFORCEMENT"],"categories":[],"url":"https://www.wsj.com/articles/on-immigration-california-businesses-are-pinched-between-white-house-statehouse-1518519600","ebVideo":null,"commentCount":253},{"articleId":"SB11664756364254424857004584041222782021400","articleType":"Tech","articleSection":"Tech","byline":"Melanie Evans and Laura Stevens","bullets":[{"html":[{"text":" "},{"children":[{"text":"Health-Care Distributor Stocks Fall on News of Consolidation and Competition From Amazon"}],"tag":"a","url":"https://www.wsj.com/articles/health-care-distributor-stocks-fall-on-news-of-consolidation-and-competition-from-amazon-1518552573","newTarget":false},{"text":" "}]}],"timestamp":1518566700000,"flashline":{"type":"tech"},"headline":"Amazon Hospital-Supply Push Marks Its Latest Move Into Health Care","image":{"credit":"David Goldman/Associated Press","widths":{"110":{"w":110,"h":61,"url":"https://images.wsj.net/im-2054?width=110&height=61"},"120":{"w":120,"h":67,"url":"https://images.wsj.net/im-2054?width=120&height=67"},"350":{"w":350,"h":196,"url":"https://images.wsj.net/im-2054?width=350&height=196"},"430":{"w":430,"h":241,"url":"https://images.wsj.net/im-2054?width=430&height=241"},"620":{"w":620,"h":348,"url":"https://images.wsj.net/im-2054?width=620&height=348"}}},"slides":null,"summary":"Amazon is pushing to turn its nascent medical-supplies business into a major supplier to U.S. hospitals and outpatient clinics that could compete with distributors of items from gauze to hip implants.","isFree":false,"isFreeForever":false,"tags":["AMAZON","AMAZON BUSINESS","AMAZON HEALTH CARE","AMAZON HOSPITAL SUPPLIES","AMAZON MEDICAL SUPPLIES"," CARDINAL HEALTH","HEALTH CARE","HEALTH-CARE SUPPLY COSTS","HOSPITAL SUPPLIES","HOSPITAL SUPPLY-CHAIN OPTIONS"," MCKESSON","MEDICAL SUPPLIES"," MEDICAL-SUPPLY MARKET"," MEDLINE INDUSTRIES","NORTHWELL HEALTH","OWENS & MINOR"],"categories":[],"url":"https://www.wsj.com/articles/amazons-latest-ambition-to-be-a-major-hospital-supplier-1518517802","ebVideo":null,"commentCount":77},{"articleId":"SB12701433245060414032904584040972829241570","articleType":"Global View","articleSection":"Opinion","byline":"Walter Russell Mead","timestamp":1518478860000,"flashline":{"type":"opinion","flashline":"global view"},"headline":"Kim Yo Jong’s Shattered Olympic Dream","image":{"credit":"kim kyung-hoon/Reuters","widths":{"110":{"w":110,"h":61,"url":"https://images.wsj.net/im-2046?width=110&height=61"},"120":{"w":120,"h":67,"url":"https://images.wsj.net/im-2046?width=120&height=67"},"350":{"w":350,"h":196,"url":"https://images.wsj.net/im-2046?width=350&height=196"},"430":{"w":430,"h":241,"url":"https://images.wsj.net/im-2046?width=430&height=241"},"620":{"w":620,"h":348,"url":"https://images.wsj.net/im-2046?width=620&height=348"}}},"slides":null,"summary":"The sister of North Korea’s dictator was a media sensation—but a diplomatic failure.","isFree":false,"isFreeForever":false,"tags":["DIPLOMACY","MIKE PENCE","NORTH KOREA NUCLEAR PROGRAM","OLYMPICS"],"categories":[],"url":"https://www.wsj.com/articles/kim-yo-jongs-shattered-olympic-dream-1518478897","ebVideo":null,"commentCount":236},{"articleId":"SB11862025014835334509704584042253130739402","articleType":"Olympics","articleSection":"Life","byline":"Brian Costa","bullets":[{"html":[{"text":" "},{"children":[{"text":"Jason Gay: The Miracle on Ice Never Sleeps"}],"tag":"a","url":"https://www.wsj.com/articles/the-miracle-on-ice-never-sleeps-1518521945?tesla=y","newTarget":false},{"text":" "}]},{"html":[{"text":" "},{"children":[{"text":"Shani Davis Finishes Off the Podium, On His Terms"}],"tag":"a","url":"https://www.wsj.com/articles/shani-davis-finishes-off-the-podium-on-his-terms-1518529961?tesla=y","newTarget":false},{"text":" "}]},{"html":[{"text":" "},{"children":[{"text":"Chloe Kim Beats, Eats and Tweets (Not In That Order)"}],"tag":"a","url":"https://www.wsj.com/articles/chloe-kim-beats-eats-and-tweets-not-in-that-order-1518519047?tesla=y","newTarget":false},{"text":" "}]},{"html":[{"text":" "},{"children":[{"text":"Full Coverage From Pyeongchang"}],"tag":"a","url":"https://www.wsj.com/livecoverage/2018-winter-olympics-pyeongchang","newTarget":false},{"text":" "}]}],"timestamp":1518560040000,"flashline":{"type":"life","flashline":"PYEONGCHANG 2018"},"headline":"A Star Snowboarder’s Dilemma: Embrace the Olympic Stage or Leave It","image":{"credit":"Petter Arvidson/Zuma Press","widths":{"110":{"w":110,"h":61,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL434_3p7Kt_A_20180213010702.jpg?width=110&height=61"},"120":{"w":120,"h":67,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL434_3p7Kt_A_20180213010702.jpg?width=120&height=67"},"350":{"w":350,"h":196,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL434_3p7Kt_A_20180213010702.jpg?width=350&height=196"},"430":{"w":430,"h":241,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL434_3p7Kt_A_20180213010702.jpg?width=430&height=241"},"620":{"w":620,"h":348,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL434_3p7Kt_A_20180213010702.jpg?width=620&height=348"}}},"slides":null,"summary":"At 17, Red Gerard is a sudden star in snowboarding, where a lifetime of Olympic glory is not always the preferred path.","isFree":true,"isFreeForever":false,"tags":["2018 OLYMPICS","OLYMPICS 2018","OLYMPIC WINTER GAMES","PYEONGCHANG 2018 OLYMPICS","RED GERARD","SNOWBOARD","WINTER OLYMPICS 2018"],"categories":[],"url":"https://www.wsj.com/articles/a-star-snowboarders-dilemma-embrace-the-olympic-stage-or-leave-it-for-the-backcountry-1518519375","ebVideo":null},{"articleId":"SB11664756364254424857004584043070619124580","articleType":"Business","articleSection":"Business","byline":"Sarah Nassauer","timestamp":1518537480000,"flashline":{"type":"business"},"headline":"Walmart to Trim Store Management Ranks","image":{"credit":"Rick Wilking/Reuters","widths":{"110":{"w":167,"h":94,"url":"https://si.wsj.net/public/resources/images/BN-XL514_WALMAR_C_20180213103227.jpg"},"120":{"w":167,"h":94,"url":"https://si.wsj.net/public/resources/images/BN-XL514_WALMAR_C_20180213103227.jpg"},"350":{"w":167,"h":94,"url":"https://si.wsj.net/public/resources/images/BN-XL514_WALMAR_C_20180213103227.jpg"},"430":{"w":167,"h":94,"url":"https://si.wsj.net/public/resources/images/BN-XL514_WALMAR_C_20180213103227.jpg"},"620":{"w":167,"h":94,"url":"https://si.wsj.net/public/resources/images/BN-XL514_WALMAR_C_20180213103227.jpg"}}},"slides":null,"summary":"Walmart is cutting some store management jobs as it works to keep labor costs low while investing in higher wages and e-commerce efforts to fend off Amazon.com.","isFree":false,"isFreeForever":false,"tags":["JOB CUTS","WALMART CUTS","WALMART JOB CUTS","WALMART JOBS","WALMART LAYOFFS"],"categories":[],"url":"https://www.wsj.com/articles/walmart-to-trim-store-management-ranks-1518537520","ebVideo":null},{"articleId":"SB10975626634061694908804584041873148704330","articleType":"U.S. Markets","articleSection":"Markets","byline":"Michael Wursthorn and Georgi Kantchev","bullets":[{"html":[{"text":" "},{"children":[{"text":"Anxiety Ahead of January Inflation Data"}],"tag":"a","url":"https://www.wsj.com/articles/the-next-big-number-keeping-markets-on-edge-1518523130","newTarget":false},{"text":" "}]},{"html":[{"text":" "},{"children":[{"text":"Goldman CEO on the Return of Volatility: ‘Not Whether, But When’"}],"tag":"a","url":"https://blogs.wsj.com/moneybeat/2018/02/13/goldman-ceo-on-the-return-of-volatility-not-whether-but-when/","newTarget":false},{"text":" "}]}],"entitlements":["NEWSPLUS","PRO","WSJ-PRO-WSJ.com"],"timestamp":1518557760000,"flashline":{"type":"markets"},"headline":"U.S. Stocks Rise Ahead of Key Inflation Report","image":{"credit":"justin lane/epa-efe/rex/shutters/EPA/Shutterstock","widths":{"110":{"w":110,"h":61,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL448_3pcB0_A_20180213035757.jpg?width=110&height=61"},"120":{"w":120,"h":67,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL448_3pcB0_A_20180213035757.jpg?width=120&height=67"},"350":{"w":350,"h":196,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL448_3pcB0_A_20180213035757.jpg?width=350&height=196"},"430":{"w":430,"h":241,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL448_3pcB0_A_20180213035757.jpg?width=430&height=241"},"620":{"w":620,"h":348,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL448_3pcB0_A_20180213035757.jpg?width=620&height=348"}}},"slides":null,"summary":"Major U.S. stock indexes rose slightly Tuesday, gaining for a third consecutive session, though investors remained on edge ahead of a key report on inflation.","isFree":true,"isFreeForever":false,"tags":["ASIA MARKETS "," DOW","EQUITY MARKETS ","EUROPE MARKETS"," EUROPE SHARES","FOREX MARKETS","GLOBAL MARKETS ","S7P 500","SELLOFF"," U.S. FUTURES","US STOCKS","VOLATILITY"],"categories":[],"url":"https://www.wsj.com/articles/rebound-for-global-stocks-rolls-on-1518486206","ebVideo":null,"commentCount":52},{"articleId":"SB11664756364254424857004584043190066034528","articleType":"Politics","articleSection":"Politics","byline":"Michael C. Bender, Rebecca Ballhaus and Peter Nicholas","bullets":[{"html":[{"text":" "},{"children":[{"text":"Midterm Elections Remain Vulnerable to Russian Meddling, U.S. Spy Chief Says"}],"tag":"a","url":"https://www.wsj.com/articles/midterm-elections-remain-vulnerable-to-russian-meddling-u-s-spy-chief-says-1518539348?tesla=y","newTarget":false},{"text":" "}]}],"entitlements":["NEWSPLUS","PRO","WSJ-PRO-WSJ.com"],"timestamp":1518498060000,"flashline":{"type":"politics"},"headline":"FBI Timeline on Porter Contradicts White House","image":{"credit":"Andrew Harnik/Associated Press","widths":{"110":{"w":110,"h":61,"url":"https://images.wsj.net/im-2110?width=110&height=61"},"120":{"w":120,"h":67,"url":"https://images.wsj.net/im-2110?width=120&height=67"},"350":{"w":350,"h":196,"url":"https://images.wsj.net/im-2110?width=350&height=196"},"430":{"w":430,"h":241,"url":"https://images.wsj.net/im-2110?width=430&height=241"},"620":{"w":620,"h":348,"url":"https://images.wsj.net/im-2110?width=620&height=348"}}},"slides":null,"summary":"The head of the FBI said his agency first flagged issues with its background check of Rob Porter to the Trump administration in March, a timeline that conflicts with what the White House said it knew about the former aide’s past.","isFree":false,"isFreeForever":false,"tags":["FBI","ROB PORTER","ROB PORTER ABUSE ALLEGATIONS","SEX ABUSE","TRUMP","TRUMP AIDE ABUSE ALLEGATIONS","TRUMP AIDE RESIGNS","WHITE HOUSE AIDE","WIFE ABUSE"],"categories":[],"url":"https://www.wsj.com/articles/fbi-director-defends-handling-of-background-check-of-former-trump-aide-1518542822","ebVideo":null,"commentCount":2146},{"articleId":"SB10318148107100074903004584035083775358994","articleType":"Commentary","articleSection":"Opinion","byline":"Shadi Hamid","bullets":[{"html":[{"text":" "},{"children":[{"text":"Soner Cagaptay: How Europe Lost Turkey"}],"tag":"a","url":"https://www.wsj.com/articles/how-europe-lost-turkey-1518480241","newTarget":false},{"text":" "}]}],"timestamp":1518479100000,"flashline":{"type":"opinion"},"headline":"Why the Center-Left Became Immoderate","image":{"credit":"David Gothard","widths":{"110":{"w":167,"h":94,"url":"https://si.wsj.net/public/resources/images/BN-XK947_hamid_C_20180212071016.jpg"},"120":{"w":167,"h":94,"url":"https://si.wsj.net/public/resources/images/BN-XK947_hamid_C_20180212071016.jpg"},"350":{"w":167,"h":94,"url":"https://si.wsj.net/public/resources/images/BN-XK947_hamid_C_20180212071016.jpg"},"430":{"w":167,"h":94,"url":"https://si.wsj.net/public/resources/images/BN-XK947_hamid_C_20180212071016.jpg"},"620":{"w":167,"h":94,"url":"https://si.wsj.net/public/resources/images/BN-XK947_hamid_C_20180212071016.jpg"}}},"slides":null,"summary":"In polarized times, those without a clear guiding ideology become the most vicious partisans.","isFree":false,"isFreeForever":false,"tags":["CENTRISM","MEDIA","POLITICAL POLARIZATION"],"categories":[],"url":"https://www.wsj.com/articles/why-the-center-left-became-immoderate-1518479151","ebVideo":null,"commentCount":854},{"articleId":"SB11862025014835334509704584042344009914178","articleType":"Olympics","articleSection":"Life","byline":"Rachel Bachman","bullets":[{"html":[{"text":" "},{"children":[{"text":"Chloe Kim Flips to Halfpipe Gold"}],"tag":"a","url":"https://www.wsj.com/articles/chloe-kim-flips-to-halfpipe-gold-1518490233?tesla=y","newTarget":false},{"text":" "}]},{"html":[{"text":" "},{"children":[{"text":"A Dilemma for Red Gerard, Snowboarding’s Sudden Star"}],"tag":"a","url":"https://www.wsj.com/articles/a-star-snowboarders-dilemma-embrace-the-olympic-stage-or-leave-it-for-the-backcountry-1518519375?tesla=y","newTarget":false},{"text":" "}]},{"html":[{"text":" "},{"children":[{"text":"As Pyeongchang Winds Blow, Wipeouts Are Status Quo"}],"tag":"a","url":"https://www.wsj.com/articles/as-pyeongchang-winds-blow-wipeouts-become-status-quo-1518477675","newTarget":false},{"text":" "}]},{"html":[{"text":" "},{"children":[{"text":"Winter Games: What You Need to Know Tuesday"}],"tag":"a","url":"https://www.wsj.com/livecoverage/2018-winter-olympics-pyeongchang","newTarget":false},{"text":" "}]}],"timestamp":1518519000000,"flashline":{"type":"life","flashline":"Snowboarding"},"headline":"Chloe Kim Beats, Eats and Tweets (Not in That Order)","image":{"credit":"Yonhap News/Zuma Press","widths":{"110":{"w":110,"h":61,"url":"https://images.wsj.net/im-2095?width=110&height=61"},"120":{"w":120,"h":67,"url":"https://images.wsj.net/im-2095?width=120&height=67"},"350":{"w":350,"h":196,"url":"https://images.wsj.net/im-2095?width=350&height=196"},"430":{"w":430,"h":241,"url":"https://images.wsj.net/im-2095?width=430&height=241"},"620":{"w":620,"h":348,"url":"https://images.wsj.net/im-2095?width=620&height=348"}}},"slides":null,"summary":"Chloe Kim, the 17-year-old snowboarder who just won gold in the halfpipe, has become known as much for her appetite as her otherworldly talent, thanks to a social-media savvy that is uncommon among Olympic athletes.","isFree":true,"isFreeForever":false,"tags":["2018 WINTER OLYMPICS","CHLOE KIM","HALFPIPE","OLYMPICS","PYEONGCHANG","SNOWBOARDING"],"categories":[],"url":"https://www.wsj.com/articles/chloe-kim-beats-eats-and-tweets-not-in-that-order-1518519047","ebVideo":null,"commentCount":62},{"articleId":"SB11827315801849083767104584043373012976670","articleType":"Middle East","articleSection":"World","byline":"Rory Jones","timestamp":1518560760000,"flashline":{"type":"world"},"headline":"Police Recommend Charging Netanyahu With Bribery, Fraud","image":{"credit":"pool/Reuters","widths":{"110":{"w":110,"h":61,"url":"https://images.wsj.net/im-2117?width=110&height=61"},"120":{"w":120,"h":67,"url":"https://images.wsj.net/im-2117?width=120&height=67"},"350":{"w":350,"h":196,"url":"https://images.wsj.net/im-2117?width=350&height=196"},"430":{"w":430,"h":241,"url":"https://images.wsj.net/im-2117?width=430&height=241"},"620":{"w":620,"h":348,"url":"https://images.wsj.net/im-2117?width=620&height=348"}}},"slides":null,"summary":"Israeli police recommended charging Prime Minister Benjamin Netanyahu with bribery, fraud and breach of trust in a move that could lead to a formal indictment and is likely to further dent the leader’s popularity and threaten his ruling coalition.","isFree":false,"isFreeForever":false,"tags":[],"categories":[],"url":"https://www.wsj.com/articles/israeli-police-recommend-charging-netanyahu-for-bribery-fraud-1518550185","ebVideo":null,"commentCount":697},{"articleId":"SB11214475680780514876604583604463326934122","articleType":"Business","articleSection":"Business","byline":"Sarah Kent in Abuja, Nigeria, and Eric Sylvers in Milan","timestamp":1518543600000,"flashline":{"type":"business"},"headline":"A Billion-Dollar Bribery Scandal Sweeps Through the Oil Industry","image":{"credit":"George Osodi/Bloomberg News","widths":{"110":{"w":167,"h":94,"url":"https://si.wsj.net/public/resources/images/BN-XL299_0212SH_C_20180212183008.jpg"},"120":{"w":167,"h":94,"url":"https://si.wsj.net/public/resources/images/BN-XL299_0212SH_C_20180212183008.jpg"},"350":{"w":167,"h":94,"url":"https://si.wsj.net/public/resources/images/BN-XL299_0212SH_C_20180212183008.jpg"},"430":{"w":167,"h":94,"url":"https://si.wsj.net/public/resources/images/BN-XL299_0212SH_C_20180212183008.jpg"},"620":{"w":167,"h":94,"url":"https://si.wsj.net/public/resources/images/BN-XL299_0212SH_C_20180212183008.jpg"}}},"slides":null,"summary":"Shell and Eni paid $1.3 billion for rights to a prized offshore oil field in Nigeria. The question of whether the money was mostly a bribe is at the heart of one of the biggest corruption scandals the industry has faced.","isFree":false,"isFreeForever":false,"tags":[" BRIBERY"," CORRUPTION"," FOREIGN CORRUPT PRACTICES ACT","LEDER"," NIGERIA"," OIL EXPLORATION"],"categories":[],"url":"https://www.wsj.com/articles/inside-the-bribery-scandal-thats-sweeping-through-the-oil-industry-1518543648","ebVideo":null,"commentCount":55},{"articleId":"SB11664756364254424857004584043280904629874","articleType":"Markets","articleSection":"Markets","byline":"Gunjan Banerji","entitlements":["PRO","WSJ-PRO-FR","WSJ-PRO-WSJ.com"],"timestamp":1518570780000,"flashline":{"type":"markets"},"headline":"Stock Market ‘Fear Index’ Faces Probe","image":{"credit":"Daniel Acker/Bloomberg News","widths":{"110":{"w":110,"h":61,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL628_3lJXT_A_20180213131908.jpg?width=110&height=61"},"120":{"w":120,"h":67,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL628_3lJXT_A_20180213131908.jpg?width=120&height=67"},"350":{"w":350,"h":196,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL628_3lJXT_A_20180213131908.jpg?width=350&height=196"},"430":{"w":430,"h":241,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL628_3lJXT_A_20180213131908.jpg?width=430&height=241"},"620":{"w":620,"h":348,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL628_3lJXT_A_20180213131908.jpg?width=620&height=348"}}},"slides":null,"summary":"A U.S. regulator is looking into whether prices linked to the widely watched Cboe Volatility Index have been manipulated.","isFree":false,"isFreeForever":false,"tags":["FINRA"," MARKET VOLATILITY"," OPTIONS"," PROBE"," S&P 500","VIX"," VIX MANIPULATION"],"categories":[],"url":"https://www.wsj.com/articles/wall-street-regulator-probes-alleged-manipulation-of-vix-a-popular-volatility-gauge-1518547608","ebVideo":null},{"articleId":"SB11664756364254424857004584042432886889604","articleType":"Markets","articleSection":"Markets","byline":"Christopher Alessi","bullets":[{"html":[{"text":" "},{"children":[{"text":"Shale, OPEC Pull Oil in Opposite Directions"}],"tag":"a","url":"https://blogs.wsj.com/moneybeat/2018/02/13/u-s-shale-opec-pull-oil-prices-in-opposite-directions-2/","newTarget":false},{"text":" "}]},{"html":[{"text":" "},{"children":[{"text":"Heard on the Street: Why U.S. Oil Drillers Are Flooding the World"}],"tag":"a","url":"https://www.wsj.com/articles/why-u-s-oil-drillers-are-flooding-the-world-1518539887","newTarget":false},{"text":" "}]}],"timestamp":1518543960000,"flashline":{"type":"markets"},"headline":"Shale Output Hasn’t Grown This Fast Since Oil Was at $100","image":{"credit":"Luke Sharrett/Bloomberg News","widths":{"110":{"w":110,"h":61,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL447_3is68_A_20180213032426.jpg?width=110&height=61"},"120":{"w":120,"h":67,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL447_3is68_A_20180213032426.jpg?width=120&height=67"},"350":{"w":350,"h":196,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL447_3is68_A_20180213032426.jpg?width=350&height=196"},"430":{"w":430,"h":241,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL447_3is68_A_20180213032426.jpg?width=430&height=241"},"620":{"w":620,"h":348,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL447_3is68_A_20180213032426.jpg?width=620&height=348"}}},"slides":null,"summary":"U.S. shale companies are churning out crude oil at a record pace that could overwhelm global demand and reverse the oil market’s fragile recovery, the IEA said.","isFree":false,"isFreeForever":false,"tags":[" BRENT CRUDE"," CRUDE"," CRUDE OIL","OIL","OIL INVENTORIES","SHALE"],"categories":[],"url":"https://www.wsj.com/articles/u-s-crude-output-expected-to-outpace-demand-iea-says-1518512404","ebVideo":null,"commentCount":150},{"articleId":"SB11827315801849083767104584042891136022178","articleType":"Olympics","articleSection":"Life","byline":"Joshua Robinson","timestamp":1518529920000,"flashline":{"type":"life"},"headline":"Shani Davis Finishes Off the Podium, On His Terms","image":{"credit":"Vadim Ghirda/Associated Press","widths":{"110":{"w":110,"h":61,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL494_3phMW_A_20180213082746.jpg?width=110&height=61"},"120":{"w":120,"h":67,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL494_3phMW_A_20180213082746.jpg?width=120&height=67"},"350":{"w":350,"h":196,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL494_3phMW_A_20180213082746.jpg?width=350&height=196"},"430":{"w":430,"h":241,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL494_3phMW_A_20180213082746.jpg?width=430&height=241"},"620":{"w":620,"h":348,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL494_3phMW_A_20180213082746.jpg?width=620&height=348"}}},"slides":null,"summary":"The veteran speedskater places 19th in 1,500 meters, but just being in Pyeongchang helps erase the pain of Sochi.","isFree":true,"isFreeForever":false,"tags":["MEDAL","PODIUM","PYEONGCHANG","SHANI DAVIS","SOCHI","SPEEDSKATING","SUITS","TEAM USA","WINTER GAMES","WINTER OLYMPICS"],"categories":[],"url":"https://www.wsj.com/articles/shani-davis-finishes-off-the-podium-on-his-terms-1518529961","ebVideo":null,"commentCount":86},{"articleId":"SB11634488583872223280004583521402661040738","articleType":"WSJ Logistics Report","articleSection":"Business","byline":"Brian Baskin and Annie Gasparro","timestamp":1518453420000,"flashline":{"type":"business","flashline":"Business"},"headline":"Kraft Heinz Made Its Factories Really Efficient. Now It Has to Sell Bologna","image":{"credit":"Daniel Acker for The Wall Street Journal","widths":{"110":{"w":167,"h":94,"url":"https://si.wsj.net/public/resources/images/BN-XK782_KRAFTH_C_20180211160710.jpg"},"120":{"w":167,"h":94,"url":"https://si.wsj.net/public/resources/images/BN-XK782_KRAFTH_C_20180211160710.jpg"},"350":{"w":167,"h":94,"url":"https://si.wsj.net/public/resources/images/BN-XK782_KRAFTH_C_20180211160710.jpg"},"430":{"w":167,"h":94,"url":"https://si.wsj.net/public/resources/images/BN-XK782_KRAFTH_C_20180211160710.jpg"},"620":{"w":167,"h":94,"url":"https://si.wsj.net/public/resources/images/BN-XK782_KRAFTH_C_20180211160710.jpg"}}},"slides":null,"summary":"3G Capital’s formula of squeezing costs to improve profit margins is running up against consumers whose tastes have shifted away from processed foods.","isFree":false,"isFreeForever":false,"tags":[" 3G"," COLD CUTS"," KRAFT","LEDER","LOGISTICS","LOGISTICS REPORT"," MEAT PROCESSING"," OSCAR MAYER"],"categories":[],"url":"https://www.wsj.com/articles/kraft-heinz-made-its-factories-really-efficient-now-it-has-to-sell-bologna-1518453435","ebVideo":null,"commentCount":190},{"articleId":"SB12123169795058123920404584029341390640648","articleType":"The Saturday Essay","articleSection":"Life","byline":"Steven Pinker","timestamp":1518191340000,"flashline":{"type":"life","flashline":"The Saturday Essay"},"headline":"The Enlightenment Is Working","image":{"credit":"Robert Neubecker","widths":{"110":{"w":167,"h":94,"url":"https://si.wsj.net/public/resources/images/BN-XJ932_ENLIGH_C_20180208163555.jpg"},"120":{"w":167,"h":94,"url":"https://si.wsj.net/public/resources/images/BN-XJ932_ENLIGH_C_20180208163555.jpg"},"350":{"w":167,"h":94,"url":"https://si.wsj.net/public/resources/images/BN-XJ932_ENLIGH_C_20180208163555.jpg"},"430":{"w":167,"h":94,"url":"https://si.wsj.net/public/resources/images/BN-XJ932_ENLIGH_C_20180208163555.jpg"},"620":{"w":167,"h":94,"url":"https://si.wsj.net/public/resources/images/BN-XJ932_ENLIGH_C_20180208163555.jpg"}}},"slides":null,"summary":"Don’t listen to the gloom-sayers. The world has improved by every measure of human flourishing over the past two centuries, and the progress continues, writes Steven Pinker.","isFree":true,"isFreeForever":false,"tags":["DEMOCRACY","DESPOTISM","EDUCATION","ENLIGHTENMENT","LITERACY","POVERTY","STEVEN PINKER","VIOLENCE","WARS","WORLD ECONOMY"],"categories":[],"url":"https://www.wsj.com/articles/the-enlightenment-is-working-1518191343","ebVideo":null},{"articleId":"SB11827315801849083767104584041440185312098","articleType":"Review & Outlook","articleSection":"Opinion","byline":"The Editorial Board","bullets":[{"iconType":"audio","html":[{"text":" "},{"children":[{"text":"Podcast: Kissel and Restall on Winter Olympics winners and losers."}],"tag":"a","url":"http://www.wsj.com/podcasts/the-winter-olympics-china-debt-crisis-to-come/66596650-E57F-4A33-B6AD-6D3B349CBDCC.html","newTarget":false},{"text":" "}]}],"timestamp":1518481020000,"flashline":{"type":"opinion","flashline":"REVIEW & OUTLOOK"},"headline":"The Deficit Problem in a Chart","image":{"credit":"leah millis/Reuters","widths":{"110":{"w":110,"h":61,"url":"https://images.wsj.net/im-2079?width=110&height=61"},"120":{"w":120,"h":67,"url":"https://images.wsj.net/im-2079?width=120&height=67"},"350":{"w":350,"h":196,"url":"https://images.wsj.net/im-2079?width=350&height=196"},"430":{"w":430,"h":241,"url":"https://images.wsj.net/im-2079?width=430&height=241"},"620":{"w":620,"h":348,"url":"https://images.wsj.net/im-2079?width=620&height=348"}}},"slides":null,"summary":"‘Payments for individuals’ gobble up 69% of federal outlays.","isFree":false,"isFreeForever":false,"tags":[],"categories":[],"url":"https://www.wsj.com/articles/the-deficit-problem-in-a-chart-1518481020","ebVideo":null,"commentCount":405},{"articleId":"SB11664756364254424857004584041761055961466","articleType":"Business","articleSection":"Business","byline":"Michael Siconolfi, Dana Mattioli and Joseph Walker","timestamp":1518483000000,"flashline":{"type":"business"},"headline":"Walgreens Makes Takeover Approach to AmerisourceBergen","image":{"credit":"Spencer Platt/Getty Images","widths":{"110":{"w":110,"h":61,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL302_1RKhB_A_20180212185836.jpg?width=110&height=61"},"120":{"w":120,"h":67,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL302_1RKhB_A_20180212185836.jpg?width=120&height=67"},"350":{"w":350,"h":196,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL302_1RKhB_A_20180212185836.jpg?width=350&height=196"},"430":{"w":430,"h":241,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL302_1RKhB_A_20180212185836.jpg?width=430&height=241"},"620":{"w":620,"h":348,"url":"https://art.wsj.net/api/photos/gams-files/BN-XL302_1RKhB_A_20180212185836.jpg?width=620&height=348"}}},"slides":null,"summary":"Walgreens Boots Alliance is in early talks to buy drug wholesale company AmerisourceBergen, a move that could help boost the drugstore giant’s profitability and insulate it against threats in a competitive landscape.","isFree":false,"isFreeForever":false,"tags":["ABC","AMERISOURCE","DEAL","TAKEOVER","WALGREENS","WBA"],"categories":[],"url":"https://www.wsj.com/articles/walgreens-has-made-takeover-approach-to-amerisourcebergen-1518480542","ebVideo":null},{"articleId":"SB12701433245060414032904584043293436062748","articleType":"Business","articleSection":"Business","byline":"Julie Jargon","entitlements":["NEWSPLUS","PRO","WSJ-PRO-WSJ.com"],"timestamp":1518557400000,"flashline":{"type":"business"},"headline":"Chipotle Picks Taco Bell CEO Brian Niccol to Be Its New Chief","image":{"credit":"Mark Lennihan/Associated Press","widths":{"110":{"w":110,"h":61,"url":"https://images.wsj.net/im-2113?width=110&height=61"},"120":{"w":120,"h":67,"url":"https://images.wsj.net/im-2113?width=120&height=67"},"350":{"w":350,"h":196,"url":"https://images.wsj.net/im-2113?width=350&height=196"},"430":{"w":430,"h":241,"url":"https://images.wsj.net/im-2113?width=430&height=241"},"620":{"w":620,"h":348,"url":"https://images.wsj.net/im-2113?width=620&height=348"}}},"slides":null,"summary":"Chipotle Mexican Grill named Taco Bell CEO Brian Niccol its next chief executive, tapping a fast-food veteran to try to revive the struggling burrito chain.","isFree":false,"isFreeForever":false,"tags":["NEW CHIPOTLE CEO","STEVE ELLS"],"categories":[],"url":"https://www.wsj.com/articles/chipotle-picks-taco-bell-ceo-brian-niccol-to-be-its-new-chief-1518557401","ebVideo":null}],"meta":{}},"FP_MOST_POPULAR_VIDEOS":{"articles":[{"articleId":"65CD9C3D-8FA3-45FB-8CB2-EA846304EAF1","headline":"When Going Forward Is Running Backward","summary":"Aaron Yoder holds the Guinness world record for running a mile backward. Says the college track and cross-country coach: “I like going against the grain.” Photo/Video: Natalia V. Osipova/The Wall Street Journal","url":"http://www.wsj.com/video/when-going-forward-is-running-backward/65CD9C3D-8FA3-45FB-8CB2-EA846304EAF1.html","flashline":"Sports","image":{"widths":{"110":{"w":115,"h":65,"url":"https://m.wsj.net/video/20180212/020218backrun_2/020218backrun_2_115x65.jpg"}}},"duration":"200"},{"articleId":"3217DD75-F58B-4E24-A9DA-39CA78D8FCFE","headline":"Homemade Highlights: Team Figure Skating","summary":"In the first installment of WSJ's Homemade Highlights from the Winter Games in Pyeongchang, solid performances and a history-making moment couldn't help U.S. figure skating bring home Olympic team gold.","url":"http://www.wsj.com/video/series/pyeongchang-2018/homemade-highlights-team-figure-skating/3217DD75-F58B-4E24-A9DA-39CA78D8FCFE","flashline":"Sports","image":{"widths":{"110":{"w":115,"h":65,"url":"https://m.wsj.net/video/20180213/021218hhskating_recut/021218hhskating_recut_115x65.jpg"}}},"duration":"121"},{"articleId":"2303BBB7-6DBB-4DE5-B8EA-EEDE98419922","headline":"Inside North Korea With WSJ Reporters","summary":"Wall Street Journal reporters reflect on their September trip to Pyongyang, North Korea. Video/Photo: Paolo Bosonin/The Wall Street Journal","url":"http://www.wsj.com/video/inside-north-korea-with-wsj-reporters/2303BBB7-6DBB-4DE5-B8EA-EEDE98419922.html","flashline":"U.S. News","image":{"widths":{"110":{"w":115,"h":65,"url":"https://m.wsj.net/video/20171002/100217nkreporter/100217nkreporter_115x65.jpg"}}},"duration":"381"},{"articleId":"7A23636D-2399-4249-8B5D-1DCD30A9C783","headline":"North Korea’s Olympics Charm Offensive Meets Skepticism","summary":"Despite a display of improved relations between North and South Korea at the Winter Olympics, many South Koreans see the rapprochement as opportunistic propaganda. WSJ spoke to South Koreans who remain skeptical of the North's intentions. Photo: Getty Images","url":"http://www.wsj.com/video/series/pyeongchang-2018/north-koreas-olympics-charm-offensive-meets-skepticism/7A23636D-2399-4249-8B5D-1DCD30A9C783","flashline":"World","image":{"widths":{"110":{"w":115,"h":65,"url":"https://m.wsj.net/video/20180213/021318nkskeptic2/021318nkskeptic2_115x65.jpg"}}},"duration":"145"},{"articleId":"666BD1F2-0AB0-417B-846C-B45354AD4EE5","headline":"Olympian Jason Brown Breaks Down Figure Skating’s Six Jumps","summary":"Figure skater Jason Brown demonstrates and explains the differences between the six jumps in every skater’s arsenal. Photo: Adam Falk/The Wall Street Journal","url":"http://www.wsj.com/video/series/pyeongchang-2018/olympian-jason-brown-breaks-down-figure-skatings-six-jumps/666BD1F2-0AB0-417B-846C-B45354AD4EE5","flashline":"Sports","image":{"widths":{"110":{"w":115,"h":65,"url":"https://m.wsj.net/video/20180209/020818olysixjumps_fix/020818olysixjumps_fix_115x65.jpg"}}},"duration":"164"},{"articleId":"C163F15A-C6F5-46C3-95F5-E5F5A8D2CB38","headline":"What's Driving Trump's Infrastructure Plan","summary":"President Trump unveiled his infrastructure initiative on Monday as he hosted governors and mayors. The proposal aims to improve the nation's roads, bridges, airports, waterways and internet infrastructure. WSJ's Gerald F. Seib explains why powerful interest groups like the plan, despite some hurdles it faces. Photo: AP","url":"http://www.wsj.com/video/what-driving-trump-infrastructure-plan/C163F15A-C6F5-46C3-95F5-E5F5A8D2CB38.html","flashline":"Politics","image":{"widths":{"110":{"w":115,"h":65,"url":"https://m.wsj.net/video/20180212/021218seib/021218seib_115x65.jpg"}}},"duration":"131"},{"articleId":"9B5FB587-FA3A-4741-8874-02C2E47AA23E","headline":"How North and South Korea Came to March Under One Flag","summary":"The star of the Pyeongchang Winter Olympics opening ceremony was a white and blue flag representing a unified Korean peninsula. Here’s the story of a powerful and controversial symbol for two countries that still have guns aimed at each other.","url":"http://www.wsj.com/video/series/pyeongchang-2018/how-north-and-south-korea-came-to-march-under-one-flag/9B5FB587-FA3A-4741-8874-02C2E47AA23E","flashline":"World","image":{"widths":{"110":{"w":115,"h":65,"url":"https://m.wsj.net/video/20180212/021018flag5/021018flag5_115x65.jpg"}}},"duration":"207"},{"articleId":"405E72FC-C4D9-406F-AD44-05477405D240","headline":"A Brief History of the Winter Olympics: Pushing the Extreme","summary":"The 2018 Winter Olympics are bigger and more extreme than ever before, as death-defying sports make their way into the lineup. So how did we get here? Photo: Getty Images","url":"http://www.wsj.com/video/series/pyeongchang-2018/a-brief-history-of-the-winter-olympics-pushing-the-extreme/405E72FC-C4D9-406F-AD44-05477405D240","flashline":"Sports","image":{"widths":{"110":{"w":115,"h":65,"url":"https://m.wsj.net/video/20180206/020618histolympics/020618histolympics_115x65.jpg"}}},"duration":"201"},{"articleId":"76C9B372-6D13-49A8-ACC3-186EC32F9722","headline":"A Revolution in Stroke Care: Thrombectomy","summary":"An advanced procedure called 'thrombectomy' is transforming stroke care in America. It can be used to treat the most severe stroke patients -- but timing is critical. Photo/Video: Madeline Marshall/The Wall Street Journal","url":"http://www.wsj.com/video/a-revolution-in-stroke-care-thrombectomy/76C9B372-6D13-49A8-ACC3-186EC32F9722.html","flashline":"Health","image":{"widths":{"110":{"w":115,"h":65,"url":"https://m.wsj.net/video/20180206/020618stroke/020618stroke_115x65.jpg"}}},"duration":"296"},{"articleId":"37D93576-C594-48D0-9C12-9E9E9BE2250A","headline":"A 16th Century Manor House Surrounded by Farmland in Surrey","summary":"Unlike many Tudor homes, the 16th-century Grade II-listed manor house has high ceilings and light-filled rooms and is in good condition, having been recently refurbished by its owners.","url":"http://www.wsj.com/video/a-16th-century-manor-house-surrounded-by-farmland-in-surrey/37D93576-C594-48D0-9C12-9E9E9BE2250A.html","flashline":null,"image":{"widths":{"110":{"w":115,"h":65,"url":"https://m.wsj.net/video/20180208/0213lotd_surrey/0213lotd_surrey_115x65.jpg"}}},"duration":"40"}]},"FP_SLIDESHOWS":{"articles":[{"articleId":"SB12701433245060414032904584043460982502616","articleType":"Slideshow","articleSection":"Interactives","timestamp":1518561480000,"flashline":{"type":"interactives","flashline":"Photos"},"headline":"Photos of the Day: Feb. 13","image":{"credit":"Stephanie Lecocq/EPA/Shutterstock","widths":{"120":{"w":120,"h":80,"url":"https://si.wsj.net/public/resources/images/BN-XL686_021318_Z120_20180213151547.jpg"},"350":{"w":359,"h":239,"url":"https://si.wsj.net/public/resources/images/BN-XL686_021318_E_20180213151547.jpg"},"430":{"w":359,"h":239,"url":"https://si.wsj.net/public/resources/images/BN-XL686_021318_E_20180213151547.jpg"},"620":{"w":602,"h":402,"url":"https://si.wsj.net/public/resources/images/BN-XL686_021318_ER_20180213151547.jpg"},"1260":{"w":602,"h":402,"url":"https://si.wsj.net/public/resources/images/BN-XL686_021318_ER_20180213151547.jpg"}}},"slides":[{"slug":"021318pod_1","caption":"Festival participants wear traditional costumes during Carnival celebrations in the streets of Binche, Belgium, on Tuesday.","credit":"Stephanie Lecocq/EPA/Shutterstock","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XL686_021318_M_20180213151547.jpg"}}},{"slug":"021318pod_2","caption":"U.S. Federal Bureau of Investigation Director Christopher Wray arrives to testify before the Senate Intelligence Committee on Capitol Hill in Washington, D.C., on Tuesday.","credit":"Aaron P. Bernstein/Reuters","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XL683_021318_M_20180213151547.jpg"}}},{"slug":"021318pod_3","caption":"People create a human chain along the Elbe river in Dresden, Germany, to commemorate the World War II bombing of the city.","credit":"Hannibal Hanschke/Reuters","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XL687_021318_M_20180213151547.jpg"}}},{"slug":"021318pod_4","caption":"A boy jumps over debris outside the Iron Market, also known as Marche Hyppolite, in the aftermath of a massive fire that swept through a section of the popular marketplace, in Port-au-Prince, Haiti.","credit":"Dieu Nalio Chery/Associated Press","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XL684_021318_M_20180213151547.jpg"}}},{"slug":"021318pod_5","caption":"A member of the Krewe of Zulu marches in a Mardi Gras parade in New Orleans.","credit":"Gerald Herbert/Associated Press","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XL685_021318_M_20180213151547.jpg"}}},{"slug":"021318pod_6","caption":"A mute swan performs a courtship ritual on the Rhine river in Au am Rhein near Karlsruhe, Germany.","credit":"Ronald Wittek/EPA/Shutterstock","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XL682_021318_M_20180213151547.jpg"}}},{"slug":"021318pod_7","caption":"Exhausted float pushers for the Beija Flor Samba school rest at the end of Carnival celebrations at the Sambadrome in Rio de Janeiro, Brazil, on Tuesday. The world-famous two-day parade finished earlier in the day.","credit":"Leo Correa/Associated Press","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XL688_021318_M_20180213151551.jpg"}}},{"slug":"021318pod_8","caption":"A resident walks past a house damaged by flooding following heavy rains from tropical Storm Sanba in the town of Jaboanga on the southern island of Mindanao, Philippines.","credit":"Erwin Mascarinas/Agence France-Presse/Getty Images","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XL690_021318_M_20180213151551.jpg"}}},{"slug":"021318pod_9","caption":"Choi Soon-sil, right, a confidante of former South Korean President Park Geun-hye, leaves the Seoul Central District Court in Seoul, South Korea, on Tuesday. Choi, accused of manipulating South Korea’s former president for personal gain, was sentenced to 20 years in prison for bribery and other crimes in the political scandal that triggered the country’s first presidential impeachment and the conviction of an heir to the Samsung empire.","credit":"Ahn Young-joon/Associated Press","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XL691_021318_M_20180213151551.jpg"}}},{"slug":"021318pod_10","caption":"Ducks sit on ice sheets on the Wannsee lake in Berlin on Tuesday.","credit":"Ralf Hirschberger/Agence France-Presse/Getty Images","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XL689_021318_M_20180213151551.jpg"}}}],"summary":"In photos selected Tuesday by Wall Street Journal editors, festival participants wear costumes during Carnival celebrations in Belgium, FBI Director Christopher Wray arrives to testify on Capitol Hill, a Mardi Gras parade is held in New Orleans, and more.","isFree":true,"isFreeForever":false,"tags":["Flashline:Photos","PHOTOS OF THE DAY"],"categories":[],"url":"https://www.wsj.com/articles/photos-of-the-day-feb-13-1518561510","ebVideo":null},{"articleId":"SB10318148107100074903004584035173891158760","articleType":"Slideshow","articleSection":"Interactives","timestamp":1518535680000,"flashline":{"type":"interactives"},"headline":"For $28 Million, a Los Angeles Mansion With a Glass-Bottom Pool","image":{"credit":"Simon Berlyn","widths":{"120":{"w":120,"h":80,"url":"https://si.wsj.net/public/resources/images/BN-XK355_descha_Z120_20180209122330.jpg"},"350":{"w":359,"h":239,"url":"https://si.wsj.net/public/resources/images/BN-XK355_descha_E_20180209122330.jpg"},"430":{"w":359,"h":239,"url":"https://si.wsj.net/public/resources/images/BN-XK355_descha_E_20180209122330.jpg"},"620":{"w":602,"h":402,"url":"https://si.wsj.net/public/resources/images/BN-XK355_descha_ER_20180209122330.jpg"},"1260":{"w":602,"h":402,"url":"https://si.wsj.net/public/resources/images/BN-XK355_descha_ER_20180209122330.jpg"}}},"slides":[{"slug":"deschamps0216_1","caption":"A Hollywood Hills spec home is coming on the market for $28 million.","credit":"Simon Berlyn","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XK355_descha_M_20180209122330.jpg"}}},{"slug":"deschamps0216_2","caption":"The property has a glass-encased infinity pool.","credit":"Simon Berlyn","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XK354_descha_M_20180209122330.jpg"}}},{"slug":"deschamps0216_3","caption":"The house was developed by British property investor Brendan Deschamps and architecture and design firm Studio Dardo.","credit":"Simon Berlyn","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XK352_descha_M_20180209122329.jpg"}}},{"slug":"deschamps0216_4","caption":"The developers bought the site for $6.75 million in 2013.","credit":"Simon Berlyn","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XK350_descha_M_20180209122330.jpg"}}},{"slug":"deschamps0216_5","caption":"The Thrasher Avenue home is located in the Bird Streets section of the hills.","credit":"Simon Berlyn","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XK353_descha_M_20180209122330.jpg"}}},{"slug":"deschamps0216_6","caption":"The property has Los Angeles skyline views.","credit":"Simon Berlyn","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XK351_descha_M_20180209122330.jpg"}}},{"slug":"deschamps0216_7","caption":"The kitchen.","credit":"Simon Berlyn","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XK358_descha_M_20180209122334.jpg"}}},{"slug":"deschamps0216_8","caption":"There are five bedrooms.","credit":"Simon Berlyn","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XK356_descha_M_20180209122334.jpg"}}},{"slug":"deschamps0216_9","caption":"The home is finished in softer-looking materials such as wood and stone.","credit":"Simon Berlyn","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XK357_descha_M_20180209122335.jpg"}}},{"slug":"deschamps0217_1","caption":"The property has more than 5,000 square feet of patios and decks.","credit":"Simon Berlyn","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XK374_descha_M_20180209123354.jpg"}}},{"slug":"deschamps0217_2","caption":"An outdoor seating area.","credit":"Simon Berlyn","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XK376_descha_M_20180209123353.jpg"}}},{"slug":"deschamps0217_3","caption":"The property is known as the Cork house for a cork oak tree on the site.","credit":"Simon Berlyn","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XK375_descha_M_20180209123354.jpg"}}}],"summary":"Located in the Bird Streets section of the Hollywood Hills, this spec mansion comes with a swimming pool that’s encased in glass on three sides.","isFree":true,"isFreeForever":false,"tags":[],"categories":[],"url":"https://www.wsj.com/articles/los-angeles-mansion-with-a-glass-bottom-pool-1518535690","ebVideo":null},{"articleId":"SB11827315801849083767104584041512783586746","articleType":"Slideshow","articleSection":"Interactives","entitlements":["NEWSPLUS","PRO","WSJ-PRO-WSJ.com"],"timestamp":1518473040000,"flashline":{"type":"interactives"},"headline":"The 2018 Westminster Kennel Club Dog Show","image":{"credit":"Bess Adler for The Wall Street Journal","widths":{"120":{"w":120,"h":80,"url":"https://si.wsj.net/public/resources/images/BN-XL196_NYDOGS_Z120_20180212160806.jpg"},"350":{"w":359,"h":239,"url":"https://si.wsj.net/public/resources/images/BN-XL196_NYDOGS_E_20180212160806.jpg"},"430":{"w":359,"h":239,"url":"https://si.wsj.net/public/resources/images/BN-XL196_NYDOGS_E_20180212160806.jpg"},"620":{"w":602,"h":402,"url":"https://si.wsj.net/public/resources/images/BN-XL196_NYDOGS_ER_20180212160806.jpg"},"1260":{"w":602,"h":402,"url":"https://si.wsj.net/public/resources/images/BN-XL196_NYDOGS_ER_20180212160806.jpg"}}},"slides":[{"slug":"NYDOGSHOW_1","caption":"Pip, a Yorkie, rests between judging rounds during the 142nd Annual Westminster Kennel Club Dog Show in New York City. Breed judging and junior showmanship preliminaries took place at Piers 92/94 on Monday. Dog breeders from across the country converged with canines in tow to compete for “Best in Show.” The winner will be named Tuesday night at Madison Square Garden.","credit":"Bess Adler for The Wall Street Journal","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XL196_NYDOGS_M_20180212160806.jpg"}}},{"slug":"NYDOGSHOWa_4","caption":"Bates, the Shih Tzu gets groomed.","credit":"Bess Adler for The Wall Street Journal","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XL271_NYDOGS_M_20180212175856.jpg"}}},{"slug":"NYDOGSHOWa_2","caption":"The New York City skyline is reflected on the windows of Piers 92/94.","credit":"Bess Adler for The Wall Street Journal","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XL272_NYDOGS_M_20180212175856.jpg"}}},{"slug":"NYDOGSHOW_2","caption":"Fireball, a Pomeranian, looks up.","credit":"Bess Adler for The Wall Street Journal","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XL197_NYDOGS_M_20180212160806.jpg"}}},{"slug":"NYDOGSHOW_4","caption":"Michelle Parris, right, holds her Italian Greyhound, Clipsey.","credit":"Bess Adler for The Wall Street Journal","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XL198_NYDOGS_M_20180212160806.jpg"}}},{"slug":"NYDOGSHOW_5","caption":"Chrome, a Standard Poodle, rests before the show.","credit":"Bess Adler for The Wall Street Journal","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XL199_NYDOGS_M_20180212160806.jpg"}}},{"slug":"NYDOGSHOW_6","caption":"American Eskimo dogs compete at Piers 92/94 in New York City.","credit":"Bess Adler for The Wall Street Journal","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XL195_NYDOGS_M_20180212160806.jpg"}}},{"slug":"NYDOGSHOW_7","caption":"A poodle gets groomed before judging.","credit":"Bess Adler for The Wall Street Journal","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XL202_NYDOGS_M_20180212160810.jpg"}}},{"slug":"NYDOGSHOW_8","caption":"A Terrier and a Maltese, front, are groomed before judging.","credit":"Bess Adler for The Wall Street Journal","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XL203_NYDOGS_M_20180212160810.jpg"}}},{"slug":"NYDOGSHOW_9","caption":"Cavalier King Charles Spaniels compete at Piers 92/94.","credit":"Bess Adler for The Wall Street Journal","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XL201_NYDOGS_M_20180212160810.jpg"}}},{"slug":"NYDOGSHOW_10","caption":"Spender, a standard poodle, goes through some last minute practice with handler Lindsay Gorder at Piers 92/94 in New York City.","credit":"Bess Adler for The Wall Street Journal","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-XL200_NYDOGS_M_20180212160810.jpg"}}}],"summary":"Nearly 3,000 dogs will compete for the coveted title of best in show at the 142nd Annual Westminster Kennel Club competition, America’s most prestigious dog show, which started Monday in New York.","isFree":true,"isFreeForever":false,"tags":[" BEST IN SHOW"," DOGS"," DOG SHOW"," NEW YORK"," NEW YORK CITY","WESTMINSTER"," WESTMINSTER DOG SHOW"," WESTMINSTER KENNEL CLUB DOG SHOW"],"categories":[],"url":"https://www.wsj.com/articles/the-2018-westminster-kennel-club-dog-show-1518473051","ebVideo":null},{"articleId":"SB10296787988538644777504583630041273748944","articleType":"Slideshow","articleSection":"World","timestamp":1518516000000,"flashline":{"type":"world"},"headline":"Desperate Venezuelans Seek Foothold in Brazil’s Amazon","image":{"credit":"Tommaso Protti","widths":{"120":{"w":120,"h":80,"url":"https://si.wsj.net/public/resources/images/BN-WW887_venbra_Z120_20180108140100.jpg"},"350":{"w":359,"h":239,"url":"https://si.wsj.net/public/resources/images/BN-WW887_venbra_E_20180108140100.jpg"},"430":{"w":359,"h":239,"url":"https://si.wsj.net/public/resources/images/BN-WW887_venbra_E_20180108140100.jpg"},"620":{"w":553,"h":369,"url":"https://si.wsj.net/public/resources/images/BN-WW887_venbra_G_20180108140100.jpg"},"1260":{"w":553,"h":369,"url":"https://si.wsj.net/public/resources/images/BN-WW887_venbra_G_20180108140100.jpg"}}},"slides":[{"slug":"venbra_01","caption":"A Venezuelan boy in Boa Vista, Brazil, stares out of the house his family rents there.","credit":"Tommaso Protti","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-WW887_venbra_M_20180108140100.jpg"}}},{"slug":"venbra_02","caption":"A Venezuelan migrant walks through the town of Pacairama, Brazil, after crossing into the country from the homeland he has abandoned.","credit":"Tommaso Protti","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-WW888_venbra_M_20180108140442.jpg"}}},{"slug":"venbra_03","caption":"Indigenous Warao people, fleeing hunger in Venezuela, are living in a shelter on the outskirts of Boa Vista, Brazil, in the heart of the Amazon.","credit":"Tommaso Protti","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-WW893_venbra_M_20180108140720.jpg"}}},{"slug":"venbra_04","caption":"Deive Barrio, 24, from Caracas, walks along a Brazilian highway leading to Boa Vista, the capital in the Brazilian state of Roraima. He said hunger forced him to leave with his father and brother.\n\n.","credit":"Tommaso Protti","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-WW895_venbra_M_20180108140936.jpg"}}},{"slug":"venbra_05","caption":"Widespread hunger and deprivation forced many Warao people to leave Venezuela for a shelter on the outskirts of Boa Vista.","credit":"Tommaso Protti","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-WW896_venbra_M_20180108141133.jpg"}}},{"slug":"venbra_06","caption":"A Warao child sleeps under mosquito netting in a shelter that has become home for dozens of other indigenous people outside Boa Vista.","credit":"Tommaso Protti","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-WW903_venbra_M_20180108142949.jpg"}}},{"slug":"venbra_07","caption":"A Warao man takes in laundry outside a shelter on the outskirts of Boa Vista.","credit":"Tommaso Protti","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-WW904_venbra_M_20180108143154.jpg"}}},{"slug":"venbra_08","caption":"Warao children displaced to Brazil watching a Mel Gibson movie, “Apocalypto,” about the Mayans world being upended.","credit":"Tommaso Protti","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-WW918_venbra_M_20180108143506.jpg"}}},{"slug":"venbra_09","caption":"Some desperate Venezuelan women turn to prostitution in Boa Vista. This 26-year-old woman said she needed money to buy food and medicine for her family back home.","credit":"Tommaso Protti","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-WW921_venbra_M_20180108143914.jpg"}}},{"slug":"venbra_10","caption":"A Warao Indian girl who fled Venezuela walking in a shelter in Manaus, Brazil.","credit":"Tommaso Protti","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-WW923_venbra_M_20180108144151.jpg"}}},{"slug":"venbra_11","caption":"Venezuelan immigrants at the house they inhabit in Boa Vista, capital of the largely rural Brazilian state of Roraima.","credit":"Tommaso Protti","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-WW929_venbra_M_20180108145936.jpg"}}},{"slug":"venbra_12","caption":"BR-174, the main byway connecting Venezuela with Boa Vista, Brazil, is the route more and more Venezuelans are taking to escape deprivation in their country.","credit":"Tommaso Protti","widths":{"1260":{"w":1280,"h":853,"url":"https://si.wsj.net/public/resources/images/BN-WW942_venbra_M_20180108150500.jpg"}}}],"summary":"Driven from home by a crumbling economy, thousands of Venezuelans, including large numbers of indigenous Warao people, have ventured south to start over in northern Brazilian cities like Boa Vista. A photo essay by Tommaso Protti.","isFree":true,"isFreeForever":false,"tags":[" PHOTO ESSAY BRAZIL"," PHOTO ESSAY VENEZUELANS","VENEZUELA MIGRATION"," VENEZUELANS IN BRAZIL"],"categories":[],"url":"https://www.wsj.com/articles/desperate-venezuelans-seek-a-foothold-in-the-brazilian-amazon-1518516000","ebVideo":null},{"articleId":"SB10318148107100074903004584034602100113862","articleType":"Slideshow","articleSection":"Interactives","timestamp":1518178920000,"flashline":{"type":"interactives"},"headline":"Winter Olympics Opening Ceremony Gets Under Way in Pyeongchang","image":{"credit":"David J. Phillip/Press Pool/Associated Press","widths":{"120":{"w":120,"h":80,"url":"https://images.wsj.net/im-1974?width=120&height=80"},"350":{"w":350,"h":233,"url":"https://images.wsj.net/im-1974?width=350&height=233"},"430":{"w":430,"h":286,"url":"https://images.wsj.net/im-1974?width=430&height=286"},"620":{"w":620,"h":413,"url":"https://images.wsj.net/im-1974?width=620&height=413"},"1260":{"w":1260,"h":840,"url":"https://images.wsj.net/im-1974?width=1260&height=840"}}},"slides":[{"slug":"OPENLIVE_22","caption":"Kim Yuna lights the Olympic flame during the Opening Ceremony of the 2018 Winter Olympics.","credit":"David J. Phillip/Press Pool/Associated Press","widths":{"1260":{"w":1200,"h":858,"url":"https://si.wsj.net/public/resources/images/S1-AA962_OPENLI_OR_20180209082021.jpg"}}},{"slug":"OPENLIVE_23","caption":"Fireworks go off during the opening ceremony of the Pyeongchang 2018 Winter Olympic Games.","credit":"brendan smialowski/Agence France-Presse/Getty Images","widths":{"1260":{"w":1199,"h":828,"url":"https://si.wsj.net/public/resources/images/S1-AA968_OPENLI_OR_20180209085750.jpg"}}},{"slug":"OPENLIVE_15","caption":"North Korea's Hwang Chung Gum and South Korea's Won Yun-jong arrive during the opening ceremony.","credit":"Petr David Josek/Associated Press","widths":{"1260":{"w":1200,"h":816,"url":"https://si.wsj.net/public/resources/images/S1-AA956_OPENLI_OR_20180209073542.jpg"}}},{"slug":"OPENLIVE_17","caption":"Pita Taufatofua carries the flag of Tonga.","credit":"Jae C. Hong/Associated Press","widths":{"1260":{"w":1200,"h":798,"url":"https://si.wsj.net/public/resources/images/S1-AA958_OPENLI_OR_20180209075709.jpg"}}},{"slug":"OPENLIVE_13","caption":"Russian athletes arrive during the opening ceremony.","credit":"Natacha Pisarenko/Associated Press","widths":{"1260":{"w":1200,"h":915,"url":"https://si.wsj.net/public/resources/images/S1-AA952_OPENLI_OR_20180209071758.jpg"}}},{"slug":"OPENLIVE_10","caption":"Erin Hamlin carries the flag of the U.S. during the opening ceremony of the 2018 Winter Olympics in Pyeongchang, South Korea.","credit":"Sean Haffey/Associated Press","widths":{"1260":{"w":1200,"h":960,"url":"https://si.wsj.net/public/resources/images/S1-AA949_OPENLI_OR_20180209064843.jpg"}}},{"slug":"OPENLIVE_18","caption":"US Vice President Mike Pence (R) and his wife Karen attend the opening ceremony.","credit":"odd andersen/Agence France-Presse/Getty Images","widths":{"1260":{"w":1200,"h":800,"url":"https://si.wsj.net/public/resources/images/S1-AA959_OPENLI_OR_20180209075723.jpg"}}},{"slug":"OPENLIVE_12","caption":"Chinese former basketball player Yao Ming watches the opening.","credit":"jonathan nackstrand/Agence France-Presse/Getty Images","widths":{"1260":{"w":1199,"h":774,"url":"https://si.wsj.net/public/resources/images/S1-AA951_OPENLI_OR_20180209065846.jpg"}}},{"slug":"NKFAMILY0209_2","caption":"South Korean President Moon Jae-in (L) shakes hands with North Korean leader Kim Jong-un's sister, Yo-jong, during the opening ceremony of the 2018 PyeongChang Winter Olympics.","credit":"Yonhap News/Zuma Press","widths":{"1260":{"w":1199,"h":826,"url":"https://si.wsj.net/public/resources/images/S1-AA955_NKFAMI_OR_20180209073125.jpg"}}},{"slug":"OPENLIVE_08","caption":"Nigerian team members walk into the arena during the opening ceremony.","credit":"Jae C. Hong/Associated Press","widths":{"1260":{"w":1199,"h":822,"url":"https://si.wsj.net/public/resources/images/S1-AA947_OPENLI_OR_20180209064201.jpg"}}},{"slug":"OPENLIVE_07","caption":"Former Olympians carry the Republic of Korea.","credit":"Sean Haffey/Associated Press","widths":{"1260":{"w":1200,"h":828,"url":"https://si.wsj.net/public/resources/images/S1-AA946_OPENLI_OR_20180209063153.jpg"}}},{"slug":"OPENLIVE_06","caption":"Artists perform during the opening ceremony.","credit":"mohd rasfan/Agence France-Presse/Getty Images","widths":{"1260":{"w":1200,"h":800,"url":"https://si.wsj.net/public/resources/images/S1-AA945_OPENLI_OR_20180209063120.jpg"}}},{"slug":"OPENLIVE_05","caption":"Fireworks light the sky as the opening ceremony of the Winter Olympic Games begins.","credit":"aris messinis/Agence France-Presse/Getty Images","widths":{"1260":{"w":1200,"h":800,"url":"https://si.wsj.net/public/resources/images/S1-AA944_OPENLI_OR_20180209061431.jpg"}}},{"slug":"OPENLIVE_04","caption":"Actors perform during the opening ceremony in Pyeongchang.","credit":"kirill kudryavtsev/Agence France-Presse/Getty Images","widths":{"1260":{"w":1200,"h":800,"url":"https://si.wsj.net/public/resources/images/S1-AA943_OPENLI_OR_20180209061151.jpg"}}},{"slug":"OPENLIVE_01","caption":"Members of the North Korean delegation wave flags of the combined Koreas before the opening ceremony.","credit":"Natacha Pisarenko/Associated Press","widths":{"1260":{"w":1200,"h":760,"url":"https://si.wsj.net/public/resources/images/S1-AA940_OPENLI_OR_20180209054234.jpg"}}}],"summary":"The Winter Olympics are officially opening, as legions of athletes, officials and dignitaries gather for the opening ceremony.","isFree":true,"isFreeForever":false,"tags":[],"categories":[],"url":"https://www.wsj.com/articles/south-korea-prepares-to-dazzle-in-winter-olympics-opening-ceremony-1518174694","ebVideo":null}],"meta":{}}},"user":{"isLoggedIn":false,"vetoFree":false,"type":"nonsubscriber","canAccessPaidContent":false},"nav":{"homepages":[{"index":0,"region":"na,us","label":"U.S.","mobileURL":"https://www.wsj.com/","desktopURL":"https://www.wsj.com/","url":"https://www.wsj.com/"},{"index":1,"region":"asia","label":"Asia","mobileURL":"https://www.wsj.com/","desktopURL":"https://www.wsj.com/","url":"https://www.wsj.com/"},{"index":2,"region":"europe","label":"Europe","mobileURL":"https://www.wsj.com/","desktopURL":"https://www.wsj.com/","url":"https://www.wsj.com/"},{"index":3,"region":"asia,india","label":"India","mobileURL":"https://www.wsj.com/","desktopURL":"https://www.wsj.com/","url":"https://www.wsj.com/"},{"index":6,"region":"asia,cn","label":"中国 (China)","mobileURL":"http://cn.wsj.com","desktopURL":"http://cn.wsj.com","url":"http://cn.wsj.com"},{"index":7,"region":"asia,jp","label":"日本 (Japan)","mobileURL":"http://jp.wsj.com/","desktopURL":"http://jp.wsj.com/","url":"http://jp.wsj.com/"},{"index":8,"region":"asia,cn_hant","label":"中國 (China)","mobileURL":"http://cn.wsj.com/big5","desktopURL":"http://cn.wsj.com/big5","url":"http://cn.wsj.com/big5"}],"nav":[{"label":"Home","alternate_display_label":"U.S.","url":"https://www.wsj.com/","desktopURL":"https://www.wsj.com/","mobileURL":"https://www.wsj.com/","id":"home","index":0,"noHover":true,"categories":[]},{"id":"world","label":"World","index":10,"url":"https://www.wsj.com/news/world","desktopURL":"https://www.wsj.com/news/world","mobileURL":"https://www.wsj.com/news/world","moreIn":[{"label":"Africa","category":"Regions","index":0,"url":"https://www.wsj.com/news/types/africa-news","desktopURL":"https://www.wsj.com/news/types/africa-news","mobileURL":"https://www.wsj.com/news/types/africa-news"},{"label":"Asia","category":"Regions","index":10,"url":"https://www.wsj.com/news/types/asia-news","desktopURL":"https://www.wsj.com/news/types/asia-news","mobileURL":"https://www.wsj.com/news/types/asia-news"},{"label":"Canada","category":"Regions","index":20,"url":"https://www.wsj.com/news/types/canada-news","desktopURL":"https://www.wsj.com/news/types/canada-news","mobileURL":"https://www.wsj.com/news/types/canada-news"},{"label":"China","category":"Regions","index":30,"url":"https://www.wsj.com/news/types/china-news","desktopURL":"https://www.wsj.com/news/types/china-news","mobileURL":"https://www.wsj.com/news/types/china-news"},{"label":"Europe","category":"Regions","index":40,"url":"https://www.wsj.com/news/types/europe-news","desktopURL":"https://www.wsj.com/news/types/europe-news","mobileURL":"https://www.wsj.com/news/types/europe-news"},{"label":"Latin America","category":"Regions","index":50,"url":"https://www.wsj.com/news/types/latin-america-news","desktopURL":"https://www.wsj.com/news/types/latin-america-news","mobileURL":"https://www.wsj.com/news/types/latin-america-news"},{"label":"Middle East","category":"Regions","index":60,"url":"https://www.wsj.com/news/types/middle-east-news","desktopURL":"https://www.wsj.com/news/types/middle-east-news","mobileURL":"https://www.wsj.com/news/types/middle-east-news"},{"label":"Economy","category":"Sections","index":100,"url":"https://www.wsj.com/news/economy","desktopURL":"https://www.wsj.com/news/economy","mobileURL":"https://www.wsj.com/news/economy"},{"category":"More","label":"World Video","url":"http://www.wsj.com/video/browse/news/world-news","index":110,"hideFromMoreIn":false,"desktopURL":"http://www.wsj.com/video/browse/news/world-news","mobileURL":"http://www.wsj.com/video/browse/news/world-news"}],"categories":[{"label":"Regions","subsections":[{"label":"Africa","category":"Regions","index":0,"url":"https://www.wsj.com/news/types/africa-news","desktopURL":"https://www.wsj.com/news/types/africa-news","mobileURL":"https://www.wsj.com/news/types/africa-news"},{"label":"Asia","category":"Regions","index":10,"url":"https://www.wsj.com/news/types/asia-news","desktopURL":"https://www.wsj.com/news/types/asia-news","mobileURL":"https://www.wsj.com/news/types/asia-news"},{"label":"Canada","category":"Regions","index":20,"url":"https://www.wsj.com/news/types/canada-news","desktopURL":"https://www.wsj.com/news/types/canada-news","mobileURL":"https://www.wsj.com/news/types/canada-news"},{"label":"China","category":"Regions","index":30,"url":"https://www.wsj.com/news/types/china-news","desktopURL":"https://www.wsj.com/news/types/china-news","mobileURL":"https://www.wsj.com/news/types/china-news"},{"label":"Europe","category":"Regions","index":40,"url":"https://www.wsj.com/news/types/europe-news","desktopURL":"https://www.wsj.com/news/types/europe-news","mobileURL":"https://www.wsj.com/news/types/europe-news"},{"label":"Latin America","category":"Regions","index":50,"url":"https://www.wsj.com/news/types/latin-america-news","desktopURL":"https://www.wsj.com/news/types/latin-america-news","mobileURL":"https://www.wsj.com/news/types/latin-america-news"},{"label":"Middle East","category":"Regions","index":60,"url":"https://www.wsj.com/news/types/middle-east-news","desktopURL":"https://www.wsj.com/news/types/middle-east-news","mobileURL":"https://www.wsj.com/news/types/middle-east-news"}]},{"label":"Sections","subsections":[{"label":"Economy","category":"Sections","index":100,"url":"https://www.wsj.com/news/economy","desktopURL":"https://www.wsj.com/news/economy","mobileURL":"https://www.wsj.com/news/economy"}]},{"label":"More","subsections":[{"category":"More","label":"World Video","url":"http://www.wsj.com/video/browse/news/world-news","index":110,"hideFromMoreIn":false,"desktopURL":"http://www.wsj.com/video/browse/news/world-news","mobileURL":"http://www.wsj.com/video/browse/news/world-news"}]}]},{"id":"us","label":"U.S.","index":20,"url":"https://www.wsj.com/news/us","desktopURL":"https://www.wsj.com/news/us","mobileURL":"https://www.wsj.com/news/us","moreIn":[{"label":"Economy","category":"Sections","index":0,"url":"https://www.wsj.com/news/economy","desktopURL":"https://www.wsj.com/news/economy","mobileURL":"https://www.wsj.com/news/economy"},{"label":"Law","category":"Sections","index":10,"url":"https://www.wsj.com/news/business/law-legal","desktopURL":"https://www.wsj.com/news/business/law-legal","mobileURL":"https://www.wsj.com/news/business/law-legal"},{"category":"Sections","label":"New York","url":"http://www.wsj.com/public/page/new-york-main.html","index":20,"hideFromMoreIn":false,"desktopURL":"/public/page/new-york-main.html","mobileURL":"/public/page/new-york-main.html"},{"label":"Politics","category":"Sections","index":30,"url":"https://www.wsj.com/news/politics","desktopURL":"https://www.wsj.com/news/politics","mobileURL":"https://www.wsj.com/news/politics"},{"label":"Real Time Economics","category":"Columns & Blogs","index":40,"url":"https://blogs.wsj.com/economics/","desktopURL":"https://blogs.wsj.com/economics/","mobileURL":"https://blogs.wsj.com/economics/"},{"label":"Washington Wire","category":"Columns & Blogs","index":60,"url":"https://blogs.wsj.com/washwire/","desktopURL":"https://blogs.wsj.com/washwire/","mobileURL":"https://blogs.wsj.com/washwire/"},{"label":"Journal Report","category":"More","index":70,"url":"http://www.wsj.com/news/latest/journalreport","desktopURL":"/news/latest/journalreport","mobileURL":"/news/latest/journalreport"},{"category":"More","label":"U.S. Video","url":"http://www.wsj.com/video/browse/news/us-news","index":80,"hideFromMoreIn":false,"desktopURL":"http://www.wsj.com/video/browse/news/us-news","mobileURL":"http://www.wsj.com/video/browse/news/us-news"},{"category":"More","label":"What's News Podcast","url":"http://www.wsj.com/podcasts/latest/wsj-whats-news","index":90,"desktopURL":"http://www.wsj.com/podcasts/latest/wsj-whats-news","mobileURL":"http://www.wsj.com/podcasts/latest/wsj-whats-news"}],"categories":[{"label":"Sections","subsections":[{"label":"Economy","category":"Sections","index":0,"url":"https://www.wsj.com/news/economy","desktopURL":"https://www.wsj.com/news/economy","mobileURL":"https://www.wsj.com/news/economy"},{"label":"Law","category":"Sections","index":10,"url":"https://www.wsj.com/news/business/law-legal","desktopURL":"https://www.wsj.com/news/business/law-legal","mobileURL":"https://www.wsj.com/news/business/law-legal"},{"category":"Sections","label":"New York","url":"http://www.wsj.com/public/page/new-york-main.html","index":20,"hideFromMoreIn":false,"desktopURL":"/public/page/new-york-main.html","mobileURL":"/public/page/new-york-main.html"},{"label":"Politics","category":"Sections","index":30,"url":"https://www.wsj.com/news/politics","desktopURL":"https://www.wsj.com/news/politics","mobileURL":"https://www.wsj.com/news/politics"}]},{"label":"Columns & Blogs","subsections":[{"label":"Real Time Economics","category":"Columns & Blogs","index":40,"url":"https://blogs.wsj.com/economics/","desktopURL":"https://blogs.wsj.com/economics/","mobileURL":"https://blogs.wsj.com/economics/"},{"label":"Washington Wire","category":"Columns & Blogs","index":60,"url":"https://blogs.wsj.com/washwire/","desktopURL":"https://blogs.wsj.com/washwire/","mobileURL":"https://blogs.wsj.com/washwire/"}]},{"label":"More","subsections":[{"label":"Journal Report","category":"More","index":70,"url":"http://www.wsj.com/news/latest/journalreport","desktopURL":"/news/latest/journalreport","mobileURL":"/news/latest/journalreport"},{"category":"More","label":"U.S. Video","url":"http://www.wsj.com/video/browse/news/us-news","index":80,"hideFromMoreIn":false,"desktopURL":"http://www.wsj.com/video/browse/news/us-news","mobileURL":"http://www.wsj.com/video/browse/news/us-news"},{"category":"More","label":"What's News Podcast","url":"http://www.wsj.com/podcasts/latest/wsj-whats-news","index":90,"desktopURL":"http://www.wsj.com/podcasts/latest/wsj-whats-news","mobileURL":"http://www.wsj.com/podcasts/latest/wsj-whats-news"}]}]},{"id":"politics","label":"Politics","index":30,"url":"https://www.wsj.com/news/politics","desktopURL":"https://www.wsj.com/news/politics","mobileURL":"https://www.wsj.com/news/politics","moreIn":[{"label":"Washington Wire","category":"Blogs","index":10,"url":"https://blogs.wsj.com/washwire/","desktopURL":"https://blogs.wsj.com/washwire/","mobileURL":"https://blogs.wsj.com/washwire/"},{"category":"More","label":"Politics Video","url":"http://www.wsj.com/video/browse/news/politics-and-campaign","index":20,"hideFromMoreIn":false,"desktopURL":"http://www.wsj.com/video/browse/news/politics-and-campaign","mobileURL":"http://www.wsj.com/video/browse/news/politics-and-campaign"},{"category":"More","label":"WSJ/NBC News Poll","url":"http://graphics.wsj.com/wsjnbcpoll/","index":30,"hideFromMoreIn":false,"desktopURL":"http://graphics.wsj.com/wsjnbcpoll/","mobileURL":"http://graphics.wsj.com/wsjnbcpoll/"}],"categories":[{"label":"Blogs","subsections":[{"label":"Washington Wire","category":"Blogs","index":10,"url":"https://blogs.wsj.com/washwire/","desktopURL":"https://blogs.wsj.com/washwire/","mobileURL":"https://blogs.wsj.com/washwire/"}]},{"label":"More","subsections":[{"category":"More","label":"Politics Video","url":"http://www.wsj.com/video/browse/news/politics-and-campaign","index":20,"hideFromMoreIn":false,"desktopURL":"http://www.wsj.com/video/browse/news/politics-and-campaign","mobileURL":"http://www.wsj.com/video/browse/news/politics-and-campaign"},{"category":"More","label":"WSJ/NBC News Poll","url":"http://graphics.wsj.com/wsjnbcpoll/","index":30,"hideFromMoreIn":false,"desktopURL":"http://graphics.wsj.com/wsjnbcpoll/","mobileURL":"http://graphics.wsj.com/wsjnbcpoll/"}]}]},{"id":"economy","label":"Economy","index":40,"url":"https://www.wsj.com/news/economy","desktopURL":"https://www.wsj.com/news/economy","mobileURL":"https://www.wsj.com/news/economy","moreIn":[{"label":"Real Time Economics","category":"Blogs","index":0,"url":"https://blogs.wsj.com/economics/","desktopURL":"https://blogs.wsj.com/economics/","mobileURL":"https://blogs.wsj.com/economics/"},{"category":"More","label":"Economic Forecasting Survey","url":"http://projects.wsj.com/econforecast/","index":10,"hideFromMoreIn":false,"desktopURL":"http://projects.wsj.com/econforecast/","mobileURL":"http://projects.wsj.com/econforecast/"},{"label":"Economy Video","category":"More","index":30,"url":"http://www.wsj.com/video/browse/business/economy","desktopURL":"http://www.wsj.com/video/browse/business/economy","mobileURL":"http://www.wsj.com/video/browse/business/economy"}],"categories":[{"label":"Blogs","subsections":[{"label":"Real Time Economics","category":"Blogs","index":0,"url":"https://blogs.wsj.com/economics/","desktopURL":"https://blogs.wsj.com/economics/","mobileURL":"https://blogs.wsj.com/economics/"}]},{"label":"More","subsections":[{"category":"More","label":"Economic Forecasting Survey","url":"http://projects.wsj.com/econforecast/","index":10,"hideFromMoreIn":false,"desktopURL":"http://projects.wsj.com/econforecast/","mobileURL":"http://projects.wsj.com/econforecast/"},{"label":"Economy Video","category":"More","index":30,"url":"http://www.wsj.com/video/browse/business/economy","desktopURL":"http://www.wsj.com/video/browse/business/economy","mobileURL":"http://www.wsj.com/video/browse/business/economy"}]}]},{"id":"business","label":"Business","index":50,"url":"https://www.wsj.com/news/business","desktopURL":"https://www.wsj.com/news/business","mobileURL":"https://www.wsj.com/news/business","moreIn":[{"label":"Management","category":"Sections","index":0,"url":"https://www.wsj.com/news/business/management","desktopURL":"https://www.wsj.com/news/business/management","mobileURL":"https://www.wsj.com/news/business/management"},{"label":"Tech/WSJ.D","category":"Sections","index":10,"url":"https://www.wsj.com/news/technology","desktopURL":"https://www.wsj.com/news/technology","mobileURL":"https://www.wsj.com/news/technology"},{"label":"Aerospace & Defense","category":"Industries","index":20,"url":"https://www.wsj.com/news/business/defense-aerospace","desktopURL":"https://www.wsj.com/news/business/defense-aerospace","mobileURL":"https://www.wsj.com/news/business/defense-aerospace"},{"label":"Autos & Transportation","category":"Industries","index":30,"url":"https://www.wsj.com/news/business/transportation","desktopURL":"https://www.wsj.com/news/business/transportation","mobileURL":"https://www.wsj.com/news/business/transportation"},{"label":"Commercial Real Estate","category":"Industries","index":40,"url":"http://www.wsj.com/public/page/news-real-estate-commercial.html","desktopURL":"http://www.wsj.com/public/page/news-real-estate-commercial.html","mobileURL":"http://www.wsj.com/public/page/news-real-estate-commercial.html"},{"label":"Consumer Products","category":"Industries","index":50,"url":"https://www.wsj.com/news/business/consumer-products","desktopURL":"https://www.wsj.com/news/business/consumer-products","mobileURL":"https://www.wsj.com/news/business/consumer-products"},{"label":"Energy","category":"Industries","index":60,"url":"https://www.wsj.com/news/business/energy-oil-gas","desktopURL":"https://www.wsj.com/news/business/energy-oil-gas","mobileURL":"https://www.wsj.com/news/business/energy-oil-gas"},{"label":"Entrepreneurship","category":"Industries","index":70,"url":"https://www.wsj.com/news/business/small-business-marketing","desktopURL":"https://www.wsj.com/news/business/small-business-marketing","mobileURL":"https://www.wsj.com/news/business/small-business-marketing"},{"label":"Financial Services","category":"Industries","index":80,"url":"https://www.wsj.com/news/business/financial-services","desktopURL":"https://www.wsj.com/news/business/financial-services","mobileURL":"https://www.wsj.com/news/business/financial-services"},{"label":"Food & Services","category":"Industries","index":90,"url":"https://www.wsj.com/news/business/food-tobacco","desktopURL":"https://www.wsj.com/news/business/food-tobacco","mobileURL":"https://www.wsj.com/news/business/food-tobacco"},{"label":"Health Care","category":"Industries","index":100,"url":"https://www.wsj.com/news/business/health-industry","desktopURL":"https://www.wsj.com/news/business/health-industry","mobileURL":"https://www.wsj.com/news/business/health-industry"},{"label":"Hospitality","category":"Industries","index":110,"url":"https://www.wsj.com/news/business/hotels-casinos","desktopURL":"https://www.wsj.com/news/business/hotels-casinos","mobileURL":"https://www.wsj.com/news/business/hotels-casinos"},{"label":"Law","category":"Industries","index":120,"url":"https://www.wsj.com/news/business/law-legal","desktopURL":"https://www.wsj.com/news/business/law-legal","mobileURL":"https://www.wsj.com/news/business/law-legal"},{"label":"Manufacturing","category":"Industries","index":130,"url":"https://www.wsj.com/news/business/industrial-services","desktopURL":"https://www.wsj.com/news/business/industrial-services","mobileURL":"https://www.wsj.com/news/business/industrial-services"},{"label":"Media & Marketing","category":"Industries","index":140,"url":"https://www.wsj.com/news/business/media-marketing","desktopURL":"https://www.wsj.com/news/business/media-marketing","mobileURL":"https://www.wsj.com/news/business/media-marketing"},{"label":"Natural Resources","category":"Industries","index":150,"url":"https://www.wsj.com/news/business/natural-resources","desktopURL":"https://www.wsj.com/news/business/natural-resources","mobileURL":"https://www.wsj.com/news/business/natural-resources"},{"label":"Retail","category":"Industries","index":160,"url":"https://www.wsj.com/news/business/retail-industry","desktopURL":"https://www.wsj.com/news/business/retail-industry","mobileURL":"https://www.wsj.com/news/business/retail-industry"},{"label":"CFO Journal","category":"C-Suite","index":170,"url":"https://www.wsj.com/news/cfo-journal","desktopURL":"https://www.wsj.com/news/cfo-journal","mobileURL":"https://www.wsj.com/news/cfo-journal"},{"label":"CIO Journal","category":"C-Suite","index":180,"url":"https://www.wsj.com/news/cio-journal","desktopURL":"https://www.wsj.com/news/cio-journal","mobileURL":"https://www.wsj.com/news/cio-journal"},{"label":"CMO Today","category":"C-Suite","index":190,"url":"https://www.wsj.com/news/cmo-today","desktopURL":"https://www.wsj.com/news/cmo-today","mobileURL":"https://www.wsj.com/news/cmo-today"},{"label":"Logistics Report","category":"C-Suite","index":200,"url":"https://www.wsj.com/news/logistics-report","desktopURL":"https://www.wsj.com/news/logistics-report","mobileURL":"https://www.wsj.com/news/logistics-report"},{"label":"Risk & Compliance","category":"C-Suite","index":210,"url":"https://www.wsj.com/news/risk-compliance-journal","desktopURL":"https://www.wsj.com/news/risk-compliance-journal","mobileURL":"https://www.wsj.com/news/risk-compliance-journal"},{"label":"Heard on the Street","category":"Columns","index":230,"url":"https://www.wsj.com/news/heard-on-the-street","desktopURL":"https://www.wsj.com/news/heard-on-the-street","mobileURL":"https://www.wsj.com/news/heard-on-the-street"},{"category":"More","label":"Business Video","url":"http://www.wsj.com/video/browse/business","index":240,"hideFromMoreIn":false,"desktopURL":"http://www.wsj.com/video/browse/business","mobileURL":"http://www.wsj.com/video/browse/business"},{"label":"Journal Report","category":"More","index":250,"url":"http://www.wsj.com/news/latest/journalreport","desktopURL":"/news/latest/journalreport","mobileURL":"/news/latest/journalreport"},{"category":"More","label":"Business Podcast","url":"http://www.wsj.com/podcasts/latest/wsj-whats-news","index":260,"desktopURL":"http://www.wsj.com/podcasts/latest/wsj-whats-news","mobileURL":"http://www.wsj.com/podcasts/latest/wsj-whats-news"}],"categories":[{"label":"Sections","subsections":[{"label":"Management","category":"Sections","index":0,"url":"https://www.wsj.com/news/business/management","desktopURL":"https://www.wsj.com/news/business/management","mobileURL":"https://www.wsj.com/news/business/management"},{"label":"Tech/WSJ.D","category":"Sections","index":10,"url":"https://www.wsj.com/news/technology","desktopURL":"https://www.wsj.com/news/technology","mobileURL":"https://www.wsj.com/news/technology"}]},{"label":"Industries","subsections":[{"label":"Aerospace & Defense","category":"Industries","index":20,"url":"https://www.wsj.com/news/business/defense-aerospace","desktopURL":"https://www.wsj.com/news/business/defense-aerospace","mobileURL":"https://www.wsj.com/news/business/defense-aerospace"},{"label":"Autos & Transportation","category":"Industries","index":30,"url":"https://www.wsj.com/news/business/transportation","desktopURL":"https://www.wsj.com/news/business/transportation","mobileURL":"https://www.wsj.com/news/business/transportation"},{"label":"Commercial Real Estate","category":"Industries","index":40,"url":"http://www.wsj.com/public/page/news-real-estate-commercial.html","desktopURL":"http://www.wsj.com/public/page/news-real-estate-commercial.html","mobileURL":"http://www.wsj.com/public/page/news-real-estate-commercial.html"},{"label":"Consumer Products","category":"Industries","index":50,"url":"https://www.wsj.com/news/business/consumer-products","desktopURL":"https://www.wsj.com/news/business/consumer-products","mobileURL":"https://www.wsj.com/news/business/consumer-products"},{"label":"Energy","category":"Industries","index":60,"url":"https://www.wsj.com/news/business/energy-oil-gas","desktopURL":"https://www.wsj.com/news/business/energy-oil-gas","mobileURL":"https://www.wsj.com/news/business/energy-oil-gas"},{"label":"Entrepreneurship","category":"Industries","index":70,"url":"https://www.wsj.com/news/business/small-business-marketing","desktopURL":"https://www.wsj.com/news/business/small-business-marketing","mobileURL":"https://www.wsj.com/news/business/small-business-marketing"},{"label":"Financial Services","category":"Industries","index":80,"url":"https://www.wsj.com/news/business/financial-services","desktopURL":"https://www.wsj.com/news/business/financial-services","mobileURL":"https://www.wsj.com/news/business/financial-services"},{"label":"Food & Services","category":"Industries","index":90,"url":"https://www.wsj.com/news/business/food-tobacco","desktopURL":"https://www.wsj.com/news/business/food-tobacco","mobileURL":"https://www.wsj.com/news/business/food-tobacco"},{"label":"Health Care","category":"Industries","index":100,"url":"https://www.wsj.com/news/business/health-industry","desktopURL":"https://www.wsj.com/news/business/health-industry","mobileURL":"https://www.wsj.com/news/business/health-industry"},{"label":"Hospitality","category":"Industries","index":110,"url":"https://www.wsj.com/news/business/hotels-casinos","desktopURL":"https://www.wsj.com/news/business/hotels-casinos","mobileURL":"https://www.wsj.com/news/business/hotels-casinos"},{"label":"Law","category":"Industries","index":120,"url":"https://www.wsj.com/news/business/law-legal","desktopURL":"https://www.wsj.com/news/business/law-legal","mobileURL":"https://www.wsj.com/news/business/law-legal"},{"label":"Manufacturing","category":"Industries","index":130,"url":"https://www.wsj.com/news/business/industrial-services","desktopURL":"https://www.wsj.com/news/business/industrial-services","mobileURL":"https://www.wsj.com/news/business/industrial-services"},{"label":"Media & Marketing","category":"Industries","index":140,"url":"https://www.wsj.com/news/business/media-marketing","desktopURL":"https://www.wsj.com/news/business/media-marketing","mobileURL":"https://www.wsj.com/news/business/media-marketing"},{"label":"Natural Resources","category":"Industries","index":150,"url":"https://www.wsj.com/news/business/natural-resources","desktopURL":"https://www.wsj.com/news/business/natural-resources","mobileURL":"https://www.wsj.com/news/business/natural-resources"},{"label":"Retail","category":"Industries","index":160,"url":"https://www.wsj.com/news/business/retail-industry","desktopURL":"https://www.wsj.com/news/business/retail-industry","mobileURL":"https://www.wsj.com/news/business/retail-industry"}]},{"label":"C-Suite","subsections":[{"label":"CFO Journal","category":"C-Suite","index":170,"url":"https://www.wsj.com/news/cfo-journal","desktopURL":"https://www.wsj.com/news/cfo-journal","mobileURL":"https://www.wsj.com/news/cfo-journal"},{"label":"CIO Journal","category":"C-Suite","index":180,"url":"https://www.wsj.com/news/cio-journal","desktopURL":"https://www.wsj.com/news/cio-journal","mobileURL":"https://www.wsj.com/news/cio-journal"},{"label":"CMO Today","category":"C-Suite","index":190,"url":"https://www.wsj.com/news/cmo-today","desktopURL":"https://www.wsj.com/news/cmo-today","mobileURL":"https://www.wsj.com/news/cmo-today"},{"label":"Logistics Report","category":"C-Suite","index":200,"url":"https://www.wsj.com/news/logistics-report","desktopURL":"https://www.wsj.com/news/logistics-report","mobileURL":"https://www.wsj.com/news/logistics-report"},{"label":"Risk & Compliance","category":"C-Suite","index":210,"url":"https://www.wsj.com/news/risk-compliance-journal","desktopURL":"https://www.wsj.com/news/risk-compliance-journal","mobileURL":"https://www.wsj.com/news/risk-compliance-journal"}]},{"label":"Columns","subsections":[{"label":"Heard on the Street","category":"Columns","index":230,"url":"https://www.wsj.com/news/heard-on-the-street","desktopURL":"https://www.wsj.com/news/heard-on-the-street","mobileURL":"https://www.wsj.com/news/heard-on-the-street"}]},{"label":"More","subsections":[{"category":"More","label":"Business Video","url":"http://www.wsj.com/video/browse/business","index":240,"hideFromMoreIn":false,"desktopURL":"http://www.wsj.com/video/browse/business","mobileURL":"http://www.wsj.com/video/browse/business"},{"label":"Journal Report","category":"More","index":250,"url":"http://www.wsj.com/news/latest/journalreport","desktopURL":"/news/latest/journalreport","mobileURL":"/news/latest/journalreport"},{"category":"More","label":"Business Podcast","url":"http://www.wsj.com/podcasts/latest/wsj-whats-news","index":260,"desktopURL":"http://www.wsj.com/podcasts/latest/wsj-whats-news","mobileURL":"http://www.wsj.com/podcasts/latest/wsj-whats-news"}]}]},{"id":"tech","label":"Tech","index":60,"url":"https://www.wsj.com/news/technology","desktopURL":"https://www.wsj.com/news/technology","mobileURL":"https://www.wsj.com/news/technology","moreIn":[{"label":"CIO Journal","category":"Sections","index":0,"url":"https://www.wsj.com/news/cio-journal","desktopURL":"https://www.wsj.com/news/cio-journal","mobileURL":"https://www.wsj.com/news/cio-journal"},{"label":"Christopher Mims","category":"Columns & Blogs","index":20,"url":"https://www.wsj.com/news/author/8003","desktopURL":"https://www.wsj.com/news/author/8003","mobileURL":"https://www.wsj.com/news/author/8003"},{"label":"Joanna Stern","category":"Columns & Blogs","index":30,"url":"https://www.wsj.com/news/author/7872","desktopURL":"https://www.wsj.com/news/author/7872","mobileURL":"https://www.wsj.com/news/author/7872"},{"label":"Li Yuan","category":"Columns & Blogs","index":40,"url":"https://www.wsj.com/news/author/8315","desktopURL":"https://www.wsj.com/news/author/8315","mobileURL":"https://www.wsj.com/news/author/8315"},{"category":"More","label":"Billion Dollar Startup Club","url":"http://graphics.wsj.com/billion-dollar-club/","index":50,"hideFromMoreIn":false,"desktopURL":"http://graphics.wsj.com/billion-dollar-club/","mobileURL":"http://graphics.wsj.com/billion-dollar-club/"},{"category":"More","label":"Tech Video","url":"http://www.wsj.com/video/browse/tech","index":60,"desktopURL":"http://www.wsj.com/video/browse/tech","mobileURL":"http://www.wsj.com/video/browse/tech"},{"category":"More","label":"Tech Podcast","url":"http://www.wsj.com/podcasts/latest/wsj-tech-news-briefing","index":70,"desktopURL":"http://www.wsj.com/podcasts/latest/wsj-tech-news-briefing","mobileURL":"http://www.wsj.com/podcasts/latest/wsj-tech-news-briefing"},{"label":"Startup Stock Tracker","category":"More","index":80,"url":"http://graphics.wsj.com/tech-startup-stocks-to-watch/","desktopURL":"http://graphics.wsj.com/tech-startup-stocks-to-watch/","mobileURL":"http://graphics.wsj.com/tech-startup-stocks-to-watch/"}],"categories":[{"label":"Sections","subsections":[{"label":"CIO Journal","category":"Sections","index":0,"url":"https://www.wsj.com/news/cio-journal","desktopURL":"https://www.wsj.com/news/cio-journal","mobileURL":"https://www.wsj.com/news/cio-journal"}]},{"label":"Columns & Blogs","subsections":[{"label":"Christopher Mims","category":"Columns & Blogs","index":20,"url":"https://www.wsj.com/news/author/8003","desktopURL":"https://www.wsj.com/news/author/8003","mobileURL":"https://www.wsj.com/news/author/8003"},{"label":"Joanna Stern","category":"Columns & Blogs","index":30,"url":"https://www.wsj.com/news/author/7872","desktopURL":"https://www.wsj.com/news/author/7872","mobileURL":"https://www.wsj.com/news/author/7872"},{"label":"Li Yuan","category":"Columns & Blogs","index":40,"url":"https://www.wsj.com/news/author/8315","desktopURL":"https://www.wsj.com/news/author/8315","mobileURL":"https://www.wsj.com/news/author/8315"}]},{"label":"More","subsections":[{"category":"More","label":"Billion Dollar Startup Club","url":"http://graphics.wsj.com/billion-dollar-club/","index":50,"hideFromMoreIn":false,"desktopURL":"http://graphics.wsj.com/billion-dollar-club/","mobileURL":"http://graphics.wsj.com/billion-dollar-club/"},{"category":"More","label":"Tech Video","url":"http://www.wsj.com/video/browse/tech","index":60,"desktopURL":"http://www.wsj.com/video/browse/tech","mobileURL":"http://www.wsj.com/video/browse/tech"},{"category":"More","label":"Tech Podcast","url":"http://www.wsj.com/podcasts/latest/wsj-tech-news-briefing","index":70,"desktopURL":"http://www.wsj.com/podcasts/latest/wsj-tech-news-briefing","mobileURL":"http://www.wsj.com/podcasts/latest/wsj-tech-news-briefing"},{"label":"Startup Stock Tracker","category":"More","index":80,"url":"http://graphics.wsj.com/tech-startup-stocks-to-watch/","desktopURL":"http://graphics.wsj.com/tech-startup-stocks-to-watch/","mobileURL":"http://graphics.wsj.com/tech-startup-stocks-to-watch/"}]}]},{"id":"markets","label":"Markets","index":70,"url":"https://www.wsj.com/news/markets","desktopURL":"https://www.wsj.com/news/markets","mobileURL":"https://www.wsj.com/news/markets","moreIn":[{"label":"Bonds","category":"Sections","index":0,"url":"http://www.wsj.com/news/markets/bonds","desktopURL":"/news/markets/bonds","mobileURL":"/news/markets/bonds"},{"label":"Commercial Real Estate","category":"Sections","index":10,"url":"http://www.wsj.com/public/page/news-real-estate-commercial.html","desktopURL":"/public/page/news-real-estate-commercial.html","mobileURL":"/public/page/news-real-estate-commercial.html"},{"label":"Commodities & Futures","category":"Sections","index":20,"url":"https://www.wsj.com/news/markets/oil-gold-commodities-futures","desktopURL":"https://www.wsj.com/news/markets/oil-gold-commodities-futures","mobileURL":"https://www.wsj.com/news/markets/oil-gold-commodities-futures"},{"category":"Sections","label":"Currencies","url":"http://www.wsj.com/public/page/news-currency-currencies-trading.html","index":30,"hideFromMoreIn":false,"desktopURL":"/public/page/news-currency-currencies-trading.html","mobileURL":"/public/page/news-currency-currencies-trading.html"},{"category":"Sections","label":"Deals","url":"http://www.wsj.com/public/page/news-financial-markets-deals.html","index":40,"hideFromMoreIn":false,"desktopURL":"/public/page/news-financial-markets-deals.html","mobileURL":"/public/page/news-financial-markets-deals.html"},{"category":"Sections","label":"Financial Services","url":"http://www.wsj.com/public/page/news-wall-street.html","index":50,"desktopURL":"/public/page/news-wall-street.html","mobileURL":"/public/page/news-wall-street.html"},{"category":"Sections","label":"Funds","url":"http://www.wsj.com/public/page/etf-mutual-funds.html","index":60,"hideFromMoreIn":false,"desktopURL":"/public/page/etf-mutual-funds.html","mobileURL":"/public/page/etf-mutual-funds.html"},{"label":"Stocks","category":"Sections","index":70,"url":"http://www.wsj.com/news/markets/stocks","desktopURL":"/news/markets/stocks","mobileURL":"/news/markets/stocks"},{"label":"Your Money","category":"Sections","index":80,"url":"https://www.wsj.com/news/column/Your%20Money","desktopURL":"https://www.wsj.com/news/column/Your%20Money","mobileURL":"https://www.wsj.com/news/column/Your%20Money"},{"label":"Heard on the Street","category":"Columns & Blogs","index":90,"url":"https://www.wsj.com/news/heard-on-the-street","desktopURL":"https://www.wsj.com/news/heard-on-the-street","mobileURL":"https://www.wsj.com/news/heard-on-the-street"},{"label":"MoneyBeat","category":"Columns & Blogs","index":100,"url":"https://blogs.wsj.com/moneybeat/","desktopURL":"https://blogs.wsj.com/moneybeat/","mobileURL":"https://blogs.wsj.com/moneybeat/"},{"category":"Columns & Blogs","label":"Wealth Adviser","url":"http://www.wsj.com/public/page/wealth-management-journal.html","index":110,"hideFromMoreIn":false,"desktopURL":"/public/page/wealth-management-journal.html","mobileURL":"/public/page/wealth-management-journal.html"},{"label":"CFO Journal","category":"More","index":120,"url":"https://www.wsj.com/news/cfo-journal","desktopURL":"https://www.wsj.com/news/cfo-journal","mobileURL":"https://www.wsj.com/news/cfo-journal"},{"label":"Journal Report","category":"More","index":130,"url":"http://www.wsj.com/news/latest/journalreport","desktopURL":"/news/latest/journalreport","mobileURL":"/news/latest/journalreport"},{"category":"More","label":"Market Data","url":"http://markets.wsj.com/us","index":140,"hideFromMoreIn":false,"desktopURL":"http://markets.wsj.com/us","mobileURL":"http://markets.wsj.com/us"},{"category":"More","label":"Markets Video","url":"http://www.wsj.com/video/browse/business/markets","index":150,"hideFromMoreIn":false,"desktopURL":"http://www.wsj.com/video/browse/business/markets","mobileURL":"http://www.wsj.com/video/browse/business/markets"},{"label":"Ahead of the Tape","category":"Columns & Blogs","index":160,"url":"https://www.wsj.com/news/types/ahead-of-the-tape","desktopURL":"https://www.wsj.com/news/types/ahead-of-the-tape","mobileURL":"https://www.wsj.com/news/types/ahead-of-the-tape"},{"category":"More","label":"Markets Podcast","url":"http://www.wsj.com/podcasts/latest/wsj-your-money-matters","index":170,"desktopURL":"http://www.wsj.com/podcasts/latest/wsj-your-money-matters","mobileURL":"http://www.wsj.com/podcasts/latest/wsj-your-money-matters"},{"category":"More","label":"MoneyBeat Podcast","url":"http://www.wsj.com/podcasts/latest/wsj-moneybeat","index":180,"desktopURL":"http://www.wsj.com/podcasts/latest/wsj-moneybeat","mobileURL":"http://www.wsj.com/podcasts/latest/wsj-moneybeat"},{"label":"Secrets of Wealthy Women Podcast","category":"More","index":200,"url":"http://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women","desktopURL":"http://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women","mobileURL":"http://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women"}],"categories":[{"label":"Sections","subsections":[{"label":"Bonds","category":"Sections","index":0,"url":"http://www.wsj.com/news/markets/bonds","desktopURL":"/news/markets/bonds","mobileURL":"/news/markets/bonds"},{"label":"Commercial Real Estate","category":"Sections","index":10,"url":"http://www.wsj.com/public/page/news-real-estate-commercial.html","desktopURL":"/public/page/news-real-estate-commercial.html","mobileURL":"/public/page/news-real-estate-commercial.html"},{"label":"Commodities & Futures","category":"Sections","index":20,"url":"https://www.wsj.com/news/markets/oil-gold-commodities-futures","desktopURL":"https://www.wsj.com/news/markets/oil-gold-commodities-futures","mobileURL":"https://www.wsj.com/news/markets/oil-gold-commodities-futures"},{"category":"Sections","label":"Currencies","url":"http://www.wsj.com/public/page/news-currency-currencies-trading.html","index":30,"hideFromMoreIn":false,"desktopURL":"/public/page/news-currency-currencies-trading.html","mobileURL":"/public/page/news-currency-currencies-trading.html"},{"category":"Sections","label":"Deals","url":"http://www.wsj.com/public/page/news-financial-markets-deals.html","index":40,"hideFromMoreIn":false,"desktopURL":"/public/page/news-financial-markets-deals.html","mobileURL":"/public/page/news-financial-markets-deals.html"},{"category":"Sections","label":"Financial Services","url":"http://www.wsj.com/public/page/news-wall-street.html","index":50,"desktopURL":"/public/page/news-wall-street.html","mobileURL":"/public/page/news-wall-street.html"},{"category":"Sections","label":"Funds","url":"http://www.wsj.com/public/page/etf-mutual-funds.html","index":60,"hideFromMoreIn":false,"desktopURL":"/public/page/etf-mutual-funds.html","mobileURL":"/public/page/etf-mutual-funds.html"},{"label":"Stocks","category":"Sections","index":70,"url":"http://www.wsj.com/news/markets/stocks","desktopURL":"/news/markets/stocks","mobileURL":"/news/markets/stocks"},{"label":"Your Money","category":"Sections","index":80,"url":"https://www.wsj.com/news/column/Your%20Money","desktopURL":"https://www.wsj.com/news/column/Your%20Money","mobileURL":"https://www.wsj.com/news/column/Your%20Money"}]},{"label":"Columns & Blogs","subsections":[{"label":"Heard on the Street","category":"Columns & Blogs","index":90,"url":"https://www.wsj.com/news/heard-on-the-street","desktopURL":"https://www.wsj.com/news/heard-on-the-street","mobileURL":"https://www.wsj.com/news/heard-on-the-street"},{"label":"MoneyBeat","category":"Columns & Blogs","index":100,"url":"https://blogs.wsj.com/moneybeat/","desktopURL":"https://blogs.wsj.com/moneybeat/","mobileURL":"https://blogs.wsj.com/moneybeat/"},{"category":"Columns & Blogs","label":"Wealth Adviser","url":"http://www.wsj.com/public/page/wealth-management-journal.html","index":110,"hideFromMoreIn":false,"desktopURL":"/public/page/wealth-management-journal.html","mobileURL":"/public/page/wealth-management-journal.html"},{"label":"Ahead of the Tape","category":"Columns & Blogs","index":160,"url":"https://www.wsj.com/news/types/ahead-of-the-tape","desktopURL":"https://www.wsj.com/news/types/ahead-of-the-tape","mobileURL":"https://www.wsj.com/news/types/ahead-of-the-tape"}]},{"label":"More","subsections":[{"label":"CFO Journal","category":"More","index":120,"url":"https://www.wsj.com/news/cfo-journal","desktopURL":"https://www.wsj.com/news/cfo-journal","mobileURL":"https://www.wsj.com/news/cfo-journal"},{"label":"Journal Report","category":"More","index":130,"url":"http://www.wsj.com/news/latest/journalreport","desktopURL":"/news/latest/journalreport","mobileURL":"/news/latest/journalreport"},{"category":"More","label":"Market Data","url":"http://markets.wsj.com/us","index":140,"hideFromMoreIn":false,"desktopURL":"http://markets.wsj.com/us","mobileURL":"http://markets.wsj.com/us"},{"category":"More","label":"Markets Video","url":"http://www.wsj.com/video/browse/business/markets","index":150,"hideFromMoreIn":false,"desktopURL":"http://www.wsj.com/video/browse/business/markets","mobileURL":"http://www.wsj.com/video/browse/business/markets"},{"category":"More","label":"Markets Podcast","url":"http://www.wsj.com/podcasts/latest/wsj-your-money-matters","index":170,"desktopURL":"http://www.wsj.com/podcasts/latest/wsj-your-money-matters","mobileURL":"http://www.wsj.com/podcasts/latest/wsj-your-money-matters"},{"category":"More","label":"MoneyBeat Podcast","url":"http://www.wsj.com/podcasts/latest/wsj-moneybeat","index":180,"desktopURL":"http://www.wsj.com/podcasts/latest/wsj-moneybeat","mobileURL":"http://www.wsj.com/podcasts/latest/wsj-moneybeat"},{"label":"Secrets of Wealthy Women Podcast","category":"More","index":200,"url":"http://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women","desktopURL":"http://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women","mobileURL":"http://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women"}]}]},{"id":"opinion","label":"Opinion","index":80,"url":"https://www.wsj.com/news/opinion","desktopURL":"https://www.wsj.com/news/opinion","mobileURL":"https://www.wsj.com/news/opinion","moreIn":[{"label":"James Freeman","category":"Columnists","index":15,"url":"https://www.wsj.com/news/author/5461","desktopURL":"https://www.wsj.com/news/author/5461","mobileURL":"https://www.wsj.com/news/author/5461"},{"label":"William A. Galston","category":"Columnists","index":20,"url":"https://www.wsj.com/news/author/7800","desktopURL":"https://www.wsj.com/news/author/7800","mobileURL":"https://www.wsj.com/news/author/7800"},{"label":"Daniel Henninger","category":"Columnists","index":25,"url":"https://www.wsj.com/news/author/5468","desktopURL":"https://www.wsj.com/news/author/5468","mobileURL":"https://www.wsj.com/news/author/5468"},{"label":"Holman W. Jenkins","category":"Columnists","index":30,"url":"https://www.wsj.com/news/author/5469","desktopURL":"https://www.wsj.com/news/author/5469","mobileURL":"https://www.wsj.com/news/author/5469"},{"label":"William McGurn","category":"Columnists","index":35,"url":"https://www.wsj.com/news/author/5470","desktopURL":"https://www.wsj.com/news/author/5470","mobileURL":"https://www.wsj.com/news/author/5470"},{"label":"Peggy Noonan","category":"Columnists","index":40,"url":"https://www.wsj.com/news/author/5356","desktopURL":"https://www.wsj.com/news/author/5356","mobileURL":"https://www.wsj.com/news/author/5356"},{"label":"Mary Anastasia O'Grady","category":"Columnists","index":45,"url":"https://www.wsj.com/news/author/8590","desktopURL":"https://www.wsj.com/news/author/8590","mobileURL":"https://www.wsj.com/news/author/8590"},{"label":"Jason Riley","category":"Columnists","index":50,"url":"https://www.wsj.com/news/author/5678","desktopURL":"https://www.wsj.com/news/author/5678","mobileURL":"https://www.wsj.com/news/author/5678"},{"label":"Kimberley A. Strassel","category":"Columnists","index":60,"url":"https://www.wsj.com/news/author/5472","desktopURL":"https://www.wsj.com/news/author/5472","mobileURL":"https://www.wsj.com/news/author/5472"},{"label":"Books","category":"Reviews","index":100,"url":"https://www.wsj.com/news/types/bookshelf","desktopURL":"https://www.wsj.com/news/types/bookshelf","mobileURL":"https://www.wsj.com/news/types/bookshelf"},{"label":"Film","category":"Reviews","index":105,"url":"https://www.wsj.com/news/types/film-review","desktopURL":"https://www.wsj.com/news/types/film-review","mobileURL":"https://www.wsj.com/news/types/film-review"},{"label":"Television","category":"Reviews","index":110,"url":"https://www.wsj.com/news/types/television-review","desktopURL":"https://www.wsj.com/news/types/television-review","mobileURL":"https://www.wsj.com/news/types/television-review"},{"label":"Theater","category":"Reviews","index":115,"url":"https://www.wsj.com/news/types/theater-review","desktopURL":"https://www.wsj.com/news/types/theater-review","mobileURL":"https://www.wsj.com/news/types/theater-review"},{"label":"Art","category":"Reviews","index":118,"url":"https://www.wsj.com/news/types/art-review","desktopURL":"https://www.wsj.com/news/types/art-review","mobileURL":"https://www.wsj.com/news/types/art-review"},{"label":"Masterpiece Series","category":"Reviews","index":120,"url":"https://www.wsj.com/news/types/masterpiece","desktopURL":"https://www.wsj.com/news/types/masterpiece","mobileURL":"https://www.wsj.com/news/types/masterpiece"},{"label":"Music","category":"Reviews","index":135,"url":"https://www.wsj.com/news/types/music-review","desktopURL":"https://www.wsj.com/news/types/music-review","mobileURL":"https://www.wsj.com/news/types/music-review"},{"label":"Dance","category":"Reviews","index":137,"url":"https://www.wsj.com/news/types/dance-review","desktopURL":"https://www.wsj.com/news/types/dance-review","mobileURL":"https://www.wsj.com/news/types/dance-review"},{"label":"Opera","category":"Reviews","index":138,"url":"https://www.wsj.com/news/types/opera-review","desktopURL":"https://www.wsj.com/news/types/opera-review","mobileURL":"https://www.wsj.com/news/types/opera-review"},{"label":"Exhibition","category":"Reviews","index":140,"url":"https://www.wsj.com/news/types/exhibition-review","desktopURL":"https://www.wsj.com/news/types/exhibition-review","mobileURL":"https://www.wsj.com/news/types/exhibition-review"},{"label":"Cultural Commentary","category":"Reviews","index":150,"url":"https://www.wsj.com/news/types/cultural-commentary","desktopURL":"https://www.wsj.com/news/types/cultural-commentary","mobileURL":"https://www.wsj.com/news/types/cultural-commentary"},{"label":"Editorials","category":"More","index":200,"url":"https://www.wsj.com/news/types/review-outlook-u-s","desktopURL":"https://www.wsj.com/news/types/review-outlook-u-s","mobileURL":"https://www.wsj.com/news/types/review-outlook-u-s"},{"label":"Commentary","category":"More","index":202,"url":"https://www.wsj.com/news/types/commentary-u-s","desktopURL":"https://www.wsj.com/news/types/commentary-u-s","mobileURL":"https://www.wsj.com/news/types/commentary-u-s"},{"label":"Letters to the Editor","category":"More","index":203,"url":"https://www.wsj.com/news/types/letters","desktopURL":"https://www.wsj.com/news/types/letters","mobileURL":"https://www.wsj.com/news/types/letters"},{"label":"The Weekend Interview","category":"More","index":205,"url":"https://www.wsj.com/news/types/the-saturday-interview","desktopURL":"https://www.wsj.com/news/types/the-saturday-interview","mobileURL":"https://www.wsj.com/news/types/the-saturday-interview"},{"label":"Potomac Watch Podcast","category":"More","index":206,"url":"http://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch","desktopURL":"http://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch","mobileURL":"http://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch"},{"label":"Foreign Edition Podcast","category":"More","index":207,"url":"http://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition","desktopURL":"http://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition","mobileURL":"http://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition"},{"label":"Opinion Video","category":"More","index":208,"url":"http://www.wsj.com/video/browse/opinion","desktopURL":"http://www.wsj.com/video/browse/opinion","mobileURL":"http://www.wsj.com/video/browse/opinion"},{"label":"Notable & Quotable","category":"More","index":209,"url":"https://www.wsj.com/news/types/notable-quotable","desktopURL":"https://www.wsj.com/news/types/notable-quotable","mobileURL":"https://www.wsj.com/news/types/notable-quotable"},{"label":"Best of the Web Newsletter","category":"More","index":383,"url":"https://www.wsj.com/newsletters#opinion","desktopURL":"https://www.wsj.com/newsletters#opinion","mobileURL":"https://www.wsj.com/newsletters#opinion"},{"label":"Morning Editorial Report Newsletter","category":"More","index":385,"url":"https://www.wsj.com/newsletters#opinion","desktopURL":"https://www.wsj.com/newsletters#opinion","mobileURL":"https://www.wsj.com/newsletters#opinion"}],"categories":[{"label":"Columnists","subsections":[{"label":"James Freeman","category":"Columnists","index":15,"url":"https://www.wsj.com/news/author/5461","desktopURL":"https://www.wsj.com/news/author/5461","mobileURL":"https://www.wsj.com/news/author/5461"},{"label":"William A. Galston","category":"Columnists","index":20,"url":"https://www.wsj.com/news/author/7800","desktopURL":"https://www.wsj.com/news/author/7800","mobileURL":"https://www.wsj.com/news/author/7800"},{"label":"Daniel Henninger","category":"Columnists","index":25,"url":"https://www.wsj.com/news/author/5468","desktopURL":"https://www.wsj.com/news/author/5468","mobileURL":"https://www.wsj.com/news/author/5468"},{"label":"Holman W. Jenkins","category":"Columnists","index":30,"url":"https://www.wsj.com/news/author/5469","desktopURL":"https://www.wsj.com/news/author/5469","mobileURL":"https://www.wsj.com/news/author/5469"},{"label":"William McGurn","category":"Columnists","index":35,"url":"https://www.wsj.com/news/author/5470","desktopURL":"https://www.wsj.com/news/author/5470","mobileURL":"https://www.wsj.com/news/author/5470"},{"label":"Peggy Noonan","category":"Columnists","index":40,"url":"https://www.wsj.com/news/author/5356","desktopURL":"https://www.wsj.com/news/author/5356","mobileURL":"https://www.wsj.com/news/author/5356"},{"label":"Mary Anastasia O'Grady","category":"Columnists","index":45,"url":"https://www.wsj.com/news/author/8590","desktopURL":"https://www.wsj.com/news/author/8590","mobileURL":"https://www.wsj.com/news/author/8590"},{"label":"Jason Riley","category":"Columnists","index":50,"url":"https://www.wsj.com/news/author/5678","desktopURL":"https://www.wsj.com/news/author/5678","mobileURL":"https://www.wsj.com/news/author/5678"},{"label":"Kimberley A. Strassel","category":"Columnists","index":60,"url":"https://www.wsj.com/news/author/5472","desktopURL":"https://www.wsj.com/news/author/5472","mobileURL":"https://www.wsj.com/news/author/5472"}]},{"label":"Reviews","subsections":[{"label":"Books","category":"Reviews","index":100,"url":"https://www.wsj.com/news/types/bookshelf","desktopURL":"https://www.wsj.com/news/types/bookshelf","mobileURL":"https://www.wsj.com/news/types/bookshelf"},{"label":"Film","category":"Reviews","index":105,"url":"https://www.wsj.com/news/types/film-review","desktopURL":"https://www.wsj.com/news/types/film-review","mobileURL":"https://www.wsj.com/news/types/film-review"},{"label":"Television","category":"Reviews","index":110,"url":"https://www.wsj.com/news/types/television-review","desktopURL":"https://www.wsj.com/news/types/television-review","mobileURL":"https://www.wsj.com/news/types/television-review"},{"label":"Theater","category":"Reviews","index":115,"url":"https://www.wsj.com/news/types/theater-review","desktopURL":"https://www.wsj.com/news/types/theater-review","mobileURL":"https://www.wsj.com/news/types/theater-review"},{"label":"Art","category":"Reviews","index":118,"url":"https://www.wsj.com/news/types/art-review","desktopURL":"https://www.wsj.com/news/types/art-review","mobileURL":"https://www.wsj.com/news/types/art-review"},{"label":"Masterpiece Series","category":"Reviews","index":120,"url":"https://www.wsj.com/news/types/masterpiece","desktopURL":"https://www.wsj.com/news/types/masterpiece","mobileURL":"https://www.wsj.com/news/types/masterpiece"},{"label":"Music","category":"Reviews","index":135,"url":"https://www.wsj.com/news/types/music-review","desktopURL":"https://www.wsj.com/news/types/music-review","mobileURL":"https://www.wsj.com/news/types/music-review"},{"label":"Dance","category":"Reviews","index":137,"url":"https://www.wsj.com/news/types/dance-review","desktopURL":"https://www.wsj.com/news/types/dance-review","mobileURL":"https://www.wsj.com/news/types/dance-review"},{"label":"Opera","category":"Reviews","index":138,"url":"https://www.wsj.com/news/types/opera-review","desktopURL":"https://www.wsj.com/news/types/opera-review","mobileURL":"https://www.wsj.com/news/types/opera-review"},{"label":"Exhibition","category":"Reviews","index":140,"url":"https://www.wsj.com/news/types/exhibition-review","desktopURL":"https://www.wsj.com/news/types/exhibition-review","mobileURL":"https://www.wsj.com/news/types/exhibition-review"},{"label":"Cultural Commentary","category":"Reviews","index":150,"url":"https://www.wsj.com/news/types/cultural-commentary","desktopURL":"https://www.wsj.com/news/types/cultural-commentary","mobileURL":"https://www.wsj.com/news/types/cultural-commentary"}]},{"label":"More","subsections":[{"label":"Editorials","category":"More","index":200,"url":"https://www.wsj.com/news/types/review-outlook-u-s","desktopURL":"https://www.wsj.com/news/types/review-outlook-u-s","mobileURL":"https://www.wsj.com/news/types/review-outlook-u-s"},{"label":"Commentary","category":"More","index":202,"url":"https://www.wsj.com/news/types/commentary-u-s","desktopURL":"https://www.wsj.com/news/types/commentary-u-s","mobileURL":"https://www.wsj.com/news/types/commentary-u-s"},{"label":"Letters to the Editor","category":"More","index":203,"url":"https://www.wsj.com/news/types/letters","desktopURL":"https://www.wsj.com/news/types/letters","mobileURL":"https://www.wsj.com/news/types/letters"},{"label":"The Weekend Interview","category":"More","index":205,"url":"https://www.wsj.com/news/types/the-saturday-interview","desktopURL":"https://www.wsj.com/news/types/the-saturday-interview","mobileURL":"https://www.wsj.com/news/types/the-saturday-interview"},{"label":"Potomac Watch Podcast","category":"More","index":206,"url":"http://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch","desktopURL":"http://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch","mobileURL":"http://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch"},{"label":"Foreign Edition Podcast","category":"More","index":207,"url":"http://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition","desktopURL":"http://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition","mobileURL":"http://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition"},{"label":"Opinion Video","category":"More","index":208,"url":"http://www.wsj.com/video/browse/opinion","desktopURL":"http://www.wsj.com/video/browse/opinion","mobileURL":"http://www.wsj.com/video/browse/opinion"},{"label":"Notable & Quotable","category":"More","index":209,"url":"https://www.wsj.com/news/types/notable-quotable","desktopURL":"https://www.wsj.com/news/types/notable-quotable","mobileURL":"https://www.wsj.com/news/types/notable-quotable"},{"label":"Best of the Web Newsletter","category":"More","index":383,"url":"https://www.wsj.com/newsletters#opinion","desktopURL":"https://www.wsj.com/newsletters#opinion","mobileURL":"https://www.wsj.com/newsletters#opinion"},{"label":"Morning Editorial Report Newsletter","category":"More","index":385,"url":"https://www.wsj.com/newsletters#opinion","desktopURL":"https://www.wsj.com/newsletters#opinion","mobileURL":"https://www.wsj.com/newsletters#opinion"}]}]},{"id":"lifearts","label":"Life & Arts","index":90,"url":"https://www.wsj.com/news/life-arts","desktopURL":"https://www.wsj.com/news/life-arts","mobileURL":"https://www.wsj.com/news/life-arts","moreIn":[{"label":"Arts","category":"Sections","index":0,"url":"https://www.wsj.com/news/life-arts/arts","desktopURL":"https://www.wsj.com/news/life-arts/arts","mobileURL":"https://www.wsj.com/news/life-arts/arts"},{"label":"Books","category":"Sections","index":10,"url":"https://www.wsj.com/news/life-arts/books","desktopURL":"https://www.wsj.com/news/life-arts/books","mobileURL":"https://www.wsj.com/news/life-arts/books"},{"label":"Cars","category":"Sections","index":20,"url":"https://www.wsj.com/news/life-arts/automotive","desktopURL":"https://www.wsj.com/news/life-arts/automotive","mobileURL":"https://www.wsj.com/news/life-arts/automotive"},{"label":"Food & Drink","category":"Sections","index":30,"url":"https://www.wsj.com/news/life-arts/food-cooking-drink","desktopURL":"https://www.wsj.com/news/life-arts/food-cooking-drink","mobileURL":"https://www.wsj.com/news/life-arts/food-cooking-drink"},{"label":"Health","category":"Sections","index":40,"url":"https://www.wsj.com/news/life-arts/health-wellness","desktopURL":"https://www.wsj.com/news/life-arts/health-wellness","mobileURL":"https://www.wsj.com/news/life-arts/health-wellness"},{"label":"Ideas","category":"Sections","index":50,"url":"https://www.wsj.com/news/life-arts/ideas","desktopURL":"https://www.wsj.com/news/life-arts/ideas","mobileURL":"https://www.wsj.com/news/life-arts/ideas"},{"label":"Real Estate","category":"Sections","index":60,"url":"http://www.wsj.com/news/realestate","desktopURL":"/news/realestate","mobileURL":"/news/realestate"},{"category":"Sections","label":"Science","url":"https://www.wsj.com/news/science","index":70,"desktopURL":"https://www.wsj.com/news/science","mobileURL":"https://www.wsj.com/news/science"},{"label":"Sports","category":"Sections","index":75,"url":"https://www.wsj.com/news/life-arts/sports","desktopURL":"https://www.wsj.com/news/life-arts/sports","mobileURL":"https://www.wsj.com/news/life-arts/sports"},{"label":"Style & Fashion","category":"Sections","index":80,"url":"https://www.wsj.com/news/life-arts/fashion","desktopURL":"https://www.wsj.com/news/life-arts/fashion","mobileURL":"https://www.wsj.com/news/life-arts/fashion"},{"label":"Travel","category":"Sections","index":90,"url":"https://www.wsj.com/news/life-arts/travel","desktopURL":"https://www.wsj.com/news/life-arts/travel","mobileURL":"https://www.wsj.com/news/life-arts/travel"},{"label":"WSJ. Magazine","category":"More","index":100,"url":"http://www.wsj.com/news/magazine","desktopURL":"/news/magazine","mobileURL":"/news/magazine"},{"category":"More","label":"WSJ Puzzles","url":"https://blogs.wsj.com/puzzle/","index":110,"desktopURL":"https://blogs.wsj.com/puzzle/","mobileURL":"https://blogs.wsj.com/puzzle/"},{"category":"More","label":"The Future of Everything","url":"http://graphics.wsj.com/image-grid/future-of-everything/","index":120,"desktopURL":"http://graphics.wsj.com/image-grid/future-of-everything/","mobileURL":"http://graphics.wsj.com/image-grid/future-of-everything/"},{"label":"Life Video","category":"More","index":130,"url":"http://www.wsj.com/video/browse/life-culture","desktopURL":"http://www.wsj.com/video/browse/life-culture","mobileURL":"http://www.wsj.com/video/browse/life-culture"},{"category":"More","label":"Arts Video","url":"http://www.wsj.com/video/browse/life-culture/arts-and-entertainment","index":140,"desktopURL":"http://www.wsj.com/video/browse/life-culture/arts-and-entertainment","mobileURL":"http://www.wsj.com/video/browse/life-culture/arts-and-entertainment"}],"categories":[{"label":"Sections","subsections":[{"label":"Arts","category":"Sections","index":0,"url":"https://www.wsj.com/news/life-arts/arts","desktopURL":"https://www.wsj.com/news/life-arts/arts","mobileURL":"https://www.wsj.com/news/life-arts/arts"},{"label":"Books","category":"Sections","index":10,"url":"https://www.wsj.com/news/life-arts/books","desktopURL":"https://www.wsj.com/news/life-arts/books","mobileURL":"https://www.wsj.com/news/life-arts/books"},{"label":"Cars","category":"Sections","index":20,"url":"https://www.wsj.com/news/life-arts/automotive","desktopURL":"https://www.wsj.com/news/life-arts/automotive","mobileURL":"https://www.wsj.com/news/life-arts/automotive"},{"label":"Food & Drink","category":"Sections","index":30,"url":"https://www.wsj.com/news/life-arts/food-cooking-drink","desktopURL":"https://www.wsj.com/news/life-arts/food-cooking-drink","mobileURL":"https://www.wsj.com/news/life-arts/food-cooking-drink"},{"label":"Health","category":"Sections","index":40,"url":"https://www.wsj.com/news/life-arts/health-wellness","desktopURL":"https://www.wsj.com/news/life-arts/health-wellness","mobileURL":"https://www.wsj.com/news/life-arts/health-wellness"},{"label":"Ideas","category":"Sections","index":50,"url":"https://www.wsj.com/news/life-arts/ideas","desktopURL":"https://www.wsj.com/news/life-arts/ideas","mobileURL":"https://www.wsj.com/news/life-arts/ideas"},{"label":"Real Estate","category":"Sections","index":60,"url":"http://www.wsj.com/news/realestate","desktopURL":"/news/realestate","mobileURL":"/news/realestate"},{"category":"Sections","label":"Science","url":"https://www.wsj.com/news/science","index":70,"desktopURL":"https://www.wsj.com/news/science","mobileURL":"https://www.wsj.com/news/science"},{"label":"Sports","category":"Sections","index":75,"url":"https://www.wsj.com/news/life-arts/sports","desktopURL":"https://www.wsj.com/news/life-arts/sports","mobileURL":"https://www.wsj.com/news/life-arts/sports"},{"label":"Style & Fashion","category":"Sections","index":80,"url":"https://www.wsj.com/news/life-arts/fashion","desktopURL":"https://www.wsj.com/news/life-arts/fashion","mobileURL":"https://www.wsj.com/news/life-arts/fashion"},{"label":"Travel","category":"Sections","index":90,"url":"https://www.wsj.com/news/life-arts/travel","desktopURL":"https://www.wsj.com/news/life-arts/travel","mobileURL":"https://www.wsj.com/news/life-arts/travel"}]},{"label":"More","subsections":[{"label":"WSJ. Magazine","category":"More","index":100,"url":"http://www.wsj.com/news/magazine","desktopURL":"/news/magazine","mobileURL":"/news/magazine"},{"category":"More","label":"WSJ Puzzles","url":"https://blogs.wsj.com/puzzle/","index":110,"desktopURL":"https://blogs.wsj.com/puzzle/","mobileURL":"https://blogs.wsj.com/puzzle/"},{"category":"More","label":"The Future of Everything","url":"http://graphics.wsj.com/image-grid/future-of-everything/","index":120,"desktopURL":"http://graphics.wsj.com/image-grid/future-of-everything/","mobileURL":"http://graphics.wsj.com/image-grid/future-of-everything/"},{"label":"Life Video","category":"More","index":130,"url":"http://www.wsj.com/video/browse/life-culture","desktopURL":"http://www.wsj.com/video/browse/life-culture","mobileURL":"http://www.wsj.com/video/browse/life-culture"},{"category":"More","label":"Arts Video","url":"http://www.wsj.com/video/browse/life-culture/arts-and-entertainment","index":140,"desktopURL":"http://www.wsj.com/video/browse/life-culture/arts-and-entertainment","mobileURL":"http://www.wsj.com/video/browse/life-culture/arts-and-entertainment"}]}]},{"id":"realestate","label":"Real Estate","index":110,"url":"https://www.wsj.com/news/realestate","desktopURL":"https://www.wsj.com/news/realestate","mobileURL":"https://www.wsj.com/news/realestate","moreIn":[{"label":"Commercial Real Estate","category":"Sections","index":0,"url":"http://www.wsj.com/public/page/news-real-estate-commercial.html","desktopURL":"/public/page/news-real-estate-commercial.html","mobileURL":"/public/page/news-real-estate-commercial.html"},{"label":"House of the Day","category":"Sections","index":10,"url":"https://www.wsj.com/houseoftheday","desktopURL":"https://www.wsj.com/houseoftheday","mobileURL":"https://www.wsj.com/houseoftheday"},{"category":"Sections","label":"Mansion","url":"http://www.wsj.com/public/page/real-estate-luxury.html","index":20,"hideFromMoreIn":false,"desktopURL":"/public/page/real-estate-luxury.html","mobileURL":"/public/page/real-estate-luxury.html"},{"category":"More","label":"Real Estate Video","url":"http://www.wsj.com/video/subject/mansion","index":30,"hideFromMoreIn":false,"desktopURL":"http://www.wsj.com/video/subject/mansion","mobileURL":"http://www.wsj.com/video/subject/mansion"}],"categories":[{"label":"Sections","subsections":[{"label":"Commercial Real Estate","category":"Sections","index":0,"url":"http://www.wsj.com/public/page/news-real-estate-commercial.html","desktopURL":"/public/page/news-real-estate-commercial.html","mobileURL":"/public/page/news-real-estate-commercial.html"},{"label":"House of the Day","category":"Sections","index":10,"url":"https://www.wsj.com/houseoftheday","desktopURL":"https://www.wsj.com/houseoftheday","mobileURL":"https://www.wsj.com/houseoftheday"},{"category":"Sections","label":"Mansion","url":"http://www.wsj.com/public/page/real-estate-luxury.html","index":20,"hideFromMoreIn":false,"desktopURL":"/public/page/real-estate-luxury.html","mobileURL":"/public/page/real-estate-luxury.html"}]},{"label":"More","subsections":[{"category":"More","label":"Real Estate Video","url":"http://www.wsj.com/video/subject/mansion","index":30,"hideFromMoreIn":false,"desktopURL":"http://www.wsj.com/video/subject/mansion","mobileURL":"http://www.wsj.com/video/subject/mansion"}]}]},{"id":"magazine","label":"WSJ. Magazine","url":"https://www.wsj.com/news/magazine","index":120,"desktopURL":"https://www.wsj.com/news/magazine","mobileURL":"https://www.wsj.com/news/magazine","moreIn":[{"category":"Sections","label":"Fashion","url":"https://www.wsj.com/news/magazine/fashion","index":0,"desktopURL":"https://www.wsj.com/news/magazine/fashion","mobileURL":"https://www.wsj.com/news/magazine/fashion"},{"category":"Sections","label":"Art & Design","url":"https://www.wsj.com/news/magazine/art-design","index":10,"desktopURL":"https://www.wsj.com/news/magazine/art-design","mobileURL":"https://www.wsj.com/news/magazine/art-design"},{"category":"Sections","label":"Travel","url":"https://www.wsj.com/news/magazine/travel","index":20,"desktopURL":"https://www.wsj.com/news/magazine/travel","mobileURL":"https://www.wsj.com/news/magazine/travel"},{"category":"Sections","label":"Food","url":"https://www.wsj.com/news/magazine/food","index":30,"desktopURL":"https://www.wsj.com/news/magazine/food","mobileURL":"https://www.wsj.com/news/magazine/food"},{"category":"Sections","label":"Culture","url":"https://www.wsj.com/news/magazine/culture","index":40,"desktopURL":"https://www.wsj.com/news/magazine/culture","mobileURL":"https://www.wsj.com/news/magazine/culture"}],"categories":[{"label":"Sections","subsections":[{"category":"Sections","label":"Fashion","url":"https://www.wsj.com/news/magazine/fashion","index":0,"desktopURL":"https://www.wsj.com/news/magazine/fashion","mobileURL":"https://www.wsj.com/news/magazine/fashion"},{"category":"Sections","label":"Art & Design","url":"https://www.wsj.com/news/magazine/art-design","index":10,"desktopURL":"https://www.wsj.com/news/magazine/art-design","mobileURL":"https://www.wsj.com/news/magazine/art-design"},{"category":"Sections","label":"Travel","url":"https://www.wsj.com/news/magazine/travel","index":20,"desktopURL":"https://www.wsj.com/news/magazine/travel","mobileURL":"https://www.wsj.com/news/magazine/travel"},{"category":"Sections","label":"Food","url":"https://www.wsj.com/news/magazine/food","index":30,"desktopURL":"https://www.wsj.com/news/magazine/food","mobileURL":"https://www.wsj.com/news/magazine/food"},{"category":"Sections","label":"Culture","url":"https://www.wsj.com/news/magazine/culture","index":40,"desktopURL":"https://www.wsj.com/news/magazine/culture","mobileURL":"https://www.wsj.com/news/magazine/culture"}]}]}],"footerLinks":{"columnLinks":[{"name":"WSJ Membership","items":[{"label":"WSJ+ Membership Benefits","url":"http://www.wsjplus.com/?mod=wsjfooter"},{"label":"Digital Subscription","url":"http://subscribe.wsj.com/digitalpack"},{"label":"Print Subscription","url":"http://subscribe.wsj.com/printpack"},{"label":"Print and Digital Subscription","url":"http://subscribe.wsj.com/printanddigitalpack"},{"label":"Why Subscribe?","url":"http://www.subscription.wsj.com/?mod=wsjfooter"},{"label":"Download WSJ Apps for iOS and Android","url":"http://now.wsj.com/mobile/?mod=wsjfooter"},{"label":"Corporate Subscriptions","url":"http://www.subscription.wsj.com/corporate/?mod=wsjfooter"},{"label":"Professor Journal","url":"http://professor.wsj.com/?mod=wsjfooter"},{"label":"Student Journal","url":"http://www.wsjstudent.com/?mod=wsjfooter"}]},{"name":"Customer Service","items":[{"label":"Customer Center","url":"https://customercenter.wsj.com/home"},{"label":"Contact Us","url":"https://customercenter.wsj.com/contact"},{"label":"Live Help","url":"https://customercenter.wsj.com/livechat/chat?product=WSJ"},{"label":"Redesign Guided Tour","url":"http://www.wsj.com/guidedtour/"},{"label":"Notice to Subscribers","url":"https://subscribe.wsj.com/notice/CustomerCenterLetter.pdf"}]},{"name":"Tools & Features","items":[{"label":"Emails & Alerts","url":"http://www.wsj.com/public/page/email-setup.html","nofollow":false},{"label":"Guides","url":"http://www.wsj.com/public/page/guides.html"},{"label":"My News","url":"http://www.wsj.com/watchlist/news"},{"label":"RSS Feeds","url":"http://www.wsj.com/public/page/rss_news_and_feeds.html"},{"label":"Topics","url":"http://topics.wsj.com"},{"label":"Video Center","url":"http://www.wsj.com/video"},{"label":"Watchlist","url":"http://www.wsj.com/page/0_0_WGT_INVESTORCENTER_MST.html?id=0_0_WGT_INVESTORCENTER&title=Market%20Data"},{"label":"Podcasts","url":"http://www.wsj.com/podcasts"}]},{"name":"Ads","items":[{"label":"Advertise","url":"http://www.wsjmediakit.com","nofollow":false},{"label":"Advertise Locally","url":"http://www.wsjlocal.com","nofollow":false},{"label":"Commercial Real Estate Ads","url":"https://classifieds.wsj.com/ad/Commercial-Real-Estate-Ads","nofollow":false},{"label":"Place a Classified Ad","url":"http://classifieds.wsj.com","nofollow":false},{"label":"Sell Your Business","url":"https://classifieds.wsj.com/ad/Business-For-Sale-Ads","nofollow":false},{"label":"Sell Your Home","url":"https://classifieds.wsj.com/ad/Residential-Real-Estate-Ads","nofollow":false},{"label":"Recruitment & Career Ads","url":"https://classifieds.wsj.com/ad/Job-Ads","nofollow":false}]},{"name":"More","items":[{"label":"Content Partnerships","url":"http://wsj.com/partner","nofollow":false},{"label":"Corrections","url":"http://www.wsj.com/news/column/Corrections","nofollow":false},{"label":"Jobs at WSJ","url":"http://www.dowjones.com/careers.asp","nofollow":false},{"label":"News Archive","url":"http://www.wsj.com/public/page/archive.html"},{"label":"Register for Free","url":"https://customercenter.wsj.com/register","nofollow":false},{"label":"Reprints","url":"http://www.djreprints.com","nofollow":false}]}],"productLinks":[{"label":"Barron's","url":"http://online.barrons.com/home-page","nofollow":false},{"label":"BigCharts","url":"http://bigcharts.marketwatch.com","nofollow":false},{"label":"DJX","url":"http://www.wsj.com/public/page/wsj-x-marketing.html","nofollow":false},{"label":"Dow Jones Newswires","url":"http://new.dowjones.com/products/dj-news","nofollow":false},{"label":"Factiva","url":"https://global.factiva.com/factivalogin/login.asp?productname=global","nofollow":false},{"label":"Financial News","url":"http://www.efinancialnews.com","nofollow":false},{"label":"Mansion Global","url":"http://mansionglobal.com/","nofollow":false},{"label":"MarketWatch","url":"http://www.marketwatch.com","nofollow":false,"noborder":true},{"label":"Private Markets","url":"http://pevc.dowjones.com","nofollow":false},{"label":"realtor.com","url":"https://www.realtor.com","nofollow":false},{"label":"Risk & Compliance","url":"https://djlogin.dowjones.com/login.asp?productname=rnc","nofollow":false},{"label":"WSJ Conference","url":"http://www.wsj.com/conferences","nofollow":false},{"label":"WSJ Pro Central Banking","url":"http://www.wsj.com/pro/centralbanking","nofollow":false},{"label":"WSJ Video","url":"http://live.wsj.com","nofollow":false},{"label":"WSJ Wine","url":"http://www.wsjwine.com","nofollow":false,"noborder":true}],"socialLinks":[{"label":"Facebook","url":"http://www.facebook.com/wsj","type":"icon","class":"facebook"},{"label":"Twitter","url":"http://twitter.com/WSJ","type":"icon","class":"twitter"},{"label":"Google+","url":"https://plus.google.com/117720626238470886461/posts","type":"icon","class":"gplus"},{"label":"YouTube","url":"http://www.youtube.com/user/WSJDigitalNetwork","type":"icon","class":"youtube"},{"label":"Podcasts","url":"http://www.wsj.com/public/page/podcast.html","type":"icon","class":"podcast"},{"label":"Snapchat","url":"https://www.snapchat.com/discover/Wall-Street-Journal/4806310285","type":"icon","class":"snapchat"},{"label":"Google Play","url":"https://play.google.com/store/apps/details?id=wsj.reader_sp","type":"store-badge","class":"googleplay"},{"label":"App Store","url":"https://itunes.apple.com/us/app/the-wall-street-journal./id364387007?mt=8","type":"store-badge","class":"appstore"},{"label":"Windows 10","url":"https://www.microsoft.com/store/apps/9wzdncrfj4nb?ocid=badge","type":"store-badge","class":"windowsbadge"}],"policyLinks":[{"label":"Privacy Policy","url":"http://www.wsj.com/policy/privacy-policy","nofollow":false},{"label":"Cookie Policy","url":"http://www.wsj.com/policy/cookie-policy","update":"Updated at 3/1/2017","nofollow":false},{"label":"Copyright Policy","url":"http://www.wsj.com/policy/copyright-policy","nofollow":false},{"label":"Data Policy","url":"http://www.wsj.com/policy/data-policy","nofollow":false},{"label":"Subscriber Agreement & Terms of Use","url":"http://www.wsj.com/policy/subscriber-agreement","nofollow":false},{"label":"Your Ad Choices","url":"http://www.wsj.com/policy/cookie-policy#cookies-advertising","nofollow":false}],"mobileTopLinks":[{"label":"WSJ Membership Benefits","url":"http://www.wsjplus.com/?mod=wsjfooter","nofollow":false},{"label":"Download WSJ Apps","url":"http://now.wsj.com/mobile/?mod=wsjfooter","nofollow":false},{"label":"Customer Center","url":"http://help.wsj.com/customer-service","nofollow":false},{"label":"Legal Policies","url":"http://www.wsj.com/policy/privacy-policy","nofollow":false}]}},"env":{"API_PROXY_HOST":"http://www.wsj.com","API_PROXY_PATH":"/services/api-proxy/","ARTIRIX_HASH_ASIA":"bQoTG71BbZmFnDtOrKs9fkjY6PaG4GPs5iBq7LOwV1qYt8z6VHVbV5QZM3dcnh6jHuVykEw/iuODymDPjs+VWtVl3S+OuakCP5nDFcoW1k0vjQMVK2xfIYvrhhgyM0e4670WvKPT/GnXvETIxnm3GFWfWEksAIsOCmzFcinejW4UZlTQS83CqPEchcrt9SnW","ARTIRIX_HASH_EUROPE":"bQoTG71BbZmFnDtOrKs9fkjY6PaG4GPs5iBq7LOwV1qYt8z6VHVbV5QZM3dcnh6jHuVykEw/iuODymDPjs+VWgwy6WgtusAwGwoZ7QG/TVhfHj2mx6zL8mQ0ReEUodQQ7RNgLuNCR7IzYJcyP/yu+JdExcmuQYSdWZsOE5mx5NK/angkqbbB64RWQW7v/57q","ARTIRIX_HOST":"http://advertise.realestate.wsj.com","ARTIRIX_PATH_ASIA":"/v1/advert/batch_content.json?slot_names[]=ahp1&advert_contexts[][placement]=ahp1_us_buy_premium_property_a","ARTIRIX_PATH_EUROPE":"/v1/advert/batch_content.json?slot_names[]=ehp1&advert_contexts[][placement]=ehp1_us_buy_premium_property_a","AUTOCOMPLETE_SERVICE":"http://services-staging.dowjones.com","BG_SERVER":"https://wsjstream.wsj.net/bg2","CDN_URL":"https://vir.wsj.net/fp/cdn","CHART_ENV":"MuxPublicSecure","DATACENTER":"ancVirLiveCoverage","DYNAMIC_INSET_SERVICE":"https://www.wsj.com/insetsrv/v1","EREADER_US":"http://ereader.wsj.net","FONTS_IE":"https://fonts.wsj.net/fonts/wsj-fonts-ie.css","HOST_NAME":"https://vir.wsj.net","HOST_NAME_ADS":"https://www.wsj.com","LIVECOVERAGE_APPNAME":"live_coverage","LIVECOVERAGE_FIREBASE_APIKEY":"AIzaSyBoGUl9vJ8EeY_kedx2_ibPkbQ1sOK6rAM","LIVECOVERAGE_FIREBASE_AUTHDOMAIN":"dj-content-firebase-prod.firebaseapp.com","LIVECOVERAGE_FIREBASE_DATABASEURL":"https://dj-content-firebase-prod.firebaseio.com","LIVECOVERAGE_FIREBASE_STORAGEBUCKET":"dj-content-firebase-prod.appspot.com","NEW_UTAG":"true","NODE_ENV":"production","REDIRECT_HOST":"http://www.wsj.com","SERVICE_VERSION":"1.4.0","STACK_NAME":"dj01:vir:prod-live-coverage","TEALIUM_ENV":"prod","VIDEO_PLAYER_CSS":"https://video-api.wsj.com/api-video/player/v3/css/video.min.css","VIDEO_PLAYER_URL":"https://video-api.wsj.com/api-video/player/v3/js/video.min.js","VIDORA_API_KEY":"wsj.E4B14D56D6D304BA4A96A94B14D11AA9","WSJ_VIDEO_SERVICE":"https://video-api.wsj.com/api-video/find_all_videos.asp"}}});</script><script type="text/javascript" data-reactid=".1c9jte0nxqy.1.8:$f">
      (function(a,b,c,d){
      var utagload = setInterval(function() {
        if (typeof(utag_data) !== 'undefined') {
          a='//tags.tiqcdn.com/utag/wsjdn/wsj/prod/utag.js';
          b=document;c='script';d=b.createElement(c);d.src=a;d.type='text/java'+c;d.async=true;
          clearInterval(utagload);
          a=b.getElementsByTagName(c)[0];a.parentNode.insertBefore(d,a);
        }
      },100);
      })();</script><script type="text/javascript" data-reactid=".1c9jte0nxqy.1.8:$g">(function(a,b,c,d,e){var f={_q:[]};f.ready=f.push=function(a){f._q.push(a)},c in a||
  (a [c]=f),a[c].ready(function(a,b){b._i(d,e)})})(window,document,'vidora','wsj.E4B14D56D6D304BA4A96A94B14D11AA9')</script><noscript data-reactid=".1c9jte0nxqy.1.8:$k"></noscript></body></html>