CINXE.COM

Oregon Public Broadcasting - OPB

<!DOCTYPE html><html lang="en"><head><script>window.dataLayer = window.dataLayer || []; window.dataLayer.push({"content_group":"","series":"","author":[],"duration":1,"content_type":"page/pUs5R71akeFC1s","tags":[]});</script><script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-WJZVPH');</script><title>Oregon Public Broadcasting - OPB</title><meta property="og:url" content="https://www.opb.org/homepage"/><meta property="og:title" content="Oregon Public Broadcasting"/><meta property="og:image" content="https://www.opb.org/pf/resources/images/opb/opb-default.jpg?d=162"/><meta property="og:description" content="OPB News Home Page - Elections 2024"/><meta property="og:site_name" content="opb"/><meta property="og:type" content="website"/><meta name="twitter:title" content="Oregon Public Broadcasting"/><meta name="twitter:url" content="https://www.opb.org/homepage"/><meta name="twitter:image" content="https://www.opb.org/pf/resources/images/opb/opb-default.jpg?d=162"/><meta name="twitter:card" content="summary_large_image"/><meta name="twitter:description" content="OPB News Home Page - Elections 2024"/><meta property="page-type" content="homepage"/><meta property="fb:app_id" content="1635670063409263"/><meta property="fb:pages" content="127822227267704"/><meta property="fb:pages" content="111249508913865"/><meta property="fb:pages" content="579165642143526"/><meta property="fb:pages" content="113050848721496"/><meta property="fb:pages" content="215427730440"/><meta property="fb:pages" content="21486761832"/><meta property="fb:pages" content="17790154938"/><meta name="apple-itunes-app" content="app-id=596183142, app-argument=https://www.opb.org/"/><script type="text/javascript"> if (!Math.trunc) { Math.trunc = function (v) { return v < 0 ? Math.ceil(v) : Math.floor(v); }; } if (!String.prototype.includes) { String.prototype.includes = function(search, start) { 'use strict'; if (typeof start !== 'number') { start = 0; } if (start + search.length > this.length) { return false; } else { return this.indexOf(search, start) !== -1; } }; } // https://tc39.github.io/ecma262/#sec-array.prototype.findindex if (!Array.prototype.findIndex) { Object.defineProperty(Array.prototype, 'findIndex', { value: function(predicate) { // 1. Let O be ? ToObject(this value). if (this == null) { throw new TypeError('"this" is null or not defined'); } var o = Object(this); // 2. Let len be ? ToLength(? Get(O, "length")). var len = o.length >>> 0; // 3. If IsCallable(predicate) is false, throw a TypeError exception. if (typeof predicate !== 'function') { throw new TypeError('predicate must be a function'); } // 4. If thisArg was supplied, let T be thisArg; else let T be undefined. var thisArg = arguments[1]; // 5. Let k be 0. var k = 0; // 6. Repeat, while k < len while (k < len) { // a. Let Pk be ! ToString(k). // b. Let kValue be ? Get(O, Pk). // c. Let testResult be ToBoolean(? Call(predicate, T, « kValue, k, O »)). // d. If testResult is true, return k. var kValue = o[k]; if (predicate.call(thisArg, kValue, k, o)) { return k; } // e. Increase k by 1. k++; } // 7. Return -1. return -1; }, configurable: true, writable: true }); } // Production steps of ECMA-262, Edition 5, 15.4.4.18 // Reference: http://es5.github.io/#x15.4.4.18 if (!Array.prototype.forEach) { Array.prototype.forEach = function(callback/*, thisArg*/) { var T, k; if (this == null) { throw new TypeError('this is null or not defined'); } // 1. Let O be the result of calling toObject() passing the // |this| value as the argument. var O = Object(this); // 2. Let lenValue be the result of calling the Get() internal // method of O with the argument "length". // 3. Let len be toUint32(lenValue). var len = O.length >>> 0; // 4. If isCallable(callback) is false, throw a TypeError exception. // See: http://es5.github.com/#x9.11 if (typeof callback !== 'function') { throw new TypeError(callback + ' is not a function'); } // 5. If thisArg was supplied, let T be thisArg; else let // T be undefined. if (arguments.length > 1) { T = arguments[1]; } // 6. Let k be 0. k = 0; // 7. Repeat while k < len. while (k < len) { var kValue; // a. Let Pk be ToString(k). // This is implicit for LHS operands of the in operator. // b. Let kPresent be the result of calling the HasProperty // internal method of O with argument Pk. // This step can be combined with c. // c. If kPresent is true, then if (k in O) { // i. Let kValue be the result of calling the Get internal // method of O with argument Pk. kValue = O[k]; // ii. Call the Call internal method of callback with T as // the this value and argument list containing kValue, k, and O. callback.call(T, kValue, k, O); } // d. Increase k by 1. k++; } // 8. return undefined. }; } if (window.NodeList && !NodeList.prototype.forEach) { NodeList.prototype.forEach = Array.prototype.forEach; } if ((!window.Symbol || !Symbol.hasInstance) && !String.prototype.startsWith) { // Polyfilling Symbol.hasInstance and String.prototype.startsWith from: https://polyfill.io/v3/polyfill.min.js?features=Symbol.hasInstance%2CString.prototype.startsWith (function(undefined) {function ArrayCreate(r){if(1/r==-Infinity&&(r=0),r>Math.pow(2,32)-1)throw new RangeError("Invalid array length");var n=[];return n.length=r,n}function Call(t,l){var n=arguments.length>2?arguments[2]:[];if(!1===IsCallable(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(l,n)}function CreateDataProperty(e,r,t){var a={value:t,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(e,r,a),!0}catch(n){return!1}}function CreateDataPropertyOrThrow(t,r,o){var e=CreateDataProperty(t,r,o);if(!e)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(o)+"` to property `"+Object.prototype.toString.call(r)+"` on object `"+Object.prototype.toString.call(t)+"`");return e}function CreateMethodProperty(e,r,t){var a={value:t,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(e,r,a)}function Get(n,t){return n[t]}function HasProperty(n,r){return r in n}function IsArray(r){return"[object Array]"===Object.prototype.toString.call(r)}function IsCallable(n){return"function"==typeof n}function RequireObjectCoercible(e){if(null===e||e===undefined)throw TypeError();return e}function ToBoolean(o){return Boolean(o)}function ToInteger(n){var i=Number(n);return isNaN(i)?0:1/i===Infinity||1/i==-Infinity||i===Infinity||i===-Infinity?i:(i<0?-1:1)*Math.floor(Math.abs(i))}function ToLength(n){var t=ToInteger(n);return t<=0?0:Math.min(t,Math.pow(2,53)-1)}function ToObject(e){if(null===e||e===undefined)throw TypeError();return Object(e)}function GetV(t,e){return ToObject(t)[e]}function GetMethod(e,n){var r=GetV(e,n);if(null===r||r===undefined)return undefined;if(!1===IsCallable(r))throw new TypeError("Method not callable: "+n);return r}function Type(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in this&&e instanceof this.Symbol?"symbol":"object"}}function GetPrototypeFromConstructor(t,o){var r=Get(t,"prototype");return"object"!==Type(r)&&(r=o),r}function OrdinaryCreateFromConstructor(r,e){var t=arguments[2]||{},o=GetPrototypeFromConstructor(r,e),a=Object.create(o);for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&Object.defineProperty(a,n,{configurable:!0,enumerable:!1,writable:!0,value:t[n]});return a}function IsConstructor(t){return"object"===Type(t)&&("function"==typeof t&&!!t.prototype)}function Construct(r){var t=arguments.length>2?arguments[2]:r,o=arguments.length>1?arguments[1]:[];if(!IsConstructor(r))throw new TypeError("F must be a constructor.");if(!IsConstructor(t))throw new TypeError("newTarget must be a constructor.");if(t===r)return new(Function.prototype.bind.apply(r,[null].concat(o)));var n=OrdinaryCreateFromConstructor(t,Object.prototype);return Call(r,n,o)}function ArraySpeciesCreate(r,e){if(1/e==-Infinity&&(e=0),!1===IsArray(r))return ArrayCreate(e);var t=Get(r,"constructor");if("object"===Type(t)&&null===(t="Symbol"in this&&"species"in this.Symbol?Get(t,this.Symbol.species):undefined)&&(t=undefined),t===undefined)return ArrayCreate(e);if(!IsConstructor(t))throw new TypeError("C must be a constructor");return Construct(t,[e])}function IsRegExp(e){if("object"!==Type(e))return!1;var t="Symbol"in this&&"match"in this.Symbol?Get(e,this.Symbol.match):undefined;if(t!==undefined)return ToBoolean(t);try{var n=e.lastIndex;return e.lastIndex=0,RegExp.prototype.exec.call(e),!0}catch(r){}finally{e.lastIndex=n}return!1}function OrdinaryToPrimitive(r,t){if("string"===t)var e=["toString","valueOf"];else e=["valueOf","toString"];for(var i=0;i<e.length;++i){var n=e[i],a=Get(r,n);if(IsCallable(a)){var o=Call(a,r);if("object"!==Type(o))return o}}throw new TypeError("Cannot convert to primitive.")}function ToPrimitive(e){var t=arguments.length>1?arguments[1]:undefined;if("object"===Type(e)){if(arguments.length<2)var i="default";else t===String?i="string":t===Number&&(i="number");var r="function"==typeof this.Symbol&&"symbol"==typeof this.Symbol.toPrimitive?GetMethod(e,this.Symbol.toPrimitive):undefined;if(r!==undefined){var n=Call(r,e,[i]);if("object"!==Type(n))return n;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===i&&(i="number"),OrdinaryToPrimitive(e,i)}return e}function ToString(t){switch(Type(t)){case"symbol":throw new TypeError("Cannot convert a Symbol value to a string");case"object":return ToString(ToPrimitive(t,"string"));default:return String(t)}}CreateMethodProperty(String.prototype,"startsWith",function t(e){"use strict";var r=arguments.length>1?arguments[1]:undefined,n=RequireObjectCoercible(this),i=ToString(n);if(IsRegExp(e))throw new TypeError("First argument to String.prototype.startsWith must not be a regular expression");var o=ToString(e),s=ToInteger(r),a=i.length,g=Math.min(Math.max(s,0),a);return!(o.length+g>a)&&0===i.substr(g).indexOf(e)});!function(t,r,n){"use strict";var e,o=0,u=""+Math.random(),l="__symbol:",c=l.length,a="__symbol@@"+u,i="defineProperty",f="defineProperties",s="getOwnPropertyNames",v="getOwnPropertyDescriptor",b="propertyIsEnumerable",h=t.prototype,y=h.hasOwnProperty,m=h[b],p=h.toString,g=Array.prototype.concat,w=t.getOwnPropertyNames?t.getOwnPropertyNames(window):[],d=t[s],S=function L(t){if("[object Window]"===p.call(t))try{return d(t)}catch(r){return g.call([],w)}return d(t)},P=t[v],j=t.create,O=t.keys,E=t.freeze||t,N=t[i],_=t[f],k=P(t,s),T=function(t,r,n){if(!y.call(t,a))try{N(t,a,{enumerable:!1,configurable:!1,writable:!1,value:{}})}catch(e){t[a]={}}t[a]["@@"+r]=n},z=function(t,r){var n=j(t);return S(r).forEach(function(t){M.call(r,t)&&G(n,t,r[t])}),n},A=function(t){var r=j(t);return r.enumerable=!1,r},D=function Q(){},F=function(t){return t!=a&&!y.call(x,t)},I=function(t){return t!=a&&y.call(x,t)},M=function R(t){var r=""+t;return I(r)?y.call(this,r)&&this[a]["@@"+r]:m.call(this,t)},W=function(r){var n={enumerable:!1,configurable:!0,get:D,set:function(t){e(this,r,{enumerable:!1,configurable:!0,writable:!0,value:t}),T(this,r,!0)}};try{N(h,r,n)}catch(o){h[r]=n.value}return E(x[r]=N(t(r),"constructor",B))},q=function U(){var t=arguments[0];if(this instanceof U)throw new TypeError("Symbol is not a constructor");return W(l.concat(t||"",u,++o))},x=j(null),B={value:q},C=function(t){return x[t]},G=function V(t,r,n){var o=""+r;return I(o)?(e(t,o,n.enumerable?A(n):n),T(t,o,!!n.enumerable)):N(t,r,n),t},H=function(t){return function(r){return y.call(t,a)&&y.call(t[a],"@@"+r)}},J=function X(t){return S(t).filter(t===h?H(t):I).map(C)};k.value=G,N(t,i,k),k.value=J,N(t,"getOwnPropertySymbols",k),k.value=function Y(t){return S(t).filter(F)},N(t,s,k),k.value=function Z(t,r){var n=J(r);return n.length?O(r).concat(n).forEach(function(n){M.call(r,n)&&G(t,n,r[n])}):_(t,r),t},N(t,f,k),k.value=M,N(h,b,k),k.value=q,N(n,"Symbol",k),k.value=function(t){var r=l.concat(l,t,u);return r in h?x[r]:W(r)},N(q,"for",k),k.value=function(t){if(F(t))throw new TypeError(t+" is not a symbol");return y.call(x,t)?t.slice(2*c,-u.length):void 0},N(q,"keyFor",k),k.value=function $(t,r){var n=P(t,r);return n&&I(r)&&(n.enumerable=M.call(t,r)),n},N(t,v,k),k.value=function(t,r){return 1===arguments.length||void 0===r?j(t):z(t,r)},N(t,"create",k);var K=null===function(){return this}.call(null);k.value=K?function(){var t=p.call(this);return"[object String]"===t&&I(this)?"[object Symbol]":t}:function(){if(this===window)return"[object Null]";var t=p.call(this);return"[object String]"===t&&I(this)?"[object Symbol]":t},N(h,"toString",k),e=function(t,r,n){var e=P(h,r);delete h[r],N(t,r,n),t!==h&&N(h,r,e)}}(Object,0,this);Object.defineProperty(Symbol,"hasInstance",{value:Symbol("hasInstance")});}).call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {}); } (function(undefined) {function Call(t,l){var n=arguments.length>2?arguments[2]:[];if(!1===IsCallable(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(l,n)}function CreateMethodProperty(e,r,t){var a={value:t,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(e,r,a)}function Get(n,t){return n[t]}function HasProperty(n,r){return r in n}function IsArray(r){return"[object Array]"===Object.prototype.toString.call(r)}function IsCallable(n){return"function"==typeof n}function ToInteger(n){var i=Number(n);return isNaN(i)?0:1/i===Infinity||1/i==-Infinity||i===Infinity||i===-Infinity?i:(i<0?-1:1)*Math.floor(Math.abs(i))}function ToLength(n){var t=ToInteger(n);return t<=0?0:Math.min(t,Math.pow(2,53)-1)}function ToObject(e){if(null===e||e===undefined)throw TypeError();return Object(e)}function GetV(t,e){return ToObject(t)[e]}function GetMethod(e,n){var r=GetV(e,n);if(null===r||r===undefined)return undefined;if(!1===IsCallable(r))throw new TypeError("Method not callable: "+n);return r}function Type(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in this&&e instanceof this.Symbol?"symbol":"object"}}function OrdinaryToPrimitive(r,t){if("string"===t)var e=["toString","valueOf"];else e=["valueOf","toString"];for(var i=0;i<e.length;++i){var n=e[i],a=Get(r,n);if(IsCallable(a)){var o=Call(a,r);if("object"!==Type(o))return o}}throw new TypeError("Cannot convert to primitive.")}function ToPrimitive(e){var t=arguments.length>1?arguments[1]:undefined;if("object"===Type(e)){if(arguments.length<2)var i="default";else t===String?i="string":t===Number&&(i="number");var r="function"==typeof this.Symbol&&"symbol"==typeof this.Symbol.toPrimitive?GetMethod(e,this.Symbol.toPrimitive):undefined;if(r!==undefined){var n=Call(r,e,[i]);if("object"!==Type(n))return n;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===i&&(i="number"),OrdinaryToPrimitive(e,i)}return e}function ToString(t){switch(Type(t)){case"symbol":throw new TypeError("Cannot convert a Symbol value to a string");case"object":return ToString(ToPrimitive(t,"string"));default:return String(t)}}!function(e){"use strict";function t(t){return!!t&&("Symbol"in e&&"iterator"in e.Symbol&&"function"==typeof t[Symbol.iterator]||!!Array.isArray(t))}function n(e){return"from"in Array?Array.from(e):Array.prototype.slice.call(e)}!function(){function r(e){var t="",n=!0;return e.forEach(function(e){var r=encodeURIComponent(e.name),a=encodeURIComponent(e.value);n||(t+="&"),t+=r+"="+a,n=!1}),t.replace(/%20/g,"+")}function a(e,t){var n=e.split("&");t&&-1===n[0].indexOf("=")&&(n[0]="="+n[0]);var r=[];n.forEach(function(e){if(0!==e.length){var t=e.indexOf("=");if(-1!==t)var n=e.substring(0,t),a=e.substring(t+1);else n=e,a="";n=n.replace(/\+/g," "),a=a.replace(/\+/g," "),r.push({name:n,value:a})}});var a=[];return r.forEach(function(e){a.push({name:decodeURIComponent(e.name),value:decodeURIComponent(e.value)})}),a}function i(e){if(c)return new s(e);var t=document.createElement("a");return t.href=e,t}function o(e){var i=this;this._list=[],e===undefined||null===e||(e instanceof o?this._list=a(String(e)):"object"==typeof e&&t(e)?n(e).forEach(function(e){if(!t(e))throw TypeError();var r=n(e);if(2!==r.length)throw TypeError();i._list.push({name:String(r[0]),value:String(r[1])})}):"object"==typeof e&&e?Object.keys(e).forEach(function(t){i._list.push({name:String(t),value:String(e[t])})}):(e=String(e),"?"===e.substring(0,1)&&(e=e.substring(1)),this._list=a(e))),this._url_object=null,this._setList=function(e){u||(i._list=e)};var u=!1;this._update_steps=function(){u||(u=!0,i._url_object&&("about:"===i._url_object.protocol&&-1!==i._url_object.pathname.indexOf("?")&&(i._url_object.pathname=i._url_object.pathname.split("?")[0]),i._url_object.search=r(i._list),u=!1))}}function u(e,t){var n=0;this.next=function(){if(n>=e.length)return{done:!0,value:undefined};var r=e[n++];return{done:!1,value:"key"===t?r.name:"value"===t?r.value:[r.name,r.value]}}}function l(t,n){function r(){var e=l.href.replace(/#$|\?$|\?(?=#)/g,"");l.href!==e&&(l.href=e)}function u(){m._setList(l.search?a(l.search.substring(1)):[]),m._update_steps()}if(!(this instanceof e.URL))throw new TypeError("Failed to construct 'URL': Please use the 'new' operator.");n&&(t=function(){if(c)return new s(t,n).href;var e;try{var r;if("[object OperaMini]"===Object.prototype.toString.call(window.operamini)?(e=document.createElement("iframe"),e.style.display="none",document.documentElement.appendChild(e),r=e.contentWindow.document):document.implementation&&document.implementation.createHTMLDocument?r=document.implementation.createHTMLDocument(""):document.implementation&&document.implementation.createDocument?(r=document.implementation.createDocument("http://www.w3.org/1999/xhtml","html",null),r.documentElement.appendChild(r.createElement("head")),r.documentElement.appendChild(r.createElement("body"))):window.ActiveXObject&&(r=new window.ActiveXObject("htmlfile"),r.write("<head></head><body></body>"),r.close()),!r)throw Error("base not supported");var a=r.createElement("base");a.href=n,r.getElementsByTagName("head")[0].appendChild(a);var i=r.createElement("a");return i.href=t,i.href}finally{e&&e.parentNode.removeChild(e)}}());var l=i(t||""),f=function(){if(!("defineProperties"in Object))return!1;try{var e={};return Object.defineProperties(e,{prop:{get:function(){return!0}}}),e.prop}catch(t){return!1}}(),h=f?this:document.createElement("a"),m=new o(l.search?l.search.substring(1):null);return m._url_object=h,Object.defineProperties(h,{href:{get:function(){return l.href},set:function(e){l.href=e,r(),u()},enumerable:!0,configurable:!0},origin:{get:function(){return"origin"in l?l.origin:this.protocol+"//"+this.host},enumerable:!0,configurable:!0},protocol:{get:function(){return l.protocol},set:function(e){l.protocol=e},enumerable:!0,configurable:!0},username:{get:function(){return l.username},set:function(e){l.username=e},enumerable:!0,configurable:!0},password:{get:function(){return l.password},set:function(e){l.password=e},enumerable:!0,configurable:!0},host:{get:function(){var e={"http:":/:80$/,"https:":/:443$/,"ftp:":/:21$/}[l.protocol];return e?l.host.replace(e,""):l.host},set:function(e){l.host=e},enumerable:!0,configurable:!0},hostname:{get:function(){return l.hostname},set:function(e){l.hostname=e},enumerable:!0,configurable:!0},port:{get:function(){return l.port},set:function(e){l.port=e},enumerable:!0,configurable:!0},pathname:{get:function(){return"/"!==l.pathname.charAt(0)?"/"+l.pathname:l.pathname},set:function(e){l.pathname=e},enumerable:!0,configurable:!0},search:{get:function(){return l.search},set:function(e){l.search!==e&&(l.search=e,r(),u())},enumerable:!0,configurable:!0},searchParams:{get:function(){return m},enumerable:!0,configurable:!0},hash:{get:function(){return l.hash},set:function(e){l.hash=e,r()},enumerable:!0,configurable:!0},toString:{value:function(){return l.toString()},enumerable:!1,configurable:!0},valueOf:{value:function(){return l.valueOf()},enumerable:!1,configurable:!0}}),h}var c,s=e.URL;try{if(s){if("searchParams"in(c=new e.URL("http://example.com"))){var f=new l("http://example.com");if(f.search="a=1&b=2","http://example.com/?a=1&b=2"===f.href&&(f.search="","http://example.com/"===f.href))return}"href"in c||(c=undefined),c=undefined}}catch(m){}if(Object.defineProperties(o.prototype,{append:{value:function(e,t){this._list.push({name:e,value:t}),this._update_steps()},writable:!0,enumerable:!0,configurable:!0},"delete":{value:function(e){for(var t=0;t<this._list.length;)this._list[t].name===e?this._list.splice(t,1):++t;this._update_steps()},writable:!0,enumerable:!0,configurable:!0},get:{value:function(e){for(var t=0;t<this._list.length;++t)if(this._list[t].name===e)return this._list[t].value;return null},writable:!0,enumerable:!0,configurable:!0},getAll:{value:function(e){for(var t=[],n=0;n<this._list.length;++n)this._list[n].name===e&&t.push(this._list[n].value);return t},writable:!0,enumerable:!0,configurable:!0},has:{value:function(e){for(var t=0;t<this._list.length;++t)if(this._list[t].name===e)return!0;return!1},writable:!0,enumerable:!0,configurable:!0},set:{value:function(e,t){for(var n=!1,r=0;r<this._list.length;)this._list[r].name===e?n?this._list.splice(r,1):(this._list[r].value=t,n=!0,++r):++r;n||this._list.push({name:e,value:t}),this._update_steps()},writable:!0,enumerable:!0,configurable:!0},entries:{value:function(){return new u(this._list,"key+value")},writable:!0,enumerable:!0,configurable:!0},keys:{value:function(){return new u(this._list,"key")},writable:!0,enumerable:!0,configurable:!0},values:{value:function(){return new u(this._list,"value")},writable:!0,enumerable:!0,configurable:!0},forEach:{value:function(e){var t=arguments.length>1?arguments[1]:undefined;this._list.forEach(function(n){e.call(t,n.value,n.name)})},writable:!0,enumerable:!0,configurable:!0},toString:{value:function(){return r(this._list)},writable:!0,enumerable:!1,configurable:!0}}),"Symbol"in e&&"iterator"in e.Symbol&&(Object.defineProperty(o.prototype,e.Symbol.iterator,{value:o.prototype.entries,writable:!0,enumerable:!0,configurable:!0}),Object.defineProperty(u.prototype,e.Symbol.iterator,{value:function(){return this},writable:!0,enumerable:!0,configurable:!0})),s)for(var h in s)s.hasOwnProperty(h)&&"function"==typeof s[h]&&(l[h]=s[h]);e.URL=l,e.URLSearchParams=o}(),function(){if("1"!==new e.URLSearchParams([["a",1]]).get("a")||"1"!==new e.URLSearchParams({a:1}).get("a")){var r=e.URLSearchParams;e.URLSearchParams=function(e){if(e&&"object"==typeof e&&t(e)){var a=new r;return n(e).forEach(function(e){if(!t(e))throw TypeError();var r=n(e);if(2!==r.length)throw TypeError();a.append(r[0],r[1])}),a}return e&&"object"==typeof e?(a=new r,Object.keys(e).forEach(function(t){a.set(t,e[t])}),a):new r(e)}}}()}(self);}).call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {}); document.createElement("picture"); </script><meta name="title" property="title" content="Oregon Public Broadcasting"/><script type="application/javascript" id="polyfill-script">if(!Array.prototype.includes||!(window.Object && window.Object.assign)||!window.Promise||!window.Symbol||!window.fetch){document.write('<script type="application/javascript" src="/pf/dist/engine/polyfill.js?d=162&mxId=00000000" defer=""><\/script>')}</script><script id="fusion-engine-react-script" type="application/javascript" src="/pf/dist/engine/react.js?d=162&amp;mxId=00000000" defer=""></script><script id="fusion-engine-combinations-script" type="application/javascript" src="/pf/dist/components/combinations/default.js?d=162&amp;mxId=00000000" defer=""></script><link id="fusion-template-styles" rel="stylesheet" type="text/css" href="/pf/dist/components/combinations/default.css?d=162&amp;mxId=00000000"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/pf/resources/dist/opb/css/style.css?d=162"/><link rel="icon" type="image/x-icon" href="https://www.opb.org/favicon.ico"/><link rel="canonical" href="https://www.opb.org/homepage"/><script type="text/javascript" src="https://dkmymv74hfy38.cloudfront.net/lib/pym.js"></script><script type="application/ld+json">{"@context":"http://schema.org","@type":"WebPage","publisher":{"@type":"Organization","name":"OPB","logo":{"@type":"ImageObject","url":"https://www.opb.org/pf/resources/images/opb/opb-jsonld.png","width":182,"height":60}}}</script> <script>(window.BOOMR_mq=window.BOOMR_mq||[]).push(["addVar",{"rua.upush":"false","rua.cpush":"false","rua.upre":"false","rua.cpre":"false","rua.uprl":"false","rua.cprl":"false","rua.cprf":"false","rua.trans":"","rua.cook":"false","rua.ims":"false","rua.ufprl":"false","rua.cfprl":"false","rua.isuxp":"false","rua.texp":"norulematch","rua.ceh":"false","rua.ueh":"false","rua.ieh.st":"0"}]);</script> <script>!function(e){var n="https://s.go-mpulse.net/boomerang/";if("False"=="True")e.BOOMR_config=e.BOOMR_config||{},e.BOOMR_config.PageParams=e.BOOMR_config.PageParams||{},e.BOOMR_config.PageParams.pci=!0,n="https://s2.go-mpulse.net/boomerang/";if(window.BOOMR_API_key="LMCSE-ANKAX-2ECXU-27BW6-DEWG7",function(){function e(){if(!o){var e=document.createElement("script");e.id="boomr-scr-as",e.src=window.BOOMR.url,e.async=!0,i.parentNode.appendChild(e),o=!0}}function t(e){o=!0;var n,t,a,r,d=document,O=window;if(window.BOOMR.snippetMethod=e?"if":"i",t=function(e,n){var t=d.createElement("script");t.id=n||"boomr-if-as",t.src=window.BOOMR.url,BOOMR_lstart=(new Date).getTime(),e=e||d.body,e.appendChild(t)},!window.addEventListener&&window.attachEvent&&navigator.userAgent.match(/MSIE [67]\./))return window.BOOMR.snippetMethod="s",void t(i.parentNode,"boomr-async");a=document.createElement("IFRAME"),a.src="about:blank",a.title="",a.role="presentation",a.loading="eager",r=(a.frameElement||a).style,r.width=0,r.height=0,r.border=0,r.display="none",i.parentNode.appendChild(a);try{O=a.contentWindow,d=O.document.open()}catch(_){n=document.domain,a.src="javascript:var d=document.open();d.domain='"+n+"';void(0);",O=a.contentWindow,d=O.document.open()}if(n)d._boomrl=function(){this.domain=n,t()},d.write("<bo"+"dy onload='document._boomrl();'>");else if(O._boomrl=function(){t()},O.addEventListener)O.addEventListener("load",O._boomrl,!1);else if(O.attachEvent)O.attachEvent("onload",O._boomrl);d.close()}function a(e){window.BOOMR_onload=e&&e.timeStamp||(new Date).getTime()}if(!window.BOOMR||!window.BOOMR.version&&!window.BOOMR.snippetExecuted){window.BOOMR=window.BOOMR||{},window.BOOMR.snippetStart=(new Date).getTime(),window.BOOMR.snippetExecuted=!0,window.BOOMR.snippetVersion=12,window.BOOMR.url=n+"LMCSE-ANKAX-2ECXU-27BW6-DEWG7";var i=document.currentScript||document.getElementsByTagName("script")[0],o=!1,r=document.createElement("link");if(r.relList&&"function"==typeof r.relList.supports&&r.relList.supports("preload")&&"as"in r)window.BOOMR.snippetMethod="p",r.href=window.BOOMR.url,r.rel="preload",r.as="script",r.addEventListener("load",e),r.addEventListener("error",function(){t(!0)}),setTimeout(function(){if(!o)t(!0)},3e3),BOOMR_lstart=(new Date).getTime(),i.parentNode.appendChild(r);else t(!1);if(window.addEventListener)window.addEventListener("load",a,!1);else if(window.attachEvent)window.attachEvent("onload",a)}}(),"".length>0)if(e&&"performance"in e&&e.performance&&"function"==typeof e.performance.setResourceTimingBufferSize)e.performance.setResourceTimingBufferSize();!function(){if(BOOMR=e.BOOMR||{},BOOMR.plugins=BOOMR.plugins||{},!BOOMR.plugins.AK){var n=""=="true"?1:0,t="",a="bdpnbevn32kcuz7tlk5q-f-c58df6fe3-clientnsv4-s.akamaihd.net",i="false"=="true"?2:1,o={"ak.v":"39","ak.cp":"921305","ak.ai":parseInt("590344",10),"ak.ol":"0","ak.cr":1,"ak.ipv":4,"ak.proto":"http/1.1","ak.rid":"5e866f0","ak.r":26705,"ak.a2":n,"ak.m":"dscr","ak.n":"ff","ak.bpcip":"8.222.208.0","ak.cport":60626,"ak.gh":"173.222.148.38","ak.quicv":"","ak.tlsv":"tls1.2","ak.0rtt":"","ak.0rtt.ed":"","ak.csrc":"-","ak.acc":"reno","ak.t":"1744001723","ak.ak":"hOBiQwZUYzCg5VSAfCLimQ==64w/aa3YTSTAG3UVnDrhU6QlZkPw9NNGBP2OE9exrqaQBKmgQWpuIthth1RMYFxuu5vLqKM/ziCcKjhKo55K3jHIj3AXjL7IEWJxQfrfcdp72h1ziFy9qq2FDEgpxzA83XtfhOrvl+uPTrydZeaHZkfEBqu/1evqEbtA/C8wRV9KXug3kNclWThuyFdyQ0hAsPMyKy406IifsuFjDVagKiV6t7y5CZxyHWBzdxgBSCA2SCJYBbIRrZq1+8ujZffda8vYMfFHYHlRmnZTC9seCY5uPsD/ngZWWzd59as4tT7Jn3BPDEaNxu4FaM0fSpgaS4eIAPSW9cRujN3eypVm4z80cYKyHAwpobI2sB0Bw8kX+dDLe4hMn5pHOjHkBXAu2kFXsXjzEWvNuFKD5O/0ieC/Gny6m/hMiBWJXHKNM/4=","ak.pv":"85","ak.dpoabenc":"","ak.tf":i};if(""!==t)o["ak.ruds"]=t;var r={i:!1,av:function(n){var t="http.initiator";if(n&&(!n[t]||"spa_hard"===n[t]))o["ak.feo"]=void 0!==e.aFeoApplied?1:0,BOOMR.addVar(o)},rv:function(){var e=["ak.bpcip","ak.cport","ak.cr","ak.csrc","ak.gh","ak.ipv","ak.m","ak.n","ak.ol","ak.proto","ak.quicv","ak.tlsv","ak.0rtt","ak.0rtt.ed","ak.r","ak.acc","ak.t","ak.tf"];BOOMR.removeVar(e)}};BOOMR.plugins.AK={akVars:o,akDNSPreFetchDomain:a,init:function(){if(!r.i){var e=BOOMR.subscribe;e("before_beacon",r.av,null,null),e("onbeacon",r.rv,null,null),r.i=!0}return this},is_complete:function(){return!0}}}}()}(window);</script></head><body class="background_site"><noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WJZVPH" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript><div id="fusion-app"><div class="homepage"><nav class="width_full"><div class="global-header | color_white background_black flex width_full"><div class="header-logo height_full"><a href="/" class="header-logo align_center flex height_full background_black"><img class="" width="100%" src="/pf/resources/images/opb/opb-logo-white.svg?d=162" alt="Oregon Public Broadcasting"/></a></div><div class="align_center text color_mgray flex hidden--mobile f_primary uppercase">April 7, 2025</div><div class="flex justify_end width_full"><div class="contribute align_center flex pointer"><a href="https://www.opb.org/give/" class="align_center color_white background_red flex height_full f_primary f_bold f_s_xs">contribute<span class="hidden--mobile"> now</span></a></div><button class="burger background_black pointer width_50 closed"><img alt="Menu" class="height_full" width="49px" src="/pf/resources/images/search-burger.svg?d=162"/></button></div><div class="h_nav_container"></div></div></nav><main class="opb-grid row"><div class="top | background_white col desktop-12 tablet-12 mobile-12"><div style="display:none" id="f0f0Lqc1ktzEiP" data-fusion-collection="features" data-fusion-type="global/inTheNews" data-fusion-message="Could not render component [features:global/inTheNews]"></div><div class="feature-with-rail row"><div class="col desktop-8 tablet-6 mobile-12"><div style="display:none" id="f0fWjz25ktzEmq" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="col desktop-4 tablet-6 mobile-12"><div class="ad-container f_primary border rail "><section><div class="float_left color_dgray">THANKS TO OUR SPONSOR:</div><div class="float_right"><a href="https://www.opb.org/sponsorship/">Become a Sponsor</a></div></section><div style="min-width:300px;min-height:250px" class="ad float_clear" id="ad-id-rail-mobile-tablet-desktop"></div></div><div style="display:none" id="f0f7MWedg2Ifa2D" data-fusion-collection="features" data-fusion-type="global/storyCardFeed" data-fusion-message="Could not render component [features:global/storyCardFeed]"></div></div></div><hr class="border_1 width_full border_solid border_color_mgray border_bottom_0 divider_thick"/><div class="newsletter newsletter_background"><h3 class="newsletter__header f_primary f_bold">📨 Daily news in your inbox</h3><div class="newsletter__description f_primary">Sign up today for OPB’s “First Look” – your daily guide to the most important news and culture stories from around the Northwest.</div><form class="" aria-label="sign up for newsletter" novalidate="" id="singleNewsletterSignup"><div class="form-group"><div class="flex"><label id="emailLabel" class="form-label newsletter__label f_primary f_bold f_s_xxs uppercase">Email</label></div><div class="flex flex-row"><div class="form-field width_full"><input aria-labelledby="emailLabel" autoComplete="off" class="form-input background_white box_shadow_none width_full border_0 border_radius form-input--email f_primary color_dgray" id="EmailAddress" name="EmailAddress" type="email" placeholder="" required="" value=""/></div><label id="hiddenLabel" class="hidden">Please leave this field blank</label><input aria-labelledby="hiddenLabel" type="checkbox" id="id_contact_me_by_fax_only" name="id_contact_me_by_fax_only" class="hidden" tabindex="-1" autoComplete="off" value="0"/><button class="newsletter__btn newsletter__btn__inline pointer width_full border_0 border_radius f_primary f_bold" type="submit">Sign up</button></div></div></form></div><hr class="border_1 width_full border_solid border_color_mgray border_bottom_0 divider_thick"/><div class="internal_promotion | f_primary width_full"><div class="visual__image" style="position:relative"><picture><source srcSet="https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png?auth=effefe8e86ff5f90c2629b8d47814071f3a1c8347e14344605527eeb022e57f2&amp;width=767&amp;height=286&amp;smart=true" media="(max-width: 639px)"/><source srcSet="https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png?auth=effefe8e86ff5f90c2629b8d47814071f3a1c8347e14344605527eeb022e57f2&amp;width=1023&amp;height=381&amp;smart=true" media="(min-width: 639px) and (max-width: 1023px)"/><source srcSet="https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png?auth=effefe8e86ff5f90c2629b8d47814071f3a1c8347e14344605527eeb022e57f2&amp;width=1440&amp;height=537&amp;smart=true" media="(min-width: 1024px)"/><img class="block" src="https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png?auth=effefe8e86ff5f90c2629b8d47814071f3a1c8347e14344605527eeb022e57f2&amp;width=767&amp;height=286&amp;smart=true" alt="A banner image for the OPB Passport program Wolf Hall, featuring main character Thomas Cromwell in the foreground with King Henry VIII behind him, candles in the background with dramatic lighting."/></picture></div><div class="gradient"></div><div class="internal_promotion_text | opb-grid row p_horizontal-xs"><div class="f_medium f_s_large f_s_md--mobile p_top-xs p_right-xs--tablet width_full col mobile-12 tablet-9 p_bottom-none--mobile p_bottom-xs">Treat yourself to high drama. Binge-watch Wolf Hall on OPB Passport.</div><div class="flex justify_center align_center row p_vertical-xs width_full col mobile-12 tablet-3"><a href="https://www.opb.org/support/passport-campaign/?s=OAMEGNW250301005" class="internal_promotion_button | col mobile-12 tablet-12 border_radius f_bold f_s_md p text_align_center width_full">Become a Sustainer and watch now!</a></div></div></div></div><div class="full_width_1 | section | background_white row row--half-padding col desktop-12 tablet-12 mobile-12"><div class="two-col-feature-chain | row"><div class="chain-subheading subheading f_primary width_full flex align_center justify_center "><h2 class="block-heading flex_1 f_bold row--half-padding row--half-padding-mobile f_primary m-none" data-visible="false"><span>Northwest News</span></h2></div><div class="col desktop-3 tablet-3 mobile-12 flex-order-1-mobile"><div style="display:none" id="f0fRNi3ZUvmS6G4" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div><div style="display:none" id="f0f1JB8pkTmS63k" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="col desktop-3 tablet-3 mobile-12 flex-order-2-mobile"><div style="display:none" id="f0fnEOua9PhK3LB" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div><div style="display:none" id="f0fqraHz0NBt2SM" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="col desktop-6 tablet-6 mobile-12 flex-order-0-mobile"><div style="display:none" id="f0f0YCu2zMCt2eP" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div></div><div class="two-col-feature-chain | row width_full"><div class="col desktop-4 tablet-4 mobile-12"><div style="display:none" id="f0fhTs2g6RGx4C8" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="col desktop-4 tablet-4 mobile-12 mobile-col-spacing-top"><div style="display:none" id="f0fWOUI009ax4qR" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="col desktop-4 tablet-4 mobile-12 mobile-col-spacing-top"><div style="display:none" id="f0fbCWQEe25l6ys" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div></div></div><div class="right_rail_3 | section | background_white row row--half-padding width_full"><div class="col desktop-8 tablet-8 mobile-12"><div class=" subheading f_primary width_full flex align_center justify_center "><h2 class="block-heading flex_1 f_bold row--half-padding row--half-padding-mobile f_primary m-none" data-visible="false"><a href="https://www.opb.org/tag/politics" class="subheading_link">Trump&#x27;s Second Term And The Northwest</a></h2></div><div style="display:none" id="f0fjA7dfjreB6BY" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div><div style="display:none" id="f0flBjAENvAf5Bn" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="col desktop-4 tablet-4 mobile-12"><div class=" subheading f_primary width_full flex align_center justify_center "><h2 class="block-heading flex_1 f_bold row--half-padding row--half-padding-mobile f_primary m-none" data-visible="false"><span> Presidency: National Lens</span></h2></div><div style="display:none" id="f0foB2Gbg5PtcYV" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div><div style="display:none" id="f0fpl9HeCWKLbl4" data-fusion-collection="features" data-fusion-type="global/storyCardFeed" data-fusion-message="Could not render component [features:global/storyCardFeed]"></div></div></div><div class="full_width_4 | section | background_white row row--half-padding col desktop-12 tablet-12 mobile-12"><div class="two-col-feature-chain | row width_full"><div class="chain-subheading subheading f_primary width_full flex align_center justify_center "><h2 class="block-heading flex_1 f_bold row--half-padding row--half-padding-mobile f_primary m-none" data-visible="false"><span>National Week of Wildlife</span></h2></div><div class="col desktop-4 tablet-4 mobile-12"><div style="display:none" id="f0f1YCO20L5F3Rc" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="col desktop-4 tablet-4 mobile-12 mobile-col-spacing-top"><div style="display:none" id="f0fC5eeY07yM5xQ" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="col desktop-4 tablet-4 mobile-12 mobile-col-spacing-top"><div style="display:none" id="f0fdzZ6TWAhr3GL" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div></div><div class="two-col-feature-chain | row width_full"><hr class="chain-divider divider_thick width_full border_1 border_solid border_color_mgray border_bottom_0"/><div class="chain-subheading subheading f_primary width_full flex align_center justify_center "><h2 class="block-heading flex_1 f_bold row--half-padding row--half-padding-mobile f_primary m-none" data-visible="false"><span>Don&#x27;t Miss</span></h2></div><div class="col desktop-4 tablet-4 mobile-12"><div style="display:none" id="f0fh7caeMQGd83B" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="col desktop-4 tablet-4 mobile-12 mobile-col-spacing-top"><div style="display:none" id="f0fMG17Xyi5W3k1" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="col desktop-4 tablet-4 mobile-12 mobile-col-spacing-top"><div style="display:none" id="f0fF3QCVY0jl41k" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div></div><div class="one-col-with-feature row"><hr class="chain-divider divider_thick width_full border_1 border_solid border_color_mgray border_bottom_0"/><div class="chain-subheading subheading f_primary width_full flex align_center justify_center "><h2 class="block-heading flex_1 f_bold row--half-padding row--half-padding-mobile f_primary m-none" data-visible="false"><a href="https://www.opb.org/tag/world/" class="subheading_link">Nation &amp; World</a></h2></div><div class="col desktop-6 tablet-6 mobile-12 mobile-12"><div style="display:none" id="f0fQthKYltzEnF" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="col desktop-6 tablet-6 mobile-12"><div style="display:none" id="f0f64W7WltzEeh" data-fusion-collection="features" data-fusion-type="global/storyCardFeed" data-fusion-message="Could not render component [features:global/storyCardFeed]"></div></div></div></div><div class="full_width_6 | section | background_white row row--half-padding col desktop-12 tablet-12 mobile-12"><div class="feature-with-rail row"><div class="chain-subheading subheading f_primary width_full flex align_center justify_center "><h2 class="block-heading flex_1 f_bold row--half-padding row--half-padding-mobile f_primary m-none" data-visible="false"><a href="https://www.opb.org/shows/" class="subheading_link">Unplug From The News</a></h2></div><div class="col desktop-8 tablet-6 mobile-12"><div style="display:none" id="f0fYL8bBWrjI6mA" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="col desktop-4 tablet-6 mobile-12"><div style="display:none" id="f0fNYPUiJCrT4Cs" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div><div style="display:none" id="f0fUsrh4YUYO5sr" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div></div></div><div class="full_width_7 | section | background_white row row--half-padding col desktop-12 tablet-12 mobile-12"><div class="two-col-feature-chain | row width_full"><div class="col desktop-4 tablet-4 mobile-12"><div style="display:none" id="f0fdACp8cjnT5vt" data-fusion-collection="features" data-fusion-type="global/storyCardFeed" data-fusion-message="Could not render component [features:global/storyCardFeed]"></div></div><div class="col desktop-4 tablet-4 mobile-12 mobile-col-spacing-top"><div style="display:none" id="f0fY2MXZP3Ft2Y2" data-fusion-collection="features" data-fusion-type="global/storyCardFeed" data-fusion-message="Could not render component [features:global/storyCardFeed]"></div></div><div class="col desktop-4 tablet-4 mobile-12 mobile-col-spacing-top"><div style="display:none" id="f0fOcmK9xLnT59P" data-fusion-collection="features" data-fusion-type="global/storyCardFeed" data-fusion-message="Could not render component [features:global/storyCardFeed]"></div></div></div></div></main><footer class="width_full background_white has-sticky-footer"><div class="sustainer f_primary layout-horizontal"><div class="opb-grid p_horizontal-xs row align_center"><div class="row row_stretch"><div class="col mobile-12 tablet-9"><p class="sustainer_text f_medium f_s_large m-none p_vertical-sm p_right-xs--tablet">Stand with OPB and protect independent journalism for everyone.</p></div><div class="col mobile-12 tablet-3 flex align_center"><div class="sustainer_button width_full p border_radius text_align_center m_bottom-sm--mobile"><a class="sustainer_button-link f_bold f_s_md" href="https://www.opb.org/give/federal-funding/?s=OAMEGNW250100008">Make a Sustaining contribution now</a></div></div></div></div></div><div class="global_footer background_footer width_full"><div class="opb-grid p_horizontal-xs"><div class="social_links | flex undefined p_top-xs"></div><div class="footer1 | color_lightgray flex f_primary f_bold p_bottom-xs"><div class="col flex flex_column m_right-xs--mobile"><div class="m_vertical-micro"><a href="/schedules" aria-label="null" rel="">TV &amp; Radio Schedules</a></div><div class="m_vertical-micro"><a href="/sponsorship" aria-label="null" rel="">Sponsorship</a></div><div class="m_vertical-micro"><a href="https://opb2.my.site.com/Help/s/" aria-label="null (opens in a new window)" rel="noopener noreferrer">Help Center</a></div></div><div class="col flex flex_column"><div class="m_vertical-micro"><a href="https://opb2.my.site.com/Help/s/managemembership" aria-label="null (opens in a new window)" rel="noopener noreferrer"><span class="f_fa_f_solid f_s_sm absolute" aria-label="Manage My Membership"></span>Manage My Membership</a></div><div class="m_vertical-micro"><a href="https://opb2.my.site.com/Help/s/contactsupport" aria-label="null (opens in a new window)" rel="noopener noreferrer">Contact Us</a></div><div class="m_vertical-micro"><a href="/notifications" aria-label="null" rel="">Notifications</a></div></div></div><div class="footer2 row align_end f_primary p_vertical-xs mobile-12"><div class="col m_horizontal--desktop m_horizontal-xxs--tablet desktop-auto tablet-auto m_vertical-micro--mobile m_right-xs--mobile accent-color f_s_xs"><a href="/privacy" aria-label="null" rel="">Privacy Policy</a></div><div class="col m_horizontal--desktop m_horizontal-xxs--tablet desktop-auto tablet-auto m_vertical-micro--mobile "><a href="/publicfiles" aria-label="null" rel="">FCC Public Files</a></div><div class="col m_horizontal--desktop m_horizontal-xxs--tablet desktop-auto tablet-auto m_vertical-micro--mobile m_right-xs--mobile"><a href="/fcc-applications" aria-label="null" rel="">FCC Applications</a></div><div class="col m_horizontal--desktop m_horizontal-xxs--tablet desktop-auto tablet-auto m_vertical-micro--mobile "><a href="/terms" aria-label="null" rel="">Terms of Use</a></div><div class="col m_horizontal--desktop m_horizontal-xxs--tablet desktop-auto tablet-auto m_vertical-micro--mobile m_right-xs--mobile"><a href="/editorialpolicy" aria-label="null" rel="">Editorial Policy</a></div><div class="col m_horizontal--desktop m_horizontal-xxs--tablet desktop-auto tablet-auto m_vertical-micro--mobile "><a href="/sms" aria-label="SMS Terms and Conditions" rel="">SMS T&amp;C</a></div><div class="col m_horizontal--desktop m_horizontal-xxs--tablet desktop-auto tablet-auto m_vertical-micro--mobile m_right-xs--mobile"><a href="/contestrules" aria-label="null" rel="">Contest Rules</a></div><div class="col m_horizontal--desktop m_horizontal-xxs--tablet desktop-auto tablet-auto m_vertical-micro--mobile "><a href="/accessibility" aria-label="null" rel="">Accessibility</a></div></div></div></div></footer><div class="sticky-footer width_full absolute_bottom fixed z_9"><div class="stream-launcher | flex align_center f_primary "><div><button class="stream-launcher__play-button pointer"><svg aria-hidden="true" focusable="false" data-prefix="far" data-icon="circle-play" class="svg-inline--fa fa-circle-play " role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM188.3 147.1c7.6-4.2 16.8-4.1 24.3 .5l144 88c7.1 4.4 11.5 12.1 11.5 20.5s-4.4 16.1-11.5 20.5l-144 88c-7.4 4.5-16.7 4.7-24.3 .5s-12.3-12.2-12.3-20.9V168c0-8.7 4.7-16.7 12.3-20.9z"></path></svg><span class="sr-only">Listen to the <!-- -->OPB News<!-- --> live stream (opens new window)</span></button></div><div class="stream-launcher__streaming-info | overflow_auto p-none"><p class="stream-launcher__streaming-now block uppercase color_lightgray p-none m-none">Streaming Now</p><p class="stream-launcher__now-playing | overflow_auto overflow_x_hidden--desktop text_no-linebreak color_white f_bold m-none">OPB Presents: Possible- Devon Zuegel on the future of cities and community</p></div><button class="stream-launcher__show-switch background_black color_white" aria-expanded="false"><svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="plus" class="svg-inline--fa fa-plus " role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z"></path></svg><span class="sr-only">Show<!-- --> switch stream buttons</span></button><div class="stream-launcher__switch color_mgray f_s_xxs "><span class="uppercase p_right-xxs f_bold">Switch Stream:</span><button class="stream-launcher__switch-btn border_radius color_white pointer background_black border stream-launcher__switch-btn--active">OPB News<span class="sr-only">Listen to the <!-- -->OPB News<!-- --> live stream (opens new window)</span></button><button class="stream-launcher__switch-btn border_radius color_white pointer background_black border">KMHD<span class="sr-only">Listen to the <!-- -->KMHD<!-- --> live stream (opens new window)</span></button></div></div></div></div></div><script id="fusion-metadata" type="application/javascript">window.Fusion=window.Fusion||{};Fusion.arcSite="opb";Fusion.contextPath="/pf";Fusion.mxId="00000000";Fusion.deployment="162";Fusion.globalContent={};Fusion.globalContentConfig={};Fusion.lastModified=1744001672673;Fusion.contentCache={"photo-by-id":{"{\"photoId\":\"\"}":{"data":{"content_elements":[{"0":{"_id":"NASSZIDDQ5BO7NNGA3DFI7RZ3M","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/NASSZIDDQ5BO7NNGA3DFI7RZ3M.JPG?auth=11e2bb04a911cc5a00fa661ffc29d1c8c0ec248af26a88d77f10186e15662657","galleries":[{"headlines":{"basic":"Pro-police Rally"},"_id":"MOHM55XP7ZFUBFGIGDWH554L6A"}],"ingestionMethod":"manual","iptc_source":"OPB","iptc_title":"Reporter/Produer","keywords":[""],"mime_type":"image/jpeg","originalName":"20200822_JDL_GeorgeFloyd_015.JPG","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/NASSZIDDQ5BO7NNGA3DFI7RZ3M.JPG","owner":"jlevinson@opb.org","proxyUrl":"/resizer/v2/NASSZIDDQ5BO7NNGA3DFI7RZ3M.JPG?auth=11e2bb04a911cc5a00fa661ffc29d1c8c0ec248af26a88d77f10186e15662657","published":true,"resizeUrl":"/resizer/v2/NASSZIDDQ5BO7NNGA3DFI7RZ3M.JPG?auth=11e2bb04a911cc5a00fa661ffc29d1c8c0ec248af26a88d77f10186e15662657","restricted":false,"takenOn":"2020-08-22T19:44:45Z","thumbnailResizeUrl":"/resizer/v2/NASSZIDDQ5BO7NNGA3DFI7RZ3M.JPG?auth=11e2bb04a911cc5a00fa661ffc29d1c8c0ec248af26a88d77f10186e15662657&width=300","version":0,"template_id":620},"address":{"locality":"Portland","region":"Oregon"},"auth":{"1":"11e2bb04a911cc5a00fa661ffc29d1c8c0ec248af26a88d77f10186e15662657"},"caption":"Pro- Trump and pro-police demonstrators clashed with anti-fascist counterprotesters on the 87th day of protests against police violence and systemic racism. Despite violence in the streets, police were notably absent and never declared an unlawful assembly. ","copyright":"Copyright OPB","created_date":"2020-08-23T08:32:23Z","credits":{"affiliation":[{"name":"Jonathan Levinson","type":"author"}],"by":[{"byline":"Jonathan Levinson","name":"Jonathan Levinson","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":2000,"image_type":"photograph","last_updated_date":"2020-08-23T08:32:23Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Protests Day 87","taxonomy":{},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/NASSZIDDQ5BO7NNGA3DFI7RZ3M.JPG","version":"0.10.9","width":3000},"1":{"_id":"Q7LILG5HYRGHRIRKCHBJBVLKCA","additional_properties":{"countryId":227,"fullSizeResizeUrl":"/resizer/v2/Q7LILG5HYRGHRIRKCHBJBVLKCA.jpg?auth=f5fbc9358f18fee0654953c54246a4f7289bb6c4e7c1ea784c917c4e9b4160ed","galleries":[{"headlines":{"basic":"Wildfires, heavy smoke and a threat of high winds"},"_id":"CMQWLXM64ZA4JCNWUXI6G2LATU"}],"ingestionMethod":"manual","iptc_job_identifier":"ORJL110","iptc_source":"AP","iptc_title":"STF","keywords":[""],"mime_type":"image/jpeg","originalName":"AP_20257018983444.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/Q7LILG5HYRGHRIRKCHBJBVLKCA.jpg","owner":"csherwood@opb.org","proxyUrl":"/resizer/v2/Q7LILG5HYRGHRIRKCHBJBVLKCA.jpg?auth=f5fbc9358f18fee0654953c54246a4f7289bb6c4e7c1ea784c917c4e9b4160ed","published":true,"resizeUrl":"/resizer/v2/Q7LILG5HYRGHRIRKCHBJBVLKCA.jpg?auth=f5fbc9358f18fee0654953c54246a4f7289bb6c4e7c1ea784c917c4e9b4160ed","restricted":false,"takenOn":"2020-09-12T23:10:25Z","thumbnailResizeUrl":"/resizer/v2/Q7LILG5HYRGHRIRKCHBJBVLKCA.jpg?auth=f5fbc9358f18fee0654953c54246a4f7289bb6c4e7c1ea784c917c4e9b4160ed&width=300","version":0},"address":{"locality":"Lyons","region":"OR","country_name":"USA"},"auth":{"1":"f5fbc9358f18fee0654953c54246a4f7289bb6c4e7c1ea784c917c4e9b4160ed"},"caption":"Erik Tucker carries a bucket of water to put out hot spots in an area around his home burned by the Beachie Creek Fire, Saturday, Sept. 12, 2020, in Lyons, Ore. Tucker lost a shed but his home was intact.","copyright":"Copyright 2020 The Associated Press. All rights reserved.","created_date":"2020-09-13T16:26:26Z","credits":{"affiliation":[{"name":"AP","type":"author"}],"by":[{"byline":"John Locher","name":"John Locher","type":"author"}]},"distributor":{"category":"wires","id":"28dbd3a6-70fb-48bd-ad0b-0847777579c7","name":"AP","subcategory":"AP","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:05:31.885Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2020-07-15T18:05:31.885Z","modifiedBy":"alee@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":3766,"image_type":"photograph","last_updated_date":"2020-09-13T16:26:26Z","licensable":false,"owner":{"id":"opb","sponsored":false},"slug":"Pacific Northwest Wildfires","source":{"name":"AP","source_type":"wires","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Wildfire aftermath","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/Q7LILG5HYRGHRIRKCHBJBVLKCA.jpg","version":"0.10.9","width":5649,"syndication":{},"creditIPTC":"AP","country_name":"United States"},"2":{"_id":"7ZPWJXZK3NEAZBA4EJPHDTRGOY","additional_properties":{"countryId":227,"fullSizeResizeUrl":"/resizer/v2/7ZPWJXZK3NEAZBA4EJPHDTRGOY.jpg?auth=766071077cce3f1e60576d84be1e5c865a2efafdb696c0bb65bc9ed05db6a177","galleries":[{"headlines":{"basic":"Wildfires, heavy smoke and a threat of high winds"},"_id":"CMQWLXM64ZA4JCNWUXI6G2LATU"}],"ingestionMethod":"manual","iptc_job_identifier":"ORJL102","iptc_source":"AP","iptc_title":"STF","keywords":[""],"mime_type":"image/jpeg","originalName":"AP_20256563534066.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/7ZPWJXZK3NEAZBA4EJPHDTRGOY.jpg","owner":"csherwood@opb.org","proxyUrl":"/resizer/v2/7ZPWJXZK3NEAZBA4EJPHDTRGOY.jpg?auth=766071077cce3f1e60576d84be1e5c865a2efafdb696c0bb65bc9ed05db6a177","published":true,"resizeUrl":"/resizer/v2/7ZPWJXZK3NEAZBA4EJPHDTRGOY.jpg?auth=766071077cce3f1e60576d84be1e5c865a2efafdb696c0bb65bc9ed05db6a177","restricted":false,"takenOn":"2020-09-12T15:07:48Z","thumbnailResizeUrl":"/resizer/v2/7ZPWJXZK3NEAZBA4EJPHDTRGOY.jpg?auth=766071077cce3f1e60576d84be1e5c865a2efafdb696c0bb65bc9ed05db6a177&width=300","version":0},"address":{"locality":"Portland","region":"OR","country_name":"USA"},"auth":{"1":"766071077cce3f1e60576d84be1e5c865a2efafdb696c0bb65bc9ed05db6a177"},"caption":"A person rides a bike along the Willamette River as smoke from wildfires partially obscures the Tilikum Crossing Bridge, Saturday, Sept. 12, 2020, in Portland, Ore.","copyright":"Copyright 2020 The Associated Press. All rights reserved.","created_date":"2020-09-13T16:26:26Z","credits":{"affiliation":[{"name":"AP","type":"author"}],"by":[{"byline":"John Locher","name":"John Locher","type":"author"}]},"distributor":{"category":"wires","id":"28dbd3a6-70fb-48bd-ad0b-0847777579c7","name":"AP","subcategory":"AP","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:05:31.885Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2020-07-15T18:05:31.885Z","modifiedBy":"alee@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":4000,"image_type":"photograph","last_updated_date":"2020-09-13T16:26:26Z","licensable":false,"owner":{"id":"opb","sponsored":false},"slug":"Pacific Northwest Wildfires","source":{"name":"AP","source_type":"wires","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Portland wildfire smoke","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/7ZPWJXZK3NEAZBA4EJPHDTRGOY.jpg","version":"0.10.9","width":6000,"syndication":{},"creditIPTC":"AP","country_name":"United States"},"3":{"_id":"LDBCYGXVXFAHZCPYPHTWN4VJJY","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/LDBCYGXVXFAHZCPYPHTWN4VJJY.JPG?auth=b69e8679ee27241070c41065d316a59aabd8d2af6062766a67c1332eccd93ef4","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","iptc_title":"Reporter/Produer","keywords":[""],"mime_type":"image/jpeg","originalName":"20200914_JDL_Fires_004.JPG","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/LDBCYGXVXFAHZCPYPHTWN4VJJY.JPG","owner":"jlevinson@opb.org","proxyUrl":"/resizer/v2/LDBCYGXVXFAHZCPYPHTWN4VJJY.JPG?auth=b69e8679ee27241070c41065d316a59aabd8d2af6062766a67c1332eccd93ef4","published":true,"resizeUrl":"/resizer/v2/LDBCYGXVXFAHZCPYPHTWN4VJJY.JPG?auth=b69e8679ee27241070c41065d316a59aabd8d2af6062766a67c1332eccd93ef4","restricted":false,"takenOn":"2020-09-15T02:07:00Z","thumbnailResizeUrl":"/resizer/v2/LDBCYGXVXFAHZCPYPHTWN4VJJY.JPG?auth=b69e8679ee27241070c41065d316a59aabd8d2af6062766a67c1332eccd93ef4&width=300","version":0,"template_id":620},"address":{"locality":"Estacada","region":"Oregon"},"auth":{"1":"b69e8679ee27241070c41065d316a59aabd8d2af6062766a67c1332eccd93ef4"},"caption":"A burned house near the Riverside fire on September 14, 2020 in Estacada, Oregon. Some residents chose to return to their homes as favorable weather helped slow the fireÕs spread.","copyright":"Copyright OPB","created_date":"2020-09-15T06:02:58Z","credits":{"affiliation":[{"name":"OPB","type":"author"}],"by":[{"byline":"Jonathan Levinson","name":"Jonathan Levinson","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":2000,"image_type":"photograph","last_updated_date":"2020-09-15T06:02:58Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Clackamas Wildfires","taxonomy":{},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/LDBCYGXVXFAHZCPYPHTWN4VJJY.JPG","version":"0.10.9","width":3000},"4":{"_id":"NBXNOBASW5GXBA7Y4KK6TKECJY","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/NBXNOBASW5GXBA7Y4KK6TKECJY.jpg?auth=f6eac906562fe2bba431b8a00cb2746cbd4147e0ecc85d813d83bc7836b9614d","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","keywords":["proud boys","alan swinney","protests"],"mime_type":"image/jpeg","originalName":"Alan Swinney.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/NBXNOBASW5GXBA7Y4KK6TKECJY.jpg","owner":"rhaas@opb.org","proxyUrl":"/resizer/v2/NBXNOBASW5GXBA7Y4KK6TKECJY.jpg?auth=f6eac906562fe2bba431b8a00cb2746cbd4147e0ecc85d813d83bc7836b9614d","published":true,"resizeUrl":"/resizer/v2/NBXNOBASW5GXBA7Y4KK6TKECJY.jpg?auth=f6eac906562fe2bba431b8a00cb2746cbd4147e0ecc85d813d83bc7836b9614d","restricted":false,"thumbnailResizeUrl":"/resizer/v2/NBXNOBASW5GXBA7Y4KK6TKECJY.jpg?auth=f6eac906562fe2bba431b8a00cb2746cbd4147e0ecc85d813d83bc7836b9614d&width=300","version":0,"template_id":620},"address":{},"auth":{"1":"f6eac906562fe2bba431b8a00cb2746cbd4147e0ecc85d813d83bc7836b9614d"},"caption":"Alan Swinney, a demonstrator who has engaged in violence, appeared at a Gresham rally Aug. 26, 2020, four days after pulling a gun on demonstrators in Portland. Swinney carried a paintball gun and a handgun at the Gresham rally.","copyright":"Copyright OPB","created_date":"2020-08-27T04:16:40Z","credits":{"affiliation":[{"name":"OPB","type":"author"}],"by":[{"_id":"Sergio Olmos","additional_properties":{"original":{"_id":"Sergio Olmos","firstName":"Sergio","lastName":"Olmos","byline":"Sergio Olmos","role":"Reporter","image":"","email":"solmos@opb.org","affiliations":"OPB","education":[],"awards":[],"books":[],"podcasts":[],"bio_page":"","bio":"","longBio":"","slug":"Sergio-Olmos","native_app_rendering":false,"fuzzy_match":false,"contributor":false,"status":true,"last_updated_date":"2020-08-06T16:11:57.453Z"}},"name":"Sergio Olmos","type":"author","url":"","description":"","image":{"url":"","version":"0.5.8"},"slug":"Sergio-Olmos","socialLinks":[{"site":"email","url":"solmos@opb.org","deprecated":true,"deprecation_msg":"Please use social_links."}],"social_links":[{"site":"email","url":"solmos@opb.org"}],"version":"0.5.8"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":881,"image_type":"photograph","last_updated_date":"2020-08-27T04:16:40Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Alan Swinney Gresham Protest Aug. 26, 2020","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/NBXNOBASW5GXBA7Y4KK6TKECJY.jpg","version":"0.10.9","width":1345,"syndication":{},"creditIPTC":"OPB"},"5":{"_id":"CQDI3I26WFGZFIVBB2RX3QBENI","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/CQDI3I26WFGZFIVBB2RX3QBENI.jpg?auth=532cc2842ab45c5197e2681de1600efd4a11ab9a04e8ae7a4e35f830e2d3bb3c","galleries":[],"ingestionMethod":"manual","iptc_source":"Courtesy of the artist","keywords":["khruangbin"],"mime_type":"image/jpeg","originalName":"Khruangbin_byTamsinIsaacs-scaled.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/CQDI3I26WFGZFIVBB2RX3QBENI.jpg","owner":"dchristensen@opb.org","proxyUrl":"/resizer/v2/CQDI3I26WFGZFIVBB2RX3QBENI.jpg?auth=532cc2842ab45c5197e2681de1600efd4a11ab9a04e8ae7a4e35f830e2d3bb3c","published":true,"resizeUrl":"/resizer/v2/CQDI3I26WFGZFIVBB2RX3QBENI.jpg?auth=532cc2842ab45c5197e2681de1600efd4a11ab9a04e8ae7a4e35f830e2d3bb3c","restricted":true,"thumbnailResizeUrl":"/resizer/v2/CQDI3I26WFGZFIVBB2RX3QBENI.jpg?auth=532cc2842ab45c5197e2681de1600efd4a11ab9a04e8ae7a4e35f830e2d3bb3c&width=300","version":3,"template_id":620},"address":{},"auth":{"1":"532cc2842ab45c5197e2681de1600efd4a11ab9a04e8ae7a4e35f830e2d3bb3c"},"caption":"Houston band Khruangbin released \"Mordecai\" in June 2020","copyright":"Courtesy of the artist","created_date":"2020-09-04T17:20:20Z","credits":{"affiliation":[{"name":"Courtesy of the artist","type":"author"}],"by":[{"byline":"Tamsin Isaacs","name":"Tamsin Isaacs","type":"author"}]},"distributor":{"category":"handout","id":"7835069c-3dc4-47da-8160-8065a6637144","name":"Acquired (Handout)","subcategory":"Acquired (Handout)","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:28:32.550Z","createdBy":"hyoung@opb.org","description":"Acquired media from other sources.","modifiedAt":"2020-06-19T15:03:27.639Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"geo":{},"height":1696,"image_type":"photograph","last_updated_date":"2020-09-04T17:30:07Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"Acquired (Handout)","source_type":"handout","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Houston band Khruangbin/2020 press photo","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/CQDI3I26WFGZFIVBB2RX3QBENI.jpg","version":"0.10.9","width":2560,"syndication":{},"creditIPTC":"Courtesy of the artist"},"6":{"_id":"ERDKBP2MMVANPBHNOMEDM3SPWA","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/ERDKBP2MMVANPBHNOMEDM3SPWA.JPG?auth=a1ed6e9771d99f9472e9df0ab3632f2162ea252a39494c52c0c09546380d876e","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","iptc_title":"Reporter/Produer","keywords":[""],"mime_type":"image/jpeg","originalName":"20200910_JDL_Fires_015.JPG","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/ERDKBP2MMVANPBHNOMEDM3SPWA.JPG","owner":"jlevinson@opb.org","proxyUrl":"/resizer/v2/ERDKBP2MMVANPBHNOMEDM3SPWA.JPG?auth=a1ed6e9771d99f9472e9df0ab3632f2162ea252a39494c52c0c09546380d876e","published":true,"resizeUrl":"/resizer/v2/ERDKBP2MMVANPBHNOMEDM3SPWA.JPG?auth=a1ed6e9771d99f9472e9df0ab3632f2162ea252a39494c52c0c09546380d876e","restricted":false,"takenOn":"2020-09-11T02:44:58Z","thumbnailResizeUrl":"/resizer/v2/ERDKBP2MMVANPBHNOMEDM3SPWA.JPG?auth=a1ed6e9771d99f9472e9df0ab3632f2162ea252a39494c52c0c09546380d876e&width=300","version":0,"template_id":620},"address":{"locality":"Malalla","region":"Oregon"},"auth":{"1":"a1ed6e9771d99f9472e9df0ab3632f2162ea252a39494c52c0c09546380d876e"},"caption":"Four wildfires continued gaining ground and firefighters worried that two would soon merge in Clackamah County on September 10, 2020.","copyright":"Copyright OPB","created_date":"2020-09-11T08:44:48Z","credits":{"affiliation":[{"name":"OPB","type":"author"}],"by":[{"byline":"Jonathan Levinson","name":"Jonathan Levinson","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":2000,"image_type":"photograph","last_updated_date":"2020-09-11T08:44:48Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Clackamas Wildfires","taxonomy":{},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/ERDKBP2MMVANPBHNOMEDM3SPWA.JPG","version":"0.10.9","width":3000},"7":{"_id":"YHY4SKQVJFF6TN5H3ODO3LEILA","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/YHY4SKQVJFF6TN5H3ODO3LEILA.JPG?auth=cca6e61146589bc64c475415d4adfd6ed446e3f20b642f658e1eff2a6a984982","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","iptc_title":"Reporter/Produer","keywords":[""],"mime_type":"image/jpeg","originalName":"20200905_JDL_GeorgeFloyd_011.JPG","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/YHY4SKQVJFF6TN5H3ODO3LEILA.JPG","owner":"jlevinson@opb.org","proxyUrl":"/resizer/v2/YHY4SKQVJFF6TN5H3ODO3LEILA.JPG?auth=cca6e61146589bc64c475415d4adfd6ed446e3f20b642f658e1eff2a6a984982","published":true,"resizeUrl":"/resizer/v2/YHY4SKQVJFF6TN5H3ODO3LEILA.JPG?auth=cca6e61146589bc64c475415d4adfd6ed446e3f20b642f658e1eff2a6a984982","restricted":false,"takenOn":"2020-09-06T05:47:26Z","thumbnailResizeUrl":"/resizer/v2/YHY4SKQVJFF6TN5H3ODO3LEILA.JPG?auth=cca6e61146589bc64c475415d4adfd6ed446e3f20b642f658e1eff2a6a984982&width=300","version":0,"template_id":620},"address":{"locality":"Portland","region":"Oregon"},"auth":{"1":"cca6e61146589bc64c475415d4adfd6ed446e3f20b642f658e1eff2a6a984982"},"caption":"On the 100th consecutive night of mass protests against systemic racism and police brutality in Portland, protesters gathered in East Portland and clashed with police for hours. Police, who arrested 59 people throughout the night, declared the gathering a riot after a demonstrator threw a Molotov cocktail at the police.","copyright":"Copyright OPB","created_date":"2020-09-07T01:13:19Z","credits":{"affiliation":[{"name":"OPB","type":"author"}],"by":[{"byline":"Jonathan Levinson","name":"Jonathan Levinson","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":2000,"image_type":"photograph","last_updated_date":"2020-09-07T01:13:19Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Protests Day 100","taxonomy":{},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/YHY4SKQVJFF6TN5H3ODO3LEILA.JPG","version":"0.10.9","width":3000},"8":{"_id":"U2KIXRYFA7YQB6S3ASLUKJ6HCM","additional_properties":{"expiration_date":"2020-11-09T15:28:50Z","fullSizeResizeUrl":"/resizer/v2/U2KIXRYFA7YQB6S3ASLUKJ6HCM.jpg?auth=ac5f110d56370c16b720ba562496fea4e5e946a703a36476e0501aaa2c5a76a3","galleries":[],"mime_type":"image/jpeg","originalName":"https://media.npr.org/assets/img/2020/09/10/ap_20235622355098_wide-89d9985a09c008e39c8b1bfe0b2867bf557b37ba.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/U2KIXRYFA7YQB6S3ASLUKJ6HCM.jpg","proxyUrl":"/resizer/v2/U2KIXRYFA7YQB6S3ASLUKJ6HCM.jpg?auth=ac5f110d56370c16b720ba562496fea4e5e946a703a36476e0501aaa2c5a76a3","published":true,"resizeUrl":"/resizer/v2/U2KIXRYFA7YQB6S3ASLUKJ6HCM.jpg?auth=ac5f110d56370c16b720ba562496fea4e5e946a703a36476e0501aaa2c5a76a3","restricted":false,"thumbnailResizeUrl":"/resizer/v2/U2KIXRYFA7YQB6S3ASLUKJ6HCM.jpg?auth=ac5f110d56370c16b720ba562496fea4e5e946a703a36476e0501aaa2c5a76a3&width=300","version":1},"auth":{"1":"ac5f110d56370c16b720ba562496fea4e5e946a703a36476e0501aaa2c5a76a3"},"caption":"Postmaster General Louis DeJoy says it's his \"sacred duty\" to ensure election mail delivery this fall.","created_date":"2020-09-10T15:28:51Z","credits":{"affiliation":[{"name":"AP","type":"author"}],"by":[{"name":"Rick Bowmer","type":"author"}]},"distributor":{"category":"wires","id":"0f128356-b848-4514-9a31-d22da4702ab4","name":"NPR","subcategory":"NPR","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:07:09.834Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2021-09-28T18:39:21.656Z","modifiedBy":"schleicherj@washpost.com","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":3037,"last_updated_date":"2020-09-10T21:02:59Z","licensable":false,"owner":{"id":"opb"},"source":{"name":"NPR","source_type":"wires","additional_properties":{"editor":"photo center"},"system":"arc i/o"},"subtitle":"Postmaster General Louis DeJoy says it's his \"sacred duty\" to ensure election mail delivery this fall.","type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/U2KIXRYFA7YQB6S3ASLUKJ6HCM.jpg","version":"0.10.9","width":5400},"9":{"_id":"2XCHBBZ6QJD2FLTSK6PM37VDIA","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/2XCHBBZ6QJD2FLTSK6PM37VDIA.jpg?auth=f9fa0a0060335e21285f390882f29dd8780aa81c73ac7e5f499e568c31adf199","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","keywords":[""],"mime_type":"image/jpeg","originalName":"JL104095.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/2XCHBBZ6QJD2FLTSK6PM37VDIA.jpg","owner":"rhaas@opb.org","proxyUrl":"/resizer/v2/2XCHBBZ6QJD2FLTSK6PM37VDIA.jpg?auth=f9fa0a0060335e21285f390882f29dd8780aa81c73ac7e5f499e568c31adf199","published":true,"resizeUrl":"/resizer/v2/2XCHBBZ6QJD2FLTSK6PM37VDIA.jpg?auth=f9fa0a0060335e21285f390882f29dd8780aa81c73ac7e5f499e568c31adf199","restricted":false,"takenOn":"2020-09-09T12:50:49Z","thumbnailResizeUrl":"/resizer/v2/2XCHBBZ6QJD2FLTSK6PM37VDIA.jpg?auth=f9fa0a0060335e21285f390882f29dd8780aa81c73ac7e5f499e568c31adf199&width=300","version":0,"template_id":620},"address":{},"auth":{"1":"f9fa0a0060335e21285f390882f29dd8780aa81c73ac7e5f499e568c31adf199"},"caption":"Kyle and Kernia St. Clair, along with their son Bowdy, prepared to leave Molalla on Wednesday, Sept. 9, 2020 as fires spread through Clackamas County","copyright":"Copyright OPB","created_date":"2020-09-09T20:40:03Z","credits":{"affiliation":[],"by":[{"_id":"jonathan-levinson","additional_properties":{"original":{"_id":"jonathan-levinson","slug":"jonathan-levinson","byline":"Jonathan Levinson","firstName":"Jonathan","lastName":"Levinson","role":"Reporter/Producer","longBio":"<p>Jonathan Levinson is a multimedia reporter covering policing for Oregon Public Broadcasting. <br /> <br />Previously, he covered Mexico as a freelancer. His radio work has appeared on NPR, Marketplace and the CBC. His photography has been featured in ESPN, The Washington Post and Bloomberg News. He has been a guest on CNN, PBS Newshour and MSNBC.<br /> <br />Jonathan spent five years as an infantry officer in the U.S. Army and has a master&rsquo;s degree in international affairs from Columbia University.<br /> <br />Send Jonathan the best story ideas.","bio_page":"/author/jonathan-levinson","affiliations":"OPB","status":true,"email":"jlevinson@opb.org","twitter":"@_jlevinson","instagram":"jonathanlevinson","last_updated_date":"2022-02-11T23:39:30.663Z","books":[],"podcasts":[],"education":[],"awards":[],"image":"https://s3.amazonaws.com/arc-authors/opb/ed9391fa-0aa3-46e5-8526-97cca2c2d8ad.png"}},"name":"Jonathan Levinson","type":"author","url":"/author/jonathan-levinson","image":{"url":"https://s3.amazonaws.com/arc-authors/opb/ed9391fa-0aa3-46e5-8526-97cca2c2d8ad.png","version":"0.5.8"},"slug":"jonathan-levinson","socialLinks":[{"site":"email","url":"jlevinson@opb.org","deprecated":true,"deprecation_msg":"Please use social_links."},{"site":"twitter","url":"@_jlevinson","deprecated":true,"deprecation_msg":"Please use social_links."},{"site":"instagram","url":"jonathanlevinson","deprecated":true,"deprecation_msg":"Please use social_links."}],"social_links":[{"site":"email","url":"jlevinson@opb.org"},{"site":"twitter","url":"@_jlevinson"},{"site":"instagram","url":"jonathanlevinson"}],"version":"0.5.8"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":1080,"image_type":"photograph","last_updated_date":"2020-09-09T20:40:03Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"20200909_JDL_ClackamasFires","taxonomy":{},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/2XCHBBZ6QJD2FLTSK6PM37VDIA.jpg","version":"0.10.9","width":1616},"10":{"_id":"URTIFOGWYCU5AJVUDGZK54U2TM","additional_properties":{"expiration_date":"2020-11-08T17:25:41Z","fullSizeResizeUrl":"/resizer/v2/URTIFOGWYCU5AJVUDGZK54U2TM.jpg?auth=6a3c3794a7bc39a66dd40bdf380c815ad8b6f2471ec09cf55ab7dfd661c1da23","galleries":[],"mime_type":"image/jpeg","originalName":"https://media.npr.org/assets/img/2020/09/09/gettyimages-1228410829_wide-fcd0a32a0042600e410ee6dd2b0e9eda911c0292.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/URTIFOGWYCU5AJVUDGZK54U2TM.jpg","proxyUrl":"/resizer/v2/URTIFOGWYCU5AJVUDGZK54U2TM.jpg?auth=6a3c3794a7bc39a66dd40bdf380c815ad8b6f2471ec09cf55ab7dfd661c1da23","published":true,"resizeUrl":"/resizer/v2/URTIFOGWYCU5AJVUDGZK54U2TM.jpg?auth=6a3c3794a7bc39a66dd40bdf380c815ad8b6f2471ec09cf55ab7dfd661c1da23","restricted":false,"thumbnailResizeUrl":"/resizer/v2/URTIFOGWYCU5AJVUDGZK54U2TM.jpg?auth=6a3c3794a7bc39a66dd40bdf380c815ad8b6f2471ec09cf55ab7dfd661c1da23&width=300","version":1},"auth":{"1":"6a3c3794a7bc39a66dd40bdf380c815ad8b6f2471ec09cf55ab7dfd661c1da23"},"caption":"President Trump addresses a supporters Tuesday at a campaign rally in Winston Salem, N.C.","created_date":"2020-09-09T17:25:42Z","credits":{"affiliation":[{"name":"Getty Images","type":"author"}],"by":[{"name":"Sean Rayford","type":"author"}]},"distributor":{"category":"wires","id":"0f128356-b848-4514-9a31-d22da4702ab4","name":"NPR","subcategory":"NPR","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:07:09.834Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2021-09-28T18:39:21.656Z","modifiedBy":"schleicherj@washpost.com","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":3223,"last_updated_date":"2020-09-09T21:06:15Z","licensable":false,"owner":{"id":"opb"},"source":{"name":"NPR","source_type":"wires","additional_properties":{"editor":"photo center"},"system":"arc i/o"},"subtitle":"President Trump addresses a supporters Tuesday at a campaign rally in Winston Salem, N.C.","type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/URTIFOGWYCU5AJVUDGZK54U2TM.jpg","version":"0.10.9","width":5730},"11":{"_id":"GKQVJ5O3ZREEHJYWO6HEUYFIXI","additional_properties":{"countryId":227,"fullSizeResizeUrl":"/resizer/v2/GKQVJ5O3ZREEHJYWO6HEUYFIXI.jpg?auth=041d3e04b284a2ac2cf7b5e7908e22fa8a6358a9f6f7c424d2b9f63fa1fbe3a2","galleries":[],"ingestionMethod":"manual","iptc_job_identifier":"VCRD106","iptc_source":"The Canadian Press","iptc_title":"SUB","keywords":["b.c.","british columbia","canada","canadian","coronavirus","covid-19","cppixbc","cppixbritishcolumbia","cppixvancouver","infection","pandemic","respiratory","vancouver"],"mime_type":"image/jpeg","originalName":"AP_20187843012408.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/GKQVJ5O3ZREEHJYWO6HEUYFIXI.jpg","owner":"bvance@opb.org","proxyUrl":"/resizer/v2/GKQVJ5O3ZREEHJYWO6HEUYFIXI.jpg?auth=041d3e04b284a2ac2cf7b5e7908e22fa8a6358a9f6f7c424d2b9f63fa1fbe3a2","published":true,"resizeUrl":"/resizer/v2/GKQVJ5O3ZREEHJYWO6HEUYFIXI.jpg?auth=041d3e04b284a2ac2cf7b5e7908e22fa8a6358a9f6f7c424d2b9f63fa1fbe3a2","restricted":true,"takenOn":"2020-07-05T19:45:32Z","thumbnailResizeUrl":"/resizer/v2/GKQVJ5O3ZREEHJYWO6HEUYFIXI.jpg?auth=041d3e04b284a2ac2cf7b5e7908e22fa8a6358a9f6f7c424d2b9f63fa1fbe3a2&width=300","usage_instructions":"MANDATORY CREDIT","version":0,"template_id":620},"address":{"locality":"BLAINE","region":"WA","country_name":"USA"},"auth":{"1":"041d3e04b284a2ac2cf7b5e7908e22fa8a6358a9f6f7c424d2b9f63fa1fbe3a2"},"caption":"Kim Burns, center, of Maple Ridge, British Columbia, pulls a wagon with a Canadian flag cornhole game while walking to meet her fiance, Jeff Steiner, right, of Marysville, Wash., as his son Gabe Steiner carries the U.S. flag portion of the game, at Peace Arch Historical State Park in Blaine, Wash., across the Canada-U.S. border from Surrey, British Columbia, Sunday, July 5, 2020. Although the B.C. government closed the Canadian side of the park in June due to concerns about crowding and COVID-19, people are still able to meet in the U.S. park due to a treaty signed in 1814 that allows citizens of Canada and the U.S. to unite in the park without technically crossing any border.","copyright":"Copyright AP","created_date":"2020-08-20T16:59:53Z","credits":{"affiliation":[{"name":"The Canadian Press via AP)","type":"author"}],"by":[{"byline":"DARRYL DYCK","name":"DARRYL DYCK","type":"author"}]},"distributor":{"category":"wires","id":"28dbd3a6-70fb-48bd-ad0b-0847777579c7","name":"AP","subcategory":"AP","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:05:31.885Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2020-07-15T18:05:31.885Z","modifiedBy":"alee@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":3999,"image_type":"photograph","last_updated_date":"2020-08-20T16:59:53Z","licensable":false,"owner":{"id":"opb","sponsored":false},"slug":"Virus Outbreak Canada US Border","source":{"name":"AP","source_type":"wires","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Peace Arch","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/GKQVJ5O3ZREEHJYWO6HEUYFIXI.jpg","version":"0.10.9","width":6000,"syndication":{},"creditIPTC":"The Canadian Press via AP)","country_name":"United States"},"12":{"_id":"LN7P3KMVYZGBLP6RSHQEZFAOO4","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/LN7P3KMVYZGBLP6RSHQEZFAOO4.jpg?auth=837db4982e795bc22962bb4bf69f6c3b8ea38f61821e1dad7c1b82e6d81126fa","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","iptc_title":"Digital Producer","keywords":[""],"mime_type":"image/jpeg","originalName":"20190126_clark-county-public-health_BP-3.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/LN7P3KMVYZGBLP6RSHQEZFAOO4.jpg","owner":"bparks@opb.org","proxyUrl":"/resizer/v2/LN7P3KMVYZGBLP6RSHQEZFAOO4.jpg?auth=837db4982e795bc22962bb4bf69f6c3b8ea38f61821e1dad7c1b82e6d81126fa","published":true,"resizeUrl":"/resizer/v2/LN7P3KMVYZGBLP6RSHQEZFAOO4.jpg?auth=837db4982e795bc22962bb4bf69f6c3b8ea38f61821e1dad7c1b82e6d81126fa","restricted":false,"takenOn":"2019-01-26T13:29:45Z","thumbnailResizeUrl":"/resizer/v2/LN7P3KMVYZGBLP6RSHQEZFAOO4.jpg?auth=837db4982e795bc22962bb4bf69f6c3b8ea38f61821e1dad7c1b82e6d81126fa&width=300","version":0,"template_id":620},"address":{"street_address":"Clark County Center For Communit","locality":"Vancouver","region":"Washington"},"auth":{"1":"837db4982e795bc22962bb4bf69f6c3b8ea38f61821e1dad7c1b82e6d81126fa"},"caption":"The Clark County Center for Community Health in Vancouver, Wash., is pictured Saturday, Jan. 26, 2019. A measles outbreak in Clark County led to dozens of cases of the preventable disease.","copyright":"Copyright OPB","created_date":"2020-08-12T20:17:50Z","credits":{"affiliation":[{"name":"OPB","type":"author"}],"by":[{"byline":"Bradley W. Parks","name":"Bradley W. Parks","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":2000,"image_type":"photograph","last_updated_date":"2020-08-12T20:17:50Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Measles outbreak","taxonomy":{},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/LN7P3KMVYZGBLP6RSHQEZFAOO4.jpg","version":"0.10.9","width":3000},"13":{"_id":"C6OYIRJDOFELTKLOJ24R2HGSYA","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/C6OYIRJDOFELTKLOJ24R2HGSYA.jpg?auth=72be0531aa92bac980f669838bea7b261547857737615acc4e51b0cd32cf0d60","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","iptc_title":"Reporter","keywords":["linn county","wildfire"],"mime_type":"image/jpeg","originalName":"20200908_santiam-canyon-fire_BP624.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/C6OYIRJDOFELTKLOJ24R2HGSYA.jpg","owner":"bparks@opb.org","proxyUrl":"/resizer/v2/C6OYIRJDOFELTKLOJ24R2HGSYA.jpg?auth=72be0531aa92bac980f669838bea7b261547857737615acc4e51b0cd32cf0d60","published":true,"resizeUrl":"/resizer/v2/C6OYIRJDOFELTKLOJ24R2HGSYA.jpg?auth=72be0531aa92bac980f669838bea7b261547857737615acc4e51b0cd32cf0d60","restricted":false,"takenOn":"2020-09-09T01:25:49Z","thumbnailResizeUrl":"/resizer/v2/C6OYIRJDOFELTKLOJ24R2HGSYA.jpg?auth=72be0531aa92bac980f669838bea7b261547857737615acc4e51b0cd32cf0d60&width=300","version":0,"template_id":620},"address":{"locality":"Woodburn","region":"Oregon"},"auth":{"1":"72be0531aa92bac980f669838bea7b261547857737615acc4e51b0cd32cf0d60"},"caption":"A plume of smoke from a wildfire joins the large black cloud of wildfire smoke over Woodburn, Ore., Sept. 8, 2020. Unprecedented wildfire conditions across Oregon and the American West kicked up several fires over Labor Day weekend.","copyright":"Copyright OPB","created_date":"2020-09-09T06:07:54Z","credits":{"affiliation":[{"name":"OPB","type":"author"}],"by":[{"byline":"Bradley W. Parks","name":"Bradley W. Parks","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":2000,"image_type":"photograph","last_updated_date":"2020-09-09T06:07:54Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Santiam Canyon Fire","taxonomy":{},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/C6OYIRJDOFELTKLOJ24R2HGSYA.jpg","version":"0.10.9","width":3000},"14":{"_id":"3HN3Q57QQOPFG64MMQ5G36T5NU","additional_properties":{"expiration_date":"2020-11-05T18:03:01Z","fullSizeResizeUrl":"/resizer/v2/3HN3Q57QQOPFG64MMQ5G36T5NU.jpg?auth=14f98411b5fbd6b37b4e5ea7813f972abb9d04e74fed7400095ab89681d123b0","galleries":[],"mime_type":"image/jpeg","originalName":"https://media.npr.org/assets/img/2019/09/06/mabiland_wide-2b5c5d269fe2662ab2533c4173deafbcf7d1dbb5.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/3HN3Q57QQOPFG64MMQ5G36T5NU.jpg","proxyUrl":"/resizer/v2/3HN3Q57QQOPFG64MMQ5G36T5NU.jpg?auth=14f98411b5fbd6b37b4e5ea7813f972abb9d04e74fed7400095ab89681d123b0","published":true,"resizeUrl":"/resizer/v2/3HN3Q57QQOPFG64MMQ5G36T5NU.jpg?auth=14f98411b5fbd6b37b4e5ea7813f972abb9d04e74fed7400095ab89681d123b0","restricted":false,"thumbnailResizeUrl":"/resizer/v2/3HN3Q57QQOPFG64MMQ5G36T5NU.jpg?auth=14f98411b5fbd6b37b4e5ea7813f972abb9d04e74fed7400095ab89681d123b0&width=300","version":1},"auth":{"1":"14f98411b5fbd6b37b4e5ea7813f972abb9d04e74fed7400095ab89681d123b0"},"caption":"\"To hear that voice and understand the power of someone who could put her soul into her voice like that — for me, that is Ella,\" Mabiland explains.","created_date":"2020-09-06T18:03:03Z","credits":{"affiliation":[{"name":"Courtesy of the artist","type":"author"}],"by":[{"name":"Misael Belt ","type":"author"}]},"distributor":{"category":"wires","id":"0f128356-b848-4514-9a31-d22da4702ab4","name":"NPR","subcategory":"NPR","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:07:09.834Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2021-09-28T18:39:21.656Z","modifiedBy":"schleicherj@washpost.com","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":2052,"last_updated_date":"2020-09-10T23:11:42Z","licensable":false,"owner":{"id":"opb"},"source":{"name":"NPR","source_type":"wires","additional_properties":{"editor":"photo center"},"system":"arc i/o"},"subtitle":"\"To hear that voice and understand the power of someone who could put her soul into her voice like that — for me, that is Ella,\" Mabiland explains.","type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/3HN3Q57QQOPFG64MMQ5G36T5NU.jpg","version":"0.10.9","width":3647},"15":{"_id":"ASZQVUGVYVB7ZIHCBLQGMJXX44","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/ASZQVUGVYVB7ZIHCBLQGMJXX44.jpeg?auth=4724762dbf6f8fe8526ecbe85bc7a316c284a4a2ca0093d33e85b1d203a889df","galleries":[],"ingestionMethod":"manual","iptc_source":"Anthony Brisson","keywords":[""],"mime_type":"image/jpeg","originalName":"IMG_3903.jpeg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/ASZQVUGVYVB7ZIHCBLQGMJXX44.jpeg","owner":"bvance@opb.org","proxyUrl":"/resizer/v2/ASZQVUGVYVB7ZIHCBLQGMJXX44.jpeg?auth=4724762dbf6f8fe8526ecbe85bc7a316c284a4a2ca0093d33e85b1d203a889df","published":true,"resizeUrl":"/resizer/v2/ASZQVUGVYVB7ZIHCBLQGMJXX44.jpeg?auth=4724762dbf6f8fe8526ecbe85bc7a316c284a4a2ca0093d33e85b1d203a889df","restricted":false,"takenOn":"2020-05-24T03:16:48Z","thumbnailResizeUrl":"/resizer/v2/ASZQVUGVYVB7ZIHCBLQGMJXX44.jpeg?auth=4724762dbf6f8fe8526ecbe85bc7a316c284a4a2ca0093d33e85b1d203a889df&width=300","version":0,"template_id":620},"address":{},"auth":{"1":"4724762dbf6f8fe8526ecbe85bc7a316c284a4a2ca0093d33e85b1d203a889df"},"caption":"Lisa Schonberg makes a field recording at Ainsworth bluffs in Portland, Ore.","copyright":"Copyright Anthony Brisson","created_date":"2020-08-03T17:51:52Z","credits":{"affiliation":[],"by":[{"byline":"Anthony Brisson","name":"Anthony Brisson","type":"author"}]},"distributor":{"category":"handout","id":"7835069c-3dc4-47da-8160-8065a6637144","name":"Acquired (Handout)","subcategory":"Acquired (Handout)","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:28:32.550Z","createdBy":"hyoung@opb.org","description":"Acquired media from other sources.","modifiedAt":"2020-06-19T15:03:27.639Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":4032,"image_type":"photograph","last_updated_date":"2020-08-03T17:51:52Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"Acquired (Handout)","source_type":"handout","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Lisa Schonberg","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/ASZQVUGVYVB7ZIHCBLQGMJXX44.jpeg","version":"0.10.9","width":3024,"syndication":{}},"16":{"_id":"R4T6QZCN4NEJXALZHJ5CYQRNZ4","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/R4T6QZCN4NEJXALZHJ5CYQRNZ4.jpg?auth=bd429dfdcbbcd84732655b1f25b811c9755b7af8369b2c367c9fc8adeebb7de1","galleries":[],"ingestionMethod":"manual","iptc_source":"U.S. Senate","mime_type":"image/jpeg","originalName":"slade_gorton_cropped.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/R4T6QZCN4NEJXALZHJ5CYQRNZ4.jpg","owner":"csherwood@opb.org","proxyUrl":"/resizer/v2/R4T6QZCN4NEJXALZHJ5CYQRNZ4.jpg?auth=bd429dfdcbbcd84732655b1f25b811c9755b7af8369b2c367c9fc8adeebb7de1","published":true,"resizeUrl":"/resizer/v2/R4T6QZCN4NEJXALZHJ5CYQRNZ4.jpg?auth=bd429dfdcbbcd84732655b1f25b811c9755b7af8369b2c367c9fc8adeebb7de1","restricted":false,"thumbnailResizeUrl":"/resizer/v2/R4T6QZCN4NEJXALZHJ5CYQRNZ4.jpg?auth=bd429dfdcbbcd84732655b1f25b811c9755b7af8369b2c367c9fc8adeebb7de1&width=300","version":0,"template_id":620},"address":{},"auth":{"1":"bd429dfdcbbcd84732655b1f25b811c9755b7af8369b2c367c9fc8adeebb7de1"},"caption":"Former U.S. Sen. Slade Gorton has died at the age of 92. A Republican, he served three terms in the Senate. He was also a state lawmaker and three-term state attorney general.","copyright":"Copyright OPB","created_date":"2020-08-19T17:12:59Z","credits":{"affiliation":[],"by":[{"byline":"U.S. Senate","name":"U.S. Senate","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":791,"image_type":"photograph","last_updated_date":"2020-08-19T17:12:59Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Former U.S. Sen. Slade Gorton has died at the age of 92. A Republican, he served three terms in the Senate. He was also a state lawmaker and three-term state attorney general.","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/R4T6QZCN4NEJXALZHJ5CYQRNZ4.jpg","version":"0.10.9","width":763,"syndication":{}},"17":{"_id":"QAAAIOXBIJCGLHPINEDURWXMTI","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/QAAAIOXBIJCGLHPINEDURWXMTI.png?auth=c79f3c9ca3e3dc88da382b443f5d7bd01b90f2cc2c166026a43e8d173482a2ff","galleries":[],"ingestionMethod":"manual","iptc_source":"¡Salud!","keywords":[],"mime_type":"image/png","originalName":"salud3.png","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/QAAAIOXBIJCGLHPINEDURWXMTI.png","owner":"afrost@opb.org","proxyUrl":"/resizer/v2/QAAAIOXBIJCGLHPINEDURWXMTI.png?auth=c79f3c9ca3e3dc88da382b443f5d7bd01b90f2cc2c166026a43e8d173482a2ff","published":true,"resizeUrl":"/resizer/v2/QAAAIOXBIJCGLHPINEDURWXMTI.png?auth=c79f3c9ca3e3dc88da382b443f5d7bd01b90f2cc2c166026a43e8d173482a2ff","restricted":false,"thumbnailResizeUrl":"/resizer/v2/QAAAIOXBIJCGLHPINEDURWXMTI.png?auth=c79f3c9ca3e3dc88da382b443f5d7bd01b90f2cc2c166026a43e8d173482a2ff&width=300","version":3,"template_id":620},"address":{},"auth":{"1":"c79f3c9ca3e3dc88da382b443f5d7bd01b90f2cc2c166026a43e8d173482a2ff"},"caption":"¡Salud! provides healthcare, including coronavirus screening and follow up care, to vineyard workers","copyright":"Copyright OPB","created_date":"2020-08-28T21:23:21Z","credits":{"by":[{"byline":"courtesy ¡Salud!","name":"courtesy ¡Salud!","type":"author"}]},"distributor":{"category":"staff","mode":"custom","name":"OPB"},"geo":{},"height":448,"image_type":"photograph","last_updated_date":"2020-08-28T21:28:48Z","licensable":false,"owner":{"id":"opb","sponsored":false},"related_content":{"derivative_of":[{"referent":{"id":"3S76UCF32VH5NKP5ZKRH235W7U","type":"image"},"type":"reference"}]},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Salud: healthcare for vineyard workers","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/QAAAIOXBIJCGLHPINEDURWXMTI.png","version":"0.10.9","width":597,"syndication":{}},"18":{"_id":"P3APOHYBBZDETHHXNRUGPQXCAQ","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/P3APOHYBBZDETHHXNRUGPQXCAQ.jpeg?auth=cfc189a3f1716f0932afdc27611e41129613a24137b5e006ff27d8f9c527ada0","galleries":[],"ingestionMethod":"manual","iptc_source":"InciWeb","mime_type":"image/jpeg","originalName":"mosierfire.jpeg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/P3APOHYBBZDETHHXNRUGPQXCAQ.jpeg","owner":"dstuckey@opb.org","proxyUrl":"/resizer/v2/P3APOHYBBZDETHHXNRUGPQXCAQ.jpeg?auth=cfc189a3f1716f0932afdc27611e41129613a24137b5e006ff27d8f9c527ada0","published":true,"resizeUrl":"/resizer/v2/P3APOHYBBZDETHHXNRUGPQXCAQ.jpeg?auth=cfc189a3f1716f0932afdc27611e41129613a24137b5e006ff27d8f9c527ada0","restricted":false,"thumbnailResizeUrl":"/resizer/v2/P3APOHYBBZDETHHXNRUGPQXCAQ.jpeg?auth=cfc189a3f1716f0932afdc27611e41129613a24137b5e006ff27d8f9c527ada0&width=300","version":0,"template_id":620},"address":{},"alt_text":"Mosier fire continues.","auth":{"1":"cfc189a3f1716f0932afdc27611e41129613a24137b5e006ff27d8f9c527ada0"},"caption":"A firefighter works during the Mosier Creek in Bend, Oregon.","copyright":"Copyright OPB","created_date":"2020-08-17T22:29:33Z","credits":{"affiliation":[{"name":"InciWeb","type":"author"}],"by":[{"byline":"InciWeb","name":"InciWeb","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":4000,"image_type":"photograph","last_updated_date":"2020-08-17T22:29:33Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Fire resources","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/P3APOHYBBZDETHHXNRUGPQXCAQ.jpeg","version":"0.10.9","width":6000,"syndication":{},"creditIPTC":"InciWeb"},"19":{"_id":"OW2PCUK5DJF7NM2SPW2HGQ7ITY","additional_properties":{"countryId":227,"fullSizeResizeUrl":"/resizer/v2/OW2PCUK5DJF7NM2SPW2HGQ7ITY.jpg?auth=64f2ba16818b09227145262b99c17407e51093de509e4a282284408420b13e2f","galleries":[],"ingestionMethod":"manual","iptc_job_identifier":"BKWS304","iptc_source":"AP","iptc_title":"STF","keywords":[""],"mime_type":"image/jpeg","originalName":"AP_20231380986003.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/OW2PCUK5DJF7NM2SPW2HGQ7ITY.jpg","owner":"lisola@opb.org","proxyUrl":"/resizer/v2/OW2PCUK5DJF7NM2SPW2HGQ7ITY.jpg?auth=64f2ba16818b09227145262b99c17407e51093de509e4a282284408420b13e2f","published":true,"resizeUrl":"/resizer/v2/OW2PCUK5DJF7NM2SPW2HGQ7ITY.jpg?auth=64f2ba16818b09227145262b99c17407e51093de509e4a282284408420b13e2f","restricted":false,"takenOn":"2020-03-01T01:49:21Z","thumbnailResizeUrl":"/resizer/v2/OW2PCUK5DJF7NM2SPW2HGQ7ITY.jpg?auth=64f2ba16818b09227145262b99c17407e51093de509e4a282284408420b13e2f&width=300","usage_instructions":"FEB. 29, 2020, FILE PHOTO","version":0,"template_id":620},"address":{"locality":"Columbia","region":"SC","country_name":"USA"},"auth":{"1":"64f2ba16818b09227145262b99c17407e51093de509e4a282284408420b13e2f"},"caption":"FILE - In this Feb. 29, 2020 file photo, Democratic presidential candidate former Vice President Joe Biden, accompanied by his wife, Jill Biden, speaks at a primary night election rally in Columbia, S.C. Jill Biden is a prankster. The Democratic Party’s attempt to adapt its typical convention rituals to a pandemic-induced virtual affair will be put through its paces Tuesday night. (AP Photo/Gerald Herbert, File)","copyright":"Copyright OPB","created_date":"2020-08-18T17:48:14Z","credits":{"affiliation":[{"name":"AP","type":"author"}],"by":[{"byline":"Gerald Herbert","name":"Gerald Herbert","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":2737,"image_type":"photograph","last_updated_date":"2020-08-18T17:48:14Z","licensable":false,"owner":{"id":"opb","sponsored":false},"slug":"US Election 2020 DNC What to Watch","source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Democratic presidential candidate former Vice President Joe Biden, accompanied by his wife, Jill Biden","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/OW2PCUK5DJF7NM2SPW2HGQ7ITY.jpg","version":"0.10.9","width":4106,"syndication":{},"creditIPTC":"AP","country_name":"United States"}}],"promo_items":{"basic":{"0":{"_id":"NASSZIDDQ5BO7NNGA3DFI7RZ3M","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/NASSZIDDQ5BO7NNGA3DFI7RZ3M.JPG?auth=11e2bb04a911cc5a00fa661ffc29d1c8c0ec248af26a88d77f10186e15662657","galleries":[{"headlines":{"basic":"Pro-police Rally"},"_id":"MOHM55XP7ZFUBFGIGDWH554L6A"}],"ingestionMethod":"manual","iptc_source":"OPB","iptc_title":"Reporter/Produer","keywords":[""],"mime_type":"image/jpeg","originalName":"20200822_JDL_GeorgeFloyd_015.JPG","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/NASSZIDDQ5BO7NNGA3DFI7RZ3M.JPG","owner":"jlevinson@opb.org","proxyUrl":"/resizer/v2/NASSZIDDQ5BO7NNGA3DFI7RZ3M.JPG?auth=11e2bb04a911cc5a00fa661ffc29d1c8c0ec248af26a88d77f10186e15662657","published":true,"resizeUrl":"/resizer/v2/NASSZIDDQ5BO7NNGA3DFI7RZ3M.JPG?auth=11e2bb04a911cc5a00fa661ffc29d1c8c0ec248af26a88d77f10186e15662657","restricted":false,"takenOn":"2020-08-22T19:44:45Z","thumbnailResizeUrl":"/resizer/v2/NASSZIDDQ5BO7NNGA3DFI7RZ3M.JPG?auth=11e2bb04a911cc5a00fa661ffc29d1c8c0ec248af26a88d77f10186e15662657&width=300","version":0,"template_id":620},"address":{"locality":"Portland","region":"Oregon"},"auth":{"1":"11e2bb04a911cc5a00fa661ffc29d1c8c0ec248af26a88d77f10186e15662657"},"caption":"Pro- Trump and pro-police demonstrators clashed with anti-fascist counterprotesters on the 87th day of protests against police violence and systemic racism. Despite violence in the streets, police were notably absent and never declared an unlawful assembly. ","copyright":"Copyright OPB","created_date":"2020-08-23T08:32:23Z","credits":{"affiliation":[{"name":"Jonathan Levinson","type":"author"}],"by":[{"byline":"Jonathan Levinson","name":"Jonathan Levinson","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":2000,"image_type":"photograph","last_updated_date":"2020-08-23T08:32:23Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Protests Day 87","taxonomy":{},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/NASSZIDDQ5BO7NNGA3DFI7RZ3M.JPG","version":"0.10.9","width":3000},"1":{"_id":"Q7LILG5HYRGHRIRKCHBJBVLKCA","additional_properties":{"countryId":227,"fullSizeResizeUrl":"/resizer/v2/Q7LILG5HYRGHRIRKCHBJBVLKCA.jpg?auth=f5fbc9358f18fee0654953c54246a4f7289bb6c4e7c1ea784c917c4e9b4160ed","galleries":[{"headlines":{"basic":"Wildfires, heavy smoke and a threat of high winds"},"_id":"CMQWLXM64ZA4JCNWUXI6G2LATU"}],"ingestionMethod":"manual","iptc_job_identifier":"ORJL110","iptc_source":"AP","iptc_title":"STF","keywords":[""],"mime_type":"image/jpeg","originalName":"AP_20257018983444.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/Q7LILG5HYRGHRIRKCHBJBVLKCA.jpg","owner":"csherwood@opb.org","proxyUrl":"/resizer/v2/Q7LILG5HYRGHRIRKCHBJBVLKCA.jpg?auth=f5fbc9358f18fee0654953c54246a4f7289bb6c4e7c1ea784c917c4e9b4160ed","published":true,"resizeUrl":"/resizer/v2/Q7LILG5HYRGHRIRKCHBJBVLKCA.jpg?auth=f5fbc9358f18fee0654953c54246a4f7289bb6c4e7c1ea784c917c4e9b4160ed","restricted":false,"takenOn":"2020-09-12T23:10:25Z","thumbnailResizeUrl":"/resizer/v2/Q7LILG5HYRGHRIRKCHBJBVLKCA.jpg?auth=f5fbc9358f18fee0654953c54246a4f7289bb6c4e7c1ea784c917c4e9b4160ed&width=300","version":0},"address":{"locality":"Lyons","region":"OR","country_name":"USA"},"auth":{"1":"f5fbc9358f18fee0654953c54246a4f7289bb6c4e7c1ea784c917c4e9b4160ed"},"caption":"Erik Tucker carries a bucket of water to put out hot spots in an area around his home burned by the Beachie Creek Fire, Saturday, Sept. 12, 2020, in Lyons, Ore. Tucker lost a shed but his home was intact.","copyright":"Copyright 2020 The Associated Press. All rights reserved.","created_date":"2020-09-13T16:26:26Z","credits":{"affiliation":[{"name":"AP","type":"author"}],"by":[{"byline":"John Locher","name":"John Locher","type":"author"}]},"distributor":{"category":"wires","id":"28dbd3a6-70fb-48bd-ad0b-0847777579c7","name":"AP","subcategory":"AP","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:05:31.885Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2020-07-15T18:05:31.885Z","modifiedBy":"alee@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":3766,"image_type":"photograph","last_updated_date":"2020-09-13T16:26:26Z","licensable":false,"owner":{"id":"opb","sponsored":false},"slug":"Pacific Northwest Wildfires","source":{"name":"AP","source_type":"wires","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Wildfire aftermath","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/Q7LILG5HYRGHRIRKCHBJBVLKCA.jpg","version":"0.10.9","width":5649,"syndication":{},"creditIPTC":"AP","country_name":"United States"},"2":{"_id":"7ZPWJXZK3NEAZBA4EJPHDTRGOY","additional_properties":{"countryId":227,"fullSizeResizeUrl":"/resizer/v2/7ZPWJXZK3NEAZBA4EJPHDTRGOY.jpg?auth=766071077cce3f1e60576d84be1e5c865a2efafdb696c0bb65bc9ed05db6a177","galleries":[{"headlines":{"basic":"Wildfires, heavy smoke and a threat of high winds"},"_id":"CMQWLXM64ZA4JCNWUXI6G2LATU"}],"ingestionMethod":"manual","iptc_job_identifier":"ORJL102","iptc_source":"AP","iptc_title":"STF","keywords":[""],"mime_type":"image/jpeg","originalName":"AP_20256563534066.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/7ZPWJXZK3NEAZBA4EJPHDTRGOY.jpg","owner":"csherwood@opb.org","proxyUrl":"/resizer/v2/7ZPWJXZK3NEAZBA4EJPHDTRGOY.jpg?auth=766071077cce3f1e60576d84be1e5c865a2efafdb696c0bb65bc9ed05db6a177","published":true,"resizeUrl":"/resizer/v2/7ZPWJXZK3NEAZBA4EJPHDTRGOY.jpg?auth=766071077cce3f1e60576d84be1e5c865a2efafdb696c0bb65bc9ed05db6a177","restricted":false,"takenOn":"2020-09-12T15:07:48Z","thumbnailResizeUrl":"/resizer/v2/7ZPWJXZK3NEAZBA4EJPHDTRGOY.jpg?auth=766071077cce3f1e60576d84be1e5c865a2efafdb696c0bb65bc9ed05db6a177&width=300","version":0},"address":{"locality":"Portland","region":"OR","country_name":"USA"},"auth":{"1":"766071077cce3f1e60576d84be1e5c865a2efafdb696c0bb65bc9ed05db6a177"},"caption":"A person rides a bike along the Willamette River as smoke from wildfires partially obscures the Tilikum Crossing Bridge, Saturday, Sept. 12, 2020, in Portland, Ore.","copyright":"Copyright 2020 The Associated Press. All rights reserved.","created_date":"2020-09-13T16:26:26Z","credits":{"affiliation":[{"name":"AP","type":"author"}],"by":[{"byline":"John Locher","name":"John Locher","type":"author"}]},"distributor":{"category":"wires","id":"28dbd3a6-70fb-48bd-ad0b-0847777579c7","name":"AP","subcategory":"AP","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:05:31.885Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2020-07-15T18:05:31.885Z","modifiedBy":"alee@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":4000,"image_type":"photograph","last_updated_date":"2020-09-13T16:26:26Z","licensable":false,"owner":{"id":"opb","sponsored":false},"slug":"Pacific Northwest Wildfires","source":{"name":"AP","source_type":"wires","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Portland wildfire smoke","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/7ZPWJXZK3NEAZBA4EJPHDTRGOY.jpg","version":"0.10.9","width":6000,"syndication":{},"creditIPTC":"AP","country_name":"United States"},"3":{"_id":"LDBCYGXVXFAHZCPYPHTWN4VJJY","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/LDBCYGXVXFAHZCPYPHTWN4VJJY.JPG?auth=b69e8679ee27241070c41065d316a59aabd8d2af6062766a67c1332eccd93ef4","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","iptc_title":"Reporter/Produer","keywords":[""],"mime_type":"image/jpeg","originalName":"20200914_JDL_Fires_004.JPG","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/LDBCYGXVXFAHZCPYPHTWN4VJJY.JPG","owner":"jlevinson@opb.org","proxyUrl":"/resizer/v2/LDBCYGXVXFAHZCPYPHTWN4VJJY.JPG?auth=b69e8679ee27241070c41065d316a59aabd8d2af6062766a67c1332eccd93ef4","published":true,"resizeUrl":"/resizer/v2/LDBCYGXVXFAHZCPYPHTWN4VJJY.JPG?auth=b69e8679ee27241070c41065d316a59aabd8d2af6062766a67c1332eccd93ef4","restricted":false,"takenOn":"2020-09-15T02:07:00Z","thumbnailResizeUrl":"/resizer/v2/LDBCYGXVXFAHZCPYPHTWN4VJJY.JPG?auth=b69e8679ee27241070c41065d316a59aabd8d2af6062766a67c1332eccd93ef4&width=300","version":0,"template_id":620},"address":{"locality":"Estacada","region":"Oregon"},"auth":{"1":"b69e8679ee27241070c41065d316a59aabd8d2af6062766a67c1332eccd93ef4"},"caption":"A burned house near the Riverside fire on September 14, 2020 in Estacada, Oregon. Some residents chose to return to their homes as favorable weather helped slow the fireÕs spread.","copyright":"Copyright OPB","created_date":"2020-09-15T06:02:58Z","credits":{"affiliation":[{"name":"OPB","type":"author"}],"by":[{"byline":"Jonathan Levinson","name":"Jonathan Levinson","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":2000,"image_type":"photograph","last_updated_date":"2020-09-15T06:02:58Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Clackamas Wildfires","taxonomy":{},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/LDBCYGXVXFAHZCPYPHTWN4VJJY.JPG","version":"0.10.9","width":3000},"4":{"_id":"NBXNOBASW5GXBA7Y4KK6TKECJY","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/NBXNOBASW5GXBA7Y4KK6TKECJY.jpg?auth=f6eac906562fe2bba431b8a00cb2746cbd4147e0ecc85d813d83bc7836b9614d","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","keywords":["proud boys","alan swinney","protests"],"mime_type":"image/jpeg","originalName":"Alan Swinney.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/NBXNOBASW5GXBA7Y4KK6TKECJY.jpg","owner":"rhaas@opb.org","proxyUrl":"/resizer/v2/NBXNOBASW5GXBA7Y4KK6TKECJY.jpg?auth=f6eac906562fe2bba431b8a00cb2746cbd4147e0ecc85d813d83bc7836b9614d","published":true,"resizeUrl":"/resizer/v2/NBXNOBASW5GXBA7Y4KK6TKECJY.jpg?auth=f6eac906562fe2bba431b8a00cb2746cbd4147e0ecc85d813d83bc7836b9614d","restricted":false,"thumbnailResizeUrl":"/resizer/v2/NBXNOBASW5GXBA7Y4KK6TKECJY.jpg?auth=f6eac906562fe2bba431b8a00cb2746cbd4147e0ecc85d813d83bc7836b9614d&width=300","version":0,"template_id":620},"address":{},"auth":{"1":"f6eac906562fe2bba431b8a00cb2746cbd4147e0ecc85d813d83bc7836b9614d"},"caption":"Alan Swinney, a demonstrator who has engaged in violence, appeared at a Gresham rally Aug. 26, 2020, four days after pulling a gun on demonstrators in Portland. Swinney carried a paintball gun and a handgun at the Gresham rally.","copyright":"Copyright OPB","created_date":"2020-08-27T04:16:40Z","credits":{"affiliation":[{"name":"OPB","type":"author"}],"by":[{"_id":"Sergio Olmos","additional_properties":{"original":{"_id":"Sergio Olmos","firstName":"Sergio","lastName":"Olmos","byline":"Sergio Olmos","role":"Reporter","image":"","email":"solmos@opb.org","affiliations":"OPB","education":[],"awards":[],"books":[],"podcasts":[],"bio_page":"","bio":"","longBio":"","slug":"Sergio-Olmos","native_app_rendering":false,"fuzzy_match":false,"contributor":false,"status":true,"last_updated_date":"2020-08-06T16:11:57.453Z"}},"name":"Sergio Olmos","type":"author","url":"","description":"","image":{"url":"","version":"0.5.8"},"slug":"Sergio-Olmos","socialLinks":[{"site":"email","url":"solmos@opb.org","deprecated":true,"deprecation_msg":"Please use social_links."}],"social_links":[{"site":"email","url":"solmos@opb.org"}],"version":"0.5.8"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":881,"image_type":"photograph","last_updated_date":"2020-08-27T04:16:40Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Alan Swinney Gresham Protest Aug. 26, 2020","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/NBXNOBASW5GXBA7Y4KK6TKECJY.jpg","version":"0.10.9","width":1345,"syndication":{},"creditIPTC":"OPB"},"5":{"_id":"CQDI3I26WFGZFIVBB2RX3QBENI","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/CQDI3I26WFGZFIVBB2RX3QBENI.jpg?auth=532cc2842ab45c5197e2681de1600efd4a11ab9a04e8ae7a4e35f830e2d3bb3c","galleries":[],"ingestionMethod":"manual","iptc_source":"Courtesy of the artist","keywords":["khruangbin"],"mime_type":"image/jpeg","originalName":"Khruangbin_byTamsinIsaacs-scaled.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/CQDI3I26WFGZFIVBB2RX3QBENI.jpg","owner":"dchristensen@opb.org","proxyUrl":"/resizer/v2/CQDI3I26WFGZFIVBB2RX3QBENI.jpg?auth=532cc2842ab45c5197e2681de1600efd4a11ab9a04e8ae7a4e35f830e2d3bb3c","published":true,"resizeUrl":"/resizer/v2/CQDI3I26WFGZFIVBB2RX3QBENI.jpg?auth=532cc2842ab45c5197e2681de1600efd4a11ab9a04e8ae7a4e35f830e2d3bb3c","restricted":true,"thumbnailResizeUrl":"/resizer/v2/CQDI3I26WFGZFIVBB2RX3QBENI.jpg?auth=532cc2842ab45c5197e2681de1600efd4a11ab9a04e8ae7a4e35f830e2d3bb3c&width=300","version":3,"template_id":620},"address":{},"auth":{"1":"532cc2842ab45c5197e2681de1600efd4a11ab9a04e8ae7a4e35f830e2d3bb3c"},"caption":"Houston band Khruangbin released \"Mordecai\" in June 2020","copyright":"Courtesy of the artist","created_date":"2020-09-04T17:20:20Z","credits":{"affiliation":[{"name":"Courtesy of the artist","type":"author"}],"by":[{"byline":"Tamsin Isaacs","name":"Tamsin Isaacs","type":"author"}]},"distributor":{"category":"handout","id":"7835069c-3dc4-47da-8160-8065a6637144","name":"Acquired (Handout)","subcategory":"Acquired (Handout)","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:28:32.550Z","createdBy":"hyoung@opb.org","description":"Acquired media from other sources.","modifiedAt":"2020-06-19T15:03:27.639Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"geo":{},"height":1696,"image_type":"photograph","last_updated_date":"2020-09-04T17:30:07Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"Acquired (Handout)","source_type":"handout","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Houston band Khruangbin/2020 press photo","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/CQDI3I26WFGZFIVBB2RX3QBENI.jpg","version":"0.10.9","width":2560,"syndication":{},"creditIPTC":"Courtesy of the artist"},"6":{"_id":"ERDKBP2MMVANPBHNOMEDM3SPWA","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/ERDKBP2MMVANPBHNOMEDM3SPWA.JPG?auth=a1ed6e9771d99f9472e9df0ab3632f2162ea252a39494c52c0c09546380d876e","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","iptc_title":"Reporter/Produer","keywords":[""],"mime_type":"image/jpeg","originalName":"20200910_JDL_Fires_015.JPG","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/ERDKBP2MMVANPBHNOMEDM3SPWA.JPG","owner":"jlevinson@opb.org","proxyUrl":"/resizer/v2/ERDKBP2MMVANPBHNOMEDM3SPWA.JPG?auth=a1ed6e9771d99f9472e9df0ab3632f2162ea252a39494c52c0c09546380d876e","published":true,"resizeUrl":"/resizer/v2/ERDKBP2MMVANPBHNOMEDM3SPWA.JPG?auth=a1ed6e9771d99f9472e9df0ab3632f2162ea252a39494c52c0c09546380d876e","restricted":false,"takenOn":"2020-09-11T02:44:58Z","thumbnailResizeUrl":"/resizer/v2/ERDKBP2MMVANPBHNOMEDM3SPWA.JPG?auth=a1ed6e9771d99f9472e9df0ab3632f2162ea252a39494c52c0c09546380d876e&width=300","version":0,"template_id":620},"address":{"locality":"Malalla","region":"Oregon"},"auth":{"1":"a1ed6e9771d99f9472e9df0ab3632f2162ea252a39494c52c0c09546380d876e"},"caption":"Four wildfires continued gaining ground and firefighters worried that two would soon merge in Clackamah County on September 10, 2020.","copyright":"Copyright OPB","created_date":"2020-09-11T08:44:48Z","credits":{"affiliation":[{"name":"OPB","type":"author"}],"by":[{"byline":"Jonathan Levinson","name":"Jonathan Levinson","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":2000,"image_type":"photograph","last_updated_date":"2020-09-11T08:44:48Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Clackamas Wildfires","taxonomy":{},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/ERDKBP2MMVANPBHNOMEDM3SPWA.JPG","version":"0.10.9","width":3000},"7":{"_id":"YHY4SKQVJFF6TN5H3ODO3LEILA","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/YHY4SKQVJFF6TN5H3ODO3LEILA.JPG?auth=cca6e61146589bc64c475415d4adfd6ed446e3f20b642f658e1eff2a6a984982","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","iptc_title":"Reporter/Produer","keywords":[""],"mime_type":"image/jpeg","originalName":"20200905_JDL_GeorgeFloyd_011.JPG","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/YHY4SKQVJFF6TN5H3ODO3LEILA.JPG","owner":"jlevinson@opb.org","proxyUrl":"/resizer/v2/YHY4SKQVJFF6TN5H3ODO3LEILA.JPG?auth=cca6e61146589bc64c475415d4adfd6ed446e3f20b642f658e1eff2a6a984982","published":true,"resizeUrl":"/resizer/v2/YHY4SKQVJFF6TN5H3ODO3LEILA.JPG?auth=cca6e61146589bc64c475415d4adfd6ed446e3f20b642f658e1eff2a6a984982","restricted":false,"takenOn":"2020-09-06T05:47:26Z","thumbnailResizeUrl":"/resizer/v2/YHY4SKQVJFF6TN5H3ODO3LEILA.JPG?auth=cca6e61146589bc64c475415d4adfd6ed446e3f20b642f658e1eff2a6a984982&width=300","version":0,"template_id":620},"address":{"locality":"Portland","region":"Oregon"},"auth":{"1":"cca6e61146589bc64c475415d4adfd6ed446e3f20b642f658e1eff2a6a984982"},"caption":"On the 100th consecutive night of mass protests against systemic racism and police brutality in Portland, protesters gathered in East Portland and clashed with police for hours. Police, who arrested 59 people throughout the night, declared the gathering a riot after a demonstrator threw a Molotov cocktail at the police.","copyright":"Copyright OPB","created_date":"2020-09-07T01:13:19Z","credits":{"affiliation":[{"name":"OPB","type":"author"}],"by":[{"byline":"Jonathan Levinson","name":"Jonathan Levinson","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":2000,"image_type":"photograph","last_updated_date":"2020-09-07T01:13:19Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Protests Day 100","taxonomy":{},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/YHY4SKQVJFF6TN5H3ODO3LEILA.JPG","version":"0.10.9","width":3000},"8":{"_id":"U2KIXRYFA7YQB6S3ASLUKJ6HCM","additional_properties":{"expiration_date":"2020-11-09T15:28:50Z","fullSizeResizeUrl":"/resizer/v2/U2KIXRYFA7YQB6S3ASLUKJ6HCM.jpg?auth=ac5f110d56370c16b720ba562496fea4e5e946a703a36476e0501aaa2c5a76a3","galleries":[],"mime_type":"image/jpeg","originalName":"https://media.npr.org/assets/img/2020/09/10/ap_20235622355098_wide-89d9985a09c008e39c8b1bfe0b2867bf557b37ba.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/U2KIXRYFA7YQB6S3ASLUKJ6HCM.jpg","proxyUrl":"/resizer/v2/U2KIXRYFA7YQB6S3ASLUKJ6HCM.jpg?auth=ac5f110d56370c16b720ba562496fea4e5e946a703a36476e0501aaa2c5a76a3","published":true,"resizeUrl":"/resizer/v2/U2KIXRYFA7YQB6S3ASLUKJ6HCM.jpg?auth=ac5f110d56370c16b720ba562496fea4e5e946a703a36476e0501aaa2c5a76a3","restricted":false,"thumbnailResizeUrl":"/resizer/v2/U2KIXRYFA7YQB6S3ASLUKJ6HCM.jpg?auth=ac5f110d56370c16b720ba562496fea4e5e946a703a36476e0501aaa2c5a76a3&width=300","version":1},"auth":{"1":"ac5f110d56370c16b720ba562496fea4e5e946a703a36476e0501aaa2c5a76a3"},"caption":"Postmaster General Louis DeJoy says it's his \"sacred duty\" to ensure election mail delivery this fall.","created_date":"2020-09-10T15:28:51Z","credits":{"affiliation":[{"name":"AP","type":"author"}],"by":[{"name":"Rick Bowmer","type":"author"}]},"distributor":{"category":"wires","id":"0f128356-b848-4514-9a31-d22da4702ab4","name":"NPR","subcategory":"NPR","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:07:09.834Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2021-09-28T18:39:21.656Z","modifiedBy":"schleicherj@washpost.com","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":3037,"last_updated_date":"2020-09-10T21:02:59Z","licensable":false,"owner":{"id":"opb"},"source":{"name":"NPR","source_type":"wires","additional_properties":{"editor":"photo center"},"system":"arc i/o"},"subtitle":"Postmaster General Louis DeJoy says it's his \"sacred duty\" to ensure election mail delivery this fall.","type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/U2KIXRYFA7YQB6S3ASLUKJ6HCM.jpg","version":"0.10.9","width":5400},"9":{"_id":"2XCHBBZ6QJD2FLTSK6PM37VDIA","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/2XCHBBZ6QJD2FLTSK6PM37VDIA.jpg?auth=f9fa0a0060335e21285f390882f29dd8780aa81c73ac7e5f499e568c31adf199","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","keywords":[""],"mime_type":"image/jpeg","originalName":"JL104095.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/2XCHBBZ6QJD2FLTSK6PM37VDIA.jpg","owner":"rhaas@opb.org","proxyUrl":"/resizer/v2/2XCHBBZ6QJD2FLTSK6PM37VDIA.jpg?auth=f9fa0a0060335e21285f390882f29dd8780aa81c73ac7e5f499e568c31adf199","published":true,"resizeUrl":"/resizer/v2/2XCHBBZ6QJD2FLTSK6PM37VDIA.jpg?auth=f9fa0a0060335e21285f390882f29dd8780aa81c73ac7e5f499e568c31adf199","restricted":false,"takenOn":"2020-09-09T12:50:49Z","thumbnailResizeUrl":"/resizer/v2/2XCHBBZ6QJD2FLTSK6PM37VDIA.jpg?auth=f9fa0a0060335e21285f390882f29dd8780aa81c73ac7e5f499e568c31adf199&width=300","version":0,"template_id":620},"address":{},"auth":{"1":"f9fa0a0060335e21285f390882f29dd8780aa81c73ac7e5f499e568c31adf199"},"caption":"Kyle and Kernia St. Clair, along with their son Bowdy, prepared to leave Molalla on Wednesday, Sept. 9, 2020 as fires spread through Clackamas County","copyright":"Copyright OPB","created_date":"2020-09-09T20:40:03Z","credits":{"affiliation":[],"by":[{"_id":"jonathan-levinson","additional_properties":{"original":{"_id":"jonathan-levinson","slug":"jonathan-levinson","byline":"Jonathan Levinson","firstName":"Jonathan","lastName":"Levinson","role":"Reporter/Producer","longBio":"<p>Jonathan Levinson is a multimedia reporter covering policing for Oregon Public Broadcasting. <br /> <br />Previously, he covered Mexico as a freelancer. His radio work has appeared on NPR, Marketplace and the CBC. His photography has been featured in ESPN, The Washington Post and Bloomberg News. He has been a guest on CNN, PBS Newshour and MSNBC.<br /> <br />Jonathan spent five years as an infantry officer in the U.S. Army and has a master&rsquo;s degree in international affairs from Columbia University.<br /> <br />Send Jonathan the best story ideas.","bio_page":"/author/jonathan-levinson","affiliations":"OPB","status":true,"email":"jlevinson@opb.org","twitter":"@_jlevinson","instagram":"jonathanlevinson","last_updated_date":"2022-02-11T23:39:30.663Z","books":[],"podcasts":[],"education":[],"awards":[],"image":"https://s3.amazonaws.com/arc-authors/opb/ed9391fa-0aa3-46e5-8526-97cca2c2d8ad.png"}},"name":"Jonathan Levinson","type":"author","url":"/author/jonathan-levinson","image":{"url":"https://s3.amazonaws.com/arc-authors/opb/ed9391fa-0aa3-46e5-8526-97cca2c2d8ad.png","version":"0.5.8"},"slug":"jonathan-levinson","socialLinks":[{"site":"email","url":"jlevinson@opb.org","deprecated":true,"deprecation_msg":"Please use social_links."},{"site":"twitter","url":"@_jlevinson","deprecated":true,"deprecation_msg":"Please use social_links."},{"site":"instagram","url":"jonathanlevinson","deprecated":true,"deprecation_msg":"Please use social_links."}],"social_links":[{"site":"email","url":"jlevinson@opb.org"},{"site":"twitter","url":"@_jlevinson"},{"site":"instagram","url":"jonathanlevinson"}],"version":"0.5.8"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":1080,"image_type":"photograph","last_updated_date":"2020-09-09T20:40:03Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"20200909_JDL_ClackamasFires","taxonomy":{},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/2XCHBBZ6QJD2FLTSK6PM37VDIA.jpg","version":"0.10.9","width":1616},"10":{"_id":"URTIFOGWYCU5AJVUDGZK54U2TM","additional_properties":{"expiration_date":"2020-11-08T17:25:41Z","fullSizeResizeUrl":"/resizer/v2/URTIFOGWYCU5AJVUDGZK54U2TM.jpg?auth=6a3c3794a7bc39a66dd40bdf380c815ad8b6f2471ec09cf55ab7dfd661c1da23","galleries":[],"mime_type":"image/jpeg","originalName":"https://media.npr.org/assets/img/2020/09/09/gettyimages-1228410829_wide-fcd0a32a0042600e410ee6dd2b0e9eda911c0292.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/URTIFOGWYCU5AJVUDGZK54U2TM.jpg","proxyUrl":"/resizer/v2/URTIFOGWYCU5AJVUDGZK54U2TM.jpg?auth=6a3c3794a7bc39a66dd40bdf380c815ad8b6f2471ec09cf55ab7dfd661c1da23","published":true,"resizeUrl":"/resizer/v2/URTIFOGWYCU5AJVUDGZK54U2TM.jpg?auth=6a3c3794a7bc39a66dd40bdf380c815ad8b6f2471ec09cf55ab7dfd661c1da23","restricted":false,"thumbnailResizeUrl":"/resizer/v2/URTIFOGWYCU5AJVUDGZK54U2TM.jpg?auth=6a3c3794a7bc39a66dd40bdf380c815ad8b6f2471ec09cf55ab7dfd661c1da23&width=300","version":1},"auth":{"1":"6a3c3794a7bc39a66dd40bdf380c815ad8b6f2471ec09cf55ab7dfd661c1da23"},"caption":"President Trump addresses a supporters Tuesday at a campaign rally in Winston Salem, N.C.","created_date":"2020-09-09T17:25:42Z","credits":{"affiliation":[{"name":"Getty Images","type":"author"}],"by":[{"name":"Sean Rayford","type":"author"}]},"distributor":{"category":"wires","id":"0f128356-b848-4514-9a31-d22da4702ab4","name":"NPR","subcategory":"NPR","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:07:09.834Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2021-09-28T18:39:21.656Z","modifiedBy":"schleicherj@washpost.com","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":3223,"last_updated_date":"2020-09-09T21:06:15Z","licensable":false,"owner":{"id":"opb"},"source":{"name":"NPR","source_type":"wires","additional_properties":{"editor":"photo center"},"system":"arc i/o"},"subtitle":"President Trump addresses a supporters Tuesday at a campaign rally in Winston Salem, N.C.","type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/URTIFOGWYCU5AJVUDGZK54U2TM.jpg","version":"0.10.9","width":5730},"11":{"_id":"GKQVJ5O3ZREEHJYWO6HEUYFIXI","additional_properties":{"countryId":227,"fullSizeResizeUrl":"/resizer/v2/GKQVJ5O3ZREEHJYWO6HEUYFIXI.jpg?auth=041d3e04b284a2ac2cf7b5e7908e22fa8a6358a9f6f7c424d2b9f63fa1fbe3a2","galleries":[],"ingestionMethod":"manual","iptc_job_identifier":"VCRD106","iptc_source":"The Canadian Press","iptc_title":"SUB","keywords":["b.c.","british columbia","canada","canadian","coronavirus","covid-19","cppixbc","cppixbritishcolumbia","cppixvancouver","infection","pandemic","respiratory","vancouver"],"mime_type":"image/jpeg","originalName":"AP_20187843012408.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/GKQVJ5O3ZREEHJYWO6HEUYFIXI.jpg","owner":"bvance@opb.org","proxyUrl":"/resizer/v2/GKQVJ5O3ZREEHJYWO6HEUYFIXI.jpg?auth=041d3e04b284a2ac2cf7b5e7908e22fa8a6358a9f6f7c424d2b9f63fa1fbe3a2","published":true,"resizeUrl":"/resizer/v2/GKQVJ5O3ZREEHJYWO6HEUYFIXI.jpg?auth=041d3e04b284a2ac2cf7b5e7908e22fa8a6358a9f6f7c424d2b9f63fa1fbe3a2","restricted":true,"takenOn":"2020-07-05T19:45:32Z","thumbnailResizeUrl":"/resizer/v2/GKQVJ5O3ZREEHJYWO6HEUYFIXI.jpg?auth=041d3e04b284a2ac2cf7b5e7908e22fa8a6358a9f6f7c424d2b9f63fa1fbe3a2&width=300","usage_instructions":"MANDATORY CREDIT","version":0,"template_id":620},"address":{"locality":"BLAINE","region":"WA","country_name":"USA"},"auth":{"1":"041d3e04b284a2ac2cf7b5e7908e22fa8a6358a9f6f7c424d2b9f63fa1fbe3a2"},"caption":"Kim Burns, center, of Maple Ridge, British Columbia, pulls a wagon with a Canadian flag cornhole game while walking to meet her fiance, Jeff Steiner, right, of Marysville, Wash., as his son Gabe Steiner carries the U.S. flag portion of the game, at Peace Arch Historical State Park in Blaine, Wash., across the Canada-U.S. border from Surrey, British Columbia, Sunday, July 5, 2020. Although the B.C. government closed the Canadian side of the park in June due to concerns about crowding and COVID-19, people are still able to meet in the U.S. park due to a treaty signed in 1814 that allows citizens of Canada and the U.S. to unite in the park without technically crossing any border.","copyright":"Copyright AP","created_date":"2020-08-20T16:59:53Z","credits":{"affiliation":[{"name":"The Canadian Press via AP)","type":"author"}],"by":[{"byline":"DARRYL DYCK","name":"DARRYL DYCK","type":"author"}]},"distributor":{"category":"wires","id":"28dbd3a6-70fb-48bd-ad0b-0847777579c7","name":"AP","subcategory":"AP","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:05:31.885Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2020-07-15T18:05:31.885Z","modifiedBy":"alee@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":3999,"image_type":"photograph","last_updated_date":"2020-08-20T16:59:53Z","licensable":false,"owner":{"id":"opb","sponsored":false},"slug":"Virus Outbreak Canada US Border","source":{"name":"AP","source_type":"wires","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Peace Arch","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/GKQVJ5O3ZREEHJYWO6HEUYFIXI.jpg","version":"0.10.9","width":6000,"syndication":{},"creditIPTC":"The Canadian Press via AP)","country_name":"United States"},"12":{"_id":"LN7P3KMVYZGBLP6RSHQEZFAOO4","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/LN7P3KMVYZGBLP6RSHQEZFAOO4.jpg?auth=837db4982e795bc22962bb4bf69f6c3b8ea38f61821e1dad7c1b82e6d81126fa","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","iptc_title":"Digital Producer","keywords":[""],"mime_type":"image/jpeg","originalName":"20190126_clark-county-public-health_BP-3.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/LN7P3KMVYZGBLP6RSHQEZFAOO4.jpg","owner":"bparks@opb.org","proxyUrl":"/resizer/v2/LN7P3KMVYZGBLP6RSHQEZFAOO4.jpg?auth=837db4982e795bc22962bb4bf69f6c3b8ea38f61821e1dad7c1b82e6d81126fa","published":true,"resizeUrl":"/resizer/v2/LN7P3KMVYZGBLP6RSHQEZFAOO4.jpg?auth=837db4982e795bc22962bb4bf69f6c3b8ea38f61821e1dad7c1b82e6d81126fa","restricted":false,"takenOn":"2019-01-26T13:29:45Z","thumbnailResizeUrl":"/resizer/v2/LN7P3KMVYZGBLP6RSHQEZFAOO4.jpg?auth=837db4982e795bc22962bb4bf69f6c3b8ea38f61821e1dad7c1b82e6d81126fa&width=300","version":0,"template_id":620},"address":{"street_address":"Clark County Center For Communit","locality":"Vancouver","region":"Washington"},"auth":{"1":"837db4982e795bc22962bb4bf69f6c3b8ea38f61821e1dad7c1b82e6d81126fa"},"caption":"The Clark County Center for Community Health in Vancouver, Wash., is pictured Saturday, Jan. 26, 2019. A measles outbreak in Clark County led to dozens of cases of the preventable disease.","copyright":"Copyright OPB","created_date":"2020-08-12T20:17:50Z","credits":{"affiliation":[{"name":"OPB","type":"author"}],"by":[{"byline":"Bradley W. Parks","name":"Bradley W. Parks","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":2000,"image_type":"photograph","last_updated_date":"2020-08-12T20:17:50Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Measles outbreak","taxonomy":{},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/LN7P3KMVYZGBLP6RSHQEZFAOO4.jpg","version":"0.10.9","width":3000},"13":{"_id":"C6OYIRJDOFELTKLOJ24R2HGSYA","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/C6OYIRJDOFELTKLOJ24R2HGSYA.jpg?auth=72be0531aa92bac980f669838bea7b261547857737615acc4e51b0cd32cf0d60","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","iptc_title":"Reporter","keywords":["linn county","wildfire"],"mime_type":"image/jpeg","originalName":"20200908_santiam-canyon-fire_BP624.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/C6OYIRJDOFELTKLOJ24R2HGSYA.jpg","owner":"bparks@opb.org","proxyUrl":"/resizer/v2/C6OYIRJDOFELTKLOJ24R2HGSYA.jpg?auth=72be0531aa92bac980f669838bea7b261547857737615acc4e51b0cd32cf0d60","published":true,"resizeUrl":"/resizer/v2/C6OYIRJDOFELTKLOJ24R2HGSYA.jpg?auth=72be0531aa92bac980f669838bea7b261547857737615acc4e51b0cd32cf0d60","restricted":false,"takenOn":"2020-09-09T01:25:49Z","thumbnailResizeUrl":"/resizer/v2/C6OYIRJDOFELTKLOJ24R2HGSYA.jpg?auth=72be0531aa92bac980f669838bea7b261547857737615acc4e51b0cd32cf0d60&width=300","version":0,"template_id":620},"address":{"locality":"Woodburn","region":"Oregon"},"auth":{"1":"72be0531aa92bac980f669838bea7b261547857737615acc4e51b0cd32cf0d60"},"caption":"A plume of smoke from a wildfire joins the large black cloud of wildfire smoke over Woodburn, Ore., Sept. 8, 2020. Unprecedented wildfire conditions across Oregon and the American West kicked up several fires over Labor Day weekend.","copyright":"Copyright OPB","created_date":"2020-09-09T06:07:54Z","credits":{"affiliation":[{"name":"OPB","type":"author"}],"by":[{"byline":"Bradley W. Parks","name":"Bradley W. Parks","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":2000,"image_type":"photograph","last_updated_date":"2020-09-09T06:07:54Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Santiam Canyon Fire","taxonomy":{},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/C6OYIRJDOFELTKLOJ24R2HGSYA.jpg","version":"0.10.9","width":3000},"14":{"_id":"3HN3Q57QQOPFG64MMQ5G36T5NU","additional_properties":{"expiration_date":"2020-11-05T18:03:01Z","fullSizeResizeUrl":"/resizer/v2/3HN3Q57QQOPFG64MMQ5G36T5NU.jpg?auth=14f98411b5fbd6b37b4e5ea7813f972abb9d04e74fed7400095ab89681d123b0","galleries":[],"mime_type":"image/jpeg","originalName":"https://media.npr.org/assets/img/2019/09/06/mabiland_wide-2b5c5d269fe2662ab2533c4173deafbcf7d1dbb5.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/3HN3Q57QQOPFG64MMQ5G36T5NU.jpg","proxyUrl":"/resizer/v2/3HN3Q57QQOPFG64MMQ5G36T5NU.jpg?auth=14f98411b5fbd6b37b4e5ea7813f972abb9d04e74fed7400095ab89681d123b0","published":true,"resizeUrl":"/resizer/v2/3HN3Q57QQOPFG64MMQ5G36T5NU.jpg?auth=14f98411b5fbd6b37b4e5ea7813f972abb9d04e74fed7400095ab89681d123b0","restricted":false,"thumbnailResizeUrl":"/resizer/v2/3HN3Q57QQOPFG64MMQ5G36T5NU.jpg?auth=14f98411b5fbd6b37b4e5ea7813f972abb9d04e74fed7400095ab89681d123b0&width=300","version":1},"auth":{"1":"14f98411b5fbd6b37b4e5ea7813f972abb9d04e74fed7400095ab89681d123b0"},"caption":"\"To hear that voice and understand the power of someone who could put her soul into her voice like that — for me, that is Ella,\" Mabiland explains.","created_date":"2020-09-06T18:03:03Z","credits":{"affiliation":[{"name":"Courtesy of the artist","type":"author"}],"by":[{"name":"Misael Belt ","type":"author"}]},"distributor":{"category":"wires","id":"0f128356-b848-4514-9a31-d22da4702ab4","name":"NPR","subcategory":"NPR","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:07:09.834Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2021-09-28T18:39:21.656Z","modifiedBy":"schleicherj@washpost.com","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":2052,"last_updated_date":"2020-09-10T23:11:42Z","licensable":false,"owner":{"id":"opb"},"source":{"name":"NPR","source_type":"wires","additional_properties":{"editor":"photo center"},"system":"arc i/o"},"subtitle":"\"To hear that voice and understand the power of someone who could put her soul into her voice like that — for me, that is Ella,\" Mabiland explains.","type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/3HN3Q57QQOPFG64MMQ5G36T5NU.jpg","version":"0.10.9","width":3647},"15":{"_id":"ASZQVUGVYVB7ZIHCBLQGMJXX44","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/ASZQVUGVYVB7ZIHCBLQGMJXX44.jpeg?auth=4724762dbf6f8fe8526ecbe85bc7a316c284a4a2ca0093d33e85b1d203a889df","galleries":[],"ingestionMethod":"manual","iptc_source":"Anthony Brisson","keywords":[""],"mime_type":"image/jpeg","originalName":"IMG_3903.jpeg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/ASZQVUGVYVB7ZIHCBLQGMJXX44.jpeg","owner":"bvance@opb.org","proxyUrl":"/resizer/v2/ASZQVUGVYVB7ZIHCBLQGMJXX44.jpeg?auth=4724762dbf6f8fe8526ecbe85bc7a316c284a4a2ca0093d33e85b1d203a889df","published":true,"resizeUrl":"/resizer/v2/ASZQVUGVYVB7ZIHCBLQGMJXX44.jpeg?auth=4724762dbf6f8fe8526ecbe85bc7a316c284a4a2ca0093d33e85b1d203a889df","restricted":false,"takenOn":"2020-05-24T03:16:48Z","thumbnailResizeUrl":"/resizer/v2/ASZQVUGVYVB7ZIHCBLQGMJXX44.jpeg?auth=4724762dbf6f8fe8526ecbe85bc7a316c284a4a2ca0093d33e85b1d203a889df&width=300","version":0,"template_id":620},"address":{},"auth":{"1":"4724762dbf6f8fe8526ecbe85bc7a316c284a4a2ca0093d33e85b1d203a889df"},"caption":"Lisa Schonberg makes a field recording at Ainsworth bluffs in Portland, Ore.","copyright":"Copyright Anthony Brisson","created_date":"2020-08-03T17:51:52Z","credits":{"affiliation":[],"by":[{"byline":"Anthony Brisson","name":"Anthony Brisson","type":"author"}]},"distributor":{"category":"handout","id":"7835069c-3dc4-47da-8160-8065a6637144","name":"Acquired (Handout)","subcategory":"Acquired (Handout)","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:28:32.550Z","createdBy":"hyoung@opb.org","description":"Acquired media from other sources.","modifiedAt":"2020-06-19T15:03:27.639Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":4032,"image_type":"photograph","last_updated_date":"2020-08-03T17:51:52Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"Acquired (Handout)","source_type":"handout","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Lisa Schonberg","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/ASZQVUGVYVB7ZIHCBLQGMJXX44.jpeg","version":"0.10.9","width":3024,"syndication":{}},"16":{"_id":"R4T6QZCN4NEJXALZHJ5CYQRNZ4","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/R4T6QZCN4NEJXALZHJ5CYQRNZ4.jpg?auth=bd429dfdcbbcd84732655b1f25b811c9755b7af8369b2c367c9fc8adeebb7de1","galleries":[],"ingestionMethod":"manual","iptc_source":"U.S. Senate","mime_type":"image/jpeg","originalName":"slade_gorton_cropped.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/R4T6QZCN4NEJXALZHJ5CYQRNZ4.jpg","owner":"csherwood@opb.org","proxyUrl":"/resizer/v2/R4T6QZCN4NEJXALZHJ5CYQRNZ4.jpg?auth=bd429dfdcbbcd84732655b1f25b811c9755b7af8369b2c367c9fc8adeebb7de1","published":true,"resizeUrl":"/resizer/v2/R4T6QZCN4NEJXALZHJ5CYQRNZ4.jpg?auth=bd429dfdcbbcd84732655b1f25b811c9755b7af8369b2c367c9fc8adeebb7de1","restricted":false,"thumbnailResizeUrl":"/resizer/v2/R4T6QZCN4NEJXALZHJ5CYQRNZ4.jpg?auth=bd429dfdcbbcd84732655b1f25b811c9755b7af8369b2c367c9fc8adeebb7de1&width=300","version":0,"template_id":620},"address":{},"auth":{"1":"bd429dfdcbbcd84732655b1f25b811c9755b7af8369b2c367c9fc8adeebb7de1"},"caption":"Former U.S. Sen. Slade Gorton has died at the age of 92. A Republican, he served three terms in the Senate. He was also a state lawmaker and three-term state attorney general.","copyright":"Copyright OPB","created_date":"2020-08-19T17:12:59Z","credits":{"affiliation":[],"by":[{"byline":"U.S. Senate","name":"U.S. Senate","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":791,"image_type":"photograph","last_updated_date":"2020-08-19T17:12:59Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Former U.S. Sen. Slade Gorton has died at the age of 92. A Republican, he served three terms in the Senate. He was also a state lawmaker and three-term state attorney general.","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/R4T6QZCN4NEJXALZHJ5CYQRNZ4.jpg","version":"0.10.9","width":763,"syndication":{}},"17":{"_id":"QAAAIOXBIJCGLHPINEDURWXMTI","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/QAAAIOXBIJCGLHPINEDURWXMTI.png?auth=c79f3c9ca3e3dc88da382b443f5d7bd01b90f2cc2c166026a43e8d173482a2ff","galleries":[],"ingestionMethod":"manual","iptc_source":"¡Salud!","keywords":[],"mime_type":"image/png","originalName":"salud3.png","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/QAAAIOXBIJCGLHPINEDURWXMTI.png","owner":"afrost@opb.org","proxyUrl":"/resizer/v2/QAAAIOXBIJCGLHPINEDURWXMTI.png?auth=c79f3c9ca3e3dc88da382b443f5d7bd01b90f2cc2c166026a43e8d173482a2ff","published":true,"resizeUrl":"/resizer/v2/QAAAIOXBIJCGLHPINEDURWXMTI.png?auth=c79f3c9ca3e3dc88da382b443f5d7bd01b90f2cc2c166026a43e8d173482a2ff","restricted":false,"thumbnailResizeUrl":"/resizer/v2/QAAAIOXBIJCGLHPINEDURWXMTI.png?auth=c79f3c9ca3e3dc88da382b443f5d7bd01b90f2cc2c166026a43e8d173482a2ff&width=300","version":3,"template_id":620},"address":{},"auth":{"1":"c79f3c9ca3e3dc88da382b443f5d7bd01b90f2cc2c166026a43e8d173482a2ff"},"caption":"¡Salud! provides healthcare, including coronavirus screening and follow up care, to vineyard workers","copyright":"Copyright OPB","created_date":"2020-08-28T21:23:21Z","credits":{"by":[{"byline":"courtesy ¡Salud!","name":"courtesy ¡Salud!","type":"author"}]},"distributor":{"category":"staff","mode":"custom","name":"OPB"},"geo":{},"height":448,"image_type":"photograph","last_updated_date":"2020-08-28T21:28:48Z","licensable":false,"owner":{"id":"opb","sponsored":false},"related_content":{"derivative_of":[{"referent":{"id":"3S76UCF32VH5NKP5ZKRH235W7U","type":"image"},"type":"reference"}]},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Salud: healthcare for vineyard workers","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/QAAAIOXBIJCGLHPINEDURWXMTI.png","version":"0.10.9","width":597,"syndication":{}},"18":{"_id":"P3APOHYBBZDETHHXNRUGPQXCAQ","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/P3APOHYBBZDETHHXNRUGPQXCAQ.jpeg?auth=cfc189a3f1716f0932afdc27611e41129613a24137b5e006ff27d8f9c527ada0","galleries":[],"ingestionMethod":"manual","iptc_source":"InciWeb","mime_type":"image/jpeg","originalName":"mosierfire.jpeg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/P3APOHYBBZDETHHXNRUGPQXCAQ.jpeg","owner":"dstuckey@opb.org","proxyUrl":"/resizer/v2/P3APOHYBBZDETHHXNRUGPQXCAQ.jpeg?auth=cfc189a3f1716f0932afdc27611e41129613a24137b5e006ff27d8f9c527ada0","published":true,"resizeUrl":"/resizer/v2/P3APOHYBBZDETHHXNRUGPQXCAQ.jpeg?auth=cfc189a3f1716f0932afdc27611e41129613a24137b5e006ff27d8f9c527ada0","restricted":false,"thumbnailResizeUrl":"/resizer/v2/P3APOHYBBZDETHHXNRUGPQXCAQ.jpeg?auth=cfc189a3f1716f0932afdc27611e41129613a24137b5e006ff27d8f9c527ada0&width=300","version":0,"template_id":620},"address":{},"alt_text":"Mosier fire continues.","auth":{"1":"cfc189a3f1716f0932afdc27611e41129613a24137b5e006ff27d8f9c527ada0"},"caption":"A firefighter works during the Mosier Creek in Bend, Oregon.","copyright":"Copyright OPB","created_date":"2020-08-17T22:29:33Z","credits":{"affiliation":[{"name":"InciWeb","type":"author"}],"by":[{"byline":"InciWeb","name":"InciWeb","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":4000,"image_type":"photograph","last_updated_date":"2020-08-17T22:29:33Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Fire resources","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/P3APOHYBBZDETHHXNRUGPQXCAQ.jpeg","version":"0.10.9","width":6000,"syndication":{},"creditIPTC":"InciWeb"},"19":{"_id":"OW2PCUK5DJF7NM2SPW2HGQ7ITY","additional_properties":{"countryId":227,"fullSizeResizeUrl":"/resizer/v2/OW2PCUK5DJF7NM2SPW2HGQ7ITY.jpg?auth=64f2ba16818b09227145262b99c17407e51093de509e4a282284408420b13e2f","galleries":[],"ingestionMethod":"manual","iptc_job_identifier":"BKWS304","iptc_source":"AP","iptc_title":"STF","keywords":[""],"mime_type":"image/jpeg","originalName":"AP_20231380986003.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/OW2PCUK5DJF7NM2SPW2HGQ7ITY.jpg","owner":"lisola@opb.org","proxyUrl":"/resizer/v2/OW2PCUK5DJF7NM2SPW2HGQ7ITY.jpg?auth=64f2ba16818b09227145262b99c17407e51093de509e4a282284408420b13e2f","published":true,"resizeUrl":"/resizer/v2/OW2PCUK5DJF7NM2SPW2HGQ7ITY.jpg?auth=64f2ba16818b09227145262b99c17407e51093de509e4a282284408420b13e2f","restricted":false,"takenOn":"2020-03-01T01:49:21Z","thumbnailResizeUrl":"/resizer/v2/OW2PCUK5DJF7NM2SPW2HGQ7ITY.jpg?auth=64f2ba16818b09227145262b99c17407e51093de509e4a282284408420b13e2f&width=300","usage_instructions":"FEB. 29, 2020, FILE PHOTO","version":0,"template_id":620},"address":{"locality":"Columbia","region":"SC","country_name":"USA"},"auth":{"1":"64f2ba16818b09227145262b99c17407e51093de509e4a282284408420b13e2f"},"caption":"FILE - In this Feb. 29, 2020 file photo, Democratic presidential candidate former Vice President Joe Biden, accompanied by his wife, Jill Biden, speaks at a primary night election rally in Columbia, S.C. Jill Biden is a prankster. The Democratic Party’s attempt to adapt its typical convention rituals to a pandemic-induced virtual affair will be put through its paces Tuesday night. (AP Photo/Gerald Herbert, File)","copyright":"Copyright OPB","created_date":"2020-08-18T17:48:14Z","credits":{"affiliation":[{"name":"AP","type":"author"}],"by":[{"byline":"Gerald Herbert","name":"Gerald Herbert","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":2737,"image_type":"photograph","last_updated_date":"2020-08-18T17:48:14Z","licensable":false,"owner":{"id":"opb","sponsored":false},"slug":"US Election 2020 DNC What to Watch","source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Democratic presidential candidate former Vice President Joe Biden, accompanied by his wife, Jill Biden","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/OW2PCUK5DJF7NM2SPW2HGQ7ITY.jpg","version":"0.10.9","width":4106,"syndication":{},"creditIPTC":"AP","country_name":"United States"}}},"_id":"1814de3af30d5af08af37853b8a864cda430ddabb4ab73db58430e5d50e15eb0"},"expires":1744001788186,"lastModified":1744001487514},"{\"forceHero\":\"promo\",\"photoId\":\"W3ONFGNVG5BAXFAIJWAXCNEJUQ\"}":{"data":{"content_elements":[{"_id":"W3ONFGNVG5BAXFAIJWAXCNEJUQ","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png?auth=effefe8e86ff5f90c2629b8d47814071f3a1c8347e14344605527eeb022e57f2","galleries":[],"ingestionMethod":"manual","mime_type":"image/png","originalName":"OPB-Passport-WolfHall-InternalPromoBlock-1400x537.png","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png","owner":"jwechsler@opb.org","proxyUrl":"/resizer/v2/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png?auth=effefe8e86ff5f90c2629b8d47814071f3a1c8347e14344605527eeb022e57f2","published":true,"resizeUrl":"/resizer/v2/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png?auth=effefe8e86ff5f90c2629b8d47814071f3a1c8347e14344605527eeb022e57f2","restricted":false,"thumbnailResizeUrl":"/resizer/v2/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png?auth=effefe8e86ff5f90c2629b8d47814071f3a1c8347e14344605527eeb022e57f2&width=300","version":0,"template_id":660},"address":{},"alt_text":"A banner image for the OPB Passport program Wolf Hall, featuring main character Thomas Cromwell in the foreground with King Henry VIII behind him, candles in the background with dramatic lighting.","auth":{"1":"effefe8e86ff5f90c2629b8d47814071f3a1c8347e14344605527eeb022e57f2"},"caption":"","created_date":"2025-03-28T19:16:42Z","credits":{"affiliation":[]},"height":537,"image_type":"illustration","last_updated_date":"2025-03-28T19:16:42Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Wolf Hall: The Mirror and the Light Internal Promo","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png","version":"0.10.9","width":1400,"syndication":{},"resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png?auth=effefe8e86ff5f90c2629b8d47814071f3a1c8347e14344605527eeb022e57f2&width=767","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png?auth=effefe8e86ff5f90c2629b8d47814071f3a1c8347e14344605527eeb022e57f2&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png?auth=effefe8e86ff5f90c2629b8d47814071f3a1c8347e14344605527eeb022e57f2&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png?auth=effefe8e86ff5f90c2629b8d47814071f3a1c8347e14344605527eeb022e57f2&width=1200","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png?auth=effefe8e86ff5f90c2629b8d47814071f3a1c8347e14344605527eeb022e57f2&width=1440"}}],"promo_items":{"basic":{"_id":"W3ONFGNVG5BAXFAIJWAXCNEJUQ","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png?auth=effefe8e86ff5f90c2629b8d47814071f3a1c8347e14344605527eeb022e57f2","galleries":[],"ingestionMethod":"manual","mime_type":"image/png","originalName":"OPB-Passport-WolfHall-InternalPromoBlock-1400x537.png","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png","owner":"jwechsler@opb.org","proxyUrl":"/resizer/v2/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png?auth=effefe8e86ff5f90c2629b8d47814071f3a1c8347e14344605527eeb022e57f2","published":true,"resizeUrl":"/resizer/v2/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png?auth=effefe8e86ff5f90c2629b8d47814071f3a1c8347e14344605527eeb022e57f2","restricted":false,"thumbnailResizeUrl":"/resizer/v2/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png?auth=effefe8e86ff5f90c2629b8d47814071f3a1c8347e14344605527eeb022e57f2&width=300","version":0,"template_id":660},"address":{},"alt_text":"A banner image for the OPB Passport program Wolf Hall, featuring main character Thomas Cromwell in the foreground with King Henry VIII behind him, candles in the background with dramatic lighting.","auth":{"1":"effefe8e86ff5f90c2629b8d47814071f3a1c8347e14344605527eeb022e57f2"},"caption":"","created_date":"2025-03-28T19:16:42Z","credits":{"affiliation":[]},"height":537,"image_type":"illustration","last_updated_date":"2025-03-28T19:16:42Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Wolf Hall: The Mirror and the Light Internal Promo","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png","version":"0.10.9","width":1440,"syndication":{},"resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png?auth=effefe8e86ff5f90c2629b8d47814071f3a1c8347e14344605527eeb022e57f2&width=767&height=286&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png?auth=effefe8e86ff5f90c2629b8d47814071f3a1c8347e14344605527eeb022e57f2&width=150&height=56&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png?auth=effefe8e86ff5f90c2629b8d47814071f3a1c8347e14344605527eeb022e57f2&width=1023&height=381&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png?auth=effefe8e86ff5f90c2629b8d47814071f3a1c8347e14344605527eeb022e57f2&width=1200&height=447&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W3ONFGNVG5BAXFAIJWAXCNEJUQ.png?auth=effefe8e86ff5f90c2629b8d47814071f3a1c8347e14344605527eeb022e57f2&width=1440&height=537&smart=true"}}},"forceHero":"promo","_id":"e3c27d0ffc9693e1ec13155ff04c2a2c45557624aef02cd9ac203a503746aff8"},"expires":1744001972131,"lastModified":1744001671996}},"sites-api":{"{\"hierarchy\":\"HamburgerNav1\"}":{"data":{"children":[{"_id":"/schedules","children":[],"name":"TV & Radio Schedules","navigation":{"alt_text_override":null},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"/shows","children":[],"name":"Shows & Podcasts","navigation":{"alt_text_override":null},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"/support/passport","children":[],"name":"OPB Passport","navigation":{"alt_text_override":null},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":"/pf/resources/images/opb/OPB_2021_Passport_Compass.svg"}}],"_id":"/"},"expires":1744001887606,"lastModified":1744001587560},"{\"hierarchy\":\"HamburgerNav2\"}":{"data":{"children":[{"_id":"/culture","children":[],"name":"Arts & Culture","navigation":{"alt_text_override":null},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"/science_environment","children":[],"name":"Science & Environment","navigation":{"alt_text_override":null},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"/politics","children":[],"name":"Politics","navigation":{"alt_text_override":null},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"link-NTJIKMCOJBG7DGAIM3CNSMJ6LM","children":[],"display_name":"Health ","node_type":"link","url":"https://www.opb.org/tag/health/"},{"_id":"link-RUERDSALUVFARHVQ3HJHY7VSVE","children":[],"display_name":"Education","node_type":"link","url":"https://www.opb.org/tag/education/"},{"_id":"link-CTHOJB4SNJGAPD7RC5MIAOD2IA","children":[],"display_name":"Economy","node_type":"link","url":"https://www.opb.org/tag/economy/"},{"_id":"link-F7ZMCWIB4RHFBEZ4IXIXJPUFTI","children":[],"display_name":"OPB Investigations","node_type":"link","url":"https://www.opb.org/investigations/"}],"_id":"/"},"expires":1744001845312,"lastModified":1744001545276},"{\"hierarchy\":\"HamburgerNav3\"}":{"data":{"children":[{"_id":"/about","children":[],"name":"About OPB","navigation":{"alt_text_override":null},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"/newsletter","children":[],"name":"Newsletters","navigation":{"alt_text_override":null},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"/support","children":[],"name":"Support OPB","navigation":{"alt_text_override":null},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"link-KD30X1TJWH3434U46A878C0WYM","children":[],"display_name":"Help Center","node_type":"link","url":"https://opb2.my.site.com/Help/s/"}],"_id":"/"},"expires":1744001810149,"lastModified":1744001510085},"{\"hierarchy\":\"HamburgerNav4\"}":{"data":{"children":[{"_id":"/contact","children":[],"name":"Contact Us","navigation":{},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"/workwithus","children":[],"name":"Work With Us","navigation":{"alt_text_override":null},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"/pressroom","children":[],"name":"Pressroom","navigation":{"alt_text_override":null},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}}],"_id":"/"},"expires":1744001953935,"lastModified":1744001653855},"{\"hierarchy\":\"Footer_Navigation_1\"}":{"data":{"children":[{"_id":"/schedules","children":[],"name":"TV & Radio Schedules","navigation":{"alt_text_override":null},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"/sponsorship","children":[],"name":"Sponsorship","navigation":{},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"link-KD30X1TJWH3434U46A878C0WYM","children":[],"display_name":"Help Center","node_type":"link","url":"https://opb2.my.site.com/Help/s/"}],"_id":"/"},"expires":1744001750033,"lastModified":1744001449992},"{\"hierarchy\":\"Footer_Navigation_2\"}":{"data":{"children":[{"_id":"link-MXAC69CVJX7QD670K1CK3BD9TR","children":[],"display_name":"Manage My Membership","node_type":"link","url":"https://opb2.my.site.com/Help/s/managemembership"},{"_id":"link-QF75YG2NX17JD5M4NX8U72N65C","children":[],"display_name":"Contact Us","node_type":"link","url":"https://opb2.my.site.com/Help/s/contactsupport"},{"_id":"/notifications","children":[],"name":"Notifications","navigation":{},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}}],"_id":"/"},"expires":1744001785013,"lastModified":1744001484977},"{\"hierarchy\":\"Footer_Navigation_3\"}":{"data":{"children":[{"_id":"/privacy","children":[],"name":"Privacy Policy","navigation":{},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"/publicfiles","children":[],"name":"FCC Public Files","navigation":{},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"/fcc-applications","children":[],"name":"FCC Applications","navigation":{"alt_text_override":null},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"/terms","children":[],"name":"Terms of Use","navigation":{},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"/editorialpolicy","children":[],"name":"Editorial Policy","navigation":{},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"/sms","children":[],"name":"SMS T&C","navigation":{"alt_text_override":"SMS Terms and Conditions"},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"/contestrules","children":[],"name":"Contest Rules","navigation":{},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"/accessibility","children":[],"name":"Accessibility","navigation":{"alt_text_override":null},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}}],"_id":"/"},"expires":1744001923456,"lastModified":1744001623413}},"collections":{"{\"collectionId\":\"CCJPLJLHN5H4FJ2FEIWDBD3LGY\"}":{"data":{"_id":"CCJPLJLHN5H4FJ2FEIWDBD3LGY","content_elements":[{"_id":"OL5PZDCY55E2NGA4CAHPIZBV4M","canonical_url":"/article/2025/04/05/hands-off-protests-oregon-washington/","canonical_website":"opb","credits":{"by":[{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/82c6a037-967e-4678-ba32-db13b3e9def7.png"},"name":"Joni Land","slug":"joni-auden-land","type":"author","url":"/author/joni-auden-land/"},{"name":"Troy Brynelson","slug":"troy-brynelson","type":"author","url":"/author/troy-brynelson"},{"image":{"url":""},"name":"Antonio Sierra","slug":"a-sierra","type":"author","url":"/author/antonio-sierra/"},{"image":{"url":"https://author-service-images-prod-us-east-1.publishing.aws.arc.pub/opb/1d22049e-c9f1-4344-8376-12efdd1cf751.jpg"},"name":"Kathryn Styer Martínez","org":"OPB","slug":"kathryn-styer-martinez","type":"author","url":"/author/kathryn-styer-martinez"},{"name":"OPB staff","org":"","type":"author"}]},"description":{"basic":"Outside of Portland, protests drew hundreds of people in Tigard, Madras, Pendleton, Medford and elsewhere across Oregon on Saturday, as part of the national “Hands Off” day of action."},"display_date":"2025-04-06T02:42:12.893Z","headlines":{"basic":"‘Hands Off’ protests"},"label":{},"promo_items":{"basic":{"caption":"Thousands of protesters descended on Tom McCall Waterfront Park in Portland, Ore., April 5, 2025. The Portland protests were part of a nationwide \"Hands Off\" demonstration.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Troy Brynelson","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PXVZTD266FCGZD635VTLBLLO7E.JPG?auth=0881f5a2716b5a283a52604fbecd8532b8bb3fbed3220dfeb59b9992c442cd07&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PXVZTD266FCGZD635VTLBLLO7E.JPG?auth=0881f5a2716b5a283a52604fbecd8532b8bb3fbed3220dfeb59b9992c442cd07&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PXVZTD266FCGZD635VTLBLLO7E.JPG?auth=0881f5a2716b5a283a52604fbecd8532b8bb3fbed3220dfeb59b9992c442cd07&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PXVZTD266FCGZD635VTLBLLO7E.JPG?auth=0881f5a2716b5a283a52604fbecd8532b8bb3fbed3220dfeb59b9992c442cd07&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/PXVZTD266FCGZD635VTLBLLO7E.JPG","width":1440},"gallery":{"_id":"2DECSDQSEJEELJSKVI6FBYRXVY","content_elements":[{"caption":"Thousands of protesters march in Portland, Ore., protesting President Trump’s administration, April 5, 2025, part of “Hands Off” protests taking place around the country. ","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Joni Auden Land","type":"author"}]},"height":3648,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QI45YX5QCNFWDCSM523IEWOZ3Q.JPG?auth=fd146fdb0c20079e3309fda28d0cb3870ffca6f07f530f1a1db3d388457071d6&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QI45YX5QCNFWDCSM523IEWOZ3Q.JPG?auth=fd146fdb0c20079e3309fda28d0cb3870ffca6f07f530f1a1db3d388457071d6&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QI45YX5QCNFWDCSM523IEWOZ3Q.JPG?auth=fd146fdb0c20079e3309fda28d0cb3870ffca6f07f530f1a1db3d388457071d6&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QI45YX5QCNFWDCSM523IEWOZ3Q.JPG?auth=fd146fdb0c20079e3309fda28d0cb3870ffca6f07f530f1a1db3d388457071d6&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/QI45YX5QCNFWDCSM523IEWOZ3Q.JPG","width":4937},{"caption":"Thousands of protesters march in Portland, Ore., protesting President Trump’s administration, April 5, 2025, part of “Hands Off” protests taking place around the country. ","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Joni Auden Land","type":"author"}]},"height":3007,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WRRRBWPDHRAE5LST7VWY6YBGTM.JPG?auth=a32b903f830d36201fe9ae7837e460888febaceb8ab497a969e039df509e7357&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WRRRBWPDHRAE5LST7VWY6YBGTM.JPG?auth=a32b903f830d36201fe9ae7837e460888febaceb8ab497a969e039df509e7357&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WRRRBWPDHRAE5LST7VWY6YBGTM.JPG?auth=a32b903f830d36201fe9ae7837e460888febaceb8ab497a969e039df509e7357&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WRRRBWPDHRAE5LST7VWY6YBGTM.JPG?auth=a32b903f830d36201fe9ae7837e460888febaceb8ab497a969e039df509e7357&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/WRRRBWPDHRAE5LST7VWY6YBGTM.JPG","width":4505},{"caption":"A demonstrator dressed as the Statue of Liberty participates in the \"Hands Off!\" protests against President Donald Trump at the Washington Monument in Washington, Saturday, April 5, 2025. (AP Photo/Jose Luis Magana)","credits":{"affiliation":[{"name":"AP"}],"by":[{"name":"Jose Luis Magana","type":"author"}]},"height":3817,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5VTGABWPLBFIXDM7YNRXX6DNM4.jpg?auth=217b62b71e26733856360939fa1aed8ea74b3517ec0ffba0a77565b3e4451079&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5VTGABWPLBFIXDM7YNRXX6DNM4.jpg?auth=217b62b71e26733856360939fa1aed8ea74b3517ec0ffba0a77565b3e4451079&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5VTGABWPLBFIXDM7YNRXX6DNM4.jpg?auth=217b62b71e26733856360939fa1aed8ea74b3517ec0ffba0a77565b3e4451079&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5VTGABWPLBFIXDM7YNRXX6DNM4.jpg?auth=217b62b71e26733856360939fa1aed8ea74b3517ec0ffba0a77565b3e4451079&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/5VTGABWPLBFIXDM7YNRXX6DNM4.jpg","width":5725},{"caption":"\"Hands Off\" protesters gather at the Universal Plaza in Tigard, Ore., on April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Joni Auden Land","type":"author"}]},"height":3134,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/NPUW4TFVZNBLLLRSNB3P4F3UAU.JPG?auth=a777804b740b501c010f13865c8dd733d9ef1ee0c245e85db3c3c9d6ba45db3d&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/NPUW4TFVZNBLLLRSNB3P4F3UAU.JPG?auth=a777804b740b501c010f13865c8dd733d9ef1ee0c245e85db3c3c9d6ba45db3d&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/NPUW4TFVZNBLLLRSNB3P4F3UAU.JPG?auth=a777804b740b501c010f13865c8dd733d9ef1ee0c245e85db3c3c9d6ba45db3d&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/NPUW4TFVZNBLLLRSNB3P4F3UAU.JPG?auth=a777804b740b501c010f13865c8dd733d9ef1ee0c245e85db3c3c9d6ba45db3d&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/NPUW4TFVZNBLLLRSNB3P4F3UAU.JPG","width":4428},{"caption":"\"Hands Off\" protesters gather at the Universal Plaza in Tigard, Ore., on April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Joni Auden Land","type":"author"}]},"height":3648,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/I3YZREOIUFG65BHGIAI6H3BQHY.JPG?auth=a212219900244d89bfdcade4ccf7810ec098105702129483adccab9bdd8f47f2&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/I3YZREOIUFG65BHGIAI6H3BQHY.JPG?auth=a212219900244d89bfdcade4ccf7810ec098105702129483adccab9bdd8f47f2&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/I3YZREOIUFG65BHGIAI6H3BQHY.JPG?auth=a212219900244d89bfdcade4ccf7810ec098105702129483adccab9bdd8f47f2&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/I3YZREOIUFG65BHGIAI6H3BQHY.JPG?auth=a212219900244d89bfdcade4ccf7810ec098105702129483adccab9bdd8f47f2&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/I3YZREOIUFG65BHGIAI6H3BQHY.JPG","width":5472},{"caption":"\"Hands Off\" protesters gather at the Universal Plaza in Tigard, Ore., on April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/82c6a037-967e-4678-ba32-db13b3e9def7.png"},"name":"Joni Land","slug":"joni-auden-land","type":"author","url":"/author/joni-auden-land/"}]},"height":3024,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/B4XKSQR4KBCBNDE7647L7KYP7Q.jpg?auth=0ba117fdaf7abc100d57360e5125e155be76c028e5aba8cf59e89c37ab9b9cca&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/B4XKSQR4KBCBNDE7647L7KYP7Q.jpg?auth=0ba117fdaf7abc100d57360e5125e155be76c028e5aba8cf59e89c37ab9b9cca&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/B4XKSQR4KBCBNDE7647L7KYP7Q.jpg?auth=0ba117fdaf7abc100d57360e5125e155be76c028e5aba8cf59e89c37ab9b9cca&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/B4XKSQR4KBCBNDE7647L7KYP7Q.jpg?auth=0ba117fdaf7abc100d57360e5125e155be76c028e5aba8cf59e89c37ab9b9cca&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/B4XKSQR4KBCBNDE7647L7KYP7Q.jpg","width":4032},{"caption":"Protesters at a “Hands Off” rally in Sellwood, in Southeast Portland, Ore., April 5, 2025. The Portland protests were part of a nationwide demonstrations.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Troy Brynelson","type":"author"}]},"height":3315,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PZAGVRQ2RFAW3H3B2HKMNTGNPY.JPG?auth=914373040a02ac7494169743201685453bd7c344253404a02ad4968fa16e6b50&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PZAGVRQ2RFAW3H3B2HKMNTGNPY.JPG?auth=914373040a02ac7494169743201685453bd7c344253404a02ad4968fa16e6b50&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PZAGVRQ2RFAW3H3B2HKMNTGNPY.JPG?auth=914373040a02ac7494169743201685453bd7c344253404a02ad4968fa16e6b50&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PZAGVRQ2RFAW3H3B2HKMNTGNPY.JPG?auth=914373040a02ac7494169743201685453bd7c344253404a02ad4968fa16e6b50&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/PZAGVRQ2RFAW3H3B2HKMNTGNPY.JPG","width":4199},{"caption":"The “Hands Off” rally in Madras, Ore., April 5, 2025. ","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Will Robbins for OPB","type":"author"}]},"height":1841,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZVD475ZIFBEBLP7TXR5QPAYEJA.jpg?auth=c6086377df01d376af021713baa7000bc4143f6d77669f6885b48454f7c644a5&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZVD475ZIFBEBLP7TXR5QPAYEJA.jpg?auth=c6086377df01d376af021713baa7000bc4143f6d77669f6885b48454f7c644a5&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZVD475ZIFBEBLP7TXR5QPAYEJA.jpg?auth=c6086377df01d376af021713baa7000bc4143f6d77669f6885b48454f7c644a5&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZVD475ZIFBEBLP7TXR5QPAYEJA.jpg?auth=c6086377df01d376af021713baa7000bc4143f6d77669f6885b48454f7c644a5&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/ZVD475ZIFBEBLP7TXR5QPAYEJA.jpg","width":3095},{"caption":"Former National Park Service Director Chuck Sams speaks at the “Hands Off” protest in Pendleton, Ore., April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Antonio Sierra","type":"author"}]},"height":3307,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/G3GK2CUAUFF7DBWPB6MICODGQ4.JPG?auth=05a18fa57966be48c9beefb1de67f796b5240793755687a332e5b0cb0641d508&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/G3GK2CUAUFF7DBWPB6MICODGQ4.JPG?auth=05a18fa57966be48c9beefb1de67f796b5240793755687a332e5b0cb0641d508&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/G3GK2CUAUFF7DBWPB6MICODGQ4.JPG?auth=05a18fa57966be48c9beefb1de67f796b5240793755687a332e5b0cb0641d508&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/G3GK2CUAUFF7DBWPB6MICODGQ4.JPG?auth=05a18fa57966be48c9beefb1de67f796b5240793755687a332e5b0cb0641d508&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/G3GK2CUAUFF7DBWPB6MICODGQ4.JPG","width":5028},{"caption":"Protestors gather at Pendleton City Hall as a part of the Pendleton Hands-Off demonstration in Pendleton, Ore. on April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Antonio Sierra","type":"author"}]},"height":2924,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W4NO4WCKAZFZ5AWAVKVRN3H2RU.JPG?auth=6bef554d2d1b9c74a0c92de33a9c8b0274a55f2294971fff94de84eefb8f896d&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W4NO4WCKAZFZ5AWAVKVRN3H2RU.JPG?auth=6bef554d2d1b9c74a0c92de33a9c8b0274a55f2294971fff94de84eefb8f896d&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W4NO4WCKAZFZ5AWAVKVRN3H2RU.JPG?auth=6bef554d2d1b9c74a0c92de33a9c8b0274a55f2294971fff94de84eefb8f896d&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W4NO4WCKAZFZ5AWAVKVRN3H2RU.JPG?auth=6bef554d2d1b9c74a0c92de33a9c8b0274a55f2294971fff94de84eefb8f896d&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/W4NO4WCKAZFZ5AWAVKVRN3H2RU.JPG","width":3016},{"caption":"John McNeer of Madras, left, takes a photo with a lone Trump supporter counterprotesting the “Hands Off” rally in Madras, Ore., April 5, 2025. McNeer says he wanted to show his support, saying “most people in Jefferson County support the current administration.” \r","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Will Robbins for OPB","type":"author"}]},"height":2717,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ANJWTFXXSZEPFHPP7Y52YEPHMA.jpg?auth=0a8f35d2e96eb9ef787528ac4fcf77911a3c140a2f280efb76dba9ebe73be100&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ANJWTFXXSZEPFHPP7Y52YEPHMA.jpg?auth=0a8f35d2e96eb9ef787528ac4fcf77911a3c140a2f280efb76dba9ebe73be100&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ANJWTFXXSZEPFHPP7Y52YEPHMA.jpg?auth=0a8f35d2e96eb9ef787528ac4fcf77911a3c140a2f280efb76dba9ebe73be100&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ANJWTFXXSZEPFHPP7Y52YEPHMA.jpg?auth=0a8f35d2e96eb9ef787528ac4fcf77911a3c140a2f280efb76dba9ebe73be100&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/ANJWTFXXSZEPFHPP7Y52YEPHMA.jpg","width":3000},{"caption":"\"I see it as a direct attack on the least educated, and those with the lowest resources,” says Lizzy Wienert of Madras, Ore., taking part in the “Hands Off” rally in Madras, Ore., April 5, 2025. ","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Will Robbins for OPB","type":"author"}]},"height":3890,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/P4EVN4WFTRDCJCHN3WIM3TYJZI.jpg?auth=983423b9565d304c8685e36f6384fd09953af36756cfea055e264ea7d864f9f3&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/P4EVN4WFTRDCJCHN3WIM3TYJZI.jpg?auth=983423b9565d304c8685e36f6384fd09953af36756cfea055e264ea7d864f9f3&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/P4EVN4WFTRDCJCHN3WIM3TYJZI.jpg?auth=983423b9565d304c8685e36f6384fd09953af36756cfea055e264ea7d864f9f3&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/P4EVN4WFTRDCJCHN3WIM3TYJZI.jpg?auth=983423b9565d304c8685e36f6384fd09953af36756cfea055e264ea7d864f9f3&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/P4EVN4WFTRDCJCHN3WIM3TYJZI.jpg","width":2790},{"caption":"Thousands of protesters descended on Tom McCall Waterfront Park in Portland, Ore., April 5, 2025. The Portland protests were part of a nationwide \"Hands Off\" demonstration.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Troy Brynelson","type":"author"}]},"height":3206,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/RL7YXRHYTBGU5OKI3RL42GZL5Y.JPG?auth=87a4f5c6962034d3ce171e097e9987158ce384a11b745cc21953317d1ea63ff6&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/RL7YXRHYTBGU5OKI3RL42GZL5Y.JPG?auth=87a4f5c6962034d3ce171e097e9987158ce384a11b745cc21953317d1ea63ff6&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/RL7YXRHYTBGU5OKI3RL42GZL5Y.JPG?auth=87a4f5c6962034d3ce171e097e9987158ce384a11b745cc21953317d1ea63ff6&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/RL7YXRHYTBGU5OKI3RL42GZL5Y.JPG?auth=87a4f5c6962034d3ce171e097e9987158ce384a11b745cc21953317d1ea63ff6&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/RL7YXRHYTBGU5OKI3RL42GZL5Y.JPG","width":5177},{"caption":"Thousands of protesters march in Portland, Ore., protesting President Trump’s administration, April 5, 2025, part of “Hands Off” protests taking place around the country. ","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Joni Auden Land","type":"author"}]},"height":3075,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZDSSC5SUD5GOJKOWZZWX7P6UWA.JPG?auth=2af041970d9d79ff7382b9b74472421be2c943f9af34ae2f5127df4662686490&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZDSSC5SUD5GOJKOWZZWX7P6UWA.JPG?auth=2af041970d9d79ff7382b9b74472421be2c943f9af34ae2f5127df4662686490&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZDSSC5SUD5GOJKOWZZWX7P6UWA.JPG?auth=2af041970d9d79ff7382b9b74472421be2c943f9af34ae2f5127df4662686490&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZDSSC5SUD5GOJKOWZZWX7P6UWA.JPG?auth=2af041970d9d79ff7382b9b74472421be2c943f9af34ae2f5127df4662686490&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/ZDSSC5SUD5GOJKOWZZWX7P6UWA.JPG","width":4717},{"caption":"Thousands of protesters march in Portland, Ore., protesting President Trump’s administration, April 5, 2025, part of “Hands Off” protests taking place around the country. ","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Joni Auden Land","type":"author"}]},"height":3648,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/XD63ZEONYJB75G5LEHQSPH7RE4.JPG?auth=20a70f56b2962514ef98a01fcfc5f6f83170472131c0ec525ace27903cb34cea&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/XD63ZEONYJB75G5LEHQSPH7RE4.JPG?auth=20a70f56b2962514ef98a01fcfc5f6f83170472131c0ec525ace27903cb34cea&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/XD63ZEONYJB75G5LEHQSPH7RE4.JPG?auth=20a70f56b2962514ef98a01fcfc5f6f83170472131c0ec525ace27903cb34cea&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/XD63ZEONYJB75G5LEHQSPH7RE4.JPG?auth=20a70f56b2962514ef98a01fcfc5f6f83170472131c0ec525ace27903cb34cea&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/XD63ZEONYJB75G5LEHQSPH7RE4.JPG","width":5472},{"caption":"Thousands of protesters march in Portland, Ore., protesting President Trump’s administration, April 5, 2025, part of “Hands Off” protests taking place around the country. ","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Joni Auden Land","type":"author"}]},"height":3525,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/MUHBUTN4EVGHXJ7GGC5A2RF3FA.JPG?auth=e2bae25f060f603b7ffcec70c72942cb5d5c40cd5e3f65b0354474fb2ce7a793&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/MUHBUTN4EVGHXJ7GGC5A2RF3FA.JPG?auth=e2bae25f060f603b7ffcec70c72942cb5d5c40cd5e3f65b0354474fb2ce7a793&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/MUHBUTN4EVGHXJ7GGC5A2RF3FA.JPG?auth=e2bae25f060f603b7ffcec70c72942cb5d5c40cd5e3f65b0354474fb2ce7a793&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/MUHBUTN4EVGHXJ7GGC5A2RF3FA.JPG?auth=e2bae25f060f603b7ffcec70c72942cb5d5c40cd5e3f65b0354474fb2ce7a793&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/MUHBUTN4EVGHXJ7GGC5A2RF3FA.JPG","width":5364},{"caption":"Thousands of protesters descended on Tom McCall Waterfront Park in Portland, Ore., April 5, 2025. The Portland protests were part of a nationwide \"Hands Off\" demonstration.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Troy Brynelson","type":"author"}]},"height":3648,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WCRK63JIVFDFJA3O4A6AUGH5UI.JPG?auth=2cbaff7e356dab2090ba22cffea6d5527c2e04f409e855ce9d57cfd6ac3c1027&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WCRK63JIVFDFJA3O4A6AUGH5UI.JPG?auth=2cbaff7e356dab2090ba22cffea6d5527c2e04f409e855ce9d57cfd6ac3c1027&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WCRK63JIVFDFJA3O4A6AUGH5UI.JPG?auth=2cbaff7e356dab2090ba22cffea6d5527c2e04f409e855ce9d57cfd6ac3c1027&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WCRK63JIVFDFJA3O4A6AUGH5UI.JPG?auth=2cbaff7e356dab2090ba22cffea6d5527c2e04f409e855ce9d57cfd6ac3c1027&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/WCRK63JIVFDFJA3O4A6AUGH5UI.JPG","width":5472},{"caption":"Thousands of protesters descended on Tom McCall Waterfront Park in Portland, Ore., April 5, 2025. The Portland protests were part of a nationwide \"Hands Off\" demonstration.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Troy Brynelson","type":"author"}]},"height":3087,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5G7E4UYBR5E5PDZWSAUUOV6WEI.JPG?auth=9ddb9feddf8e5d2b2af16a7ea7553b45c617882b8cba5d41ae31c15017a5a3bc&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5G7E4UYBR5E5PDZWSAUUOV6WEI.JPG?auth=9ddb9feddf8e5d2b2af16a7ea7553b45c617882b8cba5d41ae31c15017a5a3bc&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5G7E4UYBR5E5PDZWSAUUOV6WEI.JPG?auth=9ddb9feddf8e5d2b2af16a7ea7553b45c617882b8cba5d41ae31c15017a5a3bc&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5G7E4UYBR5E5PDZWSAUUOV6WEI.JPG?auth=9ddb9feddf8e5d2b2af16a7ea7553b45c617882b8cba5d41ae31c15017a5a3bc&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/5G7E4UYBR5E5PDZWSAUUOV6WEI.JPG","width":4356},{"caption":"Thousands of protesters descended on Tom McCall Waterfront Park in Portland, Ore., April 5, 2025. The Portland protests were part of a nationwide \"Hands Off\" demonstration.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Troy Brynelson","type":"author"}]},"height":3648,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/23TPA7XDGVBF5K3ZQY7SP4DGRY.JPG?auth=f6de37bdf27afdbeadca11859ec735bfbeadf1bf6a3b24ce457dd89573871f5c&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/23TPA7XDGVBF5K3ZQY7SP4DGRY.JPG?auth=f6de37bdf27afdbeadca11859ec735bfbeadf1bf6a3b24ce457dd89573871f5c&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/23TPA7XDGVBF5K3ZQY7SP4DGRY.JPG?auth=f6de37bdf27afdbeadca11859ec735bfbeadf1bf6a3b24ce457dd89573871f5c&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/23TPA7XDGVBF5K3ZQY7SP4DGRY.JPG?auth=f6de37bdf27afdbeadca11859ec735bfbeadf1bf6a3b24ce457dd89573871f5c&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/23TPA7XDGVBF5K3ZQY7SP4DGRY.JPG","width":5472},{"caption":"Thousands of protesters descended on Tom McCall Waterfront Park in Portland, Ore., April 5, 2025. The Portland protests were part of a nationwide \"Hands Off\" demonstration.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Troy Brynelson","type":"author"}]},"height":3648,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/J7VQ7BM6KNBNPPJGLTLUOT2S6U.JPG?auth=24a4753530d90ff69d7879a80b604cc981ce6321c15da374deb80e2d14830a74&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/J7VQ7BM6KNBNPPJGLTLUOT2S6U.JPG?auth=24a4753530d90ff69d7879a80b604cc981ce6321c15da374deb80e2d14830a74&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/J7VQ7BM6KNBNPPJGLTLUOT2S6U.JPG?auth=24a4753530d90ff69d7879a80b604cc981ce6321c15da374deb80e2d14830a74&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/J7VQ7BM6KNBNPPJGLTLUOT2S6U.JPG?auth=24a4753530d90ff69d7879a80b604cc981ce6321c15da374deb80e2d14830a74&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/J7VQ7BM6KNBNPPJGLTLUOT2S6U.JPG","width":5472},{"caption":"Thousands of protesters descended on Tom McCall Waterfront Park in Portland, Ore., April 5, 2025. The Portland protests were part of a nationwide \"Hands Off\" demonstration.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Troy Brynelson","type":"author"}]},"height":3648,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PXVZTD266FCGZD635VTLBLLO7E.JPG?auth=0881f5a2716b5a283a52604fbecd8532b8bb3fbed3220dfeb59b9992c442cd07&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PXVZTD266FCGZD635VTLBLLO7E.JPG?auth=0881f5a2716b5a283a52604fbecd8532b8bb3fbed3220dfeb59b9992c442cd07&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PXVZTD266FCGZD635VTLBLLO7E.JPG?auth=0881f5a2716b5a283a52604fbecd8532b8bb3fbed3220dfeb59b9992c442cd07&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PXVZTD266FCGZD635VTLBLLO7E.JPG?auth=0881f5a2716b5a283a52604fbecd8532b8bb3fbed3220dfeb59b9992c442cd07&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/PXVZTD266FCGZD635VTLBLLO7E.JPG","width":5243},{"caption":"\"Hands Off\" protesters gather at the Universal Plaza in Tigard, Ore., on April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Joni Auden Land","type":"author"}]},"height":3024,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BP43K6BF6BAS5AW52LRRZKU75E.JPG?auth=0dcd45872115bfadb5a0fa1d999bf036fe19a5ed2fd6d29870c685e5eee26355&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BP43K6BF6BAS5AW52LRRZKU75E.JPG?auth=0dcd45872115bfadb5a0fa1d999bf036fe19a5ed2fd6d29870c685e5eee26355&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BP43K6BF6BAS5AW52LRRZKU75E.JPG?auth=0dcd45872115bfadb5a0fa1d999bf036fe19a5ed2fd6d29870c685e5eee26355&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BP43K6BF6BAS5AW52LRRZKU75E.JPG?auth=0dcd45872115bfadb5a0fa1d999bf036fe19a5ed2fd6d29870c685e5eee26355&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/BP43K6BF6BAS5AW52LRRZKU75E.JPG","width":4032},{"caption":"\"Hands Off\" protesters gather at the Universal Plaza in Tigard, Ore., on April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Joni Auden Land","type":"author"}]},"height":3271,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/N7MJBUQ5FNCNFGKFC4YGTGHJYY.JPG?auth=6ad360c71fa6cfc1e74dc5c7cda75ce0ce9626cebc40712daba56427ebfd56f6&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/N7MJBUQ5FNCNFGKFC4YGTGHJYY.JPG?auth=6ad360c71fa6cfc1e74dc5c7cda75ce0ce9626cebc40712daba56427ebfd56f6&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/N7MJBUQ5FNCNFGKFC4YGTGHJYY.JPG?auth=6ad360c71fa6cfc1e74dc5c7cda75ce0ce9626cebc40712daba56427ebfd56f6&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/N7MJBUQ5FNCNFGKFC4YGTGHJYY.JPG?auth=6ad360c71fa6cfc1e74dc5c7cda75ce0ce9626cebc40712daba56427ebfd56f6&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/N7MJBUQ5FNCNFGKFC4YGTGHJYY.JPG","width":4640},{"caption":"Mary Minor speaks while leading the \"Hands Off\" protest event at Universal Plaza in Tigard, Ore., on April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/82c6a037-967e-4678-ba32-db13b3e9def7.png"},"name":"Joni Land","slug":"joni-auden-land","type":"author","url":"/author/joni-auden-land/"}]},"height":3024,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WIUDDDEFRFH5NORNK223H4TD4M.jpg?auth=b27c300982cae5fd1624f8e7f10ca7c3f89a2551604cf464c9ea6e7f1f31c0d1&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WIUDDDEFRFH5NORNK223H4TD4M.jpg?auth=b27c300982cae5fd1624f8e7f10ca7c3f89a2551604cf464c9ea6e7f1f31c0d1&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WIUDDDEFRFH5NORNK223H4TD4M.jpg?auth=b27c300982cae5fd1624f8e7f10ca7c3f89a2551604cf464c9ea6e7f1f31c0d1&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WIUDDDEFRFH5NORNK223H4TD4M.jpg?auth=b27c300982cae5fd1624f8e7f10ca7c3f89a2551604cf464c9ea6e7f1f31c0d1&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/WIUDDDEFRFH5NORNK223H4TD4M.jpg","width":4032},{"caption":"\"Hands Off\" protesters line up at the Westmoreland Park in Southeast Portland, Ore., on April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Troy Brynelson","slug":"troy-brynelson","type":"author","url":"/author/troy-brynelson"}]},"height":3024,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W7V74DA2SNAVRJFHKYHV65LSDA.jpg?auth=a9b1804ac87aa4bfc7a29e55ad21eefa7b20377d6c4e43fa868fc5a4f50b0938&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W7V74DA2SNAVRJFHKYHV65LSDA.jpg?auth=a9b1804ac87aa4bfc7a29e55ad21eefa7b20377d6c4e43fa868fc5a4f50b0938&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W7V74DA2SNAVRJFHKYHV65LSDA.jpg?auth=a9b1804ac87aa4bfc7a29e55ad21eefa7b20377d6c4e43fa868fc5a4f50b0938&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W7V74DA2SNAVRJFHKYHV65LSDA.jpg?auth=a9b1804ac87aa4bfc7a29e55ad21eefa7b20377d6c4e43fa868fc5a4f50b0938&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/W7V74DA2SNAVRJFHKYHV65LSDA.jpg","width":4032},{"caption":"Protesters at a “Hands Off” rally in Sellwood, in Southeast Portland, Ore., April 5, 2025. The Portland protests were part of a nationwide demonstrations.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Troy Brynelson","type":"author"}]},"height":2718,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/EFSZPEGR3FCVNMRBU5CL5NJUEM.JPG?auth=12bc2562d2d231e88d50bb9dd608638fc6b60e1828bcf454b05adba5b699099c&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/EFSZPEGR3FCVNMRBU5CL5NJUEM.JPG?auth=12bc2562d2d231e88d50bb9dd608638fc6b60e1828bcf454b05adba5b699099c&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/EFSZPEGR3FCVNMRBU5CL5NJUEM.JPG?auth=12bc2562d2d231e88d50bb9dd608638fc6b60e1828bcf454b05adba5b699099c&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/EFSZPEGR3FCVNMRBU5CL5NJUEM.JPG?auth=12bc2562d2d231e88d50bb9dd608638fc6b60e1828bcf454b05adba5b699099c&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/EFSZPEGR3FCVNMRBU5CL5NJUEM.JPG","width":3573},{"caption":"The “Hands Off” rally in Madras, Ore., April 5, 2025. ","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Will Robbins for OPB","type":"author"}]},"height":2400,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/EZIE7WJXUBGYPGYQ3MCV6P2GZA.jpg?auth=9188e4e1479b55e5d91d936c3c278079c436cc688b5c0ca1cc15b69064f0bd62&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/EZIE7WJXUBGYPGYQ3MCV6P2GZA.jpg?auth=9188e4e1479b55e5d91d936c3c278079c436cc688b5c0ca1cc15b69064f0bd62&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/EZIE7WJXUBGYPGYQ3MCV6P2GZA.jpg?auth=9188e4e1479b55e5d91d936c3c278079c436cc688b5c0ca1cc15b69064f0bd62&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/EZIE7WJXUBGYPGYQ3MCV6P2GZA.jpg?auth=9188e4e1479b55e5d91d936c3c278079c436cc688b5c0ca1cc15b69064f0bd62&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/EZIE7WJXUBGYPGYQ3MCV6P2GZA.jpg","width":3333},{"caption":"The “Hands Off” rally in Madras, Ore., April 5, 2025. ","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Will Robbins for OPB","type":"author"}]},"height":2215,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/UDUFKEALP5AHBLKTUBQMSUTKQY.jpg?auth=2e4783fee21358310e2912832d99354a2f92c6db0235e5f57bfddb54de59529a&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/UDUFKEALP5AHBLKTUBQMSUTKQY.jpg?auth=2e4783fee21358310e2912832d99354a2f92c6db0235e5f57bfddb54de59529a&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/UDUFKEALP5AHBLKTUBQMSUTKQY.jpg?auth=2e4783fee21358310e2912832d99354a2f92c6db0235e5f57bfddb54de59529a&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/UDUFKEALP5AHBLKTUBQMSUTKQY.jpg?auth=2e4783fee21358310e2912832d99354a2f92c6db0235e5f57bfddb54de59529a&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/UDUFKEALP5AHBLKTUBQMSUTKQY.jpg","width":3484},{"caption":"Demonstrators march through downtown Pendleton as a part of the “Hands Off” protest in Pendleton, Ore., April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Antonio Sierra","type":"author"}]},"height":2910,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JUWYXAVDFZBE5N6LNF4HHIE2BQ.JPG?auth=69513d4446c5c18e81b7a1212dfa7bdfa44abb31958b9f9795a3810b911c668e&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JUWYXAVDFZBE5N6LNF4HHIE2BQ.JPG?auth=69513d4446c5c18e81b7a1212dfa7bdfa44abb31958b9f9795a3810b911c668e&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JUWYXAVDFZBE5N6LNF4HHIE2BQ.JPG?auth=69513d4446c5c18e81b7a1212dfa7bdfa44abb31958b9f9795a3810b911c668e&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JUWYXAVDFZBE5N6LNF4HHIE2BQ.JPG?auth=69513d4446c5c18e81b7a1212dfa7bdfa44abb31958b9f9795a3810b911c668e&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/JUWYXAVDFZBE5N6LNF4HHIE2BQ.JPG","width":5007},{"caption":"Demonstrators march through downtown Pendleton as a part of the “Hands Off” protest in Pendleton, Ore., April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Antonio Sierra","type":"author"}]},"height":2985,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/FFXQY3YLRJCUFJ2BE7DBJMWOEM.JPG?auth=8c9fa36507fd052210311e693807941efb011af7cc6aa9ecdca1b78b746567e6&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/FFXQY3YLRJCUFJ2BE7DBJMWOEM.JPG?auth=8c9fa36507fd052210311e693807941efb011af7cc6aa9ecdca1b78b746567e6&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/FFXQY3YLRJCUFJ2BE7DBJMWOEM.JPG?auth=8c9fa36507fd052210311e693807941efb011af7cc6aa9ecdca1b78b746567e6&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/FFXQY3YLRJCUFJ2BE7DBJMWOEM.JPG?auth=8c9fa36507fd052210311e693807941efb011af7cc6aa9ecdca1b78b746567e6&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/FFXQY3YLRJCUFJ2BE7DBJMWOEM.JPG","width":4096},{"caption":"Demonstrators march through downtown Pendleton as a part of the “Hands Off” protest in Pendleton, Ore., April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Antonio Sierra","type":"author"}]},"height":2900,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BNU646CNPNGBDEH4PYQ72KWDIY.JPG?auth=9155c2650551dccce9f1ead08aff6627a7528897fc7f957a72a4e8340033b4d5&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BNU646CNPNGBDEH4PYQ72KWDIY.JPG?auth=9155c2650551dccce9f1ead08aff6627a7528897fc7f957a72a4e8340033b4d5&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BNU646CNPNGBDEH4PYQ72KWDIY.JPG?auth=9155c2650551dccce9f1ead08aff6627a7528897fc7f957a72a4e8340033b4d5&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BNU646CNPNGBDEH4PYQ72KWDIY.JPG?auth=9155c2650551dccce9f1ead08aff6627a7528897fc7f957a72a4e8340033b4d5&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/BNU646CNPNGBDEH4PYQ72KWDIY.JPG","width":3888},{"caption":"Hundreds of protestors in Bend, Ore., gather in Bend, Ore., on Apr. 5, 2025, to join the national Hands Off demonstrations.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Kathryn Styer Martínez","type":"author"}]},"height":3757,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/S7QF3DWVFVGZBAJMTDO465U5KY.JPG?auth=66195cd7764a7e04c4e3217f2561b50ae7e86ef7aae118c010ae163d3c97a0ea&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/S7QF3DWVFVGZBAJMTDO465U5KY.JPG?auth=66195cd7764a7e04c4e3217f2561b50ae7e86ef7aae118c010ae163d3c97a0ea&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/S7QF3DWVFVGZBAJMTDO465U5KY.JPG?auth=66195cd7764a7e04c4e3217f2561b50ae7e86ef7aae118c010ae163d3c97a0ea&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/S7QF3DWVFVGZBAJMTDO465U5KY.JPG?auth=66195cd7764a7e04c4e3217f2561b50ae7e86ef7aae118c010ae163d3c97a0ea&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/S7QF3DWVFVGZBAJMTDO465U5KY.JPG","width":5636},{"caption":"Brie Gibson and Lacey Headley-Collier hold an American flag upside, a symbol of distress, at the Hands Off protest in Bend, Ore., on Apr. 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Kathryn Styer Martínez","type":"author"}]},"height":3527,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BPSDGH72QNDYRLV6DJ6UPR2F7E.JPG?auth=45bd374b139f83771e04c6a2d729b630e37462ebef57cbcd56b53ec0c2fd34d3&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BPSDGH72QNDYRLV6DJ6UPR2F7E.JPG?auth=45bd374b139f83771e04c6a2d729b630e37462ebef57cbcd56b53ec0c2fd34d3&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BPSDGH72QNDYRLV6DJ6UPR2F7E.JPG?auth=45bd374b139f83771e04c6a2d729b630e37462ebef57cbcd56b53ec0c2fd34d3&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BPSDGH72QNDYRLV6DJ6UPR2F7E.JPG?auth=45bd374b139f83771e04c6a2d729b630e37462ebef57cbcd56b53ec0c2fd34d3&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/BPSDGH72QNDYRLV6DJ6UPR2F7E.JPG","width":5291},{"caption":"Debbie McPherson, 72, holds a sign reading \"FDT\" made by her niece at the Hands Off protest in Bend, Ore., on April 5, 2025. McPherson said this isn't her first time protesting but she made it out because she wants \"to get rid of Elon and Trump.\"","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Kathryn Styer Martínez","type":"author"}]},"height":3790,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JKMCKJFPIJG5NGJONQKNBHYOMY.JPG?auth=fc711e7591ab9632ab6d33c7317a3da5624687b4a6b26c11389088bbf83c3bb4&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JKMCKJFPIJG5NGJONQKNBHYOMY.JPG?auth=fc711e7591ab9632ab6d33c7317a3da5624687b4a6b26c11389088bbf83c3bb4&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JKMCKJFPIJG5NGJONQKNBHYOMY.JPG?auth=fc711e7591ab9632ab6d33c7317a3da5624687b4a6b26c11389088bbf83c3bb4&width=1023","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JKMCKJFPIJG5NGJONQKNBHYOMY.JPG?auth=fc711e7591ab9632ab6d33c7317a3da5624687b4a6b26c11389088bbf83c3bb4&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/JKMCKJFPIJG5NGJONQKNBHYOMY.JPG","width":5685}]}},"subheadlines":{"basic":"Outside of Portland, protests drew hundreds of people in Tigard, Madras, Pendleton, Medford and elsewhere across Oregon on Saturday, as part of the national “Hands Off” day of action."},"subtype":"standard","taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"protests","text":"Protests"},{"slug":"oregon","text":"Oregon"},{"slug":"washington","text":"Washington"},{"slug":"trump","text":"Trump"}]},"type":"story"},{"_id":"HHFAKDWPFFEHPL7WNF2FYUKOWU","canonical_url":"/article/2025/04/04/oregon-department-human-services-gene-evans-st-helens-spokesman-sexual-abuse-students/","canonical_website":"opb","credits":{"by":[{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/82c6a037-967e-4678-ba32-db13b3e9def7.png"},"name":"Joni Land","slug":"joni-auden-land","type":"author","url":"/author/joni-auden-land/"},{"name":"Lauren Dake","slug":"lauren-dake","type":"author","url":"/author/lauren-dake"}]},"description":{"basic":"The investigation comes days after OPB published an investigation into decades-old claims of sexual abuse against Evans, all from his time as a teacher at St. Helens High School in the 1980s."},"display_date":"2025-04-04T13:00:01Z","headlines":{"basic":"DHS investigation"},"label":{"kicker":{"display":true,"text":"Law and Justice","url":"https://www.opb.org/tag/law/"}},"promo_items":{"basic":{"caption":"A photo of Gene Evans, right, in a high school yearbook at Jodie Westing’s home in Wilsonville, Ore., Dec. 30, 2024. The Oregon Department of Human Services says it's investigating claims of sexual abuse against Evans, who served as the agency's spokesperson for several years.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Kristyna Wentz-Graff","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZPMT76FUWFBDHHD5K2R5NBBLJA.JPG?auth=34081f7e111c90319511831c2f3a2a544eb76fce8c4617c9b9bfc201f0fbf343&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZPMT76FUWFBDHHD5K2R5NBBLJA.JPG?auth=34081f7e111c90319511831c2f3a2a544eb76fce8c4617c9b9bfc201f0fbf343&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZPMT76FUWFBDHHD5K2R5NBBLJA.JPG?auth=34081f7e111c90319511831c2f3a2a544eb76fce8c4617c9b9bfc201f0fbf343&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZPMT76FUWFBDHHD5K2R5NBBLJA.JPG?auth=34081f7e111c90319511831c2f3a2a544eb76fce8c4617c9b9bfc201f0fbf343&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/ZPMT76FUWFBDHHD5K2R5NBBLJA.JPG","width":1440}},"subheadlines":{"basic":""},"subtype":"standard","taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"sexual-harassment","text":"Sexual Harassment"},{"slug":"sexual-assault","text":"Sexual Assault"},{"slug":"education","text":"Education"},{"slug":"students","text":"Students"},{"slug":"teachers","text":"Teachers"},{"slug":"investigations","text":"Investigations"},{"slug":"high-school","text":"High School"}]},"type":"story"},{"_id":"622NOCNYBBHQVLXIKJO6CYZANE","canonical_url":"/article/2025/04/03/oregon-democrats-unveil-ambitious-road-funding-proposal-now-the-haggling-begins/","canonical_website":"opb","credits":{"by":[{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/07d7fbcc-cb98-43d4-bd64-ee20085d0001.png"},"name":"Dirk VanderHart","slug":"dirk-vanderhart","type":"author","url":"/author/dirk-vanderhart"}]},"description":{"basic":"A framework released Thursday includes a major gas tax hike, several entirely new taxes and a lot more."},"display_date":"2025-04-03T22:00:00Z","headlines":{"basic":"Road funding proposal"},"label":{"kicker":{"display":true,"text":"Politics","url":"https://www.opb.org/politics/"}},"promo_items":{"basic":{"alt_text":"An ODOT maintenance crew fills potholes on Highway 26.","caption":"An ODOT maintenance crew fills potholes on U.S. 26 in the Portland area. Basic road maintenance is intended to be a key focus on the proposed transportation package in the 2025 session. ","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Julie Sabatier","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JCKWRRMPXBFPFCAA5TZGHKMBPU.jpg?auth=e7e414cf3dfb8e214737364874b17f61863ceb3f82dea008dee3fd542fc4d156&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JCKWRRMPXBFPFCAA5TZGHKMBPU.jpg?auth=e7e414cf3dfb8e214737364874b17f61863ceb3f82dea008dee3fd542fc4d156&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JCKWRRMPXBFPFCAA5TZGHKMBPU.jpg?auth=e7e414cf3dfb8e214737364874b17f61863ceb3f82dea008dee3fd542fc4d156&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JCKWRRMPXBFPFCAA5TZGHKMBPU.jpg?auth=e7e414cf3dfb8e214737364874b17f61863ceb3f82dea008dee3fd542fc4d156&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/JCKWRRMPXBFPFCAA5TZGHKMBPU.jpg","width":1440}},"subheadlines":{"basic":"A framework released Thursday includes a major gas tax hike, several entirely new taxes, and a lot more."},"subtype":"standard","taxonomy":{"primary_section":{"name":"Politics"},"sections":[{"_id":"/politics","additional_properties":{"original":{"site":{"site_url":null}}},"name":"Politics","path":"/politics","type":"section"},{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"politics","text":"Politics"},{"slug":"transportation","text":"Transportation"},{"slug":"taxes","text":"Taxes"},{"slug":"infrastructure","text":"Infrastructure"},{"slug":"oregon-legislature","text":"Oregon Legislature"}]},"type":"story"},{"_id":"MUCIQYDZNFGHVA2SMTYIALCALU","canonical_url":"/article/2025/04/04/mt-mountain-bachelor-powdr-central-oregon-bend-sale-ski-resort/","canonical_website":"opb","credits":{"by":[{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/b60d917e-1b13-42f9-8f9b-49505c2a9194.jpg"},"name":"Emily Cureton Cook","slug":"emily-cureton-cook","type":"author","url":"/author/emily-cureton-cook"}]},"description":{"basic":"Last year the Utah-based POWDR announced a plan to sell the Central Oregon ski resort near Bend."},"display_date":"2025-04-04T20:51:31.303Z","headlines":{"basic":"Mt. Bachelor"},"label":{},"promo_items":{"basic":{"caption":"Lift lines form at Mt. Bachelor ski resort outside Bend, Ore., Monday, Dec. 7, 2020. ","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Bradley W. Parks","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JMVGDJGDVZC67JYNDW5B56K5XQ.jpg?auth=3aa3f2303271c2930fdb3bf544f41de88c605f2a81a590506a234e317c23ae53&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JMVGDJGDVZC67JYNDW5B56K5XQ.jpg?auth=3aa3f2303271c2930fdb3bf544f41de88c605f2a81a590506a234e317c23ae53&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JMVGDJGDVZC67JYNDW5B56K5XQ.jpg?auth=3aa3f2303271c2930fdb3bf544f41de88c605f2a81a590506a234e317c23ae53&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JMVGDJGDVZC67JYNDW5B56K5XQ.jpg?auth=3aa3f2303271c2930fdb3bf544f41de88c605f2a81a590506a234e317c23ae53&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/JMVGDJGDVZC67JYNDW5B56K5XQ.jpg","width":1440}},"subheadlines":{"basic":""},"subtype":"standard","taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"central-oregon","text":"Central Oregon"},{"slug":"bend","text":"Bend"},{"slug":"skiing","text":"Skiing"},{"slug":"recreation","text":"Recreation"},{"slug":"outdoor-recreation","text":"Outdoor Recreation"},{"slug":"business","text":"Business"}]},"type":"story"},{"_id":"XALMEBSFZZAXTP4TQN6Y576S7U","canonical_url":"/article/2025/04/04/flooding-southeast-oregon/","canonical_website":"opb","credits":{"by":[{"name":"AP Staff","org":"AP","type":"author"}]},"description":{"basic":"Flooding in rural southeastern Oregon from what authorities have described as “historic levels” of snowmelt and rainfall has prompted evacuation orders, school closures and public health concerns."},"display_date":"2025-04-04T15:36:33.811Z","headlines":{"basic":"Southeastern Oregon flooding"},"label":{},"promo_items":{"basic":{"caption":"This photo provided by the Deschutes County Sheriff's Office in Oregon shows its water rescue team as it helps respond to flooding in neighboring Harney County in March 2025.","credits":{"affiliation":[{"name":""}],"by":[{"name":"Deschutes County Sheriff's Office via AP","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/OMB3W2YLZJDNLPZXRRJV7VHV6Q.jpg?auth=dc62ab3f7d829ef1ae4d772afda60395367e2fdec3d23af878caf9526c8342fd&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/OMB3W2YLZJDNLPZXRRJV7VHV6Q.jpg?auth=dc62ab3f7d829ef1ae4d772afda60395367e2fdec3d23af878caf9526c8342fd&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/OMB3W2YLZJDNLPZXRRJV7VHV6Q.jpg?auth=dc62ab3f7d829ef1ae4d772afda60395367e2fdec3d23af878caf9526c8342fd&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/OMB3W2YLZJDNLPZXRRJV7VHV6Q.jpg?auth=dc62ab3f7d829ef1ae4d772afda60395367e2fdec3d23af878caf9526c8342fd&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/OMB3W2YLZJDNLPZXRRJV7VHV6Q.jpg","width":1440}},"subheadlines":{"basic":""},"subtype":"standard","taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"weather","text":"Weather"},{"slug":"eastern-oregon","text":"Eastern Oregon"}]},"type":"story"},{"_id":"25BT2VFLIVA4BFYVSNKLOR4JCQ","canonical_url":"/article/2025/04/03/oregon-supreme-court-tillamook-lawsuit-case-moves-forward/","canonical_website":"opb","credits":{"by":[{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/77a9289c-2723-402c-a75f-a007a8a06926.png"},"name":"Alejandro Figueroa","slug":"alejandro-figueroa","type":"author","url":""}]},"description":{"basic":"A year after holding oral arguments, the Oregon Supreme Court has ruled a lawsuit against one of Oregon’s most recognizable farmer-owned creameries can move forward."},"display_date":"2025-04-04T17:56:11.745Z","headlines":{"basic":"Tillamook lawsuit"},"label":{"kicker":{"display":true,"text":"Food and Farms","url":"https://www.opb.org/tag/food-and-farms/"}},"promo_items":{"basic":{"caption":"Tillamook Creamery, in Tillamook, Ore.","credits":{"affiliation":[],"by":[{"name":"Maps Data: © Google, 2025; Imagery August 2023","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/4NS4U7TR3RFMLKJVAEVELDROKE.JPG?auth=0a9f6a8565c03f6718b675d1d8a9d10d86d456fd8ef4e6734d408bf2a7d567d7&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/4NS4U7TR3RFMLKJVAEVELDROKE.JPG?auth=0a9f6a8565c03f6718b675d1d8a9d10d86d456fd8ef4e6734d408bf2a7d567d7&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/4NS4U7TR3RFMLKJVAEVELDROKE.JPG?auth=0a9f6a8565c03f6718b675d1d8a9d10d86d456fd8ef4e6734d408bf2a7d567d7&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/4NS4U7TR3RFMLKJVAEVELDROKE.JPG?auth=0a9f6a8565c03f6718b675d1d8a9d10d86d456fd8ef4e6734d408bf2a7d567d7&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/4NS4U7TR3RFMLKJVAEVELDROKE.JPG","width":1440}},"subheadlines":{"basic":""},"subtype":"standard","taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"science-environment","text":"Science & Environment"},{"slug":"lawsuit","text":"Lawsuit"},{"slug":"oregon-supreme-court","text":"Oregon Supreme Court"},{"slug":"dairy","text":"Dairy"},{"slug":"farmers","text":"Farmers"},{"slug":"farming","text":"Farming"},{"slug":"food-and-farms","text":"Food And Farms"},{"slug":"justice","text":"Justice"}]},"type":"story"},{"_id":"LCNVTYP5JZGNBB6VXXPGNDX5LY","canonical_url":"/article/2025/04/03/columbia-river-mental-health-new-ceo-six-6-million-shortfall/","canonical_website":"opb","credits":{"by":[{"image":{"url":"https://author-service-images-prod-us-east-1.publishing.aws.arc.pub/opb/0fa36596-3962-4d7c-8be4-2d4b826f1e09.jpg"},"name":"Erik Neumann","org":"OPB","slug":"erik-neumann","type":"author","url":"/author/erik-neumann/"}]},"description":{"basic":"Columbia River Mental Health Services announced Thursday that it has hired Craig Pridemore to be the nonprofit’s interim CEO. "},"display_date":"2025-04-04T19:18:11.737Z","headlines":{"basic":"Columbia River Mental Health"},"label":{"kicker":{"display":true,"text":"Health","url":"https://www.opb.org/tag/health/"}},"promo_items":{"basic":{"caption":"Columbia River Mental Health Services clinic in Vancouver on March 24, 2025. The facility shut down abruptly in what administrators described as a \"pause in services.\"","credits":{"affiliation":[{"name":"OPB"}],"by":[{"image":{"url":"https://author-service-images-prod-us-east-1.publishing.aws.arc.pub/opb/0fa36596-3962-4d7c-8be4-2d4b826f1e09.jpg"},"name":"Erik Neumann","org":"OPB","slug":"erik-neumann","type":"author","url":"/author/erik-neumann/"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/3O4SQKMZGNAPLKW7H2LC766X6E.jpg?auth=27a09c012aff52b467b502299065bd1de92ed212f8f58977a408a25f9d46262a&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/3O4SQKMZGNAPLKW7H2LC766X6E.jpg?auth=27a09c012aff52b467b502299065bd1de92ed212f8f58977a408a25f9d46262a&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/3O4SQKMZGNAPLKW7H2LC766X6E.jpg?auth=27a09c012aff52b467b502299065bd1de92ed212f8f58977a408a25f9d46262a&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/3O4SQKMZGNAPLKW7H2LC766X6E.jpg?auth=27a09c012aff52b467b502299065bd1de92ed212f8f58977a408a25f9d46262a&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/3O4SQKMZGNAPLKW7H2LC766X6E.jpg","width":1440}},"subheadlines":{"basic":"The struggling mental health services provider in Vancouver hopes the new CEO will help address financial problems and reopen facilities. "},"subtype":"standard","taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"mental-health","text":"Mental Health"},{"slug":"health","text":"Health"},{"slug":"health-care","text":"Health Care"},{"slug":"clark-county","text":"Clark County"}]},"type":"story"},{"_id":"AY4MQEMEUZBMLIX7N4ANUEJKXM","canonical_url":"/article/2025/04/03/portland-councilors-pcef-tax-hike/","canonical_website":"opb","credits":{"by":[{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/72270cd1-210a-4886-98ad-fc4fde476a09.png"},"name":"Monica Samayoa","slug":"monica-samayoa","type":"author","url":"/author/monica-samayoa"}]},"description":{"basic":"Raising the Portland Clean Energy Fund tax could generate $60 million for non-climate programs.\n"},"display_date":"2025-04-04T23:02:04.158Z","headlines":{"basic":"PCEF tax hike"},"label":{"kicker":{"display":true,"text":"Science & Environment","url":"https://www.opb.org/science_environment/"}},"promo_items":{"basic":{"caption":"FILE- Portland City Hall, Nov. 15, 2024.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Kristyna Wentz-Graff","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/M2GP4GUFBFEJTN4FSWEEDIYV4Q.jpg?auth=d26d4ee1ef5db4a9ab8f0c4a69476cf5a7f0ac1be28a88bf55a30b2bc4a2b884&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/M2GP4GUFBFEJTN4FSWEEDIYV4Q.jpg?auth=d26d4ee1ef5db4a9ab8f0c4a69476cf5a7f0ac1be28a88bf55a30b2bc4a2b884&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/M2GP4GUFBFEJTN4FSWEEDIYV4Q.jpg?auth=d26d4ee1ef5db4a9ab8f0c4a69476cf5a7f0ac1be28a88bf55a30b2bc4a2b884&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/M2GP4GUFBFEJTN4FSWEEDIYV4Q.jpg?auth=d26d4ee1ef5db4a9ab8f0c4a69476cf5a7f0ac1be28a88bf55a30b2bc4a2b884&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/M2GP4GUFBFEJTN4FSWEEDIYV4Q.jpg","width":1440}},"subheadlines":{"basic":"Raising the Portland Clean Energy Fund tax could generate $60 million for non-climate programs"},"subtype":"standard","taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"portland-city-council","text":"Portland City Council"},{"slug":"clean-energy","text":"Clean Energy"}]},"type":"story"},{"_id":"CYF75Q2JE5A2BFLO5PN4I3UZTM","canonical_url":"/article/2025/04/03/salmon-return-to-the-klamaths-oregon-waters-but-the-rivers-headwaters-are-still-blocked/","canonical_website":"opb","credits":{"by":[{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/faa66996-6436-42c1-8d98-6762c6c3e155.JPG"},"name":"Cassandra Profita","slug":"cassandra-profita","type":"author","url":"/author/cassandra-profita"}]},"description":{"basic":"After decades of conflict, farmers and tribes say they’re working in concert to restore salmon habitat in the Klamath Basin. But two dams remain - one that blocks fish passage another that plays a key role for agriculture."},"display_date":"2025-04-03T13:00:01Z","headlines":{"basic":"Klamath River"},"label":{"kicker":{"display":true,"text":"Oregon Field Guide","url":"https://www.opb.org/show/oregonfieldguide/"}},"promo_items":{"basic":{"alt_text":"The Klamath River now flows free for hundreds of miles from Southern Oregon to the ocean. But after the largest dam removal project in the U.S., challenges remain. Water shortages in the upper basin fuel toxic bacteria, disease outbreaks and conflicts over endangered fish as salmon swim upstream for the first time in a century.","caption":"Challenges remain after the country’s largest dam removal project on the Klamath River.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/a6cf4332-36e9-4b13-8210-ff29f659cb68.jpg"},"name":"Brandon Swanson","slug":"brandon-swanson","type":"author","url":""}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/7KAGEELY7ZANNNE625XN2ZCBXA.jpg?auth=a446b066c8ca847b9fb6d8f43b3060e0821d84626b45c580d8ae6a34282ed97d&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/7KAGEELY7ZANNNE625XN2ZCBXA.jpg?auth=a446b066c8ca847b9fb6d8f43b3060e0821d84626b45c580d8ae6a34282ed97d&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/7KAGEELY7ZANNNE625XN2ZCBXA.jpg?auth=a446b066c8ca847b9fb6d8f43b3060e0821d84626b45c580d8ae6a34282ed97d&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/7KAGEELY7ZANNNE625XN2ZCBXA.jpg?auth=a446b066c8ca847b9fb6d8f43b3060e0821d84626b45c580d8ae6a34282ed97d&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/7KAGEELY7ZANNNE625XN2ZCBXA.jpg","width":1440},"video":{"_id":"cb50bc1d-8197-49dc-9d84-cf5b42f917f5"}},"subheadlines":{"basic":"After decades of conflict, farmers and tribes say they’re working in concert to restore salmon habitat in the Klamath Basin. But two dams remain"},"subtype":"hero","taxonomy":{"primary_section":{"name":"Science & Environment"},"sections":[{"_id":"/science_environment","additional_properties":{"original":{"site":{"site_url":null}}},"name":"Science & Environment","path":"/science_environment","type":"section"}],"tags":[{"slug":"science-environment","text":"Science & Environment"},{"slug":"salmon","text":"Salmon"},{"slug":"tribes","text":"Tribes"},{"slug":"farmers","text":"Farmers"},{"slug":"food-and-farms","text":"Food And Farms"},{"slug":"klamath","text":"Klamath"},{"slug":"klamath-basin","text":"Klamath Basin"},{"slug":"klamath-river","text":"Klamath River"},{"slug":"southern-oregon","text":"Southern Oregon"},{"slug":"dam-removal","text":"Dam Removal"},{"slug":"dams","text":"Dams"},{"slug":"oregon-field-guide","text":"Oregon Field Guide"}]},"type":"story"},{"_id":"2RBH6TDAS5BMLFYMW7VRYU63WQ","canonical_url":"/article/2025/04/03/oregon-humanities-national-endowment-cuts/","canonical_website":"opb","credits":{"by":[{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/37011659-34a5-42dc-b5fd-1ef38b1fc2d5.png"},"name":"Kristian Foden-Vencil","slug":"kristian-foden-vencil","type":"author","url":"/author/kristian-foden-vencil"}]},"description":{"basic":"Nonprofit Oregon Humanities loses half its income as Trump administration cuts National Endowment for the Humanities grants."},"display_date":"2025-04-03T22:45:25.047Z","headlines":{"basic":"Oregon Humanities"},"label":{"kicker":{"display":true,"text":"Federal funding","url":"https://www.opb.org/politics"}},"promo_items":{"basic":{"caption":"FILE - People take part in the \"So Much Together\" workshop organized by Oregon Humanities in Oregon in 2025. The nonprofit loses half its income as Trump administration cuts National Endowment for the Humanities grants.","credits":{"affiliation":[],"by":[{"name":"Rozzell Medina","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/GTTWN5LKRJEYBOT25HFZYBROAY.jpg?auth=25e695600f5c5f1d5b84f9d6d28ed2ff58fb6ecd792a9ccf5cd0a068ad793988&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/GTTWN5LKRJEYBOT25HFZYBROAY.jpg?auth=25e695600f5c5f1d5b84f9d6d28ed2ff58fb6ecd792a9ccf5cd0a068ad793988&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/GTTWN5LKRJEYBOT25HFZYBROAY.jpg?auth=25e695600f5c5f1d5b84f9d6d28ed2ff58fb6ecd792a9ccf5cd0a068ad793988&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/GTTWN5LKRJEYBOT25HFZYBROAY.jpg?auth=25e695600f5c5f1d5b84f9d6d28ed2ff58fb6ecd792a9ccf5cd0a068ad793988&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/GTTWN5LKRJEYBOT25HFZYBROAY.jpg","width":1440}},"subheadlines":{"basic":""},"subtype":"standard","taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"oregon","text":"Oregon"},{"slug":"funding","text":"Funding"},{"slug":"trump","text":"Trump"}]},"type":"story"}]},"expires":1744001761369,"lastModified":1744001641133},"{\"collectionId\":\"3DNXLLIM6VFUFIBKPD5747QDJE\",\"from\":1,\"size\":6}":{"data":{"_id":"3DNXLLIM6VFUFIBKPD5747QDJE","content_elements":[{"_id":"YVCWU2HBTBJBPG4FLSBFJIRVUY","canonical_url":"/article/2025/04/06/jaguar-land-rover-automotive-pauses-shipments-to-us/","canonical_website":"opb","credits":{"by":[{"name":"The Associated Press","type":"author"}]},"description":{"basic":"Jaguar Land Rover Automotive said it was pausing U.S. shipments due to Trump's tariffs as it works on mid- to long-term plans to adapt to the changing trade landscape."},"display_date":"2025-04-06T15:28:59.078Z","headlines":{"basic":"Jaguar and Land Rover maker pauses shipments to US as it develops post-tariff plans"},"label":{"kicker":{"display":true,"text":"Economy","url":"https://www.opb.org/tag/economy/"}},"promo_items":{"basic":{"alt_text":"FILE - An unsold 2021 F-Type coupe sits at a Jaguar dealership in this photograph taken Sunday, May 2, 2021, in Littleton, Colo.","caption":"FILE - An unsold 2021 F-Type coupe sits at a Jaguar dealership in this photograph taken Sunday, May 2, 2021, in Littleton, Colo.","credits":{"by":[{"name":"David Zalubowski","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/T3IIHPQTHBJNRAAWLVK33FQCQI.jpg?auth=7b24c6b117b7b4c2281f081d0dc76cb31fa6a719495e8c5be42d6385d111d1e9&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/T3IIHPQTHBJNRAAWLVK33FQCQI.jpg?auth=7b24c6b117b7b4c2281f081d0dc76cb31fa6a719495e8c5be42d6385d111d1e9&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/T3IIHPQTHBJNRAAWLVK33FQCQI.jpg?auth=7b24c6b117b7b4c2281f081d0dc76cb31fa6a719495e8c5be42d6385d111d1e9&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/T3IIHPQTHBJNRAAWLVK33FQCQI.jpg?auth=7b24c6b117b7b4c2281f081d0dc76cb31fa6a719495e8c5be42d6385d111d1e9&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/T3IIHPQTHBJNRAAWLVK33FQCQI.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"europe","text":"Europe"},{"slug":"business","text":"Business"},{"slug":"news","text":"News"},{"slug":"world","text":"World"}]},"type":"story"},{"_id":"LBZ422R6BJOZPNUHCBGEUE6TLA","canonical_url":"/article/2025/04/06/trump-paused-a-program-to-upgrade-aging-affordable-housing/","canonical_website":"opb","credits":{"by":[{"name":"Jennifer Ludden","type":"author"}]},"description":{"basic":"The Trump administration froze funding for a program to upgrade aging low-income housing and make it energy efficient. The move threatens hundreds of projects around the country."},"display_date":"2025-04-06T15:13:54.595Z","headlines":{"basic":"For these seniors, DOGE's affordable housing pause means suffering longer without AC"},"label":{"kicker":{"display":true,"text":"Housing","url":"https://www.opb.org/politics"}},"promo_items":{"basic":{"alt_text":"Linda Morgan on March 28 in her sister’s apartment at Trinity Woods senior living in Emporia, Va., where they both live. ","caption":"Linda Morgan on March 28 in her sister's apartment at Trinity Woods senior living in Emporia, Va., where they both live. The building's decades-old central air conditioning system died three years ago. \"It's terribly hot,\" said Morgan, who uses six fans and portable coolers to stay comfortable during long summers.","credits":{"by":[{"name":"Carlos Bernate","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/YMPCMQRTD5O6HHFGLH6R6OAM44.jpg?auth=4229742221a5ff4266878dd9daab4df592c55c51c1549cb2c3ac1acef5ea9e49&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/YMPCMQRTD5O6HHFGLH6R6OAM44.jpg?auth=4229742221a5ff4266878dd9daab4df592c55c51c1549cb2c3ac1acef5ea9e49&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/YMPCMQRTD5O6HHFGLH6R6OAM44.jpg?auth=4229742221a5ff4266878dd9daab4df592c55c51c1549cb2c3ac1acef5ea9e49&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/YMPCMQRTD5O6HHFGLH6R6OAM44.jpg?auth=4229742221a5ff4266878dd9daab4df592c55c51c1549cb2c3ac1acef5ea9e49&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/YMPCMQRTD5O6HHFGLH6R6OAM44.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"national","text":"National"},{"slug":"politics","text":"Politics"},{"slug":"news","text":"News"}]},"type":"story"},{"_id":"MM36BAZNI5MBFAPPDQYHEBPWIA","canonical_url":"/article/2025/04/06/online-shoppers-will-pay-more-for-cheap-chinese-goods/","canonical_website":"opb","credits":{"by":[{"name":"Brian Mann","type":"author"}]},"description":{"basic":"The so-called de minimis exemption allowed Chinese and Hong Kong retailers to ship millions of packages worth $800 or less directly to U.S. consumers. That loophole will close May 2."},"display_date":"2025-04-06T15:16:47.118Z","headlines":{"basic":"Trump closes loophole used by American shoppers to buy Chinese goods tariff-free"},"label":{"kicker":{"display":true,"text":"Economy","url":"https://www.opb.org/tag/economy/"}},"promo_items":{"audio":{"embed":{"config":{"origin":"npr"},"url":"https://ondemand.npr.org/anon.npr-mp3/npr/wesat/2025/04/20250405_wesat_trump_closes_loophole_used_by_american_shoppers_to_buy_chinese_goods_tariff-free.mp3?size=4195519&d=262181&e=nx-s1-5350588"}},"basic":{"alt_text":"President Donald Trump's new trade levies include a broadside against e-commerce. His executive order extinguishes a tariff exemption for packages from China and Hong Kong worth less than $800.","caption":"President Donald Trump's new trade levies include a broadside against e-commerce. His executive order extinguishes a tariff exemption for packages from China and Hong Kong worth less than $800.","credits":{"affiliation":[{"name":"Bloomberg via Getty Images"}],"by":[{"name":"Bloomberg/Bloomberg via Getty Images","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/NDFALC2T2RP5PB4FVXQHYJTRM4.jpg?auth=9e3d302153b27c8a3c3d44571f732e7d8c48c2acbb15e344e9ca9ff5a36cc87b&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/NDFALC2T2RP5PB4FVXQHYJTRM4.jpg?auth=9e3d302153b27c8a3c3d44571f732e7d8c48c2acbb15e344e9ca9ff5a36cc87b&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/NDFALC2T2RP5PB4FVXQHYJTRM4.jpg?auth=9e3d302153b27c8a3c3d44571f732e7d8c48c2acbb15e344e9ca9ff5a36cc87b&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/NDFALC2T2RP5PB4FVXQHYJTRM4.jpg?auth=9e3d302153b27c8a3c3d44571f732e7d8c48c2acbb15e344e9ca9ff5a36cc87b&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/NDFALC2T2RP5PB4FVXQHYJTRM4.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"business","text":"Business"},{"slug":"economy","text":"Economy"},{"slug":"news","text":"News"}]},"type":"story"},{"_id":"5KE4BO7F7RLABLTQAD7BIGVKUM","canonical_url":"/article/2025/04/05/senate-republicans-share-budget-plan-to-promote-trump-s-domestic-agenda/","canonical_website":"opb","credits":{"by":[{"name":"Claudia Grisales","type":"author"}]},"description":{"basic":"If passed, the package could become a hallmark of President Trump's second term. But a number of obstacles remain ahead. "},"display_date":"2025-04-05T21:06:09.565Z","headlines":{"basic":"Senate Republicans move forward with their budget plan to promote Trump's agenda"},"label":{"kicker":{"display":true,"text":"Budget","url":"https://www.opb.org/politics"}},"promo_items":{"audio":{"embed":{"config":{"origin":"npr"},"url":"https://ondemand.npr.org/anon.npr-mp3/npr/wesat/2025/04/20250405_wesat_senate_republicans_moves_forward_with_a_partisan_budget_key_to_president_trump_s_domestic_agenda.mp3?size=3910053&d=244332&e=g-s1-57850"}},"basic":{"alt_text":"Senate Majority Leader John Thune, R-S.D., speaks to reporters at the U.S. Capitol on Tuesday. Senate Republicans have unveiled a budget blueprint they hope to pass as they look to enact key elements of President Trump's domestic policy agenda.","caption":"Senate Majority Leader John Thune, R-S.D., speaks to reporters at the U.S. Capitol on Tuesday. Senate Republicans have unveiled a budget blueprint they hope to pass as they look to enact key elements of President Trump's domestic policy agenda.","credits":{"by":[{"name":"Kayla Bartkowski","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QSHFAPKHGZKTXIRC5ICIPRWOYU.jpg?auth=dbbeeedfe9cf2919a50f5f4052e29d020a3ba5c14e16e63afc634f449c135abf&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QSHFAPKHGZKTXIRC5ICIPRWOYU.jpg?auth=dbbeeedfe9cf2919a50f5f4052e29d020a3ba5c14e16e63afc634f449c135abf&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QSHFAPKHGZKTXIRC5ICIPRWOYU.jpg?auth=dbbeeedfe9cf2919a50f5f4052e29d020a3ba5c14e16e63afc634f449c135abf&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QSHFAPKHGZKTXIRC5ICIPRWOYU.jpg?auth=dbbeeedfe9cf2919a50f5f4052e29d020a3ba5c14e16e63afc634f449c135abf&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/QSHFAPKHGZKTXIRC5ICIPRWOYU.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"politics","text":"Politics"},{"slug":"news","text":"News"},{"slug":"home-page-top-stories","text":"Home Page Top Stories"}]},"type":"story"},{"_id":"VRAGYKQDQFJKRMUPXWMRATPDEM","canonical_url":"/article/2025/04/05/chaotic-hhs-layoffs-leave-employees-at-cdc-fda-and-nih-reeling/","canonical_website":"opb","credits":{"by":[{"name":"Rob Stein","type":"author"},{"name":"Yuki Noguchi","type":"author"},{"name":"Sydney Lupkin","type":"author"},{"name":"Chiara Eisner","type":"author"},{"name":"Selena Simmons-Duffin","type":"author"},{"name":"Carmel Wroth","type":"author"}]},"description":{"basic":"Health agency staffers describe a week of chaos and continued uncertainty about who still has a job and how the work will get done. To many it's the opposite of \"government efficiency.\""},"display_date":"2025-04-05T15:06:06.35Z","headlines":{"basic":"'Your RIF notice is not cancelled.' Inside a chaotic week of massive layoffs at HHS"},"label":{"kicker":{"display":true,"text":"Federal workforce","url":"https://www.opb.org/politics"}},"promo_items":{"basic":{"alt_text":"A worker wheels out the belongings of a fellow employee who was dismissed, outside of the Mary E. Switzer Federal Office Building, which houses offices for the US Department of Health and Human Services in Washington, DC, on Tuesday.","caption":"A worker wheels out the belongings of a fellow employee who was dismissed, outside of the Mary E. Switzer Federal Office Building, which houses HHS offices in Washington, D.C., on Tuesday.","credits":{"by":[{"name":"Al Drago/Bloomberg","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QDNTC3R53ZLWZB677EYKH5ROMQ.jpg?auth=db41494f017723e66dfe600e46904d93c1dacab560bd0997d2e8a64bd305b23c&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QDNTC3R53ZLWZB677EYKH5ROMQ.jpg?auth=db41494f017723e66dfe600e46904d93c1dacab560bd0997d2e8a64bd305b23c&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QDNTC3R53ZLWZB677EYKH5ROMQ.jpg?auth=db41494f017723e66dfe600e46904d93c1dacab560bd0997d2e8a64bd305b23c&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QDNTC3R53ZLWZB677EYKH5ROMQ.jpg?auth=db41494f017723e66dfe600e46904d93c1dacab560bd0997d2e8a64bd305b23c&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/QDNTC3R53ZLWZB677EYKH5ROMQ.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"health","text":"Health"},{"slug":"news","text":"News"},{"slug":"politics","text":"Politics"},{"slug":"home-page-top-stories","text":"Home Page Top Stories"}]},"type":"story"},{"_id":"NSSFUUNKRZLPXFI2OOCNTO4AOA","canonical_url":"/article/2025/04/04/supreme-court-sides-with-administration-over-education-department-grants/","canonical_website":"opb","credits":{"by":[{"name":"Nina Totenberg","type":"author"},{"name":"Christina Gatti","type":"author"}]},"description":{"basic":"By a 5-4 vote, the justices allowed the administration to freeze millions of dollars in grant funding for diversity and instructional programs at public and private universities."},"display_date":"2025-04-05T01:47:07.13Z","headlines":{"basic":"Supreme Court sides with administration over Education Department grants"},"label":{"kicker":{"display":true,"text":"Education","url":"https://www.opb.org/tag/education/"}},"promo_items":{"audio":{"embed":{"config":{"origin":"npr"},"url":"https://ondemand.npr.org/anon.npr-mp3/npr/atc/2025/04/20250404_atc_supreme_court_sides_with_administration_over_education_department_grants.mp3?size=3912142&d=244466&e=nx-s1-5345607"}},"basic":{"alt_text":"The Supreme Court","caption":"The Supreme Court","credits":{"by":[{"name":"Andrew Harnik","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/GA23VBKWNNOF3EYZOURF5EOQK4.jpg?auth=31f3eac7ff96607ac46a96f3177b8bb4c968a2dbdcc8596aa637f61e60f8245d&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/GA23VBKWNNOF3EYZOURF5EOQK4.jpg?auth=31f3eac7ff96607ac46a96f3177b8bb4c968a2dbdcc8596aa637f61e60f8245d&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/GA23VBKWNNOF3EYZOURF5EOQK4.jpg?auth=31f3eac7ff96607ac46a96f3177b8bb4c968a2dbdcc8596aa637f61e60f8245d&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/GA23VBKWNNOF3EYZOURF5EOQK4.jpg?auth=31f3eac7ff96607ac46a96f3177b8bb4c968a2dbdcc8596aa637f61e60f8245d&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/GA23VBKWNNOF3EYZOURF5EOQK4.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"national","text":"National"},{"slug":"education","text":"Education"},{"slug":"news","text":"News"},{"slug":"home-page-top-stories","text":"Home Page Top Stories"}]},"type":"story"}]},"expires":1744001792191,"lastModified":1744001672052},"{\"collectionId\":\"TRZN7AH53JESBCWZ6NC4TLBEP4\",\"from\":1,\"size\":3}":{"data":{"_id":"TRZN7AH53JESBCWZ6NC4TLBEP4","content_elements":[{"_id":"YO3GGSAG4VKBZHZLNXIZLA2VIU","canonical_url":"/article/2025/04/06/israeli-strikes-on-gaza-kill-at-least-32-mostly-women-and-children/","canonical_website":"opb","credits":{"by":[{"name":"The Associated Press","type":"author"}]},"description":{"basic":"Israeli strikes on Gaza killed at least 32 people, including over a dozen women and children, local health officials said Sunday, as Israeli Prime Minister Netanyahu headed to meet President Trump."},"display_date":"2025-04-06T18:21:46.896Z","headlines":{"basic":"Israeli strikes on Gaza kill at least 32, mostly women and children"},"promo_items":{"basic":{"alt_text":"A man passes by the destroyed house of journalist Islam Meqdad, where she was killed along with her son and five other family members in an Israeli army strike in Khan Younis, southern Gaza Strip, Sunday, April 6, 2025.","caption":"A man passes by the destroyed house of journalist Islam Meqdad, where she was killed along with her son and five other family members in an Israeli army strike in Khan Younis, southern Gaza Strip, Sunday, April 6, 2025.","credits":{"affiliation":[{"name":"AP"}],"by":[{"name":"Abdel Kareem Hana","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/S3JFP7HBYFLM5JCBBS5PI4STQA.jpg?auth=83f2bfa3ecbc1066237ade331d019f246e2e95b90bba39fd90f5d92c8be74f7d&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/S3JFP7HBYFLM5JCBBS5PI4STQA.jpg?auth=83f2bfa3ecbc1066237ade331d019f246e2e95b90bba39fd90f5d92c8be74f7d&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/S3JFP7HBYFLM5JCBBS5PI4STQA.jpg?auth=83f2bfa3ecbc1066237ade331d019f246e2e95b90bba39fd90f5d92c8be74f7d&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/S3JFP7HBYFLM5JCBBS5PI4STQA.jpg?auth=83f2bfa3ecbc1066237ade331d019f246e2e95b90bba39fd90f5d92c8be74f7d&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/S3JFP7HBYFLM5JCBBS5PI4STQA.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"news","text":"News"},{"slug":"world","text":"World"}]},"type":"story"},{"_id":"OUF3EMAAVRO5ZHO6NY7CCL6IDA","canonical_url":"/article/2025/04/06/life-in-sudan-s-capital-after-its-recapture/","canonical_website":"opb","credits":{"by":[{"name":"Kate Bartlett","type":"author"},{"name":"Emmanuel Akinwotu","type":"author"}]},"description":{"basic":"Sudanese activist Duaa Tariq, who spoke to NPR throughout the war, shares what its like in the \"liberated\" capital Khartoum, after two years occupied by the Rapid Support Forces"},"display_date":"2025-04-06T15:26:30.165Z","headlines":{"basic":"In 'free' Khartoum, the ruined streets smell of perfume and music plays"},"promo_items":{"audio":{"embed":{"config":{"origin":"npr"},"url":"https://ondemand.npr.org/anon.npr-mp3/npr/wesun/2025/04/20250406_wesun_in_free_khartoum_the_ruined_streets_smell_of_perfume_and_music_plays.mp3?size=4503555&d=281440&e=nx-s1-5352288"}},"basic":{"alt_text":"Army soldiers patrol a market area in Khartoum on March 24, 2025. For nearly two years, Sudan has been ravaged by a war between the regular army and the RSF, a conflict that has killed tens of thousands of people, uprooted over 12 million more and created the world's largest hunger and displacement crises.","caption":"Army soldiers patrol a market area in Khartoum.","credits":{"by":[{"name":"AFP via Getty Images","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/3BXQHGLSXJL7XB7JYWTQKQQTEI.jpg?auth=dae2e4914953754505d5bc7acdc2c1acfabc830f3cfd6683453cadc8ab961109&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/3BXQHGLSXJL7XB7JYWTQKQQTEI.jpg?auth=dae2e4914953754505d5bc7acdc2c1acfabc830f3cfd6683453cadc8ab961109&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/3BXQHGLSXJL7XB7JYWTQKQQTEI.jpg?auth=dae2e4914953754505d5bc7acdc2c1acfabc830f3cfd6683453cadc8ab961109&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/3BXQHGLSXJL7XB7JYWTQKQQTEI.jpg?auth=dae2e4914953754505d5bc7acdc2c1acfabc830f3cfd6683453cadc8ab961109&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/3BXQHGLSXJL7XB7JYWTQKQQTEI.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"africa","text":"Africa"},{"slug":"world","text":"World"},{"slug":"news","text":"News"}]},"type":"story"},{"_id":"ZWDNQTLCEBLJDC2MMO3HTBZZLM","canonical_url":"/article/2025/04/06/1-killed-in-russian-attack-on-kyiv-as-death-toll-from-missile-strike-rises-to-19/","canonical_website":"opb","credits":{"by":[{"name":"The Associated Press","type":"author"}]},"description":{"basic":"One person was killed Sunday as Russian air strikes hit the Ukrainian capital, Kyiv, while the death toll from Friday's deadly attack on the central Ukrainian city of Kryvyi Rih continued to rise."},"display_date":"2025-04-06T15:25:12.769Z","headlines":{"basic":"1 killed in Russian attack on Kyiv as death toll from missile strike rises to 19"},"promo_items":{"basic":{"alt_text":"In this photo provided by the Ukrainian Emergency Service, emergency services personnel work to extinguish a fire following a Russian missile attack in Kyiv, Ukraine, Sunday, April 6, 2025.","caption":"In this photo provided by the Ukrainian Emergency Service, emergency services personnel work to extinguish a fire following a Russian missile attack in Kyiv, Ukraine, Sunday, April 6, 2025.","credits":{"affiliation":[{"name":"AP"}],"by":[{"name":"AP","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/HSFBL5254FI3DAERFHJTFADL2A.jpg?auth=415d529bac3c2d87ed966ad3c2756bae14d295cbac7649ebb6ba3ab5cbe46ffc&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/HSFBL5254FI3DAERFHJTFADL2A.jpg?auth=415d529bac3c2d87ed966ad3c2756bae14d295cbac7649ebb6ba3ab5cbe46ffc&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/HSFBL5254FI3DAERFHJTFADL2A.jpg?auth=415d529bac3c2d87ed966ad3c2756bae14d295cbac7649ebb6ba3ab5cbe46ffc&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/HSFBL5254FI3DAERFHJTFADL2A.jpg?auth=415d529bac3c2d87ed966ad3c2756bae14d295cbac7649ebb6ba3ab5cbe46ffc&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/HSFBL5254FI3DAERFHJTFADL2A.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"europe","text":"Europe"},{"slug":"world","text":"World"},{"slug":"news","text":"News"}]},"type":"story"}]},"expires":1744001792177,"lastModified":1744001672045}},"content-api-story-card":{"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.opb.org/article/2025/04/06/hood-river-artist-blends-ancient-egyptian-khayamiya-and-modern-media-to-create-liminal-spaces/\"}":{"data":{"_id":"CA7NNHUQEFERDDEUOZJ3MVKNZU","content_elements":[],"description":{"basic":"How one Egyptian-American, Amirra Malak, uses art to express liminal space in Hood River and across cultures. "},"first_publish_date":"2025-04-06T13:00:00Z","headlines":{"basic":"Hood River artist blends ancient Egyptian khayamiya and modern media to create liminal spaces"},"label":{},"last_updated_date":"2025-04-06T22:41:37.794Z","promo_items":{"basic":{"caption":"Behind the scenes: Brooke Herbert films Amirra Malak with her immersive video installation at The Ruins in Hood River, OR.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"image":{"url":"https://author-service-images-prod-us-east-1.publishing.aws.arc.pub/opb/e944b29d-9230-4ca7-be28-2a8864351e98.jpeg"},"name":"Kate McMahon","slug":"kate-mcmahon","type":"author","url":"/author/kate-mcmahon"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/YVRFS36YYVHPJCPRQ4GYKAUXGA.jpeg?auth=91f0671639a46294f8160b69ada703d6d6231eb7d649b6dd13404f5011e4a99a&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/YVRFS36YYVHPJCPRQ4GYKAUXGA.jpeg?auth=91f0671639a46294f8160b69ada703d6d6231eb7d649b6dd13404f5011e4a99a&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/YVRFS36YYVHPJCPRQ4GYKAUXGA.jpeg?auth=91f0671639a46294f8160b69ada703d6d6231eb7d649b6dd13404f5011e4a99a&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/YVRFS36YYVHPJCPRQ4GYKAUXGA.jpeg?auth=91f0671639a46294f8160b69ada703d6d6231eb7d649b6dd13404f5011e4a99a&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/YVRFS36YYVHPJCPRQ4GYKAUXGA.jpeg?auth=91f0671639a46294f8160b69ada703d6d6231eb7d649b6dd13404f5011e4a99a&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/YVRFS36YYVHPJCPRQ4GYKAUXGA.jpeg","width":1440},"video":{"_id":"f0cf4b28-b43e-4db6-8d02-71a35dc6dd27","canonical_url":"/video/2025/03/28/amirra-malak/","duration":667562,"headlines":{"basic":"Amirra Malak"},"promo_image":{"height":1080,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F03-28-2025%2Ft_8c86cb98ec9a4f76ba6845b111de4061_name_ORAB_AmmaMalak_Thumbnail03_Branded_20250327i_copy.jpg?auth=ddcacb9bdee746650154ceb22da9660087b548c10f07b5d9501a6cd08dedc4c1&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F03-28-2025%2Ft_8c86cb98ec9a4f76ba6845b111de4061_name_ORAB_AmmaMalak_Thumbnail03_Branded_20250327i_copy.jpg?auth=ddcacb9bdee746650154ceb22da9660087b548c10f07b5d9501a6cd08dedc4c1&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F03-28-2025%2Ft_8c86cb98ec9a4f76ba6845b111de4061_name_ORAB_AmmaMalak_Thumbnail03_Branded_20250327i_copy.jpg?auth=ddcacb9bdee746650154ceb22da9660087b548c10f07b5d9501a6cd08dedc4c1&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F03-28-2025%2Ft_8c86cb98ec9a4f76ba6845b111de4061_name_ORAB_AmmaMalak_Thumbnail03_Branded_20250327i_copy.jpg?auth=ddcacb9bdee746650154ceb22da9660087b548c10f07b5d9501a6cd08dedc4c1&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F03-28-2025%2Ft_8c86cb98ec9a4f76ba6845b111de4061_name_ORAB_AmmaMalak_Thumbnail03_Branded_20250327i_copy.jpg?auth=ddcacb9bdee746650154ceb22da9660087b548c10f07b5d9501a6cd08dedc4c1&width=767"},"type":"image","url":"https://d3ac64bsgpdzxx.cloudfront.net/03-28-2025/t_8c86cb98ec9a4f76ba6845b111de4061_name_ORAB_AmmaMalak_Thumbnail03_Branded_20250327i_copy.jpg","width":1920},"short_url":"/video/2025/03/28/amirra-malak/","streams":[{"bitrate":160,"filesize":31490752,"height":180,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250328/67e6b6a76e6a831bb802eeca/t_0536b39c30ae49a0bf6896fc091ab1c1_name_ORAB2605_AmirraMalak_WebMaster_20250327lk/mobile.m3u8","width":320},{"bitrate":300,"filesize":43756624,"height":360,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250328/67e6b6a76e6a831bb802eeca/t_0536b39c30ae49a0bf6896fc091ab1c1_name_ORAB2605_AmirraMalak_WebMaster_20250327lk/mobile.m3u8","width":640},{"bitrate":600,"filesize":69064996,"height":360,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250328/67e6b6a76e6a831bb802eeca/t_0536b39c30ae49a0bf6896fc091ab1c1_name_ORAB2605_AmirraMalak_WebMaster_20250327lk/mobile.m3u8","width":640},{"bitrate":1200,"filesize":120236152,"height":480,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250328/67e6b6a76e6a831bb802eeca/t_0536b39c30ae49a0bf6896fc091ab1c1_name_ORAB2605_AmirraMalak_WebMaster_20250327lk/master.m3u8","width":854},{"bitrate":4500,"filesize":402391628,"height":1080,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250328/67e6b6a76e6a831bb802eeca/t_0536b39c30ae49a0bf6896fc091ab1c1_name_ORAB2605_AmirraMalak_WebMaster_20250327lk/hd.m3u8","width":1920},{"bitrate":5400,"filesize":465951232,"height":1080,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250328/67e6b6a76e6a831bb802eeca/t_0536b39c30ae49a0bf6896fc091ab1c1_name_ORAB2605_AmirraMalak_WebMaster_20250327lk/hlsv4_master.m3u8","width":1920},{"bitrate":160,"filesize":24611853,"height":180,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250328/67e6b6a76e6a831bb802eeca/t_0536b39c30ae49a0bf6896fc091ab1c1_name_ORAB2605_AmirraMalak_WebMaster_20250327lk/file_320x180-160-v3.mp4","width":320},{"bitrate":600,"filesize":61374611,"height":360,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250328/67e6b6a76e6a831bb802eeca/t_0536b39c30ae49a0bf6896fc091ab1c1_name_ORAB2605_AmirraMalak_WebMaster_20250327lk/file_640x360-600-v3.mp4","width":640},{"bitrate":1200,"filesize":111473503,"height":480,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250328/67e6b6a76e6a831bb802eeca/t_0536b39c30ae49a0bf6896fc091ab1c1_name_ORAB2605_AmirraMalak_WebMaster_20250327lk/file_854x480-1200-v3_1.mp4","width":854},{"bitrate":2000,"filesize":178341783,"height":720,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250328/67e6b6a76e6a831bb802eeca/t_0536b39c30ae49a0bf6896fc091ab1c1_name_ORAB2605_AmirraMalak_WebMaster_20250327lk/file_1280x720-2000-v3_1.mp4","width":1280},{"bitrate":5400,"filesize":462393366,"height":1080,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250328/67e6b6a76e6a831bb802eeca/t_0536b39c30ae49a0bf6896fc091ab1c1_name_ORAB2605_AmirraMalak_WebMaster_20250327lk/file_1920x1080-5400-v4.mp4","width":1920}],"subheadlines":{"basic":"Egyptian-American artist Amirra Malak mixes ancient Khayamiya and modern media to create installations of liminal spaces. Khayamiya is a form of applique design hand sewn onto fabric for Egyptian tents. In Cairo, Malak studied with a master Khayamiya maker and incorporates his teachings into her art from her studio in Hood River, OR."},"subtitles":{"urls":[{"format":"SRT","url":"https://d2swrj9quyyg9l.cloudfront.net/2025/03/28/f0cf4b28-b43e-4db6-8d02-71a35dc6dd27/2_1743174852396/f0cf4b28-b43e-4db6-8d02-71a35dc6dd27_67e6b3fca2b47b1f9a1c282d.srt"},{"format":"DFXP","url":"https://d2swrj9quyyg9l.cloudfront.net/2025/03/28/f0cf4b28-b43e-4db6-8d02-71a35dc6dd27/2_1743174855645/f0cf4b28-b43e-4db6-8d02-71a35dc6dd27_67e6b3fca2b47b1f9a1c282d.dfxp"},{"format":"RAW_TEXT","url":"https://d2swrj9quyyg9l.cloudfront.net/2025/03/28/f0cf4b28-b43e-4db6-8d02-71a35dc6dd27/2_1743174855688/f0cf4b28-b43e-4db6-8d02-71a35dc6dd27_67e6b3fca2b47b1f9a1c282d.txt"},{"format":"WEB_VTT","url":"https://d2swrj9quyyg9l.cloudfront.net/2025/03/28/f0cf4b28-b43e-4db6-8d02-71a35dc6dd27/2_1743174856642/f0cf4b28-b43e-4db6-8d02-71a35dc6dd27_67e6b3fca2b47b1f9a1c282d.vtt"},{"format":"WEB_VTT_PLAYLIST","url":"https://d2swrj9quyyg9l.cloudfront.net/2025/03/28/f0cf4b28-b43e-4db6-8d02-71a35dc6dd27/2_1743174864822/f0cf4b28-b43e-4db6-8d02-71a35dc6dd27_67e6b3fca2b47b1f9a1c282d.m3u8"}]},"type":"video"}},"subheadlines":{"basic":""},"type":"story","website_url":"/article/2025/04/06/hood-river-artist-blends-ancient-egyptian-khayamiya-and-modern-media-to-create-liminal-spaces/"},"expires":1744001792475,"lastModified":1744001672035},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.opb.org/article/2025/04/06/divides-over-gender-identity-flare-as-washington-debates-parent-access-in-schools/\"}":{"data":{"_id":"H7FZLJUYGFCEZP6HOVMHZKBUPI","content_elements":[],"description":{"basic":"Washington state lawmakers are considering bills to revise the parents’ rights law. They have until the end of next month to finalize proposed changes, some of which would eliminate rights for parents to access their kids’ school-based medical records. "},"first_publish_date":"2025-04-06T13:00:00Z","headlines":{"basic":"Divides over gender identity flare as Washington debates parent access in schools "},"label":{"kicker":{"display":true,"text":"Education","url":"https://www.opb.org/tag/education/"}},"last_updated_date":"2025-04-06T13:00:00.936Z","promo_items":{"basic":{"caption":"The sun appears through cloudy skies March 10, 2022, above the Legislative Building at the Capitol in Olympia, Wash. ","credits":{"affiliation":[{"name":"AP"}],"by":[{"name":"Ted S. Warren","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/TTDQR5XWYNERHDQEOEDJ7XNQPA.jpg?auth=470b11d2b00f35417c6946826e10f4a0f0700fd5d883c93bef6cecff83ba101b&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/TTDQR5XWYNERHDQEOEDJ7XNQPA.jpg?auth=470b11d2b00f35417c6946826e10f4a0f0700fd5d883c93bef6cecff83ba101b&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/TTDQR5XWYNERHDQEOEDJ7XNQPA.jpg?auth=470b11d2b00f35417c6946826e10f4a0f0700fd5d883c93bef6cecff83ba101b&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/TTDQR5XWYNERHDQEOEDJ7XNQPA.jpg?auth=470b11d2b00f35417c6946826e10f4a0f0700fd5d883c93bef6cecff83ba101b&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/TTDQR5XWYNERHDQEOEDJ7XNQPA.jpg?auth=470b11d2b00f35417c6946826e10f4a0f0700fd5d883c93bef6cecff83ba101b&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/TTDQR5XWYNERHDQEOEDJ7XNQPA.jpg","width":1440}},"subheadlines":{"basic":""},"type":"story","website_url":"/article/2025/04/06/divides-over-gender-identity-flare-as-washington-debates-parent-access-in-schools/"},"expires":1744001792132,"lastModified":1744001671998},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.opb.org/article/2025/04/05/hands-off-protests-oregon-washington/\"}":{"data":{"_id":"OL5PZDCY55E2NGA4CAHPIZBV4M","content_elements":[],"description":{"basic":"Outside of Portland, protests drew hundreds of people in Tigard, Madras, Pendleton, Medford and elsewhere across Oregon on Saturday, as part of the national “Hands Off” day of action."},"first_publish_date":"2025-04-05T13:00:00Z","headlines":{"basic":"Protesters across Oregon stand against public services cuts under Trump and Musk"},"label":{},"last_updated_date":"2025-04-06T02:49:37.757Z","promo_items":{"basic":{"caption":"Thousands of protesters descended on Tom McCall Waterfront Park in Portland, Ore., April 5, 2025. The Portland protests were part of a nationwide \"Hands Off\" demonstration.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Troy Brynelson","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PXVZTD266FCGZD635VTLBLLO7E.JPG?auth=0881f5a2716b5a283a52604fbecd8532b8bb3fbed3220dfeb59b9992c442cd07&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PXVZTD266FCGZD635VTLBLLO7E.JPG?auth=0881f5a2716b5a283a52604fbecd8532b8bb3fbed3220dfeb59b9992c442cd07&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PXVZTD266FCGZD635VTLBLLO7E.JPG?auth=0881f5a2716b5a283a52604fbecd8532b8bb3fbed3220dfeb59b9992c442cd07&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PXVZTD266FCGZD635VTLBLLO7E.JPG?auth=0881f5a2716b5a283a52604fbecd8532b8bb3fbed3220dfeb59b9992c442cd07&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PXVZTD266FCGZD635VTLBLLO7E.JPG?auth=0881f5a2716b5a283a52604fbecd8532b8bb3fbed3220dfeb59b9992c442cd07&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/PXVZTD266FCGZD635VTLBLLO7E.JPG","width":1440},"gallery":{"_id":"2DECSDQSEJEELJSKVI6FBYRXVY","content_elements":[{"caption":"Thousands of protesters march in Portland, Ore., protesting President Trump’s administration, April 5, 2025, part of “Hands Off” protests taking place around the country. ","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Joni Auden Land","type":"author"}]},"height":3648,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QI45YX5QCNFWDCSM523IEWOZ3Q.JPG?auth=fd146fdb0c20079e3309fda28d0cb3870ffca6f07f530f1a1db3d388457071d6&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QI45YX5QCNFWDCSM523IEWOZ3Q.JPG?auth=fd146fdb0c20079e3309fda28d0cb3870ffca6f07f530f1a1db3d388457071d6&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QI45YX5QCNFWDCSM523IEWOZ3Q.JPG?auth=fd146fdb0c20079e3309fda28d0cb3870ffca6f07f530f1a1db3d388457071d6&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QI45YX5QCNFWDCSM523IEWOZ3Q.JPG?auth=fd146fdb0c20079e3309fda28d0cb3870ffca6f07f530f1a1db3d388457071d6&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QI45YX5QCNFWDCSM523IEWOZ3Q.JPG?auth=fd146fdb0c20079e3309fda28d0cb3870ffca6f07f530f1a1db3d388457071d6&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/QI45YX5QCNFWDCSM523IEWOZ3Q.JPG","width":4937},{"caption":"Thousands of protesters march in Portland, Ore., protesting President Trump’s administration, April 5, 2025, part of “Hands Off” protests taking place around the country. ","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Joni Auden Land","type":"author"}]},"height":3007,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WRRRBWPDHRAE5LST7VWY6YBGTM.JPG?auth=a32b903f830d36201fe9ae7837e460888febaceb8ab497a969e039df509e7357&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WRRRBWPDHRAE5LST7VWY6YBGTM.JPG?auth=a32b903f830d36201fe9ae7837e460888febaceb8ab497a969e039df509e7357&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WRRRBWPDHRAE5LST7VWY6YBGTM.JPG?auth=a32b903f830d36201fe9ae7837e460888febaceb8ab497a969e039df509e7357&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WRRRBWPDHRAE5LST7VWY6YBGTM.JPG?auth=a32b903f830d36201fe9ae7837e460888febaceb8ab497a969e039df509e7357&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WRRRBWPDHRAE5LST7VWY6YBGTM.JPG?auth=a32b903f830d36201fe9ae7837e460888febaceb8ab497a969e039df509e7357&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/WRRRBWPDHRAE5LST7VWY6YBGTM.JPG","width":4505},{"caption":"A demonstrator dressed as the Statue of Liberty participates in the \"Hands Off!\" protests against President Donald Trump at the Washington Monument in Washington, Saturday, April 5, 2025. (AP Photo/Jose Luis Magana)","credits":{"affiliation":[{"name":"AP"}],"by":[{"name":"Jose Luis Magana","type":"author"}]},"height":3817,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5VTGABWPLBFIXDM7YNRXX6DNM4.jpg?auth=217b62b71e26733856360939fa1aed8ea74b3517ec0ffba0a77565b3e4451079&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5VTGABWPLBFIXDM7YNRXX6DNM4.jpg?auth=217b62b71e26733856360939fa1aed8ea74b3517ec0ffba0a77565b3e4451079&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5VTGABWPLBFIXDM7YNRXX6DNM4.jpg?auth=217b62b71e26733856360939fa1aed8ea74b3517ec0ffba0a77565b3e4451079&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5VTGABWPLBFIXDM7YNRXX6DNM4.jpg?auth=217b62b71e26733856360939fa1aed8ea74b3517ec0ffba0a77565b3e4451079&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5VTGABWPLBFIXDM7YNRXX6DNM4.jpg?auth=217b62b71e26733856360939fa1aed8ea74b3517ec0ffba0a77565b3e4451079&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/5VTGABWPLBFIXDM7YNRXX6DNM4.jpg","width":5725},{"caption":"\"Hands Off\" protesters gather at the Universal Plaza in Tigard, Ore., on April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Joni Auden Land","type":"author"}]},"height":3134,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/NPUW4TFVZNBLLLRSNB3P4F3UAU.JPG?auth=a777804b740b501c010f13865c8dd733d9ef1ee0c245e85db3c3c9d6ba45db3d&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/NPUW4TFVZNBLLLRSNB3P4F3UAU.JPG?auth=a777804b740b501c010f13865c8dd733d9ef1ee0c245e85db3c3c9d6ba45db3d&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/NPUW4TFVZNBLLLRSNB3P4F3UAU.JPG?auth=a777804b740b501c010f13865c8dd733d9ef1ee0c245e85db3c3c9d6ba45db3d&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/NPUW4TFVZNBLLLRSNB3P4F3UAU.JPG?auth=a777804b740b501c010f13865c8dd733d9ef1ee0c245e85db3c3c9d6ba45db3d&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/NPUW4TFVZNBLLLRSNB3P4F3UAU.JPG?auth=a777804b740b501c010f13865c8dd733d9ef1ee0c245e85db3c3c9d6ba45db3d&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/NPUW4TFVZNBLLLRSNB3P4F3UAU.JPG","width":4428},{"caption":"\"Hands Off\" protesters gather at the Universal Plaza in Tigard, Ore., on April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Joni Auden Land","type":"author"}]},"height":3648,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/I3YZREOIUFG65BHGIAI6H3BQHY.JPG?auth=a212219900244d89bfdcade4ccf7810ec098105702129483adccab9bdd8f47f2&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/I3YZREOIUFG65BHGIAI6H3BQHY.JPG?auth=a212219900244d89bfdcade4ccf7810ec098105702129483adccab9bdd8f47f2&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/I3YZREOIUFG65BHGIAI6H3BQHY.JPG?auth=a212219900244d89bfdcade4ccf7810ec098105702129483adccab9bdd8f47f2&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/I3YZREOIUFG65BHGIAI6H3BQHY.JPG?auth=a212219900244d89bfdcade4ccf7810ec098105702129483adccab9bdd8f47f2&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/I3YZREOIUFG65BHGIAI6H3BQHY.JPG?auth=a212219900244d89bfdcade4ccf7810ec098105702129483adccab9bdd8f47f2&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/I3YZREOIUFG65BHGIAI6H3BQHY.JPG","width":5472},{"caption":"\"Hands Off\" protesters gather at the Universal Plaza in Tigard, Ore., on April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/82c6a037-967e-4678-ba32-db13b3e9def7.png"},"name":"Joni Land","slug":"joni-auden-land","type":"author","url":"/author/joni-auden-land/"}]},"height":3024,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/B4XKSQR4KBCBNDE7647L7KYP7Q.jpg?auth=0ba117fdaf7abc100d57360e5125e155be76c028e5aba8cf59e89c37ab9b9cca&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/B4XKSQR4KBCBNDE7647L7KYP7Q.jpg?auth=0ba117fdaf7abc100d57360e5125e155be76c028e5aba8cf59e89c37ab9b9cca&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/B4XKSQR4KBCBNDE7647L7KYP7Q.jpg?auth=0ba117fdaf7abc100d57360e5125e155be76c028e5aba8cf59e89c37ab9b9cca&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/B4XKSQR4KBCBNDE7647L7KYP7Q.jpg?auth=0ba117fdaf7abc100d57360e5125e155be76c028e5aba8cf59e89c37ab9b9cca&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/B4XKSQR4KBCBNDE7647L7KYP7Q.jpg?auth=0ba117fdaf7abc100d57360e5125e155be76c028e5aba8cf59e89c37ab9b9cca&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/B4XKSQR4KBCBNDE7647L7KYP7Q.jpg","width":4032},{"caption":"Protesters at a “Hands Off” rally in Sellwood, in Southeast Portland, Ore., April 5, 2025. The Portland protests were part of a nationwide demonstrations.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Troy Brynelson","type":"author"}]},"height":3315,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PZAGVRQ2RFAW3H3B2HKMNTGNPY.JPG?auth=914373040a02ac7494169743201685453bd7c344253404a02ad4968fa16e6b50&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PZAGVRQ2RFAW3H3B2HKMNTGNPY.JPG?auth=914373040a02ac7494169743201685453bd7c344253404a02ad4968fa16e6b50&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PZAGVRQ2RFAW3H3B2HKMNTGNPY.JPG?auth=914373040a02ac7494169743201685453bd7c344253404a02ad4968fa16e6b50&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PZAGVRQ2RFAW3H3B2HKMNTGNPY.JPG?auth=914373040a02ac7494169743201685453bd7c344253404a02ad4968fa16e6b50&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PZAGVRQ2RFAW3H3B2HKMNTGNPY.JPG?auth=914373040a02ac7494169743201685453bd7c344253404a02ad4968fa16e6b50&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/PZAGVRQ2RFAW3H3B2HKMNTGNPY.JPG","width":4199},{"caption":"The “Hands Off” rally in Madras, Ore., April 5, 2025. ","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Will Robbins for OPB","type":"author"}]},"height":1841,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZVD475ZIFBEBLP7TXR5QPAYEJA.jpg?auth=c6086377df01d376af021713baa7000bc4143f6d77669f6885b48454f7c644a5&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZVD475ZIFBEBLP7TXR5QPAYEJA.jpg?auth=c6086377df01d376af021713baa7000bc4143f6d77669f6885b48454f7c644a5&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZVD475ZIFBEBLP7TXR5QPAYEJA.jpg?auth=c6086377df01d376af021713baa7000bc4143f6d77669f6885b48454f7c644a5&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZVD475ZIFBEBLP7TXR5QPAYEJA.jpg?auth=c6086377df01d376af021713baa7000bc4143f6d77669f6885b48454f7c644a5&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZVD475ZIFBEBLP7TXR5QPAYEJA.jpg?auth=c6086377df01d376af021713baa7000bc4143f6d77669f6885b48454f7c644a5&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/ZVD475ZIFBEBLP7TXR5QPAYEJA.jpg","width":3095},{"caption":"Former National Park Service Director Chuck Sams speaks at the “Hands Off” protest in Pendleton, Ore., April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Antonio Sierra","type":"author"}]},"height":3307,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/G3GK2CUAUFF7DBWPB6MICODGQ4.JPG?auth=05a18fa57966be48c9beefb1de67f796b5240793755687a332e5b0cb0641d508&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/G3GK2CUAUFF7DBWPB6MICODGQ4.JPG?auth=05a18fa57966be48c9beefb1de67f796b5240793755687a332e5b0cb0641d508&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/G3GK2CUAUFF7DBWPB6MICODGQ4.JPG?auth=05a18fa57966be48c9beefb1de67f796b5240793755687a332e5b0cb0641d508&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/G3GK2CUAUFF7DBWPB6MICODGQ4.JPG?auth=05a18fa57966be48c9beefb1de67f796b5240793755687a332e5b0cb0641d508&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/G3GK2CUAUFF7DBWPB6MICODGQ4.JPG?auth=05a18fa57966be48c9beefb1de67f796b5240793755687a332e5b0cb0641d508&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/G3GK2CUAUFF7DBWPB6MICODGQ4.JPG","width":5028},{"caption":"Protestors gather at Pendleton City Hall as a part of the Pendleton Hands-Off demonstration in Pendleton, Ore. on April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Antonio Sierra","type":"author"}]},"height":2924,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W4NO4WCKAZFZ5AWAVKVRN3H2RU.JPG?auth=6bef554d2d1b9c74a0c92de33a9c8b0274a55f2294971fff94de84eefb8f896d&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W4NO4WCKAZFZ5AWAVKVRN3H2RU.JPG?auth=6bef554d2d1b9c74a0c92de33a9c8b0274a55f2294971fff94de84eefb8f896d&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W4NO4WCKAZFZ5AWAVKVRN3H2RU.JPG?auth=6bef554d2d1b9c74a0c92de33a9c8b0274a55f2294971fff94de84eefb8f896d&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W4NO4WCKAZFZ5AWAVKVRN3H2RU.JPG?auth=6bef554d2d1b9c74a0c92de33a9c8b0274a55f2294971fff94de84eefb8f896d&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W4NO4WCKAZFZ5AWAVKVRN3H2RU.JPG?auth=6bef554d2d1b9c74a0c92de33a9c8b0274a55f2294971fff94de84eefb8f896d&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/W4NO4WCKAZFZ5AWAVKVRN3H2RU.JPG","width":3016},{"caption":"John McNeer of Madras, left, takes a photo with a lone Trump supporter counterprotesting the “Hands Off” rally in Madras, Ore., April 5, 2025. McNeer says he wanted to show his support, saying “most people in Jefferson County support the current administration.” \r","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Will Robbins for OPB","type":"author"}]},"height":2717,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ANJWTFXXSZEPFHPP7Y52YEPHMA.jpg?auth=0a8f35d2e96eb9ef787528ac4fcf77911a3c140a2f280efb76dba9ebe73be100&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ANJWTFXXSZEPFHPP7Y52YEPHMA.jpg?auth=0a8f35d2e96eb9ef787528ac4fcf77911a3c140a2f280efb76dba9ebe73be100&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ANJWTFXXSZEPFHPP7Y52YEPHMA.jpg?auth=0a8f35d2e96eb9ef787528ac4fcf77911a3c140a2f280efb76dba9ebe73be100&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ANJWTFXXSZEPFHPP7Y52YEPHMA.jpg?auth=0a8f35d2e96eb9ef787528ac4fcf77911a3c140a2f280efb76dba9ebe73be100&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ANJWTFXXSZEPFHPP7Y52YEPHMA.jpg?auth=0a8f35d2e96eb9ef787528ac4fcf77911a3c140a2f280efb76dba9ebe73be100&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/ANJWTFXXSZEPFHPP7Y52YEPHMA.jpg","width":3000},{"caption":"\"I see it as a direct attack on the least educated, and those with the lowest resources,” says Lizzy Wienert of Madras, Ore., taking part in the “Hands Off” rally in Madras, Ore., April 5, 2025. ","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Will Robbins for OPB","type":"author"}]},"height":3890,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/P4EVN4WFTRDCJCHN3WIM3TYJZI.jpg?auth=983423b9565d304c8685e36f6384fd09953af36756cfea055e264ea7d864f9f3&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/P4EVN4WFTRDCJCHN3WIM3TYJZI.jpg?auth=983423b9565d304c8685e36f6384fd09953af36756cfea055e264ea7d864f9f3&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/P4EVN4WFTRDCJCHN3WIM3TYJZI.jpg?auth=983423b9565d304c8685e36f6384fd09953af36756cfea055e264ea7d864f9f3&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/P4EVN4WFTRDCJCHN3WIM3TYJZI.jpg?auth=983423b9565d304c8685e36f6384fd09953af36756cfea055e264ea7d864f9f3&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/P4EVN4WFTRDCJCHN3WIM3TYJZI.jpg?auth=983423b9565d304c8685e36f6384fd09953af36756cfea055e264ea7d864f9f3&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/P4EVN4WFTRDCJCHN3WIM3TYJZI.jpg","width":2790},{"caption":"Thousands of protesters descended on Tom McCall Waterfront Park in Portland, Ore., April 5, 2025. The Portland protests were part of a nationwide \"Hands Off\" demonstration.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Troy Brynelson","type":"author"}]},"height":3206,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/RL7YXRHYTBGU5OKI3RL42GZL5Y.JPG?auth=87a4f5c6962034d3ce171e097e9987158ce384a11b745cc21953317d1ea63ff6&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/RL7YXRHYTBGU5OKI3RL42GZL5Y.JPG?auth=87a4f5c6962034d3ce171e097e9987158ce384a11b745cc21953317d1ea63ff6&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/RL7YXRHYTBGU5OKI3RL42GZL5Y.JPG?auth=87a4f5c6962034d3ce171e097e9987158ce384a11b745cc21953317d1ea63ff6&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/RL7YXRHYTBGU5OKI3RL42GZL5Y.JPG?auth=87a4f5c6962034d3ce171e097e9987158ce384a11b745cc21953317d1ea63ff6&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/RL7YXRHYTBGU5OKI3RL42GZL5Y.JPG?auth=87a4f5c6962034d3ce171e097e9987158ce384a11b745cc21953317d1ea63ff6&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/RL7YXRHYTBGU5OKI3RL42GZL5Y.JPG","width":5177},{"caption":"Thousands of protesters march in Portland, Ore., protesting President Trump’s administration, April 5, 2025, part of “Hands Off” protests taking place around the country. ","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Joni Auden Land","type":"author"}]},"height":3075,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZDSSC5SUD5GOJKOWZZWX7P6UWA.JPG?auth=2af041970d9d79ff7382b9b74472421be2c943f9af34ae2f5127df4662686490&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZDSSC5SUD5GOJKOWZZWX7P6UWA.JPG?auth=2af041970d9d79ff7382b9b74472421be2c943f9af34ae2f5127df4662686490&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZDSSC5SUD5GOJKOWZZWX7P6UWA.JPG?auth=2af041970d9d79ff7382b9b74472421be2c943f9af34ae2f5127df4662686490&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZDSSC5SUD5GOJKOWZZWX7P6UWA.JPG?auth=2af041970d9d79ff7382b9b74472421be2c943f9af34ae2f5127df4662686490&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZDSSC5SUD5GOJKOWZZWX7P6UWA.JPG?auth=2af041970d9d79ff7382b9b74472421be2c943f9af34ae2f5127df4662686490&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/ZDSSC5SUD5GOJKOWZZWX7P6UWA.JPG","width":4717},{"caption":"Thousands of protesters march in Portland, Ore., protesting President Trump’s administration, April 5, 2025, part of “Hands Off” protests taking place around the country. ","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Joni Auden Land","type":"author"}]},"height":3648,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/XD63ZEONYJB75G5LEHQSPH7RE4.JPG?auth=20a70f56b2962514ef98a01fcfc5f6f83170472131c0ec525ace27903cb34cea&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/XD63ZEONYJB75G5LEHQSPH7RE4.JPG?auth=20a70f56b2962514ef98a01fcfc5f6f83170472131c0ec525ace27903cb34cea&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/XD63ZEONYJB75G5LEHQSPH7RE4.JPG?auth=20a70f56b2962514ef98a01fcfc5f6f83170472131c0ec525ace27903cb34cea&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/XD63ZEONYJB75G5LEHQSPH7RE4.JPG?auth=20a70f56b2962514ef98a01fcfc5f6f83170472131c0ec525ace27903cb34cea&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/XD63ZEONYJB75G5LEHQSPH7RE4.JPG?auth=20a70f56b2962514ef98a01fcfc5f6f83170472131c0ec525ace27903cb34cea&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/XD63ZEONYJB75G5LEHQSPH7RE4.JPG","width":5472},{"caption":"Thousands of protesters march in Portland, Ore., protesting President Trump’s administration, April 5, 2025, part of “Hands Off” protests taking place around the country. ","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Joni Auden Land","type":"author"}]},"height":3525,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/MUHBUTN4EVGHXJ7GGC5A2RF3FA.JPG?auth=e2bae25f060f603b7ffcec70c72942cb5d5c40cd5e3f65b0354474fb2ce7a793&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/MUHBUTN4EVGHXJ7GGC5A2RF3FA.JPG?auth=e2bae25f060f603b7ffcec70c72942cb5d5c40cd5e3f65b0354474fb2ce7a793&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/MUHBUTN4EVGHXJ7GGC5A2RF3FA.JPG?auth=e2bae25f060f603b7ffcec70c72942cb5d5c40cd5e3f65b0354474fb2ce7a793&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/MUHBUTN4EVGHXJ7GGC5A2RF3FA.JPG?auth=e2bae25f060f603b7ffcec70c72942cb5d5c40cd5e3f65b0354474fb2ce7a793&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/MUHBUTN4EVGHXJ7GGC5A2RF3FA.JPG?auth=e2bae25f060f603b7ffcec70c72942cb5d5c40cd5e3f65b0354474fb2ce7a793&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/MUHBUTN4EVGHXJ7GGC5A2RF3FA.JPG","width":5364},{"caption":"Thousands of protesters descended on Tom McCall Waterfront Park in Portland, Ore., April 5, 2025. The Portland protests were part of a nationwide \"Hands Off\" demonstration.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Troy Brynelson","type":"author"}]},"height":3648,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WCRK63JIVFDFJA3O4A6AUGH5UI.JPG?auth=2cbaff7e356dab2090ba22cffea6d5527c2e04f409e855ce9d57cfd6ac3c1027&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WCRK63JIVFDFJA3O4A6AUGH5UI.JPG?auth=2cbaff7e356dab2090ba22cffea6d5527c2e04f409e855ce9d57cfd6ac3c1027&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WCRK63JIVFDFJA3O4A6AUGH5UI.JPG?auth=2cbaff7e356dab2090ba22cffea6d5527c2e04f409e855ce9d57cfd6ac3c1027&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WCRK63JIVFDFJA3O4A6AUGH5UI.JPG?auth=2cbaff7e356dab2090ba22cffea6d5527c2e04f409e855ce9d57cfd6ac3c1027&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WCRK63JIVFDFJA3O4A6AUGH5UI.JPG?auth=2cbaff7e356dab2090ba22cffea6d5527c2e04f409e855ce9d57cfd6ac3c1027&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/WCRK63JIVFDFJA3O4A6AUGH5UI.JPG","width":5472},{"caption":"Thousands of protesters descended on Tom McCall Waterfront Park in Portland, Ore., April 5, 2025. The Portland protests were part of a nationwide \"Hands Off\" demonstration.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Troy Brynelson","type":"author"}]},"height":3087,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5G7E4UYBR5E5PDZWSAUUOV6WEI.JPG?auth=9ddb9feddf8e5d2b2af16a7ea7553b45c617882b8cba5d41ae31c15017a5a3bc&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5G7E4UYBR5E5PDZWSAUUOV6WEI.JPG?auth=9ddb9feddf8e5d2b2af16a7ea7553b45c617882b8cba5d41ae31c15017a5a3bc&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5G7E4UYBR5E5PDZWSAUUOV6WEI.JPG?auth=9ddb9feddf8e5d2b2af16a7ea7553b45c617882b8cba5d41ae31c15017a5a3bc&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5G7E4UYBR5E5PDZWSAUUOV6WEI.JPG?auth=9ddb9feddf8e5d2b2af16a7ea7553b45c617882b8cba5d41ae31c15017a5a3bc&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5G7E4UYBR5E5PDZWSAUUOV6WEI.JPG?auth=9ddb9feddf8e5d2b2af16a7ea7553b45c617882b8cba5d41ae31c15017a5a3bc&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/5G7E4UYBR5E5PDZWSAUUOV6WEI.JPG","width":4356},{"caption":"Thousands of protesters descended on Tom McCall Waterfront Park in Portland, Ore., April 5, 2025. The Portland protests were part of a nationwide \"Hands Off\" demonstration.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Troy Brynelson","type":"author"}]},"height":3648,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/23TPA7XDGVBF5K3ZQY7SP4DGRY.JPG?auth=f6de37bdf27afdbeadca11859ec735bfbeadf1bf6a3b24ce457dd89573871f5c&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/23TPA7XDGVBF5K3ZQY7SP4DGRY.JPG?auth=f6de37bdf27afdbeadca11859ec735bfbeadf1bf6a3b24ce457dd89573871f5c&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/23TPA7XDGVBF5K3ZQY7SP4DGRY.JPG?auth=f6de37bdf27afdbeadca11859ec735bfbeadf1bf6a3b24ce457dd89573871f5c&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/23TPA7XDGVBF5K3ZQY7SP4DGRY.JPG?auth=f6de37bdf27afdbeadca11859ec735bfbeadf1bf6a3b24ce457dd89573871f5c&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/23TPA7XDGVBF5K3ZQY7SP4DGRY.JPG?auth=f6de37bdf27afdbeadca11859ec735bfbeadf1bf6a3b24ce457dd89573871f5c&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/23TPA7XDGVBF5K3ZQY7SP4DGRY.JPG","width":5472},{"caption":"Thousands of protesters descended on Tom McCall Waterfront Park in Portland, Ore., April 5, 2025. The Portland protests were part of a nationwide \"Hands Off\" demonstration.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Troy Brynelson","type":"author"}]},"height":3648,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/J7VQ7BM6KNBNPPJGLTLUOT2S6U.JPG?auth=24a4753530d90ff69d7879a80b604cc981ce6321c15da374deb80e2d14830a74&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/J7VQ7BM6KNBNPPJGLTLUOT2S6U.JPG?auth=24a4753530d90ff69d7879a80b604cc981ce6321c15da374deb80e2d14830a74&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/J7VQ7BM6KNBNPPJGLTLUOT2S6U.JPG?auth=24a4753530d90ff69d7879a80b604cc981ce6321c15da374deb80e2d14830a74&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/J7VQ7BM6KNBNPPJGLTLUOT2S6U.JPG?auth=24a4753530d90ff69d7879a80b604cc981ce6321c15da374deb80e2d14830a74&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/J7VQ7BM6KNBNPPJGLTLUOT2S6U.JPG?auth=24a4753530d90ff69d7879a80b604cc981ce6321c15da374deb80e2d14830a74&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/J7VQ7BM6KNBNPPJGLTLUOT2S6U.JPG","width":5472},{"caption":"Thousands of protesters descended on Tom McCall Waterfront Park in Portland, Ore., April 5, 2025. The Portland protests were part of a nationwide \"Hands Off\" demonstration.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Troy Brynelson","type":"author"}]},"height":3648,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PXVZTD266FCGZD635VTLBLLO7E.JPG?auth=0881f5a2716b5a283a52604fbecd8532b8bb3fbed3220dfeb59b9992c442cd07&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PXVZTD266FCGZD635VTLBLLO7E.JPG?auth=0881f5a2716b5a283a52604fbecd8532b8bb3fbed3220dfeb59b9992c442cd07&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PXVZTD266FCGZD635VTLBLLO7E.JPG?auth=0881f5a2716b5a283a52604fbecd8532b8bb3fbed3220dfeb59b9992c442cd07&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PXVZTD266FCGZD635VTLBLLO7E.JPG?auth=0881f5a2716b5a283a52604fbecd8532b8bb3fbed3220dfeb59b9992c442cd07&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PXVZTD266FCGZD635VTLBLLO7E.JPG?auth=0881f5a2716b5a283a52604fbecd8532b8bb3fbed3220dfeb59b9992c442cd07&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/PXVZTD266FCGZD635VTLBLLO7E.JPG","width":5243},{"caption":"\"Hands Off\" protesters gather at the Universal Plaza in Tigard, Ore., on April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Joni Auden Land","type":"author"}]},"height":3024,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BP43K6BF6BAS5AW52LRRZKU75E.JPG?auth=0dcd45872115bfadb5a0fa1d999bf036fe19a5ed2fd6d29870c685e5eee26355&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BP43K6BF6BAS5AW52LRRZKU75E.JPG?auth=0dcd45872115bfadb5a0fa1d999bf036fe19a5ed2fd6d29870c685e5eee26355&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BP43K6BF6BAS5AW52LRRZKU75E.JPG?auth=0dcd45872115bfadb5a0fa1d999bf036fe19a5ed2fd6d29870c685e5eee26355&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BP43K6BF6BAS5AW52LRRZKU75E.JPG?auth=0dcd45872115bfadb5a0fa1d999bf036fe19a5ed2fd6d29870c685e5eee26355&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BP43K6BF6BAS5AW52LRRZKU75E.JPG?auth=0dcd45872115bfadb5a0fa1d999bf036fe19a5ed2fd6d29870c685e5eee26355&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/BP43K6BF6BAS5AW52LRRZKU75E.JPG","width":4032},{"caption":"\"Hands Off\" protesters gather at the Universal Plaza in Tigard, Ore., on April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Joni Auden Land","type":"author"}]},"height":3271,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/N7MJBUQ5FNCNFGKFC4YGTGHJYY.JPG?auth=6ad360c71fa6cfc1e74dc5c7cda75ce0ce9626cebc40712daba56427ebfd56f6&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/N7MJBUQ5FNCNFGKFC4YGTGHJYY.JPG?auth=6ad360c71fa6cfc1e74dc5c7cda75ce0ce9626cebc40712daba56427ebfd56f6&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/N7MJBUQ5FNCNFGKFC4YGTGHJYY.JPG?auth=6ad360c71fa6cfc1e74dc5c7cda75ce0ce9626cebc40712daba56427ebfd56f6&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/N7MJBUQ5FNCNFGKFC4YGTGHJYY.JPG?auth=6ad360c71fa6cfc1e74dc5c7cda75ce0ce9626cebc40712daba56427ebfd56f6&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/N7MJBUQ5FNCNFGKFC4YGTGHJYY.JPG?auth=6ad360c71fa6cfc1e74dc5c7cda75ce0ce9626cebc40712daba56427ebfd56f6&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/N7MJBUQ5FNCNFGKFC4YGTGHJYY.JPG","width":4640},{"caption":"Mary Minor speaks while leading the \"Hands Off\" protest event at Universal Plaza in Tigard, Ore., on April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/82c6a037-967e-4678-ba32-db13b3e9def7.png"},"name":"Joni Land","slug":"joni-auden-land","type":"author","url":"/author/joni-auden-land/"}]},"height":3024,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WIUDDDEFRFH5NORNK223H4TD4M.jpg?auth=b27c300982cae5fd1624f8e7f10ca7c3f89a2551604cf464c9ea6e7f1f31c0d1&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WIUDDDEFRFH5NORNK223H4TD4M.jpg?auth=b27c300982cae5fd1624f8e7f10ca7c3f89a2551604cf464c9ea6e7f1f31c0d1&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WIUDDDEFRFH5NORNK223H4TD4M.jpg?auth=b27c300982cae5fd1624f8e7f10ca7c3f89a2551604cf464c9ea6e7f1f31c0d1&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WIUDDDEFRFH5NORNK223H4TD4M.jpg?auth=b27c300982cae5fd1624f8e7f10ca7c3f89a2551604cf464c9ea6e7f1f31c0d1&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WIUDDDEFRFH5NORNK223H4TD4M.jpg?auth=b27c300982cae5fd1624f8e7f10ca7c3f89a2551604cf464c9ea6e7f1f31c0d1&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/WIUDDDEFRFH5NORNK223H4TD4M.jpg","width":4032},{"caption":"\"Hands Off\" protesters line up at the Westmoreland Park in Southeast Portland, Ore., on April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Troy Brynelson","slug":"troy-brynelson","type":"author","url":"/author/troy-brynelson"}]},"height":3024,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W7V74DA2SNAVRJFHKYHV65LSDA.jpg?auth=a9b1804ac87aa4bfc7a29e55ad21eefa7b20377d6c4e43fa868fc5a4f50b0938&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W7V74DA2SNAVRJFHKYHV65LSDA.jpg?auth=a9b1804ac87aa4bfc7a29e55ad21eefa7b20377d6c4e43fa868fc5a4f50b0938&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W7V74DA2SNAVRJFHKYHV65LSDA.jpg?auth=a9b1804ac87aa4bfc7a29e55ad21eefa7b20377d6c4e43fa868fc5a4f50b0938&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W7V74DA2SNAVRJFHKYHV65LSDA.jpg?auth=a9b1804ac87aa4bfc7a29e55ad21eefa7b20377d6c4e43fa868fc5a4f50b0938&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/W7V74DA2SNAVRJFHKYHV65LSDA.jpg?auth=a9b1804ac87aa4bfc7a29e55ad21eefa7b20377d6c4e43fa868fc5a4f50b0938&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/W7V74DA2SNAVRJFHKYHV65LSDA.jpg","width":4032},{"caption":"Protesters at a “Hands Off” rally in Sellwood, in Southeast Portland, Ore., April 5, 2025. The Portland protests were part of a nationwide demonstrations.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Troy Brynelson","type":"author"}]},"height":2718,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/EFSZPEGR3FCVNMRBU5CL5NJUEM.JPG?auth=12bc2562d2d231e88d50bb9dd608638fc6b60e1828bcf454b05adba5b699099c&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/EFSZPEGR3FCVNMRBU5CL5NJUEM.JPG?auth=12bc2562d2d231e88d50bb9dd608638fc6b60e1828bcf454b05adba5b699099c&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/EFSZPEGR3FCVNMRBU5CL5NJUEM.JPG?auth=12bc2562d2d231e88d50bb9dd608638fc6b60e1828bcf454b05adba5b699099c&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/EFSZPEGR3FCVNMRBU5CL5NJUEM.JPG?auth=12bc2562d2d231e88d50bb9dd608638fc6b60e1828bcf454b05adba5b699099c&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/EFSZPEGR3FCVNMRBU5CL5NJUEM.JPG?auth=12bc2562d2d231e88d50bb9dd608638fc6b60e1828bcf454b05adba5b699099c&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/EFSZPEGR3FCVNMRBU5CL5NJUEM.JPG","width":3573},{"caption":"The “Hands Off” rally in Madras, Ore., April 5, 2025. ","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Will Robbins for OPB","type":"author"}]},"height":2400,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/EZIE7WJXUBGYPGYQ3MCV6P2GZA.jpg?auth=9188e4e1479b55e5d91d936c3c278079c436cc688b5c0ca1cc15b69064f0bd62&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/EZIE7WJXUBGYPGYQ3MCV6P2GZA.jpg?auth=9188e4e1479b55e5d91d936c3c278079c436cc688b5c0ca1cc15b69064f0bd62&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/EZIE7WJXUBGYPGYQ3MCV6P2GZA.jpg?auth=9188e4e1479b55e5d91d936c3c278079c436cc688b5c0ca1cc15b69064f0bd62&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/EZIE7WJXUBGYPGYQ3MCV6P2GZA.jpg?auth=9188e4e1479b55e5d91d936c3c278079c436cc688b5c0ca1cc15b69064f0bd62&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/EZIE7WJXUBGYPGYQ3MCV6P2GZA.jpg?auth=9188e4e1479b55e5d91d936c3c278079c436cc688b5c0ca1cc15b69064f0bd62&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/EZIE7WJXUBGYPGYQ3MCV6P2GZA.jpg","width":3333},{"caption":"The “Hands Off” rally in Madras, Ore., April 5, 2025. ","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Will Robbins for OPB","type":"author"}]},"height":2215,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/UDUFKEALP5AHBLKTUBQMSUTKQY.jpg?auth=2e4783fee21358310e2912832d99354a2f92c6db0235e5f57bfddb54de59529a&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/UDUFKEALP5AHBLKTUBQMSUTKQY.jpg?auth=2e4783fee21358310e2912832d99354a2f92c6db0235e5f57bfddb54de59529a&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/UDUFKEALP5AHBLKTUBQMSUTKQY.jpg?auth=2e4783fee21358310e2912832d99354a2f92c6db0235e5f57bfddb54de59529a&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/UDUFKEALP5AHBLKTUBQMSUTKQY.jpg?auth=2e4783fee21358310e2912832d99354a2f92c6db0235e5f57bfddb54de59529a&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/UDUFKEALP5AHBLKTUBQMSUTKQY.jpg?auth=2e4783fee21358310e2912832d99354a2f92c6db0235e5f57bfddb54de59529a&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/UDUFKEALP5AHBLKTUBQMSUTKQY.jpg","width":3484},{"caption":"Demonstrators march through downtown Pendleton as a part of the “Hands Off” protest in Pendleton, Ore., April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Antonio Sierra","type":"author"}]},"height":2910,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JUWYXAVDFZBE5N6LNF4HHIE2BQ.JPG?auth=69513d4446c5c18e81b7a1212dfa7bdfa44abb31958b9f9795a3810b911c668e&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JUWYXAVDFZBE5N6LNF4HHIE2BQ.JPG?auth=69513d4446c5c18e81b7a1212dfa7bdfa44abb31958b9f9795a3810b911c668e&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JUWYXAVDFZBE5N6LNF4HHIE2BQ.JPG?auth=69513d4446c5c18e81b7a1212dfa7bdfa44abb31958b9f9795a3810b911c668e&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JUWYXAVDFZBE5N6LNF4HHIE2BQ.JPG?auth=69513d4446c5c18e81b7a1212dfa7bdfa44abb31958b9f9795a3810b911c668e&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JUWYXAVDFZBE5N6LNF4HHIE2BQ.JPG?auth=69513d4446c5c18e81b7a1212dfa7bdfa44abb31958b9f9795a3810b911c668e&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/JUWYXAVDFZBE5N6LNF4HHIE2BQ.JPG","width":5007},{"caption":"Demonstrators march through downtown Pendleton as a part of the “Hands Off” protest in Pendleton, Ore., April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Antonio Sierra","type":"author"}]},"height":2985,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/FFXQY3YLRJCUFJ2BE7DBJMWOEM.JPG?auth=8c9fa36507fd052210311e693807941efb011af7cc6aa9ecdca1b78b746567e6&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/FFXQY3YLRJCUFJ2BE7DBJMWOEM.JPG?auth=8c9fa36507fd052210311e693807941efb011af7cc6aa9ecdca1b78b746567e6&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/FFXQY3YLRJCUFJ2BE7DBJMWOEM.JPG?auth=8c9fa36507fd052210311e693807941efb011af7cc6aa9ecdca1b78b746567e6&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/FFXQY3YLRJCUFJ2BE7DBJMWOEM.JPG?auth=8c9fa36507fd052210311e693807941efb011af7cc6aa9ecdca1b78b746567e6&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/FFXQY3YLRJCUFJ2BE7DBJMWOEM.JPG?auth=8c9fa36507fd052210311e693807941efb011af7cc6aa9ecdca1b78b746567e6&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/FFXQY3YLRJCUFJ2BE7DBJMWOEM.JPG","width":4096},{"caption":"Demonstrators march through downtown Pendleton as a part of the “Hands Off” protest in Pendleton, Ore., April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Antonio Sierra","type":"author"}]},"height":2900,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BNU646CNPNGBDEH4PYQ72KWDIY.JPG?auth=9155c2650551dccce9f1ead08aff6627a7528897fc7f957a72a4e8340033b4d5&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BNU646CNPNGBDEH4PYQ72KWDIY.JPG?auth=9155c2650551dccce9f1ead08aff6627a7528897fc7f957a72a4e8340033b4d5&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BNU646CNPNGBDEH4PYQ72KWDIY.JPG?auth=9155c2650551dccce9f1ead08aff6627a7528897fc7f957a72a4e8340033b4d5&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BNU646CNPNGBDEH4PYQ72KWDIY.JPG?auth=9155c2650551dccce9f1ead08aff6627a7528897fc7f957a72a4e8340033b4d5&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BNU646CNPNGBDEH4PYQ72KWDIY.JPG?auth=9155c2650551dccce9f1ead08aff6627a7528897fc7f957a72a4e8340033b4d5&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/BNU646CNPNGBDEH4PYQ72KWDIY.JPG","width":3888},{"caption":"Hundreds of protestors in Bend, Ore., gather in Bend, Ore., on Apr. 5, 2025, to join the national Hands Off demonstrations.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Kathryn Styer Martínez","type":"author"}]},"height":3757,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/S7QF3DWVFVGZBAJMTDO465U5KY.JPG?auth=66195cd7764a7e04c4e3217f2561b50ae7e86ef7aae118c010ae163d3c97a0ea&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/S7QF3DWVFVGZBAJMTDO465U5KY.JPG?auth=66195cd7764a7e04c4e3217f2561b50ae7e86ef7aae118c010ae163d3c97a0ea&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/S7QF3DWVFVGZBAJMTDO465U5KY.JPG?auth=66195cd7764a7e04c4e3217f2561b50ae7e86ef7aae118c010ae163d3c97a0ea&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/S7QF3DWVFVGZBAJMTDO465U5KY.JPG?auth=66195cd7764a7e04c4e3217f2561b50ae7e86ef7aae118c010ae163d3c97a0ea&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/S7QF3DWVFVGZBAJMTDO465U5KY.JPG?auth=66195cd7764a7e04c4e3217f2561b50ae7e86ef7aae118c010ae163d3c97a0ea&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/S7QF3DWVFVGZBAJMTDO465U5KY.JPG","width":5636},{"caption":"Brie Gibson and Lacey Headley-Collier hold an American flag upside, a symbol of distress, at the Hands Off protest in Bend, Ore., on Apr. 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Kathryn Styer Martínez","type":"author"}]},"height":3527,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BPSDGH72QNDYRLV6DJ6UPR2F7E.JPG?auth=45bd374b139f83771e04c6a2d729b630e37462ebef57cbcd56b53ec0c2fd34d3&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BPSDGH72QNDYRLV6DJ6UPR2F7E.JPG?auth=45bd374b139f83771e04c6a2d729b630e37462ebef57cbcd56b53ec0c2fd34d3&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BPSDGH72QNDYRLV6DJ6UPR2F7E.JPG?auth=45bd374b139f83771e04c6a2d729b630e37462ebef57cbcd56b53ec0c2fd34d3&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BPSDGH72QNDYRLV6DJ6UPR2F7E.JPG?auth=45bd374b139f83771e04c6a2d729b630e37462ebef57cbcd56b53ec0c2fd34d3&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BPSDGH72QNDYRLV6DJ6UPR2F7E.JPG?auth=45bd374b139f83771e04c6a2d729b630e37462ebef57cbcd56b53ec0c2fd34d3&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/BPSDGH72QNDYRLV6DJ6UPR2F7E.JPG","width":5291},{"caption":"Debbie McPherson, 72, holds a sign reading \"FDT\" made by her niece at the Hands Off protest in Bend, Ore., on April 5, 2025. McPherson said this isn't her first time protesting but she made it out because she wants \"to get rid of Elon and Trump.\"","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Kathryn Styer Martínez","type":"author"}]},"height":3790,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JKMCKJFPIJG5NGJONQKNBHYOMY.JPG?auth=fc711e7591ab9632ab6d33c7317a3da5624687b4a6b26c11389088bbf83c3bb4&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JKMCKJFPIJG5NGJONQKNBHYOMY.JPG?auth=fc711e7591ab9632ab6d33c7317a3da5624687b4a6b26c11389088bbf83c3bb4&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JKMCKJFPIJG5NGJONQKNBHYOMY.JPG?auth=fc711e7591ab9632ab6d33c7317a3da5624687b4a6b26c11389088bbf83c3bb4&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JKMCKJFPIJG5NGJONQKNBHYOMY.JPG?auth=fc711e7591ab9632ab6d33c7317a3da5624687b4a6b26c11389088bbf83c3bb4&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JKMCKJFPIJG5NGJONQKNBHYOMY.JPG?auth=fc711e7591ab9632ab6d33c7317a3da5624687b4a6b26c11389088bbf83c3bb4&width=767"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/JKMCKJFPIJG5NGJONQKNBHYOMY.JPG","width":5685}],"type":"gallery"}},"subheadlines":{"basic":"Outside of Portland, protests drew hundreds of people in Tigard, Madras, Pendleton, Medford and elsewhere across Oregon on Saturday, as part of the national “Hands Off” day of action."},"type":"story","website_url":"/article/2025/04/05/hands-off-protests-oregon-washington/"},"expires":1744001792297,"lastModified":1744001672110},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.opb.org/article/2025/04/06/funding-cuts-southern-oregon-forests/\"}":{"data":{"_id":"ILWX6UMURFFLZEQEGKQRWXM7XY","content_elements":[],"description":{"basic":"Staffing uncertainties and delayed reimbursements threaten to gut the U.S. Forest Service’s capacity to care for the 1.8 million-acre Rogue River-Siskiyou National Forest."},"first_publish_date":"2025-04-06T17:39:27.444Z","headlines":{"basic":"Funding cuts and firings strain Southern Oregon’s national forests"},"label":{},"last_updated_date":"2025-04-06T17:39:27.567Z","promo_items":{"basic":{"caption":"The Siskiyou Mountain Club hosts monthly stewardship days to maintain the region’s wilderness trails.","credits":{"affiliation":[{"name":"JPR"}],"by":[{"name":"Juliet Grable","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/3HQLLI7YCJG5JLSLRKUT44SJ3Q.JPG?auth=8e35be7395bc11d146b3015b842dbf1b1956574bddc4dff4c4f2e2ba9fc3a4db&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/3HQLLI7YCJG5JLSLRKUT44SJ3Q.JPG?auth=8e35be7395bc11d146b3015b842dbf1b1956574bddc4dff4c4f2e2ba9fc3a4db&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/3HQLLI7YCJG5JLSLRKUT44SJ3Q.JPG?auth=8e35be7395bc11d146b3015b842dbf1b1956574bddc4dff4c4f2e2ba9fc3a4db&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/3HQLLI7YCJG5JLSLRKUT44SJ3Q.JPG?auth=8e35be7395bc11d146b3015b842dbf1b1956574bddc4dff4c4f2e2ba9fc3a4db&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/3HQLLI7YCJG5JLSLRKUT44SJ3Q.JPG?auth=8e35be7395bc11d146b3015b842dbf1b1956574bddc4dff4c4f2e2ba9fc3a4db&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/3HQLLI7YCJG5JLSLRKUT44SJ3Q.JPG","width":1440}},"subheadlines":{"basic":"Staffing uncertainties and delayed reimbursements threaten to gut the U.S. Forest Service’s capacity to care for the 1.8 million-acre Rogue River-Siskiyou National Forest."},"type":"story","website_url":"/article/2025/04/06/funding-cuts-southern-oregon-forests/"},"expires":1744001792133,"lastModified":1744001671999},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.opb.org/article/2025/04/06/southern-oregon-university-students-tke-brotherhood-fraternity/\"}":{"data":{"_id":"DKDE7H2EZ5BWFAVDCES5WUL3RM","content_elements":[],"description":{"basic":"A group of men at Southern Oregon University hopes the frat will help increase the university’s enrollment and provide more social opportunities for students."},"first_publish_date":"2025-04-06T14:51:09.832Z","headlines":{"basic":"Southern Oregon University students try to build brotherhood by reviving fraternity "},"label":{"kicker":{"display":true,"text":"Education","url":"https://www.opb.org/tag/education/"}},"last_updated_date":"2025-04-06T14:51:09.967Z","promo_items":{"basic":{"caption":"From l-r, Harrison Ross, Trenton Abraham, Michael Jones and Nolan Hannam are trying to start up a chapter of the fraternity Tau Kappa Epsilon at Southern Oregon University. The TKE plaque is from when a chapter of the frat existed at the university in the 60s and 70s.","credits":{"affiliation":[],"by":[{"name":"Jane Vaughan / Jefferson Public Radio","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/IRW2BN3BYJFKHH7WECXDGZXLRU.jpg?auth=d5ddd968465f3b3c97e7b89fa93c340e1c9924e28ea0d5f5e2a18031405e5c15&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/IRW2BN3BYJFKHH7WECXDGZXLRU.jpg?auth=d5ddd968465f3b3c97e7b89fa93c340e1c9924e28ea0d5f5e2a18031405e5c15&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/IRW2BN3BYJFKHH7WECXDGZXLRU.jpg?auth=d5ddd968465f3b3c97e7b89fa93c340e1c9924e28ea0d5f5e2a18031405e5c15&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/IRW2BN3BYJFKHH7WECXDGZXLRU.jpg?auth=d5ddd968465f3b3c97e7b89fa93c340e1c9924e28ea0d5f5e2a18031405e5c15&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/IRW2BN3BYJFKHH7WECXDGZXLRU.jpg?auth=d5ddd968465f3b3c97e7b89fa93c340e1c9924e28ea0d5f5e2a18031405e5c15&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/IRW2BN3BYJFKHH7WECXDGZXLRU.jpg","width":1440}},"subheadlines":{"basic":""},"type":"story","website_url":"/article/2025/04/06/southern-oregon-university-students-tke-brotherhood-fraternity/"},"expires":1744001792137,"lastModified":1744001672001},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.opb.org/article/2025/04/06/pacific-crest-trail-federal-cuts/\"}":{"data":{"_id":"IHCOYOCBBFFWFCP3NGTGKN43AA","content_elements":[],"description":{"basic":"Federal cuts and climate impacts are straining both the Pacific Crest and Appalachian Trails, leading to rougher terrain, delayed repairs and safety concerns for hikers across the West and East Coasts."},"first_publish_date":"2025-04-06T16:11:07.903Z","headlines":{"basic":"Hikers face tougher terrain through Oregon as federal cuts hit Pacific Crest Trail"},"label":{"kicker":{"display":true,"text":"Federal funding","url":"https://www.opb.org/politics"}},"last_updated_date":"2025-04-06T16:14:05.666Z","promo_items":{"basic":{"caption":"Eric Kipperman, one of the Pacific Crest Trail Association's experienced guides known as \"crest runners\", right, takes a picture of hikers Joshua Suran, center, and Laura Flocchini as they get ready to begin their hike at the southern terminus of the Pacific Crest Trail near the border with Mexico, Monday, March 24, 2025, near Campo, Calif.","credits":{"affiliation":[{"name":"AP"}],"by":[{"name":"Gregory Bull","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/7CAYNEOXU5EAVJVECD7R4CM4TM.jpg?auth=30de36e31e030ef131ebca566d42e7b939be5eba56ba446e6d2c3df1388cece2&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/7CAYNEOXU5EAVJVECD7R4CM4TM.jpg?auth=30de36e31e030ef131ebca566d42e7b939be5eba56ba446e6d2c3df1388cece2&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/7CAYNEOXU5EAVJVECD7R4CM4TM.jpg?auth=30de36e31e030ef131ebca566d42e7b939be5eba56ba446e6d2c3df1388cece2&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/7CAYNEOXU5EAVJVECD7R4CM4TM.jpg?auth=30de36e31e030ef131ebca566d42e7b939be5eba56ba446e6d2c3df1388cece2&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/7CAYNEOXU5EAVJVECD7R4CM4TM.jpg?auth=30de36e31e030ef131ebca566d42e7b939be5eba56ba446e6d2c3df1388cece2&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/7CAYNEOXU5EAVJVECD7R4CM4TM.jpg","width":1440}},"subheadlines":{"basic":"Federal cuts and climate impacts are straining both the Pacific Crest and Appalachian Trails, leading to rougher terrain, delayed repairs and safety concerns for hikers across the West and East Coasts."},"type":"story","website_url":"/article/2025/04/06/pacific-crest-trail-federal-cuts/"},"expires":1744001792192,"lastModified":1744001672012},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.opb.org/article/2025/04/06/oregon-has-spent-dollar46-million-fighting-black-market-cannabis-officials-cant-tell-if-its-working/\"}":{"data":{"_id":"PUUWGPV6IJF6DALC23KMGNF44I","content_elements":[],"description":{"basic":"Following the legalization of recreational cannabis in 2014 in Oregon, concerns about illegal cannabis operations surged. In response, lawmakers established the Illegal Marijuana Market Enforcement Grant in 2017. But is the multi-million dollar effort to tackle the illegal market working?"},"first_publish_date":"2025-04-05T14:33:41.084Z","headlines":{"basic":"Oregon has spent $46 million fighting black market cannabis. Officials can’t tell if it’s working"},"label":{"kicker":{"display":true,"text":"Cannabis","url":"https://www.opb.org/tag/cannabis/"}},"last_updated_date":"2025-04-05T14:33:41.440Z","promo_items":{"basic":{"caption":"Marijuana grows in hoop houses at a property in rural Southern Oregon. The Josephine County Sheriff’s Marijuana Enforcement Team searched the property in August 2022.","credits":{"affiliation":[],"by":[{"name":"Josephine County Sheriff’s Office","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JEPIE7JWOVCR3PGV66VXSOFLOA.jpeg?auth=73c63c1c521c793f681435c4c7e9e85b9051c49c9d841bcbc830713724f40b56&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JEPIE7JWOVCR3PGV66VXSOFLOA.jpeg?auth=73c63c1c521c793f681435c4c7e9e85b9051c49c9d841bcbc830713724f40b56&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JEPIE7JWOVCR3PGV66VXSOFLOA.jpeg?auth=73c63c1c521c793f681435c4c7e9e85b9051c49c9d841bcbc830713724f40b56&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JEPIE7JWOVCR3PGV66VXSOFLOA.jpeg?auth=73c63c1c521c793f681435c4c7e9e85b9051c49c9d841bcbc830713724f40b56&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JEPIE7JWOVCR3PGV66VXSOFLOA.jpeg?auth=73c63c1c521c793f681435c4c7e9e85b9051c49c9d841bcbc830713724f40b56&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/JEPIE7JWOVCR3PGV66VXSOFLOA.jpeg","width":1440}},"subheadlines":{"basic":"Experts say the state’s lack of market-related data may be hampering its efforts"},"type":"story","website_url":"/article/2025/04/06/oregon-has-spent-dollar46-million-fighting-black-market-cannabis-officials-cant-tell-if-its-working/"},"expires":1744001792133,"lastModified":1744001671978},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.opb.org/article/2025/04/04/mt-mountain-bachelor-powdr-central-oregon-bend-sale-ski-resort/\"}":{"data":{"_id":"MUCIQYDZNFGHVA2SMTYIALCALU","content_elements":[],"description":{"basic":"Last year the Utah-based POWDR announced a plan to sell the Central Oregon ski resort near Bend."},"first_publish_date":"2025-04-04T20:51:31.303Z","headlines":{"basic":"Mt. Bachelor goes off the market as owner focuses on resort upgrades"},"label":{},"last_updated_date":"2025-04-04T21:13:37.752Z","promo_items":{"basic":{"caption":"Lift lines form at Mt. Bachelor ski resort outside Bend, Ore., Monday, Dec. 7, 2020. ","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Bradley W. Parks","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JMVGDJGDVZC67JYNDW5B56K5XQ.jpg?auth=3aa3f2303271c2930fdb3bf544f41de88c605f2a81a590506a234e317c23ae53&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JMVGDJGDVZC67JYNDW5B56K5XQ.jpg?auth=3aa3f2303271c2930fdb3bf544f41de88c605f2a81a590506a234e317c23ae53&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JMVGDJGDVZC67JYNDW5B56K5XQ.jpg?auth=3aa3f2303271c2930fdb3bf544f41de88c605f2a81a590506a234e317c23ae53&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JMVGDJGDVZC67JYNDW5B56K5XQ.jpg?auth=3aa3f2303271c2930fdb3bf544f41de88c605f2a81a590506a234e317c23ae53&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JMVGDJGDVZC67JYNDW5B56K5XQ.jpg?auth=3aa3f2303271c2930fdb3bf544f41de88c605f2a81a590506a234e317c23ae53&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/JMVGDJGDVZC67JYNDW5B56K5XQ.jpg","width":1440}},"subheadlines":{"basic":""},"type":"story","website_url":"/article/2025/04/04/mt-mountain-bachelor-powdr-central-oregon-bend-sale-ski-resort/"},"expires":1744001792120,"lastModified":1744001672002},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.opb.org/article/2025/04/05/uo-faculty-ratifies-new-contract/\"}":{"data":{"_id":"NMT3Q5HP4VBLJLZB5WRCBGSNME","content_elements":[],"description":{"basic":"An email sent by United Academics of UO president Mike Urbancic to union members Friday afternoon said 97% of the faculty members who cast a ballot voted to ratify the deal."},"first_publish_date":"2025-04-05T22:54:04.949Z","headlines":{"basic":"University of Oregon faculty ratifies new contract, avoiding strike"},"label":{},"last_updated_date":"2025-04-05T22:54:23.950Z","promo_items":{"basic":{"caption":"An undated photo of the University of Oregon campus.","credits":{"affiliation":[{"name":"KLCC"}],"by":[{"name":"Brian Bull","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZZU5GETEYNE6HJJY2W4GDAR4WY.JPG?auth=54a427df15c141ca8571303dc04794408f8a635e0764f0157d64727de92fc4af&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZZU5GETEYNE6HJJY2W4GDAR4WY.JPG?auth=54a427df15c141ca8571303dc04794408f8a635e0764f0157d64727de92fc4af&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZZU5GETEYNE6HJJY2W4GDAR4WY.JPG?auth=54a427df15c141ca8571303dc04794408f8a635e0764f0157d64727de92fc4af&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZZU5GETEYNE6HJJY2W4GDAR4WY.JPG?auth=54a427df15c141ca8571303dc04794408f8a635e0764f0157d64727de92fc4af&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZZU5GETEYNE6HJJY2W4GDAR4WY.JPG?auth=54a427df15c141ca8571303dc04794408f8a635e0764f0157d64727de92fc4af&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/ZZU5GETEYNE6HJJY2W4GDAR4WY.JPG","width":1440}},"subheadlines":{"basic":""},"type":"story","website_url":"/article/2025/04/05/uo-faculty-ratifies-new-contract/"},"expires":1744001792134,"lastModified":1744001672003},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.opb.org/article/2025/04/04/oregon-department-human-services-gene-evans-st-helens-spokesman-sexual-abuse-students/\"}":{"data":{"_id":"HHFAKDWPFFEHPL7WNF2FYUKOWU","content_elements":[],"description":{"basic":"The investigation comes days after OPB published an investigation into decades-old claims of sexual abuse against Evans, all from his time as a teacher at St. Helens High School in the 1980s."},"first_publish_date":"2025-04-04T13:00:01Z","headlines":{"basic":"Oregon DHS opens sexual abuse investigation into former spokesman Gene Evans"},"label":{"kicker":{"display":true,"text":"Law and Justice","url":"https://www.opb.org/tag/law/"}},"last_updated_date":"2025-04-04T23:36:17.885Z","promo_items":{"basic":{"caption":"A photo of Gene Evans, right, in a high school yearbook at Jodie Westing’s home in Wilsonville, Ore., Dec. 30, 2024. The Oregon Department of Human Services says it's investigating claims of sexual abuse against Evans, who served as the agency's spokesperson for several years.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Kristyna Wentz-Graff","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZPMT76FUWFBDHHD5K2R5NBBLJA.JPG?auth=34081f7e111c90319511831c2f3a2a544eb76fce8c4617c9b9bfc201f0fbf343&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZPMT76FUWFBDHHD5K2R5NBBLJA.JPG?auth=34081f7e111c90319511831c2f3a2a544eb76fce8c4617c9b9bfc201f0fbf343&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZPMT76FUWFBDHHD5K2R5NBBLJA.JPG?auth=34081f7e111c90319511831c2f3a2a544eb76fce8c4617c9b9bfc201f0fbf343&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZPMT76FUWFBDHHD5K2R5NBBLJA.JPG?auth=34081f7e111c90319511831c2f3a2a544eb76fce8c4617c9b9bfc201f0fbf343&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/ZPMT76FUWFBDHHD5K2R5NBBLJA.JPG?auth=34081f7e111c90319511831c2f3a2a544eb76fce8c4617c9b9bfc201f0fbf343&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/ZPMT76FUWFBDHHD5K2R5NBBLJA.JPG","width":1440}},"subheadlines":{"basic":""},"type":"story","website_url":"/article/2025/04/04/oregon-department-human-services-gene-evans-st-helens-spokesman-sexual-abuse-students/"},"expires":1744001792120,"lastModified":1744001672004},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.opb.org/article/2025/04/03/oregon-supreme-court-tillamook-lawsuit-case-moves-forward/\"}":{"data":{"_id":"25BT2VFLIVA4BFYVSNKLOR4JCQ","content_elements":[],"description":{"basic":"A year after holding oral arguments, the Oregon Supreme Court has ruled a lawsuit against one of Oregon’s most recognizable farmer-owned creameries can move forward."},"first_publish_date":"2025-04-03T19:43:27.694Z","headlines":{"basic":"Oregon Supreme Court says ‘misleading marketing’ case against Tillamook can move forward "},"label":{"kicker":{"display":true,"text":"Food and Farms","url":"https://www.opb.org/tag/food-and-farms/"}},"last_updated_date":"2025-04-04T18:39:50.753Z","promo_items":{"basic":{"caption":"Tillamook Creamery, in Tillamook, Ore.","credits":{"affiliation":[],"by":[{"name":"Maps Data: © Google, 2025; Imagery August 2023","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/4NS4U7TR3RFMLKJVAEVELDROKE.JPG?auth=0a9f6a8565c03f6718b675d1d8a9d10d86d456fd8ef4e6734d408bf2a7d567d7&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/4NS4U7TR3RFMLKJVAEVELDROKE.JPG?auth=0a9f6a8565c03f6718b675d1d8a9d10d86d456fd8ef4e6734d408bf2a7d567d7&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/4NS4U7TR3RFMLKJVAEVELDROKE.JPG?auth=0a9f6a8565c03f6718b675d1d8a9d10d86d456fd8ef4e6734d408bf2a7d567d7&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/4NS4U7TR3RFMLKJVAEVELDROKE.JPG?auth=0a9f6a8565c03f6718b675d1d8a9d10d86d456fd8ef4e6734d408bf2a7d567d7&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/4NS4U7TR3RFMLKJVAEVELDROKE.JPG?auth=0a9f6a8565c03f6718b675d1d8a9d10d86d456fd8ef4e6734d408bf2a7d567d7&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/4NS4U7TR3RFMLKJVAEVELDROKE.JPG","width":1440}},"subheadlines":{"basic":""},"type":"story","website_url":"/article/2025/04/03/oregon-supreme-court-tillamook-lawsuit-case-moves-forward/"},"expires":1744001792133,"lastModified":1744001672006},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.opb.org/article/2025/04/03/portland-councilors-pcef-tax-hike/\"}":{"data":{"_id":"AY4MQEMEUZBMLIX7N4ANUEJKXM","content_elements":[],"description":{"basic":"Raising the Portland Clean Energy Fund tax could generate $60 million for non-climate programs.\n"},"first_publish_date":"2025-04-03T23:54:49.011Z","headlines":{"basic":"3 Portland councilors propose PCEF tax hike to backfill city budget"},"label":{"kicker":{"display":true,"text":"Science & Environment","url":"https://www.opb.org/science_environment/"}},"last_updated_date":"2025-04-04T23:21:25.368Z","promo_items":{"basic":{"caption":"FILE- Portland City Hall, Nov. 15, 2024.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Kristyna Wentz-Graff","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/M2GP4GUFBFEJTN4FSWEEDIYV4Q.jpg?auth=d26d4ee1ef5db4a9ab8f0c4a69476cf5a7f0ac1be28a88bf55a30b2bc4a2b884&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/M2GP4GUFBFEJTN4FSWEEDIYV4Q.jpg?auth=d26d4ee1ef5db4a9ab8f0c4a69476cf5a7f0ac1be28a88bf55a30b2bc4a2b884&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/M2GP4GUFBFEJTN4FSWEEDIYV4Q.jpg?auth=d26d4ee1ef5db4a9ab8f0c4a69476cf5a7f0ac1be28a88bf55a30b2bc4a2b884&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/M2GP4GUFBFEJTN4FSWEEDIYV4Q.jpg?auth=d26d4ee1ef5db4a9ab8f0c4a69476cf5a7f0ac1be28a88bf55a30b2bc4a2b884&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/M2GP4GUFBFEJTN4FSWEEDIYV4Q.jpg?auth=d26d4ee1ef5db4a9ab8f0c4a69476cf5a7f0ac1be28a88bf55a30b2bc4a2b884&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/M2GP4GUFBFEJTN4FSWEEDIYV4Q.jpg","width":1440}},"subheadlines":{"basic":"Raising the Portland Clean Energy Fund tax could generate $60 million for non-climate programs"},"type":"story","website_url":"/article/2025/04/03/portland-councilors-pcef-tax-hike/"},"expires":1744001792137,"lastModified":1744001672007},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.opb.org/article/2025/04/03/salmon-return-to-the-klamaths-oregon-waters-but-the-rivers-headwaters-are-still-blocked/\"}":{"data":{"_id":"CYF75Q2JE5A2BFLO5PN4I3UZTM","content_elements":[],"description":{"basic":"After decades of conflict, farmers and tribes say they’re working in concert to restore salmon habitat in the Klamath Basin. But two dams remain - one that blocks fish passage another that plays a key role for agriculture."},"first_publish_date":"2025-04-03T13:00:01Z","headlines":{"basic":"Salmon return to the Klamath’s Oregon waters, but the river’s headwaters are still blocked "},"label":{"kicker":{"display":true,"text":"Oregon Field Guide","url":"https://www.opb.org/show/oregonfieldguide/"}},"last_updated_date":"2025-04-03T13:00:05.569Z","promo_items":{"basic":{"alt_text":"The Klamath River now flows free for hundreds of miles from Southern Oregon to the ocean. But after the largest dam removal project in the U.S., challenges remain. Water shortages in the upper basin fuel toxic bacteria, disease outbreaks and conflicts over endangered fish as salmon swim upstream for the first time in a century.","caption":"Challenges remain after the country’s largest dam removal project on the Klamath River.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/a6cf4332-36e9-4b13-8210-ff29f659cb68.jpg"},"name":"Brandon Swanson","slug":"brandon-swanson","type":"author","url":""}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/7KAGEELY7ZANNNE625XN2ZCBXA.jpg?auth=a446b066c8ca847b9fb6d8f43b3060e0821d84626b45c580d8ae6a34282ed97d&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/7KAGEELY7ZANNNE625XN2ZCBXA.jpg?auth=a446b066c8ca847b9fb6d8f43b3060e0821d84626b45c580d8ae6a34282ed97d&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/7KAGEELY7ZANNNE625XN2ZCBXA.jpg?auth=a446b066c8ca847b9fb6d8f43b3060e0821d84626b45c580d8ae6a34282ed97d&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/7KAGEELY7ZANNNE625XN2ZCBXA.jpg?auth=a446b066c8ca847b9fb6d8f43b3060e0821d84626b45c580d8ae6a34282ed97d&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/7KAGEELY7ZANNNE625XN2ZCBXA.jpg?auth=a446b066c8ca847b9fb6d8f43b3060e0821d84626b45c580d8ae6a34282ed97d&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/7KAGEELY7ZANNNE625XN2ZCBXA.jpg","width":1440},"video":{"_id":"cb50bc1d-8197-49dc-9d84-cf5b42f917f5","canonical_url":"/video/2025/03/26/klamath-after-the-dams/","duration":1733994,"headlines":{"basic":"Klamath: After The Dams"},"promo_image":{"height":1080,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F03-26-2025%2Ft_3eb634877e294e4ca43cc51f70083406_name_ORFG_KlaDamSpecial_ThumbnailUnBranded_02_20250311i_copy.jpg?auth=ba94855765e60575011404354539e7cea164f281ef683fdf8eded6dca3ea01de&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F03-26-2025%2Ft_3eb634877e294e4ca43cc51f70083406_name_ORFG_KlaDamSpecial_ThumbnailUnBranded_02_20250311i_copy.jpg?auth=ba94855765e60575011404354539e7cea164f281ef683fdf8eded6dca3ea01de&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F03-26-2025%2Ft_3eb634877e294e4ca43cc51f70083406_name_ORFG_KlaDamSpecial_ThumbnailUnBranded_02_20250311i_copy.jpg?auth=ba94855765e60575011404354539e7cea164f281ef683fdf8eded6dca3ea01de&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F03-26-2025%2Ft_3eb634877e294e4ca43cc51f70083406_name_ORFG_KlaDamSpecial_ThumbnailUnBranded_02_20250311i_copy.jpg?auth=ba94855765e60575011404354539e7cea164f281ef683fdf8eded6dca3ea01de&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F03-26-2025%2Ft_3eb634877e294e4ca43cc51f70083406_name_ORFG_KlaDamSpecial_ThumbnailUnBranded_02_20250311i_copy.jpg?auth=ba94855765e60575011404354539e7cea164f281ef683fdf8eded6dca3ea01de&width=767"},"type":"image","url":"https://d3ac64bsgpdzxx.cloudfront.net/03-26-2025/t_3eb634877e294e4ca43cc51f70083406_name_ORFG_KlaDamSpecial_ThumbnailUnBranded_02_20250311i_copy.jpg","width":1920},"short_url":"/video/2025/03/26/klamath-after-the-dams/","streams":[{"bitrate":160,"filesize":82019324,"height":180,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250326/67e4647c82cc24501a5045b2/t_eff3958415164e2fa17f78b7d88609ab_name_original/mobile.m3u8","width":320},{"bitrate":300,"filesize":113629080,"height":360,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250326/67e4647c82cc24501a5045b2/t_eff3958415164e2fa17f78b7d88609ab_name_original/mobile.m3u8","width":640},{"bitrate":600,"filesize":179567260,"height":360,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250326/67e4647c82cc24501a5045b2/t_eff3958415164e2fa17f78b7d88609ab_name_original/mobile.m3u8","width":640},{"bitrate":1200,"filesize":312524056,"height":480,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250326/67e4647c82cc24501a5045b2/t_eff3958415164e2fa17f78b7d88609ab_name_original/master.m3u8","width":854},{"bitrate":4500,"filesize":1044372148,"height":1080,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250326/67e4647c82cc24501a5045b2/t_eff3958415164e2fa17f78b7d88609ab_name_original/hd.m3u8","width":1920},{"bitrate":5400,"filesize":1209159224,"height":1080,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250326/67e4647c82cc24501a5045b2/t_eff3958415164e2fa17f78b7d88609ab_name_original/hlsv4_master.m3u8","width":1920},{"bitrate":160,"filesize":63914095,"height":180,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250326/67e4647c82cc24501a5045b2/t_eff3958415164e2fa17f78b7d88609ab_name_original/file_320x180-160-v3.mp4","width":320},{"bitrate":600,"filesize":159337338,"height":360,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250326/67e4647c82cc24501a5045b2/t_eff3958415164e2fa17f78b7d88609ab_name_original/file_640x360-600-v3.mp4","width":640},{"bitrate":1200,"filesize":289468023,"height":480,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250326/67e4647c82cc24501a5045b2/t_eff3958415164e2fa17f78b7d88609ab_name_original/file_854x480-1200-v3_1.mp4","width":854},{"bitrate":2000,"filesize":462930584,"height":720,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250326/67e4647c82cc24501a5045b2/t_eff3958415164e2fa17f78b7d88609ab_name_original/file_1280x720-2000-v3_1.mp4","width":1280},{"bitrate":5400,"filesize":1200272691,"height":1080,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250326/67e4647c82cc24501a5045b2/t_eff3958415164e2fa17f78b7d88609ab_name_original/file_1920x1080-5400-v4.mp4","width":1920}],"subheadlines":{"basic":"The Klamath River now flows free for hundreds of miles from Southern Oregon to the ocean. But after the largest dam removal project in the U.S., challenges remain. Water shortages in the upper basin fuel toxic bacteria, disease outbreaks and conflicts over endangered fish as salmon swim upstream for the first time in a century."},"subtitles":{"urls":[{"format":"SRT","url":"https://d2swrj9quyyg9l.cloudfront.net/2025/03/26/cb50bc1d-8197-49dc-9d84-cf5b42f917f5/2_1743025928264/cb50bc1d-8197-49dc-9d84-cf5b42f917f5_67e4647c82cc24501a5045b1.srt"},{"format":"DFXP","url":"https://d2swrj9quyyg9l.cloudfront.net/2025/03/26/cb50bc1d-8197-49dc-9d84-cf5b42f917f5/2_1743025931788/cb50bc1d-8197-49dc-9d84-cf5b42f917f5_67e4647c82cc24501a5045b1.dfxp"},{"format":"RAW_TEXT","url":"https://d2swrj9quyyg9l.cloudfront.net/2025/03/26/cb50bc1d-8197-49dc-9d84-cf5b42f917f5/2_1743025931847/cb50bc1d-8197-49dc-9d84-cf5b42f917f5_67e4647c82cc24501a5045b1.txt"},{"format":"WEB_VTT","url":"https://d2swrj9quyyg9l.cloudfront.net/2025/03/26/cb50bc1d-8197-49dc-9d84-cf5b42f917f5/2_1743025933014/cb50bc1d-8197-49dc-9d84-cf5b42f917f5_67e4647c82cc24501a5045b1.vtt"},{"format":"WEB_VTT_PLAYLIST","url":"https://d2swrj9quyyg9l.cloudfront.net/2025/03/26/cb50bc1d-8197-49dc-9d84-cf5b42f917f5/2_1743025948372/cb50bc1d-8197-49dc-9d84-cf5b42f917f5_67e4647c82cc24501a5045b1.m3u8"}]},"type":"video"}},"subheadlines":{"basic":"After decades of conflict, farmers and tribes say they’re working in concert to restore salmon habitat in the Klamath Basin. But two dams remain"},"type":"story","website_url":"/article/2025/04/03/salmon-return-to-the-klamaths-oregon-waters-but-the-rivers-headwaters-are-still-blocked/"},"expires":1744001792480,"lastModified":1744001672008},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.opb.org/article/2025/04/04/opb-politics-now-pacific-northwest-dam-removal/\"}":{"data":{"_id":"F23G7SF6FJD3RMRBSKUFM6QOKI","content_elements":[],"description":{"basic":"We take stock of the conversations surrounding dam removals in the wake of the Klamath projects and discussions of the utility of several dams along the Willamette River."},"first_publish_date":"2025-04-04T13:00:00Z","headlines":{"basic":"‘OPB Politics Now’: Is the Pacific Northwest entering an era of dam removal? "},"label":{"kicker":{"display":true,"text":"Politics Now","url":"https://www.opb.org/show/politicsnow/"}},"last_updated_date":"2025-04-04T13:00:05.933Z","promo_items":{"audio":{"embed":{"config":{"duration":1343000,"origin":"soundstack"},"url":"https://pds.cdnstream1.com/p/opb/opb-politics-now/is-the-pacific-northwest-52602a/audio.mp3?aw_0_1st.playerid=opbsite"}},"basic":{"alt_text":"Podcast logo image","caption":"OPB Politics Now","credits":{"by":[{"name":"OPB Sta","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5AUFRS4B6BGTXEI73OZNKPFHLE.png?auth=1b4946632db66de8454107fb0227d5b9144903e7179d9d56206ad873c8478cda&width=1440&height=810&focal=977%2C685","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5AUFRS4B6BGTXEI73OZNKPFHLE.png?auth=1b4946632db66de8454107fb0227d5b9144903e7179d9d56206ad873c8478cda&width=150&height=84&focal=977%2C685","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5AUFRS4B6BGTXEI73OZNKPFHLE.png?auth=1b4946632db66de8454107fb0227d5b9144903e7179d9d56206ad873c8478cda&width=1023&height=575&focal=977%2C685","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5AUFRS4B6BGTXEI73OZNKPFHLE.png?auth=1b4946632db66de8454107fb0227d5b9144903e7179d9d56206ad873c8478cda&width=1200&height=675&focal=977%2C685","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5AUFRS4B6BGTXEI73OZNKPFHLE.png?auth=1b4946632db66de8454107fb0227d5b9144903e7179d9d56206ad873c8478cda&width=767&height=431&focal=977%2C685"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/5AUFRS4B6BGTXEI73OZNKPFHLE.png","width":1440}},"subheadlines":{"basic":""},"type":"story","website_url":"/article/2025/04/04/opb-politics-now-pacific-northwest-dam-removal/"},"expires":1744001792131,"lastModified":1744001672038},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.opb.org/article/2025/04/05/shelton-mcmurphey-johnson-house-federal-staffing/\"}":{"data":{"_id":"BTCTXKALVFASPDPGV7HUDAR2DI","content_elements":[],"description":{"basic":"The Shelton-McMurphey Johnson House relies on funding from Institute of Museum and Library Services for an important position. Now, with the entire staff at the federal agency on leave, the museum’s leadership is worried about what it means for their funding."},"first_publish_date":"2025-04-05T13:00:00Z","headlines":{"basic":"Federal staffing shakeup casts doubt on future of historic Eugene museum"},"label":{"kicker":{"display":true,"text":"Culture","url":"https://www.opb.org/culture/"}},"last_updated_date":"2025-04-05T13:00:01.737Z","promo_items":{"basic":{"caption":"The Shelton-McMurphey Johnson House, as seen on April 3, 2025, sits at the base of Skinner Butte in Eugene, Ore.","credits":{"affiliation":[{"name":"KLCC"}],"by":[{"name":"Chris Lehman","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/EGKWUKXKIBDDRAMM76E5EQOG44.JPG?auth=0cf534a1de1e478a544381992ad2748c8a7e567697ae9264066c2eaf1a26da7f&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/EGKWUKXKIBDDRAMM76E5EQOG44.JPG?auth=0cf534a1de1e478a544381992ad2748c8a7e567697ae9264066c2eaf1a26da7f&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/EGKWUKXKIBDDRAMM76E5EQOG44.JPG?auth=0cf534a1de1e478a544381992ad2748c8a7e567697ae9264066c2eaf1a26da7f&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/EGKWUKXKIBDDRAMM76E5EQOG44.JPG?auth=0cf534a1de1e478a544381992ad2748c8a7e567697ae9264066c2eaf1a26da7f&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/EGKWUKXKIBDDRAMM76E5EQOG44.JPG?auth=0cf534a1de1e478a544381992ad2748c8a7e567697ae9264066c2eaf1a26da7f&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/EGKWUKXKIBDDRAMM76E5EQOG44.JPG","width":1440}},"subheadlines":{"basic":""},"type":"story","website_url":"/article/2025/04/05/shelton-mcmurphey-johnson-house-federal-staffing/"},"expires":1744001792130,"lastModified":1744001672010},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.opb.org/article/2025/04/05/robert-lasnik-federal-judge-seattle-trump/\"}":{"data":{"_id":"OWIZIA36ZNANPJWM6F34SJLKWA","content_elements":[],"description":{"basic":"U.S. District Judge Robert Lasnik said calling judges names and threatening to seek their impeachment has resulted in an unprecedented number of online threats to judges themselves. "},"first_publish_date":"2025-04-05T18:46:43.802Z","headlines":{"basic":"Trump’s rhetoric breeds ‘unprecedented’ threats, federal judge in Seattle says"},"label":{"kicker":{"display":true,"text":"Law and Justice","url":"https://www.opb.org/tag/law/"}},"last_updated_date":"2025-04-05T18:46:43.950Z","promo_items":{"basic":{"caption":"Seattle-based U.S. District Judge Robert Lasnik in his chambers on April 3, 2025.","credits":{"affiliation":[{"name":"KUOW"}],"by":[{"name":"Amy Radil","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/CVJR4GNSAFC67IJ6KRNGAMDCQI.JPG?auth=f7876fdc305db0e4c5b0f4ec98e90d97be57112b115ba77170bbb75b7ad9c854&width=1440&height=810&focal=334%2C261","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/CVJR4GNSAFC67IJ6KRNGAMDCQI.JPG?auth=f7876fdc305db0e4c5b0f4ec98e90d97be57112b115ba77170bbb75b7ad9c854&width=150&height=84&focal=334%2C261","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/CVJR4GNSAFC67IJ6KRNGAMDCQI.JPG?auth=f7876fdc305db0e4c5b0f4ec98e90d97be57112b115ba77170bbb75b7ad9c854&width=1023&height=575&focal=334%2C261","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/CVJR4GNSAFC67IJ6KRNGAMDCQI.JPG?auth=f7876fdc305db0e4c5b0f4ec98e90d97be57112b115ba77170bbb75b7ad9c854&width=1200&height=675&focal=334%2C261","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/CVJR4GNSAFC67IJ6KRNGAMDCQI.JPG?auth=f7876fdc305db0e4c5b0f4ec98e90d97be57112b115ba77170bbb75b7ad9c854&width=767&height=431&focal=334%2C261"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/CVJR4GNSAFC67IJ6KRNGAMDCQI.JPG","width":1440}},"subheadlines":{"basic":""},"type":"story","website_url":"/article/2025/04/05/robert-lasnik-federal-judge-seattle-trump/"},"expires":1744001792130,"lastModified":1744001671986},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.opb.org/article/2020/10/30/pikas-return-to-the-gorge-or-so-researchers-think/\"}":{"data":{"_id":"CMIIEW5LC5HQLBZLZEEFMQVPII","content_elements":[],"description":{"basic":"The Columbia River Gorge is home to an unusual population of American pikas. When the Eagle Creek Fire scorched that area in 2017, researchers feared they'd be wiped out."},"first_publish_date":"2020-10-30T13:12:54.082Z","headlines":{"basic":"Pikas return to the Gorge — or so researchers think"},"label":{"kicker":{"display":true,"text":"Oregon Field Guide","url":"https://www.opb.org/show/oregonfieldguide/"},"series":{"display":true,"text":"Oregon Field Guide","url":""}},"last_updated_date":"2022-05-28T19:44:38.535Z","promo_items":{"video":{"_id":"3e6ed85f-543f-432c-96e3-d97504661fe9","canonical_url":"/video/2020/10/29/pika-comeback/","duration":389099,"headlines":{"basic":"Pika Comeback"},"promo_image":{"height":1080,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F10-29-2020%2Ft_f836daebe19e44b286a109ad53cbd4a1_name_PikaU_Thumbnail_branded_LizKoscoi.jpg?auth=3d6eec51dcdfe047fa78444e14333474b45250a7cf381a0cdd1750065e07cf8b&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F10-29-2020%2Ft_f836daebe19e44b286a109ad53cbd4a1_name_PikaU_Thumbnail_branded_LizKoscoi.jpg?auth=3d6eec51dcdfe047fa78444e14333474b45250a7cf381a0cdd1750065e07cf8b&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F10-29-2020%2Ft_f836daebe19e44b286a109ad53cbd4a1_name_PikaU_Thumbnail_branded_LizKoscoi.jpg?auth=3d6eec51dcdfe047fa78444e14333474b45250a7cf381a0cdd1750065e07cf8b&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F10-29-2020%2Ft_f836daebe19e44b286a109ad53cbd4a1_name_PikaU_Thumbnail_branded_LizKoscoi.jpg?auth=3d6eec51dcdfe047fa78444e14333474b45250a7cf381a0cdd1750065e07cf8b&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F10-29-2020%2Ft_f836daebe19e44b286a109ad53cbd4a1_name_PikaU_Thumbnail_branded_LizKoscoi.jpg?auth=3d6eec51dcdfe047fa78444e14333474b45250a7cf381a0cdd1750065e07cf8b&width=767"},"type":"image","url":"https://d3ac64bsgpdzxx.cloudfront.net/10-29-2020/t_f836daebe19e44b286a109ad53cbd4a1_name_PikaU_Thumbnail_branded_LizKoscoi.jpg","width":1920},"short_url":"/video/2020/10/29/pika-comeback/","streams":[{"bitrate":160,"filesize":18322856,"height":180,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20201029/5f9b41b84cedfd0001bc0948/t_ed0632336f0b4e50ba810606a5ff71f1_name_ORFG3203A02_pika_update/mobile.m3u8","width":320},{"bitrate":300,"filesize":25454824,"height":360,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20201029/5f9b41b84cedfd0001bc0948/t_ed0632336f0b4e50ba810606a5ff71f1_name_ORFG3203A02_pika_update/mobile.m3u8","width":640},{"bitrate":600,"filesize":40277120,"height":360,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20201029/5f9b41b84cedfd0001bc0948/t_ed0632336f0b4e50ba810606a5ff71f1_name_ORFG3203A02_pika_update/mobile.m3u8","width":640},{"bitrate":1200,"filesize":70161600,"height":480,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20201029/5f9b41b84cedfd0001bc0948/t_ed0632336f0b4e50ba810606a5ff71f1_name_ORFG3203A02_pika_update/master.m3u8","width":854},{"bitrate":4500,"filesize":234814444,"height":1080,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20201029/5f9b41b84cedfd0001bc0948/t_ed0632336f0b4e50ba810606a5ff71f1_name_ORFG3203A02_pika_update/hd.m3u8","width":1920},{"bitrate":5400,"filesize":271820928,"height":1080,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20201029/5f9b41b84cedfd0001bc0948/t_ed0632336f0b4e50ba810606a5ff71f1_name_ORFG3203A02_pika_update/hlsv4_master.m3u8","width":1920},{"bitrate":160,"filesize":14355217,"height":180,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20201029/5f9b41b84cedfd0001bc0948/t_ed0632336f0b4e50ba810606a5ff71f1_name_ORFG3203A02_pika_update/file_320x180-160-v3.mp4","width":320},{"bitrate":600,"filesize":35813555,"height":360,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20201029/5f9b41b84cedfd0001bc0948/t_ed0632336f0b4e50ba810606a5ff71f1_name_ORFG3203A02_pika_update/file_640x360-600-v3.mp4","width":640},{"bitrate":1200,"filesize":65055830,"height":480,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20201029/5f9b41b84cedfd0001bc0948/t_ed0632336f0b4e50ba810606a5ff71f1_name_ORFG3203A02_pika_update/file_854x480-1200-v3_1.mp4","width":854},{"bitrate":2000,"filesize":104090449,"height":720,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20201029/5f9b41b84cedfd0001bc0948/t_ed0632336f0b4e50ba810606a5ff71f1_name_ORFG3203A02_pika_update/file_1280x720-2000-v3_1.mp4","width":1280},{"bitrate":5400,"filesize":269811283,"height":1080,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20201029/5f9b41b84cedfd0001bc0948/t_ed0632336f0b4e50ba810606a5ff71f1_name_ORFG3203A02_pika_update/file_1920x1080-5400-v4.mp4","width":1920}],"subheadlines":{"basic":"Confirming the return of pikas to the Columbia River Gorge following the Eagle Creek Fire has been tricky for researchers"},"subtitles":{"urls":[{"format":"SRT","url":"https://d2swrj9quyyg9l.cloudfront.net/2020/10/29/3e6ed85f-543f-432c-96e3-d97504661fe9/2_1604010755051/3e6ed85f-543f-432c-96e3-d97504661fe9_5f9b3f9dc9e77c000166a16e.srt"},{"format":"DFXP","url":"https://d2swrj9quyyg9l.cloudfront.net/2020/10/29/3e6ed85f-543f-432c-96e3-d97504661fe9/2_1604010758834/3e6ed85f-543f-432c-96e3-d97504661fe9_5f9b3f9dc9e77c000166a16e.dfxp"},{"format":"RAW_TEXT","url":"https://d2swrj9quyyg9l.cloudfront.net/2020/10/29/3e6ed85f-543f-432c-96e3-d97504661fe9/2_1604010758880/3e6ed85f-543f-432c-96e3-d97504661fe9_5f9b3f9dc9e77c000166a16e.txt"},{"format":"WEB_VTT","url":"https://d2swrj9quyyg9l.cloudfront.net/2020/10/29/3e6ed85f-543f-432c-96e3-d97504661fe9/2_1604010759259/3e6ed85f-543f-432c-96e3-d97504661fe9_5f9b3f9dc9e77c000166a16e.vtt"},{"format":"WEB_VTT_PLAYLIST","url":"https://d2swrj9quyyg9l.cloudfront.net/2020/10/29/3e6ed85f-543f-432c-96e3-d97504661fe9/2_1604010765030/3e6ed85f-543f-432c-96e3-d97504661fe9_5f9b3f9dc9e77c000166a16e.m3u8"}]},"type":"video"}},"subheadlines":{"basic":"Confirming the return of pikas following the Eagle Creek Fire has been tricky."},"type":"story","website_url":"/article/2020/10/30/pikas-return-to-the-gorge-or-so-researchers-think/"},"expires":1744001792467,"lastModified":1744001672027},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.opb.org/article/2025/02/06/urban-naturalist-mike-houck-tracks-great-blue-herons-on-the-willamette-river/\"}":{"data":{"_id":"LIENKZUCTZHTHOCECQY4BFYGCI","content_elements":[],"description":{"basic":"Longtime advocate Mike Houck reflects on a career of restoring nature in Portland while taking \"Oregon Field Guide\" on an urban safari to track the lifecycle of the great blue heron."},"first_publish_date":"2025-02-09T14:00:00Z","headlines":{"basic":"Urban naturalist Mike Houck tracks great blue herons on the Willamette River "},"label":{"kicker":{"display":true,"text":"Oregon Field Guide","url":"https://www.opb.org/show/oregonfieldguide/"},"series":{"display":true,"text":"Oregon Field Guide","url":""}},"last_updated_date":"2025-02-10T14:27:14.213Z","promo_items":{"basic":{"alt_text":"Reflecting on his long career bringing green space to the built environment, urban naturalist Mike Houck tracks the lifecycle of the great blue heron on Portland's Willamette River","caption":"Urban naturalist Mike Houck tracks great blue herons on the Willamette River","credits":{"affiliation":[{"name":"OPB"}],"by":[{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/a6cf4332-36e9-4b13-8210-ff29f659cb68.jpg"},"name":"Brandon Swanson","slug":"brandon-swanson","type":"author","url":""}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/NJWEIMTHNFFTDMD2TD2URNYG74.jpg?auth=f4fd08af1bb9e6d84579fef1fab4103343fb9640b45f08fcc665a4cfe1637ef3&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/NJWEIMTHNFFTDMD2TD2URNYG74.jpg?auth=f4fd08af1bb9e6d84579fef1fab4103343fb9640b45f08fcc665a4cfe1637ef3&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/NJWEIMTHNFFTDMD2TD2URNYG74.jpg?auth=f4fd08af1bb9e6d84579fef1fab4103343fb9640b45f08fcc665a4cfe1637ef3&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/NJWEIMTHNFFTDMD2TD2URNYG74.jpg?auth=f4fd08af1bb9e6d84579fef1fab4103343fb9640b45f08fcc665a4cfe1637ef3&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/NJWEIMTHNFFTDMD2TD2URNYG74.jpg?auth=f4fd08af1bb9e6d84579fef1fab4103343fb9640b45f08fcc665a4cfe1637ef3&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/NJWEIMTHNFFTDMD2TD2URNYG74.jpg","width":1440},"video":{"_id":"921f365b-5982-41ee-a397-5438f2aa6ae9","canonical_url":"/video/2025/01/14/mike-houck-and-the-great-blue-heron/","duration":620778,"headlines":{"basic":"Mike Houck and the great blue heron"},"promo_image":{"height":1080,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F01-14-2025%2Ft_e44f88f80d634405ad61c7e93ef7a85c_name_ORFG_Heron_BrandedThumb_03_20241101_i.jpg?auth=1edd6da1cff9bbe41dd624d961d20400477679b1ef08e7d6f1f5f577f9c00036&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F01-14-2025%2Ft_e44f88f80d634405ad61c7e93ef7a85c_name_ORFG_Heron_BrandedThumb_03_20241101_i.jpg?auth=1edd6da1cff9bbe41dd624d961d20400477679b1ef08e7d6f1f5f577f9c00036&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F01-14-2025%2Ft_e44f88f80d634405ad61c7e93ef7a85c_name_ORFG_Heron_BrandedThumb_03_20241101_i.jpg?auth=1edd6da1cff9bbe41dd624d961d20400477679b1ef08e7d6f1f5f577f9c00036&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F01-14-2025%2Ft_e44f88f80d634405ad61c7e93ef7a85c_name_ORFG_Heron_BrandedThumb_03_20241101_i.jpg?auth=1edd6da1cff9bbe41dd624d961d20400477679b1ef08e7d6f1f5f577f9c00036&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F01-14-2025%2Ft_e44f88f80d634405ad61c7e93ef7a85c_name_ORFG_Heron_BrandedThumb_03_20241101_i.jpg?auth=1edd6da1cff9bbe41dd624d961d20400477679b1ef08e7d6f1f5f577f9c00036&width=767"},"type":"image","url":"https://d3ac64bsgpdzxx.cloudfront.net/01-14-2025/t_e44f88f80d634405ad61c7e93ef7a85c_name_ORFG_Heron_BrandedThumb_03_20241101_i.jpg","width":1920},"short_url":"/video/2025/01/14/mike-houck-and-the-great-blue-heron/","streams":[{"bitrate":160,"filesize":29366728,"height":180,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250114/6786b3220705747118bf7f4e/t_dedba1bd691f4eb2be7ce572c8fc9ff0_name_ORFG_MHGBH_RevWebMaster12_20250123v/mobile.m3u8","width":320},{"bitrate":300,"filesize":40680380,"height":360,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250114/6786b3220705747118bf7f4e/t_dedba1bd691f4eb2be7ce572c8fc9ff0_name_ORFG_MHGBH_RevWebMaster12_20250123v/mobile.m3u8","width":640},{"bitrate":600,"filesize":64264228,"height":360,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250114/6786b3220705747118bf7f4e/t_dedba1bd691f4eb2be7ce572c8fc9ff0_name_ORFG_MHGBH_RevWebMaster12_20250123v/mobile.m3u8","width":640},{"bitrate":1200,"filesize":111809992,"height":480,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250114/6786b3220705747118bf7f4e/t_dedba1bd691f4eb2be7ce572c8fc9ff0_name_ORFG_MHGBH_RevWebMaster12_20250123v/master.m3u8","width":854},{"bitrate":4500,"filesize":373550360,"height":1080,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250114/6786b3220705747118bf7f4e/t_dedba1bd691f4eb2be7ce572c8fc9ff0_name_ORFG_MHGBH_RevWebMaster12_20250123v/hd.m3u8","width":1920},{"bitrate":5400,"filesize":432554912,"height":1080,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250114/6786b3220705747118bf7f4e/t_dedba1bd691f4eb2be7ce572c8fc9ff0_name_ORFG_MHGBH_RevWebMaster12_20250123v/hlsv4_master.m3u8","width":1920},{"bitrate":160,"filesize":22870498,"height":180,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250114/6786b3220705747118bf7f4e/t_dedba1bd691f4eb2be7ce572c8fc9ff0_name_ORFG_MHGBH_RevWebMaster12_20250123v/file_320x180-160-v3.mp4","width":320},{"bitrate":600,"filesize":57000938,"height":360,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250114/6786b3220705747118bf7f4e/t_dedba1bd691f4eb2be7ce572c8fc9ff0_name_ORFG_MHGBH_RevWebMaster12_20250123v/file_640x360-600-v3.mp4","width":640},{"bitrate":1200,"filesize":103542448,"height":480,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250114/6786b3220705747118bf7f4e/t_dedba1bd691f4eb2be7ce572c8fc9ff0_name_ORFG_MHGBH_RevWebMaster12_20250123v/file_854x480-1200-v3_1.mp4","width":854},{"bitrate":2000,"filesize":165597795,"height":720,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250114/6786b3220705747118bf7f4e/t_dedba1bd691f4eb2be7ce572c8fc9ff0_name_ORFG_MHGBH_RevWebMaster12_20250123v/file_1280x720-2000-v3_1.mp4","width":1280},{"bitrate":5400,"filesize":429333018,"height":1080,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20250114/6786b3220705747118bf7f4e/t_dedba1bd691f4eb2be7ce572c8fc9ff0_name_ORFG_MHGBH_RevWebMaster12_20250123v/file_1920x1080-5400-v4.mp4","width":1920}],"subheadlines":{"basic":"Mike Houck tracks the lifecycle of the great blue heron on Portland's Willamette River while reflecting on his long career bringing green space to the built environment."},"subtitles":{"urls":[{"format":"SRT","url":"https://d2swrj9quyyg9l.cloudfront.net/2025/01/14/921f365b-5982-41ee-a397-5438f2aa6ae9/2_1737751556873/921f365b-5982-41ee-a397-5438f2aa6ae9_6793ea6f25d1694b722c5193.srt"},{"format":"DFXP","url":"https://d2swrj9quyyg9l.cloudfront.net/2025/01/14/921f365b-5982-41ee-a397-5438f2aa6ae9/2_1737751560345/921f365b-5982-41ee-a397-5438f2aa6ae9_6793ea6f25d1694b722c5193.dfxp"},{"format":"RAW_TEXT","url":"https://d2swrj9quyyg9l.cloudfront.net/2025/01/14/921f365b-5982-41ee-a397-5438f2aa6ae9/2_1737751560422/921f365b-5982-41ee-a397-5438f2aa6ae9_6793ea6f25d1694b722c5193.txt"},{"format":"WEB_VTT","url":"https://d2swrj9quyyg9l.cloudfront.net/2025/01/14/921f365b-5982-41ee-a397-5438f2aa6ae9/2_1737751561551/921f365b-5982-41ee-a397-5438f2aa6ae9_6793ea6f25d1694b722c5193.vtt"},{"format":"WEB_VTT_PLAYLIST","url":"https://d2swrj9quyyg9l.cloudfront.net/2025/01/14/921f365b-5982-41ee-a397-5438f2aa6ae9/2_1737751568547/921f365b-5982-41ee-a397-5438f2aa6ae9_6793ea6f25d1694b722c5193.m3u8"}]},"type":"video"}},"subheadlines":{"basic":"Longtime advocate reflects on a career of restoring nature in Portland "},"type":"story","website_url":"/article/2025/02/06/urban-naturalist-mike-houck-tracks-great-blue-herons-on-the-willamette-river/"},"expires":1744001792464,"lastModified":1744001672011},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.opb.org/article/2022/03/29/want-to-study-how-aliens-might-think-look-to-the-octopus/\"}":{"data":{"_id":"HEICA7H7SRA6JOKOTSWGT3SXHI","content_elements":[],"description":{"basic":"Octopuses are incredibly smart, yet the majority of their neurons exist in their arms and suckers, and not in their brain, making them as close to alien intelligence as we can find on Earth. It's like: what if our hands and fingers could think for themselves?"},"first_publish_date":"2022-03-29T13:00:02.334Z","headlines":{"basic":"Want to study how aliens might think? Look to the octopus"},"label":{},"last_updated_date":"2022-03-29T13:52:49.000Z","promo_items":{"video":{"_id":"b630a844-1613-49e3-aad1-45060cb2f101","canonical_url":"/video/2022/03/22/the-mysterious-mind-of-the-octopus/","duration":509013,"headlines":{"basic":"The Mysterious Mind of the Octopus"},"promo_image":{"height":1080,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F03-22-2022%2Ft_b89c5de35e6a4f06b56fa9fe836d0175_name_Octos_Thumb1_branded_SGordon_edited.jpg?auth=f73825a02038035f5946c11ebc1540d5c48dfe729c299ffa635ce3a277558e41&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F03-22-2022%2Ft_b89c5de35e6a4f06b56fa9fe836d0175_name_Octos_Thumb1_branded_SGordon_edited.jpg?auth=f73825a02038035f5946c11ebc1540d5c48dfe729c299ffa635ce3a277558e41&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F03-22-2022%2Ft_b89c5de35e6a4f06b56fa9fe836d0175_name_Octos_Thumb1_branded_SGordon_edited.jpg?auth=f73825a02038035f5946c11ebc1540d5c48dfe729c299ffa635ce3a277558e41&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F03-22-2022%2Ft_b89c5de35e6a4f06b56fa9fe836d0175_name_Octos_Thumb1_branded_SGordon_edited.jpg?auth=f73825a02038035f5946c11ebc1540d5c48dfe729c299ffa635ce3a277558e41&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F03-22-2022%2Ft_b89c5de35e6a4f06b56fa9fe836d0175_name_Octos_Thumb1_branded_SGordon_edited.jpg?auth=f73825a02038035f5946c11ebc1540d5c48dfe729c299ffa635ce3a277558e41&width=767"},"type":"image","url":"https://d3ac64bsgpdzxx.cloudfront.net/03-22-2022/t_b89c5de35e6a4f06b56fa9fe836d0175_name_Octos_Thumb1_branded_SGordon_edited.jpg","width":1920},"short_url":"/video/2022/03/22/the-mysterious-mind-of-the-octopus/","streams":[{"bitrate":160,"filesize":24109120,"height":180,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/Aaron_Scott/20220309/6228cb0fc9e77c000191a5d4/t_776d7a5bcfd34bd09024c7b9dfbb1d67_name_ORFG_Octos_WebMaster_20220224v/mobile.m3u8","width":320},{"bitrate":300,"filesize":33352140,"height":360,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/Aaron_Scott/20220309/6228cb0fc9e77c000191a5d4/t_776d7a5bcfd34bd09024c7b9dfbb1d67_name_ORFG_Octos_WebMaster_20220224v/mobile.m3u8","width":640},{"bitrate":600,"filesize":52757688,"height":360,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/Aaron_Scott/20220309/6228cb0fc9e77c000191a5d4/t_776d7a5bcfd34bd09024c7b9dfbb1d67_name_ORFG_Octos_WebMaster_20220224v/mobile.m3u8","width":640},{"bitrate":1200,"filesize":91835744,"height":480,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/Aaron_Scott/20220309/6228cb0fc9e77c000191a5d4/t_776d7a5bcfd34bd09024c7b9dfbb1d67_name_ORFG_Octos_WebMaster_20220224v/master.m3u8","width":854},{"bitrate":4500,"filesize":307308560,"height":1080,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/Aaron_Scott/20220309/6228cb0fc9e77c000191a5d4/t_776d7a5bcfd34bd09024c7b9dfbb1d67_name_ORFG_Octos_WebMaster_20220224v/hd.m3u8","width":1920},{"bitrate":5400,"filesize":355463256,"height":1080,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/Aaron_Scott/20220309/6228cb0fc9e77c000191a5d4/t_776d7a5bcfd34bd09024c7b9dfbb1d67_name_ORFG_Octos_WebMaster_20220224v/hlsv4_master.m3u8","width":1920},{"bitrate":160,"filesize":18775363,"height":180,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/Aaron_Scott/20220309/6228cb0fc9e77c000191a5d4/t_776d7a5bcfd34bd09024c7b9dfbb1d67_name_ORFG_Octos_WebMaster_20220224v/file_320x180-160-v3.mp4","width":320},{"bitrate":600,"filesize":46808687,"height":360,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/Aaron_Scott/20220309/6228cb0fc9e77c000191a5d4/t_776d7a5bcfd34bd09024c7b9dfbb1d67_name_ORFG_Octos_WebMaster_20220224v/file_640x360-600-v3.mp4","width":640},{"bitrate":1200,"filesize":85077628,"height":480,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/Aaron_Scott/20220309/6228cb0fc9e77c000191a5d4/t_776d7a5bcfd34bd09024c7b9dfbb1d67_name_ORFG_Octos_WebMaster_20220224v/file_854x480-1200-v3_1.mp4","width":854},{"bitrate":2000,"filesize":136087097,"height":720,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/Aaron_Scott/20220309/6228cb0fc9e77c000191a5d4/t_776d7a5bcfd34bd09024c7b9dfbb1d67_name_ORFG_Octos_WebMaster_20220224v/file_1280x720-2000-v3_1.mp4","width":1280},{"bitrate":5400,"filesize":352860808,"height":1080,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/Aaron_Scott/20220309/6228cb0fc9e77c000191a5d4/t_776d7a5bcfd34bd09024c7b9dfbb1d67_name_ORFG_Octos_WebMaster_20220224v/file_1920x1080-5400-v4.mp4","width":1920}],"subheadlines":{"basic":"Octopuses are incredibly smart, yet the majority of their neurons exist in their arms and suckers, and not in their brain, making them as close to alien intelligence as we can find on Earth. It's like: what if our hands and fingers could think for themselves?\n\nWe visit the lab of scientist Dominic Sivitilli at Friday Harbor Laboratories, where he is trying to understand how the octopus's distributed intelligence works."},"subtitles":{"urls":[{"format":"SRT","url":"https://d2swrj9quyyg9l.cloudfront.net/2022/03/09/b630a844-1613-49e3-aad1-45060cb2f101/2_1646841045482/b630a844-1613-49e3-aad1-45060cb2f101_6227f7964cedfd00011c429e.srt"},{"format":"DFXP","url":"https://d2swrj9quyyg9l.cloudfront.net/2022/03/09/b630a844-1613-49e3-aad1-45060cb2f101/2_1646841049387/b630a844-1613-49e3-aad1-45060cb2f101_6227f7964cedfd00011c429e.dfxp"},{"format":"RAW_TEXT","url":"https://d2swrj9quyyg9l.cloudfront.net/2022/03/09/b630a844-1613-49e3-aad1-45060cb2f101/2_1646841049426/b630a844-1613-49e3-aad1-45060cb2f101_6227f7964cedfd00011c429e.txt"},{"format":"WEB_VTT","url":"https://d2swrj9quyyg9l.cloudfront.net/2022/03/09/b630a844-1613-49e3-aad1-45060cb2f101/2_1646841049791/b630a844-1613-49e3-aad1-45060cb2f101_6227f7964cedfd00011c429e.vtt"},{"format":"WEB_VTT_PLAYLIST","url":"https://d2swrj9quyyg9l.cloudfront.net/2022/03/09/b630a844-1613-49e3-aad1-45060cb2f101/2_1646841058233/b630a844-1613-49e3-aad1-45060cb2f101_6227f7964cedfd00011c429e.m3u8"}]},"type":"video"}},"subheadlines":{"basic":"Octopuses are incredibly smart, yet the majority of their neurons exist in their arms and suckers — not in their brain. That makes them as close to alien intelligence as scientists can find on Earth. "},"type":"story","website_url":"/article/2022/03/29/want-to-study-how-aliens-might-think-look-to-the-octopus/"},"expires":1744001792439,"lastModified":1744001672033},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.opb.org/article/2025/03/26/trump-administration-halts-deliveries-oregon-food-bank/\"}":{"data":{"_id":"CBSIHV2MARHMHEASQBXLT2IV7U","content_elements":[],"description":{"basic":"The Trump administration has paused millions of dollars of deliveries to food banks across the nation. The cuts come as food banks in Oregon are reporting historic levels of need."},"first_publish_date":"2025-03-27T01:26:34.24Z","headlines":{"basic":"Trump administration halts millions of dollars in deliveries to Oregon food banks "},"label":{"kicker":{"display":true,"text":"Food","url":"https://www.opb.org/tag/food/"}},"last_updated_date":"2025-03-27T01:26:34.350Z","promo_items":{"basic":{"caption":"In this provided image, staff use a forklift in the Oregon Food Bank warehouse in Northeast Portland in 2024.","credits":{"affiliation":[],"by":[{"name":"Courtesy of the Oregon Food Bank","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/N2F3G3W66VD5NGHDM5NG75VNV4.JPG?auth=987f5d5dc1d225ca699972773ccbf832bd96b99441b336a142be042208404249&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/N2F3G3W66VD5NGHDM5NG75VNV4.JPG?auth=987f5d5dc1d225ca699972773ccbf832bd96b99441b336a142be042208404249&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/N2F3G3W66VD5NGHDM5NG75VNV4.JPG?auth=987f5d5dc1d225ca699972773ccbf832bd96b99441b336a142be042208404249&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/N2F3G3W66VD5NGHDM5NG75VNV4.JPG?auth=987f5d5dc1d225ca699972773ccbf832bd96b99441b336a142be042208404249&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/N2F3G3W66VD5NGHDM5NG75VNV4.JPG?auth=987f5d5dc1d225ca699972773ccbf832bd96b99441b336a142be042208404249&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/N2F3G3W66VD5NGHDM5NG75VNV4.JPG","width":1440}},"subheadlines":{"basic":"Oregon food banks face sharp cuts in federal food deliveries, as need for food assistance rises"},"type":"story","website_url":"/article/2025/03/26/trump-administration-halts-deliveries-oregon-food-bank/"},"expires":1744001792134,"lastModified":1744001672013},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.opb.org/article/2025/04/04/art-exhibit-commemorate-50-fifty-years-vietnamese-culture-oregon-jeffrey-allen-van-le-quang-vinh/\"}":{"data":{"_id":"NMGPNCW77JFMZFAK2G2EWVS7MQ","content_elements":[],"description":{"basic":"April 30, 2025 will mark the 50th anniversary of the Fall of Saigon, and for Van Le and Allen Luong, it’s the perfect time to acknowledge an important moment for the Vietnamese community, and also looking forward to a brighter future. "},"first_publish_date":"2025-04-04T13:00:01Z","headlines":{"basic":"New art exhibits commemorate 50 years of Vietnamese culture in Oregon "},"label":{"kicker":{"display":true,"text":"Oregon Art Beat","url":"https://www.opb.org/show/oregonartbeat/"}},"last_updated_date":"2025-04-04T13:00:05.695Z","promo_items":{"basic":{"caption":"A very small section of a large painting done by Van Le's late father, Le Quang Vinh, taken on March 27, 2025. Le and her uncle Allen Luong are coordinating a series of exhibits that will showcase her father's paintings. The first event will be on April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Steven Tonthat ","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/2ESBRN4VOJGDBE2E6GZQONAZF4.jpg?auth=ef5851bb7a0c7230f74500f2e3179d2bb8b66d448eae1ab7bd9797a80cf9edbe&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/2ESBRN4VOJGDBE2E6GZQONAZF4.jpg?auth=ef5851bb7a0c7230f74500f2e3179d2bb8b66d448eae1ab7bd9797a80cf9edbe&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/2ESBRN4VOJGDBE2E6GZQONAZF4.jpg?auth=ef5851bb7a0c7230f74500f2e3179d2bb8b66d448eae1ab7bd9797a80cf9edbe&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/2ESBRN4VOJGDBE2E6GZQONAZF4.jpg?auth=ef5851bb7a0c7230f74500f2e3179d2bb8b66d448eae1ab7bd9797a80cf9edbe&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/2ESBRN4VOJGDBE2E6GZQONAZF4.jpg?auth=ef5851bb7a0c7230f74500f2e3179d2bb8b66d448eae1ab7bd9797a80cf9edbe&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/2ESBRN4VOJGDBE2E6GZQONAZF4.jpg","width":1440}},"subheadlines":{"basic":""},"type":"story","website_url":"/article/2025/04/04/art-exhibit-commemorate-50-fifty-years-vietnamese-culture-oregon-jeffrey-allen-van-le-quang-vinh/"},"expires":1744001792134,"lastModified":1744001672031},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.opb.org/article/2025/04/04/recipe-butter-miso-radishes-greens-spring/\"}":{"data":{"_id":"BBEBTDF6JBERDA3TGVOLZKDSXI","content_elements":[],"description":{"basic":"The French taught us that butter is lovely on a radish, and the Japanese have enjoyed the nuance of a cooked radish for ages — so why not combine these concepts?"},"first_publish_date":"2025-04-04T13:00:00Z","headlines":{"basic":"Recipe: Buttery miso-glazed radishes with their greens"},"label":{"kicker":{"display":true,"text":"Superabundant","url":"https://www.opb.org/show/superabundant"},"series":{"display":true,"text":"Superabundant","url":""}},"last_updated_date":"2025-04-04T13:00:05.544Z","promo_items":{"basic":{"caption":"Butter, miso and radishes are an unexpectedly delicious flavor combo","credits":{"affiliation":[{"name":"OPB"}],"by":[{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/98ed0379-9800-418c-8cbe-74049a5fac35.png"},"name":"Heather Arndt Anderson","slug":"heather-arndt-anderson","type":"author","url":"/author/heather-arndt-anderson"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/LTRYY4UD2BGPLNRBXZJQKOEC24.png?auth=8ace4788f279c72affd77dc76230b473961e61b7ad1e1e2cfb68cfe4072951dc&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/LTRYY4UD2BGPLNRBXZJQKOEC24.png?auth=8ace4788f279c72affd77dc76230b473961e61b7ad1e1e2cfb68cfe4072951dc&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/LTRYY4UD2BGPLNRBXZJQKOEC24.png?auth=8ace4788f279c72affd77dc76230b473961e61b7ad1e1e2cfb68cfe4072951dc&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/LTRYY4UD2BGPLNRBXZJQKOEC24.png?auth=8ace4788f279c72affd77dc76230b473961e61b7ad1e1e2cfb68cfe4072951dc&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/LTRYY4UD2BGPLNRBXZJQKOEC24.png?auth=8ace4788f279c72affd77dc76230b473961e61b7ad1e1e2cfb68cfe4072951dc&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/LTRYY4UD2BGPLNRBXZJQKOEC24.png","width":1440},"hero":{"caption":"Butter, miso and radishes are an unexpectedly delicious flavor combo","credits":{"affiliation":[{"name":"OPB"}],"by":[{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/98ed0379-9800-418c-8cbe-74049a5fac35.png"},"name":"Heather Arndt Anderson","slug":"heather-arndt-anderson","type":"author","url":"/author/heather-arndt-anderson"}]},"height":691,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/74KXUF6XUNDAFOXNLJNRHAXAXE.png?auth=5a8aff1f335ea03206cde948350372393d36a25d6edae45e16322be502c74119&width=1440&height=691&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/74KXUF6XUNDAFOXNLJNRHAXAXE.png?auth=5a8aff1f335ea03206cde948350372393d36a25d6edae45e16322be502c74119&width=150&height=72&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/74KXUF6XUNDAFOXNLJNRHAXAXE.png?auth=5a8aff1f335ea03206cde948350372393d36a25d6edae45e16322be502c74119&width=1023&height=491&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/74KXUF6XUNDAFOXNLJNRHAXAXE.png?auth=5a8aff1f335ea03206cde948350372393d36a25d6edae45e16322be502c74119&width=1200&height=576&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/74KXUF6XUNDAFOXNLJNRHAXAXE.png?auth=5a8aff1f335ea03206cde948350372393d36a25d6edae45e16322be502c74119&width=767&height=368&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/74KXUF6XUNDAFOXNLJNRHAXAXE.png","width":1440}},"subheadlines":{"basic":"Butter and miso: Two great tastes that taste great together\n"},"type":"story","website_url":"/article/2025/04/04/recipe-butter-miso-radishes-greens-spring/"},"expires":1744001792148,"lastModified":1744001672047},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.opb.org/article/2025/04/04/michael-hurley-a-godfather-of-underground-folk-has-died/\"}":{"data":{"_id":"OCWNMZNETNNDVIAJNTGXMNTMIY","content_elements":[],"description":{"basic":"Sometimes called the father of freak-folk, the 83-year-old singer-songwriter lived, worked and died on his own terms."},"first_publish_date":"2025-04-05T01:23:28.405Z","headlines":{"basic":"Remembering Michael Hurley, a godfather of folk music's underground"},"last_updated_date":"2025-04-05T01:23:28.519Z","promo_items":{"basic":{"alt_text":"Thought he spent time around the folk revival scene of the 1960s, Michael Hurley quickly cut a unique path for his career, with an extremely independent approach to recording and releasing music.","caption":"Thought he spent time around the folk revival scene of the 1960s, Michael Hurley quickly cut a unique path for his career, with an extremely independent approach to recording and releasing music.","credits":{"by":[{"name":"Courtesy of Sarah Taft","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WB7NEGAXPZPC7N75ZDKDLF6TYI.jpg?auth=fd8ec0d81271f573360d7f80e2f5c90f84835b9dad65e35ab0cee012fb9feb5c&width=1440&height=810&focal=1623%2C1718","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WB7NEGAXPZPC7N75ZDKDLF6TYI.jpg?auth=fd8ec0d81271f573360d7f80e2f5c90f84835b9dad65e35ab0cee012fb9feb5c&width=150&height=84&focal=1623%2C1718","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WB7NEGAXPZPC7N75ZDKDLF6TYI.jpg?auth=fd8ec0d81271f573360d7f80e2f5c90f84835b9dad65e35ab0cee012fb9feb5c&width=1023&height=575&focal=1623%2C1718","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WB7NEGAXPZPC7N75ZDKDLF6TYI.jpg?auth=fd8ec0d81271f573360d7f80e2f5c90f84835b9dad65e35ab0cee012fb9feb5c&width=1200&height=675&focal=1623%2C1718","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WB7NEGAXPZPC7N75ZDKDLF6TYI.jpg?auth=fd8ec0d81271f573360d7f80e2f5c90f84835b9dad65e35ab0cee012fb9feb5c&width=767&height=431&focal=1623%2C1718"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/WB7NEGAXPZPC7N75ZDKDLF6TYI.jpg","width":1440}},"type":"story","website_url":"/article/2025/04/04/michael-hurley-a-godfather-of-underground-folk-has-died/"},"expires":1744001792132,"lastModified":1744001672034}},"content-feed":{"{\"excludeTags\":\"\",\"includeContentTypes\":\"story\",\"includeTags\":\"\",\"offset\":0,\"size\":4}":{"data":{"_id":"f801186e4faf8b864207e5a99c6f4517856ee3604b43d45113e7870e711480f5","content_elements":[{"_id":"YO3GGSAG4VKBZHZLNXIZLA2VIU","canonical_url":"/article/2025/04/06/israeli-strikes-on-gaza-kill-at-least-32-mostly-women-and-children/","canonical_website":"opb","credits":{"by":[{"name":"The Associated Press","type":"author"}]},"description":{"basic":"Israeli strikes on Gaza killed at least 32 people, including over a dozen women and children, local health officials said Sunday, as Israeli Prime Minister Netanyahu headed to meet President Trump."},"display_date":"2025-04-06T18:21:46.896Z","first_publish_date":"2025-04-06T18:21:46.896Z","headlines":{"basic":"Israeli strikes on Gaza kill at least 32, mostly women and children"},"last_updated_date":"2025-04-06T18:21:47.07Z","promo_items":{"basic":{"alt_text":"A man passes by the destroyed house of journalist Islam Meqdad, where she was killed along with her son and five other family members in an Israeli army strike in Khan Younis, southern Gaza Strip, Sunday, April 6, 2025.","caption":"A man passes by the destroyed house of journalist Islam Meqdad, where she was killed along with her son and five other family members in an Israeli army strike in Khan Younis, southern Gaza Strip, Sunday, April 6, 2025.","credits":{"affiliation":[{"name":"AP"}],"by":[{"name":"Abdel Kareem Hana","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/S3JFP7HBYFLM5JCBBS5PI4STQA.jpg?auth=83f2bfa3ecbc1066237ade331d019f246e2e95b90bba39fd90f5d92c8be74f7d&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/S3JFP7HBYFLM5JCBBS5PI4STQA.jpg?auth=83f2bfa3ecbc1066237ade331d019f246e2e95b90bba39fd90f5d92c8be74f7d&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/S3JFP7HBYFLM5JCBBS5PI4STQA.jpg?auth=83f2bfa3ecbc1066237ade331d019f246e2e95b90bba39fd90f5d92c8be74f7d&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/S3JFP7HBYFLM5JCBBS5PI4STQA.jpg?auth=83f2bfa3ecbc1066237ade331d019f246e2e95b90bba39fd90f5d92c8be74f7d&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/S3JFP7HBYFLM5JCBBS5PI4STQA.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"news","text":"News"},{"slug":"world","text":"World"}]},"type":"story","website_url":"/article/2025/04/06/israeli-strikes-on-gaza-kill-at-least-32-mostly-women-and-children/"},{"_id":"ILWX6UMURFFLZEQEGKQRWXM7XY","canonical_url":"/article/2025/04/06/funding-cuts-southern-oregon-forests/","canonical_website":"opb","credits":{"by":[{"name":"Juliet Grable","org":"Jefferson Public Radio","type":"author"}]},"description":{"basic":"Staffing uncertainties and delayed reimbursements threaten to gut the U.S. Forest Service’s capacity to care for the 1.8 million-acre Rogue River-Siskiyou National Forest."},"display_date":"2025-04-06T17:39:27.444Z","first_publish_date":"2025-04-06T17:39:27.444Z","headlines":{"basic":"Funding cuts and firings strain Southern Oregon’s national forests"},"label":{},"last_updated_date":"2025-04-06T17:39:27.567Z","promo_items":{"basic":{"caption":"The Siskiyou Mountain Club hosts monthly stewardship days to maintain the region’s wilderness trails.","credits":{"affiliation":[{"name":"JPR"}],"by":[{"name":"Juliet Grable","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/3HQLLI7YCJG5JLSLRKUT44SJ3Q.JPG?auth=8e35be7395bc11d146b3015b842dbf1b1956574bddc4dff4c4f2e2ba9fc3a4db&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/3HQLLI7YCJG5JLSLRKUT44SJ3Q.JPG?auth=8e35be7395bc11d146b3015b842dbf1b1956574bddc4dff4c4f2e2ba9fc3a4db&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/3HQLLI7YCJG5JLSLRKUT44SJ3Q.JPG?auth=8e35be7395bc11d146b3015b842dbf1b1956574bddc4dff4c4f2e2ba9fc3a4db&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/3HQLLI7YCJG5JLSLRKUT44SJ3Q.JPG?auth=8e35be7395bc11d146b3015b842dbf1b1956574bddc4dff4c4f2e2ba9fc3a4db&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/3HQLLI7YCJG5JLSLRKUT44SJ3Q.JPG","width":1440}},"subheadlines":{"basic":"Staffing uncertainties and delayed reimbursements threaten to gut the U.S. Forest Service’s capacity to care for the 1.8 million-acre Rogue River-Siskiyou National Forest."},"subtype":"standard","taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"southern-oregon","text":"Southern Oregon"},{"slug":"forest","text":"Forest"},{"slug":"u-s-forest-service","text":"U.S. Forest Service"}]},"type":"story","website_url":"/article/2025/04/06/funding-cuts-southern-oregon-forests/"},{"_id":"IHCOYOCBBFFWFCP3NGTGKN43AA","canonical_url":"/article/2025/04/06/pacific-crest-trail-federal-cuts/","canonical_website":"opb","credits":{"by":[{"name":"JULIE WATSON","org":"Associated Press","type":"author"}]},"description":{"basic":"Federal cuts and climate impacts are straining both the Pacific Crest and Appalachian Trails, leading to rougher terrain, delayed repairs and safety concerns for hikers across the West and East Coasts."},"display_date":"2025-04-06T16:11:07.903Z","first_publish_date":"2025-04-06T16:11:07.903Z","headlines":{"basic":"Hikers face tougher terrain through Oregon as federal cuts hit Pacific Crest Trail"},"label":{"kicker":{"display":true,"text":"Federal funding","url":"https://www.opb.org/politics"}},"last_updated_date":"2025-04-06T16:14:05.666Z","promo_items":{"basic":{"caption":"Eric Kipperman, one of the Pacific Crest Trail Association's experienced guides known as \"crest runners\", right, takes a picture of hikers Joshua Suran, center, and Laura Flocchini as they get ready to begin their hike at the southern terminus of the Pacific Crest Trail near the border with Mexico, Monday, March 24, 2025, near Campo, Calif.","credits":{"affiliation":[{"name":"AP"}],"by":[{"name":"Gregory Bull","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/7CAYNEOXU5EAVJVECD7R4CM4TM.jpg?auth=30de36e31e030ef131ebca566d42e7b939be5eba56ba446e6d2c3df1388cece2&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/7CAYNEOXU5EAVJVECD7R4CM4TM.jpg?auth=30de36e31e030ef131ebca566d42e7b939be5eba56ba446e6d2c3df1388cece2&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/7CAYNEOXU5EAVJVECD7R4CM4TM.jpg?auth=30de36e31e030ef131ebca566d42e7b939be5eba56ba446e6d2c3df1388cece2&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/7CAYNEOXU5EAVJVECD7R4CM4TM.jpg?auth=30de36e31e030ef131ebca566d42e7b939be5eba56ba446e6d2c3df1388cece2&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/7CAYNEOXU5EAVJVECD7R4CM4TM.jpg","width":1440}},"subheadlines":{"basic":"Federal cuts and climate impacts are straining both the Pacific Crest and Appalachian Trails, leading to rougher terrain, delayed repairs and safety concerns for hikers across the West and East Coasts."},"subtype":"Wire","taxonomy":{"primary_section":{"name":"AP"},"sections":[{"_id":"/wires/ap","additional_properties":{"original":{"site":{"site_url":null}}},"name":"AP","path":"/wires/ap","type":"section"},{"_id":"/wires","additional_properties":{"original":{"site":{"site_url":null}}},"name":"wires","path":"/wires","type":"section"}],"tags":[{"slug":"pacific-crest-trail","text":"Pacific Crest Trail"},{"slug":"oregon","text":"Oregon"},{"slug":"california","text":"California"},{"slug":"washington","text":"Washington"},{"slug":"hiking","text":"Hiking"}]},"type":"story","website_url":"/article/2025/04/06/pacific-crest-trail-federal-cuts/"},{"_id":"YVCWU2HBTBJBPG4FLSBFJIRVUY","canonical_url":"/article/2025/04/06/jaguar-land-rover-automotive-pauses-shipments-to-us/","canonical_website":"opb","credits":{"by":[{"name":"The Associated Press","type":"author"}]},"description":{"basic":"Jaguar Land Rover Automotive said it was pausing U.S. shipments due to Trump's tariffs as it works on mid- to long-term plans to adapt to the changing trade landscape."},"display_date":"2025-04-06T15:28:59.078Z","first_publish_date":"2025-04-06T15:28:59.078Z","headlines":{"basic":"Jaguar and Land Rover maker pauses shipments to US as it develops post-tariff plans"},"label":{"kicker":{"display":true,"text":"Economy","url":"https://www.opb.org/tag/economy/"}},"last_updated_date":"2025-04-06T15:28:59.172Z","promo_items":{"basic":{"alt_text":"FILE - An unsold 2021 F-Type coupe sits at a Jaguar dealership in this photograph taken Sunday, May 2, 2021, in Littleton, Colo.","caption":"FILE - An unsold 2021 F-Type coupe sits at a Jaguar dealership in this photograph taken Sunday, May 2, 2021, in Littleton, Colo.","credits":{"by":[{"name":"David Zalubowski","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/T3IIHPQTHBJNRAAWLVK33FQCQI.jpg?auth=7b24c6b117b7b4c2281f081d0dc76cb31fa6a719495e8c5be42d6385d111d1e9&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/T3IIHPQTHBJNRAAWLVK33FQCQI.jpg?auth=7b24c6b117b7b4c2281f081d0dc76cb31fa6a719495e8c5be42d6385d111d1e9&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/T3IIHPQTHBJNRAAWLVK33FQCQI.jpg?auth=7b24c6b117b7b4c2281f081d0dc76cb31fa6a719495e8c5be42d6385d111d1e9&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/T3IIHPQTHBJNRAAWLVK33FQCQI.jpg?auth=7b24c6b117b7b4c2281f081d0dc76cb31fa6a719495e8c5be42d6385d111d1e9&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/T3IIHPQTHBJNRAAWLVK33FQCQI.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"europe","text":"Europe"},{"slug":"business","text":"Business"},{"slug":"news","text":"News"},{"slug":"world","text":"World"}]},"type":"story","website_url":"/article/2025/04/06/jaguar-land-rover-automotive-pauses-shipments-to-us/"}],"count":10000,"next":4},"expires":1744001792331,"lastModified":1744001672122}},"collections-story":{"{\"collectionId\":\"3DNXLLIM6VFUFIBKPD5747QDJE\",\"forceHero\":\"false\",\"from\":0}":{"data":{"_id":"3YMA7ZPYLBIJ5KHUCKUDA4W7EE","canonical_url":"/article/2025/04/06/vietnam-asks-trump-to-delay-implementation-of-tariffs-while-the-two-sides-negotiate/","canonical_website":"opb","content_elements":[],"credits":{"by":[{"name":"John Ruwitch","type":"author"}]},"description":{"basic":"Vietnam is actively seeking to negotiate a reduction in the high tariff rate imposed by the Trump Administration."},"display_date":"2025-04-06T15:19:02.065Z","headlines":{"basic":"Vietnam asks Trump to delay implementation of tariffs while the two sides negotiate"},"label":{"kicker":{"display":true,"text":"Foreign policy","url":"https://www.opb.org/politics"}},"promo_items":{"basic":{"alt_text":"Workers assemble electric cars at a Vinfast factory in Hai Phong, Vietnam, on Sept. 29, 2023. Vietnamese automaker VinFast just can’t sell enough cars, so it's hoping its tiniest and cheapest car yet — a roughly 10-foot-long mini-SUV priced at $9,200 and called the VF3 — will become Vietnam's “national car\" and win over consumers in Asian markets. (AP Photo/Hau Dinh)","caption":"Workers assemble electric cars at a Vinfast factory in Hai Phong, Vietnam, on Sept. 29, 2023.","credits":{"by":[{"name":"Hau Dinh","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JXRKLE5JLJJYDFSBQRWI6SG35M.jpg?auth=efaa8c80480a5e5b6b3d8675dc0fb90147ee5dde5d1f0c4dbb5ce6c030d15ea8&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JXRKLE5JLJJYDFSBQRWI6SG35M.jpg?auth=efaa8c80480a5e5b6b3d8675dc0fb90147ee5dde5d1f0c4dbb5ce6c030d15ea8&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JXRKLE5JLJJYDFSBQRWI6SG35M.jpg?auth=efaa8c80480a5e5b6b3d8675dc0fb90147ee5dde5d1f0c4dbb5ce6c030d15ea8&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JXRKLE5JLJJYDFSBQRWI6SG35M.jpg?auth=efaa8c80480a5e5b6b3d8675dc0fb90147ee5dde5d1f0c4dbb5ce6c030d15ea8&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JXRKLE5JLJJYDFSBQRWI6SG35M.jpg?auth=efaa8c80480a5e5b6b3d8675dc0fb90147ee5dde5d1f0c4dbb5ce6c030d15ea8&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/JXRKLE5JLJJYDFSBQRWI6SG35M.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"asia","text":"Asia"},{"slug":"world","text":"World"},{"slug":"news","text":"News"}]},"type":"story"},"expires":1744001792256,"lastModified":1744001672029},"{\"collectionId\":\"TRZN7AH53JESBCWZ6NC4TLBEP4\",\"forceHero\":\"false\",\"from\":0}":{"data":{"_id":"WUI4REV67RKXLMED77G7WXYBCA","canonical_url":"/article/2025/04/06/yemen-houthi-rebels-say-latest-us-strikes-killed-2-day-after-trump-posted-bomb-video/","canonical_website":"opb","content_elements":[],"credits":{"by":[{"name":"The Associated Press","type":"author"}]},"description":{"basic":"Suspected U.S. airstrikes killed at least two people in a stronghold of Yemen's Houthi rebels, the group said Sunday."},"display_date":"2025-04-06T15:20:16.621Z","headlines":{"basic":"Yemen Houthi rebels say latest US strikes killed 2, day after Trump posted bomb video"},"promo_items":{"basic":{"alt_text":"A Yemeni girl visits the graves of Houthis during Eid al-Fitr marking the end of the holy fasting month of Ramadan in Sanaa, Yemen, Sunday, March 30, 2025.","caption":"A Yemeni girl visits the graves of Houthis during Eid al-Fitr marking the end of the holy fasting month of Ramadan in Sanaa, Yemen, Sunday, March 30, 2025.","credits":{"affiliation":[{"name":"AP"}],"by":[{"name":"Osamah Abdulrahman","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/CJKJTFDJUBPCXEDG7REBWJ6234.jpg?auth=f4d9f378d9bc4c3b8b6ac55859a11324e5562302143dcd84b20bb84bb1e8d4e1&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/CJKJTFDJUBPCXEDG7REBWJ6234.jpg?auth=f4d9f378d9bc4c3b8b6ac55859a11324e5562302143dcd84b20bb84bb1e8d4e1&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/CJKJTFDJUBPCXEDG7REBWJ6234.jpg?auth=f4d9f378d9bc4c3b8b6ac55859a11324e5562302143dcd84b20bb84bb1e8d4e1&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/CJKJTFDJUBPCXEDG7REBWJ6234.jpg?auth=f4d9f378d9bc4c3b8b6ac55859a11324e5562302143dcd84b20bb84bb1e8d4e1&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/CJKJTFDJUBPCXEDG7REBWJ6234.jpg?auth=f4d9f378d9bc4c3b8b6ac55859a11324e5562302143dcd84b20bb84bb1e8d4e1&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/CJKJTFDJUBPCXEDG7REBWJ6234.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"world","text":"World"},{"slug":"news","text":"News"}]},"type":"story"},"expires":1744001792230,"lastModified":1744001672056}},"content-feed-by-tag":{"{\"fromIndex\":0,\"size\":8,\"slug\":\"politics\",\"sort\":\"first_publish_date:desc\"}":{"data":{"_id":"2d54dd2ab72d54f5fba55b2d932c55c51dcaf247ca68581b78eb8b257c735f5c","content_elements":[{"_id":"LBZ422R6BJOZPNUHCBGEUE6TLA","canonical_url":"/article/2025/04/06/trump-paused-a-program-to-upgrade-aging-affordable-housing/","canonical_website":"opb","credits":{"by":[{"name":"Jennifer Ludden","type":"author"}]},"description":{"basic":"The Trump administration froze funding for a program to upgrade aging low-income housing and make it energy efficient. The move threatens hundreds of projects around the country."},"display_date":"2025-04-06T15:13:54.595Z","first_publish_date":"2025-04-06T15:13:54.595Z","headlines":{"basic":"For these seniors, DOGE's affordable housing pause means suffering longer without AC"},"label":{"kicker":{"display":true,"text":"Housing","url":"https://www.opb.org/politics"}},"last_updated_date":"2025-04-06T15:13:54.727Z","promo_items":{"basic":{"alt_text":"Linda Morgan on March 28 in her sister’s apartment at Trinity Woods senior living in Emporia, Va., where they both live. ","caption":"Linda Morgan on March 28 in her sister's apartment at Trinity Woods senior living in Emporia, Va., where they both live. The building's decades-old central air conditioning system died three years ago. \"It's terribly hot,\" said Morgan, who uses six fans and portable coolers to stay comfortable during long summers.","credits":{"by":[{"name":"Carlos Bernate","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/YMPCMQRTD5O6HHFGLH6R6OAM44.jpg?auth=4229742221a5ff4266878dd9daab4df592c55c51c1549cb2c3ac1acef5ea9e49&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/YMPCMQRTD5O6HHFGLH6R6OAM44.jpg?auth=4229742221a5ff4266878dd9daab4df592c55c51c1549cb2c3ac1acef5ea9e49&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/YMPCMQRTD5O6HHFGLH6R6OAM44.jpg?auth=4229742221a5ff4266878dd9daab4df592c55c51c1549cb2c3ac1acef5ea9e49&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/YMPCMQRTD5O6HHFGLH6R6OAM44.jpg?auth=4229742221a5ff4266878dd9daab4df592c55c51c1549cb2c3ac1acef5ea9e49&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/YMPCMQRTD5O6HHFGLH6R6OAM44.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"national","text":"National"},{"slug":"politics","text":"Politics"},{"slug":"news","text":"News"}]},"type":"story","website_url":"/article/2025/04/06/trump-paused-a-program-to-upgrade-aging-affordable-housing/"},{"_id":"5KE4BO7F7RLABLTQAD7BIGVKUM","canonical_url":"/article/2025/04/05/senate-republicans-share-budget-plan-to-promote-trump-s-domestic-agenda/","canonical_website":"opb","credits":{"by":[{"name":"Claudia Grisales","type":"author"}]},"description":{"basic":"If passed, the package could become a hallmark of President Trump's second term. But a number of obstacles remain ahead. "},"display_date":"2025-04-05T21:06:09.565Z","first_publish_date":"2025-04-05T21:06:09.565Z","headlines":{"basic":"Senate Republicans move forward with their budget plan to promote Trump's agenda"},"label":{"kicker":{"display":true,"text":"Budget","url":"https://www.opb.org/politics"}},"last_updated_date":"2025-04-05T21:06:09.816Z","promo_items":{"audio":{"embed":{"config":{"origin":"npr"},"url":"https://ondemand.npr.org/anon.npr-mp3/npr/wesat/2025/04/20250405_wesat_senate_republicans_moves_forward_with_a_partisan_budget_key_to_president_trump_s_domestic_agenda.mp3?size=3910053&d=244332&e=g-s1-57850"}},"basic":{"alt_text":"Senate Majority Leader John Thune, R-S.D., speaks to reporters at the U.S. Capitol on Tuesday. Senate Republicans have unveiled a budget blueprint they hope to pass as they look to enact key elements of President Trump's domestic policy agenda.","caption":"Senate Majority Leader John Thune, R-S.D., speaks to reporters at the U.S. Capitol on Tuesday. Senate Republicans have unveiled a budget blueprint they hope to pass as they look to enact key elements of President Trump's domestic policy agenda.","credits":{"by":[{"name":"Kayla Bartkowski","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QSHFAPKHGZKTXIRC5ICIPRWOYU.jpg?auth=dbbeeedfe9cf2919a50f5f4052e29d020a3ba5c14e16e63afc634f449c135abf&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QSHFAPKHGZKTXIRC5ICIPRWOYU.jpg?auth=dbbeeedfe9cf2919a50f5f4052e29d020a3ba5c14e16e63afc634f449c135abf&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QSHFAPKHGZKTXIRC5ICIPRWOYU.jpg?auth=dbbeeedfe9cf2919a50f5f4052e29d020a3ba5c14e16e63afc634f449c135abf&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QSHFAPKHGZKTXIRC5ICIPRWOYU.jpg?auth=dbbeeedfe9cf2919a50f5f4052e29d020a3ba5c14e16e63afc634f449c135abf&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/QSHFAPKHGZKTXIRC5ICIPRWOYU.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"politics","text":"Politics"},{"slug":"news","text":"News"},{"slug":"home-page-top-stories","text":"Home Page Top Stories"}]},"type":"story","website_url":"/article/2025/04/05/senate-republicans-share-budget-plan-to-promote-trump-s-domestic-agenda/"},{"_id":"VRAGYKQDQFJKRMUPXWMRATPDEM","canonical_url":"/article/2025/04/05/chaotic-hhs-layoffs-leave-employees-at-cdc-fda-and-nih-reeling/","canonical_website":"opb","credits":{"by":[{"name":"Rob Stein","type":"author"},{"name":"Yuki Noguchi","type":"author"},{"name":"Sydney Lupkin","type":"author"},{"name":"Chiara Eisner","type":"author"},{"name":"Selena Simmons-Duffin","type":"author"},{"name":"Carmel Wroth","type":"author"}]},"description":{"basic":"Health agency staffers describe a week of chaos and continued uncertainty about who still has a job and how the work will get done. To many it's the opposite of \"government efficiency.\""},"display_date":"2025-04-05T15:06:06.35Z","first_publish_date":"2025-04-05T15:06:06.35Z","headlines":{"basic":"'Your RIF notice is not cancelled.' Inside a chaotic week of massive layoffs at HHS"},"label":{"kicker":{"display":true,"text":"Federal workforce","url":"https://www.opb.org/politics"}},"last_updated_date":"2025-04-05T15:06:06.479Z","promo_items":{"basic":{"alt_text":"A worker wheels out the belongings of a fellow employee who was dismissed, outside of the Mary E. Switzer Federal Office Building, which houses offices for the US Department of Health and Human Services in Washington, DC, on Tuesday.","caption":"A worker wheels out the belongings of a fellow employee who was dismissed, outside of the Mary E. Switzer Federal Office Building, which houses HHS offices in Washington, D.C., on Tuesday.","credits":{"by":[{"name":"Al Drago/Bloomberg","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QDNTC3R53ZLWZB677EYKH5ROMQ.jpg?auth=db41494f017723e66dfe600e46904d93c1dacab560bd0997d2e8a64bd305b23c&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QDNTC3R53ZLWZB677EYKH5ROMQ.jpg?auth=db41494f017723e66dfe600e46904d93c1dacab560bd0997d2e8a64bd305b23c&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QDNTC3R53ZLWZB677EYKH5ROMQ.jpg?auth=db41494f017723e66dfe600e46904d93c1dacab560bd0997d2e8a64bd305b23c&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QDNTC3R53ZLWZB677EYKH5ROMQ.jpg?auth=db41494f017723e66dfe600e46904d93c1dacab560bd0997d2e8a64bd305b23c&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/QDNTC3R53ZLWZB677EYKH5ROMQ.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"health","text":"Health"},{"slug":"news","text":"News"},{"slug":"politics","text":"Politics"},{"slug":"home-page-top-stories","text":"Home Page Top Stories"}]},"type":"story","website_url":"/article/2025/04/05/chaotic-hhs-layoffs-leave-employees-at-cdc-fda-and-nih-reeling/"},{"_id":"MVFKKUWOA5JWHFVKBZDV2UWCXY","canonical_url":"/article/2025/04/05/senate-gop-passes-budget-plan-setting-up-a-critical-next-phase-for-trump-agenda/","canonical_website":"opb","credits":{"by":[{"name":"Claudia Grisales","type":"author"}]},"description":{"basic":"The vote brings Republicans a step closer to finalizing a sweeping plan to address defense, energy, immigration and tax policy. But a number of potential wildcards must still be sorted out."},"display_date":"2025-04-05T14:46:49.064Z","first_publish_date":"2025-04-05T14:46:49.064Z","headlines":{"basic":"Senate GOP passes budget plan, setting up a critical next phase for Trump agenda"},"label":{"kicker":{"display":true,"text":"Budget","url":"https://www.opb.org/politics"}},"last_updated_date":"2025-04-05T14:46:49.174Z","promo_items":{"basic":{"alt_text":"Senate Republicans have approved a new framework for a sweeping multi-trillion dollar plan to address defense, energy, immigration and tax policy. Above, the U.S. Capitol is seen on March 31.","caption":"Senate Republicans have approved a new framework for a sweeping multi-trillion dollar plan to address defense, energy, immigration and tax policy. Above, the U.S. Capitol is seen on March 31.","credits":{"affiliation":[{"name":"Middle East Images/AFP via Getty"}],"by":[{"name":"Bryan Dozier","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/6QVVPXQGLZPP7G2DCH75INNUYQ.jpg?auth=53e4a2291b10cb612d7d763d539f7889dca89a7c5abd28e0154349ba98f949e9&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/6QVVPXQGLZPP7G2DCH75INNUYQ.jpg?auth=53e4a2291b10cb612d7d763d539f7889dca89a7c5abd28e0154349ba98f949e9&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/6QVVPXQGLZPP7G2DCH75INNUYQ.jpg?auth=53e4a2291b10cb612d7d763d539f7889dca89a7c5abd28e0154349ba98f949e9&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/6QVVPXQGLZPP7G2DCH75INNUYQ.jpg?auth=53e4a2291b10cb612d7d763d539f7889dca89a7c5abd28e0154349ba98f949e9&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/6QVVPXQGLZPP7G2DCH75INNUYQ.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"politics","text":"Politics"},{"slug":"news","text":"News"}]},"type":"story","website_url":"/article/2025/04/05/senate-gop-passes-budget-plan-setting-up-a-critical-next-phase-for-trump-agenda/"},{"_id":"B5W5ERTC6ZJBBMXFCOABQKWGW4","canonical_url":"/article/2025/04/04/hegseth-s-use-of-signal-to-be-investigated-by-pentagon-inspector-general/","canonical_website":"opb","credits":{"by":[{"name":"NPR Washington Desk","type":"author"}]},"description":{"basic":"The announcement comes after lawmakers voiced concern about whether top national security officials discussed classified information on Signal about a military strike against Houthi rebels in Yemen."},"display_date":"2025-04-04T20:17:41.301Z","first_publish_date":"2025-04-04T20:17:41.301Z","headlines":{"basic":"A Pentagon inspector general announces investigation into Hegseth's use of Signal"},"label":{"kicker":{"display":true,"text":"Politics","url":"https://www.opb.org/politics/"}},"last_updated_date":"2025-04-04T20:17:41.41Z","promo_items":{"basic":{"alt_text":"Secretary of Defense Pete Hegseth attends a tariff announcement in the Rose Garden on Wednesday. A Defense Department inspector general has announced he will review Hegseth's use of the Signal messaging app to discuss a military attack on Yemen.","caption":"Secretary of Defense Pete Hegseth attends a tariff announcement in the Rose Garden on Wednesday. A Defense Department inspector general has announced he will review Hegseth's use of the Signal messaging app to discuss a military attack on Yemen.","credits":{"by":[{"name":"Brendan Smialowski","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/XGAHND56YNKBTBBFNVIT5EV36I.jpg?auth=331ed134f86b3d9b1f1e6f23a436e39493acc076c4f4d55d1e25862dc4ee4687&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/XGAHND56YNKBTBBFNVIT5EV36I.jpg?auth=331ed134f86b3d9b1f1e6f23a436e39493acc076c4f4d55d1e25862dc4ee4687&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/XGAHND56YNKBTBBFNVIT5EV36I.jpg?auth=331ed134f86b3d9b1f1e6f23a436e39493acc076c4f4d55d1e25862dc4ee4687&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/XGAHND56YNKBTBBFNVIT5EV36I.jpg?auth=331ed134f86b3d9b1f1e6f23a436e39493acc076c4f4d55d1e25862dc4ee4687&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/XGAHND56YNKBTBBFNVIT5EV36I.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"politics","text":"Politics"},{"slug":"news","text":"News"},{"slug":"national-security","text":"National Security"},{"slug":"national","text":"National"},{"slug":"home-page-top-stories","text":"Home Page Top Stories"}]},"type":"story","website_url":"/article/2025/04/04/hegseth-s-use-of-signal-to-be-investigated-by-pentagon-inspector-general/"},{"_id":"NKJMCXQ4LRKFBC2YTM34S6UCVQ","canonical_url":"/article/2025/04/04/he-s-a-decorated-war-vet-but-a-convicted-criminal-ice-wants-to-deport-him/","canonical_website":"opb","credits":{"by":[{"name":"Tom Bowman","type":"author"},{"name":"Quil Lawrence","type":"author"}]},"description":{"basic":"Jose Barco's story is one of battlefield trauma, bureaucratic bumbling and eventually, a serious crime."},"display_date":"2025-04-04T20:14:22.802Z","first_publish_date":"2025-04-04T20:14:22.802Z","headlines":{"basic":"He's a decorated war vet but a convicted criminal. ICE wants to deport him"},"label":{"kicker":{"display":true,"text":"Immigration","url":"https://www.opb.org/politics"}},"last_updated_date":"2025-04-04T20:14:22.955Z","promo_items":{"basic":{"alt_text":"Jose Barco in Iraq in 2007.","caption":"Jose Barco in Iraq in 2007.","credits":{"by":[{"name":"Tia Barco","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/4WH25NR2JRP53HI3WZARNPSD64.jpg?auth=13228588ed2a9897b02f1ff40865c15356680db79d657271fb4680bb733fd830&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/4WH25NR2JRP53HI3WZARNPSD64.jpg?auth=13228588ed2a9897b02f1ff40865c15356680db79d657271fb4680bb733fd830&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/4WH25NR2JRP53HI3WZARNPSD64.jpg?auth=13228588ed2a9897b02f1ff40865c15356680db79d657271fb4680bb733fd830&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/4WH25NR2JRP53HI3WZARNPSD64.jpg?auth=13228588ed2a9897b02f1ff40865c15356680db79d657271fb4680bb733fd830&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/4WH25NR2JRP53HI3WZARNPSD64.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"national","text":"National"},{"slug":"politics","text":"Politics"},{"slug":"news","text":"News"}]},"type":"story","website_url":"/article/2025/04/04/he-s-a-decorated-war-vet-but-a-convicted-criminal-ice-wants-to-deport-him/"},{"_id":"Y25BO6AE3NOG3F3Q3X62Q32J4E","canonical_url":"/article/2025/04/04/former-costa-rica-president-oscar-arias-talks-visa-trump/","canonical_website":"opb","credits":{"by":[{"name":"Leila Fadel","type":"author"},{"name":"Obed Manuel","type":"author"}]},"description":{"basic":"Former Costa Rican President Óscar Arias Sánchez, who likened President Trump to \"Roman emperor\" earlier this year, says he fears the U.S. revoked his visa over criticisms of Trump."},"display_date":"2025-04-04T19:43:44.061Z","first_publish_date":"2025-04-04T19:43:44.061Z","headlines":{"basic":"Former Costa Rican president says visa may have been revoked over criticism of Trump"},"label":{"kicker":{"display":true,"text":"Foreign policy","url":"https://www.opb.org/politics"}},"last_updated_date":"2025-04-04T19:43:44.167Z","promo_items":{"audio":{"embed":{"config":{"origin":"npr"},"url":"https://ondemand.npr.org/anon.npr-mp3/npr/me/2025/04/20250404_me_former_costa_rican_president_says_visa_may_have_been_revoked_over_criticism_of_trump.mp3?size=4826637&d=301626&e=nx-s1-5349766"}},"basic":{"alt_text":"Nobel Peace Prize laureate and two-time Costa Rican President Oscar Arias looks at the media during the opening ceremony of the XV World Summit of Nobel Peace Laureates at the University in Barcelona, Spain, Nov. 13, 2015.","caption":"Nobel Peace Prize laureate and two-time Costa Rican President Oscar Arias looks at the media during the opening ceremony of the XV World Summit of Nobel Peace Laureates at the University in Barcelona, Spain, Nov. 13, 2015.","credits":{"by":[{"name":"Manu Fernandez","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/Z2TITOOSSJMOPHPWI6NYMRFGWU.jpg?auth=737674ed2436161e056ff61d87e58028415fb706fdbdb0fd90cd0ae5d59d2ac2&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/Z2TITOOSSJMOPHPWI6NYMRFGWU.jpg?auth=737674ed2436161e056ff61d87e58028415fb706fdbdb0fd90cd0ae5d59d2ac2&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/Z2TITOOSSJMOPHPWI6NYMRFGWU.jpg?auth=737674ed2436161e056ff61d87e58028415fb706fdbdb0fd90cd0ae5d59d2ac2&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/Z2TITOOSSJMOPHPWI6NYMRFGWU.jpg?auth=737674ed2436161e056ff61d87e58028415fb706fdbdb0fd90cd0ae5d59d2ac2&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/Z2TITOOSSJMOPHPWI6NYMRFGWU.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"world","text":"World"},{"slug":"national","text":"National"},{"slug":"politics","text":"Politics"},{"slug":"news","text":"News"},{"slug":"home-page-top-stories","text":"Home Page Top Stories"}]},"type":"story","website_url":"/article/2025/04/04/former-costa-rica-president-oscar-arias-talks-visa-trump/"},{"_id":"2WDLFFSTSFLVFF42ZKXCCE3ZRU","canonical_url":"/article/2025/04/04/trump-downplays-the-role-of-far-right-activist-in-firings-of-nsc-staff/","canonical_website":"opb","credits":{"by":[{"name":"NPR Washington Desk","type":"author"}]},"description":{"basic":"President Trump is downplaying reports that far-right provocateur Laura Loomer influenced National Security Council firings on Thursday."},"display_date":"2025-04-04T19:29:10.232Z","first_publish_date":"2025-04-04T19:29:10.232Z","headlines":{"basic":"Trump downplays the role of far-right activist in firings of NSC staff"},"label":{"kicker":{"display":true,"text":"Politics","url":"https://www.opb.org/politics/"}},"last_updated_date":"2025-04-04T19:29:10.381Z","promo_items":{"basic":{"alt_text":"President Trump speaks during an event to announce new tariffs in the Rose Garden at the White House on April 2, 2025, in Washington.","caption":"President Trump speaks during an event to announce new tariffs in the Rose Garden at the White House on April 2, 2025, in Washington.","credits":{"affiliation":[{"name":"AP"}],"by":[{"name":"Mark Schiefelbein","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/LQKZG35WBJNVFA34JLB5WF5HUI.jpg?auth=8e45c73202afee63c7740797ea8cbbc36c5c5c33727e7c0475e32da01ee9e9b9&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/LQKZG35WBJNVFA34JLB5WF5HUI.jpg?auth=8e45c73202afee63c7740797ea8cbbc36c5c5c33727e7c0475e32da01ee9e9b9&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/LQKZG35WBJNVFA34JLB5WF5HUI.jpg?auth=8e45c73202afee63c7740797ea8cbbc36c5c5c33727e7c0475e32da01ee9e9b9&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/LQKZG35WBJNVFA34JLB5WF5HUI.jpg?auth=8e45c73202afee63c7740797ea8cbbc36c5c5c33727e7c0475e32da01ee9e9b9&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/LQKZG35WBJNVFA34JLB5WF5HUI.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"national-security","text":"National Security"},{"slug":"news","text":"News"},{"slug":"politics","text":"Politics"},{"slug":"national","text":"National"}]},"type":"story","website_url":"/article/2025/04/04/trump-downplays-the-role-of-far-right-activist-in-firings-of-nsc-staff/"}],"count":6202,"next":8},"expires":1744001792458,"lastModified":1744001672235},"{\"fromIndex\":0,\"size\":8,\"slug\":\"culture\",\"sort\":\"first_publish_date:desc\"}":{"data":{"_id":"8f3d27fd1629ffe592156bc239031181038aa0ff88afb49015fedccef07257f2","content_elements":[{"_id":"HIVIX7AJVBJP5EWHG6ABYORGLI","canonical_url":"/article/2025/04/05/tiktok-creators-express-fatigue-over-app-s-future/","canonical_website":"opb","credits":{"by":[{"name":"Chloe Veltman","type":"author"}]},"description":{"basic":"It's been an emotional rollercoaster for TikTok creators over the past few months, with the app's future uncertain. But there are ways to decompress."},"display_date":"2025-04-05T20:23:11.145Z","first_publish_date":"2025-04-05T20:23:11.145Z","headlines":{"basic":"TikTok creators go from sadness and fear to...'whatever!' over app's future"},"last_updated_date":"2025-04-05T20:23:11.285Z","promo_items":{"audio":{"embed":{"config":{"origin":"npr"},"url":"https://ondemand.npr.org/anon.npr-mp3/npr/wesat/2025/04/20250405_wesat_tiktok_creators_go_from_sadness_and_fear_to..._whatever_over_app_s_future.mp3?size=2731826&d=170698&e=nx-s1-5351788"}},"basic":{"alt_text":"FILE - The icon for the video sharing TikTok app is seen on a smartphone, Tuesday, Feb. 28, 2023, in Marple Township, Pa. (AP Photo/Matt Slocum, File)","caption":"The chaos surrounding TikTok in recent months has sent creators on the platform into an emotional spiral.","credits":{"by":[{"name":"Matt Slocum","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/3QEEPFFUJZINTID7YE42YBVHBQ.jpg?auth=91615e7cbd71874c1fdcf62609211740a8fd43deba4a518d013603957740f779&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/3QEEPFFUJZINTID7YE42YBVHBQ.jpg?auth=91615e7cbd71874c1fdcf62609211740a8fd43deba4a518d013603957740f779&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/3QEEPFFUJZINTID7YE42YBVHBQ.jpg?auth=91615e7cbd71874c1fdcf62609211740a8fd43deba4a518d013603957740f779&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/3QEEPFFUJZINTID7YE42YBVHBQ.jpg?auth=91615e7cbd71874c1fdcf62609211740a8fd43deba4a518d013603957740f779&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/3QEEPFFUJZINTID7YE42YBVHBQ.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"culture","text":"Culture"},{"slug":"technology","text":"Technology"},{"slug":"news","text":"News"},{"slug":"home-page-top-stories","text":"Home Page Top Stories"}]},"type":"story","website_url":"/article/2025/04/05/tiktok-creators-express-fatigue-over-app-s-future/"},{"_id":"SSQ32CRS7ZOIRMLLVNMZWQFKZU","canonical_url":"/article/2025/04/04/liquid-eggs-recalled-over-bleach-concerns/","canonical_website":"opb","credits":{"by":[{"name":"Rachel Treisman","type":"author"}]},"description":{"basic":"Over 200,000 pounds of Egg Beaters and Bob Evans products were recalled over potential cleaning solution contamination. The USDA says that health risks are low, but consumers should still steer clear."},"display_date":"2025-04-04T20:15:10.887Z","first_publish_date":"2025-04-04T20:15:10.887Z","headlines":{"basic":"Popular brands of liquid eggs are recalled over bleach contamination concerns"},"last_updated_date":"2025-04-04T20:15:11.005Z","promo_items":{"basic":{"alt_text":"Side-by-side images of the liquid egg products being recalled, from Egg Beaters and Bob Evans.","caption":"Cargill Kitchen Solutions is recalling several brands of liquid egg products that it says may have been distributed nationwide.","height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QX4RN4IAJVJX7LYRSOZACND7CE.jpg?auth=6629f4b10febce8d255d69ff285c4c2c12a06171cc4ff9574762368433964136&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QX4RN4IAJVJX7LYRSOZACND7CE.jpg?auth=6629f4b10febce8d255d69ff285c4c2c12a06171cc4ff9574762368433964136&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QX4RN4IAJVJX7LYRSOZACND7CE.jpg?auth=6629f4b10febce8d255d69ff285c4c2c12a06171cc4ff9574762368433964136&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/QX4RN4IAJVJX7LYRSOZACND7CE.jpg?auth=6629f4b10febce8d255d69ff285c4c2c12a06171cc4ff9574762368433964136&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/QX4RN4IAJVJX7LYRSOZACND7CE.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"national","text":"National"},{"slug":"news","text":"News"},{"slug":"business","text":"Business"},{"slug":"food","text":"Food"},{"slug":"culture","text":"Culture"}]},"type":"story","website_url":"/article/2025/04/04/liquid-eggs-recalled-over-bleach-concerns/"},{"_id":"W6W4MKL2RROYHFQ3PPQNHJZGBI","canonical_url":"/article/2025/04/04/10-grocery-items-likely-to-see-higher-prices-due-to-tariffs/","canonical_website":"opb","credits":{"by":[{"name":"Scott Neuman","type":"author"}]},"description":{"basic":"A trip to the grocery or liquor store is about to become even more expensive, economists say. From seafood to olive oil, these items will likely cost more under President Trump's tariffs."},"display_date":"2025-04-04T19:35:58.205Z","first_publish_date":"2025-04-04T19:35:58.205Z","headlines":{"basic":"Higher prices are likely for these 10 grocery items when tariffs hit"},"label":{"kicker":{"display":true,"text":"Economy","url":"https://www.opb.org/tag/economy/"}},"last_updated_date":"2025-04-04T19:35:58.329Z","promo_items":{"basic":{"alt_text":"Indonesian fishermen unload their catch at the port in Jakarta on May 5, 2019.","caption":"Indonesian fishermen unload their catch at the port in Jakarta on May 5, 2019.","credits":{"affiliation":[{"name":"AFP via Getty Images"}],"by":[{"name":"Goh Chai Hin","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PIQTQKLH3NM7BAKMNKW7ALKZ7I.jpg?auth=40c659b40879b8c45c59535d3aa7daa28a1a30e9f04c0eea4c339d8c78126e2a&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PIQTQKLH3NM7BAKMNKW7ALKZ7I.jpg?auth=40c659b40879b8c45c59535d3aa7daa28a1a30e9f04c0eea4c339d8c78126e2a&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PIQTQKLH3NM7BAKMNKW7ALKZ7I.jpg?auth=40c659b40879b8c45c59535d3aa7daa28a1a30e9f04c0eea4c339d8c78126e2a&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/PIQTQKLH3NM7BAKMNKW7ALKZ7I.jpg?auth=40c659b40879b8c45c59535d3aa7daa28a1a30e9f04c0eea4c339d8c78126e2a&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/PIQTQKLH3NM7BAKMNKW7ALKZ7I.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"national","text":"National"},{"slug":"world","text":"World"},{"slug":"news","text":"News"},{"slug":"food","text":"Food"},{"slug":"your-money","text":"Your Money"},{"slug":"economy","text":"Economy"},{"slug":"business","text":"Business"},{"slug":"culture","text":"Culture"}]},"type":"story","website_url":"/article/2025/04/04/10-grocery-items-likely-to-see-higher-prices-due-to-tariffs/"},{"_id":"GNSMO7O57VKYTBZ3NIWOSS76VQ","canonical_url":"/article/2025/04/04/russell-brand-rape-assault/","canonical_website":"opb","credits":{"by":[{"name":"Bill Chappell","type":"author"}]},"description":{"basic":"The criminal charges were announced one and a half years after Brand was accused of sexual misconduct by four women in the fall of 2023."},"display_date":"2025-04-04T15:56:42.258Z","first_publish_date":"2025-04-04T15:56:42.258Z","headlines":{"basic":"Comedian Russell Brand is charged with rape and assault in UK"},"last_updated_date":"2025-04-04T15:56:42.371Z","promo_items":{"basic":{"alt_text":"Comedian and actor Russell Brand is facing criminal charges in England over rape and sexual assault allegations that span some six years. He's seen here attending the Republican National Convention in July.","caption":"Comedian and actor Russell Brand is facing criminal charges in England over rape and sexual assault allegations that span some six years. He's seen here attending the Republican National Convention in July.","credits":{"by":[{"name":"Leon Neal","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/3JL7XYK5PZIDDAZYK2MFIEHOFA.jpg?auth=6999d99291911e3170010f2ff175baee416f9308f20124e5b051e13607be1185&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/3JL7XYK5PZIDDAZYK2MFIEHOFA.jpg?auth=6999d99291911e3170010f2ff175baee416f9308f20124e5b051e13607be1185&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/3JL7XYK5PZIDDAZYK2MFIEHOFA.jpg?auth=6999d99291911e3170010f2ff175baee416f9308f20124e5b051e13607be1185&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/3JL7XYK5PZIDDAZYK2MFIEHOFA.jpg?auth=6999d99291911e3170010f2ff175baee416f9308f20124e5b051e13607be1185&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/3JL7XYK5PZIDDAZYK2MFIEHOFA.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"culture","text":"Culture"},{"slug":"news","text":"News"}]},"type":"story","website_url":"/article/2025/04/04/russell-brand-rape-assault/"},{"_id":"NMGPNCW77JFMZFAK2G2EWVS7MQ","canonical_url":"/article/2025/04/04/art-exhibit-commemorate-50-fifty-years-vietnamese-culture-oregon-jeffrey-allen-van-le-quang-vinh/","canonical_website":"opb","credits":{"by":[{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/752e92eb-db05-45de-9911-d61f0ed4b021.jpg"},"name":"Steven Tonthat","slug":"steven-tonthat","type":"author","url":"/author/steven-tonthat"}]},"description":{"basic":"April 30, 2025 will mark the 50th anniversary of the Fall of Saigon, and for Van Le and Allen Luong, it’s the perfect time to acknowledge an important moment for the Vietnamese community, and also looking forward to a brighter future. "},"display_date":"2025-04-04T13:00:01Z","first_publish_date":"2025-04-04T13:00:01Z","headlines":{"basic":"New art exhibits commemorate 50 years of Vietnamese culture in Oregon "},"label":{"kicker":{"display":true,"text":"Oregon Art Beat","url":"https://www.opb.org/show/oregonartbeat/"}},"last_updated_date":"2025-04-04T13:00:05.695Z","promo_items":{"basic":{"caption":"A very small section of a large painting done by Van Le's late father, Le Quang Vinh, taken on March 27, 2025. Le and her uncle Allen Luong are coordinating a series of exhibits that will showcase her father's paintings. The first event will be on April 5, 2025.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Steven Tonthat ","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/2ESBRN4VOJGDBE2E6GZQONAZF4.jpg?auth=ef5851bb7a0c7230f74500f2e3179d2bb8b66d448eae1ab7bd9797a80cf9edbe&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/2ESBRN4VOJGDBE2E6GZQONAZF4.jpg?auth=ef5851bb7a0c7230f74500f2e3179d2bb8b66d448eae1ab7bd9797a80cf9edbe&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/2ESBRN4VOJGDBE2E6GZQONAZF4.jpg?auth=ef5851bb7a0c7230f74500f2e3179d2bb8b66d448eae1ab7bd9797a80cf9edbe&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/2ESBRN4VOJGDBE2E6GZQONAZF4.jpg?auth=ef5851bb7a0c7230f74500f2e3179d2bb8b66d448eae1ab7bd9797a80cf9edbe&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/2ESBRN4VOJGDBE2E6GZQONAZF4.jpg","width":1440}},"subheadlines":{"basic":""},"subtype":"standard","taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"arts-and-culture","text":"Arts And Culture"},{"slug":"art","text":"Art"},{"slug":"art-beat","text":"Art Beat"},{"slug":"artist","text":"Artist"},{"slug":"painting","text":"Painting"},{"slug":"oregon","text":"Oregon"},{"slug":"oregon-art-beat","text":"Oregon Art Beat"},{"slug":"vietnam","text":"Vietnam"},{"slug":"culture","text":"Culture"}]},"type":"story","website_url":"/article/2025/04/04/art-exhibit-commemorate-50-fifty-years-vietnamese-culture-oregon-jeffrey-allen-van-le-quang-vinh/"},{"_id":"ITQHTV7LT5KVZGK47YV2UOWROI","canonical_url":"/article/2025/04/02/val-kilmer/","canonical_website":"opb","credits":{"by":[{"name":"The Associated Press","type":"author"}]},"description":{"basic":"Val Kilmer died from pneumonia. He had recovered after a 2014 throat cancer diagnosis that required two tracheotomies."},"display_date":"2025-04-02T13:58:51.901Z","first_publish_date":"2025-04-02T13:58:51.901Z","headlines":{"basic":"Val Kilmer, 'Top Gun' star with an intense approach, dies at 65"},"last_updated_date":"2025-04-02T13:58:52.03Z","promo_items":{"basic":{"alt_text":"Val Kilmer poses for a portrait, Jan. 9, 2014, in Nashville, Tenn.","caption":"Val Kilmer poses for a portrait, Jan. 9, 2014, in Nashville, Tenn.","credits":{"by":[{"name":"Mark Humphrey","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/VMXABM6U7VMSBPWDZBWZJNTTTU.jpg?auth=45cda84ac2c2d927bef758737bf34139305981c1820c145a1b65ff34be85ad97&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/VMXABM6U7VMSBPWDZBWZJNTTTU.jpg?auth=45cda84ac2c2d927bef758737bf34139305981c1820c145a1b65ff34be85ad97&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/VMXABM6U7VMSBPWDZBWZJNTTTU.jpg?auth=45cda84ac2c2d927bef758737bf34139305981c1820c145a1b65ff34be85ad97&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/VMXABM6U7VMSBPWDZBWZJNTTTU.jpg?auth=45cda84ac2c2d927bef758737bf34139305981c1820c145a1b65ff34be85ad97&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/VMXABM6U7VMSBPWDZBWZJNTTTU.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"pop-culture","text":"Pop Culture"},{"slug":"news","text":"News"},{"slug":"culture","text":"Culture"},{"slug":"movies","text":"Movies"}]},"type":"story","website_url":"/article/2025/04/02/val-kilmer/"},{"_id":"6S3WGPOAIJJE5FQ5BK6X34M2MY","canonical_url":"/article/2025/03/31/imls-staff-put-on-administrative-leave/","canonical_website":"opb","credits":{"by":[{"name":"Andrew Limbong","type":"author"}]},"description":{"basic":"The staff of the Institute of Museum and Library Services was placed on administrative leave this morning, following a meeting between IMLS leadership and DOGE staff. "},"display_date":"2025-03-31T21:25:24.653Z","first_publish_date":"2025-03-31T21:25:24.653Z","headlines":{"basic":"Entire staff at federal agency that funds libraries and museums put on leave"},"label":{"kicker":{"display":true,"text":"Culture","url":"https://www.opb.org/culture/"}},"last_updated_date":"2025-04-01T15:07:41.117Z","promo_items":{"basic":{"caption":"The IMLS is the main source of federal funding for libraries.","credits":{"by":[{"name":"Shannon Finney","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/HISM64PBWFMCTBBRBUE66I2UNM.jpg?auth=d68f9a3db385db1eb706d0271558a883ed13bc88beaf6db382eb9cddfcd94766&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/HISM64PBWFMCTBBRBUE66I2UNM.jpg?auth=d68f9a3db385db1eb706d0271558a883ed13bc88beaf6db382eb9cddfcd94766&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/HISM64PBWFMCTBBRBUE66I2UNM.jpg?auth=d68f9a3db385db1eb706d0271558a883ed13bc88beaf6db382eb9cddfcd94766&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/HISM64PBWFMCTBBRBUE66I2UNM.jpg?auth=d68f9a3db385db1eb706d0271558a883ed13bc88beaf6db382eb9cddfcd94766&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/HISM64PBWFMCTBBRBUE66I2UNM.jpg","width":1440}},"subtype":"standard","taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"politics","text":"Politics"},{"slug":"books","text":"Books"},{"slug":"culture","text":"Culture"},{"slug":"government-spending","text":"Government Spending"}]},"type":"story","website_url":"/article/2025/03/31/imls-staff-put-on-administrative-leave/"},{"_id":"T6DQ5XAVRVLKFFZ2WOXZHHHDY4","canonical_url":"/article/2025/03/30/academy-apologizes-for-initial-statement-after-attack-on-hamdan-ballal/","canonical_website":"opb","credits":{"by":[{"name":"Chloe Veltman","type":"author"}]},"description":{"basic":"The apology appeared after a wave of online protest against the Academy — first for not responding to Ballal's attack, and then for not naming him and his film directly in its initial statement."},"display_date":"2025-03-30T16:27:13.328Z","first_publish_date":"2025-03-30T16:27:13.328Z","headlines":{"basic":"Academy apologizes for not adequately supporting Oscar-winning Palestinian director"},"last_updated_date":"2025-03-30T16:27:13.413Z","promo_items":{"basic":{"alt_text":"Hamdan Ballal, Oscar-winning Palestinian director of No Other Land, is released from a police station in the West Bank settlement of Kiryat Arba a day after being detained by the Israeli army following an attack by Jewish settlers, on Tuesday.","caption":"Hamdan Ballal, Oscar-winning Palestinian director of <em>No Other Land</em>, is released from a police station in the West Bank settlement of Kiryat Arba a day after being detained by the Israeli army following an attack by Jewish settlers, on Tuesday.","credits":{"affiliation":[{"name":"AP"}],"by":[{"name":"Leo Correa","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5WIEHVBG2BKY3L64YRC6Z3APKY.jpg?auth=7038cad59164fca251eed0e538de046c244dd06c3d76b3f47bdb9764ac06c9cf&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5WIEHVBG2BKY3L64YRC6Z3APKY.jpg?auth=7038cad59164fca251eed0e538de046c244dd06c3d76b3f47bdb9764ac06c9cf&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5WIEHVBG2BKY3L64YRC6Z3APKY.jpg?auth=7038cad59164fca251eed0e538de046c244dd06c3d76b3f47bdb9764ac06c9cf&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5WIEHVBG2BKY3L64YRC6Z3APKY.jpg?auth=7038cad59164fca251eed0e538de046c244dd06c3d76b3f47bdb9764ac06c9cf&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/5WIEHVBG2BKY3L64YRC6Z3APKY.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"NPR"},"sections":[{"_id":"/wires/npr","additional_properties":{"original":{"site":{"site_url":null}}},"name":"NPR","path":"/wires/npr","type":"section"}],"tags":[{"slug":"culture","text":"Culture"},{"slug":"news","text":"News"},{"slug":"movies","text":"Movies"},{"slug":"world","text":"World"}]},"type":"story","website_url":"/article/2025/03/30/academy-apologizes-for-initial-statement-after-attack-on-hamdan-ballal/"}],"count":1093,"next":8},"expires":1744001792504,"lastModified":1744001672233},"{\"fromIndex\":0,\"size\":8,\"slug\":\"science-environment\\t\",\"sort\":\"first_publish_date:desc\"}":{"data":{"_id":"c18368740466e8e1f8c63aab9f92637349466552b5ecff0d18105beff7d7c77b","content_elements":[{"_id":"F23G7SF6FJD3RMRBSKUFM6QOKI","canonical_url":"/article/2025/04/04/opb-politics-now-pacific-northwest-dam-removal/","canonical_website":"opb","credits":{"by":[{"name":"Lauren Dake","slug":"lauren-dake","type":"author","url":"/author/lauren-dake"},{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/faa66996-6436-42c1-8d98-6762c6c3e155.JPG"},"name":"Cassandra Profita","slug":"cassandra-profita","type":"author","url":"/author/cassandra-profita"},{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/a8e31b66-4632-4022-90a3-59167d5998e3.png"},"name":"Tony Schick","slug":"tony-schick","type":"author","url":"/author/tony-schick"}]},"description":{"basic":"We take stock of the conversations surrounding dam removals in the wake of the Klamath projects and discussions of the utility of several dams along the Willamette River."},"display_date":"2025-04-04T13:00:00Z","first_publish_date":"2025-04-04T13:00:00Z","headlines":{"basic":"‘OPB Politics Now’: Is the Pacific Northwest entering an era of dam removal? "},"label":{"kicker":{"display":true,"text":"Politics Now","url":"https://www.opb.org/show/politicsnow/"}},"last_updated_date":"2025-04-04T13:00:05.933Z","promo_items":{"audio":{"embed":{"config":{"duration":1343000,"origin":"soundstack"},"url":"https://pds.cdnstream1.com/p/opb/opb-politics-now/is-the-pacific-northwest-52602a/audio.mp3?aw_0_1st.playerid=opbsite"}},"basic":{"alt_text":"Podcast logo image","caption":"OPB Politics Now","credits":{"by":[{"name":"OPB Sta","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5AUFRS4B6BGTXEI73OZNKPFHLE.png?auth=1b4946632db66de8454107fb0227d5b9144903e7179d9d56206ad873c8478cda&width=1440&height=810&focal=977%2C685","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5AUFRS4B6BGTXEI73OZNKPFHLE.png?auth=1b4946632db66de8454107fb0227d5b9144903e7179d9d56206ad873c8478cda&width=150&height=84&focal=977%2C685","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5AUFRS4B6BGTXEI73OZNKPFHLE.png?auth=1b4946632db66de8454107fb0227d5b9144903e7179d9d56206ad873c8478cda&width=1023&height=575&focal=977%2C685","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5AUFRS4B6BGTXEI73OZNKPFHLE.png?auth=1b4946632db66de8454107fb0227d5b9144903e7179d9d56206ad873c8478cda&width=767&height=431&focal=977%2C685"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/5AUFRS4B6BGTXEI73OZNKPFHLE.png","width":1440}},"subheadlines":{"basic":""},"subtype":"standard","taxonomy":{"primary_section":{"name":"Shows & Podcasts"},"sections":[{"_id":"/shows","additional_properties":{"original":{"site":{"site_url":null}}},"name":"Shows & Podcasts","path":"/shows","type":"section"}],"tags":[{"slug":"politics-now","text":"Politics Now"},{"slug":"politics","text":"Politics"},{"slug":"dam-removal","text":"Dam Removal"},{"slug":"dams","text":"Dams"},{"slug":"science-environment","text":"Science & Environment"}]},"type":"story","website_url":"/article/2025/04/04/opb-politics-now-pacific-northwest-dam-removal/"},{"_id":"25BT2VFLIVA4BFYVSNKLOR4JCQ","canonical_url":"/article/2025/04/03/oregon-supreme-court-tillamook-lawsuit-case-moves-forward/","canonical_website":"opb","credits":{"by":[{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/77a9289c-2723-402c-a75f-a007a8a06926.png"},"name":"Alejandro Figueroa","slug":"alejandro-figueroa","type":"author","url":""}]},"description":{"basic":"A year after holding oral arguments, the Oregon Supreme Court has ruled a lawsuit against one of Oregon’s most recognizable farmer-owned creameries can move forward."},"display_date":"2025-04-04T17:56:11.745Z","first_publish_date":"2025-04-03T19:43:27.694Z","headlines":{"basic":"Oregon Supreme Court says ‘misleading marketing’ case against Tillamook can move forward "},"label":{"kicker":{"display":true,"text":"Food and Farms","url":"https://www.opb.org/tag/food-and-farms/"}},"last_updated_date":"2025-04-04T18:39:50.753Z","promo_items":{"basic":{"caption":"Tillamook Creamery, in Tillamook, Ore.","credits":{"affiliation":[],"by":[{"name":"Maps Data: © Google, 2025; Imagery August 2023","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/4NS4U7TR3RFMLKJVAEVELDROKE.JPG?auth=0a9f6a8565c03f6718b675d1d8a9d10d86d456fd8ef4e6734d408bf2a7d567d7&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/4NS4U7TR3RFMLKJVAEVELDROKE.JPG?auth=0a9f6a8565c03f6718b675d1d8a9d10d86d456fd8ef4e6734d408bf2a7d567d7&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/4NS4U7TR3RFMLKJVAEVELDROKE.JPG?auth=0a9f6a8565c03f6718b675d1d8a9d10d86d456fd8ef4e6734d408bf2a7d567d7&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/4NS4U7TR3RFMLKJVAEVELDROKE.JPG?auth=0a9f6a8565c03f6718b675d1d8a9d10d86d456fd8ef4e6734d408bf2a7d567d7&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/4NS4U7TR3RFMLKJVAEVELDROKE.JPG","width":1440}},"subheadlines":{"basic":""},"subtype":"standard","taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"science-environment","text":"Science & Environment"},{"slug":"lawsuit","text":"Lawsuit"},{"slug":"oregon-supreme-court","text":"Oregon Supreme Court"},{"slug":"dairy","text":"Dairy"},{"slug":"farmers","text":"Farmers"},{"slug":"farming","text":"Farming"},{"slug":"food-and-farms","text":"Food And Farms"},{"slug":"justice","text":"Justice"}]},"type":"story","website_url":"/article/2025/04/03/oregon-supreme-court-tillamook-lawsuit-case-moves-forward/"},{"_id":"CYF75Q2JE5A2BFLO5PN4I3UZTM","canonical_url":"/article/2025/04/03/salmon-return-to-the-klamaths-oregon-waters-but-the-rivers-headwaters-are-still-blocked/","canonical_website":"opb","credits":{"by":[{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/faa66996-6436-42c1-8d98-6762c6c3e155.JPG"},"name":"Cassandra Profita","slug":"cassandra-profita","type":"author","url":"/author/cassandra-profita"}]},"description":{"basic":"After decades of conflict, farmers and tribes say they’re working in concert to restore salmon habitat in the Klamath Basin. But two dams remain - one that blocks fish passage another that plays a key role for agriculture."},"display_date":"2025-04-03T13:00:01Z","first_publish_date":"2025-04-03T13:00:01Z","headlines":{"basic":"Salmon return to the Klamath’s Oregon waters, but the river’s headwaters are still blocked "},"label":{"kicker":{"display":true,"text":"Oregon Field Guide","url":"https://www.opb.org/show/oregonfieldguide/"}},"last_updated_date":"2025-04-03T13:00:05.569Z","promo_items":{"basic":{"alt_text":"The Klamath River now flows free for hundreds of miles from Southern Oregon to the ocean. But after the largest dam removal project in the U.S., challenges remain. Water shortages in the upper basin fuel toxic bacteria, disease outbreaks and conflicts over endangered fish as salmon swim upstream for the first time in a century.","caption":"Challenges remain after the country’s largest dam removal project on the Klamath River.","credits":{"affiliation":[{"name":"OPB"}],"by":[{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/a6cf4332-36e9-4b13-8210-ff29f659cb68.jpg"},"name":"Brandon Swanson","slug":"brandon-swanson","type":"author","url":""}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/7KAGEELY7ZANNNE625XN2ZCBXA.jpg?auth=a446b066c8ca847b9fb6d8f43b3060e0821d84626b45c580d8ae6a34282ed97d&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/7KAGEELY7ZANNNE625XN2ZCBXA.jpg?auth=a446b066c8ca847b9fb6d8f43b3060e0821d84626b45c580d8ae6a34282ed97d&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/7KAGEELY7ZANNNE625XN2ZCBXA.jpg?auth=a446b066c8ca847b9fb6d8f43b3060e0821d84626b45c580d8ae6a34282ed97d&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/7KAGEELY7ZANNNE625XN2ZCBXA.jpg?auth=a446b066c8ca847b9fb6d8f43b3060e0821d84626b45c580d8ae6a34282ed97d&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/7KAGEELY7ZANNNE625XN2ZCBXA.jpg","width":1440},"video":{"_id":"cb50bc1d-8197-49dc-9d84-cf5b42f917f5"}},"subheadlines":{"basic":"After decades of conflict, farmers and tribes say they’re working in concert to restore salmon habitat in the Klamath Basin. But two dams remain"},"subtype":"hero","taxonomy":{"primary_section":{"name":"Science & Environment"},"sections":[{"_id":"/science_environment","additional_properties":{"original":{"site":{"site_url":null}}},"name":"Science & Environment","path":"/science_environment","type":"section"}],"tags":[{"slug":"science-environment","text":"Science & Environment"},{"slug":"salmon","text":"Salmon"},{"slug":"tribes","text":"Tribes"},{"slug":"farmers","text":"Farmers"},{"slug":"food-and-farms","text":"Food And Farms"},{"slug":"klamath","text":"Klamath"},{"slug":"klamath-basin","text":"Klamath Basin"},{"slug":"klamath-river","text":"Klamath River"},{"slug":"southern-oregon","text":"Southern Oregon"},{"slug":"dam-removal","text":"Dam Removal"},{"slug":"dams","text":"Dams"},{"slug":"oregon-field-guide","text":"Oregon Field Guide"}]},"type":"story","website_url":"/article/2025/04/03/salmon-return-to-the-klamaths-oregon-waters-but-the-rivers-headwaters-are-still-blocked/"},{"_id":"LD7VWTZOQJA3BIFQZGTMWC7QR4","canonical_url":"/article/2025/04/02/southern-oregon-court-ruling-protects-old-growth-forests-environmental-win/","canonical_website":"opb","credits":{"by":[{"name":"Roman Battaglia","org":"Jefferson Public Radio","type":"author"}]},"description":{"basic":"A federal judge in Medford agreed Tuesday with a previous ruling a year ago that the federal Bureau of Land Management wasn't adhering to its own resource management plan in protecting forest canopy for the northern spotted owl."},"display_date":"2025-04-02T20:27:10.031Z","first_publish_date":"2025-04-02T20:27:10.031Z","headlines":{"basic":"Environmental groups notch major legal win in Southern Oregon to protect old-growth forests"},"label":{"kicker":{"display":true,"text":"Science & Environment","url":"https://www.opb.org/science_environment/"}},"last_updated_date":"2025-04-02T20:56:23.368Z","promo_items":{"basic":{"caption":"George Sexton stands in one of the areas the BLM is proposing a commercial forest treatment as part of the Late Mungers Project.","credits":{"affiliation":[{"name":"Jefferson Public Radio"}],"by":[{"name":"Roman Battaglia","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/LRSDTG57HBCQXNF63WLJ4OHOEU.jpg?auth=2274c0eb0b06dbab108bce785e1bf34f5d0c00dac41aadc8eb25e815177f9518&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/LRSDTG57HBCQXNF63WLJ4OHOEU.jpg?auth=2274c0eb0b06dbab108bce785e1bf34f5d0c00dac41aadc8eb25e815177f9518&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/LRSDTG57HBCQXNF63WLJ4OHOEU.jpg?auth=2274c0eb0b06dbab108bce785e1bf34f5d0c00dac41aadc8eb25e815177f9518&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/LRSDTG57HBCQXNF63WLJ4OHOEU.jpg?auth=2274c0eb0b06dbab108bce785e1bf34f5d0c00dac41aadc8eb25e815177f9518&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/LRSDTG57HBCQXNF63WLJ4OHOEU.jpg","width":1440}},"subheadlines":{"basic":""},"subtype":"standard","taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"science-environment","text":"Science & Environment"},{"slug":"logging","text":"Logging"},{"slug":"southern-oregon","text":"Southern Oregon"}]},"type":"story","website_url":"/article/2025/04/02/southern-oregon-court-ruling-protects-old-growth-forests-environmental-win/"},{"_id":"YBKVC57BPRC45OZNRX5XMUI6C4","canonical_url":"/article/2025/04/02/oregon-updates-hazardous-substances-list-include-harmful-forever-chemicals/","canonical_website":"opb","credits":{"by":[{"name":"Alex Baumhardt","org":"Oregon Capital Chronicle","type":"author"}]},"description":{"basic":"Oregon’s Department of Environmental Quality will soon regulate the pollution and any cleanup of six PFAS compounds known to be harmful to human health."},"display_date":"2025-04-02T23:47:00.461Z","first_publish_date":"2025-04-02T18:12:16.874Z","headlines":{"basic":"Oregon updates hazardous substances list to include harmful forever chemicals, begins rulemaking"},"label":{"kicker":{"display":true,"text":"Science & Environment","url":"https://www.opb.org/science_environment/"}},"last_updated_date":"2025-04-02T23:47:00.593Z","promo_items":{"basic":{"caption":"Firefighting foam “unintentionally released” in an aircraft hangar at Travis Air Force Base in California on Sept. 24, 2013. Firefighting foam contains PFAS or “forever chemicals” that have gotten into the environment and groundwater. Oregon and other states are required to test for the contaminants during the next two years under guidance from the U.S. Environmental Protection Agency.","credits":{"affiliation":[{"name":"U.S. Air Force"}],"by":[{"name":"Courtesy of Ken Wright","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/72Z3QEYZWFE3VKT2HCZPK666XM.jpg?auth=d4e4c30cedfcce8527662fc59e6499310c033bfa81acc09f4a30fb970a80b2cf&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/72Z3QEYZWFE3VKT2HCZPK666XM.jpg?auth=d4e4c30cedfcce8527662fc59e6499310c033bfa81acc09f4a30fb970a80b2cf&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/72Z3QEYZWFE3VKT2HCZPK666XM.jpg?auth=d4e4c30cedfcce8527662fc59e6499310c033bfa81acc09f4a30fb970a80b2cf&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/72Z3QEYZWFE3VKT2HCZPK666XM.jpg?auth=d4e4c30cedfcce8527662fc59e6499310c033bfa81acc09f4a30fb970a80b2cf&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/72Z3QEYZWFE3VKT2HCZPK666XM.jpg","width":1440}},"subheadlines":{"basic":""},"subtype":"standard","taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"science-environment","text":"Science & Environment"}]},"type":"story","website_url":"/article/2025/04/02/oregon-updates-hazardous-substances-list-include-harmful-forever-chemicals/"},{"_id":"BWHIPXGEBJEAFNIZE6RGN4D5AQ","canonical_url":"/article/2025/03/31/controversial-logging-bill-makes-it-through-oregon-committee/","canonical_website":"opb","credits":{"by":[{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/408857d0-5008-45be-be9d-e1a71e13e6f5.jpg"},"name":"April Ehrlich","slug":"april-ehrlich","type":"author","url":"/author/april-ehrlich"}]},"description":{"basic":"The bill would allow counties and the timber industry to sue the state forester if Oregon logs less than it promises."},"display_date":"2025-04-01T00:36:29.062Z","first_publish_date":"2025-04-01T00:36:29.062Z","headlines":{"basic":"Controversial logging bill makes it through Oregon committee"},"last_updated_date":"2025-04-01T00:36:29.267Z","promo_items":{"basic":{"alt_text":"A log truck on the Trask River road, near TIllamook Oregon. Environmental groups say this road drains muddy runoff into the Trask river, in violation of the Clean Water Act.","caption":"A log truck on the Trask River road, near Tillamook, Oregon. ","credits":{"affiliation":[{"name":"OPB"}],"by":[{"name":"Amelia Templeton","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/KAMNTAGMPNESFITV2ESVWIPNDM.jpg?auth=35afd4c8c485f814f6298e64e16ce6fa7e8a4055f5ed4561da863363a3706797&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/KAMNTAGMPNESFITV2ESVWIPNDM.jpg?auth=35afd4c8c485f814f6298e64e16ce6fa7e8a4055f5ed4561da863363a3706797&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/KAMNTAGMPNESFITV2ESVWIPNDM.jpg?auth=35afd4c8c485f814f6298e64e16ce6fa7e8a4055f5ed4561da863363a3706797&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/KAMNTAGMPNESFITV2ESVWIPNDM.jpg?auth=35afd4c8c485f814f6298e64e16ce6fa7e8a4055f5ed4561da863363a3706797&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/KAMNTAGMPNESFITV2ESVWIPNDM.jpg","width":1440}},"subtype":"standard","taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"},{"_id":"/science_environment","additional_properties":{"original":{"site":{"site_url":null}}},"name":"Science & Environment","path":"/science_environment","type":"section"}],"tags":[{"slug":"science-environment","text":"Science & Environment"},{"slug":"timber","text":"Timber"},{"slug":"logging","text":"Logging"},{"slug":"politics","text":"Politics"}]},"type":"story","website_url":"/article/2025/03/31/controversial-logging-bill-makes-it-through-oregon-committee/"},{"_id":"5TW7JGLKEZDGNA6TPUJ2J3ONJM","canonical_url":"/article/2025/03/31/2500-pounds-smelt-seized-poachers-sandy-river/","canonical_website":"opb","credits":{"by":[{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/37011659-34a5-42dc-b5fd-1ef38b1fc2d5.png"},"name":"Kristian Foden-Vencil","slug":"kristian-foden-vencil","type":"author","url":"/author/kristian-foden-vencil"}]},"description":{"basic":"The fish were seized during the one-day smelt dipping season along the Sandy River on Thursday, an event that saw thousands of people crowd the riverbanks."},"display_date":"2025-03-31T20:30:00.518Z","first_publish_date":"2025-03-31T20:30:00.518Z","headlines":{"basic":"2,500 pounds of smelt seized from poachers along the Sandy River"},"label":{"kicker":{"display":true,"text":"Environment","url":"https://www.opb.org/tag/environment/"}},"last_updated_date":"2025-04-01T22:52:05.143Z","promo_items":{"basic":{"caption":"This photo provided by the Multnomah County Sheriff's Office via X shows police with 2,500 pounds of smelt seized from poachers on the Sandy River on March 27, 2025.","credits":{"affiliation":[],"by":[{"name":"Multnomah County Sheriff's Office via X","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/J4JDCNBG7ZAXDB7GQNSONL6HMA.jfif?auth=7e481ebb99a369568bd594805154e18a0d8d9d64634d06eeb6edd39b03bb5f46&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/J4JDCNBG7ZAXDB7GQNSONL6HMA.jfif?auth=7e481ebb99a369568bd594805154e18a0d8d9d64634d06eeb6edd39b03bb5f46&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/J4JDCNBG7ZAXDB7GQNSONL6HMA.jfif?auth=7e481ebb99a369568bd594805154e18a0d8d9d64634d06eeb6edd39b03bb5f46&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/J4JDCNBG7ZAXDB7GQNSONL6HMA.jfif?auth=7e481ebb99a369568bd594805154e18a0d8d9d64634d06eeb6edd39b03bb5f46&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/J4JDCNBG7ZAXDB7GQNSONL6HMA.jfif","width":1440}},"subheadlines":{"basic":"The fish were seized during the one-day smelt dipping season along Oregon’s Sandy River."},"subtype":"standard","taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"poaching","text":"Poaching"},{"slug":"fish-wildlife","text":"Fish & Wildlife"},{"slug":"wildlife","text":"Wildlife"},{"slug":"multnomah-county","text":"Multnomah County"},{"slug":"oregon","text":"Oregon"},{"slug":"science-environment","text":"Science & Environment"}]},"type":"story","website_url":"/article/2025/03/31/2500-pounds-smelt-seized-poachers-sandy-river/"},{"_id":"3W2MA4H6L5BOTIYW4O2P47RY4E","canonical_url":"/article/2025/04/01/all-science-no-fiction-oregon-researchers-hibernation-switch-reducing-need-oxygen/","canonical_website":"opb","credits":{"by":[{"image":{"url":"https://s3.amazonaws.com/arc-authors/opb/2bb0393f-f084-4b47-826f-804dab4e333f.png"},"name":"Jes Burns","slug":"jes-burns","type":"author","url":"/author/jes-burns"}]},"description":{"basic":"Researchers at Oregon Health and Science University are working on a way to buy valuable time for people having strokes or heart attacks. "},"display_date":"2025-03-31T18:22:22.566Z","first_publish_date":"2025-03-31T18:22:22.566Z","headlines":{"basic":"Oregon researchers discover how to flip the switch on hibernation. It could eventually save your life"},"label":{"kicker":{"display":true,"text":"Science & Environment","url":"https://www.opb.org/science_environment/"},"series":{"display":true,"text":"All Science No Fiction","url":""}},"last_updated_date":"2025-04-01T00:50:51.069Z","promo_items":{"basic":{"alt_text":"As grizzly bears expand their ranges throughout Montana, people say there could be lessons learned for Washington's North Cascades.","caption":"File photo of grizzly bears in Alaska. Bears and other animals hibernate in the winter to survive extreme environmental conditions. ","credits":{"by":[{"name":"Flickr Creative Commons, Alaska Region U.S. Fish & Wildlife Service","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5NMWLVJ66FCEBKW3VLTI6NAZWM.jpg?auth=8a12bb138f1112ab64bdc2aee93cbaad3ccc77d50e1df142372b99b863bb791b&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5NMWLVJ66FCEBKW3VLTI6NAZWM.jpg?auth=8a12bb138f1112ab64bdc2aee93cbaad3ccc77d50e1df142372b99b863bb791b&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5NMWLVJ66FCEBKW3VLTI6NAZWM.jpg?auth=8a12bb138f1112ab64bdc2aee93cbaad3ccc77d50e1df142372b99b863bb791b&width=1023&height=575&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/5NMWLVJ66FCEBKW3VLTI6NAZWM.jpg?auth=8a12bb138f1112ab64bdc2aee93cbaad3ccc77d50e1df142372b99b863bb791b&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/5NMWLVJ66FCEBKW3VLTI6NAZWM.jpg","width":1440}},"subheadlines":{"basic":"All Science Snapshot — Short, illuminating, inspiring and just plain cool Pacific Northwest science stories from “All Science. No Fiction.”"},"subtype":"standard","taxonomy":{"primary_section":{"name":"Science & Environment"},"sections":[{"_id":"/science_environment","additional_properties":{"original":{"site":{"site_url":null}}},"name":"Science & Environment","path":"/science_environment","type":"section"}],"tags":[{"slug":"science-environment","text":"Science & Environment"}]},"type":"story","website_url":"/article/2025/04/01/all-science-no-fiction-oregon-researchers-hibernation-switch-reducing-need-oxygen/"}],"count":4097,"next":8},"expires":1744001792596,"lastModified":1744001672257}},"stream-launcher":{"{\"site\":\"opb\"}":{"data":{"display_buy":true,"status":true,"affiliate":{"amazon":null,"itunes":null,"arkiv":null},"onNow":{"_id":"6610e0bb942916668e263367","event_id":"6042ac382907ae3535431c11","program_id":"5aab0e666acbd10b6eb09cb0","date":"2025-04-06","start_utc":"2025-04-07T01:00:00.000Z","end_utc":"2025-04-07T02:00:00.000Z","start_time":"21:00","end_time":"22:00","day":"Sun","program":{"program_id":"5aab0e666acbd10b6eb09cb0","parentID":null,"national_program_id":"","isParent":false,"name":"OPB Presents: Possible- Devon Zuegel on the future of cities and community","program_desc":"Possible is an award-winning, weekly show that sketches out the brightest version of the future—and what it will take to get there.\n\n \nDevon Zuegel, the leader of Edge Esmeralda—a pop-up village that took place in June 2024—joins Possible to discuss how she is re-imagining cities to optimize for community. \n\nIn this episode, Devon, Aria, and Reid get into why designing cities with intention can impact quality of life and strengthen communities. Devon shares what she has learned from Edge Esmeralda—and what she plans to build from here.","program_format":"News/Information","program_link":"","twitter":null,"facebook":null,"station_id":"","ucs":"5193f1afe1c84e358d9cacf9","hosts":[],"_date_modified":"03-31-2025 12:12:49.013"},"conflict_edited":1614982200256,"widget_config":{"custom_fields":null,"episode_notes":null,"host_display":null,"host_allow":null,"catalog_number":null,"label":null,"album_art":false,"customized":false}},"nextUp":[{"_id":"6610e0bb942916668e263365","event_id":"5f209e54f820d163d5028dce","program_id":"5aab0dfd933eff763c7c0702","date":"2025-04-06","start_utc":"Sun Apr 06 2025 22:00:00 GMT-0400 (EDT)","end_utc":"Sun Apr 06 2025 23:00:00 GMT-0400 (EDT)","start_time":"22:00","end_time":"23:00","day":"Sun","program":{"program_id":"5aab0dfd933eff763c7c0702","parentID":null,"national_program_id":"","isParent":false,"name":"Travel with Rick Steves","program_desc":"This fun and practical talk show is a lively conversation between travelers and the experts as we learn to explore our world smartly, smoothly and thoughtfully.","program_format":"Other","program_link":"https://www.ricksteves.com/watch-read-listen/audio/radio","twitter":"","facebook":"","station_id":"","ucs":"5193f1afe1c84e358d9cacf9","hosts":[]},"conflict_edited":1595973204773,"widget_config":{"custom_fields":false,"episode_notes":false,"host_display":false,"host_allow":false,"catalog_number":false,"label":false,"album_art":false,"customized":false},"fullstart":"2025-04-06 22:00","fullend":"2025-04-06 23:00","conflicts":["6610e0bb942916668e263365"]}],"ucs":{"_id":"5193f1afe1c84e358d9cacf9","amazon_affiliate_id":"","arkiv_affiliate_id":"","enable_sx_reporting":true,"fullname":"OPB","ignores_dst":false,"itunes_affiliate_id":"","legacy":"55","name":"opb","parent_station_id":"0","station":"station_opb_55","timezone":"PST","websitelink":"http://www.opb.org","_zoneInfo":{"offset":-8,"id":"US_Pacific"}},"settings":{"times":false},"_id":"f1d6dfec5b6e0ae25ca142b7ada5794571592ca8e8eca596b18691ea0827f082"},"expires":1744001724417,"lastModified":1744001604314}}};Fusion.layout="Homepage";Fusion.metas={"pageType":{"value":"homepage","html":false},"description":{"value":"OPB News Home Page - Elections 2024","html":false},"keywords":{"value":"opb, homepage, oregon elections, washington state elections ","html":false},"title":{"value":"Oregon Public Broadcasting","html":true}};Fusion.outputType="default";Fusion.template="page/pUs5R71akeFC1s";Fusion.tree={"collection":"layouts","type":"Homepage","props":{"collection":"layouts","type":"Homepage","id":"Homepage","childProps":[{"collection":"sections","id":0},{"collection":"sections","id":1},{"collection":"sections","id":2},{"collection":"sections","id":3},{"collection":"sections","id":4},{"collection":"sections","id":5},{"collection":"sections","id":6},{"collection":"sections","id":7},{"collection":"sections","id":8},{"collection":"sections","id":9},{"collection":"sections","id":10},{"collection":"sections","id":11},{"collection":"sections","id":12},{"collection":"sections","id":13}]},"children":[{"collection":"sections","props":{"collection":"sections","id":0},"children":[{"collection":"features","type":"global/banner","props":{"collection":"features","type":"global/banner","id":"f0fuYZaGjtzEGj","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"style":"membership","title":"Stand for news that matters and reporting you can trust.","description":"Contribute Now!","link":"https://www.opb.org/give/","showBanner":false,"tabletMargin":false,"gaPromotionCampaign":"OPBWinter2025","useCookie":null,"cookieName":null,"cookieFrequency":null,"cookieDisplayTotal":null},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/header","props":{"collection":"features","type":"global/header","id":"f0fwFNZNjtzExD","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/banner","props":{"collection":"features","type":"global/banner","id":"f0f6W92959BM5ju","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"style":"membership","title":"Stand for news that matters and reporting you can trust.","description":"Contribute Now!","link":"https://www.opb.org/give/","showBanner":false,"tabletMargin":false,"gaPromotionCampaign":"OPBWinter2025","useCookie":null,"cookieName":null,"cookieFrequency":null,"cookieDisplayTotal":null,"pbInternal_cloneId":"f0f6W92959BM5ju"},"displayProperties":{},"localEdits":{},"variants":{}}}]},{"collection":"sections","props":{"collection":"sections","id":1},"children":[{"collection":"features","type":"global/banner","props":{"collection":"features","type":"global/banner","id":"f0fgFK7qUvLU7gj","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"style":"membership","title":"Stand for news that matters and reporting you can trust.","description":"Contribute Now!","link":"https://www.opb.org/give/","showBanner":false,"tabletMargin":false,"gaPromotionCampaign":"OPBWinter2025","useCookie":null,"cookieName":null,"cookieFrequency":null,"cookieDisplayTotal":null,"pbInternal_cloneId":"f0fgFK7qUvLU7gj"},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/inTheNews","props":{"collection":"features","type":"global/inTheNews","id":"f0f0Lqc1ktzEiP","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"dataSource":"collection","title":"In The News","collectionId":"CCJPLJLHN5H4FJ2FEIWDBD3LGY","url1":"","text1":"","url5":"","text5":"","url3":"","text3":"","url2":"","text2":"","text4":"","url4":"","url6":"","text6":"","url7":"","text7":"","leadLinkText":"","leadLinkURL":"","text8":null,"url8":null,"text9":null,"url9":null,"text10":null,"url10":null},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"chains","type":"FeatureWithRail","props":{"collection":"chains","type":"FeatureWithRail","id":"c0fLX9ZvktzE3D","customFields":{"largeStoryLocation":"left","featureColumnLength":1,"subheadingLinkURL":"","subheadingText":"","displayBottomDivider":false},"displayProperties":{}},"children":[{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fWjz25ktzEmq","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"showCaption":false,"relatedLink5Tag":"","showDescription":true,"relatedLink2Tag":"tesla","contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2025/04/06/hood-river-artist-blends-ancient-egyptian-khayamiya-and-modern-media-to-create-liminal-spaces/"}},"tagColor":"red","relatedLink3Tag":"","allowContentEditable":true,"relatedLink8Tag":"","relatedLink9Tag":"","relatedLink10Tag":"","relatedLink7Tag":"","layout":"vert-large","relatedLink6Tag":"","relatedLink1Tag":"across U.S.","showImage":true,"relatedLink4Tag":"","showKicker":false,"showTag":false,"tagLabel":"developing","overrideAssetID":"","showRelatedLinks":false,"relatedLink1Label":"Nationwide ‘Hands Off’ protests denounce Trump and Musk’s government downsizing","relatedLink1Url":"https://www.opb.org/article/2025/04/05/protesters-tee-off-against-trump-and-musk-in-hands-off-rallies-across-the-u-s/","relatedLink2Label":"Electric vehicle market growth stalls in Washington state amid falling Tesla sales","relatedLink2Url":"https://www.opb.org/article/2025/04/05/ev-growth-stalls-washington-tesla/","relatedLink3Label":"","relatedLink3Url":"","showBorderBottom":false,"pbInternal_clipboardId":"f0fROR3hH4SN7TM","linkImage":true,"showAudio":true,"relatedLink4Label":"","relatedLink4Url":"","relatedLink5Url":"","relatedLink5Label":"","relatedLink6Label":"","relatedLink6Url":"","showCredit":true,"overrideImageCaption":"","relatedLink10Url":"","relatedLink10Label":"","relatedLink9Url":"","relatedLink9Label":"","relatedLink8Url":"","relatedLink8Label":"","showLastUpdatedDate":false,"showPublishedDate":false},"displayProperties":{},"localEdits":{"OL5PZDCY55E2NGA4CAHPIZBV4M":{"headlines":{"basic":"Pacific Northwest joins nationwide 'Hands Off' movement opposing federal cuts"}}},"variants":{}}},{"collection":"features","type":"global/ad","props":{"collection":"features","type":"global/ad","id":"f0fwDeh7ktzECz","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"renderTablet":true,"renderDesktop":true,"renderMobile":true},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/storyCardFeed","props":{"collection":"features","type":"global/storyCardFeed","id":"f0f7MWedg2Ifa2D","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"showAudio":false,"contentConfig":{"contentService":"content-feed","contentConfigValues":{"includeContentTypes":"story","size":4,"offset":0,"includeTags":"","excludeTags":""}},"layout":"vert-compact","headline":"Most Recent","headlineLink":"https://www.opb.org/tag/news/","pbInternal_cloneId":"f0f7MWedg2Ifa2D"},"displayProperties":{},"localEdits":{},"variants":{}}}]},{"collection":"features","type":"global/divider","props":{"collection":"features","type":"global/divider","id":"f0f67uXEmvDI3NW","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"style":"thick"},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/newsletter","props":{"collection":"features","type":"global/newsletter","id":"f0fXXQWLktzES0","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"newsletter":"subscribe_OPB_First_Look","description":"Sign up today for OPB’s “First Look” – your daily guide to the most important news and culture stories from around the Northwest.","buttonText":"Sign up","header":"📨 Daily news in your inbox","ampSignupURL":"https://www.opb.org/newsletters/"},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/divider","props":{"collection":"features","type":"global/divider","id":"f0fNqq9JLJsnQf","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"style":"thick"},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/InternalPromotion","props":{"collection":"features","type":"global/InternalPromotion","id":"f0fJvfx4Jx4oyr","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"photoId":"W3ONFGNVG5BAXFAIJWAXCNEJUQ","text":"Treat yourself to high drama. Binge-watch Wolf Hall on OPB Passport.","buttonText":"Become a Sustainer and watch now!","buttonLink":"https://www.opb.org/support/passport-campaign/?s=OAMEGNW250301005","gaPromotionCampaign":"Passport_WolfHall_0325"},"displayProperties":{},"localEdits":{},"variants":{}}}]},{"collection":"sections","props":{"collection":"sections","id":2},"children":[{"collection":"chains","type":"TwoColWithFeature","props":{"collection":"chains","type":"TwoColWithFeature","id":"c0fEWrWVdQAt2dU","customFields":{"firstColumnLength":2,"secondColumnLength":2,"thirdColumnLength":1,"alignment":"right","subheadingText":"Northwest News","subheadingLinkURL":"","displayTopDivider":false,"displayBottomDivider":false,"hide":false,"pbInternal_duplicateId":"c0fEWrWVdQAt2dU"},"displayProperties":{}},"children":[{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fRNi3ZUvmS6G4","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2025/04/06/divides-over-gender-identity-flare-as-washington-debates-parent-access-in-schools/"}},"layout":"vert","showDescription":true,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"linkImage":true,"showPublishedDate":false,"showAudio":false,"relatedLink1Url":"https://www.opb.org/article/2024/09/19/wnba-womens-basketball-portland-sports-leader/","relatedLink1Label":"As WNBA arrives, Portland hailed as ‘epicenter of women’s sports’","pbInternal_duplicateId":"f0fRNi3ZUvmS6G4","showRelatedLinks":false,"relatedLink1Tag":"Leadership"},"displayProperties":{},"localEdits":{"OL5PZDCY55E2NGA4CAHPIZBV4M":{"headlines":{"basic":"Protesters across Oregon stand against public services cuts under Trump and Musk"}}},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0f1JB8pkTmS63k","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2025/04/05/hands-off-protests-oregon-washington/"}},"layout":"vert","showDescription":true,"showImage":false,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"showPublishedDate":false,"showAudio":false,"linkImage":true,"pbInternal_duplicateId":"f0f1JB8pkTmS63k"},"displayProperties":{},"localEdits":{"OL5PZDCY55E2NGA4CAHPIZBV4M":{"headlines":{"basic":"Protesters across Oregon stand against public services cuts"}}},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fnEOua9PhK3LB","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2025/04/06/funding-cuts-southern-oregon-forests/"}},"layout":"vert","showDescription":true,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"linkImage":true,"showAudio":false,"showRelatedLinks":false,"relatedLink1Url":"https://www.opb.org/article/2025/03/31/oregon-sandy-river-eulachon-smelt-dip-fishery-fishing-troutdale-fish/","relatedLink1Label":"Thousands line Oregon’s Sandy River for rare 7-hour smelt fishery","relatedLink2Label":"","relatedLink2Url":"","showPublishedDate":false,"overrideAssetID":"","pbInternal_duplicateId":"f0fnEOua9PhK3LB"},"displayProperties":{},"localEdits":{"G52CYHEV4BE5PEHG5JY5TYWPCU":{"headlines":{"basic":"High tariffs could be ‘catastrophic’ for Oregon footwear and apparel companies"},"description":{"basic":"The stock price of Beaverton-based Nike, dropped sharply in response to the news that tariffs against Vietnam would rise 46%. Vietnam produces half of Nike footwear."}}},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fqraHz0NBt2SM","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2025/04/06/southern-oregon-university-students-tke-brotherhood-fraternity/"}},"layout":"vert","showDescription":true,"showImage":false,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"showTag":false,"tagLabel":"Listen","showAudio":false,"showPublishedDate":false,"linkImage":true,"pbInternal_duplicateId":"f0fqraHz0NBt2SM","overrideAssetID":"","relatedLink1Label":"Oregon could again delay clean truck rules to give technology, chargers time to catch up","relatedLink1Url":"https://www.opb.org/article/2025/03/13/oregon-delays-clean-truck-rules/","relatedLink1Tag":"Recently","showRelatedLinks":false},"displayProperties":{},"localEdits":{"HHFAKDWPFFEHPL7WNF2FYUKOWU":{"headlines":{"basic":"Oregon DHS opens sexual abuse investigation into former spokesperson"}}},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0f0YCu2zMCt2eP","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2025/04/06/pacific-crest-trail-federal-cuts/"}},"layout":"vert","showDescription":true,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"linkImage":true,"showRelatedLinks":true,"relatedLink1Label":"How this hiker breaks records by walking the Pacific Crest Trail solo","relatedLink1Url":"https://www.opb.org/article/2024/08/11/how-she-hikes-alone-and-breaks-records-on-one-of-the-longest-trails-in-us/","relatedLink1Tag":"","relatedLink2Label":"Eugene trail runner’s new memoir explores grief, resilience on the Oregon Pacific Crest Trail","relatedLink2Url":"https://www.opb.org/article/2024/05/05/eugene-oregon-runner-emily-halnon-record-time-pacific-crest-trail-book/","relatedLink2Tag":"","overrideAssetID":"","relatedLink3Label":"","relatedLink3Url":"","relatedLink4Label":"","relatedLink4Url":"","relatedLink3Tag":"","showAudio":true,"showPublishedDate":false,"showKicker":false,"relatedLink5Label":"","relatedLink5Url":"","pbInternal_duplicateId":"f0f0YCu2zMCt2eP","showTag":false,"tagLabel":"Listen"},"displayProperties":{},"localEdits":{"PUUWGPV6IJF6DALC23KMGNF44I":{"headlines":{"basic":"Oregon has spent $46M fighting black market cannabis. Officials can’t tell if it’s working"},"description":{"basic":"Following the legalization of recreational cannabis in 2014 in Oregon, concerns about illegal cannabis operations surged. In response, lawmakers established the Illegal Marijuana Market Enforcement Grant in 2017. But is the multi-million dollar effort to tackle the illegal market working?"}}},"variants":{}}}]},{"collection":"chains","type":"ThreeColumn","props":{"collection":"chains","type":"ThreeColumn","id":"c0fDl0HiRDyM3gh","customFields":{"firstColumnLength":1,"secondColumnLength":1,"thirdColumnLength":1,"mobileSpacing":true,"subheadingText":"","hide":false,"displayTopDivider":false,"displayBottomDivider":false,"pbInternal_cloneId":"c0fDl0HiRDyM3gh"},"displayProperties":{}},"children":[{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fhTs2g6RGx4C8","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2025/04/06/oregon-has-spent-dollar46-million-fighting-black-market-cannabis-officials-cant-tell-if-its-working/"}},"layout":"vert","showDescription":false,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"linkImage":true,"showAudio":false,"pbInternal_cloneId":"f0fhTs2g6RGx4C8","showKicker":true},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fWOUI009ax4qR","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2025/04/04/mt-mountain-bachelor-powdr-central-oregon-bend-sale-ski-resort/"}},"layout":"vert","showDescription":false,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"linkImage":true,"showAudio":false,"pbInternal_cloneId":"f0fWOUI009ax4qR","showKicker":true},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fbCWQEe25l6ys","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2025/04/05/uo-faculty-ratifies-new-contract/"}},"layout":"vert","showDescription":false,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"linkImage":true,"showAudio":false,"showKicker":true},"displayProperties":{},"localEdits":{},"variants":{}}}]},{"collection":"chains","type":"FeatureWithRail","props":{"collection":"chains","type":"FeatureWithRail","id":"c0fiQqbiNEJSiS","customFields":{"largeStoryLocation":"left","featureColumnLength":1,"subheadingText":"","subheadingLinkURL":"","hide":true},"displayProperties":{}},"children":[{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fjyP0Ld9DQ6v8","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2025/04/04/oregon-department-human-services-gene-evans-st-helens-spokesman-sexual-abuse-students/"}},"layout":"vert-large","showDescription":true,"showImage":true,"showCaption":false,"showCredit":true,"tagColor":"blue","allowContentEditable":true,"linkImage":true},"displayProperties":{},"localEdits":{"HHFAKDWPFFEHPL7WNF2FYUKOWU":{"headlines":{"basic":"Oregon DHS opens sexual abuse investigation into former spokesman Gene Evans"}}},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fFqRxnhGsH5bl","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2025/04/04/mt-mountain-bachelor-powdr-central-oregon-bend-sale-ski-resort/"}},"layout":"vert","showDescription":true,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"linkImage":true,"showKicker":true,"showBorderBottom":true},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fIQmkYHTCG5CF","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2025/04/03/oregon-supreme-court-tillamook-lawsuit-case-moves-forward/"}},"layout":"vert","showDescription":true,"showImage":false,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"linkImage":true,"showKicker":true,"showBorderBottom":true},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0f4N5JLA00U63j","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2025/04/03/portland-councilors-pcef-tax-hike/"}},"layout":"hor","showDescription":false,"showImage":false,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"linkImage":true,"showKicker":true},"displayProperties":{},"localEdits":{},"variants":{}}}]},{"collection":"chains","type":"FeatureWithRail","props":{"collection":"chains","type":"FeatureWithRail","id":"c0f2QaywZ0LYaQ","customFields":{"largeStoryLocation":"left","featureColumnLength":1,"hide":true},"displayProperties":{}},"children":[{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fpfjMgEwKX4E9","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2025/04/03/salmon-return-to-the-klamaths-oregon-waters-but-the-rivers-headwaters-are-still-blocked/"}},"layout":"vert-large","showDescription":true,"showImage":true,"showCaption":false,"showCredit":true,"tagColor":"blue","allowContentEditable":true,"linkImage":true},"displayProperties":{},"localEdits":{"CYF75Q2JE5A2BFLO5PN4I3UZTM":{"headlines":{"basic":"With 4 dams gone, farmers and tribes seek compromise on the Klamath"},"description":{"basic":"After decades of conflict, farmers and tribes say they’re working in concert to restore salmon habitat in the Klamath Basin. Two dams remain — one that blocks fish passage another that plays a key role for agriculture."}}},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0f6Va96HJi05z1","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2025/04/04/opb-politics-now-pacific-northwest-dam-removal/"}},"layout":"vert","showDescription":true,"showImage":false,"showCaption":false,"showCredit":false,"tagColor":"kmhd","allowContentEditable":true,"linkImage":true,"showAudio":true,"showTag":true,"tagLabel":"opb politics now"},"displayProperties":{},"localEdits":{"F23G7SF6FJD3RMRBSKUFM6QOKI":{"headlines":{"basic":"What does Klamath dam removal mean for dams elsewhere?"},"description":{"basic":"Removal of four Klamath River dams was the largest such project in U.S. history. The \"OPB Politics Now\" podcast discusses whether it will have implications for dam removal campaigns elsewhere in the Pacific Northwest."}}},"variants":{}}}]},{"collection":"chains","type":"EvenSpacedChain","props":{"collection":"chains","type":"EvenSpacedChain","id":"c0foRFpnZElT5G8","customFields":{"firstColumnLength":3,"mobileSpacing":true,"numberOfColumns":"three","secondColumnLength":3,"thirdColumnLength":3,"useEvenSpacing":true,"hide":true,"subheadingText":"","pbInternal_duplicateId":"c0foRFpnZElT5G8"},"displayProperties":{}},"children":[{"collection":"features","type":"global/htmlBox","props":{"collection":"features","type":"global/htmlBox","id":"f0fnnXQDPUlT5v3","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"addSpacing":true,"includePym":true,"HTMLContent":"<iframe src=\"https://d1azooxr54tv8o.cloudfront.net/opb/V2.0/thumbnails/cases_thumbnail/index.html\" scroll=\"no\" style=\"width: 100%; height: 210px; border: 0; overflow:hidden\"></iframe>","wrap0Title":"Oregon COVID-19 cases","wrap2Description":"","wrap1Credit":"Source: Oregon Health Authority. Created by Jacob Fenton, Portland Record","pbInternal_duplicateId":"f0fnnXQDPUlT5v3"},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/htmlBox","props":{"collection":"features","type":"global/htmlBox","id":"f0fiTPUQ3EDt2hp","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"addSpacing":true,"includePym":true,"pbInternal_cloneId":"f0fW1cPJI1WKkB","HTMLContent":"<iframe src=\"https://d1azooxr54tv8o.cloudfront.net/opb/V2.0/thumbnails/hospitals_thumbnail/index.html\" scroll=\"no\" style=\"width: 100%; height: 210px; border: 0; overflow:hidden\"></iframe>","wrap0Title":"Oregon hospital usage","wrap2Description":"","wrap1Credit":"Depending on staffing, Oregon has between 600 and 800 adult ICU beds and between 4,000 and 7,000 regular beds. Labeled percentages are for COVID cases. Source: Oregon Health Authority. Created by Jacob Fenton, Portland Record.","pbInternal_duplicateId":"f0fiTPUQ3EDt2hp"},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/htmlBox","props":{"collection":"features","type":"global/htmlBox","id":"f0f3O8X4FRDt2DR","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"addSpacing":true,"includePym":true,"pbInternal_cloneId":"f0fO63SHlgFLFX","HTMLContent":"<iframe src=\"https://d1azooxr54tv8o.cloudfront.net/opb/V2.0/thumbnails/vaccines_thumbnail/index.html\" scroll=\"no\" style=\"width: 100%; height: 210px; border: 0; overflow:hidden\"></iframe>","wrap0Title":"Oregon vaccination rate","wrap2Description":"","wrap1Credit":"\"Vaccinated” means two doses of Moderna/Pfizer or one of Johnson & Johnson. Boosted means an additional dose beyond that. Source: Centers for Disease Control. Created by Jacob Fenton, Portland Record.","pbInternal_duplicateId":"f0f3O8X4FRDt2DR"},"displayProperties":{},"localEdits":{},"variants":{}}}]}]},{"collection":"sections","props":{"collection":"sections","id":3},"children":[]},{"collection":"sections","props":{"collection":"sections","id":4},"children":[{"collection":"features","type":"global/SubHeading","props":{"collection":"features","type":"global/SubHeading","id":"f0fr8N9SG6Td6xf","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"style":"default","text":"Trump's Second Term And The Northwest","headingLinkURL":"https://www.opb.org/tag/politics"},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fjA7dfjreB6BY","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2025/04/05/shelton-mcmurphey-johnson-house-federal-staffing/"}},"layout":"vert-large","showDescription":true,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"showBorderBottom":false,"linkImage":true,"showPublishedDate":false,"showAudio":true,"overrideAssetID":"","relatedLink1Url":"https://www.opb.org/article/2025/04/01/central-oregon-community-college-loses-dollar3m-of-federal-funding-for-madras-expansion/","relatedLink1Label":"Central Oregon Community College loses $3M of federal funding for Madras expansion","showRelatedLinks":false,"relatedLink1Tag":"this week","relatedLink2Url":"https://www.opb.org/article/2025/04/02/oregon-other-states-say-trump-freeze-fema-aid-violates-court-order/","relatedLink2Label":"Oregon and other states say Trump’s continued freeze on much-needed FEMA aid violates a judge’s order","relatedLink2Tag":"other federal funding","relatedLink3Url":"https://www.opb.org/article/2025/04/02/oregon-department-of-education-shuts-down-literacy-math-development-programs-due-to-unexpected-federal-funding-cut/","relatedLink3Label":"Oregon Department of Education shuts down literacy, math development programs due to unexpected federal funding cut","relatedLink3Tag":"More cuts","showTag":false,"tagLabel":"","showKicker":false},"displayProperties":{},"localEdits":{"EJFEPMFR45EMLJ6KT6TFS2JXZM":{"headlines":{"basic":"Central Oregon Community College loses $3M of federal funding for Madras expansion"}}},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0flBjAENvAf5Bn","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2025/04/05/robert-lasnik-federal-judge-seattle-trump/"}},"layout":"hor","showDescription":true,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true},"displayProperties":{},"localEdits":{},"variants":{}}}]},{"collection":"sections","props":{"collection":"sections","id":5},"children":[{"collection":"features","type":"global/SubHeading","props":{"collection":"features","type":"global/SubHeading","id":"f0ffWVWEA4OFEt","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"style":"default","text":" Presidency: National Lens"},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0foB2Gbg5PtcYV","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"collections-story","contentConfigValues":{"collectionId":"3DNXLLIM6VFUFIBKPD5747QDJE","from":0}},"layout":"vert","showDescription":false,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"red","allowContentEditable":true,"linkImage":true,"showBorderBottom":true,"relatedLink1Label":"DOGE wants to cut $1 trillion this year. But it's not looking at big spending drivers","relatedLink1Url":"https://www.opb.org/article/2025/03/06/doge-wants-to-cut-dollar1-trillion-this-year-why-that-would-be-tough/","relatedLink1Tag":"","showRelatedLinks":false,"showPublishedDate":true,"showTag":false,"tagLabel":"breaking news"},"displayProperties":{},"localEdits":{"REJHZBCP4ZOMJFWVQRICTQNLTI":{"headlines":{"basic":"5 takeaways from Tuesday's elections giving Republicans cause for concern"}}},"variants":{}}},{"collection":"features","type":"global/storyCardFeed","props":{"collection":"features","type":"global/storyCardFeed","id":"f0fpl9HeCWKLbl4","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"showAudio":false,"contentConfig":{"contentService":"collections","contentConfigValues":{"collectionId":"3DNXLLIM6VFUFIBKPD5747QDJE","from":1,"size":6}},"layout":"vert-compact","headline":"","showKicker":true,"pbInternal_cloneId":"f0f2McThcqMI5RJ"},"displayProperties":{},"localEdits":{},"variants":{}}}]},{"collection":"sections","props":{"collection":"sections","id":6},"children":[{"collection":"chains","type":"ThreeColumn","props":{"collection":"chains","type":"ThreeColumn","id":"c0fvS2THq5jO7LO","customFields":{"firstColumnLength":1,"secondColumnLength":1,"thirdColumnLength":1,"mobileSpacing":true,"subheadingText":"National Week of Wildlife","displayTopDivider":false},"displayProperties":{}},"children":[{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0f1YCO20L5F3Rc","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2020/10/30/pikas-return-to-the-gorge-or-so-researchers-think/"}},"layout":"vert","showDescription":false,"showImage":true,"showCaption":true,"showCredit":true,"tagColor":"blue","allowContentEditable":true},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fC5eeY07yM5xQ","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2025/02/06/urban-naturalist-mike-houck-tracks-great-blue-herons-on-the-willamette-river/"}},"layout":"vert","showDescription":false,"showImage":true,"showCaption":true,"showCredit":true,"tagColor":"blue","allowContentEditable":true},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fdzZ6TWAhr3GL","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2022/03/29/want-to-study-how-aliens-might-think-look-to-the-octopus/"}},"layout":"vert","showDescription":false,"showImage":true,"showCaption":true,"showCredit":true,"tagColor":"blue","allowContentEditable":true},"displayProperties":{},"localEdits":{},"variants":{}}}]},{"collection":"chains","type":"ThreeColumn","props":{"collection":"chains","type":"ThreeColumn","id":"c0f5CD8DzgN7xu","customFields":{"firstColumnLength":1,"secondColumnLength":1,"thirdColumnLength":1,"mobileSpacing":true,"subheadingText":"Don't Miss","hide":false,"displayTopDivider":true,"displayBottomDivider":false},"displayProperties":{}},"children":[{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fh7caeMQGd83B","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2025/04/03/oregon-supreme-court-tillamook-lawsuit-case-moves-forward/"}},"layout":"vert","showDescription":false,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"linkImage":true,"showAudio":true,"showPublishedDate":true},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fMG17Xyi5W3k1","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2025/04/03/salmon-return-to-the-klamaths-oregon-waters-but-the-rivers-headwaters-are-still-blocked/"}},"layout":"vert","showDescription":false,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"linkImage":true,"showAudio":false,"showPublishedDate":true,"showKicker":false,"showRelatedLinks":true,"relatedLink1Label":"‘OPB Politics Now’: Is the Pacific Northwest entering an era of dam removal?","relatedLink1Url":"https://www.opb.org/article/2025/04/04/opb-politics-now-pacific-northwest-dam-removal/"},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fF3QCVY0jl41k","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2025/03/26/trump-administration-halts-deliveries-oregon-food-bank/"}},"layout":"vert","showDescription":false,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"showAudio":true,"linkImage":true,"showPublishedDate":true,"showKicker":false,"overrideAssetID":""},"displayProperties":{},"localEdits":{},"variants":{}}}]},{"collection":"chains","type":"OneColWithFeature","props":{"collection":"chains","type":"OneColWithFeature","id":"c0f4YKt0mtzESR","customFields":{"largeStoryLocation":"left","showBorderBetweenStories":true,"subheadingText":"Nation & World","subheadingLinkURL":"https://www.opb.org/tag/world/","displayTopDivider":true,"featureColumnLength":1,"hide":false,"numberOfColumns":"two","useEvenSpacing":true,"displayBottomDivider":false,"mobileSpacing":false},"displayProperties":{}},"children":[{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fQthKYltzEnF","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"collections-story","contentConfigValues":{"collectionId":"TRZN7AH53JESBCWZ6NC4TLBEP4","from":0}},"layout":"vert","showImage":true,"showCaption":false,"showDescription":true,"tagColor":"blue","allowContentEditable":true,"relatedLink1Tag":"","relatedLink2Tag":"","relatedLink3Tag":"","relatedLink4Tag":"","relatedLink5Tag":"","relatedLink6Tag":"","relatedLink7Tag":"","relatedLink8Tag":"","relatedLink9Tag":"","relatedLink10Tag":"","relatedLink1Label":"Supreme Court confronts another challenge to the Voting Rights Act","relatedLink1Url":"https://www.opb.org/article/2025/03/31/supreme-court-confronts-another-challenge-to-the-voting-rights-act/","showRelatedLinks":false,"showKicker":false,"showTag":false,"tagLabel":"Happening Now","showAudio":true,"relatedLink2Label":"","relatedLink2Url":"","relatedLink3Url":"","relatedLink3Label":"","relatedLink4Label":"","overrideAssetID":"","linkImage":true,"pbInternal_cloneId":"f0ffc1VSZBQW2ab","relatedLink4Url":"","relatedLink5Label":"","relatedLink5Url":"","relatedLink6Label":"","relatedLink6Url":"","relatedLink7Label":"","relatedLink7Url":"","relatedLink8Url":"","showBorderBottom":false,"showLastUpdatedDate":false,"showPublishedDate":true,"showCredit":false},"displayProperties":{},"localEdits":{"WIGK5YWUPNCN7NGVEG2YYEFEE4":{"description":{"basic":"\n"}}},"variants":{}}},{"collection":"features","type":"global/storyCardFeed","props":{"collection":"features","type":"global/storyCardFeed","id":"f0f64W7WltzEeh","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"showAudio":false,"contentConfig":{"contentService":"collections","contentConfigValues":{"collectionId":"TRZN7AH53JESBCWZ6NC4TLBEP4","from":1,"size":3}},"layout":"hor","hideImage":true,"showPublishedDate":false,"showKicker":false},"displayProperties":{},"localEdits":{},"variants":{}}}]}]},{"collection":"sections","props":{"collection":"sections","id":7},"children":[]},{"collection":"sections","props":{"collection":"sections","id":8},"children":[]},{"collection":"sections","props":{"collection":"sections","id":9},"children":[{"collection":"chains","type":"FeatureWithRail","props":{"collection":"chains","type":"FeatureWithRail","id":"c0fBvrACm7Fc5cf","customFields":{"largeStoryLocation":"left","featureColumnLength":1,"subheadingText":"Unplug From The News","subheadingLinkURL":"https://www.opb.org/shows/","firstColumnLength":2,"secondColumnLength":2,"thirdColumnLength":2,"displayTopDivider":false,"hide":false,"displayBottomDivider":false},"displayProperties":{}},"children":[{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fYL8bBWrjI6mA","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2025/04/04/art-exhibit-commemorate-50-fifty-years-vietnamese-culture-oregon-jeffrey-allen-van-le-quang-vinh/"}},"layout":"vert-large","showDescription":true,"showImage":true,"showCaption":false,"showCredit":true,"tagColor":"red","allowContentEditable":true,"overrideAssetID":"","linkImage":true,"showAudio":true,"showBorderBottom":false,"showPublishedDate":true,"showTag":true,"tagLabel":"oregon art beat","relatedLink1Url":"https://www.opb.org/article/2025/03/02/at-work-with-series-oregon-family-mexican-cheese-don-froylan-creamery/","relatedLink1Label":"How an Oregon family became masters of Mexican cheese","showRelatedLinks":false,"relatedLink2Label":"Helping Portland-area families experiencing homelessness get into housing","relatedLink2Url":"https://www.opb.org/article/2025/02/01/at-work-with-helping-portland-families-experiencing-homelessness-get-into-housing/","relatedLink3Label":"You’re skating on thick ice with this Portland Zamboni driver","relatedLink3Url":"https://www.opb.org/article/2024/12/21/at-work-with-portland-zamboni-driver-lloyd-center-ice-rink/"},"displayProperties":{},"localEdits":{"OCWNMZNETNNDVIAJNTGXMNTMIY":{"headlines":{"basic":"Astoria's Michael Hurley, a godfather of folk music's underground, dies at 83"},"description":{"basic":"Hurley died Tuesday night at home in Astoria, Oregon. Known as the \"Godfather of Freak Folk,\" his influence shaped generations of artists."}}},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fNYPUiJCrT4Cs","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2025/04/04/recipe-butter-miso-radishes-greens-spring/"}},"layout":"vert","showDescription":false,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"linkImage":true,"showAudio":false,"showPublishedDate":true,"showKicker":false,"relatedLink1Url":"","relatedLink1Label":"","showRelatedLinks":false,"showTag":true,"tagLabel":"superabundant","relatedLink2Label":"","relatedLink2Url":"","relatedLink3Label":"","relatedLink3Url":"","showBorderBottom":true},"displayProperties":{},"localEdits":{"L7TCAYRMP5HFRI6Z6BH6OL5XGY":{"headlines":{"basic":"Portland Winterhawks celebrates 50th anniversary on the ice"}}},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fUsrh4YUYO5sr","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.opb.org/article/2025/04/04/michael-hurley-a-godfather-of-underground-folk-has-died/"}},"layout":"vert","showDescription":false,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"red","allowContentEditable":true,"linkImage":true,"showAudio":false,"showPublishedDate":true,"showKicker":false,"pbInternal_cloneId":"f0fUsrh4YUYO5sr","tagLabel":"","showTag":true,"overrideAssetID":""},"displayProperties":{},"localEdits":{"6VYVUV4V5BFVBN4SU6AMQIJBQI":{"description":{"basic":"Chicken quesabirria ahogada, because tortas aren't the only food that can be drowned in luscious salsa."},"headlines":{"basic":"Superabundant recipe: Chicken quesabirria ahogada"}}},"variants":{}}}]}]},{"collection":"sections","props":{"collection":"sections","id":10},"children":[{"collection":"chains","type":"ThreeColumn","props":{"collection":"chains","type":"ThreeColumn","id":"c0fzx83TMUoS6je","customFields":{"firstColumnLength":1,"secondColumnLength":1,"thirdColumnLength":1,"mobileSpacing":true,"pbInternal_duplicateId":"c0fzx83TMUoS6je"},"displayProperties":{}},"children":[{"collection":"features","type":"global/storyCardFeed","props":{"collection":"features","type":"global/storyCardFeed","id":"f0fdACp8cjnT5vt","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"showAudio":false,"contentConfig":{"contentService":"content-feed-by-tag","contentConfigValues":{"sort":"first_publish_date:desc","size":8,"fromIndex":0,"slug":"politics"}},"layout":"vert-compact","headline":"Politics","headlineLink":"https://www.opb.org/politics/","pbInternal_duplicateId":"f0fdACp8cjnT5vt"},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/storyCardFeed","props":{"collection":"features","type":"global/storyCardFeed","id":"f0fY2MXZP3Ft2Y2","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"headline":"Arts & Culture","contentConfig":{"contentService":"content-feed-by-tag","contentConfigValues":{"sort":"first_publish_date:desc","size":8,"fromIndex":0,"slug":"culture"}},"showAudio":false,"layout":"vert-compact","pbInternal_cloneId":"0fPV0HV71SW31ZN","headlineLink":"https://www.opb.org/culture/","pbInternal_duplicateId":"f0fY2MXZP3Ft2Y2"},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/storyCardFeed","props":{"collection":"features","type":"global/storyCardFeed","id":"f0fOcmK9xLnT59P","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"headline":"Science & Environment","contentConfig":{"contentService":"content-feed-by-tag","contentConfigValues":{"sort":"first_publish_date:desc","size":8,"fromIndex":0,"slug":"science-environment\t"}},"showAudio":false,"layout":"vert-compact","pbInternal_cloneId":"0feEadZQXmmNcs","headlineLink":"https://www.opb.org/science_environment/","pbInternal_duplicateId":"f0fOcmK9xLnT59P"},"displayProperties":{},"localEdits":{},"variants":{}}}]}]},{"collection":"sections","props":{"collection":"sections","id":11},"children":[{"collection":"features","type":"global/sustainer","props":{"collection":"features","type":"global/sustainer","id":"f0ff1scgl3QC4Iy","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"layout":"horizontal","fullBleed":true,"text":"Stand with OPB and protect independent journalism for everyone.","buttonText":"Make a Sustaining contribution now","buttonLink":"https://www.opb.org/give/federal-funding/?s=OAMEGNW250100008","gaPromotionCampaign":"Federal_Funding_Homepage"},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/footer","props":{"collection":"features","type":"global/footer","id":"f0f1TzBqmtzEoP","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{},"displayProperties":{},"localEdits":{},"variants":{}}}]},{"collection":"sections","props":{"collection":"sections","id":12},"children":[{"collection":"features","type":"global/streamLauncher","props":{"collection":"features","type":"global/streamLauncher","id":"f0fUYRktmtzE43","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{},"displayProperties":{},"localEdits":{},"variants":{}}}]},{"collection":"sections","props":{"collection":"sections","id":13},"children":[]}]};Fusion.spa=false;Fusion.spaEnabled=false;</script><script async="" src="https://opb.video-player.arcpublishing.com/prod/powaBoot.js"></script></body></html>