HTTP/HTML and Web Services

10/25/2022

print view

Why should I care?

Many scientific web services allow access to their databases programatically:

  • BLAST, UniProt, Pathwaycommons, BioGRID, RCSB and many more

If you want to access this data in an automated fashion, you will need to know this

HTTP

Hypertext Transfer Protocol

A request-response protocol in a client-server framework.

HTTP Requests

The request consists of the following:

  • A request line with desired method (action)
  • Request Headers
  • An empty line.
  • An optional message body.

Example

GET / HTTP/1.1
Host: cnn.com
Connection: keep-alive
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Cookie: SelectedEdition=www; optimizelyEndUserId=oeu1364949768474r0.014468349516391754; optimizelySegments=%7B%22170962340%22%3A%22false%22%2C%22171657961%22%3A%22gc%22%2C%22172148679%22%3A%22none%22%2C%22172265329%22%3A%22search%22%7D; optimizelyBuckets=%7B%7D; s_vi=[CS]v1|25F54343051D3284-6000013900246AA6[CE]

HTTP Requests

GET

Requests a representation of the specified resource. Requests using GET should only retrieve data and should have no other effect.

POST

Submits data to the server in the request body. Can have side-effects.

HEAD

Asks for the response identical to the one that would correspond to a GET request, but without the response body (just the headers).

OPTIONS, PUT, DELETE, TRACE and CONNECT

HTTP 1.1 methods that are less commonly used.

Sending Data

GET

Data must be in the query string of the URL. This is the part of the URL after a question mark:

http://server/program/path/?query_string

The query_string is made up of name=value pairs separated by &:

http://server/program/path/?field1=value1&field2=value2&field3=value3

URLs have length limits (differs by browser, but generally needs to be <2000 characters)

POST

The data is sent in the request body. There is no length limit (just patience limit).

HTTP Response

A response consists of the following:

  • A Status-Line (includes response code)
  • Response Headers
  • An empty line
  • An optional message body


Example:

HTTP/1.1 200 OK
Server: nginx
Date: Thu, 10 Oct 2013 14:23:59 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
Set-Cookie: CG=US:PA:Pittsburgh; path=/
Last-Modified: Thu, 10 Oct 2013 14:23:14 GMT
Vary: Accept-Encoding
Cache-Control: max-age=60, private
Expires: Thu, 10 Oct 2013 14:24:58 GMT
Content-Encoding: gzip

<!DOCTYPE HTML> <html lang="en-US"> <head> <title>CNN.com - Breaking News, U.S., World, Weather, Entertainment & Video News</title>

requests

requests is a simple but high-level interface for requesting http data

Also:

  • urllib2 - another high-level interface
  • urllib - similar to urllib2 but different, has urlencode function
  • urllib3 - successor to urllib2 but different
  • httplib - low-level interface to http request
  • mechanize - much higher level interface for scripting web interactions - use this if you need to submit form data, passwords, etc.

get

requests.get takes a URL and returns a response object that contains the message body.

Note: urllib2 and mechanize have a urlopen method that returns a file-like object.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>MSCBIO 2025: Introduction to Bioinformatics Programming in Python</title>
<link href="default.css" rel="stylesheet" type="text/css" />

</head>

<body>
<div class="main">
<img src="logo.png" align=right></img>
<h1>Introduction to Bioinformatics Programming in Python</h1>
<h3><a href="syllabus.pdf">Syllabus</a> | <a href="schedule.html">Schedule</a> | <a href="assignments.html">Assignments</a> | <a href="https://pitt.zoom.us/j/95735576127">Zoom</a> </h3> 

<h2>Announcements</h2>

Course communication will use Canvas discussion boards. <br> 

<p>
<h2>Instructors</h2>
<a href="https://www.ccbb.pitt.edu/Faculty/bahar/lab.html">Anupam Banerjee </a> (<a href="mailto:ANUPAM06@pitt.edu"><tt>ANUPAM06@pitt.edu</tt></a>) </a><br>
<a href="https://www.csb.pitt.edu/Faculty/Faeder/?page_id=14">Ali Sinan Saglam  </a> (<a href="mailto:als251@pitt.edu"><tt>als251@pitt.edu</tt></a>) </a><br>
<a href="https://www.jishnulab.org/coolkids"> TA: Hanxi Xiao </a> (<a href="mailto:XIAOH@pitt.edu"><tt>XIAOH@pitt.edu</tt></a>)<br>
Office Hours: Monday 3pm to 4pm (At The Assembly Building/Zoom)<br>


<h2>General Info</h2>
 The goal
of this course is to provide you with some of the essential computing skills and knowledge you
will need to be a successful computational biologist. 
<p>There are two lectures a week on <b>Tuesdays and Thursdays from 12:00-1:20pm</b> in <a href="https://www.csb.pitt.edu/contact/">Murdoch</a> 814.  Additionally, all lectures will be 
streamed over <a href=" https://pitt.zoom.us/j/98481566044">Zoom</a>.
Each lecture will cover the basics of a different area in computational biology in the context of python
programming project. 
<p>
We will be using <a href="http://www.python.org">Python</a> for the course assignments.
Python includes surprisingly <a href="https://docs.python.org/3.8/">good documentation</a>
for learning the language, but if you would like a hard-copy textbook I recommend
<a href="http://www.amazon.com/Bioinformatics-Programming-Using-Python-Biological/dp/059615450X/ref=sr_1_1?ie=UTF8&qid=1377019134&sr=8-1&keywords=bioinformatics+python">
Bioinformatics Programming Using Python</a> or 
<a href="https://www.amazon.com/Data-Science-Scratch-Principles-Python/dp/149190142X">Data Science from Scratch: First Principles with Python</a>.
<p>
Course materials, such as slides and example code, will be linked from the <a href="schedule.html">schedule</a>.
Course policies can be found in the <a href="syllabus.pdf">syllabus</a>.
</p>
</div> 
</body>
</html>

Must include protocol in URL

---------------------------------------------------------------------------
MissingSchema                             Traceback (most recent call last)
<ipython-input-4-66d7d9d4b965> in <module>
----> 1 fail = requests.get('www.cnn.com')

~\anaconda3\lib\site-packages\requests\api.py in get(url, params, **kwargs)
     74 
     75     kwargs.setdefault('allow_redirects', True)
---> 76     return request('get', url, params=params, **kwargs)
     77 
     78 

~\anaconda3\lib\site-packages\requests\api.py in request(method, url, **kwargs)
     59     # cases, and look like a memory leak in others.
     60     with sessions.Session() as session:
---> 61         return session.request(method=method, url=url, **kwargs)
     62 
     63 

~\anaconda3\lib\site-packages\requests\sessions.py in request(self, method, url, params, data, headers, cookies, files, auth, timeout, allow_redirects, proxies, hooks, stream, verify, cert, json)
    514             hooks=hooks,
    515         )
--> 516         prep = self.prepare_request(req)
    517 
    518         proxies = proxies or {}

~\anaconda3\lib\site-packages\requests\sessions.py in prepare_request(self, request)
    447 
    448         p = PreparedRequest()
--> 449         p.prepare(
    450             method=request.method.upper(),
    451             url=request.url,

~\anaconda3\lib\site-packages\requests\models.py in prepare(self, method, url, headers, files, data, params, auth, cookies, hooks, json)
    312 
    313         self.prepare_method(method)
--> 314         self.prepare_url(url, params)
    315         self.prepare_headers(headers)
    316         self.prepare_cookies(cookies)

~\anaconda3\lib\site-packages\requests\models.py in prepare_url(self, url, params)
    386             error = error.format(to_native_string(url, 'utf8'))
    387 
--> 388             raise MissingSchema(error)
    389 
    390         if not host:

MissingSchema: Invalid URL 'www.cnn.com': No schema supplied. Perhaps you meant http://www.cnn.com?

Requesting with Data (POST)

<Response [200]>
<!doctype html><html lang="en"><head><meta charset="UTF-8"><meta content="/images/branding/googleg/1x/googleg_standard_color_128dp.png" itemprop="image"><title>What's the meaning of life? - Google Search</title><script nonce="qwhd1XQyVMIgaKaSDQplWA">(function(){
document.documentElement.addEventListener("submit",function(b){var a;if(a=b.target){var c=a.getAttribute("data-submitfalse");a="1"===c||"q"===c&&!a.elements.q.value?!0:!1}else a=!1;a&&(b.preventDefault(),b.stopPropagation())},!0);document.documentElement.addEventListener("click",function(b){var a;a:{for(a=b.target;a&&a!==document.documentElement;a=a.parentElement)if("A"===a.tagName){a="1"===a.getAttribute("data-nohref");break a}a=!1}a&&b.preventDefault()},!0);}).call(this);(function(){
var a=window.performance;window.start=Date.now();a:{var b=window;if(a){var c=a.timing;if(c){var d=c.navigationStart,f=c.responseStart;if(f>d&&f<=window.start){window.start=f;b.wsrt=f-d;break a}}a.now&&(b.wsrt=Math.floor(a.now()))}}window.google=window.google||{};var h=function(g){g&&g.target.setAttribute("data-iml",String(Date.now()))};document.documentElement.addEventListener("load",h,!0);google.rglh=function(){document.documentElement.removeEventListener("load",h,!0)};}).call(this);(function(){window._skwEvts=[];})();(function(){window.google.erd={jsr:1,bv:1670,de:true};})();(function(){var sdo=false;var mei=10;
var h=this||self;var k,l=null!=(k=h.mei)?k:1,n,p=null!=(n=h.sdo)?n:!0,q=0,r,t=google.erd,v=t.jsr;google.ml=function(a,b,d,m,e){e=void 0===e?2:e;b&&(r=a&&a.message);if(google.dl)return google.dl(a,e,d),null;if(0>v){window.console&&console.error(a,d);if(-2===v)throw a;b=!1}else b=!a||!a.message||"Error loading script"===a.message||q>=l&&!m?!1:!0;if(!b)return null;q++;d=d||{};b=encodeURIComponent;var c="/gen_204?atyp=i&ei="+b(google.kEI);google.kEXPI&&(c+="&jexpid="+b(google.kEXPI));c+="&srcpg="+b(google.sn)+"&jsr="+b(t.jsr)+"&bver="+b(t.bv);var f=a.lineNumber;void 0!==f&&(c+="&line="+f);var g=
a.fileName;g&&(0<g.indexOf("-extension:/")&&(e=3),c+="&script="+b(g),f&&g===window.location.href&&(f=document.documentElement.outerHTML.split("\n")[f],c+="&cad="+b(f?f.substring(0,300):"No script found.")));c+="&jsel="+e;for(var u in d)c+="&",c+=b(u),c+="=",c+=b(d[u]);c=c+"&emsg="+b(a.name+": "+a.message);c=c+"&jsst="+b(a.stack||"N/A");12288<=c.length&&(c=c.substr(0,12288));a=c;m||google.log(0,"",a);return a};window.onerror=function(a,b,d,m,e){r!==a&&(a=e instanceof Error?e:Error(a),void 0===d||"lineNumber"in a||(a.lineNumber=d),void 0===b||"fileName"in a||(a.fileName=b),google.ml(a,!1,void 0,!1,"SyntaxError"===a.name||"SyntaxError"===a.message.substring(0,11)||-1!==a.message.indexOf("Script error")?3:0));r=null;p&&q>=l&&(window.onerror=null)};})();(function(){
var c=[],e=0;window.ping=function(b){-1==b.indexOf("&zx")&&(b+="&zx="+Date.now());var a=new Image,d=e++;c[d]=a;a.onerror=a.onload=a.onabort=function(){delete c[d]};a.src=b};}).call(this);</script><style>a{color:#1a0dab;text-decoration:none;tap-highlight-color:rgba(0,0,0,.10)}a:visited{color:#4b11a8}a:hover{text-decoration:underline}img{border:0}html{font-family:arial,sans-serif;font-size:14px;line-height:20px;text-size-adjust:100%;color:#3c4043;word-wrap:break-word;background-color:#fff}.bRsWnc{background-color:#fff;border-top:1px solid #dadce0;height:39px;overflow:hidden}.N6RWV{height:51px;overflow-scrolling:touch;overflow-x:auto;overflow-y:hidden}.Uv67qb{box-pack:justify;font-size:12px;line-height:37px;justify-content:space-between;justify-content:space-between}.Uv67qb a,.Uv67qb span{color:#70757a;display:block;flex:none;padding:0 16px;text-align:center;text-transform:uppercase;}span.OXXup{border-bottom:2px solid #4285f4;color:#4285f4;font-weight:bold}a.eZt8xd:visited{color:#70757a}.FElbsf{border-left:1px solid rgba(0,0,0,.12)}header article{overflow:visible}.Pg70bf{height:39px;display:box;display:flex;display:flex;width:100%}.H0PQec{position:relative;flex:1}.sbc{display:flex;width:100%}.Pg70bf input{margin:2px 4px 2px 8px;}.x{width:26px;color:#70757a;font:27px/38px arial, sans-serif;line-height:40px;}#qdClwb{flex:0 0 auto;width:39px;height:39px;border-bottom:0;padding:0;border-top-right-radius:8px;background-color:#1a73e8;border:1px solid #1558d6;background-image:url(data:image/gif;base64,R0lGODdhJAAjAPIHAODr/nCk+MPZ/FmV96zK+/7+/5K5+kqL9iwAAAAAJAAjAEADani63P4wykmbKcQRXDscQAEMXmmeaLQVLCukzyC09AjfeK7v/MAajACLhPMVAgwjsUcEiZa8xgAYrVqv2Kx2iwsIAAABknfBBAKrTE4IcMyot8ur8datqIbQfJdnAfo2WE6BV05wXIiJigkAOw==);}.sc{font-size:16px;position:absolute;top:39px;left:0;right:0;box-shadow:0 2px 5px rgba(0,0,0,.2);z-index:2;background-color:#fff}.sc>div{padding:10px 10px;padding-left:16px;padding-left:14px;border-top:1px solid #dfe1e5;}.scs{background-color:#fafafa;}.noHIxc{display:block;font-size:16px;padding:0 0 0 8px;flex:1;height:35px;outline:none;border:none;width:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);overflow:hidden;}.sbc input[type=text]{background:none}.bz1lBb{background-color:#fff;border-radius:8px 8px 0 0;box-shadow:0 0 0 1px #dfe1e5;margin-top:24px;}.KP7LCb{border-radius:0 0 8px 8px;box-shadow:0px 1px 0px 1px #dfe1e5;margin-bottom:30px;overflow:hidden}html{background-color:#fff}body{margin:0 auto 0 156px;max-width:652px;min-width:652px;padding:0 8px}.cOl4Id{letter-spacing:-1px;text-align:center;font:22pt Futura, Arial, sans-serif;height:37px;font-smoothing:antialiased;padding:32px 28px 0 24px;position:absolute;left:0;top:0}.cOl4Id span{display:inline-block}.V6gwVd{color:#4285f4}.iWkuvd{color:#ea4335}.cDrQ7{color:#fcc934}.ntlR9{color:#34a853}.tJ3Myc{-webkit-transform:rotate(-20deg);position:relative;left:-1px;display:inline-block}footer{text-align:center;margin-top:18px}footer a,footer a:visited,.smiUbb{color:#70757a}.xeDNfc{margin:0 13px;white-space:nowrap}#EOlPnc{margin-top:36px}#EOlPnc>div{margin:20px}.Srfpq{color:#70757a}</style></head><body jsmodel="hspDDf"><header id="hdr"><script nonce="qwhd1XQyVMIgaKaSDQplWA">(function(){
var k=this||self,l=function(a){var b=typeof a;return"object"==b&&null!=a||"function"==b},m=function(a,b){function c(){}c.prototype=b.prototype;a.j=b.prototype;a.prototype=new c;a.prototype.constructor=a;a.l=function(d,e,f){for(var g=Array(arguments.length-2),h=2;h<arguments.length;h++)g[h-2]=arguments[h];return b.prototype[e].apply(d,g)}};var n=Array.prototype.indexOf?function(a,b){return Array.prototype.indexOf.call(a,b,void 0)}:function(a,b){if("string"===typeof a)return"string"!==typeof b||1!=b.length?-1:a.indexOf(b,0);for(var c=0;c<a.length;c++)if(c in a&&a[c]===b)return c;return-1};var p=function(a){return"string"==typeof a.className?a.className:a.getAttribute&&a.getAttribute("class")||""},q=function(a,b){"string"==typeof a.className?a.className=b:a.setAttribute&&a.setAttribute("class",b)},r=function(a,b){a.classList?b=a.classList.contains(b):(a=a.classList?a.classList:p(a).match(/\S+/g)||[],b=0<=n(a,b));return b},v=function(){var a=t,b=u;a.classList?a.classList.remove(b):r(a,b)&&q(a,Array.prototype.filter.call(a.classList?a.classList:p(a).match(/\S+/g)||[],function(c){return c!=
b}).join(" "))};function w(){var a=k.navigator;return a&&(a=a.userAgent)?a:""};var x=function(a){x[" "](a);return a};x[" "]=function(){};var y=-1!=w().indexOf("Gecko")&&!(-1!=w().toLowerCase().indexOf("webkit")&&-1==w().indexOf("Edge"))&&!(-1!=w().indexOf("Trident")||-1!=w().indexOf("MSIE"))&&-1==w().indexOf("Edge");var z=function(a,b){this.type=a;this.target=b};z.prototype.g=function(){};var A=function(){if(!k.addEventListener||!Object.defineProperty)return!1;var a=!1,b=Object.defineProperty({},"passive",{get:function(){a=!0}});try{k.addEventListener("test",function(){},b),k.removeEventListener("test",function(){},b)}catch(c){}return a}();var C=function(a){z.call(this,a?a.type:"");this.relatedTarget=this.target=null;this.button=this.screenY=this.screenX=this.clientY=this.clientX=0;this.key="";this.keyCode=0;this.metaKey=this.shiftKey=this.altKey=this.ctrlKey=!1;this.state=null;this.pointerId=0;this.pointerType="";this.h=null;if(a){var b=this.type=a.type,c=a.changedTouches&&a.changedTouches.length?a.changedTouches[0]:null;this.target=a.target||a.srcElement;var d=a.relatedTarget;if(d){if(y){a:{try{x(d.nodeName);var e=!0;break a}catch(f){}e=
!1}e||(d=null)}}else"mouseover"==b?d=a.fromElement:"mouseout"==b&&(d=a.toElement);this.relatedTarget=d;c?(this.clientX=void 0!==c.clientX?c.clientX:c.pageX,this.clientY=void 0!==c.clientY?c.clientY:c.pageY,this.screenX=c.screenX||0,this.screenY=c.screenY||0):(this.clientX=void 0!==a.clientX?a.clientX:a.pageX,this.clientY=void 0!==a.clientY?a.clientY:a.pageY,this.screenX=a.screenX||0,this.screenY=a.screenY||0);this.button=a.button;this.keyCode=a.keyCode||0;this.key=a.key||"";this.ctrlKey=a.ctrlKey;this.altKey=a.altKey;this.shiftKey=a.shiftKey;this.metaKey=a.metaKey;this.pointerId=a.pointerId||0;this.pointerType="string"===typeof a.pointerType?a.pointerType:B[a.pointerType]||"";this.state=a.state;this.h=a;a.defaultPrevented&&C.j.g.call(this)}};m(C,z);var B={2:"touch",3:"pen",4:"mouse"};C.prototype.g=function(){C.j.g.call(this);var a=this.h;a.preventDefault?a.preventDefault():a.returnValue=!1};var D="closure_listenable_"+(1E6*Math.random()|0);var E=0;var F=function(a,b,c,d,e){this.listener=a;this.proxy=null;this.src=b;this.type=c;this.capture=!!d;this.h=e;this.key=++E;this.g=this.i=!1},G=function(a){a.g=!0;a.listener=null;a.proxy=null;a.src=null;a.h=null};var H=function(a){this.src=a;this.g={};this.h=0};H.prototype.add=function(a,b,c,d,e){var f=a.toString();a=this.g[f];a||(a=this.g[f]=[],this.h++);var g;a:{for(g=0;g<a.length;++g){var h=a[g];if(!h.g&&h.listener==b&&h.capture==!!d&&h.h==e)break a}g=-1}-1<g?(b=a[g],c||(b.i=!1)):(b=new F(b,this.src,f,!!d,e),b.i=c,a.push(b));return b};var I="closure_lm_"+(1E6*Math.random()|0),J={},K=0,M=function(a,b,c,d,e){if(d&&d.once)return L(a,b,c,d,e);if(Array.isArray(b)){for(var f=0;f<b.length;f++)M(a,b[f],c,d,e);return null}c=N(c);return a&&a[D]?a.g(b,c,l(d)?!!d.capture:!!d,e):O(a,b,c,!1,d,e)},O=function(a,b,c,d,e,f){if(!b)throw Error("a");var g=l(e)?!!e.capture:!!e,h=P(a);h||(a[I]=h=new H(a));c=h.add(b,c,d,g,f);if(c.proxy)return c;d=Q();c.proxy=d;d.src=a;d.listener=c;if(a.addEventListener)A||(e=g),void 0===e&&(e=!1),a.addEventListener(b.toString(),d,e);else if(a.attachEvent)a.attachEvent(R(b.toString()),d);else if(a.addListener&&a.removeListener)a.addListener(d);else throw Error("b");K++;return c},Q=function(){var a=S,b=function(c){return a.call(b.src,b.listener,c)};return b},L=function(a,b,c,d,e){if(Array.isArray(b)){for(var f=0;f<b.length;f++)L(a,b[f],c,d,e);return null}c=N(c);return a&&a[D]?a.h(b,c,l(d)?!!d.capture:!!d,e):O(a,b,c,!0,d,e)},T=function(a){if("number"!==typeof a&&a&&!a.g){var b=a.src;if(b&&b[D])b.o(a);else{var c=a.type,d=a.proxy;b.removeEventListener?b.removeEventListener(c,d,a.capture):b.detachEvent?b.detachEvent(R(c),d):b.addListener&&b.removeListener&&b.removeListener(d);K--;if(c=P(b)){d=a.type;if(d in c.g){var e=c.g[d],f=n(e,a),g;(g=0<=f)&&Array.prototype.splice.call(e,f,1);g&&(G(a),0==c.g[d].length&&(delete c.g[d],c.h--))}0==c.h&&(c.src=null,b[I]=null)}else G(a)}}},R=function(a){return a in J?J[a]:J[a]="on"+a},S=function(a,b){if(a.g)a=!0;else{b=new C(b,this);var c=a.listener,d=a.h||a.src;a.i&&T(a);a=c.call(d,b)}return a},P=function(a){a=a[I];return a instanceof H?a:null},U="__closure_events_fn_"+(1E9*Math.random()>>>0),N=function(a){if("function"===typeof a)return a;a[U]||(a[U]=function(b){return a.handleEvent(b)});return a[U]};var u,t=document.documentElement,V;function W(){T(V);V=L(t,"mousedown",function(){v();X()},{capture:!0})}function X(){T(V);V=M(t,"keydown",function(a){if(9===a.keyCode){a=t;var b=u;if(a.classList)a.classList.add(b);else if(!r(a,b)){var c=p(a);q(a,c+(0<c.length?" "+b:b))}W()}})};u="zAoYTe";X();}).call(this);</script><div class="cOl4Id"><a href="/?sa=X&amp;ved=0ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQOwgC"><span class="V6gwVd">G</span><span class="iWkuvd">o</span><span class="cDrQ7">o</span><span class="V6gwVd">g</span><span class="ntlR9">l</span><span class="iWkuvd tJ3Myc">e</span></a></div><div class="bz1lBb"><form class="Pg70bf" id="sf"><input name="ie" value="ISO-8859-1" type="hidden"><div class="H0PQec"><div class="sbc esbc"><input class="noHIxc" value="What's the meaning of life?" autocapitalize="none" autocomplete="off" name="q" spellcheck="false" type="text"><input name="oq" type="hidden"><input name="aqs" type="hidden"><div class="x">×</div><div class="sc"></div></div></div><button id="qdClwb" type="submit"></button></form></div><noscript><meta content="0;url=/search?q=What%27s+the+meaning+of+life%3F&amp;ie=UTF-8&amp;gbv=1&amp;sei=PcBWY_PQLd-viLMPv9CKuAM" http-equiv="refresh"><style>table,div,span,p{display:none}</style><div style="display:block">Please click <a href="/search?q=What%27s+the+meaning+of+life%3F&amp;ie=UTF-8&amp;gbv=1&amp;sei=PcBWY_PQLd-viLMPv9CKuAM">here</a> if you are not redirected within a few seconds.</div></noscript></header><div id="main"><div><div class="KP7LCb"> <div class="bRsWnc"> <div class="N6RWV"> <div class="Pg70bf Uv67qb"> <span class="OXXup">All</span><a class="eZt8xd" href="/search?q=What%27s+the+meaning+of+life%3F&amp;ie=UTF-8&amp;source=lnms&amp;tbm=isch&amp;sa=X&amp;ved=0ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ_AUIBigB">Images</a><a class="eZt8xd" href="/search?q=What%27s+the+meaning+of+life%3F&amp;ie=UTF-8&amp;source=lnms&amp;tbm=vid&amp;sa=X&amp;ved=0ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ_AUIBygC">Videos</a><a class="eZt8xd" href="/search?q=What%27s+the+meaning+of+life%3F&amp;ie=UTF-8&amp;source=lnms&amp;tbm=shop&amp;sa=X&amp;ved=0ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ_AUICCgD">Shopping</a>  <a href="http://maps.google.com/maps?q=What%27s+the+meaning+of+life%3F&amp;um=1&amp;ie=UTF-8&amp;sa=X&amp;ved=0ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ_AUICSgE">Maps</a>  <a href="/search?q=What%27s+the+meaning+of+life%3F&amp;ie=UTF-8&amp;source=lnms&amp;tbm=nws&amp;sa=X&amp;ved=0ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ_AUICigF">News</a>  <a href="/search?q=What%27s+the+meaning+of+life%3F&amp;ie=UTF-8&amp;source=lnms&amp;tbm=bks&amp;sa=X&amp;ved=0ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ_AUICygG">Books</a>  <div class="FElbsf"><a href="/advanced_search" style="white-space:nowrap" id="st-toggle" role="button">Search tools</a></div> </div> </div> </div> </div><div class="Pg70bf wEsjbd Gx5Zad xpd EtOod pkphOe" style="display:none" id="st-card"><style>.wEsjbd{background-color:#fff;height:44px;white-space:nowrap}.coPU8c{height:60px;overflow-scrolling:touch;overflow-x:auto;overflow-y:hidden}.Xj2aue{height:44px;overflow:hidden}.RnNGze{margin:11px 16px}.wEsjbd div,.wEsjbd a,.wEsjbd li{outline-width:0;outline:none}</style><div class="Xj2aue"><div class="coPU8c"><div class="RnNGze"><style>.PA9J5{display:inline-block}.RXaOfd{display:inline-block;height:22px;position:relative;padding-top:0;padding-bottom:0;padding-right:16px;padding-left:0;line-height:22px;cursor:pointer;text-transform:uppercase;font-size:12px;color:#70757a}.sa1toc{background:#fff;display:none;position:absolute;border:1px solid #d6d6d6;box-shadow:0 2px 4px rgba(0,0,0,.3);margin:0;white-space:nowrap;z-index:103;line-height:17px;padding-top:5px;padding-bottom:5px;padding-left:0}.PA9J5:hover .sa1toc{display:block}.mGSy8d a:active,.RXaOfd:active{color:#4285f4}</style><div class="PA9J5"><div class="RXaOfd" role="button" tabindex="0"><style>.TWMOUc{display:inline-block;padding-right:14px;white-space:nowrap}.vQYuGf{font-weight:bold}.OmTIzf{border-color:#909090 transparent;border-style:solid;border-width:4px 4px 0 4px;width:0;height:0;margin-left:-10px;top:50%;margin-top:-2px;position:absolute}.RXaOfd:active .OmTIzf{border-color:#4285f4 transparent}</style><div class="TWMOUc">Any time</div><span class="OmTIzf"></span></div><ul class="sa1toc ozatM"><style>.ozatM{font-size:12px;text-transform:uppercase}.ozatM .yNFsl,.ozatM li{list-style-type:none;list-style-position:outside;list-style-image:none}.yNFsl.SkUj4c,.yNFsl a{color:rgba(0,0,0,0.54);text-decoration:none;padding:6px 44px 6px 14px;line-height:17px;display:block}.SkUj4c{background-image:url(//ssl.gstatic.com/ui/v1/menu/checkmark2.png);background-position:right center;background-repeat:no-repeat}.SkUj4c:active{background-color:#f8f9fa}</style><li class="yNFsl SkUj4c">Any time</li><li class="yNFsl"><a href="/search?q=What%27s+the+meaning+of+life%3F&amp;ie=UTF-8&amp;source=lnt&amp;tbs=qdr:h&amp;sa=X&amp;ved=0ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQpwUIDQ">Past hour</a></li><li class="yNFsl"><a href="/search?q=What%27s+the+meaning+of+life%3F&amp;ie=UTF-8&amp;source=lnt&amp;tbs=qdr:d&amp;sa=X&amp;ved=0ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQpwUIDg">Past 24 hours</a></li><li class="yNFsl"><a href="/search?q=What%27s+the+meaning+of+life%3F&amp;ie=UTF-8&amp;source=lnt&amp;tbs=qdr:w&amp;sa=X&amp;ved=0ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQpwUIDw">Past week</a></li><li class="yNFsl"><a href="/search?q=What%27s+the+meaning+of+life%3F&amp;ie=UTF-8&amp;source=lnt&amp;tbs=qdr:m&amp;sa=X&amp;ved=0ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQpwUIEA">Past month</a></li><li class="yNFsl"><a href="/search?q=What%27s+the+meaning+of+life%3F&amp;ie=UTF-8&amp;source=lnt&amp;tbs=qdr:y&amp;sa=X&amp;ved=0ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQpwUIEQ">Past year</a></li></ul></div><div class="PA9J5"><div class="RXaOfd" role="button" tabindex="0"><div class="TWMOUc">All results</div><span class="OmTIzf"></span></div><ul class="sa1toc ozatM"><li class="yNFsl SkUj4c">All results</li><li class="yNFsl"><a href="/search?q=What%27s+the+meaning+of+life%3F&amp;ie=UTF-8&amp;source=lnt&amp;tbs=li:1&amp;sa=X&amp;ved=0ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQpwUIEw">Verbatim</a></li></ul></div></div></div></div><script nonce="qwhd1XQyVMIgaKaSDQplWA">(function(){
var a=document.getElementById("st-toggle"),b=document.getElementById("st-card");a&&b&&a.addEventListener("click",function(c){b.style.display=b.style.display?"":"none";c.preventDefault()},!1);}).call(this);</script></div></div><style>.Gx5Zad{background-color:#fff;margin-bottom:30px;box-shadow:0 0 0 1px #dfe1e5;border-radius:8px}.pkphOe{font-size:14px;line-height:22px;}.EtOod>*:first-child{border-top-left-radius:8px;border-top-right-radius:8px}.EtOod>*:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.EtOod>.qxDOhb>*:first-child{border-top-left-radius:8px;border-top-right-radius:8px}.EtOod>.qxDOhb>*:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.fP1Qef{background:transparent !important;box-shadow:none !important;border:none !important}.rLshyf,.BmP5tf{padding-top:12px;padding-bottom:12px}.YOx3Ab{padding-left:16px;}.w1C3Le,.BmP5tf,.G5NbBd,.CS4w5b{padding-left:16px;padding-right:16px;}.G5NbBd{padding-bottom:12px}.CS4w5b{padding-top:12px}.dJMePd,.Qc4Zr{display:flex}.Qc4Zr{align-items:center}.T4Yo{justify-content:space-between}.v5yQqb{position:relative}.jqWpsc,.jGGQ5e .jqWpsc{margin-bottom:-22px;position:relative;z-index:1}a.fdYsqf{color:#4b11a8}.v0rrvd{padding-bottom:16px}.cz3goc{display:block;}.F7oSbc{padding-top:16px}.a7DO2d{padding-top:16px}.HK2iA{margin-bottom:8px}.OSrXXb{overflow:hidden;text-overflow:ellipsis}.cHaqb{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.QkcpZ{padding-right:20px}.ynAwRc{color:#1558d6}a:visited .ynAwRc,a:visited.ynAwRc{color:#681da8}.q8U8x{font-family:Google Sans,Roboto,Helvetica Neue,Arial,sans-serif;font-weight:400}.lUn2nc{padding-right:12px}.MBeuO{font-family:Roboto,Helvetica Neue,Arial,sans-serif;font-size:18px;font-weight:400;line-height:24px}.MUxGbd{font-size:14px;font-family:arial,sans-serif;line-height:22px;padding-top:1px;margin-bottom:-1px}.MUxGbd.v0nnCb{font-size:20px;line-height:26px;padding-top:1px;margin-bottom:-1px}.aLF0Z{white-space:nowrap}.UPajGf{-webkit-box-orient:vertical;display:-webkit-box;-webkit-line-clamp:1;overflow:hidden;white-space:normal}.d8lRkd{}.d8lRkd{white-space:nowrap}.lyLwlc{color:#202124}.CnP9N{margin-right:8px}.U3A9Ac{background-color:#fff;color:#006621;display:inline-block;font-family:inherit;font-size:11px;margin-left:0px;white-space:nowrap}.U3A9Ac.HOR4Mc{background-color:transparent;color:#fff}.qV8iec{border-radius:3px;border:1px solid #006621;padding:1px 3px 0 2px;line-height:11px;margin-right:7px;}.irmCpc{padding:0;margin-right:0}.qzEoUe{color:#006621;white-space:nowrap}.ApHyTb{font-family:Roboto,Helvetica Neue,Arial,sans-serif;font-size:12px;line-height:16px}.r7TaRd{padding-left:8px}.oru2pc{clear:both}.c7YKNb{overflow:auto}.bOeY0b{margin-top:-24px}.XUpIGb{height:20px;white-space:normal}.XUpIGb>*{white-space:nowrap}.nGphre{float:right;padding-left:16px}.UykT9d{border-radius:8px;display:block}.nYT7Qb{clear:both}.kCrYT{padding:12px 16px 12px}.l97dzf{font-weight:400}.zBAuLc{line-height:normal;margin:0;padding:0}.BNeawe{white-space:pre-line;word-wrap:break-word}.deIvCb{font-size:16px;line-height:20px;font-weight:400}.deIvCb.HrGdeb{color:#fff}.deIvCb.AP7Wnd{color:#202124}.RJI4s{vertical-align:middle}.tAd8D{font-size:14px;line-height:20px}.tAd8D.HrGdeb{color:rgba(255,255,255,.70)}.tAd8D.AP7Wnd{color:#70757a}.skVgpb{display:table;table-layout:fixed;width:100%}.VGHMXd{display:table-cell;vertical-align:middle;height:52px;text-align:center}.LpaDrb{margin:0 auto 8px;display:block}.vbShOe{padding-top:0}.x54gtf{height:1px;background-color:#dadce0;margin:0 16px}.Q0HXG{height:1px;background-color:#dadce0}.Ap5OSd{padding-bottom:12px}.s3v9rd{font-size:14px;line-height:22px}.s3v9rd.HrGdeb{color:#fff}.s3v9rd.AP7Wnd{color:#202124}.r0bn4c.tr0dw{color:rgba(255,255,255,.70)}.r0bn4c.rQMQod{color:#70757a}.mSx1Ee{padding-left:48px;margin:0}.v9i61e{padding-bottom:8px}.v7pIac{padding-right:16px}.FCUp0c{font-weight:bold}.K8tyEc{padding-bottom:12px}.mEUgP{font-weight:bold;font-size:16px;color:#000;margin:0;padding:12px 16px 0 16px}.C7GS5b{margin-left:12px;display:table-cell;vertical-align:middle}.rkGIWe{padding:14px}.xpc .hwc,.xpx .hwx{display:none}.iIWm4b{box-sizing:border-box;min-height:48px}.fLtXsc{padding:14px;position:relative}.NtmAdb{width:40px;height:40px;overflow:hidden;margin-top:-10px;margin-bottom:-16px;margin-right:8px;border-radius:4px}.xpc .NtmAdb{display:inline-block}.xpx .NtmAdb{display:none}.Lt3Tzc{display:inline-block;padding-right:26px}.Lym8W{width:14px;height:20px;position:relative;margin:0 auto}.xCgLUe{position:absolute;right:16px;margin-top:-10px;top:50%}.Lym8W div{position:absolute;border-left:7px solid transparent;border-right:7px solid transparent;width:0;height:0;left:0}.IyYaEd{top:7px;border-top:7px solid #70757a}.ECUHQe{top:4px;border-top:7px solid #fff}.AeQQub{bottom:7px;border-bottom:7px solid #70757a}.YCU7eb{bottom:4px;border-bottom:7px solid #fff}.qxDOhb{border-radius:0}.yStFkb .xpd{border-radius:8px;box-shadow:none;border:1px solid #dadce0;margin-bottom:0}.oTWEpb{padding-top:12px}.n1Qedd{overflow:hidden;text-align:center}.KMAGC{margin:0 auto;display:block}.ho0sdc{margin:0 -50%;display:inline-block}.gMUaMb{line-height:0}.vvjwJb{color:#1a0dab;font-size:20px;line-height:26px}a:visited .vvjwJb,.vvjwJb a:visited{color:#4b11a8}.vvjwJb.HrGdeb{color:#fff}a:visited .vvjwJb.HrGdeb,.vvjwJb.HrGdeb a:visited{color:rgba(255,255,255,.70)}.Xb5VRe{color:#1a0dab}a:visited .Xb5VRe{color:#4b11a8}.Xb5VRe.tr0dw{color:#fff}a:visited .Xb5VRe.tr0dw{color:rgba(255,255,255,.70)}.UPmit{font-size:14px;line-height:22px}.UPmit.HrGdeb{color:rgba(255,255,255,.70)}.UPmit.AP7Wnd{color:#0d652d}.P1NWSe{display:table;width:100%;padding-top:16px;padding-bottom:16px;margin-bottom:-12px}.wOMIed{display:table-cell;vertical-align:top}.nkPlDb{vertical-align:middle}.JhFlyf{color:#3c4043;font-size:14px;text-align:center}.VQFmSd{display:block;white-space:pre-line;word-wrap:break-word}.JhFlyf.VQFmSd{line-height:22px}.f4J0H{padding:18px}.Gx5Zad.fP1Qef{margin-top:-12px;margin-bottom:18px}.rl7ilb{display:block;clear:both}.egMi0{margin-bottom:-22px}.XLloXe{color:#1a0dab;font-size:14px;line-height:20px}a:visited .XLloXe,.XLloXe a:visited{color:#4b11a8}.XLloXe.HrGdeb{color:#fff}a:visited .XLloXe.HrGdeb,.XLloXe.HrGdeb a:visited{color:rgba(255,255,255,.70)}.Xdlr0d{overflow-x:auto;-webkit-overflow-scrolling:touch;margin:0 -8px;padding:2px 0 16px 24px;margin-top:-2px;transform:translate3d(0,0,0)}.idg8be{display:table;border-collapse:separate;border-spacing:8px 0;margin:0 -8px;padding-right:16px}.BVG0Nb{display:table-cell;vertical-align:top;background-color:#fff;border-radius:8px;box-shadow:0 0 0 1px #dfe1e5;overflow:hidden}.WddBJd{display:block;margin:0 auto}.mHhylf{display:table-cell;vertical-align:middle}.WZ5GJf{align-items:center;padding:0 20px;min-width:112px}.qN9Ked,.DXk5Me{margin:0 auto}.DXk5Me{cursor:pointer;margin-bottom:12px}.Dk7jOe{display:block;margin:0 auto}.Qi9Fd{background:#fff;border:0;border-radius:999px;display:block;height:56px;justify-content:center;width:56px;z-index:0}.Qi9Fd{box-shadow:0 0 0 1px #dfe1e5,inset 0 0 0 0 rgba(0,0,0,0.10),inset 0 0 0 0 rgba(255,255,255,0.50)}.Qi9Fd:focus{outline:none}.Qi9Fd .hWHuJ{display:block;margin:0 auto}.ji5jpf{text-align:center}.Ru8idb{margin-top:-16px}.punez{font-weight:700;letter-spacing:0.75px;text-transform:uppercase}.wyrwXc{font-size:12px;line-height:16px}.wyrwXc.HrGdeb{color:#fff}.wyrwXc.AP7Wnd{color:#202124}.h1hFNe{display:inline-block;position:relative}.Iaa5if{overflow:hidden;position:relative}.l7d08{align-items:center;display:flex;flex-direction:column;justify-content:space-around}.lcJF1d{border-radius:8px;margin-left:16px;float:right;}.Q6Xouf{overflow:hidden}.G6SP0b{display:inline-block}.eeoFaf{position:relative}.oz9fhd{background-color:rgba(0,0,0,.12)}.S9HcI{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.UhWgBb{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAQAAAD9CzEMAAABl0lEQVR4Ae2XveraUBiHY4xD3URx8F+9gHZW9EKEOgi9Cz8uQFtXiwRsobvgIoLXIfYCKrqoaadCk+Xp4HiSc15PQkvB512FB37xvB/Ok/8BXDqMWXMgICIi4MCaEW1cHFOZftBgxpkkTnygbi+osiTCRIhPxUbQ5wdSAnqPCQp84VF8PKmgyA4bthQlggI7bNnimQWfSYNvEvRJyzudoMpP0nKjnCxYkgWLJEFD+6ze8wsZIS/xghk6HN7wDRnTOIHLGR33F/IVCUdyqqCDHudewqhaqmAsEwijGqqCtUwgjGqlCg4ygTCqvSoIZAJhVFdVEMkEwqjCvyiwj+gt8oiy/8j/4G86QosSjZ6BKmhn2iqaqsDllFmz+x7X7Bw+ouMejYxJ/DyoZzRwflNLGpk+WTBPnskVAtJyoaRbW3qkpWtavHzS8Mm82XlssWVDXrb82ik2vJKu7x6+RTj5xw6QHjekXOjanFBlFoSCZzWnZH8EvmbKUdNzJtQER6ChXFoMWbHnSkjIlT0rBjTJyc/Y7OspkNYf1H6eRU02jH0AAAAASUVORK5CYII=);background-repeat:no-repeat;background-position:center}.oyqqef{background:rgba(32, 33, 36, 0.5);position:absolute;border-radius:4px;padding:2px 6px}.gGQDvd{padding:14px;position:relative}.Q71vJc{display:block;position:relative;width:100%}.kjGX2{position:absolute;left:48px;right:0;vertical-align:bottom;display:inline-block;color:#3c4043}.ieB2Dd{overflow:hidden;margin-top:-10px;margin-bottom:-16px;margin-right:8px;border-radius:4px;display:inline-block;border-radius:50%;padding:10px}.OEaqif{width:20px;height:20px;display:block}.lRVwie{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.nMymef{display:flex}.G5eFlf{flex:1;display:block}.nMymef span{text-align:center}.EYqSq{margin:6px 4px 9px 0;border-radius:100%;display:inline-block;height:10px;vertical-align:middle;width:10px}.dfB0uf{color:#3c4043;font-weight:bold}</style><div><!--SW_C_X--></div><div></div><div class="uEierd"><div><div class="Gx5Zad fP1Qef EtOod pkphOe"><div class="v5yQqb jqWpsc"><a class="cz3goc BmP5tf" role="presentation" href="http://www.google.com/aclk?sa=l&amp;ai=DChcSEwjr-IC3p_n6AhWMssgKHaqVC8QYABACGgJxdQ&amp;sig=AOD64_1rXDnNpl5U_8mHlefQdf1zK0a7Cw&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ0Qx6BAgREAE&amp;adurl=" data-al="1"><div class="CCgQ5 MUxGbd v0nnCb aLF0Z OSrXXb" aria-level="3" role="heading"><span>What Does Life Mean - True Meaning Of Life</span></div><div class="d8lRkd OSrXXb MUxGbd lyLwlc aLF0Z" role="link" aria-label="hopeless.panamacitybeach.church/purpose/quiz"><span class="CnP9N U3A9Ac qV8iec">Ad</span><span aria-hidden="true" class="qzEoUe" data-dtld="panamacitybeach.church" role="text">hopeless.panamacitybeach.church/purpose/quiz</span></div></a><span></span></div><w-ad-creative-spacer><div class="oru2pc" style="height:12px"></div></w-ad-creative-spacer><div class="w1C3Le"><div class="MUxGbd yDYNvb lyLwlc aLF0Z OSrXXb"><div>The true meaning of life may not be what you think it is. Discover more.</div></div></div><w-ad-creative-spacer><div class="oru2pc" style="height:12px"></div></w-ad-creative-spacer></div></div></div><div class="uEierd"><div><div class="Gx5Zad fP1Qef EtOod pkphOe"><div class="v5yQqb jqWpsc"><a class="cz3goc BmP5tf" role="presentation" href="http://www.google.com/aclk?sa=l&amp;ai=DChcSEwjr-IC3p_n6AhWMssgKHaqVC8QYABADGgJxdQ&amp;sig=AOD64_0Q3p8FadlAPc0qvnbqmGadWAiqmQ&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ0Qx6BAgOEAE&amp;adurl=" data-al="1"><div class="CCgQ5 MUxGbd v0nnCb aLF0Z OSrXXb" aria-level="3" role="heading"><span>What is the meaning of life? - What is the purpose of life?</span></div><div class="d8lRkd OSrXXb MUxGbd lyLwlc aLF0Z" role="link" aria-label="www.urantiabook.org/spiritualgrowth"><span class="CnP9N U3A9Ac qV8iec">Ad</span><span aria-hidden="true" class="qzEoUe" data-dtld="urantiabook.org" role="text">www.urantiabook.org/spiritualgrowth</span></div></a><span></span></div><w-ad-creative-spacer><div class="oru2pc" style="height:12px"></div></w-ad-creative-spacer><div class="w1C3Le"><div class="MUxGbd yDYNvb lyLwlc"><div>Making selfless, fair, and even generous choices, we begin to experience meaning, purpose. Can our experience confirm a spirit realm where ideals are real, meaningful, everlasting?</div></div></div><w-ad-creative-spacer><div class="oru2pc" style="height:12px"></div></w-ad-creative-spacer></div></div></div><div class="uEierd"><div><div class="Gx5Zad fP1Qef EtOod pkphOe"><div class="v5yQqb jqWpsc"><a class="cz3goc BmP5tf" role="presentation" href="http://www.google.com/aclk?sa=l&amp;ai=DChcSEwjr-IC3p_n6AhWMssgKHaqVC8QYABAAGgJxdQ&amp;sig=AOD64_2yh_xbWb5ObAqGQoPfOs-psDnlKg&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ0Qx6BAgPEAE&amp;adurl=" data-al="1"><div class="CCgQ5 MUxGbd v0nnCb aLF0Z OSrXXb" aria-level="3" role="heading"><span>What is the meaning of life? - Answer to the meaning of life</span></div><div class="d8lRkd OSrXXb MUxGbd lyLwlc aLF0Z" role="link" aria-label="www.tomorrowsworld.org/"><span class="CnP9N U3A9Ac qV8iec">Ad</span><span aria-hidden="true" class="qzEoUe" data-dtld="tomorrowsworld.org" role="text">www.tomorrowsworld.org/</span></div></a><span></span></div><w-ad-creative-spacer><div class="oru2pc" style="height:12px"></div></w-ad-creative-spacer><div class="w1C3Le"><div class="MUxGbd yDYNvb lyLwlc"><div>The book of Genesis says we're made in the image of God. It was for this forgotten meaning. We will be able to pass through walls (John 20:19) &amp; disappear into thin air (Luke 24:31)</div></div></div><w-ad-creative-spacer><div class="oru2pc" style="height:12px"></div></w-ad-creative-spacer></div></div></div><script nonce="qwhd1XQyVMIgaKaSDQplWA">(function(){
var f="function"==typeof Object.defineProperties?Object.defineProperty:function(a,b,c){if(a==Array.prototype||a==Object.prototype)return a;a[b]=c.value;return a},l=function(a){a=["object"==typeof globalThis&&globalThis,a,"object"==typeof window&&window,"object"==typeof self&&self,"object"==typeof global&&global];for(var b=0;b<a.length;++b){var c=a[b];if(c&&c.Math==Math)return c}throw Error("a");},m=l(this),n=function(a,b){if(b)a:{var c=m;a=a.split(".");for(var d=0;d<a.length-1;d++){var e=a[d];if(!(e in
c))break a;c=c[e]}a=a[a.length-1];d=c[a];b=b(d);b!=d&&null!=b&&f(c,a,{configurable:!0,writable:!0,value:b})}};n("Object.is",function(a){return a?a:function(b,c){return b===c?0!==b||1/b===1/c:b!==b&&c!==c}});n("Array.prototype.includes",function(a){return a?a:function(b,c){var d=this;d instanceof String&&(d=String(d));var e=d.length;c=c||0;for(0>c&&(c=Math.max(c+e,0));c<e;c++){var h=d[c];if(h===b||Object.is(h,b))return!0}return!1}});n("String.prototype.includes",function(a){return a?a:function(b,c){if(null==this)throw new TypeError("The 'this' value for String.prototype.includes must not be null or undefined");if(b instanceof RegExp)throw new TypeError("First argument to String.prototype.includes must not be a regular expression");return-1!==(this+"").indexOf(b,c||0)}});var q=this||self;var r=function(a){var b=a.url;a=a.l;this.i=b;this.o=a;a=/[?&]dsh=1(&|$)/.test(b);this.h=!a&&/[?&]ae=1(&|$)/.test(b);this.s=!a&&/[?&]ae=2(&|$)/.test(b);if((this.g=/[?&]adurl=([^&]*)/.exec(b))&&this.g[1]){try{var c=decodeURIComponent(this.g[1])}catch(d){c=null}this.j=c}},v=function(a,b){return a.h&&a.j||a.s?1==b?a.h?a.j:u(a,"&dct=1"):2==b?u(a,"&ri=2"):u(a,"&ri=16"):a.i},u=function(a,b){return a.g?a.i.slice(0,a.g.index)+b+a.i.slice(a.g.index):a.i+b},w=function(a){a=a.o;var b=encodeURIComponent,c="";a.platform&&(c+="&uap="+b(a.platform));a.platformVersion&&(c+="&uapv="+b(a.platformVersion));a.uaFullVersion&&(c+="&uafv="+b(a.uaFullVersion));a.architecture&&(c+="&uaa="+b(a.architecture));a.model&&(c+="&uam="+b(a.model));a.bitness&&(c+="&uab="+b(a.bitness));a.fullVersionList&&(c+="&uafvl="+b(a.fullVersionList.map(function(d){return b(d.brand)+";"+b(d.version)}).join("|")));"undefined"!==typeof a.wow64&&(c+="&uaw="+Number(a.wow64));return c};var z=function(a,b){this.g=b===x?a:""};z.prototype.toString=function(){return this.g+""};z.prototype.i=!0;z.prototype.h=function(){return this.g.toString()};var A=function(a){return a instanceof z&&a.constructor===z?a.g:"type_error:TrustedResourceUrl"},x={};var C=function(a,b){this.g=b===B?a:""};C.prototype.toString=function(){return this.g.toString()};C.prototype.i=!0;C.prototype.h=function(){return this.g.toString()};var D=function(a){return a instanceof C&&a.constructor===C?a.g:"type_error:SafeUrl"},E=/^(?:(?:https?|mailto|ftp):|[^:/?#]*(?:[/?#]|$))/i,F=function(a){if(a instanceof C)return a;a="object"==typeof a&&a.i?a.h():String(a);E.test(a)||(a="about:invalid#zClosurez");return new C(a,B)},B={},I=new C("about:invalid#zClosurez",B);var J=/^((market|itms|intent|itms-appss):\/\/)/i;
var K;try{new URL("s://g"),K=!0}catch(a){K=!1}var L=K;var M=function(a){this.A=a};function N(a){return new M(function(b){return b.substr(0,a.length+1).toLowerCase()===a+":"})}var O=[N("data"),N("http"),N("https"),N("mailto"),N("ftp"),new M(function(a){return/^[^:]*([/?#]|$)/.test(a)})];var P=function(a,b){b=b instanceof C?b:F(b);a.href=D(b)},Q=/^[\w+/_-]+[=]{0,2}$/;function R(a,b){var c=/[?&]adurl=/.exec(b);return c?""+b.slice(0,c.index+1)+a+"&"+b.slice(c.index+1):""+b+(-1===b.indexOf("?")?"?":"&")+a}function S(a,b){a=a.href;var c=/[?&]nis=([^&]*)/.exec(a);return c&&c[1]===b?a:c?a.replace(/([?&])nis=([^&]*)/,function(d,e){return e+"nis="+b}):R("nis="+b,a)}function T(){var a;return!(null==(a=document.featurePolicy)||!a.allowedFeatures().includes("attribution-reporting"))};var U=new function(){var a={v:google.eufsv},b=this;a=(void 0===a?{}:a).v;this.g=null;a&&navigator.userAgentData&&navigator.userAgentData.getHighEntropyValues&&(a=navigator.userAgentData.getHighEntropyValues("platform platformVersion uaFullVersion architecture model bitness fullVersionList wow64".split(" ")))&&a.then(function(c){b.g=c})};function V(a,b,c){if(a=a.dataset[b])for(a=a.split(","),b=0;b<a.length;b++){var d=document.createElement("link"),e=a[b],h=c;d.rel=h;if(-1!=h.toLowerCase().indexOf("stylesheet")){d.href=A(e).toString();a:{e=(d.ownerDocument&&d.ownerDocument.defaultView||q).document;if(e.querySelector&&(e=e.querySelector('style[nonce],link[rel="stylesheet"][nonce]'))&&(e=e.nonce||e.getAttribute("nonce"))&&Q.test(e))break a;e=""}e&&d.setAttribute("nonce",e)}else d.href=e instanceof z?A(e).toString():e instanceof C?D(e):D(F(e));document.head.appendChild(d)}}
function W(a,b){if(b){V(b,"pcu","preconnect");V(b,"pfu","prefetch");if(b.hasAttribute("data-impdclcc"))try{var c=b.hasAttribute("attributionsourceid")&&b.hasAttribute("attributeon")&&b.hasAttribute("attributiondestination")?"2":b.hasAttribute("attributionsrc")?T()?"6":"5":T()?"7":"8";var d=S(b,c);var e=void 0===e?O:e;a:{c=e;c=void 0===c?O:c;for(e=0;e<c.length;++e){var h=c[e];if(h instanceof M&&h.A(d)){var k=new C(d,B);break a}}k=void 0}var g=k||I;if(g instanceof C)var p=D(g);else{b:if(L){try{var Y=
new URL(g)}catch(G){var t="https:";break b}t=Y.protocol}else c:{var H=document.createElement("a");try{H.href=g}catch(G){t=void 0;break c}var y=H.protocol;t=":"===y||""===y?"https:":y}p="javascript:"!==t?g:void 0}g=p;void 0!==g&&(b.href=g)}catch(G){}b.hasAttribute("data-ae")&&(b.hasAttribute("data-ohref")?g=b.getAttribute("data-ohref"):(g=b.href,b.setAttribute("data-ohref",g)),k=g,d={l:U.g},d=new r({url:k,l:(void 0===d?{}:d).l}),d.h&&d.j||d.s?navigator.sendBeacon?(k=navigator,h=k.sendBeacon,p="&act=1&ri=1",d.h&&d.o&&(p+=w(d)),d=h.call(k,u(d,p),"")?v(d,1):v(d,2)):d=v(d,0):d=k,d=d instanceof C||!J.test(d)?d:new C(d,B),g!=d&&P(b,d));b.hasAttribute("data-ems")&&a.stopPropagation()}}function X(a){if(a.dataset){var b=a.dataset.rw;if(b){var c;a:{if(a&&(c=a.dataset.ved)){c="&ved="+c;break a}c=""}P(a,b+c)}}}window.IMVCy=function(a){W(a,a.currentTarget)};window.YvikHb=W;window.TPUtub=X;window.J4LCUe=X;}).call(this);</script><div class="uEierd"><div><div class="Gx5Zad fP1Qef EtOod pkphOe"><div class="v5yQqb jqWpsc"><a class="cz3goc BmP5tf" role="presentation" href="http://www.google.com/aclk?sa=l&amp;ai=DChcSEwjr-IC3p_n6AhWMssgKHaqVC8QYABABGgJxdQ&amp;sig=AOD64_2zZsPgUuhogbP7HAf-Fb7xjOo2pA&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ0Qx6BAgQEAE&amp;adurl=" data-al="1"><div class="CCgQ5 MUxGbd v0nnCb aLF0Z OSrXXb" aria-level="3" role="heading"><span>The True Meaning Of Life - Life's Biggest Question</span></div><div class="d8lRkd OSrXXb MUxGbd lyLwlc aLF0Z" role="link" aria-label="www.alephbeta.org/life-meaning"><span class="CnP9N U3A9Ac qV8iec">Ad</span><span aria-hidden="true" class="qzEoUe" data-dtld="alephbeta.org" role="text">www.alephbeta.org/life-meaning</span></div></a><span></span></div><w-ad-creative-spacer><div class="oru2pc" style="height:12px"></div></w-ad-creative-spacer><div class="w1C3Le"><div class="MUxGbd yDYNvb lyLwlc"><div>The Bible holds the key to understanding what is our true purpose in this world. Discover how you can live a meaningful life today. Learn the Torah. Deep, Inspiring Videos. Educational Videos. Courses: Observing Shabbat, Amazing Torah Videos, Dive into Torah Wisdom.</div></div></div><w-ad-creative-spacer><div class="oru2pc" style="height:12px"></div></w-ad-creative-spacer><div class="bOeY0b BmP5tf"><div class="XUpIGb MUxGbd lyLwlc aLF0Z OSrXXb"><a data-agdh="fvd3vc" data-rw="http://www.google.com/aclk?sa=l&amp;ai=DChcSEwjr-IC3p_n6AhWMssgKHaqVC8QYABAEGgJxdQ&amp;sig=AOD64_1zR7fin20actEx4tmQ6_EDy-DASQ&amp;adurl" href="#" data-al="1" data-ved="2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQpigoAHoECBAQAw">Jewish Holidays</a> · <a data-agdh="fvd3vc" data-rw="http://www.google.com/aclk?sa=l&amp;ai=DChcSEwjr-IC3p_n6AhWMssgKHaqVC8QYABAFGgJxdQ&amp;sig=AOD64_3l26wTlnEDQQwGUHEHxh8pdkRjJw&amp;adurl" href="#" data-al="1" data-ved="2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQpigoAXoECBAQBA">Weekly Torah Portion</a> · <a data-agdh="fvd3vc" data-rw="http://www.google.com/aclk?sa=l&amp;ai=DChcSEwjr-IC3p_n6AhWMssgKHaqVC8QYABAGGgJxdQ&amp;sig=AOD64_2WZZowFAEKOBmUhCguwBK-TAvARw&amp;adurl" href="#" data-al="1" data-ved="2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQpigoAnoECBAQBQ">Hanukkah</a> · <a data-agdh="fvd3vc" data-rw="http://www.google.com/aclk?sa=l&amp;ai=DChcSEwjr-IC3p_n6AhWMssgKHaqVC8QYABAHGgJxdQ&amp;sig=AOD64_0hhHkcAHgRBB5lHoGavv-p7GMkTQ&amp;adurl" href="#" data-al="1" data-ved="2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQpigoA3oECBAQBg">Book Of Genesis</a> · <a data-agdh="fvd3vc" data-rw="http://www.google.com/aclk?sa=l&amp;ai=DChcSEwjr-IC3p_n6AhWMssgKHaqVC8QYABAIGgJxdQ&amp;sig=AOD64_1OGGWP4mDukSfvMGYjkKrvufVniw&amp;adurl" href="#" data-al="1" data-ved="2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQpigoBHoECBAQBw">Prayer In Judaism</a></div></div></div></div></div><div><div class="Gx5Zad xpd EtOod pkphOe"><div class="kCrYT"><span><h3 class="zBAuLc l97dzf"><div class="BNeawe deIvCb AP7Wnd"><img style="vertical-align:top;width:20px;height:20px;max-width:20px;max-height:20px" id="flex_text_audio_icon_chunk" alt="Learn to pronounce" role="button" tabindex="0" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-deferred="1"><audio src="http://ssl.gstatic.com/dictionary/static/sounds/20200429/life--_us_1.mp3"></audio> life</div></h3></span><span><div class="BNeawe tAd8D AP7Wnd">/l&#299;f/</div></span></div><div class="Q0HXG"></div><div class="kCrYT"><div><div class="BNeawe s3v9rd AP7Wnd"><div class="Ap5OSd"><div class="BNeawe s3v9rd AP7Wnd"><span class="r0bn4c rQMQod">noun
</span></div></div><div class="Ap5OSd"><ol class="mSx1Ee v7pIac"><li class="v9i61e"><div class="v9i61e"><div class="BNeawe s3v9rd AP7Wnd">the condition that distinguishes animals and plants from inorganic matter, including the capacity for growth, reproduction, functional activity, and continual change preceding death.</div></div><div class="v9i61e"><div class="BNeawe s3v9rd AP7Wnd"><span class="r0bn4c rQMQod">"the origins of life"</span></div></div><div><div class="BNeawe s3v9rd AP7Wnd"><span class="r0bn4c rQMQod">synonyms: existence, being, living, animation, aliveness, animateness, entity, sentience, creation, survival, viability, esse</span></div></div></li><li class="v9i61e"><div class="v9i61e"><div class="BNeawe s3v9rd AP7Wnd">the existence of an individual human being or animal.</div></div><div class="v9i61e"><div class="BNeawe s3v9rd AP7Wnd"><span class="r0bn4c rQMQod">"a disaster that claimed the lives of 266 Americans"</span></div></div><div><div class="BNeawe s3v9rd AP7Wnd"><span class="r0bn4c rQMQod">synonyms: person, human being, individual, mortal, soul, creature</span></div></div></li><li class="v9i61e"><div class="v9i61e"><div class="BNeawe s3v9rd AP7Wnd">the period between the birth and death of a living thing, especially a human being.</div></div><div class="v9i61e"><div class="BNeawe s3v9rd AP7Wnd"><span class="r0bn4c rQMQod">"she has lived all her life in the country"</span></div></div><div><div class="BNeawe s3v9rd AP7Wnd"><span class="r0bn4c rQMQod">synonyms: lifetime, life span, days, duration of life, allotted span, course of life, time on earth, existence, one's time, one's career, threescore years and ten, this mortal coil, one's born days</span></div></div></li><li class="v9i61e"><div class="v9i61e"><div class="BNeawe s3v9rd AP7Wnd">vitality, vigor, or energy.</div></div><div class="v9i61e"><div class="BNeawe s3v9rd AP7Wnd"><span class="r0bn4c rQMQod">"she was beautiful and full of life"</span></div></div><div><div class="BNeawe s3v9rd AP7Wnd"><span class="r0bn4c rQMQod">synonyms: vivacity, animation, liveliness, vitality, verve, high spirits, sparkle, exuberance, zest, buoyancy, effervescence, enthusiasm, energy, vigor, dynamism, go, elan, gusto, brio, bounce, spirit, spiritedness, activity, fire, panache, color, dash, drive, push, business, bustle, hustle and bustle, movement, stir, oomph, pizzazz, pep, zing, zip, vim, get-up-and-go, moving spirit, moving force, animating spirit, vital spirit, vital spark, life force, lifeblood, essence, core, heart, soul, strength, quintessence, substance, élan vital</span></div></div></li><li><div class="v9i61e"><div class="BNeawe s3v9rd AP7Wnd">(in art) the depiction of a subject from a real model, rather than from an artist's imagination.</div></div><div><div class="BNeawe s3v9rd AP7Wnd"><span class="r0bn4c rQMQod">"the pose and clothing were sketched </span><span class="FCUp0c r0bn4c rQMQod">from life</span><span class="r0bn4c rQMQod">"</span></div></div></li></ol></div><div><div class="BNeawe s3v9rd AP7Wnd"><br></div></div></div></div></div></div></div><div><div class="Gx5Zad xpd EtOod pkphOe"><div class="K8tyEc"><div class="mEUgP"><span><div class="BNeawe"><span class="FCUp0c rQMQod">People also ask</span></div></span></div></div><div class="x54gtf"></div><div><div class="xpc"><div class="duf-h"><div class="fLtXsc iIWm4b" aria-expanded="false" id="tsuid_1" role="button" tabindex="0" data-ved="2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQuk56BAgAEAI"><div class="Lt3Tzc">What is the true meaning of life?</div><div class="Lym8W xCgLUe"><div class="AeQQub hwc"></div><div class="YCU7eb hwc"></div><div class="IyYaEd hwx"></div><div class="ECUHQe hwx"></div></div></div></div><div class="qxDOhb" id="accdef_1"></div></div></div><div class="x54gtf"></div><div><div class="xpc"><div class="duf-h"><div class="fLtXsc iIWm4b" aria-expanded="false" id="tsuid_2" role="button" tabindex="0" data-ved="2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQuk56BAgAEAk"><div class="Lt3Tzc">What are the 3 meanings of life?</div><div class="Lym8W xCgLUe"><div class="AeQQub hwc"></div><div class="YCU7eb hwc"></div><div class="IyYaEd hwx"></div><div class="ECUHQe hwx"></div></div></div></div><div class="qxDOhb" id="accdef_3"></div></div></div><div class="x54gtf"></div><div><div class="xpc"><div class="duf-h"><div class="fLtXsc iIWm4b" aria-expanded="false" id="tsuid_3" role="button" tabindex="0" data-ved="2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQuk56BAgAEBA"><div class="Lt3Tzc">What is the real purpose of life?</div><div class="Lym8W xCgLUe"><div class="AeQQub hwc"></div><div class="YCU7eb hwc"></div><div class="IyYaEd hwx"></div><div class="ECUHQe hwx"></div></div></div></div><div class="qxDOhb" id="accdef_5"></div></div></div><div class="x54gtf"></div><div><div class="xpc"><div class="duf-h"><div class="fLtXsc iIWm4b" aria-expanded="false" id="tsuid_4" role="button" tabindex="0" data-ved="2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQuk56BAgAEBc"><div class="Lt3Tzc">What is your definition of the meaning of life?</div><div class="Lym8W xCgLUe"><div class="AeQQub hwc"></div><div class="YCU7eb hwc"></div><div class="IyYaEd hwx"></div><div class="ECUHQe hwx"></div></div></div></div><div class="qxDOhb" id="accdef_7"></div></div></div></div></div><div><div class="Gx5Zad fP1Qef xpd EtOod pkphOe"><div class="egMi0 kCrYT"><a href="/url?q=https://en.wikipedia.org/wiki/Meaning_of_life&amp;sa=U&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQFnoECAoQAg&amp;usg=AOvVaw22y48wsnCaG0ZDEQYrJXpy"><h3 class="zBAuLc l97dzf"><div class="BNeawe vvjwJb AP7Wnd">Meaning of life - Wikipedia</div></h3><div class="BNeawe UPmit AP7Wnd">en.wikipedia.org &#8250; wiki &#8250; Meaning_of_life</div></a></div><div class="kCrYT"><div><div class="BNeawe s3v9rd AP7Wnd"><div><div class="v9i61e"><div class="BNeawe s3v9rd AP7Wnd">To achieve biological perfection ; To survive, that is, to live as long as possible, including pursuit of immortality (through scientific means). ; To live ...</div></div><div><div class="BNeawe s3v9rd AP7Wnd"><span class="BNeawe"><a href="/url?q=https://en.wikipedia.org/wiki/Meaning_of_life%23Questions&amp;sa=U&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ0gJ6BAgKEAU&amp;usg=AOvVaw04Wdvd0Zz6RhNw4JkLLXLk"><span class="XLloXe AP7Wnd">Questions</span></a></span> · <span class="BNeawe"><a href="/url?q=https://en.wikipedia.org/wiki/Meaning_of_life%23Western_philosophical_perspectives&amp;sa=U&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ0gJ6BAgKEAY&amp;usg=AOvVaw1Zh1Ma64kuKRyYPop-Hnhr"><span class="XLloXe AP7Wnd">Western philosophical...</span></a></span> · <span class="BNeawe"><a href="/url?q=https://en.wikipedia.org/wiki/Meaning_of_life%23Religious_perspectives&amp;sa=U&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ0gJ6BAgKEAc&amp;usg=AOvVaw1WW3BGoB_9xIFP8c5Nm7mc"><span class="XLloXe AP7Wnd">Religious perspectives</span></a></span></div></div></div></div></div></div></div></div><div><div class="Gx5Zad fP1Qef xpd EtOod pkphOe"><div class="egMi0 kCrYT"><a href="/url?q=https://plato.stanford.edu/entries/life-meaning/&amp;sa=U&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQFnoECAsQAg&amp;usg=AOvVaw3Ijb67m8OUmnhp-ZQhWBPp"><h3 class="zBAuLc l97dzf"><div class="BNeawe vvjwJb AP7Wnd">The Meaning of Life - Stanford Encyclopedia of Philosophy</div></h3><div class="BNeawe UPmit AP7Wnd">plato.stanford.edu &#8250; entries &#8250; life-meaning</div></a></div><div class="kCrYT"><div><div class="BNeawe s3v9rd AP7Wnd"><div><div class="v9i61e"><div class="BNeawe s3v9rd AP7Wnd"><span class="r0bn4c rQMQod">May 15, 2007</span><span class="r0bn4c rQMQod"> · </span>One of the field's aims consists of the systematic attempt to identify what people (essentially or characteristically) have in mind when they ...</div></div><div><div class="BNeawe s3v9rd AP7Wnd"><span class="BNeawe"><a href="/url?q=https://plato.stanford.edu/entries/life-meaning/%23MeanMean&amp;sa=U&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ0gJ6BAgLEAY&amp;usg=AOvVaw1Q3BL596wddK4gVgpl2o9-"><span class="XLloXe AP7Wnd">The Meaning of &#8220;Meaning&#8221;</span></a></span> · <span class="BNeawe"><a href="/url?q=https://plato.stanford.edu/entries/life-meaning/%23Supe&amp;sa=U&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ0gJ6BAgLEAc&amp;usg=AOvVaw1hvm7NsgViHoX6-T9KNj4G"><span class="XLloXe AP7Wnd">Supernaturalism</span></a></span> · <span class="BNeawe"><a href="/url?q=https://plato.stanford.edu/entries/life-meaning/%23Natu&amp;sa=U&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ0gJ6BAgLEAg&amp;usg=AOvVaw37AUqhsRrOlVtMUTNa9ScY"><span class="XLloXe AP7Wnd">Naturalism</span></a></span> · <span class="BNeawe"><a href="/url?q=https://plato.stanford.edu/entries/life-meaning/%23Bib&amp;sa=U&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ0gJ6BAgLEAk&amp;usg=AOvVaw0uun6szQQL36RLkx9fEAZx"><span class="XLloXe AP7Wnd">Bibliography</span></a></span></div></div></div></div></div></div></div></div><div><div class="Gx5Zad xpd EtOod pkphOe"><div class="kCrYT"><span><h3 class="zBAuLc l97dzf"><div class="BNeawe deIvCb AP7Wnd">Meaning of life</div></h3></span></div><div><div><div><div class="Xdlr0d"><div class="idg8be"><a class="BVG0Nb" href="/imgres?imgurl=https://media.wired.co.uk/photos/606da3f36ab54fce4fbb2127/16:9/w_1280,c_limit/42b.png&amp;imgrefurl=https://www.wired.co.uk/article/what-is-the-meaning-of-life&amp;h=720&amp;w=1280&amp;tbnid=-rqWMBlU0YelWM&amp;q=What's+the+meaning+of+life?&amp;tbnh=168&amp;tbnw=300&amp;usg=AI4_-kS_u9989v8zsmU5srqkHyxft0BbZw&amp;vet=1&amp;docid=f1c9KZEqEQTDUM&amp;itg=1&amp;sa=X&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ9QF6BAgNEAM"><div><img class="WddBJd" style="max-width:none;height:128px;max-height:128px" alt="media.wired.co.uk/photos/606da3f36ab54fce4fbb2127/..." src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" id="dimg_23" data-deferred="1"></div></a><a class="BVG0Nb" href="/imgres?imgurl=https://i.ytimg.com/vi/mxKj2-BJYps/maxresdefault.jpg&amp;imgrefurl=https://www.youtube.com/watch?v%3DmxKj2-BJYps&amp;h=720&amp;w=1280&amp;tbnid=gSFShF0qOSq2pM&amp;q=What's+the+meaning+of+life?&amp;tbnh=84&amp;tbnw=150&amp;usg=AI4_-kRZ_cSYu3zIXDeuHdzLh7ZQ9Qu3fQ&amp;vet=1&amp;docid=XQaB2MoDsQWm2M&amp;sa=X&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ9QF6BAgNEAU"><div><img class="WddBJd" style="max-width:none;height:128px;max-height:128px" alt="What Is The Meaning Of Life? - YouTube" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" id="dimg_25" data-deferred="1"></div></a><a class="BVG0Nb" href="/imgres?imgurl=https://blog.adioma.com/wp-content/uploads/2020/11/the-meaning-of-life_FB-thumb.png&amp;imgrefurl=https://blog.adioma.com/meaning-of-life-according-to-philosophy/&amp;h=630&amp;w=1200&amp;tbnid=X2_-oh0r6IhVbM&amp;q=What's+the+meaning+of+life?&amp;tbnh=79&amp;tbnw=150&amp;usg=AI4_-kRgpocZHypNKX2xJCBHBvq1walg8w&amp;vet=1&amp;docid=l94uTbnVreqsrM&amp;sa=X&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ9QF6BAgNEAc"><div><img class="WddBJd" style="max-width:none;height:128px;max-height:128px" alt="The Meaning of Life According to Different Philosophies - Adioma" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" id="dimg_27" data-deferred="1"></div></a><a class="BVG0Nb" href="/imgres?imgurl=https://i.ytimg.com/vi/Ebt0X5ybm9Y/maxresdefault.jpg&amp;imgrefurl=https://www.youtube.com/watch?v%3DEbt0X5ybm9Y&amp;h=720&amp;w=1280&amp;tbnid=x3DD9eE-xYohMM&amp;q=What's+the+meaning+of+life?&amp;tbnh=84&amp;tbnw=150&amp;usg=AI4_-kRevJ_7ki8A2DwEEQs6z5h8YrWu6A&amp;vet=1&amp;docid=mLEADai9PuwP7M&amp;sa=X&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ9QF6BAgNEAk"><div><img class="WddBJd" style="max-width:none;height:128px;max-height:128px" alt="The Meaning of Life - YouTube" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" id="dimg_29" data-deferred="1"></div></a><div class="mHhylf"><div class="WZ5GJf"><a class="qN9Ked" href="http://www.google.com/search?ie=UTF-8&amp;ei=PcBWY_PQLd-viLMPv9CKuAM&amp;q=What's+the+meaning+of+life?&amp;tbm=isch&amp;sa=X&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ7Al6BAgNEAs"><button class="DXk5Me Qi9Fd" tabindex="-1"><span class="hWHuJ"><img class="Dk7jOe" alt="" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="max-width:24px;max-height:24px" id="dimg_31" data-deferred="1"></span></button><div class="BNeawe ji5jpf tAd8D AP7Wnd">View all</div></a></div></div></div></div></div></div></div><div class="Q0HXG"></div><div class="kCrYT"><div><div class="BNeawe s3v9rd AP7Wnd"><div><div class="BNeawe s3v9rd AP7Wnd">The meaning of life, or the answer to the question: "What is the meaning of life?", pertains to the significance of living or existence in general. Many other related questions include: "Why are we here?", "What is life all about?", or "What is... <span class="BNeawe"><a href="/url?q=https://en.wikipedia.org/wiki/Meaning_of_life&amp;sa=U&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQmhN6BAgNEA0&amp;usg=AOvVaw1uBMYb_LFuRVsF431EEHW5"><span class="XLloXe AP7Wnd">Wikipedia</span></a></span></div></div></div></div></div><div class="Q0HXG"></div><div><div class="kCrYT"><span class="punez"><div class="BNeawe wyrwXc AP7Wnd">The Meaning Of Life Book</div></span></div><div><div><div class="Xdlr0d"><div class="idg8be"><a class="BVG0Nb" href="/search?ie=UTF-8&amp;q=The+Meaning+of+Life:+A+Very+Short+Introduction&amp;stick=H4sIAAAAAAAAAONgFuLQz9U3MDVOz1PiArHMMooqksu0RLKTrfST83Nz8_OsUvLL88oTi1KKF7HqhWSkKvimJuZl5qUr5Kcp-GSmpVopOCqEpRZVKgRn5BeVKHjmlRTlp5Qml2Tm5wEAXup4FF8AAAA&amp;sa=X&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ0I4BegQIDRAQ"><div><div style="width:112px"><div class="l7d08" style="width:112px;height:112px"><img class="h1hFNe" alt="" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="max-width:112px;max-height:112px" id="dimg_33" data-deferred="1"></div><div class="RWuggc kCrYT"><div><div class="BNeawe s3v9rd AP7Wnd">The Meaning of Life: A Very Short Introduction</div></div></div></div></div></a><a class="BVG0Nb" href="/search?ie=UTF-8&amp;q=The+Meaning+of+Life:+A+Reader&amp;stick=H4sIAAAAAAAAAONgFuLQz9U3MDVOz1Pi1U_XNzRMKi8oNi-yMNYSyU620k_Oz83Nz7NKyS_PK08sSilexCobkpGq4JuamJeZl66Qn6bgk5mWaqXgqBCUmpiSWgQAhRto01EAAAA&amp;sa=X&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ0I4BegQIDRAS"><div><div style="width:112px"><div class="l7d08" style="width:112px;height:112px"><img class="h1hFNe" alt="" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="max-width:112px;max-height:112px" id="dimg_35" data-deferred="1"></div><div class="RWuggc kCrYT"><div><div class="BNeawe s3v9rd AP7Wnd">The Meaning of Life: A Reader</div></div></div></div></div></a><a class="BVG0Nb" href="/search?ie=UTF-8&amp;q=The+Meaning+of+Life&amp;stick=H4sIAAAAAAAAAONgFuLQz9U3MDVOz1Pi1U_XNzTMqygzLsrOstASyU620k_Oz83Nz7NKyS_PK08sSilexCockpGq4JuamJeZl66Qn6bgk5mWCgA3jyQGRwAAAA&amp;sa=X&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ0I4BegQIDRAU"><div><div style="width:112px"><div class="l7d08" style="width:112px;height:112px"><img class="h1hFNe" alt="" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="max-width:112px;max-height:112px" id="dimg_37" data-deferred="1"></div><div class="RWuggc kCrYT"><div><div class="BNeawe s3v9rd AP7Wnd">The Meaning of Life</div></div></div></div></div></a><a class="BVG0Nb" href="/search?ie=UTF-8&amp;q=Man's+Search+for+Meaning&amp;stick=H4sIAAAAAAAAAONgFuLQz9U3MDVOz1PiBLEMK43SyrVEspOt9JPzc3Pz86xS8svzyhOLUooXsUr4JuapFysEpyYWJWcopOUXKfimJuZl5qUDAIFo6BdIAAAA&amp;sa=X&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ0I4BegQIDRAW"><div><div style="width:112px"><div class="l7d08" style="width:112px;height:112px"><img class="h1hFNe" alt="" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="max-width:112px;max-height:112px" id="dimg_39" data-deferred="1"></div><div class="RWuggc kCrYT"><div><div class="BNeawe s3v9rd AP7Wnd">Man's Search for Meaning</div></div></div></div></div></a><a class="BVG0Nb" href="/search?ie=UTF-8&amp;q=The+Meaning+of+Life:+A+Guide+to+Finding+Your+Life's+Purpose&amp;stick=H4sIAAAAAAAAAONgFuLQz9U3MDVOz1Pi1U_XNzTMsMwwKTPLNtESyU620k_Oz83Nz7NKyS_PK08sSilexGodkpGq4JuamJeZl66Qn6bgk5mWaqXgqOBempmSqlCSr-CWmZcCkovMLy0Cy6oXKwSUFhXkF6cCAO8hLR9vAAAA&amp;sa=X&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ0I4BegQIDRAY"><div><div style="width:112px"><div class="l7d08" style="width:112px;height:112px"><img class="h1hFNe" alt="" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="max-width:112px;max-height:112px" id="dimg_41" data-deferred="1"></div><div class="RWuggc kCrYT"><div><div class="BNeawe s3v9rd AP7Wnd">The Meaning of Life: A Guide to Finding Your Life's Purpose</div></div></div></div></div></a><a class="BVG0Nb" href="/search?ie=UTF-8&amp;q=Jeremy+Fink+and+the+Meaning+of+Life&amp;stick=H4sIAAAAAAAAAONgFuLQz9U3MDVOz1PiArNyy43TKrREspOt9JPzc3Pz86xS8svzyhOLUooXsSp7pRal5lYquGXmZSsk5qUolGSkKvimJuZl5qUr5Kcp-GSmpQIA5-UND1QAAAA&amp;sa=X&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ0I4BegQIDRAa"><div><div style="width:112px"><div class="l7d08" style="width:112px;height:112px"><img class="h1hFNe" alt="" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="max-width:112px;max-height:112px" id="dimg_43" data-deferred="1"></div><div class="RWuggc kCrYT"><div><div class="BNeawe s3v9rd AP7Wnd">Jeremy Fink and the Meaning of Life</div></div></div></div></div></a></div></div></div></div></div></div></div><div><div class="Gx5Zad fP1Qef xpd EtOod pkphOe"><div class="egMi0 kCrYT"><a href="/url?q=https://www.theatlantic.com/family/archive/2021/10/meaning-life-macronutrients-purpose-search/620440/&amp;sa=U&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQFnoECAgQAg&amp;usg=AOvVaw2foKWTQcF6C86sVrWH7yv1"><h3 class="zBAuLc l97dzf"><div class="BNeawe vvjwJb AP7Wnd">The Meaning of Life Is Surprisingly Simple - The Atlantic</div></h3><div class="BNeawe UPmit AP7Wnd">www.theatlantic.com &#8250; family &#8250; meaning-life-macronutrients-purpose-search</div></a></div><div class="kCrYT"><div><div class="BNeawe s3v9rd AP7Wnd"><div><div><div class="BNeawe s3v9rd AP7Wnd"><span class="r0bn4c rQMQod">Oct 21, 2021</span><span class="r0bn4c rQMQod"> · </span>Coherence: how events fit together. This is an understanding that things happen in your life for a reason. · Purpose: the existence of goals and ...</div></div></div></div></div></div></div></div><div><div class="Gx5Zad fP1Qef xpd EtOod pkphOe"><div class="egMi0 kCrYT"><a href="/url?q=https://www.psychologytoday.com/us/blog/hide-and-seek/201803/what-is-the-meaning-life&amp;sa=U&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQFnoECAUQAg&amp;usg=AOvVaw1ejG7wuyKn4DJqqGDkr2ML"><h3 class="zBAuLc l97dzf"><div class="BNeawe vvjwJb AP7Wnd">What Is the Meaning of Life? - Psychology Today</div></h3><div class="BNeawe UPmit AP7Wnd">www.psychologytoday.com &#8250; blog &#8250; hide-and-seek &#8250; what-is-the-meaning-...</div></a></div><div class="kCrYT"><div><div class="BNeawe s3v9rd AP7Wnd"><div><div><div class="BNeawe s3v9rd AP7Wnd"><span class="r0bn4c rQMQod">Mar 3, 2018</span><span class="r0bn4c rQMQod"> · </span>The meaning of life is that which we choose to give it.</div></div></div></div></div></div></div></div><div><div class="Gx5Zad fP1Qef xpd EtOod pkphOe"><div class="egMi0 kCrYT"><a href="/url?q=https://positivepsychology.com/meaning-of-life-positive-psychology/&amp;sa=U&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQFnoECAcQAg&amp;usg=AOvVaw2USb8mxvZfjdWWXMUeVyEp"><h3 class="zBAuLc l97dzf"><div class="BNeawe vvjwJb AP7Wnd">What Is the Meaning of Life According to Positive Psychology</div></h3><div class="BNeawe UPmit AP7Wnd">positivepsychology.com &#8250; meaning-of-life-positive-psychology</div></a></div><div class="kCrYT"><div><div class="BNeawe s3v9rd AP7Wnd"><div><div><div class="BNeawe s3v9rd AP7Wnd"><span class="r0bn4c rQMQod">Feb 6, 2018</span><span class="r0bn4c rQMQod"> · </span>Purpose, or the extent to which people experience life as being directed and motivated by valued life goals. Mattering, or the degree to which ...</div></div></div></div></div></div></div></div><div><div class="Gx5Zad fP1Qef xpd EtOod pkphOe"><div class="egMi0 kCrYT"><a href="/url?q=https://www.wired.co.uk/article/what-is-the-meaning-of-life&amp;sa=U&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQFnoECAMQAg&amp;usg=AOvVaw2uW3QsPhSKy3Y8F8JF1afb"><h3 class="zBAuLc l97dzf"><div class="BNeawe vvjwJb AP7Wnd">What's the meaning of life? | WIRED UK</div></h3><div class="BNeawe UPmit AP7Wnd">www.wired.co.uk &#8250; Science &#8250; Physics</div></a></div><div class="kCrYT"><div><div class="BNeawe s3v9rd AP7Wnd"><div><div><div class="BNeawe s3v9rd AP7Wnd"><span class="r0bn4c rQMQod">Aug 11, 2017</span><span class="r0bn4c rQMQod"> · </span>&#8220;You could be asking for the purpose of life &#8211; for example, God created us to worship him, or procreate. Or the value of life &#8211; for example, ...</div></div></div></div></div></div></div></div><div><div class="Gx5Zad fP1Qef xpd EtOod pkphOe"><div class="egMi0 kCrYT"><a href="/url?q=https://www.youtube.com/watch%3Fv%3DfeXON_gpc94&amp;sa=U&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQtwJ6BAgGEAE&amp;usg=AOvVaw3rPTKNY9cNVn7WU9SD33Ln"><h3 class="zBAuLc l97dzf"><div class="BNeawe vvjwJb AP7Wnd">What Is The Meaning Of Life? - YouTube</div></h3><div class="BNeawe UPmit AP7Wnd">www.youtube.com &#8250; watch</div></a></div><div class="kCrYT"><a href="/url?q=https://www.youtube.com/watch%3Fv%3DfeXON_gpc94&amp;sa=U&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQuAJ6BAgGEAI&amp;usg=AOvVaw2lU801GsBt3FdGp8oAETR8"><div class="lcJF1d Q6Xouf G6SP0b eeoFaf"><div style="width:120px;height:67px;position:static"><img class="h1hFNe" alt="Video for What's the meaning of life?" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="width:120px;height:67px" id="dimg_9" data-deferred="1"></div><div class="S9HcI oz9fhd"></div><div class="S9HcI UhWgBb" style="background-size:36px"></div></div></a><div><div class="BNeawe s3v9rd AP7Wnd"><div><div><div class="BNeawe s3v9rd AP7Wnd"><span class="r0bn4c rQMQod">Sep 20, 2018</span><span class="r0bn4c rQMQod"> · </span>Frankl and "Man's Search For Meaning" Patreon: https://www.patreon.com/user?u=3261155.<br>Duration: <span class="r0bn4c rQMQod">14:53</span><br>Posted: <span class="r0bn4c rQMQod">Sep 20, 2018</span></div></div></div></div></div><div class="rl7ilb"></div></div></div></div><div><div class="Gx5Zad fP1Qef xpd EtOod pkphOe"><div class="egMi0 kCrYT"><a href="/url?q=https://www.youtube.com/watch%3Fv%3DYzPhcUyZXWA&amp;sa=U&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQtwJ6BAgEEAE&amp;usg=AOvVaw2t5a03rMQl1933Gsap0z5N"><h3 class="zBAuLc l97dzf"><div class="BNeawe vvjwJb AP7Wnd">What is the Meaning of Life? - YouTube</div></h3><div class="BNeawe UPmit AP7Wnd">www.youtube.com &#8250; watch</div></a></div><div class="kCrYT"><a href="/url?q=https://www.youtube.com/watch%3Fv%3DYzPhcUyZXWA&amp;sa=U&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQuAJ6BAgEEAI&amp;usg=AOvVaw3IcEr7DkMWRtfQpMrsTEjC"><div class="lcJF1d Q6Xouf G6SP0b eeoFaf"><div style="width:120px;height:67px;position:static"><img class="h1hFNe" alt="Video for What's the meaning of life?" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="width:120px;height:67px" id="dimg_11" data-deferred="1"></div><div class="S9HcI oz9fhd"></div><div class="S9HcI UhWgBb" style="background-size:36px"></div></div></a><div><div class="BNeawe s3v9rd AP7Wnd"><div><div><div class="BNeawe s3v9rd AP7Wnd"><span class="r0bn4c rQMQod">Sep 25, 2021</span><span class="r0bn4c rQMQod"> · </span>Man cannot stand a meaningless life. But, what is the meaning of life? It is hard to think of a ...<br>Duration: <span class="r0bn4c rQMQod">22:15</span><br>Posted: <span class="r0bn4c rQMQod">Sep 25, 2021</span></div></div></div></div></div><div class="rl7ilb"></div></div></div></div><div><div class="Gx5Zad fP1Qef xpd EtOod pkphOe"><div class="egMi0 kCrYT"><a href="/url?q=https://www.lifehack.org/815581/whats-the-meaning-of-life&amp;sa=U&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQFnoECAwQAg&amp;usg=AOvVaw3NEYJIgklkrZlGDpU4UAze"><h3 class="zBAuLc l97dzf"><div class="BNeawe vvjwJb AP7Wnd">What Is the Meaning of Life? A Guide to Living a Meaningful Life</div></h3><div class="BNeawe UPmit AP7Wnd">www.lifehack.org &#8250; whats-the-meaning-of-life</div></a></div><div class="kCrYT"><div><div class="BNeawe s3v9rd AP7Wnd"><div><div><div class="BNeawe s3v9rd AP7Wnd"><span class="r0bn4c rQMQod">Sep 23, 2022</span><span class="r0bn4c rQMQod"> · </span>What Is the Meaning of Life? A Guide to Living a Meaningful Life · 1. Purpose. This refers to the existence of your aims and goals. · 2. Coherence.</div></div></div></div></div></div></div></div><div><div class="Gx5Zad fP1Qef xpd EtOod pkphOe"><div class="egMi0 kCrYT"><a href="/url?q=https://qz.com/1310792/the-secret-to-a-meaningful-life-is-simpler-than-you-think/&amp;sa=U&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQFnoECAkQAg&amp;usg=AOvVaw2q5kNFDlWXiPpEghUJ_Tpa"><h3 class="zBAuLc l97dzf"><div class="BNeawe vvjwJb AP7Wnd">The secret to a meaningful life is simpler than you think - Quartz</div></h3><div class="BNeawe UPmit AP7Wnd">qz.com &#8250; the-secret-to-a-meaningful-life-is-simpler-than-you-think</div></a></div><div class="kCrYT"><div><div class="BNeawe s3v9rd AP7Wnd"><div><div><div class="BNeawe s3v9rd AP7Wnd"><span class="r0bn4c rQMQod">Jun 24, 2018</span><span class="r0bn4c rQMQod"> · </span>Life is meaningful, they say, but its value is made by us in our minds, and subject to change over time. Landau argues that meaning is ...</div></div></div></div></div></div></div></div><div><div class="Gx5Zad xpd EtOod pkphOe"><div class="K8tyEc"><div class="mEUgP"><span><div class="BNeawe">Related searches</div></span></div></div><div class="x54gtf"></div><div><div class="gGQDvd iIWm4b"><a class="Q71vJc" href="/search?ie=UTF-8&amp;q=Why+is+the+meaning+of+life+42&amp;sa=X&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ1QJ6BAgBEAI"><accordion-entry-search-icon><span class="ieB2Dd"><img class="OEaqif" alt="" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="max-width:20px;max-height:20px" id="dimg_3" data-deferred="1"></span></accordion-entry-search-icon><div class="kjGX2"><span><div class="BNeawe s3v9rd AP7Wnd lRVwie">Why is the meaning of life 42</div></span></div></a></div></div><div class="x54gtf"></div><div><div class="gGQDvd iIWm4b"><a class="Q71vJc" href="/search?ie=UTF-8&amp;q=What+is+the+meaning+of+your+life&amp;sa=X&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ1QJ6BAgBEAQ"><accordion-entry-search-icon><span class="ieB2Dd"><img class="OEaqif" alt="" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="max-width:20px;max-height:20px" id="dimg_5" data-deferred="1"></span></accordion-entry-search-icon><div class="kjGX2"><span><div class="BNeawe s3v9rd AP7Wnd lRVwie">What is the meaning of your life</div></span></div></a></div></div><div class="x54gtf"></div><div><div class="gGQDvd iIWm4b"><a class="Q71vJc" href="/search?ie=UTF-8&amp;q=What+is+the+meaning+of+life+answer&amp;sa=X&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ1QJ6BAgBEAY"><accordion-entry-search-icon><span class="ieB2Dd"><img class="OEaqif" alt="" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="max-width:20px;max-height:20px" id="dimg_7" data-deferred="1"></span></accordion-entry-search-icon><div class="kjGX2"><span><div class="BNeawe s3v9rd AP7Wnd lRVwie">What is the meaning of life answer</div></span></div></a></div></div><div class="x54gtf"></div><div><div class="gGQDvd iIWm4b"><a class="Q71vJc" href="/search?ie=UTF-8&amp;q=What+is+the+meaning+of+life+essay&amp;sa=X&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ1QJ6BAgBEAg"><accordion-entry-search-icon><span class="ieB2Dd"><img class="OEaqif" alt="" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="max-width:20px;max-height:20px" id="dimg_13" data-deferred="1"></span></accordion-entry-search-icon><div class="kjGX2"><span><div class="BNeawe s3v9rd AP7Wnd lRVwie">What is the meaning of life essay</div></span></div></a></div></div><div class="x54gtf"></div><div><div class="gGQDvd iIWm4b"><a class="Q71vJc" href="/search?ie=UTF-8&amp;q=Meaning+of+life+examples&amp;sa=X&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ1QJ6BAgBEAo"><accordion-entry-search-icon><span class="ieB2Dd"><img class="OEaqif" alt="" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="max-width:20px;max-height:20px" id="dimg_15" data-deferred="1"></span></accordion-entry-search-icon><div class="kjGX2"><span><div class="BNeawe s3v9rd AP7Wnd lRVwie">Meaning of life examples</div></span></div></a></div></div><div class="x54gtf"></div><div><div class="gGQDvd iIWm4b"><a class="Q71vJc" href="/search?ie=UTF-8&amp;q=Meaning+of+life+quotes&amp;sa=X&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ1QJ6BAgBEAw"><accordion-entry-search-icon><span class="ieB2Dd"><img class="OEaqif" alt="" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="max-width:20px;max-height:20px" id="dimg_17" data-deferred="1"></span></accordion-entry-search-icon><div class="kjGX2"><span><div class="BNeawe s3v9rd AP7Wnd lRVwie">Meaning of life quotes</div></span></div></a></div></div><div class="x54gtf"></div><div><div class="gGQDvd iIWm4b"><a class="Q71vJc" href="/search?ie=UTF-8&amp;q=What+is+the+meaning+of+life+in+philosophy&amp;sa=X&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ1QJ6BAgBEA4"><accordion-entry-search-icon><span class="ieB2Dd"><img class="OEaqif" alt="" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="max-width:20px;max-height:20px" id="dimg_19" data-deferred="1"></span></accordion-entry-search-icon><div class="kjGX2"><span><div class="BNeawe s3v9rd AP7Wnd lRVwie">What is the meaning of life in philosophy</div></span></div></a></div></div><div class="x54gtf"></div><div><div class="gGQDvd iIWm4b"><a class="Q71vJc" href="/search?ie=UTF-8&amp;q=What%27s+the+meaning+of+life,+the+universe+and+everything&amp;sa=X&amp;ved=2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ1QJ6BAgBEBA"><accordion-entry-search-icon><span class="ieB2Dd"><img class="OEaqif" alt="" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="max-width:20px;max-height:20px" id="dimg_21" data-deferred="1"></span></accordion-entry-search-icon><div class="kjGX2"><span><div class="BNeawe s3v9rd AP7Wnd lRVwie">What's the meaning of life, the universe and everything</div></span></div></a></div></div></div></div><footer> <div>  <div class="Gx5Zad xpd EtOod pkphOe BmP5tf"><div class="nMymef MUxGbd lyLwlc"><a class="nBDE1b G5eFlf" href="/search?q=What%27s+the+meaning+of+life%3F&amp;ie=UTF-8&amp;ei=PcBWY_PQLd-viLMPv9CKuAM&amp;start=10&amp;sa=N" aria-label="Next page">Next &gt;</a></div></div> </div>  <div id="EOlPnc"><div class="Srfpq"><div><span class="EYqSq unknown_loc"></span><span class="dfB0uf">Glenshaw, Pennsylvania</span></div><span>From your IP address</span><span>&nbsp;-&nbsp;</span><a href="/url?q=http://support.google.com/websearch%3Fp%3Dws_settings_location%26hl%3Den&amp;sa=U&amp;ved=0ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQty4IqgE&amp;usg=AOvVaw3jP-_JevKyd4R73siei0hc">Learn more</a></div><div><a href="/url?q=https://accounts.google.com/ServiceLogin%3Fcontinue%3Dhttp://www.google.com/search%253Fq%253DWhat%252527s%252Bthe%252Bmeaning%252Bof%252Blife%25253F%26hl%3Den&amp;sa=U&amp;ved=0ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQxs8CCKsB&amp;usg=AOvVaw1vIoJ1eHWTJM-eJWPkP-jT">Sign in</a></div><div><a class="xeDNfc" href="http://www.google.com/preferences?hl=en&amp;fg=1&amp;sa=X&amp;ved=0ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQ5fUCCKwB">Settings</a><a class="xeDNfc" href="http://policies.google.com/privacy?hl=en&amp;fg=1">Privacy</a><a class="xeDNfc" href="http://policies.google.com/terms?hl=en&amp;fg=1">Terms</a></div></div> </footer><script nonce="qwhd1XQyVMIgaKaSDQplWA">(function(){var hl='en';(function(){
var f=this||self,g=function(a){return a};
var h,k=function(){if(void 0===h){var a=null,b=f.trustedTypes;if(b&&b.createPolicy){try{a=b.createPolicy("goog#html",{createHTML:g,createScript:g,createScriptURL:g})}catch(c){f.console&&f.console.error(c.message)}h=a}else h=a}return h};var p=function(a,b){this.h=a===l&&b||"";this.g=m},q=function(a){return a instanceof p&&a.constructor===p&&a.g===m?a.h:"type_error:Const"},m={},l={};var t=function(a,b){this.g=b===r?a:""};t.prototype.toString=function(){return this.g+""};var u=function(a){return a instanceof t&&a.constructor===t?a.g:"type_error:TrustedResourceUrl"},y=function(){var a={},b=q(new p(l,"/complete/search"));if(!v.test(b))throw Error("a`"+b);var c=b.replace(w,function(e,d){if(!Object.prototype.hasOwnProperty.call(a,d))throw Error("b`"+d+"`"+b+"`"+JSON.stringify(a));e=a[d];return e instanceof p?q(e):encodeURIComponent(String(e))});return x(c)},w=/%{(\w+)}/g,v=RegExp("^((https:)?//[0-9a-z.:[\\]-]+/|/[^/\\\\]|[^:/\\\\%]+/|[^:/\\\\%]*[?#]|about:blank#)","i"),z=/^([^?#]*)(\?[^#]*)?(#[\s\S]*)?/,r={},x=function(a){var b=k();a=b?b.createScriptURL(a):a;return new t(a,r)},A=function(a,b,c){if(null==c)return b;if("string"===typeof c)return c?a+encodeURIComponent(c):"";for(var e in c)if(Object.prototype.hasOwnProperty.call(c,e)){var d=c[e];d=Array.isArray(d)?d:[d];for(var n=0;n<d.length;n++){var P=d[n];null!=P&&(b||(b=a),b+=(b.length>a.length?"&":"")+encodeURIComponent(e)+"="+encodeURIComponent(String(P)))}}return b};var B={},C=function(a,b){this.g=b===B?a:""};C.prototype.toString=function(){return this.g.toString()};var D=function(a){var b=k();a=b?b.createHTML(a):a;return new C(a,B)};function E(a,b){if(void 0!==a.tagName){if("script"===a.tagName.toLowerCase())throw Error("c");if("style"===a.tagName.toLowerCase())throw Error("d");}a.innerHTML=b instanceof C&&b.constructor===C?b.g:"type_error:SafeHtml"};var F=document.querySelector(".l"),G=document.querySelector("#sf"),H=G.querySelector(".sbc"),I=G.querySelector("[type=text]"),J=G.querySelector("[type=submit]"),K=G.querySelector(".sc"),L=G.querySelector(".x"),M=I.value,N=[],O=-1,Q=M,R,S,T;M||(L&&(L.style.display="none"),U(!1));function U(a){if(H.classList.contains("esbc")){var b=H.classList.contains("chsbc"),c=H.classList.contains("rtlsbc");a&&(K.style.display="block",b?(G.style.borderRadius="20px 20px 0 0",K.style.borderBottom="1px solid #DFE1E5",J.style.borderRadius=c?"20px 0 0 0":"0 20px 0 0"):H.style.borderRadius=c?"0 8px 0 0":"8px 0 0 0");a||(K.style.display="none",b?(G.style.borderRadius="20px",K.style.borderBottom="none",J.style.borderRadius=c?"20px 0 0 20px":"0 20px 20px 0"):H.style.borderRadius=c?"0 8px 8px 0":"8px 0 0 8px")}}function V(){G.querySelector("[name=oq]").value=Q;G.querySelector("[name=aqs]").value="heirloom-srp."+(0<=O?O:"")+"."+(0<N.length?"0l"+N.length:"")}
function W(){R=null;if(S){var a={client:"heirloom-srp",hl:hl,json:"t",callback:"hS",q:S};"undefined"!==typeof ds&&ds&&(a.ds=ds);var b=document;var c="SCRIPT";"application/xhtml+xml"===b.contentType&&(c=c.toLowerCase());c=b.createElement(c);b=y();b=z.exec(u(b).toString());var e=b[3]||"";a=x(b[1]+A("?",b[2]||"",a)+A("#",e));c.src=u(a);var d,n;(d=(a=null==(n=(d=(c.ownerDocument&&c.ownerDocument.defaultView||window).document).querySelector)?void 0:n.call(d,"script[nonce]"))?a.nonce||a.getAttribute("nonce")||
"":"")&&c.setAttribute("nonce",d);document.body.appendChild(c);S=null;R=setTimeout(W,500)}}function X(){for(;K.firstChild;)K.removeChild(K.firstChild);N=[];O=-1;U(!1)}function Y(){var a=K.querySelector(".scs");a&&(a.className="");0<=O?(a=K.childNodes[O],a.className="scs",M=a.textContent):M=Q;I.value=M}I.addEventListener("focus",function(){F&&(F.style.display="none")},!1);I.addEventListener("blur",function(){X();F&&(F.style.display="")},!1);I.addEventListener("keyup",function(a){M=I.value;T=!1;13===a.which?V():27===a.which?(X(),F&&(F.style.display=""),M=Q,I.value=M):40===a.which?(O++,O>=N.length&&(O=-1),Y()):38===a.which?(O--,-1>O&&(O=N.length-1),Y()):(a=M)?(L&&(L.style.display=""),S=a,R||W(),Q=a):(L&&(L.style.display="none"),U(!1),X(),Q="",T=!0)},!1);J.addEventListener("click",V,!1);L.addEventListener("click",function(){I.value="";L.style.display="none";U(!1)},!1);H.addEventListener("click",function(){I.focus()},!1);window.hS=function(a){if(!T){X();0===a[1].length&&U(!1);for(var b=0;b<a[1].length;b++){var c=a[1][b][0],e=document.createElement("div");E(e,D(c));e.addEventListener("mousedown",function(d){d.preventDefault();return!1},!1);c=c.replace(/<\/?b>/g,"");e.addEventListener("click",function(d){return function(){O=d;V();Y();X();G.submit()}}(b),!1);e.addEventListener("mouseover",function(d){return function(){O!==d&&(O=d,Y())}}(b),!1);K.appendChild(e);U(!0);N.push(c)}}};}).call(this);})();(function(){
window.prh=function(d,a){a=a.split(",");for(var b=0;b<a.length;b++){var c=document.createElement("link");c.rel=d;c.href=a[b];(document.head||document.querySelector("head")).appendChild(c)}};}).call(this);(function(){
function b(a){for(a=a.target||a.srcElement;a&&"A"!==a.nodeName;)a=a.parentElement;a&&(a.href||"").match(/\/search.*[?&]tbm=isch/)&&(a.href+="&biw="+document.documentElement.clientWidth,a.href+="&bih="+document.documentElement.clientHeight)}document.addEventListener("click",b,!1);document.addEventListener("touchStart",b,!1);}).call(this);</script></div><!-- cctlcm 0 cctlcm --><textarea class="csi" name="csi" style="display:none"></textarea><script nonce="qwhd1XQyVMIgaKaSDQplWA">(function(){var e='PcBWY_PQLd-viLMPv9CKuAM';var sn='web';var timl=false;var gecoh=false;var fil=true;(function(){
function D(a){var b=gecoh;if(!a||E(a))return 0;if(!a.getBoundingClientRect)return 1;var c=function(d){return d.getBoundingClientRect()};return F(a,c,b)?0:L(a,c)}function F(a,b,c){a:{for(var d=a;d&&null!==d;d=d.parentElement)if("hidden"===d.style.overflow||c&&"G-EXPANDABLE-CONTENT"===d.tagName&&"hidden"===getComputedStyle(d).getPropertyValue("overflow")){c=d;break a}c=null}if(!c)return!1;a=b(a);b=b(c);return a.bottom<b.top||a.top>=b.bottom||a.right<b.left||a.left>=b.right}
function E(a){return"none"===a.style.display?!0:document.defaultView&&document.defaultView.getComputedStyle?(a=document.defaultView.getComputedStyle(a),!!a&&("hidden"===a.visibility||"0px"===a.height&&"0px"===a.width)):!1}
function L(a,b){var c=b(a);a=c.left+window.pageXOffset;b=c.top+window.pageYOffset;var d=c.width;c=c.height;var g=0;if(0>=c&&0>=d)return g;var q=window.innerHeight||document.documentElement.clientHeight;0>b+c?g=2:b>=q&&(g=4);if(0>a+d||a>=(window.innerWidth||document.documentElement.clientWidth))g|=8;g||(g=1,b+c>q&&(g|=4));return g};var M=e,N=sn,O="undefined"===typeof de?!0:!1!==de,P=[],Q="undefined"!==typeof fil?fil:!1;function R(a,b,c){a="/gen_204?atyp=csi&s="+(N||"web")+"&t="+a+("&lite=1&ei="+M+"&conn="+(window.navigator&&window.navigator.connection?window.navigator.connection.type:-1)+b);b="&rt=";for(var d in c)a+=""+b+d+"."+c[d],b=",";return a}function S(a){a={prt:a};window.wsrt&&(a.wsrt=window.wsrt);return a}function T(a){window.ping?window.ping(a):(new Image).src=a}
(function(){for(var a=(new Date).getTime()-window.start,b=S(a),c=0,d=0,g=0,q=document.getElementsByTagName("img"),r=O?"&biw="+window.innerWidth+"&bih="+window.innerHeight:"",G=function(){r+="&ima="+g;b.aft=c;T(R("aft",r,b))},y=0,U=function(h,t,u){var m=h.src;h.onload=function(){u&&m&&m===h.src||(d=(new Date).getTime()-window.start,t&&++y===g&&(c=d,G()),h.onload=null)}},V=0,f=void 0;f=q[V++];){var v=D(f),n=!!(v&1);n&&++g;var w=f.hasAttribute("data-ilite"),x=f.hasAttribute("data-deferred"),p=f.hasAttribute("data-src")||
f.hasAttribute("data-lzysrc"),z=!x&&!w&&p;p=!!(google.ldi&&f.id&&google.ldi[f.id])||w&&p;P.push([v,x||w,z,p]);var A=(v=f.complete&&!x&&!(n&&z))&&Number(f.getAttribute("data-iml"))||0;v&&A?(n&&++y,A&&(f=A-window.start,n&&(c=Math.max(c,f)),d=Math.max(d,f))):U(f,n,Q&&(x||z||w&&p))}c||(c=a);d||(d=c);y===g&&G();google.rglh&&google.rglh();window.addEventListener("load",function(){window.setTimeout(function(){b.ol=(new Date).getTime()-window.start;timl&&(b.iml=d);var h=window.performance&&window.performance.timing;h&&(b.rqst=h.responseEnd-h.requestStart,b.rspt=h.responseEnd-h.responseStart);for(var t=h=0,u=0,m=0,H=0,I=0,W=0,k;k=P[W++];){var l=k[0],B=k[1],J=k[2];k=k[3];var X=0==l,C=l&8,K=l&4;(l=1==l||2==l||C&&!K)&&!C&&(B&&!k||++u,J&&++I);B&&(l&&k&&++h,K&&!k&&++t);X||C?J||++H:B||++m}r+="&ime="+u+"&imel="+I+("&imex="+m+"&imeh="+H)+("&imea="+h+"&imeb="+t);T(R("all",r,b))},0)},!1)})();}).call(this);})();</script><script nonce="qwhd1XQyVMIgaKaSDQplWA">(function(){prh('preconnect', 'http://www.googleadservices.com/')})();
window._setImagesSrc=function(e,f){function g(b){b.onerror=function(){b.style.display="none"};b.setAttribute("data-deferred","2");b.src=f}for(var c=0;c<e.length;++c){var a=e[c],d=document.getElementById(a)||document.querySelector('img[data-iid="'+a+'"]');d?(a=void 0,(null==(a=google.c)?0:a.setup)&&google.c.setup(d),g(d)):(google.iir=google.iir||{},google.iir[a]=f)}};"undefined"===typeof window.google&&(window.google={});</script><script nonce="qwhd1XQyVMIgaKaSDQplWA">(function(){var s='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAA6ElEQVR4Ae2UvQ7BYBSGW4uFxlVICLsYDA0D14NEunRxHSJ+BkYG9ibiHtgkuvpZWOod3uFESqpOF/ElT/q958h5OtQx/iexY/evY9ACJjBewUtkXHEPyBYUNQQuCETuggNrF2DHF3A4kfUMmLB+BoUYAg4nIX0TTNnbfCjg8HDBGuR4z4Ij+813giAC8rcrkXusjdQEpMpcYt5rCzrMaea7tqD9JLhpCyrMZeadpmApssPaUOszXQALGHz67De0/2gpMGPP014VFpizfgJ5zWXnAF8MryW1rj3x5l8LJANQF1lZQH5f8AAWpNcUs6HAEAAAAABJRU5ErkJggg\x3d\x3d';var i=['flex_text_audio_icon_chunk'];_setImagesSrc(i,s);})();</script><script nonce="qwhd1XQyVMIgaKaSDQplWA">(function(){var s='data:image/jpeg;base64,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';var i=['dimg_23'];_setImagesSrc(i,s);})();</script><script nonce="qwhd1XQyVMIgaKaSDQplWA">(function(){var s='data:image/jpeg;base64,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\x3d\x3d';var i=['dimg_25'];_setImagesSrc(i,s);})();</script><script nonce="qwhd1XQyVMIgaKaSDQplWA">(function(){var s='data:image/jpeg;base64,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\x3d';var i=['dimg_27'];_setImagesSrc(i,s);})();</script><script nonce="qwhd1XQyVMIgaKaSDQplWA">(function(){var s='data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBwgHBgkIBwgKCgkLDRYPDQwMDRsUFRAWIB0iIiAdHx8kKDQsJCYxJx8fLT0tMTU3Ojo6Iys/RD84QzQ5OjcBCgoKDQwNGg8PGjclHyU3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3N//AABEIAIAA5AMBEQACEQEDEQH/xAAbAAABBQEBAAAAAAAAAAAAAAAFAQIDBAYAB//EAEYQAAIBAwMBAwgFCAgGAwAAAAECAwAEEQUSITEGQVETFCJhcYGRsSMycqHBFTM2UnOC0eEHFjQ1QmPw8SRUYpKywiVTov/EABoBAAIDAQEAAAAAAAAAAAAAAAABAgMEBQb/xAA5EQACAgEBBAcFBwQCAwAAAAAAAQIDEQQFEiExEzIzQVFxgSI0YbHBFCM1kaHR8BVCUvFy4UNTYv/aAAwDAQACEQMRAD8A0dtBJPKsMKF5G+qo767cpKKyzwkISskoQWWy8NF1P/k3+K/xqr7RV4mn+n6v/wBb/T9xZNNvLdQ09uyAkKCSOp6d9CthLkwno761mccfkLc2V3bKpuIGQMcDOD8qcbIz6rFbp7qUnZHGRY7G6kt/OFhYxYJ3ZHQUnbBPdb4jjpbpQ6RR4eg6Gwu7iMSW8DOhOMgilKyEXhscNLdZHehHKJPyRf4ybVviP40unr8Sf2DU/wCHyKoQjuqwzKJ2KMhgcBSGO28UDwMKUyOBVGKQJCgUEsEbLnrTINCBcUxYHbc8nrSJYOK5xQGBCMCmLkJ1pAKFoHgXHFAYGEc0yLGEc8U0LA0jJoExmKYhpHNAhCuRQBHtqQi5ZTvaXMdxEBvQnG4ccjH41XOKnFxZbTbKmxWR5o2GgX02o28r3AQFH2jaMd1c2+tVvCPUbP1M9TCUp9zAk+rXN46QyhAolB9Ec9a1QpjBby8Poci3XW3yVcsYyvmE+1gzDb/bPyqnS82bttdSHm/kS2H6Nkf5b/jULO3LdN+H+j+ougZTRyw6gsaeoWbcMeznu6XK+INGv3jL9WLkfq1d9lgc/wDqt7XJAzB8a0HOFOO6gBwFAxwFIYw0yJwGaB4FwKB4GlcHINBFoTbTI4FApEhQooGkhki0Ii0NAxwetMS4DyuBnoPE9Ki5Jc2WwqnY8RWSGS4gjHpTx58AcmqXqII3V7K1EueF6jEnikTesgC9MtxTjqYSI2bL1EXw4+X/AGSshUAkHaehxwavjJPkYLKp1vE1jzI8bTyOSKZXgaV5piwMI5pkWhDQIYQuelAE4HFIl3Go7I/2Of8Aa/hWDWdZfzvPRbF7KXn9EAIh/wAWv7QfOtb6v88DiQ7Vef1NfqunjUEjUylNhzwM1zqrejecHqNZpFqYpN4wN828z0eWAOXCxtyRjNG9vWJidKp0kq084TItAUPpO3OMswqeoeLclOzVvaXHmULzRYrW0eVbh3ZBwMDnpVsNRKUksGLUbNhVU5qWcAocVqOUNxQA9R6IpElyHUDGbaZHA4cCkPuGdTQRFPC0D5HcYpgdigBBnvoEhJXSKNnlYKijJY9wpZS4smouTwiNjJGhLAIwGSr4LKPX6/VWKy9y4RO9pNmRrW9bxfh3GH1ntXcLeGG3tzIV69cY/wBeysz48zpqKisJF3Sdetb2AAQh5x9aIEbvcD191BMnvLyCe3aO22eUzhopUKOPeCKABmn6xNpkhKeUx3xM24N7sZ/2pptciMoqS3ZLKNVomqWuswMfJiG4APoK+fnWmvUTykzlanZdG5KUMp4LJ+oDXQPNkbjkUEWNOD0piGnrQIlBoJI1XZIf8JN+0HyFc7V9ZHoti9lLzAEP9qX9oPnWyXV/ngcWHarz+poO1LMsVvtYj0z0OKx6VcWdvbDahHD738iSwyezrEnJ8m/J9pqNnblmn9wefB/U7RONGf8Afp39sGg90fqZxCSoyfvrdhHn03jidtyaBYH4xSJCdO+gBw++kMUDmgEcRQGBoFMWDiKAwIF8aBYHYoySSFIyeKQYyUNVZ40jRcBt4Yk92On34rHfYpezE72zNI607Jrj3A55fznlJQzu5DDPXjmsx1gWxiUJbhV+lJe4ZRyx7k9nPd4UAD5fJPvmuEKQwcW9vAoUtjjcSvT1UAZy91LWfLE3Vr5SAfVWZmJx7fGgRU/LbiQAxvF4KxDKPxoA0XZ278swlVvJksMuhOOveeo9tAeZu7/U7a2vIbaVJIpXU7mYAqGH8RyCOK2V6ndWJHF1eyt+W9Tw+BPIpViCR48Hx5FbYyUllHBsrlXNwnzRGVpkBmKZEkx4UiQe0HU7ext5UnLZL5G1c91Y76pTaaOxs7WVaetxmCo5AsyuegcH14zWhp7uDmxklYn8fqF9c1C3vkiWAtlWJO5cVnoqlBts6W0NVXqIxVfcSWmo28Wjm2bf5Tay/V8ajOqTs3idOsqjpHU+eH+oukana21iIZ927cTwuRii6qcp7yJ6LW0007k+fHuJzf6Rg4iXp/8AVUeiuLHq9Djq/oAF4bqetbDiD+M0DEA55oDA4daTAX10hnHmgbEINMRwBoA7pQIcPXSJLkVb/UDZRARrmaU4QZ6eusupl/adnZVXO30R1pYSXVuZL08sdwHhWU7Jz6DED9EfcelADodEhTllGe8igCUaNaHOUBJ68daAyDNV0OOfcVRVyMDAoEZDUexsQDNIFVMcFjgA0ADOy0A07tAlvcMvm8rbBznDd3sz/CgDTdqY2uNX0qFPTOxiD9XKgjv9hoHg09ym0RjaFIQDAORxwPuxXQ0sswx4HmNr1qOo3l3or91akcoZQRJNuOvSkSJV6cUmTRxAz0oFgepFBJcR2enqpEsiDk0CJPeaTJI5OQfbSGnkUigBw6UAdigDlpDQ+gZ1AHH1YzQMb9agjgegye730m8LJZXCU5KMebMPZXEmvdtJYxnze2Tv/wAIrnSlvPJ6umpVQUF3HoCgAADgeFRLBQxXgmgDg+T/ADoEOzx4eygBpjLKe+gDHa5PAutx6fqMrQxmLcpzjeefu4oAzmqNpyvItudu5wFKEswGe7u8KBhWLUY5r575vohbwCKLdljGmQWY47zwKADVvfifEM7KtwMAIOBgjK47+latPco+yzj7T0UrvvYc/An46Vvz4HmxCBmmLBPCN00ef1xx76jLky2vjNeZs76zgaznCQRqxQ4KoM5xXMhOW8uJ6u/T1uqSUVy8AJ2bgjmupXdVdQnAIyOTWrVSaSwcfZNSnY3JZ4FjtDDFG9n5ONFyzZ2qBn6tQ00m97LL9pwjGVe6scf2CV89lZKrS26EMcDbGKorVk+TN+olp6EnOPP4AbVby0uLcJaw7H3ZJ2AcVpqrnGWZM5Ws1NFte7XHjnwwXNAgia0lkmRTmQgFgDgACq9RJ7ySNWzKoOpymu8h1+JIZYWijVQwIO1cdD/OpaeTaeSnadcYSi4rGU/0/wBl7RIIX01DJEjMS3LKCepqu+TU3hmzZ9UJadNpd/zKtrbomtyxMqlcFgCOOeanObdKaM1FMY62UGuHH9SWCKM67MhjTaE4XaMd1KTfQpk6oQ+2yjjh/oQRR/l4p5NNmz6u0Y6UZfQ5Gq4/bt3HDAuvWyC2WSNFUq2DtGOtLTzblhj2lRFVqcVjH1E1GJF0mFkjQNhMkDBPFFTfSMjq64rSRaXHh8ieOK306zWSRAzEDJxkkmotysnhF8YVaWlSkssjvI4Lywa5iUKwBOcYPHWnByhPdZDUV1X6d2wWMJv8jGdpNbg0XTnllw0j8Rpn638uKnqJY4FWya4tysfNcDJ/0T3C3GoXzuc3EjbnY9/f8yayHbPTY8OcowYDqQc0CFIGD34oA5QNpOOlAHLuI3YAHroARpUVSd6sT3A0AZvtRZW+p2ji4hEgQZX1eygDzQxRWNxKtuGzwVLkYTmgCzdzJpVpcRCSF2lALhTuUnoAD99AA6fWjNHZGDek0cSoZA2CCoGPlQB6P2T1WfWrWRL1hJLEm5ZgMFuOjezBFaKbnF47jm6/Q12wlYuEkuf7hAiukeVwWbfmWMj9YfOoy5Mtr6y80bpn+mEZ6FCfgR/GuRjhk9k37e4+9fz5gbQY/NoL1unk32D3f71q1D3nHyOTs6PRQtl4PH5Du0v17L7Tf+tGm/uHtXrV+f1Ra1y1muoY1gTcQxJ5AqvTzjBvJp2hRZdBKCM9c2s1oyrOu0kZHIPFbYTjPkcG6iylpTQZjY2vZ7eOpGfi386yv2r8HWhLodn7y5/ux+vrus4pR3N8xS03CTRPakc1Rl8fmO01zFo3lB/h3H7zSuWbcEtHPc0e94Z+ZO0f/wArDMo4eIj4Y/jUFL7txLnDGrjNd6ZWt+e0M/2P4VZLsUZqvf5eX7Cr+kJ+x+FJ9gNfiHoWboecRXkGMlRx8AahD2ZRkabvvYWVvu/ZMr6j/dMH7nyqdXaMzav3SHp8h2rkDT48/rD5GijrsltD3dea+RUU30Fk8Pm30W1sk9cGpvo5TTzxMyeprocNzhhnmH9LOly3Gixajblt1s+2RRz6Dfzx7iaNSuCY9lWYlKHczO/0Ry2sN7qs2oSiKCG2VmZmwMZOflWQ7ZsB2o0adlbSLm8tmf6kj25WJx04LYzQPBqNFvri7Tbcqm8f41bIf1+I9lAEeq3l4rGDTkJmHUkgKvtNAAJr25SQnW7m5ZVz6FrHv4HX3DxxQGCfTdW7O6yrjTpd0ka7jtYiQD9YUDHRzyW87WtyfLIw3RS97DwNAMxHauya2vRcQcBs5A8KBGRvZW2hgrY7hnA+6gAzZaFLZaeL+7kRXlXMEODk9xz6x4UAav8Ao8huYzd3pjligj9HBBw792e7j8BVtMN6aMevudOnlJeRqjXVPIFi2/Op9ofOoy6rLK+svM2F1Js1SyXudJF+RrmQWa5eh6q2e7qa14pr5EF6htbKb/NuVPxYfgKlD25L4Ipvj0NM/wD6kv1aIO0nL2X2m/8AWrNNykUbV61fn9UW9bu5rSGNoCAWfByM1XRCM3hmnaGosognDxM9d3Ut2we4YEgYGBitkIRhyOFffZe8zD2o2s0mmRW8Cbj6O4ZxwKx1zSscmdvVUTlpo1wWeQl5FJ+Q9kww6RqSPWMUVtdLwDUVy+w7suaS/QZac9n3PiH+ZqU39/kqo47Pfk/qXNMcTWUDnlkXb+FVWrdm0bNHJWUxb5oqW36Qz/YP4VbLsEZKvxCfl+wo/SD9z8KX/gGvxD0JIpduuTx54dR8QB/Ok1mpMnCeNdOPil8hdZUJYqq9AygUUdce0Fu0JIZrQzp0Y/6h8jTo67I7R46dea+RJHO9zpEssmAxRxgdOhqMoqNqSLIWyt0kpy54Z5j2y3XskenSzNBEcEYz9Nu4xmnqM74tmbro4c+8Tsv2JsLCG7gvWNzJeQqJ0YYAAJOBjnvHU1QdLAdudFtp1WOTyzJHGsSIvohUGcDAwCOT1oAKWVrDZxqkSbVRTx3AeFAhqFTdGTbkMcmgZHdWokguLcF/J3GN7BvSIBBHy6UAZ1Oxlp5wLgb0mU/ntx34xg89+R1oDBPrFstvDaxRnc0Q27ulAMzvaOHzu3jz1kHDDuNAjGWWiXl7qOYlZxBKFfPGO/v46ZoA03a+6JKQFQscAKKjDAxx7vvoAi7M9vbrSF8zlijuLPbgkk5wD3/KjLXITSfsvvNzHcC6hjuIV2pKgkCnuyM4++uxTlwTZ4zVxUb5RguCZbt/z0f2x86UuTIVddeZp9ZkEeoac+eA5HxwKw0rMJI9Drp7t9T/AJ3DtfcCK2jBzumB+FLTri38B7TnwhHxaIe0ZBks8HOGbP8A+alpuCkV7U4zrx8foEdQskvo0R5Cm05BGKprsdfFI3arTw1EVGTwCbzSYrcw7ZWcvIqkMB0rTC6Us5Ry79nwr3d2TeWi1rV9NatClu2C2SeM1XRWp5cjVtHVWUuKreMkljK99pkgmYF2DKe72VGcdyxYJ0WPU6ZqT4vKIrL9HSO/a/zNSs43FVHuD9fmJ2el9CSInhSCPf8A7U9THipC2XZ7MoMdbEf1gn+wcfdSn2CCr8Ql5fsKCP6wE542fhSx9wS5a/PwK17J5HWvK9wZensqyEc04M2onua3fXw/Yva2QbIY59IHrVVCe+bdotOn1FAi1OxVN5UjHTqCKXtVTyTXR6ulRyMuzHY6a1ur5ZgVGT1z1pxUrLN5ld7hptO6k+LyvzMrJYR3msWj3ESNFbKzoWGfpCQB8BuPtxU9T3FeyY8JPyF85SK/lW3UGK0QeW3HnJ5JPicd1ZTsBVmQjrnvyKBEdwmbSVwdoIznwFAylpdxuRFmHpDpjowoBhQrGenSgRBPJtBC9KBmT7T3ZVFxn3dc54956UAwMbe9Wyt57pdkEs7RohHpKVODn7/hQIArquy3fHoCaeQOc9cEbSfcPvNAAjVL6S4LZOcj2g0AXuyHZc6pcLNfHFqhy0ePSYeB9VW0178jHrtR9npclz7j1DaAABgAcADurqpY4I8k5NtskUUiOPEdtCnIUY6HNIly5CqF6qOPVRhDSSJEAAwAMUmNJeApVSTgD4UiWEOCjA8D1wKBpI4Lz4eygOC4DsDvAPupEkOwODgZ+VIEkuQp9YB9tAM4Ad4HspAkPUY6E+vNA0kuQrD18dwoRKSGp7Me+mRQrerr40DZwJ54GfGjAeZJasPL9fHp6hWG+WZHotnV7lCfiCO02bPsprFzZwr5aVXckdWOMZ9uAPhVJvK3Z7VPy3a2SR52RxBrgr+sOAPeefdQBLr2lakdMMViWlhQD6JH9M4PcT8qAyVOzvZq/s7cyz3l6kkrK4hmk3+Sx4Z7z7aANK0hjY7j1OfZQAK1S85jiVgHmcRpnxJwKAB091+S+2Gk2F1CzrcTsscjLwfo2x3dd2KBBq+0uOTz2yKMyXhMsDH/AASheQPDI59xoA8DvGkiv7q2jVhPHcMpRz9VwcNz4cUAX7e2Nkq3V5LAhb8zCvpOT3nHcOnNAHovZCKdNNee4LEyN6O8fVA5x7Oa26TvODtpvMF5hsnk46ZrccEmA3YAGSTgVF8CaTbwjRxaJZwwK19KQ7dTv2jNYXqJSfsI70NmUV1p3PiVdW0pLWIT27louAQTnHrqym9ye7Iza3Z8aYqyvkW7PSLN7KGeV3XcgZjuAAzVU75qTSNVGz6JUxnN81kjvtPsIrSR7effIoyFEgOalXbY5YZXqNJpoVOUJZa+IKQAuik8FgDj21pk+By48Wkwnq+nw2UcbRFyWbB3HNZ6LZTbTOjrtJDTxThniUrKJZ7qKJ87XbBx1q+yTjFtGOitWWxg+TL19YxW93bwoXKydcnJHNUQslKLb7jZqdJCq6EI5wy5LpVjH+clZfDc4GaqV9jNktn6aPWePUrT2NqLu2iikLLISGwwNWRtnutvuM1mkoVsIRfP4lttKskPpysp/wCpxVfT2PkaXoNNB+1LHqD9TggtyggfeCOfSBxV1MpS6xh1lNVWOjfP1KS1cYkcaAYlAilcXkWlXJnupRFbPwS3QMeOPbWG+OJZPR7Pt36t3vRZngXVdHkgRvo5QfeP51Sb+R5z2ae+sZNa0azkC3ShvIK3GSDlfuyKBZDmja5YNZEydqHsr9IvpYLhVTY468Ecj2eFAE+pdoLKyUt/XG0ZiFKAgMWz1+rQGQTpXb+O81WCwJ85adtiSLEY+eeoPsoDJotashJNaMxAJdcDwOePvoGXO3M5trK2uo1Vp7a+t2jZhnaWcIfiGI99Agtfh2ubQjpHcLn3owx99AHjH9JWnNp/bG7ERVReIt1GQoIIbg+8MpoAF6HFJe30Vo0EktzIcBzgKF8Tx3ePNSjFyeEV3WRqg5yfA9fghFvaxwryEUDPjXUrrUFhHkNVqJaibnL/AEdkVaZi1Y/2yD9ovzqqfVZfR2sfNB7tYTttR3Zbj4Vl0XedjbXKHqTXf6Mqf8uP/wAhUK+3/Muv/DvRfNDpP0aX9gv4UL3j1HL8NX/FfQzYrcefXEli/Px/aHzqEuTLIdZeaD3aX8zD9s/Ksml6zO3tfs4+YK0o51K3+1+FabuzZy9H7xDzCuq/3lZe38azVdnI6et95rGdpMZtv3/wp6XvIbX/ALPX6FDS+L+3x+t+FXW9RmLRdvHzLvaAZuo8Ln6Pw9ZqvTdVmvanaryBRGD05rQcwTOBQLJwOaAOPqoBkdyivEQ2eOlU3RzE3bPu6O5LufAkguR5VCcBiMPkdSO+sJ6RgbtTo6pLHrWmW4bUYXEm0ceXAGCh9o6HuoEZ0aDo/aLUWvbiSQqynybBiux887vaOCD0INAFS5/oyiE4ki1uFLbqwMe5h7MH10AJ2e0Ox0fXxFaXEl/eHIEhQKY0Gc4A6EjGT4eFAz0tLJJFimv4xmPlUJyFPifEigRm+0uqnUHNiiqY9yOxPOCrhl9+QKAJbrU5726Uq/kgSpI7lI5JoAzHa/TbjtENMFhGfO7aSWNpGOF8m2Gyx8QRjA8fhKEJTeEU3X10x3pvBoOz+iwaLZhE9O4YDysxA9I+rwHqro1VKtcDzGr1ktTLjwXcgkx4xVxiZFgeNMiWrD+22/7RfnUJ9Vl+n7WPmg92s6Wv7/4Vk0fedjbXKHqTXf6ML+zj/wDIVCvt/wAy6/8ADvRfNFm1ljg0SCSZcxrCu4YzmoSTla0i+myNeihKfJJAfV721uYkW1iKMGycqBkVpprnFveZytbqabopVrBQh5mj+0PnV0uTMMOsvNB/tMcQwfbPyrHpeszubW6kfMFaV/edvjpv/CtN3Zs5ej94h5hXVv7zsv8AXfWens5HT1vvNRd1C6gtvJ+cRlt2cYUHFU1wlLqmzVX1VY6RZyCYpY59ZhkhBVCR6OMY4rS4uNLTOXC2FmtjKC4f9BO/1FLOZY2iZyy5yDWeulzWUzo6rWRokouOQDfzC4unmVdu7HHhwBW2uO5HBw9TYrbXNLH+iDOTiplA3IUHJxzSeFxY4xlJ4jxYzyy47/hVfTQ8TZ/T9T/iL5VWBGD8Ki74Msjs3UeRXQ+TkKP0yCGrEz0Sz3hMjfbYPPqpCMVc6bLp2pw3MErwW91J5GeROkch4RiD3Nwp9eDQMIXeh6yYWRdTt40bhvJwkMR4deKAyEezmgWug27yj6W6k5kmYckeA8BQIXV7q4mC29sMPIMK2eBnvNAAGewjsVEFo73F059Jj3eJ+/FAEstnPa4iY/SFNzyYOAO4UBxCwgFsVjC4GK6dCjueyeT2g7enfSenl8BRz0q4xCPgjrQhMixTIE1nII7mF26K6k/GozTcWkW0y3bIt9zRq9espr+OBrYKxXdwTjIOOc+6ufp7I1tqR6PaOmnqYxdfHH1G6sPNtCEDkF8Iox3kEE/KnT7Vu8ha1dFotx8+C/LiLN+jC/sF/Che8eop/hq/4r6Gb7z6q3HAHQH6aP7Y+dRlyZKt+2vNGo1uzmvI4lh25RiTuOOMVgosUG8no9oaed8UodwMtrC4s9QtGmCbWkwMNnnBrRK2M4PBzqdJbRfW597+jLmr/wB52X+u8VXT2cjVrfeahO0px5v+9+FGm7yO1n1PX6A7SjnUYPtVdd1GYNF7zD+dwV1iwnu50eEJgJg5bHfVFNsYRaZ09dpLb7FKHgCLu0ltNom25PPonNaITU+Ry79PZTjf7yq3zqbeFkojFykorvK7iUMHkOQpwV7q50puTyz1tNEKY7sUXFjRoiQDUC0jt8OpzyQcGgMDbqMZRx3Ha2fA/wA6ALFs+Y+aBFTU4EmsLqCX826EH3jFAzuzzXkmjWcmqkG5MSl/X4E+sjBProDBYvLjbETQGADHfMlrNesCCZCsAJ64Gc+ygBr3Lwxou0iWT0guMMwx9ZvAdcCgCS0lN1dQI0ikQZll2uRz3D5/EUATS3SM/wCT7ieFNymYtJIVKr6iOc4FNScXlEJ1ws4TWQJP2pJuVjsYU80QlfLTrueUDgMOeOmcnrU1dNd5RLQ6Z/2ILwa9pl0gJR1LyiGNUBLSNjJwPCrFqbEZ5bK0z5JryYSNicna+B3Ajmr46tY4o589iTz7EuHkUscVrOEErTVr62jEcc2UAwFYA4qqVEJPijdTr9RVHdjLgQ3V5Pdybp5C5HTIwB7qca4w6pXdqLLnmcsk35Qu2tvNjMfI7QuzaOg9eM1Hoob29jiT+1XOvot72eWOBCCeasKUKp2kMOoORSazwGnh5Re/LF//AMyf+xf4VV0FfgbP6hqv8/0X7DJdSu5DGzzEtG25TtHB+FNUwXcRnrL5tNy4rlyEe9uJ5Ukll3On1TtAxTVcYrCRGWptskpSeWuXIddXc91t8vJv25xwB19lKNcY8kO6+y7HSPOCGKR4ZFkiba69DjNScU1hlUJyrkpR5otjVr/vuD/2L/Cqugr8DUtfqf8AP9F+xDc3c9zjy8m/AwOAPlU4wjHqoqtvst67yRAZX11n1FmPZR09maXL6aXoSMFYHdjkYNZDtkdswSUwyNwRkUARWziO+uICw5AcfI0ASzkNBKAf8OfZjmgGPtcFRk9RyKBEGqyxiARFgDKQg95AoAuSFdgHAAA4FAAXXpytgwjI3PhEHrJxQMHTyQwyRKu1obJfJRK3IeTvY0ACprtpVeSGRpB5VVuLjrsz+PdQAVt5YtPtXRX32ytvVio3N4/eT7qAA+sSRyL5aN4ixYHJyCR0Pd4UAZ/zqa7eKwt4XDOdi7V+t3n50Ab/ALK6EunILm5UecgbUXP1B3+80AaLcB/jHxoEf//Z';var i=['dimg_29'];_setImagesSrc(i,s);})();</script><script nonce="qwhd1XQyVMIgaKaSDQplWA">(function(){var s='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYAgMAAACdGdVrAAAADFBMVEVMaXFChfRChfRChfT0tCPZAAAAA3RSTlMAgFJEkGxNAAAAL0lEQVR4AWPADxgdwBT3BTDF9AUiuhdC6WNK/v///y+UggrClSA07EWVglmEFwAA5eYSExeCwigAAAAASUVORK5CYII\x3d';var i=['dimg_31'];_setImagesSrc(i,s);})();</script><script nonce="qwhd1XQyVMIgaKaSDQplWA">(function(){var s='data:image/jpeg;base64,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\x3d';var i=['dimg_33'];_setImagesSrc(i,s);})();</script><script nonce="qwhd1XQyVMIgaKaSDQplWA">(function(){var s='data:image/jpeg;base64,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\x3d\x3d';var i=['dimg_35'];_setImagesSrc(i,s);})();</script><script nonce="qwhd1XQyVMIgaKaSDQplWA">(function(){var s='data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBwgHBgkIBwgKCgkLDRYPDQwMDRsUFRAWIB0iIiAdHx8kKDQsJCYxJx8fLT0tMTU3Ojo6Iys/RD84QzQ5OjcBCgoKDQwNGg8PGjclHyU3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3N//AABEIAHAAbwMBIgACEQEDEQH/xAAaAAADAQEBAQAAAAAAAAAAAAAAAQIDBAYF/8QALhAAAQQBAgMHBAIDAAAAAAAAAQACAxEEEjEFIXETIjRBUWGBBiQyM5GhFNHw/8QAGAEBAQEBAQAAAAAAAAAAAAAAAAECBAP/xAAaEQEBAQEBAQEAAAAAAAAAAAAAAREhEiIC/9oADAMBAAIRAxEAPwDxWaftGG7PJTGToCM3wzB7hSw90dF1vJpqKYJpQqtQMEphxtRadoi7VWVmE7QWHFGpSmgYcaT1EhYXL2mjUza7pUyUW4OIsOIU1cagkDdbwON77LnLmg04gLWE97kqOPOP2zPhTH+Deieb4dvUJR/gOiCkI3QEQ0wlVJ7KhhCAUIGCmknfJBBB/wAgOru6N1BYezn7veJJHLdbpBTyus3Bwc6g4hwHMD+l1YraIB9PNZi1tARrSfnC1w5vh29QsJQTiNANE6QP5W+b4Zvws9HaQtaTWxUpGcspdBTeTjYPtW6oS6Q1o5nSCdTqCrsBqkcCRrFV6IMOxa4A6QDbbtTq8Am1adDdRcL5mqQJjoJLCCHBpamYiNOl9OAq6u0uw7pBeSS8PshX6TgdJ3JWyMqmaiAfLqr7RwdoZGXU0Ec0SRay86q1M0bbb/7VMbpk135AV0TpxIm1NZobqLhdHyVxSF1ggtIOxWBaIRGNZBAI11y6FXj7vdeoE/lW6bdV0IRumtMmNlpFuVkFtBReg4cvw7fhEX629EZXhm9Api/U3ooRaaSEDTtJCoaEeSSCgaCoKE0FVzTuipCynI1M7QkRm7o7n3/tS3FbPeGNLvRa41lwJFH0tcDqMMtElgcNJs+19V3wDS4AX/NqS7THHleGb8JQ/rb0TyfDN+Eov1joqLRySQqhoCQX3PpDFgzOLyRZUTJYxiZD9LhY1NjcQfgqW4r4qa+rwSETcO4s44MGSWY7XCWWUsMFuA1NHmeY/wCtfa4vwEtw+EcP4bHwqWeeBksksU4dO9x1267rsQBvtyU9GPIIHNd+fwqbCgiye1xcnFlcWNyMSYSM1DmWk+Rog9FwBal1FXyRfsFKfkgoei0h5OsLILSPkUVyZB+2b8JRfgOiMjwzfhKL8B0UF2mgBCIa+v8ASvEcXhnFu3ze17B0EsTjE0Fw1sLbokeq+OmEqvQxZvCcDF4ri4EuXNHmYbY2umia0iQSAkGjtQHNdGL9SY2LxPhOS2OV0WPwxuFkANbqvvgubdg1qB570vLWhTzDXovqLjEWZgQ4cGfl5gbKZXvlxosdl1QprBZPM2SfheeCEwFZMAn5pBBVRSth73sswVbEVyT+HHwnH+A6In8M34Qw9wdFBSYSQiGhAQqGEICaBJotJBXkhK+SEDWkZ50s1pEO8EV//9k\x3d';var i=['dimg_37'];_setImagesSrc(i,s);})();</script><script nonce="qwhd1XQyVMIgaKaSDQplWA">(function(){var s='data:image/jpeg;base64,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';var i=['dimg_39'];_setImagesSrc(i,s);})();</script><script nonce="qwhd1XQyVMIgaKaSDQplWA">(function(){var s='data:image/jpeg;base64,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';var i=['dimg_41'];_setImagesSrc(i,s);})();</script><script nonce="qwhd1XQyVMIgaKaSDQplWA">(function(){var s='data:image/jpeg;base64,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\x3d\x3d';var i=['dimg_43'];_setImagesSrc(i,s);})();</script><script nonce="qwhd1XQyVMIgaKaSDQplWA">(function(){var s='data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBwgHBgkIBwgKCgkLDRYPDQwMDRsUFRAWIB0iIiAdHx8kKDQsJCYxJx8fLT0tMTU3Ojo6Iys/RD84QzQ5OjcBCgoKDQwNGg8PGjclHyU3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3N//AABEIAEMAeAMBIgACEQEDEQH/xAAcAAEBAQACAwEAAAAAAAAAAAAAAgEGCAQFBwP/xAAxEAABAwIFAwMCBQUBAAAAAAABAAIRAxIEBSExQRNRYQZxgRQiByNikbFyc6GiwUL/xAAaAQEAAwEBAQAAAAAAAAAAAAAAAQMEBQYC/8QAHxEAAgEFAQEBAQAAAAAAAAAAAAECAwQRElExIUET/9oADAMBAAIRAxEAPwDgqIi9TpHhy9mFTGOqG2mxzjBMNEmAJJ9gASfAKlNuY+VGkeDZhEV1aVSlb1GltzQ4TyDsU1jwbMhBrsJRXWq1K1V1Wq9z3u3c46lTpHg2Yq03Un2VBa6GuieCAR/ghQg04V1qT6NV1KqLXtMESD/CjWPBsx039LrdN3SusvjS6Jie8aqEQ6cJpHg2ZdOm6pUbTbaHOMC54aP3JgKaZa2o0vaXMBBLZiRyJ87eFnMomkeDZmvguJaIE6CdkWIp0jwbPoVXDphljZDib9bjtpvECJ25M+JRSfIWttDhdNs8dlmvZEBT7Oo7pl9sm246xxMcp+WKTbbupJu0ERpEf7T8KVqAxCQEVNqVGMexr3Bj4vYDAdG0jmJQElPgKqbmNuvph8tIb9xFp76b+x0UoAqYQwklrXi0iHTAkROnI3HkDcaGUQBU0sscHhxdAsIIgd5010nYj52MogCIiALzMty7HZxX+jyjLqmLxDdXdLgHa9zja0aGNp1348RlOrWqU6GHDTWrVG0qYcdLnEAT8kLsDS9L4fKPSRyjKqPUtLalVriGnGODmueHk6feGluugBjYQsV3dfxwo+svo0t/rPjuY+ifUuW0mVcVloIdJiliGOcAGlxJE8AcSuP0sQK2GApuY6mXXh1rZn3ieNp78r7NkWW4bPXZphK+Gdg8JVDH08PhA6mzC1Wgh5a5pEEh7W/+C61xtgy7in4remqGS1sux+GrXjEzh6wda0lzRLCGtA0DAWk/pbOplZre9lKajP8AS2pQSjlHBFTunYwMa4Ogh8nQ6nbTTSN5524nv4RdYxl9Q9Lpw226660XTEb7x4+VC1oBLbnBrSdXEGG9zp/xHABzg1wcAYDhMO7ESgAE6DU9gsVNe5hJY4tkFuh3BEEexBI9it6T+j1o/LvsukbxO3sgMAp9J0l3UuFojS3WZ8zEfKlFTGOqPaxglziABPJ2QEoqe1zHuY4fc0kETsQpQDsi/SvUFWo94pMpBxmynIa3wJJMe5KICGvqUnsq0CG1abxUpmNnNIIP7gLsn6azvC+ocmw+Z4M/bVH3s5pvGjmnyDp50K61r23pv1FmfprG/UZXV/LefzsNU1p1vfsf1DX3Giw3ts6qUo+o0Uaqj8Z2CzbB47GijRweO+ioEnr1KdMGqRpAYTo3mTBPaDqOA/irleUZR6Va3D4cfW4rF0mtxFV7q1d9pLjNR5LiIDudJRv4yZf9PFTJcwGMsk02vpmnP9d0x5tnwvnfqf1Dj/U+ZjG5iWsbTBZQw9PVlFpgmJ3JgSfA04XPtrao6iyviNFSrFR9PWU7OqzrF/TuF9h+62dYnmFCIu8c82f3WbmURCQnG2qIhAREQkd0REICIiEiFKIq02XNEgD6k/2h/K/SERVxf0NeCEhEVuWThCEhETLGBCQiJljCEJCImWMCEhETLGEIREUZYwf/2Q\x3d\x3d';var i=['dimg_9'];_setImagesSrc(i,s);})();</script><script nonce="qwhd1XQyVMIgaKaSDQplWA">(function(){var s='data:image/jpeg;base64,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\x3d\x3d';var i=['dimg_11'];_setImagesSrc(i,s);})();</script><script nonce="qwhd1XQyVMIgaKaSDQplWA">(function(){var s='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAABAUlEQVR4AWMYesChoYElLjkzPj4lY3d8csZjIL4MxPNjUzPcSTYsISFLAqj5NBD/h+LPQPwbiT87NCuLh2gDgRr2QzXuT0jNMoBYksARn5zuHJ+UcR0kB6RXE2VYXHJGOlTDZmzyIJcB5e+D1CSkZDgQNBAaZv+jU1JkcKpJygiGeZ0I76a/Byq8jU9NZFqaCNTA48SE33/iDcw8TIyBt0GKQTFN0Msp6f2EIyUpo57YSIlLSrMhIg0WCIBcCfXSdlzJBsheTHQ6jEnOUgEFOLaEDbMIlhZBOYrorAdJk+nroVnvPsSgdGdoOF7HZyhZ2XPoGQoqjbCpIbt0AiejIQMArVLI7k/DXFkAAAAASUVORK5CYII\x3d';var i=['dimg_3','dimg_5','dimg_7','dimg_13','dimg_15','dimg_17','dimg_19','dimg_21'];_setImagesSrc(i,s);})();</script><script nonce="qwhd1XQyVMIgaKaSDQplWA">(function(){var e='PcBWY_PQLd-viLMPv9CKuAM';(function(){
var a=e;2===(window.performance&&window.performance.navigation&&window.performance.navigation.type)&&window.ping("/gen_204?ct=backbutton&ei="+a);}).call(this);})();(function(){
var b=[function(){google.tick&&google.tick("load","dcl")}];google.dclc=function(a){b.length?b.push(a):a()};function c(){for(var a=b.shift();a;)a(),a=b.shift()}window.addEventListener?(document.addEventListener("DOMContentLoaded",c,!1),window.addEventListener("load",c,!1)):window.attachEvent&&window.attachEvent("onload",c);}).call(this);
window.jsl=window.jsl||{};window.jsl.dh=function(a,b,f){try{var g=document.getElementById(a);if(g)g.innerHTML=b,f&&f();else{var c={id:a,script:String(!!f),milestone:String(google.jslm||0)};google.jsla&&(c.async=google.jsla);var h=a.indexOf("_"),d=0<h?a.substring(0,h):"",k=document.createElement("div");k.innerHTML=b;var e=k.children[0];if(e&&(c.tag=e.tagName,c["class"]=String(e.className||null),c.name=String(e.getAttribute("jsname")),d)){a=[];var l=document.querySelectorAll('[id^="'+d+'_"]');for(b=0;b<l.length;++b)a.push(l[b].id);c.ids=a.join(",")}google.ml(Error(d?"Missing ID with prefix "+d:"Missing ID"),!1,c)}}catch(m){google.ml(m,!0,{"jsl.dh":!0})}};(function(){var x=false;
google.jslm=x?2:1;})();(function(){(function(){google.csct={};google.csct.ps='AOvVaw0WdwRAH5BReMUghYW8AEcX\x26ust\x3d1666716093789033';})();})();(function(){(function(){google.csct.rd=true;})();})();(function(){(function(){google.csct.rl=true;})();})();(function(){(function(){


var f="undefined"!=typeof navigator&&!/Opera/.test(navigator.userAgent)&&/WebKit/.test(navigator.userAgent),g={A:1,INPUT:1,TEXTAREA:1,SELECT:1,BUTTON:1},h={Enter:13," ":32},k={A:13,BUTTON:0,CHECKBOX:32,COMBOBOX:13,FILE:0,GRIDCELL:13,LINK:13,LISTBOX:13,MENU:0,MENUBAR:0,MENUITEM:0,MENUITEMCHECKBOX:0,MENUITEMRADIO:0,OPTION:0,RADIO:32,RADIOGROUP:32,RESET:0,SUBMIT:0,SWITCH:32,TAB:0,TREE:13,TREEITEM:13},l={CHECKBOX:!0,FILE:!0,OPTION:!0,RADIO:!0},m={COLOR:!0,DATE:!0,DATETIME:!0,"DATETIME-LOCAL":!0,EMAIL:!0,MONTH:!0,NUMBER:!0,PASSWORD:!0,RANGE:!0,SEARCH:!0,TEL:!0,TEXT:!0,TEXTAREA:!0,TIME:!0,URL:!0,WEEK:!0};document.addEventListener("DOMContentLoaded",function(){var e=document.getElementById("flex_text_audio_icon_chunk");e&&(e.onclick=function(){e.parentElement.querySelector("audio").play()},e.onkeydown=function(d){var c=d.which||d.keyCode;!c&&d.key&&(c=h[d.key]);f&&3==c&&(c=13);if(13!=c&&32!=c)c=!1;else{var a=d.target||d.srcElement;!a.getAttribute&&a.parentNode&&(a=a.parentNode);var b;if(!(b="keydown"!=d.type)){if(b="getAttribute"in a)b=!((a.getAttribute("type")||a.tagName).toUpperCase()in m);b=!(b&&
!("BUTTON"==a.tagName.toUpperCase()||a.type&&"FILE"==a.type.toUpperCase())&&!a.isContentEditable)}(b=b||d.ctrlKey||d.shiftKey||d.altKey||d.metaKey||(a.getAttribute("type")||a.tagName).toUpperCase()in l&&32==c)||((b=a.tagName in g)||(b=a.getAttributeNode("tabindex"),b=null!=b&&b.specified),b=!(b&&!a.disabled));if(b)c=!1;else{b=(a.getAttribute("role")||a.type||a.tagName).toUpperCase();var n=!(b in k)&&13==c;a="INPUT"!=a.tagName.toUpperCase()||!!a.type;c=(0==k[b]%c||n)&&a}}c&&(d.preventDefault(),e.parentElement.querySelector("audio").play())})});}).call(this);})();(function(){
window.xp=function(b){function f(k,g,h){return"xp"+("x"==g?"c":"x")+h}for(var c=/\bxp(x|c)(\d?)\b/,a=b;a;){var e=a.className,d=e.match(c);if(d){d="c"==d[1];a.className=e.replace(c,f);b&&b.setAttribute("aria-expanded",d);if(d)for(b=a.getElementsByTagName("img"),c=0;c<b.length;++c)if(a=b[c],e=a.getAttribute("data-ll"))a.src=e,a.removeAttribute("data-ll");break}a=a.parentElement}};})();(function(){(function(){
window.logVe=function(a){a&&a.attributes["data-ved"]&&window.ping("/gen_204?ved="+a.attributes["data-ved"].value)};}).call(this);})();(function(){(function(){var id='tsuid_1';var lve=true;(function(){


var e="undefined"!=typeof navigator&&!/Opera/.test(navigator.userAgent)&&/WebKit/.test(navigator.userAgent),f={A:1,INPUT:1,TEXTAREA:1,SELECT:1,BUTTON:1},g={Enter:13," ":32},h={A:13,BUTTON:0,CHECKBOX:32,COMBOBOX:13,FILE:0,GRIDCELL:13,LINK:13,LISTBOX:13,MENU:0,MENUBAR:0,MENUITEM:0,MENUITEMCHECKBOX:0,MENUITEMRADIO:0,OPTION:0,RADIO:32,RADIOGROUP:32,RESET:0,SUBMIT:0,SWITCH:32,TAB:0,TREE:13,TREEITEM:13},k={CHECKBOX:!0,FILE:!0,OPTION:!0,RADIO:!0},l={COLOR:!0,DATE:!0,DATETIME:!0,"DATETIME-LOCAL":!0,EMAIL:!0,MONTH:!0,NUMBER:!0,PASSWORD:!0,RANGE:!0,SEARCH:!0,TEL:!0,TEXT:!0,TEXTAREA:!0,TIME:!0,URL:!0,WEEK:!0};document.getElementById(id).onclick=function(){window.xp(this);lve&&window.logVe(this)};document.getElementById(id).onkeydown=function(d){var c=d.which||d.keyCode;!c&&d.key&&(c=g[d.key]);e&&3==c&&(c=13);if(13!=c&&32!=c)c=!1;else{var a=d.target||d.srcElement;!a.getAttribute&&a.parentNode&&(a=a.parentNode);var b;if(!(b="keydown"!=d.type)){if(b="getAttribute"in a)b=!((a.getAttribute("type")||a.tagName).toUpperCase()in l);b=!(b&&!("BUTTON"==a.tagName.toUpperCase()||a.type&&"FILE"==a.type.toUpperCase())&&!a.isContentEditable)}(b=b||d.ctrlKey||d.shiftKey||d.altKey||d.metaKey||(a.getAttribute("type")||
a.tagName).toUpperCase()in k&&32==c)||((b=a.tagName in f)||(b=a.getAttributeNode("tabindex"),b=null!=b&&b.specified),b=!(b&&!a.disabled));if(b)c=!1;else{b=(a.getAttribute("role")||a.type||a.tagName).toUpperCase();var m=!(b in h)&&13==c;a="INPUT"!=a.tagName.toUpperCase()||!!a.type;c=(0==h[b]%c||m)&&a}}c&&(d.preventDefault(),window.xp(this),lve&&window.logVe(this))};}).call(this);})();})();(function(){window.jsl=window.jsl||{};window.jsl.dh=window.jsl.dh||function(i,c,d){try{var e=document.getElementById(i);if(e){e.innerHTML=c;if(d){d();}}else{if(window.jsl.el){window.jsl.el(new Error('Missing ID.'),{'id':i});}}}catch(e){if(window.jsl.el){window.jsl.el(new Error('jsl.dh'));}}};})();(function(){window.jsl.dh('accdef_1','\x3cdiv\x3e\x3cdiv style\x3d\x22padding-bottom:12px;padding-top:0px\x22 class\x3d\x22hwc kCrYT\x22\x3e\x3cdiv class\x3d\x22yStFkb\x22\x3e\x3cdiv class\x3d\x22Gx5Zad xpd EtOod pkphOe\x22\x3e\x3cdiv class\x3d\x22kCrYT\x22\x3e\x3cdiv\x3e\x3cdiv class\x3d\x22BNeawe s3v9rd AP7Wnd\x22\x3e\x3cdiv class\x3d\x22Ap5OSd\x22\x3e\x3cdiv class\x3d\x22BNeawe s3v9rd AP7Wnd\x22\x3eLife is meaningful, they say, but its value is made by us in our minds, and subject to change over time. Landau argues that meaning is essentially \x3cspan class\x3d\x22FCUp0c rQMQod\x22\x3ea sense of worth which we may all derive in a different way\x3c/span\x3e\u2014from relationships, creativity, accomplishment in a given field, or generosity, among other possibilities.\x3c/div\x3e\x3c/div\x3e\x3cdiv\x3e\x3cdiv class\x3d\x22BNeawe s3v9rd AP7Wnd\x22\x3e\x3csub class\x3d\x22gMUaMb r0bn4c rQMQod\x22\x3eJun 24, 2018\x3c/sub\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e\x3cdiv class\x3d\x22x54gtf\x22\x3e\x3c/div\x3e\x3cdiv class\x3d\x22kCrYT\x22\x3e\x3ca href\x3d\x22/url?q\x3dhttps://qz.com/1310792/the-secret-to-a-meaningful-life-is-simpler-than-you-think/\x26amp;sa\x3dU\x26amp;ved\x3d2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQFnoECAAQBg\x26amp;usg\x3dAOvVaw30ezjZ_b5tn70_Gqd8mAlZ\x22\x3e\x3cspan\x3e\x3cdiv class\x3d\x22BNeawe vvjwJb AP7Wnd\x22\x3e\x3cspan class\x3d\x22rQMQod Xb5VRe\x22\x3eThe secret to a meaningful life is simpler than you think - Quartz\x3c/span\x3e\x3c/div\x3e\x3c/span\x3e\x3cspan\x3e\x3cdiv class\x3d\x22BNeawe UPmit AP7Wnd\x22\x3eqz.com \u203a the-secret-to-a-meaningful-life-is-simpler-than-you-think\x3c/div\x3e\x3c/span\x3e\x3c/a\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e\x3cdiv\x3e\x3cdiv class\x3d\x22P1NWSe\x22\x3e\x3cdiv class\x3d\x22wOMIed nkPlDb\x22\x3e\x3cspan class\x3d\x22JhFlyf VQFmSd\x22\x3e\x3ca class\x3d\x22f4J0H\x22 href\x3d\x22http://www.google.com/search?ie\x3dUTF-8\x26amp;ei\x3dPcBWY_PQLd-viLMPv9CKuAM\x26amp;q\x3dWhat+is+the+true+meaning+of+life?\x26amp;sa\x3dX\x26amp;ved\x3d2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQzmd6BAgAEAc\x22\x3eMore results\x3c/a\x3e\x3c/span\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e');})();(function(){(function(){var id='tsuid_2';var lve=true;(function(){


var e="undefined"!=typeof navigator&&!/Opera/.test(navigator.userAgent)&&/WebKit/.test(navigator.userAgent),f={A:1,INPUT:1,TEXTAREA:1,SELECT:1,BUTTON:1},g={Enter:13," ":32},h={A:13,BUTTON:0,CHECKBOX:32,COMBOBOX:13,FILE:0,GRIDCELL:13,LINK:13,LISTBOX:13,MENU:0,MENUBAR:0,MENUITEM:0,MENUITEMCHECKBOX:0,MENUITEMRADIO:0,OPTION:0,RADIO:32,RADIOGROUP:32,RESET:0,SUBMIT:0,SWITCH:32,TAB:0,TREE:13,TREEITEM:13},k={CHECKBOX:!0,FILE:!0,OPTION:!0,RADIO:!0},l={COLOR:!0,DATE:!0,DATETIME:!0,"DATETIME-LOCAL":!0,EMAIL:!0,MONTH:!0,NUMBER:!0,PASSWORD:!0,RANGE:!0,SEARCH:!0,TEL:!0,TEXT:!0,TEXTAREA:!0,TIME:!0,URL:!0,WEEK:!0};document.getElementById(id).onclick=function(){window.xp(this);lve&&window.logVe(this)};document.getElementById(id).onkeydown=function(d){var c=d.which||d.keyCode;!c&&d.key&&(c=g[d.key]);e&&3==c&&(c=13);if(13!=c&&32!=c)c=!1;else{var a=d.target||d.srcElement;!a.getAttribute&&a.parentNode&&(a=a.parentNode);var b;if(!(b="keydown"!=d.type)){if(b="getAttribute"in a)b=!((a.getAttribute("type")||a.tagName).toUpperCase()in l);b=!(b&&!("BUTTON"==a.tagName.toUpperCase()||a.type&&"FILE"==a.type.toUpperCase())&&!a.isContentEditable)}(b=b||d.ctrlKey||d.shiftKey||d.altKey||d.metaKey||(a.getAttribute("type")||
a.tagName).toUpperCase()in k&&32==c)||((b=a.tagName in f)||(b=a.getAttributeNode("tabindex"),b=null!=b&&b.specified),b=!(b&&!a.disabled));if(b)c=!1;else{b=(a.getAttribute("role")||a.type||a.tagName).toUpperCase();var m=!(b in h)&&13==c;a="INPUT"!=a.tagName.toUpperCase()||!!a.type;c=(0==h[b]%c||m)&&a}}c&&(d.preventDefault(),window.xp(this),lve&&window.logVe(this))};}).call(this);})();})();(function(){window.jsl.dh('accdef_3','\x3cdiv\x3e\x3cdiv style\x3d\x22padding-bottom:12px;padding-top:0px\x22 class\x3d\x22hwc kCrYT\x22\x3e\x3cdiv class\x3d\x22yStFkb\x22\x3e\x3cdiv class\x3d\x22Gx5Zad xpd EtOod pkphOe\x22\x3e\x3cdiv class\x3d\x22kCrYT\x22\x3e\x3cdiv\x3e\x3cdiv class\x3d\x22BNeawe s3v9rd AP7Wnd\x22\x3e\x3cdiv\x3e\x3cdiv class\x3d\x22BNeawe s3v9rd AP7Wnd\x22\x3eThe three meanings of meaning in life: \x3cspan class\x3d\x22FCUp0c rQMQod\x22\x3eDistinguishing coherence, purpose, and significance\x3c/span\x3e.\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e\x3cdiv class\x3d\x22x54gtf\x22\x3e\x3c/div\x3e\x3cdiv class\x3d\x22kCrYT\x22\x3e\x3ca href\x3d\x22/url?q\x3dhttps://psycnet.apa.org/record/2016-30427-009\x26amp;sa\x3dU\x26amp;ved\x3d2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQFnoECAAQDQ\x26amp;usg\x3dAOvVaw30bLS35KnMWE_63uyLPdh2\x22\x3e\x3cspan\x3e\x3cdiv class\x3d\x22BNeawe vvjwJb AP7Wnd\x22\x3e\x3cspan class\x3d\x22rQMQod Xb5VRe\x22\x3eThe three meanings of meaning in life: Distinguishing coherence ...\x3c/span\x3e\x3c/div\x3e\x3c/span\x3e\x3cspan\x3e\x3cdiv class\x3d\x22BNeawe UPmit AP7Wnd\x22\x3epsycnet.apa.org \u203a record\x3c/div\x3e\x3c/span\x3e\x3c/a\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e\x3cdiv\x3e\x3cdiv class\x3d\x22P1NWSe\x22\x3e\x3cdiv class\x3d\x22wOMIed nkPlDb\x22\x3e\x3cspan class\x3d\x22JhFlyf VQFmSd\x22\x3e\x3ca class\x3d\x22f4J0H\x22 href\x3d\x22http://www.google.com/search?ie\x3dUTF-8\x26amp;ei\x3dPcBWY_PQLd-viLMPv9CKuAM\x26amp;q\x3dWhat+are+the+3+meanings+of+life?\x26amp;sa\x3dX\x26amp;ved\x3d2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQzmd6BAgAEA4\x22\x3eMore results\x3c/a\x3e\x3c/span\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e');})();(function(){(function(){var id='tsuid_3';var lve=true;(function(){


var e="undefined"!=typeof navigator&&!/Opera/.test(navigator.userAgent)&&/WebKit/.test(navigator.userAgent),f={A:1,INPUT:1,TEXTAREA:1,SELECT:1,BUTTON:1},g={Enter:13," ":32},h={A:13,BUTTON:0,CHECKBOX:32,COMBOBOX:13,FILE:0,GRIDCELL:13,LINK:13,LISTBOX:13,MENU:0,MENUBAR:0,MENUITEM:0,MENUITEMCHECKBOX:0,MENUITEMRADIO:0,OPTION:0,RADIO:32,RADIOGROUP:32,RESET:0,SUBMIT:0,SWITCH:32,TAB:0,TREE:13,TREEITEM:13},k={CHECKBOX:!0,FILE:!0,OPTION:!0,RADIO:!0},l={COLOR:!0,DATE:!0,DATETIME:!0,"DATETIME-LOCAL":!0,EMAIL:!0,MONTH:!0,NUMBER:!0,PASSWORD:!0,RANGE:!0,SEARCH:!0,TEL:!0,TEXT:!0,TEXTAREA:!0,TIME:!0,URL:!0,WEEK:!0};document.getElementById(id).onclick=function(){window.xp(this);lve&&window.logVe(this)};document.getElementById(id).onkeydown=function(d){var c=d.which||d.keyCode;!c&&d.key&&(c=g[d.key]);e&&3==c&&(c=13);if(13!=c&&32!=c)c=!1;else{var a=d.target||d.srcElement;!a.getAttribute&&a.parentNode&&(a=a.parentNode);var b;if(!(b="keydown"!=d.type)){if(b="getAttribute"in a)b=!((a.getAttribute("type")||a.tagName).toUpperCase()in l);b=!(b&&!("BUTTON"==a.tagName.toUpperCase()||a.type&&"FILE"==a.type.toUpperCase())&&!a.isContentEditable)}(b=b||d.ctrlKey||d.shiftKey||d.altKey||d.metaKey||(a.getAttribute("type")||
a.tagName).toUpperCase()in k&&32==c)||((b=a.tagName in f)||(b=a.getAttributeNode("tabindex"),b=null!=b&&b.specified),b=!(b&&!a.disabled));if(b)c=!1;else{b=(a.getAttribute("role")||a.type||a.tagName).toUpperCase();var m=!(b in h)&&13==c;a="INPUT"!=a.tagName.toUpperCase()||!!a.type;c=(0==h[b]%c||m)&&a}}c&&(d.preventDefault(),window.xp(this),lve&&window.logVe(this))};}).call(this);})();})();(function(){window.jsl.dh('accdef_5','\x3cdiv\x3e\x3cdiv style\x3d\x22padding-bottom:12px;padding-top:0px\x22 class\x3d\x22hwc kCrYT\x22\x3e\x3cdiv class\x3d\x22yStFkb\x22\x3e\x3cdiv class\x3d\x22Gx5Zad xpd EtOod pkphOe\x22\x3e\x3cdiv class\x3d\x22kCrYT\x22\x3e\x3cdiv\x3e\x3cdiv class\x3d\x22BNeawe s3v9rd AP7Wnd\x22\x3e\x3cdiv\x3e\x3cdiv class\x3d\x22BNeawe s3v9rd AP7Wnd\x22\x3eYour life purpose is your contribution\n\n However, true purpose is about \x3cspan class\x3d\x22FCUp0c rQMQod\x22\x3erecognizing your own gifts and using them to contribute to the world\x3c/span\x3e\u2014whether those gifts are playing beautiful music for others to enjoy, helping friends solve problems, or simply bringing more joy into the lives of those around you.\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e\x3cdiv class\x3d\x22x54gtf\x22\x3e\x3c/div\x3e\x3cdiv class\x3d\x22kCrYT\x22\x3e\x3ca href\x3d\x22/url?q\x3dhttps://www.takingcharge.csh.umn.edu/what-life-purpose\x26amp;sa\x3dU\x26amp;ved\x3d2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQFnoECAAQFA\x26amp;usg\x3dAOvVaw1Rp5jeCtAxb96qOlVIOHyB\x22\x3e\x3cspan\x3e\x3cdiv class\x3d\x22BNeawe vvjwJb AP7Wnd\x22\x3e\x3cspan class\x3d\x22rQMQod Xb5VRe\x22\x3eWhat Is Life Purpose? | Taking Charge of Your Health \x26amp; Wellbeing\x3c/span\x3e\x3c/div\x3e\x3c/span\x3e\x3cspan\x3e\x3cdiv class\x3d\x22BNeawe UPmit AP7Wnd\x22\x3ewww.takingcharge.csh.umn.edu \u203a what-life-purpose\x3c/div\x3e\x3c/span\x3e\x3c/a\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e\x3cdiv\x3e\x3cdiv class\x3d\x22P1NWSe\x22\x3e\x3cdiv class\x3d\x22wOMIed nkPlDb\x22\x3e\x3cspan class\x3d\x22JhFlyf VQFmSd\x22\x3e\x3ca class\x3d\x22f4J0H\x22 href\x3d\x22http://www.google.com/search?ie\x3dUTF-8\x26amp;ei\x3dPcBWY_PQLd-viLMPv9CKuAM\x26amp;q\x3dWhat+is+the+real+purpose+of+life?\x26amp;sa\x3dX\x26amp;ved\x3d2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQzmd6BAgAEBU\x22\x3eMore results\x3c/a\x3e\x3c/span\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e');})();(function(){(function(){var id='tsuid_4';var lve=true;(function(){


var e="undefined"!=typeof navigator&&!/Opera/.test(navigator.userAgent)&&/WebKit/.test(navigator.userAgent),f={A:1,INPUT:1,TEXTAREA:1,SELECT:1,BUTTON:1},g={Enter:13," ":32},h={A:13,BUTTON:0,CHECKBOX:32,COMBOBOX:13,FILE:0,GRIDCELL:13,LINK:13,LISTBOX:13,MENU:0,MENUBAR:0,MENUITEM:0,MENUITEMCHECKBOX:0,MENUITEMRADIO:0,OPTION:0,RADIO:32,RADIOGROUP:32,RESET:0,SUBMIT:0,SWITCH:32,TAB:0,TREE:13,TREEITEM:13},k={CHECKBOX:!0,FILE:!0,OPTION:!0,RADIO:!0},l={COLOR:!0,DATE:!0,DATETIME:!0,"DATETIME-LOCAL":!0,EMAIL:!0,MONTH:!0,NUMBER:!0,PASSWORD:!0,RANGE:!0,SEARCH:!0,TEL:!0,TEXT:!0,TEXTAREA:!0,TIME:!0,URL:!0,WEEK:!0};document.getElementById(id).onclick=function(){window.xp(this);lve&&window.logVe(this)};document.getElementById(id).onkeydown=function(d){var c=d.which||d.keyCode;!c&&d.key&&(c=g[d.key]);e&&3==c&&(c=13);if(13!=c&&32!=c)c=!1;else{var a=d.target||d.srcElement;!a.getAttribute&&a.parentNode&&(a=a.parentNode);var b;if(!(b="keydown"!=d.type)){if(b="getAttribute"in a)b=!((a.getAttribute("type")||a.tagName).toUpperCase()in l);b=!(b&&!("BUTTON"==a.tagName.toUpperCase()||a.type&&"FILE"==a.type.toUpperCase())&&!a.isContentEditable)}(b=b||d.ctrlKey||d.shiftKey||d.altKey||d.metaKey||(a.getAttribute("type")||
a.tagName).toUpperCase()in k&&32==c)||((b=a.tagName in f)||(b=a.getAttributeNode("tabindex"),b=null!=b&&b.specified),b=!(b&&!a.disabled));if(b)c=!1;else{b=(a.getAttribute("role")||a.type||a.tagName).toUpperCase();var m=!(b in h)&&13==c;a="INPUT"!=a.tagName.toUpperCase()||!!a.type;c=(0==h[b]%c||m)&&a}}c&&(d.preventDefault(),window.xp(this),lve&&window.logVe(this))};}).call(this);})();})();(function(){window.jsl.dh('accdef_7','\x3cdiv\x3e\x3cdiv style\x3d\x22padding-bottom:12px;padding-top:0px\x22 class\x3d\x22hwc kCrYT\x22\x3e\x3cdiv class\x3d\x22yStFkb\x22\x3e\x3cdiv class\x3d\x22Gx5Zad xpd EtOod pkphOe\x22\x3e\x3cdiv class\x3d\x22kCrYT\x22\x3e\x3cdiv\x3e\x3cdiv class\x3d\x22BNeawe s3v9rd AP7Wnd\x22\x3e\x3cdiv class\x3d\x22Ap5OSd\x22\x3e\x3cdiv class\x3d\x22BNeawe s3v9rd AP7Wnd\x22\x3eThis is \x3cspan class\x3d\x22FCUp0c rQMQod\x22\x3ethe belief that you are alive in order to do something\x3c/span\x3e. Think of purpose as your personal mission statement, such as \u201cthe purpose of my life is to share the secrets to happiness\u201d or \u201cI am here to spread love abundantly.\u201d Significance: life\x27s inherent value. This is the sense that your life matters.\x3c/div\x3e\x3c/div\x3e\x3cdiv\x3e\x3cdiv class\x3d\x22BNeawe s3v9rd AP7Wnd\x22\x3e\x3csub class\x3d\x22gMUaMb r0bn4c rQMQod\x22\x3eOct 21, 2021\x3c/sub\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e\x3cdiv class\x3d\x22x54gtf\x22\x3e\x3c/div\x3e\x3cdiv class\x3d\x22kCrYT\x22\x3e\x3ca href\x3d\x22/url?q\x3dhttps://www.theatlantic.com/family/archive/2021/10/meaning-life-macronutrients-purpose-search/620440/\x26amp;sa\x3dU\x26amp;ved\x3d2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQFnoECAAQGw\x26amp;usg\x3dAOvVaw0hdHvrZSFy6Wl2iou0hef1\x22\x3e\x3cspan\x3e\x3cdiv class\x3d\x22BNeawe vvjwJb AP7Wnd\x22\x3e\x3cspan class\x3d\x22rQMQod Xb5VRe\x22\x3eThe Meaning of Life Is Surprisingly Simple - The Atlantic\x3c/span\x3e\x3c/div\x3e\x3c/span\x3e\x3cspan\x3e\x3cdiv class\x3d\x22BNeawe UPmit AP7Wnd\x22\x3ewww.theatlantic.com \u203a family \u203a meaning-life-macronutrients-purpose-search\x3c/div\x3e\x3c/span\x3e\x3c/a\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e\x3cdiv\x3e\x3cdiv class\x3d\x22P1NWSe\x22\x3e\x3cdiv class\x3d\x22wOMIed nkPlDb\x22\x3e\x3cspan class\x3d\x22JhFlyf VQFmSd\x22\x3e\x3ca class\x3d\x22f4J0H\x22 href\x3d\x22http://www.google.com/search?ie\x3dUTF-8\x26amp;ei\x3dPcBWY_PQLd-viLMPv9CKuAM\x26amp;q\x3dWhat+is+your+definition+of+the+meaning+of+life?\x26amp;sa\x3dX\x26amp;ved\x3d2ahUKEwiz4_i2p_n6AhXfF2IAHT-oAjcQzmd6BAgAEBw\x22\x3eMore results\x3c/a\x3e\x3c/span\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e');})();google.drty&&google.drty(undefined,true);</script></body></html>
['1YCR,B,178,2,5.856,19;23,PHE;TRP,-6.31,-12.62,-6.61,-6.01,5.20125,10.4025,4.7898,5.6127,133.9,267.8,131.1,136.7,72.3,144.6,64.7,79.9,0,0,0,0,0,0,0,0,0.972816',
 '1YCR,B,129,1,0,19,PHE,-6.61,-6.61,-6.61,-6.61,5.6127,5.6127,5.6127,5.6127,131.1,131.1,131.1,131.1,79.9,79.9,79.9,79.9,0,0,0,0,0,0,0,0,0.96009']

Requesting with Data (GET)

<!DOCTYPE html><html lang="en"><head><script src="https://www.googletagmanager.com/gtag/js?id=undefined" async></script><script>//- global rcsb-config object
var RC = {
      googleAnalyticsTrackingId: 'UA-3923365-3'
    , instance: 'production'
    , isProductionServer: true
    , dataUrl: 'https://data.rcsb.org/'
    , searchUrl: 'https://search.rcsb.org/rcsbsearch/v2/'
    , alignmentUrl: 'https://alignment.rcsb.org/api/v1-beta/'
    , internalAnalyticsOriginHeaderKey: 'Rcsb-Analytics-Traffic-Origin'
    , internalAnalyticsOriginHeaderValue: 'internal'
    , internalAnalyticsStageHeaderKey: 'Rcsb-Analytics-Traffic-Stage'
    , internalAnalyticsStageHeaderValue: 'production'
    , MOLSTAR_IMG_URL: 'https://cdn.rcsb.org/images/structures/'
};
</script><script src="/search/search-data?ts=5555432"></script><script src="/js/search/react-search.js?ts=5555432"></script><script>!function(){if("performance"in window==0&&(window.performance={}),Date.now=Date.now||function(){return(new Date).getTime()},"now"in window.performance==0){var n=Date.now();performance.timing&&performance.timing.navigationStart&&(n=performance.timing.navigationStart),window.performance.now=function(){return Date.now()-n}}}();(function(){var h="undefined"!=typeof window&&window===this?this:"undefined"!=typeof global&&null!=global?global:this,k="function"==typeof Object.defineProperties?Object.defineProperty:function(a,b,c){a!=Array.prototype&&a!=Object.prototype&&(a[b]=c.value)};function l(){l=function(){};h.Symbol||(h.Symbol=m)}var n=0;function m(a){return"jscomp_symbol_"+(a||"")+n++}
    function p(){l();var a=h.Symbol.iterator;a||(a=h.Symbol.iterator=h.Symbol("iterator"));"function"!=typeof Array.prototype[a]&&k(Array.prototype,a,{configurable:!0,writable:!0,value:function(){return q(this)}});p=function(){}}function q(a){var b=0;return r(function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}})}function r(a){p();a={next:a};a[h.Symbol.iterator]=function(){return this};return a}function t(a){p();var b=a[Symbol.iterator];return b?b.call(a):q(a)}
    function u(a){if(!(a instanceof Array)){a=t(a);for(var b,c=[];!(b=a.next()).done;)c.push(b.value);a=c}return a}var v=0;function w(a,b){var c=XMLHttpRequest.prototype.send,d=v++;XMLHttpRequest.prototype.send=function(f){for(var e=[],g=0;g<arguments.length;++g)e[g-0]=arguments[g];var E=this;a(d);this.addEventListener("readystatechange",function(){4===E.readyState&&b(d)});return c.apply(this,e)}}
    function x(a,b){var c=fetch;fetch=function(d){for(var f=[],e=0;e<arguments.length;++e)f[e-0]=arguments[e];return new Promise(function(d,e){var g=v++;a(g);c.apply(null,[].concat(u(f))).then(function(a){b(g);d(a)},function(a){b(a);e(a)})})}}var y="img script iframe link audio video source".split(" ");function z(a,b){a=t(a);for(var c=a.next();!c.done;c=a.next())if(c=c.value,b.includes(c.nodeName.toLowerCase())||z(c.children,b))return!0;return!1}
    function A(a){var b=new MutationObserver(function(c){c=t(c);for(var b=c.next();!b.done;b=c.next())b=b.value,"childList"==b.type&&z(b.addedNodes,y)?a(b):"attributes"==b.type&&y.includes(b.target.tagName.toLowerCase())&&a(b)});b.observe(document,{attributes:!0,childList:!0,subtree:!0,attributeFilter:["href","src"]});return b}
    function B(a,b){if(2<a.length)return performance.now();var c=[];b=t(b);for(var d=b.next();!d.done;d=b.next())d=d.value,c.push({timestamp:d.start,type:"requestStart"}),c.push({timestamp:d.end,type:"requestEnd"});b=t(a);for(d=b.next();!d.done;d=b.next())c.push({timestamp:d.value,type:"requestStart"});c.sort(function(a,b){return a.timestamp-b.timestamp});a=a.length;for(b=c.length-1;0<=b;b--)switch(d=c[b],d.type){case "requestStart":a--;break;case "requestEnd":a++;if(2<a)return d.timestamp;break;default:throw Error("Internal Error: This should never happen");
    }return 0}function C(a){a=a?a:{};this.w=!!a.useMutationObserver;this.u=a.minValue||null;a=window.__tti&&window.__tti.e;var b=window.__tti&&window.__tti.o;this.a=a?a.map(function(a){return{start:a.startTime,end:a.startTime+a.duration}}):[];b&&b.disconnect();this.b=[];this.f=new Map;this.j=null;this.v=-Infinity;this.i=!1;this.h=this.c=this.s=null;w(this.m.bind(this),this.l.bind(this));x(this.m.bind(this),this.l.bind(this));D(this);this.w&&(this.h=A(this.B.bind(this)))}
    C.prototype.getFirstConsistentlyInteractive=function(){var a=this;return new Promise(function(b){a.s=b;"complete"==document.readyState?F(a):window.addEventListener("load",function(){F(a)})})};function F(a){a.i=!0;var b=0<a.a.length?a.a[a.a.length-1].end:0,c=B(a.g,a.b);G(a,Math.max(c+5E3,b))}
    function G(a,b){!a.i||a.v>b||(clearTimeout(a.j),a.j=setTimeout(function(){var b=performance.timing.navigationStart,d=B(a.g,a.b),b=(window.a&&window.a.A?1E3*window.a.A().C-b:0)||performance.timing.domContentLoadedEventEnd-b;if(a.u)var f=a.u;else performance.timing.domContentLoadedEventEnd?(f=performance.timing,f=f.domContentLoadedEventEnd-f.navigationStart):f=null;var e=performance.now();null===f&&G(a,Math.max(d+5E3,e+1E3));var g=a.a;5E3>e-d?d=null:(d=g.length?g[g.length-1].end:b,d=5E3>e-d?null:Math.max(d,
        f));d&&(a.s(d),clearTimeout(a.j),a.i=!1,a.c&&a.c.disconnect(),a.h&&a.h.disconnect());G(a,performance.now()+1E3)},b-performance.now()),a.v=b)}
    function D(a){a.c=new PerformanceObserver(function(b){b=t(b.getEntries());for(var c=b.next();!c.done;c=b.next())if(c=c.value,"resource"===c.entryType&&(a.b.push({start:c.fetchStart,end:c.responseEnd}),G(a,B(a.g,a.b)+5E3)),"longtask"===c.entryType){var d=c.startTime+c.duration;a.a.push({start:c.startTime,end:d});G(a,d+5E3)}});a.c.observe({entryTypes:["longtask","resource"]})}C.prototype.m=function(a){this.f.set(a,performance.now())};C.prototype.l=function(a){this.f.delete(a)};
    C.prototype.B=function(){G(this,performance.now()+5E3)};h.Object.defineProperties(C.prototype,{g:{configurable:!0,enumerable:!0,get:function(){return[].concat(u(this.f.values()))}}});var H={getFirstConsistentlyInteractive:function(a){a=a?a:{};return"PerformanceLongTaskTiming"in window?(new C(a)).getFirstConsistentlyInteractive():Promise.resolve(null)}};
    "undefined"!=typeof module&&module.exports?module.exports=H:"function"===typeof define&&define.amd?define("ttiPolyfill",[],function(){return H}):window.ttiPolyfill=H;})();!function(t,e){"use strict";function n(t){this.time=t.time,this.target=t.target,this.rootBounds=t.rootBounds,this.boundingClientRect=t.boundingClientRect,this.intersectionRect=t.intersectionRect||a(),this.isIntersecting=!!t.intersectionRect;var e=this.boundingClientRect,n=e.width*e.height,o=this.intersectionRect,i=o.width*o.height;this.intersectionRatio=n?i/n:this.isIntersecting?1:0}function o(t,e){var n=e||{};if("function"!=typeof t)throw new Error("callback must be a function");if(n.root&&1!=n.root.nodeType)throw new Error("root must be an Element");this._checkForIntersections=r(this._checkForIntersections.bind(this),this.THROTTLE_TIMEOUT),this._callback=t,this._observationTargets=[],this._queuedEntries=[],this._rootMarginValues=this._parseRootMargin(n.rootMargin),this.thresholds=this._initThresholds(n.threshold),this.root=n.root||null,this.rootMargin=this._rootMarginValues.map(function(t){return t.value+t.unit}).join(" ")}function i(){return t.performance&&performance.now&&performance.now()}function r(t,e){var n=null;return function(){n||(n=setTimeout(function(){t(),n=null},e))}}function s(t,e,n,o){"function"==typeof t.addEventListener?t.addEventListener(e,n,o||!1):"function"==typeof t.attachEvent&&t.attachEvent("on"+e,n)}function h(t,e,n,o){"function"==typeof t.removeEventListener?t.removeEventListener(e,n,o||!1):"function"==typeof t.detatchEvent&&t.detatchEvent("on"+e,n)}function c(t,e){var n=Math.max(t.top,e.top),o=Math.min(t.bottom,e.bottom),i=Math.max(t.left,e.left),r=Math.min(t.right,e.right),s=r-i,h=o-n;return s>=0&&h>=0&&{top:n,bottom:o,left:i,right:r,width:s,height:h}}function u(t){var e;try{e=t.getBoundingClientRect()}catch(t){}return e?(e.width&&e.height||(e={top:e.top,right:e.right,bottom:e.bottom,left:e.left,width:e.right-e.left,height:e.bottom-e.top}),e):a()}function a(){return{top:0,bottom:0,left:0,right:0,width:0,height:0}}function l(t,e){for(var n=e;n;){if(n==t)return!0;n=p(n)}return!1}function p(t){var e=t.parentNode;return e&&11==e.nodeType&&e.host?e.host:e}if("IntersectionObserver"in t&&"IntersectionObserverEntry"in t&&"intersectionRatio"in t.IntersectionObserverEntry.prototype)return void("isIntersecting"in t.IntersectionObserverEntry.prototype||Object.defineProperty(t.IntersectionObserverEntry.prototype,"isIntersecting",{get:function(){return this.intersectionRatio>0}}));var f=[];o.prototype.THROTTLE_TIMEOUT=100,o.prototype.POLL_INTERVAL=null,o.prototype.USE_MUTATION_OBSERVER=!0,o.prototype.observe=function(t){if(!this._observationTargets.some(function(e){return e.element==t})){if(!t||1!=t.nodeType)throw new Error("target must be an Element");this._registerInstance(),this._observationTargets.push({element:t,entry:null}),this._monitorIntersections(),this._checkForIntersections()}},o.prototype.unobserve=function(t){this._observationTargets=this._observationTargets.filter(function(e){return e.element!=t}),this._observationTargets.length||(this._unmonitorIntersections(),this._unregisterInstance())},o.prototype.disconnect=function(){this._observationTargets=[],this._unmonitorIntersections(),this._unregisterInstance()},o.prototype.takeRecords=function(){var t=this._queuedEntries.slice();return this._queuedEntries=[],t},o.prototype._initThresholds=function(t){var e=t||[0];return Array.isArray(e)||(e=[e]),e.sort().filter(function(t,e,n){if("number"!=typeof t||isNaN(t)||t<0||t>1)throw new Error("threshold must be a number between 0 and 1 inclusively");return t!==n[e-1]})},o.prototype._parseRootMargin=function(t){var e=t||"0px",n=e.split(/\s+/).map(function(t){var e=/^(-?\d*\.?\d+)(px|%)$/.exec(t);if(!e)throw new Error("rootMargin must be specified in pixels or percent");return{value:parseFloat(e[1]),unit:e[2]}});return n[1]=n[1]||n[0],n[2]=n[2]||n[0],n[3]=n[3]||n[1],n},o.prototype._monitorIntersections=function(){this._monitoringIntersections||(this._monitoringIntersections=!0,this.POLL_INTERVAL?this._monitoringInterval=setInterval(this._checkForIntersections,this.POLL_INTERVAL):(s(t,"resize",this._checkForIntersections,!0),s(e,"scroll",this._checkForIntersections,!0),this.USE_MUTATION_OBSERVER&&"MutationObserver"in t&&(this._domObserver=new MutationObserver(this._checkForIntersections),this._domObserver.observe(e,{attributes:!0,childList:!0,characterData:!0,subtree:!0}))))},o.prototype._unmonitorIntersections=function(){this._monitoringIntersections&&(this._monitoringIntersections=!1,clearInterval(this._monitoringInterval),this._monitoringInterval=null,h(t,"resize",this._checkForIntersections,!0),h(e,"scroll",this._checkForIntersections,!0),this._domObserver&&(this._domObserver.disconnect(),this._domObserver=null))},o.prototype._checkForIntersections=function(){var t=this._rootIsInDom(),e=t?this._getRootRect():a();this._observationTargets.forEach(function(o){var r=o.element,s=u(r),h=this._rootContainsTarget(r),c=o.entry,a=t&&h&&this._computeTargetAndRootIntersection(r,e),l=o.entry=new n({time:i(),target:r,boundingClientRect:s,rootBounds:e,intersectionRect:a});c?t&&h?this._hasCrossedThreshold(c,l)&&this._queuedEntries.push(l):c&&c.isIntersecting&&this._queuedEntries.push(l):this._queuedEntries.push(l)},this),this._queuedEntries.length&&this._callback(this.takeRecords(),this)},o.prototype._computeTargetAndRootIntersection=function(n,o){if("none"!=t.getComputedStyle(n).display){for(var i=u(n),r=i,s=p(n),h=!1;!h;){var a=null,l=1==s.nodeType?t.getComputedStyle(s):{};if("none"==l.display)return;if(s==this.root||s==e?(h=!0,a=o):s!=e.body&&s!=e.documentElement&&"visible"!=l.overflow&&(a=u(s)),a&&!(r=c(a,r)))break;s=p(s)}return r}},o.prototype._getRootRect=function(){var t;if(this.root)t=u(this.root);else{var n=e.documentElement,o=e.body;t={top:0,left:0,right:n.clientWidth||o.clientWidth,width:n.clientWidth||o.clientWidth,bottom:n.clientHeight||o.clientHeight,height:n.clientHeight||o.clientHeight}}return this._expandRectByRootMargin(t)},o.prototype._expandRectByRootMargin=function(t){var e=this._rootMarginValues.map(function(e,n){return"px"==e.unit?e.value:e.value*(n%2?t.width:t.height)/100}),n={top:t.top-e[0],right:t.right+e[1],bottom:t.bottom+e[2],left:t.left-e[3]};return n.width=n.right-n.left,n.height=n.bottom-n.top,n},o.prototype._hasCrossedThreshold=function(t,e){var n=t&&t.isIntersecting?t.intersectionRatio||0:-1,o=e.isIntersecting?e.intersectionRatio||0:-1;if(n!==o)for(var i=0;i<this.thresholds.length;i++){var r=this.thresholds[i];if(r==n||r==o||r<n!=r<o)return!0}},o.prototype._rootIsInDom=function(){return!this.root||l(e,this.root)},o.prototype._rootContainsTarget=function(t){return l(this.root||e,t)},o.prototype._registerInstance=function(){f.indexOf(this)<0&&f.push(this)},o.prototype._unregisterInstance=function(){var t=f.indexOf(this);-1!=t&&f.splice(t,1)},t.IntersectionObserver=o,t.IntersectionObserverEntry=n}(window,document);function gtag(){dataLayer.push(arguments)}var logger=function(){"use strict";function n(n){if(n=JSON.stringify(n),"sendBeacon"in navigator)navigator.sendBeacon(t,n);else{var e=new XMLHttpRequest;e.open("POST",t,!1),e.setRequestHeader("Content-Type","text/plain;charset=UTF-8"),e.send(n)}}function e(e,t,i){if(!RC.isProductionServer)switch(e){case"error":case"warn":case"info":i?console[e](t,i):console[e](t);break;default:console.log(t,i)}"error"!==e&&"warn"!==e||(r.push({level:e,msg:t||"",info:Object.assign({},i,{path:window.location.pathname,userAgent:navigator.userAgent})}),r.length>=o&&n(r.splice(0,o)))}var t="/analytics",o=10,r=[];return window.addEventListener("unload",function(){n(r)},!1),{stack:Function.prototype.bind.call(function(n){n&&e("error",n.name+': "'+n.message+'"',{type:n.name,description:n.message,trace:n.stack})}),error:Function.prototype.bind.call(function(n,t){e("error",n,t)}),warn:Function.prototype.bind.call(function(n,t){e("warn",n,t)}),info:Function.prototype.bind.call(function(n,t){e("info",n,t)}),verbose:Function.prototype.bind.call(function(n,t){e("verbose",n,t)}),debug:Function.prototype.bind.call(function(n,t){e("debug",n,t)}),silly:Function.prototype.bind.call(function(n,t){e("silly",n,t)})}}();window.dataLayer=window.dataLayer||[],gtag("js",new Date),gtag("config",RC.googleAnalyticsTrackingId),gtag("config","G-5JMGYPWJRR"),window.addEventListener("error",function(n){logger.stack(n.error)}),window.addEventListener("unhandledrejection",function(n){n&&n.reason&&logger.error('Unhandled promise rejection: "'+n.reason.message+'"',{type:"PromiseRejection",description:n.reason.message,trace:n.reason.stack})});var gtagFirstMeaningfulPaint=function(){var n=!1;return function(){n?logger.warn('Timing for "firstMeaningfulPaint" already sent'):(console.log("firstMeaningfulPaint",Math.round(performance.now())),n=!0)}}();!function(){"use strict";var n=0;if("PerformanceObserver"in window&&"PerformancePaintTiming"in window){new PerformanceObserver(function(e){e.getEntries().forEach(function(e){if(0===n){e.startTime,e.duration}})}).observe({entryTypes:["paint"]});var e=window.__tti={e:[]};e.o=new PerformanceObserver(function(n){e.e=e.e.concat(n.getEntries())}),e.o.observe({entryTypes:["longtask"]}),ttiPolyfill.getFirstConsistentlyInteractive({}).then(function(n){});new PerformanceObserver(function(n){n.getEntries().forEach(function(n){var e=n.attribution[0]||{},t={containerType:e.containerType,containerName:e.containerName,containerId:e.containerId,containerSrc:e.containerSrc,frameOrigin:n.name,durationMs:n.duration,startTimeMs:n.startTime};n.duration>500&&logger.warn("Long running task, duration "+n.duration.toFixed(2)+"ms.",t)})}).observe({entryTypes:["longtask"]})}var t=performance.now();window.addEventListener("visibilitychange",function(){document.hidden?t=performance.now():n+=performance.now()-t}),window.addEventListener("load",function(){performance.now()}),window.addEventListener("DOMContentLoaded",function(){performance.now()})}();var lazyImage=function(){var r=new IntersectionObserver(function(r){r.forEach(function(r){r.isIntersecting&&(r.target.src=r.target.getAttribute("data-src"))})},{root:null,rootMargin:"0px",threshold:[0]});return{observe:function(e){r.observe(e)},observeArray:function(e){for(var t=0,n=e.length;t<n;++t)r.observe(e[t])}}}();</script><title>RCSB PDB - 1YCR: MDM2 BOUND TO THE TRANSACTIVATION DOMAIN OF P53</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta property="og:title" content="RCSB PDB - 1YCR: MDM2 BOUND TO THE TRANSACTIVATION DOMAIN OF P53"><meta property="og:description" content="MDM2 BOUND TO THE TRANSACTIVATION DOMAIN OF P53"><meta property="og:image" content="https://cdn.rcsb.org/images/structures/1ycr_assembly-1.jpeg"><meta name="twitter:card" content="summary_large_image"><meta name="twitter:title" content="RCSB PDB - 1YCR: MDM2 BOUND TO THE TRANSACTIVATION DOMAIN OF P53"><meta name="twitter:description" content="MDM2 BOUND TO THE TRANSACTIVATION DOMAIN OF P53"><meta name="twitter:image" content="https://cdn.rcsb.org/images/structures/1ycr_assembly-1.jpeg"><meta name="description" content="MDM2 BOUND TO THE TRANSACTIVATION DOMAIN OF P53"><meta name="author" content="RCSB Protein Data Bank"><meta name="email" content="info@rcsb.org"><meta name="Charset" content="UTF-8"><meta name="Distribution" content="Global"><meta name="Rating" content="General"><meta http-equiv="content-language" content="en-US"><meta name="viewport" content="width=device-width, initial-scale=1"><meta name="theme-color" content="#5e94c3"><link rel="manifest" href="/manifest.json"><link rel="apple-touch-icon" href="/img/rcsb-apple-touch-icon.jpg"><link rel="stylesheet" href="https://cdn.rcsb.org/javascript/bootstrap/latest/css/bootstrap.min.css"><link rel="stylesheet" href="https://cdn.rcsb.org/javascript/fontawesome/latest/css/font-awesome.min.css"><link rel="stylesheet" href="/build/css/main.css"><link rel="stylesheet" href="/css/search.css?ts=5555432"><script>window.addEventListener('DOMContentLoaded', function () {
    lazyImage.observeArray(document.querySelectorAll('img[data-src]'));
}, false);

window.addEventListener('load', function () {
    // load the JIRA feedback button only after everything else has been loaded
    var script = document.createElement("script");
    script.src = "/js/jira-fdbck.js";
    script.type = "text/javascript";
    document.getElementsByTagName("head")[0].appendChild(script);
    var link = document.createElement("link");
    link.rel = "stylesheet";
    link.href = "https://cdn.rcsb.org/jira-feedback/css/jira-fdbck.css";
    document.getElementsByTagName("head")[0].appendChild(link);
    // load the ekko-lightbox css only after everything else has been loaded
    var link = document.createElement("link");
    link.rel = "stylesheet";
    link.href = "/css/ekko-lightbox.css";
    document.getElementsByTagName("head")[0].appendChild(link);
});
</script><script src="https://cdn.rcsb.org/javascript/jquery/jquery-3.3.1.min.js"></script><script src="https://cdn.rcsb.org/javascript/bootstrap/latest/js/bootstrap.min.js"></script><script src="/js/ekko-lightbox.min.js" defer></script><script>$(document).delegate('*[data-toggle="lightbox"]',"click",function(t){t.preventDefault(),$(this).ekkoLightbox()});$(function(){$(".nav>.dropdown").on("mouseenter",function(o){$(this).addClass("open")}),$(".nav>.dropdown").on("mouseleave",function(o){$(".dropdown").removeClass("open")}),$('[data-toggle="tooltip"]').tooltip()});</script><link rel="stylesheet" href="/css/pages/staticpages.css"><link rel="stylesheet" href="/css/structure/structuresummarypage.css"><link rel="stylesheet" href="/css/bootstrap-slider.css"><link rel="stylesheet" href="/css/material-switch.css"><script type="text/javascript" src="/saguaro/app.js"></script><script type="text/javascript" src="/saguaro/plot.js"></script><style>.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#fff;cursor:default;background-color:#5e6973;border:1px solid #ddd;border-bottom-color:transparent}#structuretabs>li.active>a,#structuretabs>li.active>a:focus,#structuretabs>li.active>a:hover{background-color:#325880;border:1px solid transparent;border-bottom:none}#structuretabs{border-bottom:5px solid #325880}#structuretabs>li{margin-bottom:0}#structuretabs>li>a{background-color:#efeded;border-bottom:none}#navbar-collapse-SSP{padding:0;margin:0}.secondaryheader h1{float:left;margin-right:10px}.secondaryheader h4{margin-top:30px}#entitynext{margin-top:10px;background-color:#416d93}.panel-default>.panel-heading{color:#fff;background-color:#5e6973;border-color:#ddd}table .highlight td{background-color:#fff2e0}table td ul{-webkit-padding-start:15px}.noteSearchQuery{margin-bottom:0;padding:5px}.querySearchLink{font-weight:700;text-decoration:underline}table tr td button{margin:4px 1px}table thead .externalannotation>th{background-color:#f0ad4e;color:#fff;border-bottom-width:1px;font-weight:400}#structuretabs .dropdown .dropdown-menu{min-width:100%}@media screen and (max-width:767px){#collapsedHeader>div{padding-left:0;padding-right:0}#SSP-collapsed-tabs{background-color:#efeded;margin-top:0;border:1px solid #ccc}#navbar-collapse-SSP{width:100%;margin:0}#structuretabs{border:0}#structuretabs li{width:100%}#collapsedHeader h1{float:left;width:100%}#ProductPrimaryActions{float:left;width:100%}}</style><script>var structureId = "1YCR";
console.log("CHECK: Summary Structure ID: " + structureId);
var proteinNumber = 0, nonProteinNumber = 0;
</script><script>proteinNumber = 2 + proteinNumber,
nonProteinNumber = 0 + nonProteinNumber;
</script></head><body><div data-elastic-exclude><div data-elastic-exclude><nav class="navbar navbar-inverse navbar-fixed-top hidden-print" id="nav" role="navigation"><div class="hide hidden-print" id="UnsupportedBrowser" style="width: 100%; border-bottom: 2px solid #FFA500; background-color: #FFFFFF; color: #000000; display: inline-block; font-size: .9em; line-height: 2em; text-align: center; font-weight: bold; font-style: italic;"><span class="label label-warning" style="font-size: 100%;">Warning</span>        You are using a web browser that we do not support. Our website will not work properly. Please update to a newer version or download a new web browser, such as Chrome or Firefox.</div><div class="container"><div class="row pull-right"><div class="col-xs-6"><div id="mypdb-menu-container"></div></div><div class="col-xs-6" style="padding-top:10px; margin-left: -15px">   <div class="button btn btn-sm basic jira-fdbck-btn" id="feedbackLink-ContactUs">Contact us</div></div></div><!-- Brand and toggle get grouped for better mobile display--><div class="navbar-header"><button class="navbar-toggle pull-left" type="button" data-toggle="collapse" data-target="#navbar-collapse-RCSB"><span class="sr-only">Toggle navigation</span><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></button><a class="navbar-brand" href="/">RCSB PDB</a></div><div class="collapse navbar-collapse" id="navbar-collapse-RCSB" style="max-height: 420px;"><ul class="nav navbar-nav pull-left"><li class="dropdown" id="headnav_deposit"><a class="dropdown-toggle" href="#" data-toggle="dropdown" aria-expanded="false">Deposit&nbsp;<b class="caret"></b></a><div class="dropdown-menu multi-column" id="DepositDropdownNav"><div class="row"><div class="col-xs-12 col-sm-2 col-md-2"><ul class="dropdown-menu" id="head-deposit_prepare"><h4>Prepare Data</h4><li> <a href="https://www.wwpdb.org/deposition/preparing-pdbx-mmcif-files" rel="noopener" target="_blank">PDBx/mmCIF file</a></li><li> <a href="https://pdb-extract.wwpdb.org/" rel="noopener" target="_blank">pdb_extract</a></li><li> <a href="http://sf-tool.wwpdb.org/" rel="noopener" target="_blank">SF-Tool</a></li><li> <a href="http://ligand-expo.rcsb.org/" rel="noopener" target="_blank">Ligand Expo</a></li><li> <a href="https://sw-tools.rcsb.org/apps/MAXIT/index.html" rel="noopener" target="_blank">MAXIT</a></li></ul></div><div class="col-xs-12 col-sm-3 col-md-3"><ul class="dropdown-menu" id="head-deposit_validate"><h4>Validate Data</h4><li> <a href="https://validate-rcsb.wwpdb.org" rel="noopener" target="_blank">Validation Server</a></li><li> <a href="http://www.wwpdb.org/validation/onedep-validation-web-service-interface" rel="noopener" target="_blank">Validation API</a></li><li> <a href="http://www.wwpdb.org/documentation/journals" rel="noopener" target="_blank">Information for Journals</a></li><li> <a href="http://www.wwpdb.org/task/validation-task-forces.php" rel="noopener" target="_blank">Validation Task Forces</a></li></ul></div><div class="col-xs-12 col-sm-3 col-md-3"><ul class="dropdown-menu" id="head-deposit_deposit-data"><h4>Deposit Data</h4><li style="word-break: normal"> <a href="https://deposit.wwpdb.org/deposition/" rel="noopener" target="_blank" style="word-break: normal">wwPDB OneDep System</a></li><li style="word-break: normal"> <a href="https://pdb-dev.wwpdb.org/" rel="noopener" target="_blank" style="word-break: normal">PDB-Dev</a></li></ul></div><div class="col-xs-12 col-sm-2 col-md-3"><ul class="dropdown-menu" id="head-deposit_deposit-help"><h4>Help and Resources</h4><li> <a href="http://www.wwpdb.org/deposition/faq" rel="noopener" target="_blank">Deposit FAQ</a></li><li> <a href="http://www.wwpdb.org/validation/2017/FAQs" rel="noopener" target="_blank">Validation FAQ</a></li><li> <a href="http://www.wwpdb.org/deposition/tutorial" rel="noopener" target="_blank">Tutorials</a></li><li> <a href="http://www.wwpdb.org/documentation/policy" rel="noopener" target="_blank">Annotation Policies</a></li><li> <a href="http://www.wwpdb.org/documentation/procedure" rel="noopener" target="_blank">Processing Procedures</a></li><li> <a href="https://mmcif.wwpdb.org/" rel="noopener" target="_blank">PDBx/mmCIF Dictionary</a></li><li> <a href="https://www.wwpdb.org/data/ccd" rel="noopener" target="_blank">Chemical Component Dictionary</a></li><li> <a href="https://www.wwpdb.org/data/bird" rel="noopener" target="_blank">Biologically Interesting Molecule Reference Dictionary (BIRD)</a></li><li> <a href="https://biosync.sbkb.org/" rel="noopener" target="_blank">BioSync/Beamlines/Facilities</a></li><li> <a href="https://sw-tools.rcsb.org/" rel="noopener" target="_blank">Related Tools</a></li></ul></div></div></div></li><li class="dropdown" id="headnav_search"><a class="dropdown-toggle" href="#" data-toggle="dropdown">Search&nbsp;<b class="caret"></b></a><ul class="dropdown-menu"><li><a href="/search/advanced" rel="noopener">Advanced Search</a></li><li><a href="/search/advanced/sequence" rel="noopener">Sequence Search</a></li><li><a href="/search/advanced/chemical" rel="noopener">Chemical Similarity Search</a></li><li><a href="/chemical-sketch" rel="noopener">Chemical Sketch Tool</a></li><li><a href="/search/browse/atc" rel="noopener">Browse by Annotations</a></li><li><a href="/search?query=%7B%22parameters%22%3A%7B%22attribute%22%3A%22rcsb_accession_info.initial_release_date%22%2C%22operator%22%3A%22greater_or_equal%22%2C%22value%22%3A%222022-10-19T00%3A00%3A00Z%22%7D%7D" rel="noopener">New Entries</a></li><li><a href="/pages/unreleased" rel="noopener">Unreleased Entries</a></li><li><a href="/stats" rel="noopener">PDB Statistics</a></li></ul></li><li class="dropdown" id="headnav_visualize"><a class="dropdown-toggle" href="#" data-toggle="dropdown">Visualize&nbsp;<b class="caret"></b></a><ul class="dropdown-menu">     <li><a href="/3d-view" rel="noopener">Mol* (MolStar)</a></li><li><a href="/docs/sequence-viewers/protein-feature-view" rel="noopener">Protein Feature View</a></li><li><a href="/docs/sequence-viewers/genome-view" rel="noopener">Genome View</a></li></ul></li><li class="dropdown" id="headnav_analyze"><a class="dropdown-toggle" href="#" data-toggle="dropdown">Analyze&nbsp;<b class="caret"></b></a><ul class="dropdown-menu"><li><a href="/alignment" rel="noopener">Pairwise Structure Alignment</a></li><li><a href="/docs/general-help/symmetry-resources-in-the-pdb" rel="noopener">Symmetry Resources in the PDB</a></li><li><a href="https://www.wwpdb.org/validation/validation-reports" rel="noopener" target="_blank">Structure Quality </a></li><li><a href="/docs/grouping-structures/overview-grouping-structures" rel="noopener">Grouping Structures</a></li><li><a href="https://cdn.rcsb.org/rcsb-pdb/pdb50mesh/index.html" rel="noopener" target="_blank">PDB Citation MeSH Network Explorer  </a></li><li><a href="/stats" rel="noopener">PDB Statistics</a></li><li><a href="https://www.eppic-web.org/ewui/" rel="noopener" target="_blank">EPPIC Biological Assemblies </a></li><li class="extraList">External Data and Resources  </li><li class="extraMargin"><a href="/docs/general-help/data-from-external-resources-integrated-into-rcsb-pdb" rel="noopener">Integrated Resources                </a></li><li class="extraMargin"><a href="/docs/additional-resources/databases" rel="noopener">Additional Resources                </a></li></ul></li><li class="dropdown hidden-xs hidden-sm" id="headnav_download"><a class="dropdown-toggle" href="#" data-toggle="dropdown">Download&nbsp;<b class="caret"></b></a><ul class="dropdown-menu">     <li><a href="/downloads" rel="noopener">Coordinates and Experimental Data</a></li><li><a href="/downloads/fasta" rel="noopener">Sequences</a></li><li><a href="/downloads/ligands" rel="noopener">Ligands</a></li><li><a href="/docs/programmatic-access/file-download-services" rel="noopener">File Download Services</a></li><li><a href="/docs/programmatic-access/web-services-overview" rel="noopener">Web Services</a></li></ul></li><li class="dropdown" id="headnav_learn"><a class="dropdown-toggle" href="#" data-toggle="dropdown">Learn&nbsp;<b class="caret"></b></a><ul class="dropdown-menu"><h4><a href="http://pdb101.rcsb.org" target="_blank" rel="noopener"><img class="image_submenu" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-src="https://cdn.rcsb.org/rcsb-pdb/v2/home/images/menuImgs/pdb101Logo.png"></a></h4><li><a href="https://pdb101.rcsb.org/browse" rel="noopener" target="_blank">Browse </a></li><li><a href="https://pdb101.rcsb.org/motm/motm-by-date" rel="noopener" target="_blank">Molecule of the Month </a></li><li><a href="https://pdb101.rcsb.org/learn/paper-models" rel="noopener" target="_blank">Educational Resources </a></li><li><a href="https://pdb101.rcsb.org/teach/overview" rel="noopener" target="_blank">Curricula </a></li><li><a href="https://pdb101.rcsb.org/learn/guide-to-understanding-pdb-data/introduction" rel="noopener" target="_blank">Guide to PDB Data </a></li><li><a href="https://pdb101.rcsb.org/news/2022" rel="noopener" target="_blank">News </a></li><li class="extraList">SciArt Galleries  </li><li class="extraMargin"><a href="https://pdb101.rcsb.org/sci-art/geis-archive/gallery-by-name" rel="noopener" target="blank">Irving Geis  </a></li><li class="extraMargin"><a href="https://pdb101.rcsb.org/sci-art/goodsell-gallery" rel="noopener" target="blank">David Goodsell  </a></li></ul></li><li class="dropdown" id="headnav_more"><a class="dropdown-toggle" href="#" data-toggle="dropdown">More&nbsp;<b class="caret"></b></a><ul class="dropdown-menu"><li><a href="/pages/contactus" rel="noopener">Contact Us</a></li><li><a href="/pages/about-us/index" rel="noopener">About RCSB PDB</a></li><li><a href="/pages/policies" rel="noopener">Citation, Usage, Privacy Policies</a></li><li><a href="/pages/news" rel="noopener">News</a></li><li><a href="/pages/about-us/history" rel="noopener">PDB History</a></li><li><a href="/pages/pdb50" rel="noopener">PDB50</a></li><li><a href="/pages/publications" rel="noopener">Publications</a></li><li><a href="/pages/advisory-committee" rel="noopener">RCSB PDB Advisory Committee</a></li><li><a href="https://status.rcsb.org/" rel="noopener" target="_blank">Service Status </a></li><li><a href="/pages/team" rel="noopener">Team Members</a></li></ul></li><li class="dropdown" id="headnav_documentation"><a class="dropdown-toggle" href="#" data-toggle="dropdown">Documentation&nbsp;<b class="caret"></b></a><ul class="dropdown-menu">     <li><a class="extraList" href="/docs/general-help/organization-of-3d-structures-in-the-protein-data-bank" rel="noopener" style="padding-left: 0px;">General Help   </a></li><li class="extraMargin"><a href="/docs/general-help/organization-of-3d-structures-in-the-protein-data-bank" rel="noopener">3D Structures in the Protein Data Bank                </a></li><li class="extraMargin"><a href="/docs/general-help/computed-structure-models-and-rcsborg" rel="noopener">Computed Structure Models (CSM)                </a></li><li><a class="extraList" href="/docs/search-and-browse/overview-search-and-browse" rel="noopener" style="padding-left: 0px;">Search and Browse   </a></li><li class="extraMargin"><a href="/docs/search-and-browse/basic-search" rel="noopener">Basic Search                </a></li><li class="extraMargin"><a href="/docs/search-and-browse/advanced-search/overview-advanced-search" rel="noopener">Advanced Search                </a></li><li class="extraMargin"><a href="/docs/search-and-browse/browse-options/overview-browse" rel="noopener">Browse Annotations                </a></li><li><a class="extraList" href="/docs/3d-viewers/mol*/getting-started" rel="noopener" style="padding-left: 0px;">Visualize and Analyze   </a></li><li class="extraMargin"><a href="/docs/sequence-viewers/genome-view" rel="noopener">Sequence Viewers                </a></li><li class="extraMargin"><a href="/docs/tools/pairwise-structure-alignment" rel="noopener">Pairwise Structure Alignment                </a></li><li><a href="/docs/exploring-a-3d-structure/overview" rel="noopener">Exploring a 3D Structure</a></li><li><a href="/docs/grouping-structures/overview-grouping-structures" rel="noopener">Grouping Structures</a></li><li><a href="/docs/programmatic-access/file-download-services" rel="noopener">Programmatic Access</a></li><li><a href="/docs/additional-resources/databases" rel="noopener">Additional Resources</a></li><li><a href="/docs/general-help/software-supporters" rel="noopener">Software Supporters</a></li><li><a href="/docs/general-help/deposition-resources" rel="noopener">Deposition Resources</a></li><li><a href="/docs/general-help/-website-faq-" rel="noopener">FAQs</a></li><li><a href="/docs/general-help/glossary" rel="noopener">Glossary</a></li></ul></li><li><a class="dropdown-toggle" href="/pages/jobs">Careers</a></li><li class="dropdown visible-xs"><div id="socialmedia_section_mobile"><ul class="fa-ul hidden-print"><li><a href="https://www.facebook.com/RCSBPDB" target="_blank" rel="noopener" title="Facebook" data-placement="top" data-toggle="tooltip"><i class="fa fa-facebook-square fa-lg"></i></a></li><li><a href="https://twitter.com/buildmodels" target="_blank" rel="noopener" title="Twitter" data-placement="top" data-toggle="tooltip"><i class="fa fa-twitter fa-lg"></i></a></li><li><a href="https://www.youtube.com/user/RCSBProteinDataBank" target="_blank" rel="noopener" title="YouTube" data-placement="top" data-toggle="tooltip"><i class="fa fa-youtube-play fa-lg"></i></a></li><li><a href="https://github.com/rcsb" target="_blank" rel="noopener" title="Github" data-placement="top" data-toggle="tooltip"><i class="fa fa-github fa-lg"></i></a></li></ul></div></li></ul></div></div></nav></div><style>#PDBmembers li {margin-right: 15px; }
</style><div data-elastic-exclude><div id="header"><div class="container"><div class="row" style="margin-bottom: 0px;"><div class="col-md-6 col-lg-5 hidden-sm hidden-xs" id="logo_container" style="padding-bottom: 15px;"><table class="header-left"><tr><td><a href="/"><img id="rcsblogo" src="https://cdn.rcsb.org/rcsb-pdb/v2/common/images/rcsb_logo.png" alt="RCSB PDB"></a></td><td><table id="header-counts"><tr><td><div class="results-content-type-sm experimental"><span class="fa fa-flask" data-toggle="tooltip" data-placement="right" data-original-title="Experimental PDB Structure"></span></div></td><td><a href="/search?request=%7B%22query%22%3A%7B%22type%22%3A%22group%22%2C%22nodes%22%3A%5B%7B%22type%22%3A%22group%22%2C%22nodes%22%3A%5B%7B%22type%22%3A%22group%22%2C%22nodes%22%3A%5B%7B%22type%22%3A%22terminal%22%2C%22service%22%3A%22text%22%2C%22parameters%22%3A%7B%22attribute%22%3A%22rcsb_entry_info.structure_determination_methodology%22%2C%22operator%22%3A%22exact_match%22%2C%22value%22%3A%22experimental%22%7D%7D%5D%2C%22logical_operator%22%3A%22and%22%7D%5D%2C%22logical_operator%22%3A%22and%22%2C%22label%22%3A%22text%22%7D%5D%2C%22logical_operator%22%3A%22and%22%7D%2C%22return_type%22%3A%22entry%22%2C%22request_options%22%3A%7B%22scoring_strategy%22%3A%22combined%22%2C%22results_content_type%22%3A%5B%22experimental%22%5D%7D%7D" style="font-weight: bold; font-size: 110%">196,779</a><span>&nbsp;Structures from the PDB</span></td></tr><tr><td><div class="results-content-type-sm computational"><span class="fa fa-desktop" data-toggle="tooltip" data-placement="right" data-original-title="Computed Structure Model"></span></div></td><td><a href="/search?request=%7B%22query%22%3A%7B%22type%22%3A%22group%22%2C%22nodes%22%3A%5B%7B%22type%22%3A%22group%22%2C%22nodes%22%3A%5B%7B%22type%22%3A%22group%22%2C%22nodes%22%3A%5B%7B%22type%22%3A%22terminal%22%2C%22service%22%3A%22text%22%2C%22parameters%22%3A%7B%22attribute%22%3A%22rcsb_entry_info.structure_determination_methodology%22%2C%22operator%22%3A%22exact_match%22%2C%22value%22%3A%22computational%22%7D%7D%5D%2C%22logical_operator%22%3A%22and%22%7D%5D%2C%22logical_operator%22%3A%22and%22%2C%22label%22%3A%22text%22%7D%5D%2C%22logical_operator%22%3A%22and%22%7D%2C%22return_type%22%3A%22entry%22%2C%22request_options%22%3A%7B%22scoring_strategy%22%3A%22combined%22%2C%22results_content_type%22%3A%5B%22computational%22%5D%7D%7D" style="font-weight: bold; font-size: 110%">1,000,361</a><span>&nbsp;Computed Structure Models (CSM)</span></td></tr></table></td></tr></table></div><div class="col-sm-12 col-md-6 col-lg-7 hidden-print" id="search-bar-container"></div></div></div><div class="logos_bcg"><div class="container"><ul class="hidden-xs hidden-print" id="PDBmembers"><li><a href="https://pdb101.rcsb.org/"><img id="pdb101logo" src="https://cdn.rcsb.org/rcsb-pdb/v2/common/images/pdb101-truncated.png" alt="PDB-101"></a></li><li><a href="https://www.wwpdb.org/" target="_blank" rel="noopener"><img id="wwpdblogo" src="https://cdn.rcsb.org/rcsb-pdb/v2/common/images/wwpdb-truncated.png" alt="wwPDB"></a></li><li><a href="https://www.emdataresource.org" target="_blank" rel="noopener"><img id="emdatabanklogo" src="https://cdn.rcsb.org/rcsb-pdb/v2/common/images/emdb-truncated.png" alt="EMDataResource"></a></li><li><a href="http://ndbserver.rutgers.edu/" target="_blank" rel="noopener"><img id="ndblogo" src="https://cdn.rcsb.org/rcsb-pdb/v2/common/images/ndb-truncated.png" alt="NDB Nucleic Acid Database"></a></li><li><a href="https://foundation.wwpdb.org/" target="_blank" rel="noopener"><img id="wwpdbfoundationlogo" src="https://cdn.rcsb.org/rcsb-pdb/v2/common/images/foundation-truncated.png" alt="wwPDB Foundation"></a></li></ul><div id="socialmedia_section"><ul class="fa-ul hidden-print"><li><a href="https://www.facebook.com/RCSBPDB" target="_blank" rel="noopener" title="Facebook" data-placement="top" data-toggle="tooltip"><i class="fa fa-facebook-square fa-lg"></i></a></li><li><a href="https://twitter.com/buildmodels" target="_blank" rel="noopener" title="Twitter" data-placement="top" data-toggle="tooltip"><i class="fa fa-twitter fa-lg"></i></a></li><li><a href="https://www.youtube.com/user/RCSBProteinDataBank" target="_blank" rel="noopener" title="YouTube" data-placement="top" data-toggle="tooltip"><i class="fa fa-youtube-play fa-lg"></i></a></li><li><a href="https://github.com/rcsb" target="_blank" rel="noopener" title="Github" data-placement="top" data-toggle="tooltip"><i class="fa fa-github fa-lg"></i></a></li></ul></div></div></div></div></div><div class="container" id="maincontentcontainer"><button class="navbar-toggle pull-left" id="SSP-collapsed-tabs" type="button" data-toggle="collapse" data-target="#navbar-collapse-SSP"><span class="glyphicon glyphicon-menu-hamburger" aria-hidden="true"></span> Navigation Tabs</button><div class="collapse navbar-collapse" id="navbar-collapse-SSP"><ul class="nav nav-tabs hidden-print" id="structuretabs" role="tablist"><li id="structuresummarytab" role="presentation"><a href="/structure/1YCR">Structure Summary</a></li><li id="3dviewtab" role="presentation"><a href="/3d-view/1YCR">3D View</a></li><li id="annotationstab" role="presentation"><a href="/annotations/1YCR">Annotations</a></li><li id="MoreOptions-Method" role="presentation"><a href="/experimental/1YCR">Experiment</a></li><li id="sequencetab" role="presentation"><a href="/sequence/1YCR">Sequence</a></li><li id="genometab" role="presentation"><a href="/genome/1YCR">Genome</a></li><li id="versionstab" role="presentation"><a href="/versions/1YCR">Versions</a></li><!--+tab( 'Sequence', '/pdb/explore/remediatedSequence.do?structureId=' + entryId, 'Sequence' )--><!--+tab( 'MoreOptions-Method', '/experimental/' + entryId, 'Experiment' )--></ul></div><br><div class="tab-content"><div class="tab-pane active" id="summary" role="tabpanel"><div class="row"><div class="col-md-4 col-sm-12 col-xs-12"><script>// Used for Transmembrane Image Carousel
var structureFirstLigand = false;
var finalImageCount = 1;
var isNMR = false;
var modelCount = 1
var assemblies = ["1"]</script><div class="panel panel-default" id="galleryimagepanel"><div class="panel-body" id="structureimagesection"><div class="carousel slide" id="carousel-structuregallery" data-ride="carousel" data-interval="false"><div class="carousel-inner" role="listbox"><div class="item imageCarouselItem" id="Carousel-BiologicalUnit0"><div class="carousel-header">Asymmetric Unit</div><div class="clearfix"></div><img class="img-responsive center-block mainImage" src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" style="image-rendering: -webkit-optimize-contrast;"><a class="btn btn-default btn-xs btn-enlargeImage" type="button" data-toggle="lightbox" data-gallery="multiimages0" href="#" data-title=""><span class="glyphicon glyphicon-resize-full" aria-hidden="true"></span></a><div class="galleryNewImages" id="AssemblyNewImage0"></div><div class="clearfix"></div><div class="carousel-footer"><p><assemblyid class="fa fa-cube">&nbsp</assemblyid><strong>3D View</strong>:&nbsp<a href="/3d-view/1YCR/0">Structure</a> | <a href="/3d-sequence/1YCR?assemblyId=0">1D-3D View</a> | <span class="propernoun"><a href="/3d-view/1YCR?preset=validationReport">Validation Report</a></span></p></div></div><div class="item imageCarouselItem" id="Carousel-BiologicalUnit1"><div class="carousel-header">Biological Assembly 1 &nbsp<a class="hidden-xs hidden-sm hidden-md icon-link" href="/docs/general-help/computed-structure-models-and-rcsborg#models-and-assembly"><span class="glyphicon glyphicon-question-sign" aria-hidden="true"></span></a></div><div class="clearfix"></div><img class="img-responsive center-block mainImage" src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" style="image-rendering: -webkit-optimize-contrast;"><a class="btn btn-default btn-xs btn-enlargeImage" type="button" data-toggle="lightbox" data-gallery="multiimages1" href="#" data-title=""><span class="glyphicon glyphicon-resize-full" aria-hidden="true"></span></a><div class="galleryNewImages" id="AssemblyNewImage1"></div><div class="clearfix"></div><div class="carousel-footer"><p><assemblyid class="fa fa-cube">&nbsp</assemblyid><strong>3D View</strong>:&nbsp<a href="/3d-view/1YCR/1">Structure</a> | <a href="/3d-sequence/1YCR?assemblyId=1">1D-3D View</a> | <span class="propernoun"><a href="/3d-view/1YCR?preset=validationReport">Validation Report</a></span></p><hr><strong>Global Symmetry</strong>: Asymmetric - C1&nbsp;<span class="glyphicon glyphicon-info-sign hidden-xs hidden-sm hidden-md" aria-hidden="true" data-toggle="tooltip" data-placement="top" data-original-title="Point group symmetry for the biological assembly. Chains are considered equivalent when their sequence identities are above 95%."></span><br><strong>Global Stoichiometry</strong>: Hetero 2-mer -&nbsp;<span style="word-wrap:break-word;">A1B1&nbsp;</span><span class="glyphicon glyphicon-info-sign hidden-xs hidden-sm hidden-md" aria-hidden="true" data-toggle="tooltip" data-placement="top" data-original-title="Chains with length below 5 residues or relatively short with respect to other chains are excluded from the stoichiometry and symmetry calculation."></span><div class="hidden-print" id="symmetryPart"></div><div class="hidden-print hide" id="symmetryFull"><br><button class="btn btn-default btn-xs hidden-print" id="full_symmetry_hide"><span class="glyphicon glyphicon-minus-sign"></span> Less</button></div><hr><a href="/search?query=%7B%22type%22%3A%22terminal%22%2C%22service%22%3A%22structure%22%2C%22parameters%22%3A%7B%22value%22%3A%7B%22entry_id%22%3A%221YCR%22%2C%22assembly_id%22%3A%221%22%7D%7D%7D&amp;return_type=assembly">Find Similar Assemblies</a><hr><p>Biological assembly 1&nbsp;assigned by authors and generated by PISA (software)</p></div></div><a class="left carousel-control" href="#carousel-structuregallery" role="button" data-slide="prev"><span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span><span class="sr-only">Previous</span></a><a class="right carousel-control" href="#carousel-structuregallery" role="button" data-slide="next"><span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span><span class="sr-only">Next</span></a></div></div></div></div><!-- Show up only when there is a mix of structure type--><div class="well well-sm hidden-sm hidden-xs well-nomar" id="macromoleculeContent"><p><strong>Macromolecule Content</strong></p><ul><li id="contentStructureWeight">Total Structure Weight: 14.34 kDa&nbsp<span class="glyphicon glyphicon-info-sign hidden-xs hidden-sm hidden-md" aria-hidden="true" data-toggle="tooltip" data-placement="top" data-original-title="Molecular weight (in kDa) of all non-water atoms in the deposited model, based on the full deposited sample sequence. Hydrogen atoms are included for the charged state in ARG, HIS &amp; LYS residues."></span></li><li id="contentAtomSiteCount">Atom Count: 818&nbsp<span class="glyphicon glyphicon-info-sign hidden-xs hidden-sm hidden-md" aria-hidden="true" data-toggle="tooltip" data-placement="top" data-original-title="Number of modeled non-hydrogen atoms in the deposited model."></span></li><li id="contentResidueCount">Modelled Residue Count: 98&nbsp<span class="glyphicon glyphicon-info-sign hidden-xs hidden-sm hidden-md" aria-hidden="true" data-toggle="tooltip" data-placement="top" data-original-title="Number of modeled polymer monomers in the deposited model."></span></li><li id="contentResidueCount">Deposited Residue Count: 124&nbsp<span class="glyphicon glyphicon-info-sign hidden-xs hidden-sm hidden-md" aria-hidden="true" data-toggle="tooltip" data-placement="top" data-original-title="Number of all (modeled or unmodeled) polymer monomers in the deposited model."></span></li><li id="contentProteinChainCount">Unique protein chains: 2</li></ul></div></div><div class="col-md-8 col-sm-12 col-xs-12"><div class="pull-right btn-group" id="ProductPrimaryActions" role="group"><div class="btn-group" id="DisplayFilesButton" role="group"><button class="btn btn-sm btn-default dropdown-toggle" id="dropdownMenuDisplayFiles" type="button" data-toggle="dropdown" aria-expanded="false"><span class="fa fa-file" aria-hidden="true"></span>&nbsp;Display Files&nbsp;<span class="caret"></span></button><ul class="dropdown-menu pull-right" role="menu" aria-labelledby="dropdownMenuDisplayFiles"><li><a target="_blank" rel="noopener" href="/fasta/entry/1YCR/display">FASTA Sequence</a></li><li class="divider"></li><li><a target="_blank" rel="noopener" href="//files.rcsb.org/view/1YCR.cif">mmCIF Format</a></li><li><a target="_blank" rel="noopener" href="//files.rcsb.org/header/1YCR.cif">mmCIF Format (Header)</a></li><li class="divider"></li><li><a target="_blank" rel="noopener" href="//files.rcsb.org/view/1YCR.pdb">PDB Format</a></li><li><a target="_blank" rel="noopener" href="//files.rcsb.org/header/1YCR.pdb">PDB Format (Header)</a></li></ul></div><div class="btn-group" id="DownloadFilesButton" role="group"><button class="btn btn-sm btn-primary dropdown-toggle" id="dropdownMenuDownloadFiles" type="button" data-toggle="dropdown" aria-expanded="false"><span class="fa fa-arrow-circle-o-down" aria-hidden="true" style="font-size: 14px;"></span>&nbsp;Download Files&nbsp;<span class="caret"></span></button><ul class="dropdown-menu pull-right" role="menu" aria-labelledby="dropdownMenuDownloadFiles"><li><a href="/fasta/entry/1YCR">FASTA Sequence</a></li><li class="divider"></li><li><a href="//files.rcsb.org/download/1YCR.cif">PDBx/mmCIF Format</a></li><li><a href="//files.rcsb.org/download/1YCR.cif.gz">PDBx/mmCIF Format (gz)</a></li><li class="divider"></li><li><a href="//files.rcsb.org/download/1YCR.pdb">PDB Format</a></li><li><a href="//files.rcsb.org/download/1YCR.pdb.gz">PDB Format (gz)</a></li><li class="divider"></li><li><a href="//files.rcsb.org/download/1YCR.xml.gz">PDBML/XML Format (gz)</a></li><li class="divider"></li><li><a target="_blank" rel="noopener" href="//files.rcsb.org/pub/pdb/validation_reports/yc/1ycr/1ycr_full_validation.pdf">Validation Full PDF</a></li><li><a target="_blank" rel="noopener" href="//files.rcsb.org/pub/pdb/validation_reports/yc/1ycr/1ycr_validation.xml.gz">Validation XML</a></li><li class="divider"></li><li><a href="//files.rcsb.org/download/1YCR-assembly1.cif">Biological Assembly 1 (CIF - gz)&nbsp;<span class="fa fa-info-circle" aria-hidden="true" data-toggle="tooltip" data-placement="top" title="Biological assembly files in .cif format."></span></a></li><li class="divider"></li><li><a href="//files.rcsb.org/download/1YCR.pdb1.gz">Biological Assembly 1 (PDB - gz)</a></li></ul></div></div><h1><div class="results-content-type experimental"><span class="fa fa-flask" data-toggle="tooltip" data-placement="top" data-original-title="Experimental PDB Structure"></span></div><span id="structureID">&nbsp;1YCR</span></h1><h4><span id="structureTitle">MDM2 BOUND TO THE TRANSACTIVATION DOMAIN OF P53</span></h4><ul class="list-inline"><li id="header_doi"><strong>PDB DOI:&nbsp</strong><a href="http://doi.org/10.2210/pdb1YCR/pdb" target="_blank" rel="noopener">10.2210/pdb1YCR/pdb</a></li></ul><ul class="list-unstyled"><li id="header_classification"><strong>Classification:&nbsp<a href="/search?q=struct_keywords.pdbx_keywords:COMPLEX (ONCOGENE PROTEIN/PEPTIDE)">COMPLEX (ONCOGENE PROTEIN/PEPTIDE)</a></strong></li><li id="header_organism"><strong>Organism(s):&nbsp</strong><a href="/search?q=rcsb_entity_source_organism.taxonomy_lineage.name:Homo sapiens">Homo sapiens</a></li><li id="header_expression-system"><strong>Expression System:&nbsp</strong><a href="/search?q=rcsb_entity_host_organism.ncbi_scientific_name:Escherichia coli">Escherichia coli</a></li><!-- sum of mutations of all entities--><li id="header_mutation"><strong>Mutation(s):&nbsp</strong>No&nbsp<span class="glyphicon glyphicon-info-sign hidden-xs hidden-sm hidden-md" aria-hidden="true" data-toggle="tooltip" data-placement="right" data-original-title="Indicates sequence mutations."></span></li><br><li id="header_deposited-released-dates"><strong>Deposited:&nbsp</strong>1996-09-30&nbsp<strong>Released:&nbsp</strong>1997-11-19&nbsp</li><li id="header_deposition-authors"><strong>Deposition Author(s):&nbsp</strong><a href="/search?q=audit_author.name:Kussie, P.H.">Kussie, P.H.</a>, <a href="/search?q=audit_author.name:Pavletich, N.P.">Pavletich, N.P.</a></li></ul><hr><div class="row"><div class="col-sm-5 col-xs-12" id="header_experimentalDataSnapshot"><p><strong>Experimental Data Snapshot</strong></p><ul class="list-unstyled" id="exp_header_0_snapshot"><li id="exp_header_0_method"><strong>Method:&nbsp</strong>X-RAY DIFFRACTION</li><li id="exp_header_0_diffraction_resolution"><strong>Resolution:&nbsp</strong>2.60 Å</li><li id="exp_header_0_diffraction_rvalueFree"><strong>R-Value Free:&nbsp</strong>0.276&nbsp</li><li id="exp_header_0_diffraction_rvalueWork"><strong>R-Value Work:&nbsp</strong>0.200&nbsp</li><li id="exp_header_0_diffraction_rvalueObserved"><strong>R-Value Observed:&nbsp</strong>0.200&nbsp     </li></ul></div><div class="col-sm-7 col-xs-12"><!-- Experimental Validation HTML / PDF--><!-- Experimental Validation HTML / PDF--><style>div.validation-slider { border: 1px solid #ddd; padding: 5px; }
div.validation-slider img { max-width: 100%; }
</style><p><strong>wwPDB Validation</strong>&nbsp <span class="glyphicon glyphicon-info-sign hidden-xs hidden-sm hidden-md" aria-hidden="true" data-toggle="tooltip" data-placement="right" data-original-title="For each metric, two values are noted, one for the percentile rank of the entry compared to the entire PDB archive and one compared with entries determined with the same experimental method. The blue side of the scale is considered &quot;better&quot; than those on the &quot;worse&quot; red side.">          </span><span class="pull-right"><a class="btn btn-default btn-xs" href="/3d-view/1YCR?preset=validationReport"><i class="fa fa-cube">&nbsp</i>3D Report</a>&nbsp<a class="btn btn-default btn-xs" target="_blank" rel="noopener" href="//files.rcsb.org/pub/pdb/validation_reports/yc/1ycr/1ycr_full_validation.pdf">Full Report</a></span></p><div class="validation-slider"><a target="_blank" rel="noopener" href="//files.rcsb.org/pub/pdb/validation_reports/yc/1ycr/1ycr_full_validation.pdf"><img src="//files.rcsb.org/pub/pdb/validation_reports/yc/1ycr/1ycr_multipercentile_validation.png" width="500"></a></div></div></div><br><div class="row"><div class="col-lg-12 col-md-12 col-sm-12 col-xs-12" id="currentVersionSection"><div class="well well-sm well-nomar">This is version 1.4 of the entry. See complete&nbsp<a href="/versions/1YCR">history</a>.&nbsp</div><br></div></div><br><div class="row"><div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"><div class="panel panel-default" id="literaturepanel"><div class="panel-heading"><div class="panel-title">Literature<div class="btn-group pull-right"><button class="btn btn-default btn-xs hidden-print dropdown-toggle" type="button" data-toggle="dropdown" aria-expanded="false">Download Primary Citation&nbsp<span class="caret"></span></button><ul class="dropdown-menu DropdownChangeGallery" role="menu"><li><a href="javascript:document.getElementsByTagName('body')[0].appendChild(document.createElement('script')).setAttribute('src','https://www.mendeley.com/minified/bookmarklet.js');"><img src="//cdn.rcsb.org/rcsb-pdb/explorer/SSPv2/images/MendeleyIcon.png" width="16">&nbspDownload Mendeley</a></li></ul></div></div></div><div class="panel-body"><div id="primarycitation"><h4>Structure of the MDM2 oncoprotein bound to the p53 tumor suppressor transactivation domain.</h4><a class="querySearchLink" href="/search?q=citation.rcsb_authors:Kussie, P.H.">Kussie, P.H.</a>,&nbsp<a class="querySearchLink" href="/search?q=citation.rcsb_authors:Gorina, S.">Gorina, S.</a>,&nbsp<a class="querySearchLink" href="/search?q=citation.rcsb_authors:Marechal, V.">Marechal, V.</a>,&nbsp<a class="querySearchLink" href="/search?q=citation.rcsb_authors:Elenbaas, B.">Elenbaas, B.</a>,&nbsp<a class="querySearchLink" href="/search?q=citation.rcsb_authors:Moreau, J.">Moreau, J.</a>,&nbsp<a class="querySearchLink" href="/search?q=citation.rcsb_authors:Levine, A.J.">Levine, A.J.</a>,&nbsp<a class="querySearchLink" href="/search?q=citation.rcsb_authors:Pavletich, N.P.">Pavletich, N.P.</a><br><!-- if journal_abbrev already published--><p>(1996) Science&nbsp<strong>274</strong>: 948-953</p><ul class="list-unstyled"><li id="pubmedLinks"><strong>PubMed</strong>:&nbsp<a class="querySearchLink" href="/search?q=rcsb_pubmed_container_identifiers.pubmed_id:8875929">8875929</a>&nbsp<span class="label label-external hidden-print"><a href="http://www.ncbi.nlm.nih.gov/pubmed/?term=8875929" target="_blank" rel="noopener">Search on PubMed</a></span></li><li id="pubmedDOI"><strong>DOI:&nbsp</strong><a href="http://dx.doi.org/10.1126/science.274.5289.948" target="_blank" rel="noopener">10.1126/science.274.5289.948</a></li><li id="citationPrimaryRelatedStructures" style="word-wrap:break-word;">Primary Citation of Related Structures: &nbsp<br><a href="/structure/1YCQ">1YCQ</a>, <a href="/structure/1YCR">1YCR</a></li><!--TODO: add "Secondary Citation of Related Structures" when data is available --><br><li id="pubmedAbstractText"><strong>PubMed Abstract:&nbsp</strong><br></li><div class="hidden-print" id="abstractPart"><p>The MDM2 oncoprotein is a cellular inhibitor of the p53 tumor suppressor in that it can bind the transactivation domain of p53 and downregulate its ability to activate transcription. In certain cancers, MDM2 amplification is a common event and contributes to the inactivation of p53 ...<span class="glyphicon glyphicon-plus-sign" id="FullAbstract_Show"></span></p></div><div class="hidden-print hide" id="abstractFull"><p>The MDM2 oncoprotein is a cellular inhibitor of the p53 tumor suppressor in that it can bind the transactivation domain of p53 and downregulate its ability to activate transcription. In certain cancers, MDM2 amplification is a common event and contributes to the inactivation of p53. The crystal structure of the 109-residue amino-terminal domain of MDM2 bound to a 15-residue transactivation domain peptide of p53 revealed that MDM2 has a deep hydrophobic cleft on which the p53 peptide binds as an amphipathic alpha helix. The interface relies on the steric complementarity between the MDM2 cleft and the hydrophobic face of the p53 alpha helix and, in particular, on a triad of p53 amino acids-Phe19, Trp23, and Leu26-which insert deep into the MDM2 cleft. These same p53 residues are also involved in transactivation, supporting the hypothesis that MDM2 inactivates p53 by concealing its transactivation domain. The structure also suggests that the amphipathic alpha helix may be a common structural motif in the binding of a diverse family of transactivation factors to the TATA-binding protein-associated factors.</p><hr><strong>Organizational Affiliation</strong>:&nbsp<p>Cellular Biochemistry and Biophysics Program, Memorial Sloan-Kettering Cancer Center, New York, NY 10021, USA. nikola@xray2.mskcc.org</p><br><button class="btn btn-default btn-xs hidden-print" id="FullAbstract_Hide"><span class="glyphicon glyphicon-minus-sign"></span> Hide Full Abstract</button></div></ul><!--journal_abbrev to be published--></div></div></div></div></div></div></div><br></div><div class="panel panel-default" id="macromoleculespanel"><div class="panel-heading"><div class="panel-title">Macromolecules</div></div><div class="panel-body"><div class="row"><div class="col-md-12 col-sm-12 col-xs-12"><div id="MacromoleculeTable"><div style="display: flow-root; margin-bottom: 5px;">Find similar proteins by:&nbsp;<div class="btn-group" role="group"><button class="btn-group btn btn-sm btn-default dropdown-toggle" id="dropdownCutOff" type="button" data-toggle="dropdown" aria-expanded="false" role="group" style="color: #337ab7; text-decoration: none;">Sequence&nbsp;<span class="caret"></span></button><ul class="dropdown-menu" role="menu" aria-labelledby="dropdownCutOff"><li><a href="/search?query=%7B%22type%22%3A%22terminal%22%2C%22service%22%3A%22sequence%22%2C%22parameters%22%3A%7B%22target%22%3A%22pdb_protein_sequence%22%2C%22value%22%3A%22SQIPASEQETLVRPKPLLLKLLKSVGAQKDTYTMKEVLFYLGQYIMTKRLYDEKQQHIVYCSNDLLGDLFGVPSFSVKEHRKIYTMIYRNLVVVNQQESSDSGTSVSEN%22%2C%22identity_cutoff%22%3A1%7D%7D&amp;return_type=polymer_entity">100%</a></li><li><a href="/search?query=%7B%22type%22%3A%22terminal%22%2C%22service%22%3A%22sequence%22%2C%22parameters%22%3A%7B%22target%22%3A%22pdb_protein_sequence%22%2C%22value%22%3A%22SQIPASEQETLVRPKPLLLKLLKSVGAQKDTYTMKEVLFYLGQYIMTKRLYDEKQQHIVYCSNDLLGDLFGVPSFSVKEHRKIYTMIYRNLVVVNQQESSDSGTSVSEN%22%2C%22identity_cutoff%22%3A0.95%7D%7D&amp;return_type=polymer_entity">95%</a></li><li><a href="/search?query=%7B%22type%22%3A%22terminal%22%2C%22service%22%3A%22sequence%22%2C%22parameters%22%3A%7B%22target%22%3A%22pdb_protein_sequence%22%2C%22value%22%3A%22SQIPASEQETLVRPKPLLLKLLKSVGAQKDTYTMKEVLFYLGQYIMTKRLYDEKQQHIVYCSNDLLGDLFGVPSFSVKEHRKIYTMIYRNLVVVNQQESSDSGTSVSEN%22%2C%22identity_cutoff%22%3A0.9%7D%7D&amp;return_type=polymer_entity">90%</a></li><li><a href="/search?query=%7B%22type%22%3A%22terminal%22%2C%22service%22%3A%22sequence%22%2C%22parameters%22%3A%7B%22target%22%3A%22pdb_protein_sequence%22%2C%22value%22%3A%22SQIPASEQETLVRPKPLLLKLLKSVGAQKDTYTMKEVLFYLGQYIMTKRLYDEKQQHIVYCSNDLLGDLFGVPSFSVKEHRKIYTMIYRNLVVVNQQESSDSGTSVSEN%22%2C%22identity_cutoff%22%3A0.8%7D%7D&amp;return_type=polymer_entity">80%</a></li><li><a href="/search?query=%7B%22type%22%3A%22terminal%22%2C%22service%22%3A%22sequence%22%2C%22parameters%22%3A%7B%22target%22%3A%22pdb_protein_sequence%22%2C%22value%22%3A%22SQIPASEQETLVRPKPLLLKLLKSVGAQKDTYTMKEVLFYLGQYIMTKRLYDEKQQHIVYCSNDLLGDLFGVPSFSVKEHRKIYTMIYRNLVVVNQQESSDSGTSVSEN%22%2C%22identity_cutoff%22%3A0.7%7D%7D&amp;return_type=polymer_entity">70%</a></li><li><a href="/search?query=%7B%22type%22%3A%22terminal%22%2C%22service%22%3A%22sequence%22%2C%22parameters%22%3A%7B%22target%22%3A%22pdb_protein_sequence%22%2C%22value%22%3A%22SQIPASEQETLVRPKPLLLKLLKSVGAQKDTYTMKEVLFYLGQYIMTKRLYDEKQQHIVYCSNDLLGDLFGVPSFSVKEHRKIYTMIYRNLVVVNQQESSDSGTSVSEN%22%2C%22identity_cutoff%22%3A0.6%7D%7D&amp;return_type=polymer_entity">60%</a></li><li><a href="/search?query=%7B%22type%22%3A%22terminal%22%2C%22service%22%3A%22sequence%22%2C%22parameters%22%3A%7B%22target%22%3A%22pdb_protein_sequence%22%2C%22value%22%3A%22SQIPASEQETLVRPKPLLLKLLKSVGAQKDTYTMKEVLFYLGQYIMTKRLYDEKQQHIVYCSNDLLGDLFGVPSFSVKEHRKIYTMIYRNLVVVNQQESSDSGTSVSEN%22%2C%22identity_cutoff%22%3A0.5%7D%7D&amp;return_type=polymer_entity">50%</a></li><li><a href="/search?query=%7B%22type%22%3A%22terminal%22%2C%22service%22%3A%22sequence%22%2C%22parameters%22%3A%7B%22target%22%3A%22pdb_protein_sequence%22%2C%22value%22%3A%22SQIPASEQETLVRPKPLLLKLLKSVGAQKDTYTMKEVLFYLGQYIMTKRLYDEKQQHIVYCSNDLLGDLFGVPSFSVKEHRKIYTMIYRNLVVVNQQESSDSGTSVSEN%22%2C%22identity_cutoff%22%3A0.4%7D%7D&amp;return_type=polymer_entity">40%</a></li><li><a href="/search?query=%7B%22type%22%3A%22terminal%22%2C%22service%22%3A%22sequence%22%2C%22parameters%22%3A%7B%22target%22%3A%22pdb_protein_sequence%22%2C%22value%22%3A%22SQIPASEQETLVRPKPLLLKLLKSVGAQKDTYTMKEVLFYLGQYIMTKRLYDEKQQHIVYCSNDLLGDLFGVPSFSVKEHRKIYTMIYRNLVVVNQQESSDSGTSVSEN%22%2C%22identity_cutoff%22%3A0.3%7D%7D&amp;return_type=polymer_entity">30%</a></li></ul></div> (by identity cutoff)&nbsp; | &nbsp;<a href="/search?query=%7B%22type%22%3A%22terminal%22%2C%22service%22%3A%22structure%22%2C%22parameters%22%3A%7B%22value%22%3A%7B%22entry_id%22%3A%221YCR%22%2C%22asym_id%22%3A%22A%22%7D%7D%7D&amp;return_type=polymer_entity">3D Structure</a></div><div class="table-responsive"><a class="entity-anchor" name="entity-1"></a><table class="table table-bordered table-condensed tableEntity" id="table_macromolecule-protein-entityId-1"><tbody><tr class="info" style="color: #315880"><th colspan="6" style="padding-bottom: 0px; padding-top: 0px"><h5 style="font-weight: bold; font-size: 15px">Entity ID: 1</h5></th></tr><tr><th class="col-sm-2 col-lg-2 pad-by-five">Molecule</th><th class="col-sm-2 col-lg-2 pad-by-five">Chains<span class="glyphicon glyphicon-info-sign hidden-xs hidden-sm hidden-md" aria-hidden="true" data-toggle="tooltip" data-placement="top" data-original-title="If the two PDB chain IDs (label_asym_id; assigned by the PDB) and auth_asym_id (selected by the author) do not coincide, the chain ID is displayed as “label_asym_id [auth auth_asym_id]”"></span></th><th class="col-sm-2 col-lg-2 pad-by-five">Sequence Length</th><th class="col-sm-2 col-lg-2 pad-by-five">Organism</th><th class="col-sm-2 col-lg-2 pad-by-five">Details</th><th class="col-sm-2 col-lg-2 pad-by-five">Image</th></tr><tr id="macromolecule-entityId-1-rowDescription"><td>MDM2</td><td style="width:200px;"><a href="/sequence/1YCR#A">A</a></td><td>109</td><td><!-- Check if there is any data inside organism array--><a class="querySearchLink" href="/search?q=rcsb_entity_source_organism.taxonomy_lineage.name:Homo sapiens">Homo sapiens</a></td><td style="word-break: break-all;"><strong>Mutation(s)</strong>: 0&nbsp<span class="glyphicon glyphicon-info-sign hidden-xs hidden-sm hidden-md" aria-hidden="true" data-toggle="tooltip" data-placement="top" data-original-title="The number of mutations in this polymer sequence that are engineered from the reference sequence."></span><br><strong>Gene Names:&nbsp</strong><a class="querySearchLink" href="/search?q=rcsb_entity_source_organism.rcsb_gene_name.value:MDM2">MDM2</a><br><strong>EC:&nbsp</strong><a class="querySearchLink" href="/search?q=rcsb_polymer_entity.rcsb_ec_lineage.id:2.3.2.27">2.3.2.27</a><br></td><td style="text-align: center; vertical-align: middle"><a data-toggle="lightbox" data-title="1YCR_1: Represented by Chain A" href="https://cdn.rcsb.org/images/structures/1ycr_chain-A.jpeg"><img src="https://cdn.rcsb.org/images/structures/1ycr_chain-A.jpeg" style="width:100px;"></a></td></tr><tr><td colspan="6" style="padding-bottom: 0px; padding-top: 0px; background-color: #f5f5f5;"><h5 style="font-weight: bold; font-size: 15px">UniProt & NIH Common Fund Data Resources</h5></td></tr><tr><td colspan="6"><div class="col-lg-6 col-md-6 text-left" style="padding-left: 0">Find proteins for&nbsp<a class="querySearchLink" href="/search?q=rcsb_polymer_entity_container_identifiers.reference_sequence_identifiers.database_accession:Q00987 AND rcsb_polymer_entity_container_identifiers.reference_sequence_identifiers.database_name:UniProt">Q00987</a>&nbsp<i>(Homo sapiens)</i></div><div class="col-lg-3 col-md-3">Explore&nbsp<span class="label label-rcsb"><a href="/groups/sequence/polymer_entity/Q00987">Q00987</a></span>&nbsp<span class="glyphicon glyphicon-info-sign hidden-xs hidden-sm hidden-md" aria-hidden="true" data-toggle="tooltip" data-placement="top" data-original-title="Explore entries with the same UniProt reference sequence."></span></div><div class="col-lg-3 col-md-3 text-right" style="padding-right: 0">Go to UniProtKB: &nbsp<span class="label label-external"><a href="https://www.uniprot.org/uniprot/Q00987" target="_blank" rel="noopener">Q00987</a></span></div></td></tr><tr><td colspan="6"><div class="col-lg-4 col-md-4 text-left" style="padding-left: 0" title="Diseases, drugs and related data"><span>PHAROS: &nbsp<span class="label label-external"><a href="https://pharos.nih.gov/targets/Q00987" target="_blank" rel="noopener" onClick="sendGtag(&quot;SSP&quot;, &quot;NIH&quot;, &quot;PHAROS&quot;)">Q00987</a></span><break></break></span></div><div class="col-lg-4 col-md-4"></div><div class="col-lg-4 col-md-4 text-right" style="padding-right: 0"></div></td></tr><tr><td colspan="6" style="padding-bottom: 0px; padding-top: 0px; background-color: #f5f5f5;"><h5 style="font-weight: bold; font-size: 15px">Entity Groups
&nbsp<span class="glyphicon glyphicon-info-sign hidden-xs hidden-sm hidden-md" aria-hidden="true" data-toggle="tooltip" data-placement="top" data-original-title="This entity has been grouped together with similar entities from other structures. Use the links below to navigate to the corresponding group pages and explore the characteristics of similar entities." style="vertical-align: bottom;"></span></h5></td></tr><tr><td class="col-lg-2 col-md-2">Sequence Clusters</td><td class="col-lg-10 col-md-10 group-membership" colspan="5"><span class="label label-rcsb"><a href="/groups/summary/polymer_entity/4053_30">30% Identity<span class="fa fa-clone"></span></a></span><span class="label label-rcsb"><a href="/groups/summary/polymer_entity/3720_50">50% Identity<span class="fa fa-clone"></span></a></span><span class="label label-rcsb"><a href="/groups/summary/polymer_entity/3657_70">70% Identity<span class="fa fa-clone"></span></a></span><span class="label label-rcsb"><a href="/groups/summary/polymer_entity/2283_90">90% Identity<span class="fa fa-clone"></span></a></span><span class="label label-rcsb"><a href="/groups/summary/polymer_entity/1497_95">95% Identity<span class="fa fa-clone"></span></a></span><span class="label label-rcsb"><a href="/groups/summary/polymer_entity/2414_100">100% Identity<span class="fa fa-clone"></span></a></span></td></tr><tr><td class="col-lg-2 col-md-2">UniProt Group</td><td class="col-lg-10 col-md-10 group-membership" colspan="5"><span class="label label-rcsb"><a href="/groups/summary/polymer_entity/Q00987">Q00987<span class="fa fa-clone"></span></a></span></td></tr><tr><td colspan="6" style="padding-bottom: 0px; padding-top: 0px; background-color: #f5f5f5;"><h5 style="font-weight: bold; font-size: 15px; display:inline-block;float:left">Protein Feature View</h5><h5 style="font-weight: bold; font-size: 15px; display:inline-block;float:right;"><a href="/sequence/1YCR#A">Expand</a></h5></td></tr><tr style="border-bottom: 5px solid #ddd" id="RcsbFv"><td class="ProteinFeatureView" colspan="6"><div id="entity" style="margin-top:20px"><div class="col-xs-12 col-sm-12 col-md-4 col-lg-4 form-group" style="margin-bottom: 0; padding-left: 0"><ul class="list-group" style="margin-bottom:0;display:inline-block;width:50%;"><li class="list-group-item" style="border-color:#fff;"><strong>Reference Sequence</strong></li></ul><div id="rcsbWebAppSelect_1" style="display:inline-block;"></div><div class="material-switch pull-right"></div></div></div><div class="clearfix"></div><div id="rcsbWebApp_1" style="margin-bottom: 50px;"></div><script>var headers = {
    "Rcsb-Analytics-Traffic-Origin": "internal",
    "Rcsb-Analytics-Traffic-Stage": "saguaro"
};

RcsbFvWebApp.RcsbRequestContextManager.initializeBorregoClient({
    requestConfig: {
        headers
    }
});

RcsbFvWebApp.RcsbRequestContextManager.initializeYosemiteClient({
    requestConfig: {
        headers
    }
});

RcsbFvWebApp.RcsbRequestContextManager.initializeArchesClient({
    requestConfig: {
        headers
    }
});</script><script>setTimeout(function(){
    RcsbFvWebApp.buildEntitySummaryFv(
        "rcsbWebApp_1",
        "rcsbWebAppSelect_1",
        "1YCR_1"
    );
},100)
</script></td></tr></tbody></table></div><p class="text-muted">Find similar proteins by:&nbsp; Sequence &nbsp; | &nbsp; 3D Structure &nbsp;<span class="fa fa-info-circle" aria-hidden="true" data-toggle="tooltip" data-placement="top" title="Sequence and structure search is not available for sequences with length less than or equal to 25"></span></p><div class="table-responsive"><a class="entity-anchor" name="entity-2"></a><table class="table table-bordered table-condensed tableEntity" id="table_macromolecule-protein-entityId-2"><tbody><tr class="info" style="color: #315880"><th colspan="6" style="padding-bottom: 0px; padding-top: 0px"><h5 style="font-weight: bold; font-size: 15px">Entity ID: 2</h5></th></tr><tr><th class="col-sm-2 col-lg-2 pad-by-five">Molecule</th><th class="col-sm-2 col-lg-2 pad-by-five">Chains<span class="glyphicon glyphicon-info-sign hidden-xs hidden-sm hidden-md" aria-hidden="true" data-toggle="tooltip" data-placement="top" data-original-title="If the two PDB chain IDs (label_asym_id; assigned by the PDB) and auth_asym_id (selected by the author) do not coincide, the chain ID is displayed as “label_asym_id [auth auth_asym_id]”"></span></th><th class="col-sm-2 col-lg-2 pad-by-five">Sequence Length</th><th class="col-sm-2 col-lg-2 pad-by-five">Organism</th><th class="col-sm-2 col-lg-2 pad-by-five">Details</th><th class="col-sm-2 col-lg-2 pad-by-five">Image</th></tr><tr id="macromolecule-entityId-2-rowDescription"><td>P53</td><td style="width:200px;"><a href="/sequence/1YCR#B">B</a></td><td>15</td><td><!-- Check if there is any data inside organism array--><small class="text-muted"><i>N/A</i></small></td><td style="word-break: break-all;"><strong>Mutation(s)</strong>: 0&nbsp<span class="glyphicon glyphicon-info-sign hidden-xs hidden-sm hidden-md" aria-hidden="true" data-toggle="tooltip" data-placement="top" data-original-title="The number of mutations in this polymer sequence that are engineered from the reference sequence."></span><br></td><td style="text-align: center; vertical-align: middle"><a data-toggle="lightbox" data-title="1YCR_2: Represented by Chain B" href="https://cdn.rcsb.org/images/structures/1ycr_chain-B.jpeg"><img src="https://cdn.rcsb.org/images/structures/1ycr_chain-B.jpeg" style="width:100px;"></a></td></tr><tr><td colspan="6" style="padding-bottom: 0px; padding-top: 0px; background-color: #f5f5f5;"><h5 style="font-weight: bold; font-size: 15px">UniProt & NIH Common Fund Data Resources</h5></td></tr><tr><td colspan="6"><div class="col-lg-6 col-md-6 text-left" style="padding-left: 0">Find proteins for&nbsp<a class="querySearchLink" href="/search?q=rcsb_polymer_entity_container_identifiers.reference_sequence_identifiers.database_accession:P04637 AND rcsb_polymer_entity_container_identifiers.reference_sequence_identifiers.database_name:UniProt">P04637</a>&nbsp<i>(Homo sapiens)</i></div><div class="col-lg-3 col-md-3">Explore&nbsp<span class="label label-rcsb"><a href="/groups/sequence/polymer_entity/P04637">P04637</a></span>&nbsp<span class="glyphicon glyphicon-info-sign hidden-xs hidden-sm hidden-md" aria-hidden="true" data-toggle="tooltip" data-placement="top" data-original-title="Explore entries with the same UniProt reference sequence."></span></div><div class="col-lg-3 col-md-3 text-right" style="padding-right: 0">Go to UniProtKB: &nbsp<span class="label label-external"><a href="https://www.uniprot.org/uniprot/P04637" target="_blank" rel="noopener">P04637</a></span></div></td></tr><tr><td colspan="6"><div class="col-lg-4 col-md-4 text-left" style="padding-left: 0" title="Diseases, drugs and related data"><span>PHAROS: &nbsp<span class="label label-external"><a href="https://pharos.nih.gov/targets/P04637" target="_blank" rel="noopener" onClick="sendGtag(&quot;SSP&quot;, &quot;NIH&quot;, &quot;PHAROS&quot;)">P04637</a></span><break></break></span></div><div class="col-lg-4 col-md-4"></div><div class="col-lg-4 col-md-4 text-right" style="padding-right: 0"></div></td></tr><tr><td colspan="6" style="padding-bottom: 0px; padding-top: 0px; background-color: #f5f5f5;"><h5 style="font-weight: bold; font-size: 15px">Entity Groups
&nbsp<span class="glyphicon glyphicon-info-sign hidden-xs hidden-sm hidden-md" aria-hidden="true" data-toggle="tooltip" data-placement="top" data-original-title="This entity has been grouped together with similar entities from other structures. Use the links below to navigate to the corresponding group pages and explore the characteristics of similar entities." style="vertical-align: bottom;"></span></h5></td></tr><tr><td class="col-lg-2 col-md-2">Sequence Clusters</td><td class="col-lg-10 col-md-10 group-membership" colspan="5"><span class="label label-rcsb"><a href="/groups/summary/polymer_entity/21016_30">30% Identity<span class="fa fa-clone"></span></a></span><span class="label label-rcsb"><a href="/groups/summary/polymer_entity/26201_50">50% Identity<span class="fa fa-clone"></span></a></span><span class="label label-rcsb"><a href="/groups/summary/polymer_entity/25455_70">70% Identity<span class="fa fa-clone"></span></a></span><span class="label label-rcsb"><a href="/groups/summary/polymer_entity/18467_90">90% Identity<span class="fa fa-clone"></span></a></span><span class="label label-rcsb"><a href="/groups/summary/polymer_entity/17095_95">95% Identity<span class="fa fa-clone"></span></a></span><span class="label label-rcsb"><a href="/groups/summary/polymer_entity/11286_100">100% Identity<span class="fa fa-clone"></span></a></span></td></tr><tr><td class="col-lg-2 col-md-2">UniProt Group</td><td class="col-lg-10 col-md-10 group-membership" colspan="5"><span class="label label-rcsb"><a href="/groups/summary/polymer_entity/P04637">P04637<span class="fa fa-clone"></span></a></span></td></tr><tr><td colspan="6" style="padding-bottom: 0px; padding-top: 0px; background-color: #f5f5f5;"><h5 style="font-weight: bold; font-size: 15px; display:inline-block;float:left">Protein Feature View</h5><h5 style="font-weight: bold; font-size: 15px; display:inline-block;float:right;"><a href="/sequence/1YCR#B">Expand</a></h5></td></tr><tr style="border-bottom: 5px solid #ddd" id="RcsbFv"><td class="ProteinFeatureView" colspan="6"><div id="entity" style="margin-top:20px"><div class="col-xs-12 col-sm-12 col-md-4 col-lg-4 form-group" style="margin-bottom: 0; padding-left: 0"><ul class="list-group" style="margin-bottom:0;display:inline-block;width:50%;"><li class="list-group-item" style="border-color:#fff;"><strong>Reference Sequence</strong></li></ul><div id="rcsbWebAppSelect_2" style="display:inline-block;"></div><div class="material-switch pull-right"></div></div></div><div class="clearfix"></div><div id="rcsbWebApp_2" style="margin-bottom: 50px;"></div><script>var headers = {
    "Rcsb-Analytics-Traffic-Origin": "internal",
    "Rcsb-Analytics-Traffic-Stage": "saguaro"
};

RcsbFvWebApp.RcsbRequestContextManager.initializeBorregoClient({
    requestConfig: {
        headers
    }
});

RcsbFvWebApp.RcsbRequestContextManager.initializeYosemiteClient({
    requestConfig: {
        headers
    }
});

RcsbFvWebApp.RcsbRequestContextManager.initializeArchesClient({
    requestConfig: {
        headers
    }
});</script><script>setTimeout(function(){
    RcsbFvWebApp.buildEntitySummaryFv(
        "rcsbWebApp_2",
        "rcsbWebAppSelect_2",
        "1YCR_2"
    );
},100)
</script></td></tr></tbody></table></div></div></div></div></div></div><div class="panel panel-default" id="experimentaldata-validation"><div class="panel-heading"><div class="panel-title">Experimental Data & Validation</div></div><div class="panel-body"><div class="row"><div class="col-md-6 col-sm-12 col-xs-12"><h4>Experimental Data</h4><div class="row"><ul class="list-unstyled col-sm-12 col-lg-12 col-md-12" id="experimentaldatabottom"><li id="exp_header_0_method"><strong>Method:&nbsp</strong>X-RAY DIFFRACTION</li><li id="exp_header_0_diffraction_resolution"><strong>Resolution:&nbsp</strong>2.60 Å</li><li id="exp_header_0_diffraction_rvalueFree"><strong>R-Value Free:&nbsp</strong>0.276&nbsp</li><li id="exp_header_0_diffraction_rvalueWork"><strong>R-Value Work:&nbsp</strong>0.200&nbsp</li><li id="exp_header_0_diffraction_rvalueObserved"><strong>R-Value Observed:&nbsp</strong>0.200&nbsp</li><li id="exp_undefined_xray_spaceGroup"><strong>Space Group:&nbsp<a class="querySearchLink" href="/search?q=symmetry.space_group_name_H_M:C 2 2 21">C 2 2 2<sub>1</sub></a></strong></li></ul><div class="col-lg-12 col-md-12 col-sm-12"><strong>Unit Cell</strong>:<table class="table table-bordered table-condensed" id="unitCellTable"><thead><tr class="active"><th>Length ( Å )</th><th>Angle ( ˚ )</th></tr></thead><tbody><tr><td>a = 43.414</td><td>α = 90</td></tr><tr><td>b = 100.546</td><td>β = 90</td></tr><tr><td>c = 54.853</td><td>γ = 90</td></tr></tbody></table></div></div><strong>Software Package:</strong><table class="table table-bordered table-condensed" id="softwarePackages"><thead><tr class="active"><th>Software Name</th><th>Purpose</th></tr></thead><tbody><tr><td>X-PLOR</td><td>refinement</td></tr><tr><td>TNT</td><td>refinement</td></tr><tr><td>X-PLOR</td><td>model building</td></tr><tr><td>HKL</td><td>data reduction</td></tr><tr><td>X-PLOR</td><td>phasing</td></tr></tbody></table></div><div class="col-md-6 col-sm-12 col-xs-12"><!-- Experimental Validation HTML / PDF--><h4>Structure Validation</h4><!-- NOTE: check pdx/idf/ftp.json file--><p id="validationSection">View&nbsp<a target="_blank" rel="noopener" href="//files.rcsb.org/pub/pdb/validation_reports/yc/1ycr/1ycr_full_validation.pdf">Full Validation Report</a></p><a target="_blank" rel="noopener" href="//files.rcsb.org/pub/pdb/validation_reports/yc/1ycr/1ycr_full_validation.pdf"><img class="img-thumbnail" src="//files.rcsb.org/pub/pdb/validation_reports/yc/1ycr/1ycr_multipercentile_validation.png" width="500"></a><br></div></div><br><div class="row"><div class="col-md-6 col-sm-12 col-xs-12"><a class="btn btn-sm btn-default hidden-print" href="/experimental/1YCR">View more in-depth experimental data</a></div></div></div></div><div class="panel panel-default" id="entry-history"><div class="panel-heading"><div class="panel-title">Entry History&nbsp</div></div><div class="panel-body"><div class="row"><div class="col-md-6 col-sm-6 col-xs-12 col-xs-12"><h4>Deposition Data</h4><ul class="list-unstyled" id="DepositionDataList"><li><strong>Released Date:&nbsp</strong>1997-11-19&nbsp</li><strong>Deposition Author(s):&nbsp</strong><a href="/search?q=audit_author.name:Kussie, P.H.">Kussie, P.H.</a>, <a href="/search?q=audit_author.name:Pavletich, N.P.">Pavletich, N.P.</a></ul></div><div class="col-md-6 col-sm-6 col-xs-12 col-xs-12"><h4>Revision History &nbsp;<small><a href="/versions/1YCR">(Full details and data files)</a></small></h4><ul id="revisionHistorySection"><li><strong>Version 1.0: 1997-11-19</strong><br>Type: Initial release<br></li><li><strong>Version 1.1: 2008-03-24</strong><br>Changes: Version format compliance </li><li><strong>Version 1.2: 2011-07-13</strong><br>Changes: Version format compliance </li><li><strong>Version 1.3: 2019-07-17</strong><br>Changes: Data collection, Other, Refinement description </li><li><strong>Version 1.4: 2019-08-14</strong><br>Changes: Data collection </li></ul></div></div></div></div></div><div class="clearfix"></div><script>$("#structuresummarytab").addClass("active");</script><script src="/js/bootstrap-slider.min.js"></script><script src="/js/jquery.svg.js"></script><script src="/js/structure/helper.js"></script><script src="/js/structure/image_carousel_helper.js"></script><script src="/js/structure/poseview.js"></script></div><div data-elastic-exclude><div class="hidden-print" id="footer_main"><div class="container"><div class="row" style="padding-left:0; margin-left:0"><div class="col-md-6 col-sm-12"><div class="row"> <div class="col-sm-4" style="padding-left:0"><ul><li><span class="row_header">About</span></li><li><a href="/pages/about-us/index">About Us</a></li><li><a href="/pages/policies#References">Citing Us</a></li><li><a href="/pages/publications">Publications</a></li><li><a href="/pages/team">Team</a></li><li><a href="/pages/jobs">Careers</a></li><li><a href="/pages/policies">Usage & Privacy</a></li></ul></div><div class="col-sm-4" style="padding-left:0"><ul><li><span class="row_header">Help</span></li><li><a href="/pages/contactus">Contact Us</a></li><li><a href="/docs/general-help/organization-of-3d-structures-in-the-protein-data-bank">Documentation</a></li><li><a href="/docs/general-help/website-faq">Website FAQ</a></li><li><a href="/docs/general-help/glossary">Glossary</a></li><li><a href="https://status.rcsb.org/" target="_blank">Service Status</a></li></ul></div><div class="col-md-4 hidden-sm"></div></div></div><div class="col-md-6 col-sm-12"><div class="row"> <div class="col-sm-4"><p class="row_header">RCSB PDB (<a href="pages/policies#References">citation</a>) is hosted by</p><div class="footerLogos"><hr><a href="http://www.rutgers.edu/">  <img class="Rutgerslogo" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-src="https://cdn.rcsb.org/rcsb-pdb//v2/common/images/Logo_Rutgers.png" alt="Rutgers University logo"></a><hr><a href="https://ucsd.edu/">    <img class="UCSDlogo" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-src="https://cdn.rcsb.org/rcsb-pdb//v2/common/images/Logo_UCSD-navy.png" alt="Uiversity of California San Diego logo"></a><a href="https://www.sdsc.edu/">    <img class="SDSClogo" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-src="https://cdn.rcsb.org/rcsb-pdb//v2/common/images/Logo_SDSC-black.png" alt="San Diego Supercomputer Center logo"></a><hr><a href="https://www.ucsf.edu/">    <img class="UCSFlogo" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-src="https://cdn.rcsb.org/rcsb-pdb//v2/common/images/Logo_UCSF.png" alt="University of California San Francisco Logo"></a></div></div><div class="col-sm-4"><p class="row_header">RCSB PDB is a member of the</p><div class="footerLogos"><span id="pdbmembers_footer"><hr><a href="https://www.wwpdb.org" target="_blank" rel="noopener"><img class="wwpdblogo" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-src="https://cdn.rcsb.org/rcsb-pdb//v2/common/images/Logo_wwpdb.png" alt="wwPDB"></a><hr><a href="https://www.emdataresource.org" target="_blank" rel="noopener"><img id="emdatabanklogo_footer" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-src="https://cdn.rcsb.org/rcsb-pdb//v2/common/images/EMDataResourcelogo.png" alt="EMDataResource"></a></span></div></div><div class="col-sm-4"><ul><li><span class="row_header">RCSB Partners</span></li><li><a href="http://ndbserver.rutgers.edu/" target="_blank" rel="noopener">Nucleic Acid Database</a></li></ul><ul><li><span class="row_header"><a href="https://www.wwpdb.org/" target="_blank" rel="noopener" style="text-decoration: none; color: black">wwPDB Partners</a></span></li><li><a href="/">RCSB PDB</a></li><li><a href="https://www.ebi.ac.uk/pdbe/" target="_blank" rel="noopener">PDBe</a></li><li><a href="https://www.pdbj.org/" target="_blank" rel="noopener">PDBj</a></li><li><a href="https://bmrb.io/" target="_blank" rel="noopener">BMRB</a></li><li><a href="https://emdb-empiar.org/" target="_blank" rel="noopener">EMDB</a></li></ul></div></div></div></div></div></div><div id="footer_grant"><div class="container"><div class="row"><p>RCSB PDB Core Operations are funded by
 the <a href="http://www.nsf.gov/" target="_blank" rel="noopener">National Science Foundation</a> (DBI-1832184),
 the <a href="http://science.energy.gov/" target="_blank" rel="noopener">US Department of Energy</a> (DE-SC0019749),
 and the <a href="http://www.cancer.gov/" target="_blank" rel="noopener">National Cancer Institute</a>,
 <a href="http://www.niaid.nih.gov/" target="_blank" rel="noopener">National Institute of Allergy and Infectious Diseases</a>,
 and <a href="http://www.nigms.nih.gov/" target="_blank" rel="noopener">National Institute of General Medical Sciences</a> of the <a href="http://www.nih.gov/" target="_blank" rel="noopener">National Institutes of Health</a> under grant R01GM133198.</p></div></div></div><div id="jira-fdbck"></div></div></div></body></html>

Encoding Data

URLs are only allowed to have alphanumeric characters (and a handful of punctuation marks). This means data needs to be encoded when passing it as a value. requests will do this for you if you pass values as a dictionary.

'http://www.google.com/search?q=What%27s+the+meaning+of+life%3F'

Faking It

...or a python script

['python-requests 2', 'python-requests 2']
['Chrome 61', 'Chrome 61']

Use mechanize if a site is giving you trouble

Getting Data From the Web

If it's on the web, you can get it into python.

  • screen scraping - getting data from your computer screen; often to the extreme of using screen shots and OCR
  • web scraping - downloading HTML content and parsing out what you need

Web Scraping

The advantage of web scraping is that it always works - if you can see the data in your browser, you can see it in python.

Disadvantages:

  • HTMLParser isn't very sophisticated and requires you to manage context

    • see pyquery for a more powerful HTML parsing package inspired by JQuery
    • BeautifulSoup is another popular library for extracting information from HTML
  • Scraping is slow and inefficient

    • may need to make several requests to get your data (think pagination)
    • downloads a lot more than just your data (html)
    • your code may be easily broken by changes in the website design

Only parse raw HTML if there is no better option

ReSTful Web Services

REpresentational State Transfer

  • Client–server
  • Stateless
  • Cacheable
  • Layered system
  • Uniform interface

    • basically, resources are identified by their url
    • ReST does not specify the format of the resources, but they are often provided in XML

XML

Extensible Markup Language. A very general way to express structured data; a generalization of HTML.

  • Tag Key building block of XML - starts and ends with < >

    • <div> start tag
    • </div> end tag
    • <br /> empty element tag (not matching end)
  • Element A component of the document; everything between a start and end tag. May contain child elements.

  • Attribute A name-value pair within a start or empty element tag

      <div width=90>

XML Example

Let's consider accessing NCBI's Entrez service to get data from the Gene Expression Omnibus (note we could use BioPython and avoid doing this directly).

Let's look for data from humans with between 100 and 500 samples:

  • (human[Organism]) AND 100:500[Number of Samples]

We construct a URL to represent this query.

http://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=gds&term=human[Organism]+AND+100:500[Number+of+Samples]

db=gds - GEO datasets

  • GEO DataSets is a study-level database which users can search for studies relevant to their interests. The database stores descriptions of all original submitter-supplied records, as well as curated DataSets.
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE eSearchResult PUBLIC "-//NLM//DTD esearch 20060628//EN" "https://eutils.ncbi.nlm.nih.gov/eutils/dtd/20060628/esearch.dtd">
<eSearchResult><Count>6016</Count><RetMax>20</RetMax><RetStart>0</RetStart><IdList>
<Id>200215868</Id>
<Id>200150736</Id>
<I

xml.etree.ElementTree

eSearchResult {}
Count
RetMax
RetStart
IdList
TranslationSet
TranslationStack
QueryTranslation
<Element 'IdList' at 0x000001FCE03001D0>
['200215868', '200150736', '200215421', '200214846', '200188309', '200078160', '200215127', '200215126', '200201359', '200214940', '200212666', '200183279', '200197265', '200212217', '200197388', '200197386', '200181554', '200182409', '200147123', '200214137']
[]
['200215868', '200150736', '200215421', '200214846', '200188309', '200078160', '200215127', '200215126', '200201359', '200214940', '200212666', '200183279', '200197265', '200212217', '200197388', '200197386', '200181554', '200182409', '200147123', '200214137']

XML Parsing Alternative: Regular Expressions

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE eSearchResult PUBLIC "-//NLM//DTD esearch 20060628//EN" "https://eutils.ncbi.nlm.nih.gov/eutils/dtd/20060628/esearch.dtd">
<eSearchResult><Count>6016</Count><RetMax>20</RetMax><RetStart>0</RetStart><IdList>
<Id>200215868</Id>
<Id>200150736</Id>
<I
<re.Match object; span=(257, 275), match='<Id>200215868</Id>'>
['200215868', '200150736', '200215421', '200214846', '200188309', '200078160', '200215127', '200215126', '200201359', '200214940', '200212666', '200183279', '200197265', '200212217', '200197388', '200197386', '200181554', '200182409', '200147123', '200214137']

JSON: JavaScript Object Notation

A lightweight data-interchange format.

Essentially, represent data as JavaScript, which is very similar to python dictionaries/lists.

'{"a": 1, "b": [1.2, 1.3, 1.4]}'

PDB Restful

https://data.rcsb.org/redoc/index.html

Access PDB data through endpoints (URLs). The path of the endpoints starts with https://data.rcsb.org/rest/v1/core, followed by the type of the resource, e.g. entry, polymer_entity, and the identifier.

{"audit_author":[{"name":"Fermi, G.","pdbx_ordinal":1},{"name":"Perutz, M.F.","pdbx_ordinal":2}],"cell":{"angle_alpha":90.0,"angle_beta":99.34,"angle_gamma":90.0,"length_a":63.15,"length_b":83.59,"length_c":53.8,"zpdb":4},"citation":[{"country":"UK","id":"primary","journal_abbrev":"J.Mol.Biol.","journal_id_astm":"JMOBAK","journal_id_csd":"0070","journal_id_issn":"0022-2836","journal_volume":"175","page_first":"159","page_last":"174","pdbx_database_id_doi":"10.1016/0022-2836(84)90472-8","pdbx_database_id_pub_med":6726807,"rcsb_authors":["Fermi, G.","Perutz, M.F.","Shaanan, B.","Fourme, R."],"rcsb_is_primary":"Y","rcsb_journal_abbrev":"J Mol Biol","title":"The crystal structure of human deoxyhaemoglobin at 1.74 A resolution","year":1984},{"country":"UK","id":"1","journal_abbrev":"Nature","journal_id_astm":"NATUAS","journal_id_csd":"0006","journal_id_issn":"0028-0836","journal_volume":"295","page_first":"535","rcsb_authors":["Perutz, M.F.","Hasnain, S.S.","Duke, P.J.","Sessler, J.L.","Hahn, J.E."],"rcsb_is_primary":"N","rcsb_journal_abbrev":"Nature","title":"Stereochemistry of Iron in Deoxyhaemoglobin","year":1982},{"country":"US","id":"3","journal_abbrev":"Annu.Rev.Biochem.","journal_id_astm":"ARBOAW","journal_id_csd":"0413","journal_id_issn":"0066-4154","journal_volume":"48","page_first":"327","rcsb_authors":["Perutz, M.F."],"rcsb_is_primary":"N","rcsb_journal_abbrev":"Annu Rev Biochem","title":"Regulation of Oxygen Affinity of Hemoglobin. Influence of Structure of the Globin on the Heme Iron","year":1979},{"country":"UK","id":"4","journal_abbrev":"J.Mol.Biol.","journal_id_astm":"JMOBAK","journal_id_csd":"0070","journal_id_issn":"0022-2836","journal_volume":"100","page_first":"3","rcsb_authors":["Teneyck, L.F.","Arnone, A."],"rcsb_is_primary":"N","rcsb_journal_abbrev":"J Mol Biol","title":"Three-Dimensional Fourier Synthesis of Human Deoxyhemoglobin at 2.5 Angstroms Resolution, I.X-Ray Analysis","year":1976},{"country":"UK","id":"5","journal_abbrev":"J.Mol.Biol.","journal_id_astm":"JMOBAK","journal_id_csd":"0070","journal_id_issn":"0022-2836","journal_volume":"97","page_first":"237","rcsb_authors":["Fermi, G."],"rcsb_is_primary":"N","rcsb_journal_abbrev":"J Mol Biol","title":"Three-Dimensional Fourier Synthesis of Human Deoxyhaemoglobin at 2.5 Angstroms Resolution, Refinement of the Atomic Model","year":1975},{"country":"UK","id":"6","journal_abbrev":"Nature","journal_id_astm":"NATUAS","journal_id_csd":"0006","journal_id_issn":"0028-0836","journal_volume":"228","page_first":"516","rcsb_authors":["Muirhead, H.","Greer, J."],"rcsb_is_primary":"N","rcsb_journal_abbrev":"Nature","title":"Three-Dimensional Fourier Synthesis of Human Deoxyhaemoglobin at 3.5 Angstroms Resolution","year":1970},{"book_publisher":"Oxford University Press","id":"2","journal_abbrev":"Haemoglobin and Myoglobin. Atlas of Molecular Structures in Biology","journal_id_csd":"0986","journal_id_issn":"0-19-854706-4","journal_volume":"2","rcsb_authors":["Fermi, G.","Perutz, M.F."],"rcsb_is_primary":"N","rcsb_journal_abbrev":"Haemoglobin And Myoglobin Atlas Of Molecular Structures In Biology","year":1981},{"book_publisher":"National Biomedical Research Foundation, Silver Spring,Md.","id":"7","journal_abbrev":"Atlas of Protein Sequence and Structure (Data Section)","journal_id_csd":"0435","journal_id_issn":"0-912466-02-2","journal_volume":"5","page_first":"56","rcsb_is_primary":"N","rcsb_journal_abbrev":"Atlas Of Protein Sequence And Structure (data Section)","year":1972},{"book_publisher":"National Biomedical Research Foundation, Silver Spring,Md.","id":"8","journal_abbrev":"Atlas of Protein Sequence and Structure (Data Section)","journal_id_csd":"0435","journal_id_issn":"0-912466-02-2","journal_volume":"5","page_first":"64","rcsb_is_primary":"N","rcsb_journal_abbrev":"Atlas Of Protein Sequence And Structure (data Section)","year":1972}],"diffrn":[{"crystal_id":"1","id":"1"}],"entry":{"id":"4HHB"},"exptl":[{"method":"X-RAY DIFFRACTION"}],"exptl_crystal":[{"density_matthews":2.26,"density_percent_sol":45.48,"id":"1"}],"pdbx_audit_revision_category":[{"category":"atom_site","data_content_type":"Structure model","ordinal":1,"revision_ordinal":4},{"category":"database_PDB_caveat","data_content_type":"Structure model","ordinal":2,"revision_ordinal":4},{"category":"entity","data_content_type":"Structure model","ordinal":3,"revision_ordinal":4},{"category":"entity_name_com","data_content_type":"Structure model","ordinal":4,"revision_ordinal":4},{"category":"entity_src_gen","data_content_type":"Structure model","ordinal":5,"revision_ordinal":4},{"category":"pdbx_database_status","data_content_type":"Structure model","ordinal":6,"revision_ordinal":4},{"category":"pdbx_validate_rmsd_angle","data_content_type":"Structure model","ordinal":7,"revision_ordinal":4},{"category":"pdbx_validate_rmsd_bond","data_content_type":"Structure model","ordinal":8,"revision_ordinal":4},{"category":"struct_ref","data_content_type":"Structure model","ordinal":9,"revision_ordinal":4},{"category":"struct_ref_seq","data_content_type":"Structure model","ordinal":10,"revision_ordinal":4},{"category":"atom_site","data_content_type":"Structure model","ordinal":11,"revision_ordinal":5},{"category":"pdbx_validate_rmsd_angle","data_content_type":"Structure model","ordinal":12,"revision_ordinal":5},{"category":"pdbx_validate_rmsd_bond","data_content_type":"Structure model","ordinal":13,"revision_ordinal":5},{"category":"struct_site","data_content_type":"Structure model","ordinal":14,"revision_ordinal":5}],"pdbx_audit_revision_details":[{"data_content_type":"Structure model","ordinal":1,"provider":"repository","revision_ordinal":1,"type":"Initial release"}],"pdbx_audit_revision_group":[{"data_content_type":"Structure model","group":"Version format compliance","ordinal":1,"revision_ordinal":2},{"data_content_type":"Structure model","group":"Advisory","ordinal":2,"revision_ordinal":3},{"data_content_type":"Structure model","group":"Version format compliance","ordinal":3,"revision_ordinal":3},{"data_content_type":"Structure model","group":"Advisory","ordinal":4,"revision_ordinal":4},{"data_content_type":"Structure model","group":"Atomic model","ordinal":5,"revision_ordinal":4},{"data_content_type":"Structure model","group":"Data collection","ordinal":6,"revision_ordinal":4},{"data_content_type":"Structure model","group":"Database references","ordinal":7,"revision_ordinal":4},{"data_content_type":"Structure model","group":"Other","ordinal":8,"revision_ordinal":4},{"data_content_type":"Structure model","group":"Source and taxonomy","ordinal":9,"revision_ordinal":4},{"data_content_type":"Structure model","group":"Structure summary","ordinal":10,"revision_ordinal":4},{"data_content_type":"Structure model","group":"Atomic model","ordinal":11,"revision_ordinal":5},{"data_content_type":"Structure model","group":"Data collection","ordinal":12,"revision_ordinal":5},{"data_content_type":"Structure model","group":"Derived calculations","ordinal":13,"revision_ordinal":5}],"pdbx_audit_revision_history":[{"data_content_type":"Structure model","major_revision":1,"minor_revision":0,"ordinal":1,"revision_date":"1984-07-17T00:00:00+0000"},{"data_content_type":"Structure model","major_revision":1,"minor_revision":1,"ordinal":2,"revision_date":"2008-03-03T00:00:00+0000"},{"data_content_type":"Structure model","major_revision":1,"minor_revision":2,"ordinal":3,"revision_date":"2011-07-13T00:00:00+0000"},{"data_content_type":"Structure model","major_revision":2,"minor_revision":0,"ordinal":4,"revision_date":"2020-06-17T00:00:00+0000"},{"data_content_type":"Structure model","major_revision":3,"minor_revision":0,"ordinal":5,"revision_date":"2021-03-31T00:00:00+0000"}],"pdbx_audit_revision_item":[{"data_content_type":"Structure model","item":"_atom_site.B_iso_or_equiv","ordinal":1,"revision_ordinal":4},{"data_content_type":"Structure model","item":"_atom_site.Cartn_x","ordinal":2,"revision_ordinal":4},{"data_content_type":"Structure model","item":"_atom_site.Cartn_y","ordinal":3,"revision_ordinal":4},{"data_content_type":"Structure model","item":"_atom_site.Cartn_z","ordinal":4,"revision_ordinal":4},{"data_content_type":"Structure model","item":"_entity.pdbx_description","ordinal":5,"revision_ordinal":4},{"data_content_type":"Structure model","item":"_entity_src_gen.gene_src_common_name","ordinal":6,"revision_ordinal":4},{"data_content_type":"Structure model","item":"_entity_src_gen.pdbx_beg_seq_num","ordinal":7,"revision_ordinal":4},{"data_content_type":"Structure model","item":"_entity_src_gen.pdbx_end_seq_num","ordinal":8,"revision_ordinal":4},{"data_content_type":"Structure model","item":"_entity_src_gen.pdbx_gene_src_gene","ordinal":9,"revision_ordinal":4},{"data_content_type":"Structure model","item":"_entity_src_gen.pdbx_seq_type","ordinal":10,"revision_ordinal":4},{"data_content_type":"Structure model","item":"_pdbx_database_status.process_site","ordinal":11,"revision_ordinal":4},{"data_content_type":"Structure model","item":"_pdbx_validate_rmsd_angle.angle_deviation","ordinal":12,"revision_ordinal":4},{"data_content_type":"Structure model","item":"_pdbx_validate_rmsd_angle.angle_value","ordinal":13,"revision_ordinal":4},{"data_content_type":"Structure model","item":"_pdbx_validate_rmsd_bond.bond_deviation","ordinal":14,"revision_ordinal":4},{"data_content_type":"Structure model","item":"_pdbx_validate_rmsd_bond.bond_value","ordinal":15,"revision_ordinal":4},{"data_content_type":"Structure model","item":"_struct_ref.pdbx_align_begin","ordinal":16,"revision_ordinal":4},{"data_content_type":"Structure model","item":"_struct_ref_seq.db_align_beg","ordinal":17,"revision_ordinal":4},{"data_content_type":"Structure model","item":"_struct_ref_seq.db_align_end","ordinal":18,"revision_ordinal":4},{"data_content_type":"Structure model","item":"_atom_site.B_iso_or_equiv","ordinal":19,"revision_ordinal":5},{"data_content_type":"Structure model","item":"_atom_site.Cartn_x","ordinal":20,"revision_ordinal":5},{"data_content_type":"Structure model","item":"_atom_site.Cartn_y","ordinal":21,"revision_ordinal":5},{"data_content_type":"Structure model","item":"_atom_site.Cartn_z","ordinal":22,"revision_ordinal":5},{"data_content_type":"Structure model","item":"_pdbx_validate_rmsd_bond.bond_deviation","ordinal":23,"revision_ordinal":5},{"data_content_type":"Structure model","item":"_pdbx_validate_rmsd_bond.bond_value","ordinal":24,"revision_ordinal":5},{"data_content_type":"Structure model","item":"_struct_site.pdbx_auth_asym_id","ordinal":25,"revision_ordinal":5},{"data_content_type":"Structure model","item":"_struct_site.pdbx_auth_comp_id","ordinal":26,"revision_ordinal":5},{"data_content_type":"Structure model","item":"_struct_site.pdbx_auth_seq_id","ordinal":27,"revision_ordinal":5}],"pdbx_database_pdbobs_spr":[{"date":"1984-07-17T00:00:00+0000","id":"SPRSDE","pdb_id":"4HHB","replace_pdb_id":"1HHB"}],"pdbx_database_related":[{"content_type":"unspecified","db_id":"2HHB","db_name":"PDB","details":"REFINED BY THE METHOD OF JACK AND LEVITT.  THIS\n        ENTRY PRESENTS THE BEST ESTIMATE OF THE\n        COORDINATES."},{"content_type":"unspecified","db_id":"3HHB","db_name":"PDB","details":"SYMMETRY AVERAGED ABOUT THE (NON-CRYSTALLOGRAPHIC)\n        MOLECULAR AXIS AND THEN RE-REGULARIZED BY THE\n        ENERGY REFINEMENT METHOD OF LEVITT.  THIS ENTRY\n        PRESENTS COORDINATES THAT ARE ADEQUATE FOR MOST\n        PURPOSES, SUCH AS COMPARISON WITH OTHER STRUCTURES."},{"content_type":"unspecified","db_id":"1GLI","db_name":"PDB"}],"pdbx_database_status":{"pdb_format_compatible":"Y","process_site":"BNL","recvd_initial_deposition_date":"1984-03-07T00:00:00+0000","status_code":"REL"},"pdbx_vrpt_summary":{"pdb_r":0.14,"absolute_percentile_clashscore":0.0,"absolute_percentile_percent_ramachandran_outliers":12.8,"absolute_percentile_percent_rotamer_outliers":9.9,"angles_rmsz":7.11,"attempted_validation_steps":"molprobity,validation-pack,mogul,buster-report,percentiles,writexml","bonds_rmsz":9.69,"clashscore":141.0,"high_resol_relative_percentile_clashscore":1.72,"high_resol_relative_percentile_percent_ramachandran_outliers":1.72,"high_resol_relative_percentile_percent_rotamer_outliers":1.72,"ligands_for_buster_report":"yes","low_resol_relative_percentile_clashscore":1.76,"low_resol_relative_percentile_percent_ramachandran_outliers":1.76,"low_resol_relative_percentile_percent_rotamer_outliers":1.76,"num_hreduce":4456.0,"num_pdbids_absolute_percentile_clashscore":141614,"num_pdbids_absolute_percentile_percent_ramachandran_outliers":138981,"num_pdbids_absolute_percentile_percent_rotamer_outliers":138945,"num_pdbids_relative_percentile_clashscore":3923,"num_pdbids_relative_percentile_percent_ramachandran_outliers":3878,"num_pdbids_relative_percentile_percent_rotamer_outliers":3878,"num_angles_rmsz":6114,"num_bonds_rmsz":4500,"percent_ramachandran_outliers":1.24,"percent_rotamer_outliers":8.66,"percentilebins":["all","1.74","xray"],"protein_dnarnaentities":"1,2","relative_percentile_clashscore":0.0,"relative_percentile_percent_ramachandran_outliers":2.6,"relative_percentile_percent_rotamer_outliers":1.1,"report_creation_date":"Mar 23, 2021 -- 08:01 PM EDT","restypes_notchecked_for_bond_angle_geometry":["HEM","PO4"],"pdbdeposition_date":"1984-03-07T00:00:00+0000","pdbresolution":1.74,"pdbrevision_date":"2021-03-31T00:00:00+0000","pdbrevision_number":5.0},"rcsb_accession_info":{"deposit_date":"1984-03-07T00:00:00+0000","has_released_experimental_data":"N","initial_release_date":"1984-07-17T00:00:00+0000","major_revision":3,"minor_revision":0,"revision_date":"2021-03-31T00:00:00+0000","status_code":"REL"},"rcsb_entry_container_identifiers":{"assembly_ids":["1"],"entity_ids":["1","2","3","4","5"],"entry_id":"4HHB","model_ids":[1],"non_polymer_entity_ids":["3","4"],"polymer_entity_ids":["1","2"],"rcsb_id":"4HHB","pubmed_id":6726807},"rcsb_entry_info":{"assembly_count":1,"branched_entity_count":0,"cis_peptide_count":0,"deposited_atom_count":4779,"deposited_hydrogen_atom_count":0,"deposited_model_count":1,"deposited_modeled_polymer_monomer_count":574,"deposited_nonpolymer_entity_instance_count":6,"deposited_polymer_entity_instance_count":4,"deposited_polymer_monomer_count":574,"deposited_solvent_atom_count":221,"deposited_unmodeled_polymer_monomer_count":0,"disulfide_bond_count":0,"entity_count":5,"experimental_method":"X-ray","experimental_method_count":1,"inter_mol_covalent_bond_count":0,"inter_mol_metalic_bond_count":4,"molecular_weight":64.74,"na_polymer_entity_types":"Other","nonpolymer_bound_components":["HEM"],"nonpolymer_entity_count":2,"nonpolymer_molecular_weight_maximum":0.62,"nonpolymer_molecular_weight_minimum":0.09,"polymer_composition":"heteromeric protein","polymer_entity_count":2,"polymer_entity_count_dna":0,"polymer_entity_count_rna":0,"polymer_entity_count_nucleic_acid":0,"polymer_entity_count_nucleic_acid_hybrid":0,"polymer_entity_count_protein":2,"polymer_entity_taxonomy_count":2,"polymer_molecular_weight_maximum":15.89,"polymer_molecular_weight_minimum":15.15,"polymer_monomer_count_maximum":146,"polymer_monomer_count_minimum":141,"resolution_combined":[1.74],"selected_polymer_entity_types":"Protein (only)","solvent_entity_count":1,"structure_determination_methodology":"experimental","structure_determination_methodology_priority":10,"diffrn_resolution_high":{"provenance_source":"From refinement resolution cutoff","value":1.74}},"rcsb_primary_citation":{"country":"UK","id":"primary","journal_abbrev":"J.Mol.Biol.","journal_id_astm":"JMOBAK","journal_id_csd":"0070","journal_id_issn":"0022-2836","journal_volume":"175","page_first":"159","page_last":"174","pdbx_database_id_doi":"10.1016/0022-2836(84)90472-8","pdbx_database_id_pub_med":6726807,"rcsb_orcididentifiers":["?","?","?","?"],"rcsb_authors":["Fermi, G.","Perutz, M.F.","Shaanan, B.","Fourme, R."],"rcsb_journal_abbrev":"J Mol Biol","title":"The crystal structure of human deoxyhaemoglobin at 1.74 A resolution","year":1984},"refine":[{"details":"THE COORDINATES GIVEN HERE ARE IN THE ORTHOGONAL ANGSTROM\nSYSTEM STANDARD FOR HEMOGLOBINS. THE Y AXIS IS THE\n(NON CRYSTALLOGRAPHIC) MOLECULAR DIAD AND THE X AXIS IS THE\nPSEUDO DIAD WHICH RELATES THE ALPHA-1 AND BETA-1 CHAINS.\nTHE TRANSFORMATION GIVEN IN THE *MTRIX* RECORDS BELOW\nWILL GENERATE COORDINATES FOR THE *C* AND *D* CHAINS FROM\nTHE *A* AND *B* CHAINS RESPECTIVELY.","ls_rfactor_rwork":0.135,"ls_dres_high":1.74,"pdbx_diffrn_id":["1"],"pdbx_refine_id":"X-RAY DIFFRACTION"}],"refine_hist":[{"cycle_id":"LAST","d_res_high":1.74,"number_atoms_solvent":221,"number_atoms_total":4779,"pdbx_number_atoms_ligand":174,"pdbx_number_atoms_nucleic_acid":0,"pdbx_number_atoms_protein":4384,"pdbx_refine_id":"X-RAY DIFFRACTION"}],"struct":{"pdbx_descriptor":"HEMOGLOBIN (DEOXY)","title":"THE CRYSTAL STRUCTURE OF HUMAN DEOXYHAEMOGLOBIN AT 1.74 ANGSTROMS RESOLUTION"},"struct_keywords":{"pdbx_keywords":"OXYGEN TRANSPORT","text":"OXYGEN TRANSPORT"},"symmetry":{"int_tables_number":4,"space_group_name_hm":"P 1 21 1"},"rcsb_id":"4HHB"}
{'audit_author': [{'name': 'Fermi, G.', 'pdbx_ordinal': 1},
  {'name': 'Perutz, M.F.', 'pdbx_ordinal': 2}],
 'cell': {'angle_alpha': 90.0,
  'angle_beta': 99.34,
  'angle_gamma': 90.0,
  'length_a': 63.15,
  'length_b': 83.59,
  'length_c': 53.8,
  'zpdb': 4},
 'citation': [{'country': 'UK',
   'id': 'primary',
   'journal_abbrev': 'J.Mol.Biol.',
   'journal_id_astm': 'JMOBAK',
   'journal_id_csd': '0070',
   'journal_id_issn': '0022-2836',
   'journal_volume': '175',
   'page_first': '159',
   'page_last': '174',
   'pdbx_database_id_doi': '10.1016/0022-2836(84)90472-8',
   'pdbx_database_id_pub_med': 6726807,
   'rcsb_authors': ['Fermi, G.', 'Perutz, M.F.', 'Shaanan, B.', 'Fourme, R.'],
   'rcsb_is_primary': 'Y',
   'rcsb_journal_abbrev': 'J Mol Biol',
   'title': 'The crystal structure of human deoxyhaemoglobin at 1.74 A resolution',
   'year': 1984},
  {'country': 'UK',
   'id': '1',
   'journal_abbrev': 'Nature',
   'journal_id_astm': 'NATUAS',
   'journal_id_csd': '0006',
   'journal_id_issn': '0028-0836',
   'journal_volume': '295',
   'page_first': '535',
   'rcsb_authors': ['Perutz, M.F.',
    'Hasnain, S.S.',
    'Duke, P.J.',
    'Sessler, J.L.',
    'Hahn, J.E.'],
   'rcsb_is_primary': 'N',
   'rcsb_journal_abbrev': 'Nature',
   'title': 'Stereochemistry of Iron in Deoxyhaemoglobin',
   'year': 1982},
  {'country': 'US',
   'id': '3',
   'journal_abbrev': 'Annu.Rev.Biochem.',
   'journal_id_astm': 'ARBOAW',
   'journal_id_csd': '0413',
   'journal_id_issn': '0066-4154',
   'journal_volume': '48',
   'page_first': '327',
   'rcsb_authors': ['Perutz, M.F.'],
   'rcsb_is_primary': 'N',
   'rcsb_journal_abbrev': 'Annu Rev Biochem',
   'title': 'Regulation of Oxygen Affinity of Hemoglobin. Influence of Structure of the Globin on the Heme Iron',
   'year': 1979},
  {'country': 'UK',
   'id': '4',
   'journal_abbrev': 'J.Mol.Biol.',
   'journal_id_astm': 'JMOBAK',
   'journal_id_csd': '0070',
   'journal_id_issn': '0022-2836',
   'journal_volume': '100',
   'page_first': '3',
   'rcsb_authors': ['Teneyck, L.F.', 'Arnone, A.'],
   'rcsb_is_primary': 'N',
   'rcsb_journal_abbrev': 'J Mol Biol',
   'title': 'Three-Dimensional Fourier Synthesis of Human Deoxyhemoglobin at 2.5 Angstroms Resolution, I.X-Ray Analysis',
   'year': 1976},
  {'country': 'UK',
   'id': '5',
   'journal_abbrev': 'J.Mol.Biol.',
   'journal_id_astm': 'JMOBAK',
   'journal_id_csd': '0070',
   'journal_id_issn': '0022-2836',
   'journal_volume': '97',
   'page_first': '237',
   'rcsb_authors': ['Fermi, G.'],
   'rcsb_is_primary': 'N',
   'rcsb_journal_abbrev': 'J Mol Biol',
   'title': 'Three-Dimensional Fourier Synthesis of Human Deoxyhaemoglobin at 2.5 Angstroms Resolution, Refinement of the Atomic Model',
   'year': 1975},
  {'country': 'UK',
   'id': '6',
   'journal_abbrev': 'Nature',
   'journal_id_astm': 'NATUAS',
   'journal_id_csd': '0006',
   'journal_id_issn': '0028-0836',
   'journal_volume': '228',
   'page_first': '516',
   'rcsb_authors': ['Muirhead, H.', 'Greer, J.'],
   'rcsb_is_primary': 'N',
   'rcsb_journal_abbrev': 'Nature',
   'title': 'Three-Dimensional Fourier Synthesis of Human Deoxyhaemoglobin at 3.5 Angstroms Resolution',
   'year': 1970},
  {'book_publisher': 'Oxford University Press',
   'id': '2',
   'journal_abbrev': 'Haemoglobin and Myoglobin. Atlas of Molecular Structures in Biology',
   'journal_id_csd': '0986',
   'journal_id_issn': '0-19-854706-4',
   'journal_volume': '2',
   'rcsb_authors': ['Fermi, G.', 'Perutz, M.F.'],
   'rcsb_is_primary': 'N',
   'rcsb_journal_abbrev': 'Haemoglobin And Myoglobin Atlas Of Molecular Structures In Biology',
   'year': 1981},
  {'book_publisher': 'National Biomedical Research Foundation, Silver Spring,Md.',
   'id': '7',
   'journal_abbrev': 'Atlas of Protein Sequence and Structure (Data Section)',
   'journal_id_csd': '0435',
   'journal_id_issn': '0-912466-02-2',
   'journal_volume': '5',
   'page_first': '56',
   'rcsb_is_primary': 'N',
   'rcsb_journal_abbrev': 'Atlas Of Protein Sequence And Structure (data Section)',
   'year': 1972},
  {'book_publisher': 'National Biomedical Research Foundation, Silver Spring,Md.',
   'id': '8',
   'journal_abbrev': 'Atlas of Protein Sequence and Structure (Data Section)',
   'journal_id_csd': '0435',
   'journal_id_issn': '0-912466-02-2',
   'journal_volume': '5',
   'page_first': '64',
   'rcsb_is_primary': 'N',
   'rcsb_journal_abbrev': 'Atlas Of Protein Sequence And Structure (data Section)',
   'year': 1972}],
 'diffrn': [{'crystal_id': '1', 'id': '1'}],
 'entry': {'id': '4HHB'},
 'exptl': [{'method': 'X-RAY DIFFRACTION'}],
 'exptl_crystal': [{'density_matthews': 2.26,
   'density_percent_sol': 45.48,
   'id': '1'}],
 'pdbx_audit_revision_category': [{'category': 'atom_site',
   'data_content_type': 'Structure model',
   'ordinal': 1,
   'revision_ordinal': 4},
  {'category': 'database_PDB_caveat',
   'data_content_type': 'Structure model',
   'ordinal': 2,
   'revision_ordinal': 4},
  {'category': 'entity',
   'data_content_type': 'Structure model',
   'ordinal': 3,
   'revision_ordinal': 4},
  {'category': 'entity_name_com',
   'data_content_type': 'Structure model',
   'ordinal': 4,
   'revision_ordinal': 4},
  {'category': 'entity_src_gen',
   'data_content_type': 'Structure model',
   'ordinal': 5,
   'revision_ordinal': 4},
  {'category': 'pdbx_database_status',
   'data_content_type': 'Structure model',
   'ordinal': 6,
   'revision_ordinal': 4},
  {'category': 'pdbx_validate_rmsd_angle',
   'data_content_type': 'Structure model',
   'ordinal': 7,
   'revision_ordinal': 4},
  {'category': 'pdbx_validate_rmsd_bond',
   'data_content_type': 'Structure model',
   'ordinal': 8,
   'revision_ordinal': 4},
  {'category': 'struct_ref',
   'data_content_type': 'Structure model',
   'ordinal': 9,
   'revision_ordinal': 4},
  {'category': 'struct_ref_seq',
   'data_content_type': 'Structure model',
   'ordinal': 10,
   'revision_ordinal': 4},
  {'category': 'atom_site',
   'data_content_type': 'Structure model',
   'ordinal': 11,
   'revision_ordinal': 5},
  {'category': 'pdbx_validate_rmsd_angle',
   'data_content_type': 'Structure model',
   'ordinal': 12,
   'revision_ordinal': 5},
  {'category': 'pdbx_validate_rmsd_bond',
   'data_content_type': 'Structure model',
   'ordinal': 13,
   'revision_ordinal': 5},
  {'category': 'struct_site',
   'data_content_type': 'Structure model',
   'ordinal': 14,
   'revision_ordinal': 5}],
 'pdbx_audit_revision_details': [{'data_content_type': 'Structure model',
   'ordinal': 1,
   'provider': 'repository',
   'revision_ordinal': 1,
   'type': 'Initial release'}],
 'pdbx_audit_revision_group': [{'data_content_type': 'Structure model',
   'group': 'Version format compliance',
   'ordinal': 1,
   'revision_ordinal': 2},
  {'data_content_type': 'Structure model',
   'group': 'Advisory',
   'ordinal': 2,
   'revision_ordinal': 3},
  {'data_content_type': 'Structure model',
   'group': 'Version format compliance',
   'ordinal': 3,
   'revision_ordinal': 3},
  {'data_content_type': 'Structure model',
   'group': 'Advisory',
   'ordinal': 4,
   'revision_ordinal': 4},
  {'data_content_type': 'Structure model',
   'group': 'Atomic model',
   'ordinal': 5,
   'revision_ordinal': 4},
  {'data_content_type': 'Structure model',
   'group': 'Data collection',
   'ordinal': 6,
   'revision_ordinal': 4},
  {'data_content_type': 'Structure model',
   'group': 'Database references',
   'ordinal': 7,
   'revision_ordinal': 4},
  {'data_content_type': 'Structure model',
   'group': 'Other',
   'ordinal': 8,
   'revision_ordinal': 4},
  {'data_content_type': 'Structure model',
   'group': 'Source and taxonomy',
   'ordinal': 9,
   'revision_ordinal': 4},
  {'data_content_type': 'Structure model',
   'group': 'Structure summary',
   'ordinal': 10,
   'revision_ordinal': 4},
  {'data_content_type': 'Structure model',
   'group': 'Atomic model',
   'ordinal': 11,
   'revision_ordinal': 5},
  {'data_content_type': 'Structure model',
   'group': 'Data collection',
   'ordinal': 12,
   'revision_ordinal': 5},
  {'data_content_type': 'Structure model',
   'group': 'Derived calculations',
   'ordinal': 13,
   'revision_ordinal': 5}],
 'pdbx_audit_revision_history': [{'data_content_type': 'Structure model',
   'major_revision': 1,
   'minor_revision': 0,
   'ordinal': 1,
   'revision_date': '1984-07-17T00:00:00+0000'},
  {'data_content_type': 'Structure model',
   'major_revision': 1,
   'minor_revision': 1,
   'ordinal': 2,
   'revision_date': '2008-03-03T00:00:00+0000'},
  {'data_content_type': 'Structure model',
   'major_revision': 1,
   'minor_revision': 2,
   'ordinal': 3,
   'revision_date': '2011-07-13T00:00:00+0000'},
  {'data_content_type': 'Structure model',
   'major_revision': 2,
   'minor_revision': 0,
   'ordinal': 4,
   'revision_date': '2020-06-17T00:00:00+0000'},
  {'data_content_type': 'Structure model',
   'major_revision': 3,
   'minor_revision': 0,
   'ordinal': 5,
   'revision_date': '2021-03-31T00:00:00+0000'}],
 'pdbx_audit_revision_item': [{'data_content_type': 'Structure model',
   'item': '_atom_site.B_iso_or_equiv',
   'ordinal': 1,
   'revision_ordinal': 4},
  {'data_content_type': 'Structure model',
   'item': '_atom_site.Cartn_x',
   'ordinal': 2,
   'revision_ordinal': 4},
  {'data_content_type': 'Structure model',
   'item': '_atom_site.Cartn_y',
   'ordinal': 3,
   'revision_ordinal': 4},
  {'data_content_type': 'Structure model',
   'item': '_atom_site.Cartn_z',
   'ordinal': 4,
   'revision_ordinal': 4},
  {'data_content_type': 'Structure model',
   'item': '_entity.pdbx_description',
   'ordinal': 5,
   'revision_ordinal': 4},
  {'data_content_type': 'Structure model',
   'item': '_entity_src_gen.gene_src_common_name',
   'ordinal': 6,
   'revision_ordinal': 4},
  {'data_content_type': 'Structure model',
   'item': '_entity_src_gen.pdbx_beg_seq_num',
   'ordinal': 7,
   'revision_ordinal': 4},
  {'data_content_type': 'Structure model',
   'item': '_entity_src_gen.pdbx_end_seq_num',
   'ordinal': 8,
   'revision_ordinal': 4},
  {'data_content_type': 'Structure model',
   'item': '_entity_src_gen.pdbx_gene_src_gene',
   'ordinal': 9,
   'revision_ordinal': 4},
  {'data_content_type': 'Structure model',
   'item': '_entity_src_gen.pdbx_seq_type',
   'ordinal': 10,
   'revision_ordinal': 4},
  {'data_content_type': 'Structure model',
   'item': '_pdbx_database_status.process_site',
   'ordinal': 11,
   'revision_ordinal': 4},
  {'data_content_type': 'Structure model',
   'item': '_pdbx_validate_rmsd_angle.angle_deviation',
   'ordinal': 12,
   'revision_ordinal': 4},
  {'data_content_type': 'Structure model',
   'item': '_pdbx_validate_rmsd_angle.angle_value',
   'ordinal': 13,
   'revision_ordinal': 4},
  {'data_content_type': 'Structure model',
   'item': '_pdbx_validate_rmsd_bond.bond_deviation',
   'ordinal': 14,
   'revision_ordinal': 4},
  {'data_content_type': 'Structure model',
   'item': '_pdbx_validate_rmsd_bond.bond_value',
   'ordinal': 15,
   'revision_ordinal': 4},
  {'data_content_type': 'Structure model',
   'item': '_struct_ref.pdbx_align_begin',
   'ordinal': 16,
   'revision_ordinal': 4},
  {'data_content_type': 'Structure model',
   'item': '_struct_ref_seq.db_align_beg',
   'ordinal': 17,
   'revision_ordinal': 4},
  {'data_content_type': 'Structure model',
   'item': '_struct_ref_seq.db_align_end',
   'ordinal': 18,
   'revision_ordinal': 4},
  {'data_content_type': 'Structure model',
   'item': '_atom_site.B_iso_or_equiv',
   'ordinal': 19,
   'revision_ordinal': 5},
  {'data_content_type': 'Structure model',
   'item': '_atom_site.Cartn_x',
   'ordinal': 20,
   'revision_ordinal': 5},
  {'data_content_type': 'Structure model',
   'item': '_atom_site.Cartn_y',
   'ordinal': 21,
   'revision_ordinal': 5},
  {'data_content_type': 'Structure model',
   'item': '_atom_site.Cartn_z',
   'ordinal': 22,
   'revision_ordinal': 5},
  {'data_content_type': 'Structure model',
   'item': '_pdbx_validate_rmsd_bond.bond_deviation',
   'ordinal': 23,
   'revision_ordinal': 5},
  {'data_content_type': 'Structure model',
   'item': '_pdbx_validate_rmsd_bond.bond_value',
   'ordinal': 24,
   'revision_ordinal': 5},
  {'data_content_type': 'Structure model',
   'item': '_struct_site.pdbx_auth_asym_id',
   'ordinal': 25,
   'revision_ordinal': 5},
  {'data_content_type': 'Structure model',
   'item': '_struct_site.pdbx_auth_comp_id',
   'ordinal': 26,
   'revision_ordinal': 5},
  {'data_content_type': 'Structure model',
   'item': '_struct_site.pdbx_auth_seq_id',
   'ordinal': 27,
   'revision_ordinal': 5}],
 'pdbx_database_pdbobs_spr': [{'date': '1984-07-17T00:00:00+0000',
   'id': 'SPRSDE',
   'pdb_id': '4HHB',
   'replace_pdb_id': '1HHB'}],
 'pdbx_database_related': [{'content_type': 'unspecified',
   'db_id': '2HHB',
   'db_name': 'PDB',
   'details': 'REFINED BY THE METHOD OF JACK AND LEVITT.  THIS\n        ENTRY PRESENTS THE BEST ESTIMATE OF THE\n        COORDINATES.'},
  {'content_type': 'unspecified',
   'db_id': '3HHB',
   'db_name': 'PDB',
   'details': 'SYMMETRY AVERAGED ABOUT THE (NON-CRYSTALLOGRAPHIC)\n        MOLECULAR AXIS AND THEN RE-REGULARIZED BY THE\n        ENERGY REFINEMENT METHOD OF LEVITT.  THIS ENTRY\n        PRESENTS COORDINATES THAT ARE ADEQUATE FOR MOST\n        PURPOSES, SUCH AS COMPARISON WITH OTHER STRUCTURES.'},
  {'content_type': 'unspecified', 'db_id': '1GLI', 'db_name': 'PDB'}],
 'pdbx_database_status': {'pdb_format_compatible': 'Y',
  'process_site': 'BNL',
  'recvd_initial_deposition_date': '1984-03-07T00:00:00+0000',
  'status_code': 'REL'},
 'pdbx_vrpt_summary': {'pdb_r': 0.14,
  'absolute_percentile_clashscore': 0.0,
  'absolute_percentile_percent_ramachandran_outliers': 12.8,
  'absolute_percentile_percent_rotamer_outliers': 9.9,
  'angles_rmsz': 7.11,
  'attempted_validation_steps': 'molprobity,validation-pack,mogul,buster-report,percentiles,writexml',
  'bonds_rmsz': 9.69,
  'clashscore': 141.0,
  'high_resol_relative_percentile_clashscore': 1.72,
  'high_resol_relative_percentile_percent_ramachandran_outliers': 1.72,
  'high_resol_relative_percentile_percent_rotamer_outliers': 1.72,
  'ligands_for_buster_report': 'yes',
  'low_resol_relative_percentile_clashscore': 1.76,
  'low_resol_relative_percentile_percent_ramachandran_outliers': 1.76,
  'low_resol_relative_percentile_percent_rotamer_outliers': 1.76,
  'num_hreduce': 4456.0,
  'num_pdbids_absolute_percentile_clashscore': 141614,
  'num_pdbids_absolute_percentile_percent_ramachandran_outliers': 138981,
  'num_pdbids_absolute_percentile_percent_rotamer_outliers': 138945,
  'num_pdbids_relative_percentile_clashscore': 3923,
  'num_pdbids_relative_percentile_percent_ramachandran_outliers': 3878,
  'num_pdbids_relative_percentile_percent_rotamer_outliers': 3878,
  'num_angles_rmsz': 6114,
  'num_bonds_rmsz': 4500,
  'percent_ramachandran_outliers': 1.24,
  'percent_rotamer_outliers': 8.66,
  'percentilebins': ['all', '1.74', 'xray'],
  'protein_dnarnaentities': '1,2',
  'relative_percentile_clashscore': 0.0,
  'relative_percentile_percent_ramachandran_outliers': 2.6,
  'relative_percentile_percent_rotamer_outliers': 1.1,
  'report_creation_date': 'Mar 23, 2021 -- 08:01 PM EDT',
  'restypes_notchecked_for_bond_angle_geometry': ['HEM', 'PO4'],
  'pdbdeposition_date': '1984-03-07T00:00:00+0000',
  'pdbresolution': 1.74,
  'pdbrevision_date': '2021-03-31T00:00:00+0000',
  'pdbrevision_number': 5.0},
 'rcsb_accession_info': {'deposit_date': '1984-03-07T00:00:00+0000',
  'has_released_experimental_data': 'N',
  'initial_release_date': '1984-07-17T00:00:00+0000',
  'major_revision': 3,
  'minor_revision': 0,
  'revision_date': '2021-03-31T00:00:00+0000',
  'status_code': 'REL'},
 'rcsb_entry_container_identifiers': {'assembly_ids': ['1'],
  'entity_ids': ['1', '2', '3', '4', '5'],
  'entry_id': '4HHB',
  'model_ids': [1],
  'non_polymer_entity_ids': ['3', '4'],
  'polymer_entity_ids': ['1', '2'],
  'rcsb_id': '4HHB',
  'pubmed_id': 6726807},
 'rcsb_entry_info': {'assembly_count': 1,
  'branched_entity_count': 0,
  'cis_peptide_count': 0,
  'deposited_atom_count': 4779,
  'deposited_hydrogen_atom_count': 0,
  'deposited_model_count': 1,
  'deposited_modeled_polymer_monomer_count': 574,
  'deposited_nonpolymer_entity_instance_count': 6,
  'deposited_polymer_entity_instance_count': 4,
  'deposited_polymer_monomer_count': 574,
  'deposited_solvent_atom_count': 221,
  'deposited_unmodeled_polymer_monomer_count': 0,
  'disulfide_bond_count': 0,
  'entity_count': 5,
  'experimental_method': 'X-ray',
  'experimental_method_count': 1,
  'inter_mol_covalent_bond_count': 0,
  'inter_mol_metalic_bond_count': 4,
  'molecular_weight': 64.74,
  'na_polymer_entity_types': 'Other',
  'nonpolymer_bound_components': ['HEM'],
  'nonpolymer_entity_count': 2,
  'nonpolymer_molecular_weight_maximum': 0.62,
  'nonpolymer_molecular_weight_minimum': 0.09,
  'polymer_composition': 'heteromeric protein',
  'polymer_entity_count': 2,
  'polymer_entity_count_dna': 0,
  'polymer_entity_count_rna': 0,
  'polymer_entity_count_nucleic_acid': 0,
  'polymer_entity_count_nucleic_acid_hybrid': 0,
  'polymer_entity_count_protein': 2,
  'polymer_entity_taxonomy_count': 2,
  'polymer_molecular_weight_maximum': 15.89,
  'polymer_molecular_weight_minimum': 15.15,
  'polymer_monomer_count_maximum': 146,
  'polymer_monomer_count_minimum': 141,
  'resolution_combined': [1.74],
  'selected_polymer_entity_types': 'Protein (only)',
  'solvent_entity_count': 1,
  'structure_determination_methodology': 'experimental',
  'structure_determination_methodology_priority': 10,
  'diffrn_resolution_high': {'provenance_source': 'From refinement resolution cutoff',
   'value': 1.74}},
 'rcsb_primary_citation': {'country': 'UK',
  'id': 'primary',
  'journal_abbrev': 'J.Mol.Biol.',
  'journal_id_astm': 'JMOBAK',
  'journal_id_csd': '0070',
  'journal_id_issn': '0022-2836',
  'journal_volume': '175',
  'page_first': '159',
  'page_last': '174',
  'pdbx_database_id_doi': '10.1016/0022-2836(84)90472-8',
  'pdbx_database_id_pub_med': 6726807,
  'rcsb_orcididentifiers': ['?', '?', '?', '?'],
  'rcsb_authors': ['Fermi, G.', 'Perutz, M.F.', 'Shaanan, B.', 'Fourme, R.'],
  'rcsb_journal_abbrev': 'J Mol Biol',
  'title': 'The crystal structure of human deoxyhaemoglobin at 1.74 A resolution',
  'year': 1984},
 'refine': [{'details': 'THE COORDINATES GIVEN HERE ARE IN THE ORTHOGONAL ANGSTROM\nSYSTEM STANDARD FOR HEMOGLOBINS. THE Y AXIS IS THE\n(NON CRYSTALLOGRAPHIC) MOLECULAR DIAD AND THE X AXIS IS THE\nPSEUDO DIAD WHICH RELATES THE ALPHA-1 AND BETA-1 CHAINS.\nTHE TRANSFORMATION GIVEN IN THE *MTRIX* RECORDS BELOW\nWILL GENERATE COORDINATES FOR THE *C* AND *D* CHAINS FROM\nTHE *A* AND *B* CHAINS RESPECTIVELY.',
   'ls_rfactor_rwork': 0.135,
   'ls_dres_high': 1.74,
   'pdbx_diffrn_id': ['1'],
   'pdbx_refine_id': 'X-RAY DIFFRACTION'}],
 'refine_hist': [{'cycle_id': 'LAST',
   'd_res_high': 1.74,
   'number_atoms_solvent': 221,
   'number_atoms_total': 4779,
   'pdbx_number_atoms_ligand': 174,
   'pdbx_number_atoms_nucleic_acid': 0,
   'pdbx_number_atoms_protein': 4384,
   'pdbx_refine_id': 'X-RAY DIFFRACTION'}],
 'struct': {'pdbx_descriptor': 'HEMOGLOBIN (DEOXY)',
  'title': 'THE CRYSTAL STRUCTURE OF HUMAN DEOXYHAEMOGLOBIN AT 1.74 ANGSTROMS RESOLUTION'},
 'struct_keywords': {'pdbx_keywords': 'OXYGEN TRANSPORT',
  'text': 'OXYGEN TRANSPORT'},
 'symmetry': {'int_tables_number': 4, 'space_group_name_hm': 'P 1 21 1'},
 'rcsb_id': '4HHB'}
{'assembly_count': 1,
 'branched_entity_count': 0,
 'cis_peptide_count': 0,
 'deposited_atom_count': 4779,
 'deposited_hydrogen_atom_count': 0,
 'deposited_model_count': 1,
 'deposited_modeled_polymer_monomer_count': 574,
 'deposited_nonpolymer_entity_instance_count': 6,
 'deposited_polymer_entity_instance_count': 4,
 'deposited_polymer_monomer_count': 574,
 'deposited_solvent_atom_count': 221,
 'deposited_unmodeled_polymer_monomer_count': 0,
 'disulfide_bond_count': 0,
 'entity_count': 5,
 'experimental_method': 'X-ray',
 'experimental_method_count': 1,
 'inter_mol_covalent_bond_count': 0,
 'inter_mol_metalic_bond_count': 4,
 'molecular_weight': 64.74,
 'na_polymer_entity_types': 'Other',
 'nonpolymer_bound_components': ['HEM'],
 'nonpolymer_entity_count': 2,
 'nonpolymer_molecular_weight_maximum': 0.62,
 'nonpolymer_molecular_weight_minimum': 0.09,
 'polymer_composition': 'heteromeric protein',
 'polymer_entity_count': 2,
 'polymer_entity_count_dna': 0,
 'polymer_entity_count_rna': 0,
 'polymer_entity_count_nucleic_acid': 0,
 'polymer_entity_count_nucleic_acid_hybrid': 0,
 'polymer_entity_count_protein': 2,
 'polymer_entity_taxonomy_count': 2,
 'polymer_molecular_weight_maximum': 15.89,
 'polymer_molecular_weight_minimum': 15.15,
 'polymer_monomer_count_maximum': 146,
 'polymer_monomer_count_minimum': 141,
 'resolution_combined': [1.74],
 'selected_polymer_entity_types': 'Protein (only)',
 'solvent_entity_count': 1,
 'structure_determination_methodology': 'experimental',
 'structure_determination_methodology_priority': 10,
 'diffrn_resolution_high': {'provenance_source': 'From refinement resolution cutoff',
  'value': 1.74}}
{'rcsb_cluster_membership': [{'cluster_id': 106, 'identity': 100},
  {'cluster_id': 101, 'identity': 95},
  {'cluster_id': 78, 'identity': 90},
  {'cluster_id': 44, 'identity': 70},
  {'cluster_id': 16, 'identity': 50},
  {'cluster_id': 27, 'identity': 30}],
 'entity_poly': {'nstd_linkage': 'no',
  'nstd_monomer': 'no',
  'pdbx_seq_one_letter_code': 'VLSPADKTNVKAAWGKVGAHAGEYGAEALERMFLSFPTTKTYFPHFDLSHGSAQVKGHGKKVADALTNAVAHVDDMPNALSALSDLHAHKLRVDPVNFKLLSHCLLVTLAAHLPAEFTPAVHASLDKFLASVSTVLTSKYR',
  'pdbx_seq_one_letter_code_can': 'VLSPADKTNVKAAWGKVGAHAGEYGAEALERMFLSFPTTKTYFPHFDLSHGSAQVKGHGKKVADALTNAVAHVDDMPNALSALSDLHAHKLRVDPVNFKLLSHCLLVTLAAHLPAEFTPAVHASLDKFLASVSTVLTSKYR',
  'pdbx_strand_id': 'A,C',
  'rcsb_artifact_monomer_count': 0,
  'rcsb_conflict_count': 0,
  'rcsb_deletion_count': 0,
  'rcsb_entity_polymer_type': 'Protein',
  'rcsb_insertion_count': 0,
  'rcsb_mutation_count': 0,
  'rcsb_non_std_monomer_count': 0,
  'rcsb_sample_sequence_length': 141,
  'type': 'polypeptide(L)'},
 'entity_src_gen': [{'gene_src_common_name': 'Human',
   'gene_src_genus': 'Homo',
   'pdbx_alt_source_flag': 'sample',
   'pdbx_beg_seq_num': 1,
   'pdbx_end_seq_num': 141,
   'pdbx_gene_src_gene': 'HBA1, HBA2',
   'pdbx_gene_src_ncbi_taxonomy_id': '9606',
   'pdbx_gene_src_scientific_name': 'Homo sapiens',
   'pdbx_seq_type': 'Biological sequence',
   'pdbx_src_id': 1}],
 'rcsb_entity_host_organism': [{'beg_seq_num': 1,
   'end_seq_num': 141,
   'pdbx_src_id': '1',
   'provenance_source': 'PDB Primary Data'}],
 'rcsb_entity_source_organism': [{'beg_seq_num': 1,
   'common_name': 'Human',
   'end_seq_num': 141,
   'ncbi_common_names': ['human'],
   'ncbi_parent_scientific_name': 'Eukaryota',
   'ncbi_scientific_name': 'Homo sapiens',
   'ncbi_taxonomy_id': 9606,
   'pdbx_src_id': '1',
   'provenance_source': 'PDB Primary Data',
   'scientific_name': 'Homo sapiens',
   'source_type': 'genetically engineered',
   'taxonomy_lineage': [{'depth': 1,
     'id': '131567',
     'name': 'cellular organisms'},
    {'depth': 1, 'id': '131567', 'name': 'biota'},
    {'depth': 2, 'id': '2759', 'name': 'Eukaryota'},
    {'depth': 2, 'id': '2759', 'name': 'Eucarya'},
    {'depth': 2, 'id': '2759', 'name': 'Eucaryotae'},
    {'depth': 2, 'id': '2759', 'name': 'Eukarya'},
    {'depth': 2, 'id': '2759', 'name': 'Eukaryotae'},
    {'depth': 2, 'id': '2759', 'name': 'eucaryotes'},
    {'depth': 2, 'id': '2759', 'name': 'eukaryotes'},
    {'depth': 3, 'id': '33154', 'name': 'Opisthokonta'},
    {'depth': 3, 'id': '33154', 'name': 'Fungi/Metazoa group'},
    {'depth': 3, 'id': '33154', 'name': 'opisthokonts'},
    {'depth': 4, 'id': '33208', 'name': 'Metazoa'},
    {'depth': 4, 'id': '33208', 'name': 'Animalia'},
    {'depth': 4, 'id': '33208', 'name': 'metazoans'},
    {'depth': 4, 'id': '33208', 'name': 'multicellular animals'},
    {'depth': 5, 'id': '6072', 'name': 'Eumetazoa'},
    {'depth': 6, 'id': '33213', 'name': 'Bilateria'},
    {'depth': 7, 'id': '33511', 'name': 'Deuterostomia'},
    {'depth': 7, 'id': '33511', 'name': 'deuterostomes'},
    {'depth': 8, 'id': '7711', 'name': 'Chordata'},
    {'depth': 8, 'id': '7711', 'name': 'chordates'},
    {'depth': 9, 'id': '89593', 'name': 'Craniata'},
    {'depth': 10, 'id': '7742', 'name': 'Vertebrata'},
    {'depth': 10, 'id': '7742', 'name': 'vertebrates'},
    {'depth': 11, 'id': '7776', 'name': 'Gnathostomata'},
    {'depth': 11, 'id': '7776', 'name': 'jawed vertebrates'},
    {'depth': 12, 'id': '117570', 'name': 'Teleostomi'},
    {'depth': 13, 'id': '117571', 'name': 'Euteleostomi'},
    {'depth': 13, 'id': '117571', 'name': 'bony vertebrates'},
    {'depth': 14, 'id': '8287', 'name': 'Sarcopterygii'},
    {'depth': 15, 'id': '1338369', 'name': 'Dipnotetrapodomorpha'},
    {'depth': 16, 'id': '32523', 'name': 'Tetrapoda'},
    {'depth': 16, 'id': '32523', 'name': 'tetrapods'},
    {'depth': 17, 'id': '32524', 'name': 'Amniota'},
    {'depth': 17, 'id': '32524', 'name': 'amniotes'},
    {'depth': 18, 'id': '40674', 'name': 'Mammalia'},
    {'depth': 18, 'id': '40674', 'name': 'mammals'},
    {'depth': 19, 'id': '32525', 'name': 'Theria'},
    {'depth': 20, 'id': '9347', 'name': 'Eutheria'},
    {'depth': 20, 'id': '9347', 'name': 'Placentalia'},
    {'depth': 20, 'id': '9347', 'name': 'eutherian mammals'},
    {'depth': 20, 'id': '9347', 'name': 'placental mammals'},
    {'depth': 20, 'id': '9347', 'name': 'placentals'},
    {'depth': 21, 'id': '1437010', 'name': 'Boreoeutheria'},
    {'depth': 21, 'id': '1437010', 'name': 'Boreotheria'},
    {'depth': 22, 'id': '314146', 'name': 'Euarchontoglires'},
    {'depth': 23, 'id': '9443', 'name': 'Primates'},
    {'depth': 23, 'id': '9443', 'name': 'Primata'},
    {'depth': 23, 'id': '9443', 'name': 'primate'},
    {'depth': 24, 'id': '376913', 'name': 'Haplorrhini'},
    {'depth': 25, 'id': '314293', 'name': 'Simiiformes'},
    {'depth': 25, 'id': '314293', 'name': 'Anthropoidea'},
    {'depth': 26, 'id': '9526', 'name': 'Catarrhini'},
    {'depth': 27, 'id': '314295', 'name': 'Hominoidea'},
    {'depth': 27, 'id': '314295', 'name': 'ape'},
    {'depth': 27, 'id': '314295', 'name': 'apes'},
    {'depth': 28, 'id': '9604', 'name': 'Hominidae'},
    {'depth': 28, 'id': '9604', 'name': 'Pongidae'},
    {'depth': 28, 'id': '9604', 'name': 'great apes'},
    {'depth': 29, 'id': '207598', 'name': 'Homininae'},
    {'depth': 29, 'id': '207598', 'name': 'Homo/Pan/Gorilla group'},
    {'depth': 30, 'id': '9605', 'name': 'Homo'},
    {'depth': 30, 'id': '9605', 'name': 'humans'},
    {'depth': 31, 'id': '9606', 'name': 'Homo sapiens'},
    {'depth': 31, 'id': '9606', 'name': 'human'}],
   'rcsb_gene_name': [{'provenance_source': 'PDB Primary Data',
     'value': 'HBA1'},
    {'provenance_source': 'PDB Primary Data', 'value': 'HBA2'},
    {'provenance_source': 'UniProt', 'value': 'HBA1'},
    {'provenance_source': 'UniProt', 'value': 'HBA2'}]}],
 'rcsb_polymer_entity': {'formula_weight': 15.15,
  'pdbx_description': 'Hemoglobin subunit alpha',
  'pdbx_number_of_molecules': 2,
  'rcsb_multiple_source_flag': 'N',
  'rcsb_source_part_count': 1,
  'rcsb_source_taxonomy_count': 1,
  'src_method': 'man',
  'rcsb_macromolecular_names_combined': [{'name': 'Hemoglobin subunit alpha',
    'provenance_code': 'ECO:0000304',
    'provenance_source': 'PDB Preferred Name'},
   {'name': 'Alpha-globin',
    'provenance_code': 'ECO:0000303',
    'provenance_source': 'PDB Synonym'},
   {'name': 'Hemoglobin alpha chain',
    'provenance_code': 'ECO:0000303',
    'provenance_source': 'PDB Synonym'}],
  'rcsb_polymer_name_combined': {'names': ['Hemoglobin subunit alpha'],
   'provenance_source': 'UniProt Name'}},
 'rcsb_polymer_entity_align': [{'provenance_source': 'SIFTS',
   'reference_database_accession': 'P69905',
   'reference_database_name': 'UniProt',
   'aligned_regions': [{'entity_beg_seq_id': 1,
     'length': 141,
     'ref_beg_seq_id': 2}]}],
 'rcsb_polymer_entity_annotation': [{'annotation_id': 'PF00042',
   'assignment_version': '34.0',
   'name': 'Globin (Globin)',
   'provenance_source': 'Pfam',
   'type': 'Pfam'},
  {'annotation_id': 'GO:0072562',
   'assignment_version': '200',
   'name': 'blood microparticle',
   'provenance_source': 'UniProt',
   'type': 'GO',
   'annotation_lineage': [{'id': 'GO:0005575', 'name': 'cellular_component'},
    {'id': 'GO:0005576', 'name': 'extracellular region'},
    {'id': 'GO:0005615', 'name': 'extracellular space'},
    {'id': 'GO:0072562', 'name': 'blood microparticle'},
    {'id': 'GO:0110165', 'name': 'cellular anatomical entity'}]},
  {'annotation_id': 'GO:0005829',
   'assignment_version': '200',
   'name': 'cytosol',
   'provenance_source': 'UniProt',
   'type': 'GO',
   'annotation_lineage': [{'id': 'GO:0005575', 'name': 'cellular_component'},
    {'id': 'GO:0005622', 'name': 'intracellular anatomical structure'},
    {'id': 'GO:0005737', 'name': 'cytoplasm'},
    {'id': 'GO:0005829', 'name': 'cytosol'},
    {'id': 'GO:0110165', 'name': 'cellular anatomical entity'}]},
  {'annotation_id': 'GO:0022627',
   'assignment_version': '200',
   'name': 'cytosolic small ribosomal subunit',
   'provenance_source': 'UniProt',
   'type': 'GO',
   'annotation_lineage': [{'id': 'GO:0005575', 'name': 'cellular_component'},
    {'id': 'GO:0005622', 'name': 'intracellular anatomical structure'},
    {'id': 'GO:0005737', 'name': 'cytoplasm'},
    {'id': 'GO:0005829', 'name': 'cytosol'},
    {'id': 'GO:0005840', 'name': 'ribosome'},
    {'id': 'GO:0015935', 'name': 'small ribosomal subunit'},
    {'id': 'GO:0022626', 'name': 'cytosolic ribosome'},
    {'id': 'GO:0022627', 'name': 'cytosolic small ribosomal subunit'},
    {'id': 'GO:0032991', 'name': 'protein-containing complex'},
    {'id': 'GO:0043226', 'name': 'organelle'},
    {'id': 'GO:0043228', 'name': 'non-membrane-bounded organelle'},
    {'id': 'GO:0043229', 'name': 'intracellular organelle'},
    {'id': 'GO:0043232',
     'name': 'intracellular non-membrane-bounded organelle'},
    {'id': 'GO:0044391', 'name': 'ribosomal subunit'},
    {'id': 'GO:0110165', 'name': 'cellular anatomical entity'},
    {'id': 'GO:1990904', 'name': 'ribonucleoprotein complex'}]},
  {'annotation_id': 'GO:0071682',
   'assignment_version': '200',
   'name': 'endocytic vesicle lumen',
   'provenance_source': 'UniProt',
   'type': 'GO',
   'annotation_lineage': [{'id': 'GO:0005575', 'name': 'cellular_component'},
    {'id': 'GO:0005622', 'name': 'intracellular anatomical structure'},
    {'id': 'GO:0005737', 'name': 'cytoplasm'},
    {'id': 'GO:0030139', 'name': 'endocytic vesicle'},
    {'id': 'GO:0031410', 'name': 'cytoplasmic vesicle'},
    {'id': 'GO:0031974', 'name': 'membrane-enclosed lumen'},
    {'id': 'GO:0031982', 'name': 'vesicle'},
    {'id': 'GO:0043226', 'name': 'organelle'},
    {'id': 'GO:0043227', 'name': 'membrane-bounded organelle'},
    {'id': 'GO:0043229', 'name': 'intracellular organelle'},
    {'id': 'GO:0043231', 'name': 'intracellular membrane-bounded organelle'},
    {'id': 'GO:0043233', 'name': 'organelle lumen'},
    {'id': 'GO:0070013', 'name': 'intracellular organelle lumen'},
    {'id': 'GO:0071682', 'name': 'endocytic vesicle lumen'},
    {'id': 'GO:0097708', 'name': 'intracellular vesicle'},
    {'id': 'GO:0110165', 'name': 'cellular anatomical entity'}]},
  {'annotation_id': 'GO:0070062',
   'assignment_version': '200',
   'name': 'extracellular exosome',
   'provenance_source': 'UniProt',
   'type': 'GO',
   'annotation_lineage': [{'id': 'GO:0005575', 'name': 'cellular_component'},
    {'id': 'GO:0005576', 'name': 'extracellular region'},
    {'id': 'GO:0005615', 'name': 'extracellular space'},
    {'id': 'GO:0031982', 'name': 'vesicle'},
    {'id': 'GO:0043226', 'name': 'organelle'},
    {'id': 'GO:0043227', 'name': 'membrane-bounded organelle'},
    {'id': 'GO:0043230', 'name': 'extracellular organelle'},
    {'id': 'GO:0065010', 'name': 'extracellular membrane-bounded organelle'},
    {'id': 'GO:0070062', 'name': 'extracellular exosome'},
    {'id': 'GO:0110165', 'name': 'cellular anatomical entity'},
    {'id': 'GO:1903561', 'name': 'extracellular vesicle'}]},
  {'annotation_id': 'GO:0005576',
   'assignment_version': '200',
   'name': 'extracellular region',
   'provenance_source': 'UniProt',
   'type': 'GO',
   'annotation_lineage': [{'id': 'GO:0005575', 'name': 'cellular_component'},
    {'id': 'GO:0005576', 'name': 'extracellular region'},
    {'id': 'GO:0110165', 'name': 'cellular anatomical entity'}]},
  {'annotation_id': 'GO:0005615',
   'assignment_version': '200',
   'name': 'extracellular space',
   'provenance_source': 'UniProt',
   'type': 'GO',
   'annotation_lineage': [{'id': 'GO:0005575', 'name': 'cellular_component'},
    {'id': 'GO:0005576', 'name': 'extracellular region'},
    {'id': 'GO:0005615', 'name': 'extracellular space'},
    {'id': 'GO:0110165', 'name': 'cellular anatomical entity'}]},
  {'annotation_id': 'GO:0031838',
   'assignment_version': '200',
   'name': 'haptoglobin-hemoglobin complex',
   'provenance_source': 'UniProt',
   'type': 'GO',
   'annotation_lineage': [{'id': 'GO:0005575', 'name': 'cellular_component'},
    {'id': 'GO:0031838', 'name': 'haptoglobin-hemoglobin complex'},
    {'id': 'GO:0032991', 'name': 'protein-containing complex'}]},
  {'annotation_id': 'GO:0005833',
   'assignment_version': '200',
   'name': 'hemoglobin complex',
   'provenance_source': 'UniProt',
   'type': 'GO',
   'annotation_lineage': [{'id': 'GO:0005575', 'name': 'cellular_component'},
    {'id': 'GO:0005622', 'name': 'intracellular anatomical structure'},
    {'id': 'GO:0005737', 'name': 'cytoplasm'},
    {'id': 'GO:0005829', 'name': 'cytosol'},
    {'id': 'GO:0005833', 'name': 'hemoglobin complex'},
    {'id': 'GO:0032991', 'name': 'protein-containing complex'},
    {'id': 'GO:0110165', 'name': 'cellular anatomical entity'}]},
  {'annotation_id': 'GO:0016020',
   'assignment_version': '200',
   'name': 'membrane',
   'provenance_source': 'UniProt',
   'type': 'GO',
   'annotation_lineage': [{'id': 'GO:0005575', 'name': 'cellular_component'},
    {'id': 'GO:0016020', 'name': 'membrane'},
    {'id': 'GO:0110165', 'name': 'cellular anatomical entity'}]},
  {'annotation_id': 'GO:0001664',
   'assignment_version': '200',
   'name': 'G protein-coupled receptor binding',
   'provenance_source': 'UniProt',
   'type': 'GO',
   'annotation_lineage': [{'id': 'GO:0001664',
     'name': 'G protein-coupled receptor binding'},
    {'id': 'GO:0003674', 'name': 'molecular_function'},
    {'id': 'GO:0005102', 'name': 'signaling receptor binding'},
    {'id': 'GO:0005488', 'name': 'binding'},
    {'id': 'GO:0005515', 'name': 'protein binding'}]},
  {'annotation_id': 'GO:0020037',
   'assignment_version': '200',
   'name': 'heme binding',
   'provenance_source': 'UniProt',
   'type': 'GO',
   'annotation_lineage': [{'id': 'GO:0003674', 'name': 'molecular_function'},
    {'id': 'GO:0005488', 'name': 'binding'},
    {'id': 'GO:0020037', 'name': 'heme binding'},
    {'id': 'GO:0046906', 'name': 'tetrapyrrole binding'},
    {'id': 'GO:0097159', 'name': 'organic cyclic compound binding'},
    {'id': 'GO:1901363', 'name': 'heterocyclic compound binding'}]},
  {'annotation_id': 'GO:0005506',
   'assignment_version': '200',
   'name': 'iron ion binding',
   'provenance_source': 'UniProt',
   'type': 'GO',
   'annotation_lineage': [{'id': 'GO:0003674', 'name': 'molecular_function'},
    {'id': 'GO:0005488', 'name': 'binding'},
    {'id': 'GO:0005506', 'name': 'iron ion binding'},
    {'id': 'GO:0043167', 'name': 'ion binding'},
    {'id': 'GO:0043169', 'name': 'cation binding'},
    {'id': 'GO:0046872', 'name': 'metal ion binding'},
    {'id': 'GO:0046914', 'name': 'transition metal ion binding'}]},
  {'annotation_id': 'GO:0043177',
   'assignment_version': '200',
   'name': 'organic acid binding',
   'provenance_source': 'UniProt',
   'type': 'GO',
   'annotation_lineage': [{'id': 'GO:0003674', 'name': 'molecular_function'},
    {'id': 'GO:0005488', 'name': 'binding'},
    {'id': 'GO:0036094', 'name': 'small molecule binding'},
    {'id': 'GO:0043177', 'name': 'organic acid binding'}]},
  {'annotation_id': 'GO:0019825',
   'assignment_version': '200',
   'name': 'oxygen binding',
   'provenance_source': 'UniProt',
   'type': 'GO',
   'annotation_lineage': [{'id': 'GO:0003674', 'name': 'molecular_function'},
    {'id': 'GO:0005488', 'name': 'binding'},
    {'id': 'GO:0019825', 'name': 'oxygen binding'},
    {'id': 'GO:0036094', 'name': 'small molecule binding'}]},
  {'annotation_id': 'GO:0005344',
   'assignment_version': '200',
   'name': 'oxygen carrier activity',
   'provenance_source': 'UniProt',
   'type': 'GO',
   'annotation_lineage': [{'id': 'GO:0003674', 'name': 'molecular_function'},
    {'id': 'GO:0005344', 'name': 'oxygen carrier activity'},
    {'id': 'GO:0140104', 'name': 'molecular carrier activity'}]},
  {'annotation_id': 'GO:0015670',
   'assignment_version': '200',
   'name': 'carbon dioxide transport',
   'provenance_source': 'UniProt',
   'type': 'GO',
   'annotation_lineage': [{'id': 'GO:0006810', 'name': 'transport'},
    {'id': 'GO:0008150', 'name': 'biological_process'},
    {'id': 'GO:0015669', 'name': 'gas transport'},
    {'id': 'GO:0015670', 'name': 'carbon dioxide transport'},
    {'id': 'GO:0019755', 'name': 'one-carbon compound transport'},
    {'id': 'GO:0051179', 'name': 'localization'},
    {'id': 'GO:0051234', 'name': 'establishment of localization'},
    {'id': 'GO:0071702', 'name': 'organic substance transport'}]},
  {'annotation_id': 'GO:0098869',
   'assignment_version': '200',
   'name': 'cellular oxidant detoxification',
   'provenance_source': 'UniProt',
   'type': 'GO',
   'annotation_lineage': [{'id': 'GO:0008150', 'name': 'biological_process'},
    {'id': 'GO:0009636', 'name': 'response to toxic substance'},
    {'id': 'GO:0009987', 'name': 'cellular process'},
    {'id': 'GO:0042221', 'name': 'response to chemical'},
    {'id': 'GO:0050896', 'name': 'response to stimulus'},
    {'id': 'GO:0051716', 'name': 'cellular response to stimulus'},
    {'id': 'GO:0070887', 'name': 'cellular response to chemical stimulus'},
    {'id': 'GO:0097237', 'name': 'cellular response to toxic substance'},
    {'id': 'GO:0098754', 'name': 'detoxification'},
    {'id': 'GO:0098869', 'name': 'cellular oxidant detoxification'},
    {'id': 'GO:1990748', 'name': 'cellular detoxification'}]},
  {'annotation_id': 'GO:0042744',
   'assignment_version': '200',
   'name': 'hydrogen peroxide catabolic process',
   'provenance_source': 'UniProt',
   'type': 'GO',
   'annotation_lineage': [{'id': 'GO:0008150', 'name': 'biological_process'},
    {'id': 'GO:0008152', 'name': 'metabolic process'},
    {'id': 'GO:0009056', 'name': 'catabolic process'},
    {'id': 'GO:0009987', 'name': 'cellular process'},
    {'id': 'GO:0042743', 'name': 'hydrogen peroxide metabolic process'},
    {'id': 'GO:0042744', 'name': 'hydrogen peroxide catabolic process'},
    {'id': 'GO:0044237', 'name': 'cellular metabolic process'},
    {'id': 'GO:0044248', 'name': 'cellular catabolic process'},
    {'id': 'GO:0072593',
     'name': 'reactive oxygen species metabolic process'}]},
  {'annotation_id': 'GO:0030185',
   'assignment_version': '200',
   'name': 'nitric oxide transport',
   'provenance_source': 'UniProt',
   'type': 'GO',
   'annotation_lineage': [{'id': 'GO:0006810', 'name': 'transport'},
    {'id': 'GO:0008150', 'name': 'biological_process'},
    {'id': 'GO:0030185', 'name': 'nitric oxide transport'},
    {'id': 'GO:0051179', 'name': 'localization'},
    {'id': 'GO:0051234', 'name': 'establishment of localization'},
    {'id': 'GO:0071705', 'name': 'nitrogen compound transport'}]},
  {'annotation_id': 'GO:0015671',
   'assignment_version': '200',
   'name': 'oxygen transport',
   'provenance_source': 'UniProt',
   'type': 'GO',
   'annotation_lineage': [{'id': 'GO:0006810', 'name': 'transport'},
    {'id': 'GO:0008150', 'name': 'biological_process'},
    {'id': 'GO:0015669', 'name': 'gas transport'},
    {'id': 'GO:0015671', 'name': 'oxygen transport'},
    {'id': 'GO:0051179', 'name': 'localization'},
    {'id': 'GO:0051234', 'name': 'establishment of localization'}]},
  {'annotation_id': 'GO:0010942',
   'assignment_version': '200',
   'name': 'positive regulation of cell death',
   'provenance_source': 'UniProt',
   'type': 'GO',
   'annotation_lineage': [{'id': 'GO:0008150', 'name': 'biological_process'},
    {'id': 'GO:0008219', 'name': 'cell death'},
    {'id': 'GO:0009987', 'name': 'cellular process'},
    {'id': 'GO:0010941', 'name': 'regulation of cell death'},
    {'id': 'GO:0010942', 'name': 'positive regulation of cell death'},
    {'id': 'GO:0048518', 'name': 'positive regulation of biological process'},
    {'id': 'GO:0048522', 'name': 'positive regulation of cellular process'},
    {'id': 'GO:0050789', 'name': 'regulation of biological process'},
    {'id': 'GO:0050794', 'name': 'regulation of cellular process'},
    {'id': 'GO:0065007', 'name': 'biological regulation'}]},
  {'annotation_id': 'GO:0042542',
   'assignment_version': '200',
   'name': 'response to hydrogen peroxide',
   'provenance_source': 'UniProt',
   'type': 'GO',
   'annotation_lineage': [{'id': 'GO:0000302',
     'name': 'response to reactive oxygen species'},
    {'id': 'GO:0006950', 'name': 'response to stress'},
    {'id': 'GO:0006979', 'name': 'response to oxidative stress'},
    {'id': 'GO:0008150', 'name': 'biological_process'},
    {'id': 'GO:0010035', 'name': 'response to inorganic substance'},
    {'id': 'GO:0042221', 'name': 'response to chemical'},
    {'id': 'GO:0042542', 'name': 'response to hydrogen peroxide'},
    {'id': 'GO:0050896', 'name': 'response to stimulus'},
    {'id': 'GO:1901700', 'name': 'response to oxygen-containing compound'}]},
  {'annotation_id': 'IPR000971',
   'assignment_version': '200',
   'name': 'Globin',
   'provenance_source': 'UniProt',
   'type': 'InterPro',
   'annotation_lineage': [{'depth': 1, 'id': 'IPR000971', 'name': 'Globin'}]},
  {'annotation_id': 'IPR009050',
   'assignment_version': '200',
   'name': 'Globin-like superfamily',
   'provenance_source': 'UniProt',
   'type': 'InterPro',
   'annotation_lineage': [{'depth': 1,
     'id': 'IPR009050',
     'name': 'Globin-like superfamily'}]},
  {'annotation_id': 'IPR012292',
   'assignment_version': '200',
   'name': 'Globin/Protoglobin',
   'provenance_source': 'UniProt',
   'type': 'InterPro',
   'annotation_lineage': [{'depth': 1,
     'id': 'IPR012292',
     'name': 'Globin/Protoglobin'}]},
  {'annotation_id': 'IPR002338',
   'assignment_version': '200',
   'name': 'Hemoglobin, alpha-type',
   'provenance_source': 'UniProt',
   'type': 'InterPro',
   'annotation_lineage': [{'depth': 1,
     'id': 'IPR002338',
     'name': 'Hemoglobin, alpha-type'}]},
  {'annotation_id': 'IPR002339',
   'assignment_version': '200',
   'name': 'Hemoglobin, pi',
   'provenance_source': 'UniProt',
   'type': 'InterPro',
   'annotation_lineage': [{'depth': 1,
     'id': 'IPR002338',
     'name': 'Hemoglobin, alpha-type'},
    {'depth': 2, 'id': 'IPR002339', 'name': 'Hemoglobin, pi'}]},
  {'annotation_id': 'P69905',
   'assignment_version': '1.0',
   'name': 'Glycoprotein',
   'provenance_source': 'PDB',
   'type': 'GlyGen'}],
 'rcsb_polymer_entity_container_identifiers': {'asym_ids': ['A', 'C'],
  'auth_asym_ids': ['A', 'C'],
  'chem_comp_monomers': ['ALA',
   'ARG',
   'ASN',
   'ASP',
   'CYS',
   'GLN',
   'GLU',
   'GLY',
   'HIS',
   'LEU',
   'LYS',
   'MET',
   'PHE',
   'PRO',
   'SER',
   'THR',
   'TRP',
   'TYR',
   'VAL'],
  'entity_id': '1',
  'entry_id': '4HHB',
  'rcsb_id': '4HHB_1',
  'reference_sequence_identifiers': [{'database_accession': 'P69905',
    'database_name': 'UniProt',
    'provenance_source': 'SIFTS'}],
  'uniprot_ids': ['P69905']},
 'rcsb_polymer_entity_feature': [{'assignment_version': '34.0',
   'feature_id': 'PF00042',
   'name': 'Globin (Globin)',
   'provenance_source': 'Pfam',
   'type': 'Pfam',
   'feature_positions': [{'beg_seq_id': 26, 'end_seq_id': 136}]},
  {'name': 'Hydropathy values',
   'provenance_source': 'biojava-aa-prop-6.0.5',
   'type': 'hydropathy',
   'feature_positions': [{'beg_seq_id': 5,
     'values': [-0.47,
      -0.47,
      -1.32,
      -1.03,
      -0.66,
      -0.96,
      -0.61,
      -0.61,
      -0.07,
      0.28,
      0.01,
      0.09,
      0.09,
      -0.16,
      -0.44,
      -0.54,
      -0.16,
      -0.42,
      -0.77,
      -0.77,
      0.01,
      -0.58,
      -1.03,
      -0.43,
      0.02,
      0.49,
      0.2,
      0.9,
      0.52,
      0.02,
      0.33,
      0.4,
      0.11,
      -0.34,
      -0.46,
      -0.54,
      -1.21,
      -0.72,
      -1.03,
      -0.53,
      -0.19,
      -0.47,
      -0.37,
      -0.77,
      -0.39,
      -0.42,
      -0.27,
      -0.31,
      -0.78,
      -1.04,
      -0.73,
      -1.12,
      -1.47,
      -1.2,
      -0.61,
      -1.47,
      -0.83,
      -0.37,
      -0.09,
      -0.43,
      0.2,
      1.1,
      0.83,
      0.28,
      1.13,
      0.54,
      -0.27,
      0.02,
      0.23,
      -0.36,
      -0.62,
      -0.4,
      -0.13,
      -0.4,
      0.41,
      0.71,
      0.11,
      0.71,
      0.74,
      0.74,
      -0.03,
      -0.38,
      -0.16,
      -1.08,
      -0.52,
      -0.52,
      -1.12,
      -0.3,
      -0.89,
      -0.22,
      -0.22,
      -0.22,
      0.7,
      0.14,
      0.18,
      0.63,
      0.59,
      1.4,
      1.56,
      1.91,
      1.91,
      1.69,
      1.98,
      1.98,
      2.12,
      1.52,
      1.3,
      0.44,
      0.83,
      0.33,
      -0.04,
      -0.04,
      0.78,
      0.0,
      0.38,
      0.09,
      0.9,
      0.2,
      -0.16,
      0.33,
      0.56,
      0.29,
      0.56,
      0.82,
      0.82,
      0.32,
      1.18,
      2.03,
      1.64,
      1.13,
      0.5,
      0.44,
      -0.52]}]},
  {'name': 'Disordered binding sites',
   'provenance_source': 'Anchor2',
   'type': 'disorder_binding',
   'feature_positions': [{'beg_seq_id': 1,
     'values': [0.39,
      0.38,
      0.37,
      0.36,
      0.36,
      0.36,
      0.35,
      0.35,
      0.35,
      0.35,
      0.36,
      0.37,
      0.38,
      0.39,
      0.39,
      0.39,
      0.39,
      0.39,
      0.4,
      0.4,
      0.39,
      0.39,
      0.4,
      0.41,
      0.42,
      0.42,
      0.4,
      0.39,
      0.37,
      0.36,
      0.36,
      0.35,
      0.35,
      0.35,
      0.36,
      0.37,
      0.38,
      0.39,
      0.4,
      0.41,
      0.41,
      0.41,
      0.4,
      0.39,
      0.39,
      0.38,
      0.38,
      0.38,
      0.38,
      0.38,
      0.39,
      0.4,
      0.4,
      0.41,
      0.42,
      0.43,
      0.42,
      0.42,
      0.4,
      0.4,
      0.39,
      0.38,
      0.38,
      0.37,
      0.36,
      0.36,
      0.36,
      0.36,
      0.36,
      0.36,
      0.36,
      0.37,
      0.37,
      0.37,
      0.38,
      0.39,
      0.39,
      0.4,
      0.41,
      0.42,
      0.42,
      0.43,
      0.43,
      0.42,
      0.41,
      0.4,
      0.4,
      0.41,
      0.41,
      0.42,
      0.43,
      0.42,
      0.4,
      0.38,
      0.37,
      0.35,
      0.34,
      0.32,
      0.32,
      0.31,
      0.31,
      0.31,
      0.31,
      0.3,
      0.3,
      0.29,
      0.28,
      0.26,
      0.25,
      0.23,
      0.21,
      0.2,
      0.19,
      0.17,
      0.15,
      0.14,
      0.13,
      0.12,
      0.12,
      0.11,
      0.11,
      0.11,
      0.1,
      0.09,
      0.09,
      0.09,
      0.09,
      0.08,
      0.08,
      0.08,
      0.07,
      0.07,
      0.07,
      0.07,
      0.07,
      0.08,
      0.08,
      0.08,
      0.08,
      0.08,
      0.09]}]},
  {'name': 'Disordered regions',
   'provenance_source': 'IUPred2(short)',
   'type': 'disorder',
   'feature_positions': [{'beg_seq_id': 1,
     'values': [0.9,
      0.85,
      0.79,
      0.68,
      0.64,
      0.6,
      0.5,
      0.46,
      0.38,
      0.34,
      0.27,
      0.31,
      0.37,
      0.28,
      0.26,
      0.26,
      0.27,
      0.24,
      0.18,
      0.19,
      0.26,
      0.23,
      0.18,
      0.16,
      0.21,
      0.15,
      0.17,
      0.22,
      0.22,
      0.26,
      0.25,
      0.21,
      0.14,
      0.15,
      0.24,
      0.16,
      0.19,
      0.12,
      0.13,
      0.19,
      0.17,
      0.17,
      0.18,
      0.27,
      0.28,
      0.29,
      0.37,
      0.35,
      0.35,
      0.35,
      0.35,
      0.31,
      0.36,
      0.44,
      0.38,
      0.31,
      0.38,
      0.39,
      0.44,
      0.39,
      0.37,
      0.38,
      0.32,
      0.35,
      0.33,
      0.35,
      0.38,
      0.39,
      0.36,
      0.28,
      0.29,
      0.26,
      0.22,
      0.24,
      0.24,
      0.18,
      0.25,
      0.21,
      0.2,
      0.23,
      0.18,
      0.21,
      0.14,
      0.18,
      0.21,
      0.15,
      0.18,
      0.08,
      0.08,
      0.05,
      0.05,
      0.05,
      0.06,
      0.06,
      0.03,
      0.02,
      0.02,
      0.02,
      0.01,
      0.01,
      0.01,
      0.01,
      0.01,
      0.01,
      0.01,
      0.01,
      0.01,
      0.01,
      0.02,
      0.01,
      0.01,
      0.02,
      0.02,
      0.02,
      0.01,
      0.03,
      0.05,
      0.04,
      0.03,
      0.04,
      0.04,
      0.03,
      0.03,
      0.06,
      0.03,
      0.03,
      0.02,
      0.05,
      0.05,
      0.03,
      0.03,
      0.07,
      0.1,
      0.16,
      0.2,
      0.34,
      0.38,
      0.41,
      0.57,
      0.69,
      0.76]}]}],
 'rcsb_polymer_entity_feature_summary': [{'count': 0,
   'coverage': 0.0,
   'type': 'CARD_MODEL'},
  {'count': 0, 'coverage': 0.0, 'type': 'IMGT_ANTIBODY_DESCRIPTION'},
  {'count': 0, 'coverage': 0.0, 'type': 'IMGT_ANTIBODY_DOMAIN_NAME'},
  {'count': 0, 'coverage': 0.0, 'type': 'IMGT_ANTIBODY_GENE_ALLELE_NAME'},
  {'count': 0, 'coverage': 0.0, 'type': 'IMGT_ANTIBODY_ORGANISM_NAME'},
  {'count': 0, 'coverage': 0.0, 'type': 'IMGT_ANTIBODY_PROTEIN_NAME'},
  {'count': 0, 'coverage': 0.0, 'type': 'IMGT_ANTIBODY_RECEPTOR_DESCRIPTION'},
  {'count': 0, 'coverage': 0.0, 'type': 'IMGT_ANTIBODY_RECEPTOR_TYPE'},
  {'count': 1, 'coverage': 0.78723, 'type': 'Pfam'},
  {'count': 0, 'coverage': 0.0, 'type': 'SABDAB_ANTIBODY_ANTIGEN_NAME'},
  {'count': 0, 'coverage': 0.0, 'type': 'SABDAB_ANTIBODY_NAME'},
  {'count': 0, 'coverage': 0.0, 'type': 'SABDAB_ANTIBODY_TARGET'},
  {'count': 0, 'coverage': 0.0, 'type': 'artifact'},
  {'count': 0, 'coverage': 0.0, 'type': 'modified_monomer'},
  {'count': 0, 'coverage': 0.0, 'type': 'mutation'}],
 'rcsb_polymer_entity_name_com': [{'name': 'Alpha-globin,Hemoglobin alpha chain'}],
 'rcsb_related_target_references': [{'related_resource_name': 'ChEMBL',
   'related_resource_version': '29',
   'related_target_id': 'CHEMBL2095168',
   'target_taxonomy_id': 9606,
   'aligned_target': [{'entity_beg_seq_id': 1,
     'length': 140,
     'target_beg_seq_id': 2}]},
  {'related_resource_name': 'ChEMBL',
   'related_resource_version': '29',
   'related_target_id': 'CHEMBL2887',
   'target_taxonomy_id': 9606,
   'aligned_target': [{'entity_beg_seq_id': 1,
     'length': 140,
     'target_beg_seq_id': 2}]},
  {'related_resource_name': 'DrugBank',
   'related_resource_version': '5.1',
   'related_target_id': 'P69905',
   'target_taxonomy_id': 9606,
   'aligned_target': [{'entity_beg_seq_id': 1,
     'length': 140,
     'target_beg_seq_id': 2}]},
  {'related_resource_name': 'Pharos',
   'related_resource_version': '6.11.0',
   'related_target_id': '6231',
   'target_taxonomy_id': 9606,
   'aligned_target': [{'entity_beg_seq_id': 1,
     'length': 140,
     'target_beg_seq_id': 2}]}],
 'rcsb_target_cofactors': [{'cofactor_name': 'Iron Dextran',
   'cofactor_resource_id': 'DB00893',
   'mechanism_of_action': 'After iron dextran is injected, the circulating iron dextran is removed from the plasma by cells of the reticuloendothelial system, which split the complex into its components of iron and dextran. The iron is immediately bound to the available protein moieties to form hemosiderin or ferritin, the physiological forms of iron, or to a lesser extent to transferrin. This iron which is subject to physiological control replenishes hemoglobin and depleted iron stores.',
   'neighbor_flag': 'N',
   'pubmed_ids': [17139284, 17016423, 11752352],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'XEEYBQQBJWHFJM-UHFFFAOYSA-N',
   'cofactor_smiles': '[Fe]',
   'cofactor_name': 'Iron',
   'cofactor_resource_id': 'DB01592',
   'mechanism_of_action': 'Iron is necessary for the production of hemoglobin. Iron-deficiency can lead to decreased production of hemoglobin and a microcytic, hypochromic anemia.',
   'neighbor_flag': 'N',
   'pubmed_ids': [16901899],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'HCHKCACWOHOZIP-UHFFFAOYSA-N',
   'cofactor_smiles': '[Zn]',
   'cofactor_name': 'Zinc',
   'cofactor_resource_id': 'DB01593',
   'mechanism_of_action': '**Zinc has three primary biological roles**: _catalytic_, _structural_, and _regulatory_. The catalytic and structural role of zinc is well established, and there are various noteworthy reviews on these functions. For example, zinc is a structural constituent in numerous proteins, inclusive of growth factors, cytokines, receptors, enzymes, and transcription factors for different cellular signaling pathways. It is implicated in numerous cellular processes as a cofactor for approximately 3000 human proteins including enzymes, nuclear factors, and hormones [L2096].\r\n\r\nZinc promotes resistance to epithelial apoptosis through cell protection (cytoprotection) against reactive oxygen species and bacterial toxins, likely through the antioxidant activity of the cysteine-rich metallothioneins [A32419].\r\n\r\nIn HL-60 cells (promyelocytic leukemia cell line), zinc enhances the up-regulation of A20 mRNA, which, via TRAF pathway, decreases NF-kappaB activation, leading to decreased gene expression and generation of tumor necrosis factor-alpha (TNF-alpha), IL-1beta, and IL-8 [A32418].\r\n\r\nThere are several mechanisms of action of zinc on acute diarrhea. Various mechanisms are specific to the gastrointestinal system: zinc restores mucosal barrier integrity and enterocyte brush-border enzyme activity, it promotes the production of antibodies and circulating lymphocytes against intestinal pathogens, and has a direct effect on ion channels, acting as a potassium channel blocker of adenosine 3-5-cyclic monophosphate-mediated chlorine secretion. Cochrane researchers examined the evidence available up to 30 September 2016 [L2106].\r\n\r\nZinc deficiency in humans decreases the activity of serum _thymulin_ (a hormone of the thymus), which is necessary for the maturation of T-helper cells. T-helper 1 (Th(1)) cytokines are decreased but T-helper 2 (Th(2)) cytokines are not affected by zinc deficiency in humans [A342417].\r\n\r\nThe change of _Th(1)_ to _Th(2)_ function leads to cell-mediated immune dysfunction. Because IL-2 production (Th(1) cytokine) is decreased, this causes decreased activity of natural-killer-cell (NK cell) and T cytolytic cells, normally involved in killing viruses, bacteria, and malignant cells [A3424]. \r\n\r\nIn humans, zinc deficiency may lead to the generation of new CD4+ T cells, produced in the thymus. In cell culture studies (HUT-78, a Th(0) human malignant lymphoblastoid cell line), as a result of zinc deficiency, nuclear factor-kappaB (NF-kappaB) activation, phosphorylation of IkappaB, and binding of NF-kappaB to DNA are decreased and this results in decreased Th(1) cytokine production [A32417].\r\n\r\nIn another study, zinc supplementation in human subjects suppressed the gene expression and production of pro-inflammatory cytokines and decreased oxidative stress markers [A3424]. In HL-60 cells (a human pro-myelocytic leukemia cell line), zinc deficiency increased the levels of TNF-alpha, IL-1beta, and IL-8 cytokines and mRNA. In such cells, zinc was found to induce A20, a zinc finger protein that inhibited NF-kappaB activation by the tumor necrosis factor receptor-associated factor pathway. This process decreased gene expression of pro-inflammatory cytokines and oxidative stress markers [A32417].\r\n\r\nThe exact mechanism of zinc in acne treatment is poorly understood. However, zinc is considered to act directly on microbial inflammatory equilibrium and facilitate antibiotic absorption when used in combination with other agents. Topical zinc alone as well as in combination with other agents may be efficacious because of its anti-inflammatory activity and ability to reduce P. acnes bacteria by the inhibition of P. acnes lipases and free fatty acid levels [L2102].',
   'neighbor_flag': 'N',
   'pubmed_ids': [23896426],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'HAEJSGLKJYIYTB-ZZXKWVIFSA-N',
   'cofactor_smiles': 'OC(=O)\\C=C\\C1=CC=C(C=C1)C(O)=O',
   'cofactor_chem_comp_id': 'CIN',
   'cofactor_name': '4-Carboxycinnamic Acid',
   'cofactor_resource_id': 'DB02126',
   'neighbor_flag': 'N',
   'pubmed_ids': [10592235],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'TZRXHJWUDPFEEY-UHFFFAOYSA-N',
   'cofactor_smiles': '[O-][N+](=O)OCC(CO[N+]([O-])=O)(CO[N+]([O-])=O)CO[N+]([O-])=O',
   'cofactor_name': 'Pentaerythritol tetranitrate',
   'cofactor_resource_id': 'DB06154',
   'mechanism_of_action': 'Pentaerythritol tetranitrate is the lipid soluble polyol ester of nitric acid belonging to the family of _nitro-vasodilators_. Pentaerythritol tetranitrate releases free nitric oxide (NO) after the denitration reaction, which triggers NO-dependent signaling transduction involving soluble _guanylate cyclase (sGC_). Nitric oxide binds reversibly to the ferrous-heme center of sGC, causing conformational change and activating the enzyme. This enzyme activation results in increased cellular concentrations of _cyclic guanosine monophosphate _(cGMP) within the vascular smooth muscle, resulting in vasodilation mediated by cGMP-dependent protein kinases. Additionally, this agent causes dose-dependent arterial and venous bed [L2393].',
   'neighbor_flag': 'N',
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'AVXQTLSOXWQOHO-UHFFFAOYSA-N',
   'cofactor_smiles': 'COC1=C(OCC2=NC=CC=C2)C=C(C)C=C1',
   'cofactor_chem_comp_id': 'B77',
   'cofactor_name': '2-[(2-methoxy-5-methylphenoxy)methyl]pyridine',
   'cofactor_resource_id': 'DB07427',
   'neighbor_flag': 'Y',
   'pubmed_ids': [10592235],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'MBHBRRBLXCXQKV-UHFFFAOYSA-N',
   'cofactor_smiles': 'COC1=CC(OCC2=CC=NC=C2)=C(C)C=C1',
   'cofactor_chem_comp_id': 'B78',
   'cofactor_name': '4-[(5-methoxy-2-methylphenoxy)methyl]pyridine',
   'cofactor_resource_id': 'DB07428',
   'neighbor_flag': 'Y',
   'pubmed_ids': [10592235],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'CXMXRPHRNRROMY-UHFFFAOYSA-N',
   'cofactor_smiles': 'OC(=O)CCCCCCCCC(O)=O',
   'cofactor_chem_comp_id': 'DEC',
   'cofactor_name': 'Sebacic acid',
   'cofactor_resource_id': 'DB07645',
   'neighbor_flag': 'N',
   'pubmed_ids': [10592235],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'OYJPTSMWFKGZJM-UHFFFAOYSA-N',
   'cofactor_smiles': 'CC(C)(OC1=CC=C(NC(=O)NC2=CC(Cl)=CC(Cl)=C2)C=C1)C(O)=O',
   'cofactor_chem_comp_id': 'L35',
   'cofactor_name': '2-[4-({[(3,5-DICHLOROPHENYL)AMINO]CARBONYL}AMINO)PHENOXY]-2-METHYLPROPANOIC ACID',
   'cofactor_resource_id': 'DB08077',
   'neighbor_flag': 'Y',
   'pubmed_ids': [10592235],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'RXOHFPCZGPKIRD-UHFFFAOYSA-N',
   'cofactor_smiles': 'OC(=O)C1=CC2=CC=C(C=C2C=C1)C(O)=O',
   'cofactor_chem_comp_id': 'NDD',
   'cofactor_name': '2,6-dicarboxynaphthalene',
   'cofactor_resource_id': 'DB08262',
   'neighbor_flag': 'N',
   'pubmed_ids': [10592235],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'BNFRJXLZYUTIII-UHFFFAOYSA-N',
   'cofactor_smiles': 'CC1=CC(NC(=O)CC2=CC=C(OC(C)(C)C(O)=O)C=C2)=CC(C)=C1',
   'cofactor_chem_comp_id': 'RQ3',
   'cofactor_name': 'Efaproxiral',
   'cofactor_resource_id': 'DB08486',
   'neighbor_flag': 'Y',
   'pubmed_ids': [10592235],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'QMKYBPDZANOJGF-UHFFFAOYSA-N',
   'cofactor_smiles': 'OC(=O)C1=CC(=CC(=C1)C(O)=O)C(O)=O',
   'cofactor_chem_comp_id': 'TMM',
   'cofactor_name': 'Trimesic acid',
   'cofactor_resource_id': 'DB08632',
   'neighbor_flag': 'N',
   'pubmed_ids': [10592235],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'IOVCWXUNBOPUCH-UHFFFAOYSA-N',
   'cofactor_smiles': 'ON=O',
   'cofactor_name': 'Nitrous acid',
   'cofactor_resource_id': 'DB09112',
   'mechanism_of_action': 'Cyanide has a high affinity for the oxidized form of iron (Fe3+) such as that found in cytochrome oxidase a3 [A19441]. Cyanide binds to and inhibits cytochrome oxidase a3, preventing oxidative phophorylation from occuring. The resultant lack of ATP cannot support normal cellular processes, particularly in the brain. Compensatory increases in anaerobic respiration result in rising levels of lactic acid and subsequent acidosis. \r\n\r\nNitrite primarily acts by oxidizing hemoglobin to methemoglobin [A19440]. The now oxidized Fe3+ in methemoglobin also binds cyanide with high affinity and accepts cyanide from cytochrome a3. This leaves cytochrome a3 free to resume its function in oxidative phosphorylation. The slow dissociation of cyanide from methemoglobin allows hepatic enzymes such as rhodanese to detoxify the compound without further systemic toxicity occuring. Methemoglobin is reduced back to hemoglobin by methemoglobin reductase allowing the affected blood cells to resume normal functioning.\r\n\r\nThe reduction of nitrite by hemoglobin results in the formation of nitric oxide [A19442]. Nitric oxide acts as a powerful vasodilator, producing vascular smooth muscle relaxation through activation of soluble guanylate cyclase and the subsequent cyclic guanylyl triphosphate mediated signalling cascade [A19443].',
   'neighbor_flag': 'N',
   'pubmed_ids': [1569239],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'RYGMFSIKBFXOCR-UHFFFAOYSA-N',
   'cofactor_smiles': '[Cu]',
   'cofactor_name': 'Copper',
   'cofactor_resource_id': 'DB09130',
   'mechanism_of_action': "Copper is absorbed from the gut via high affinity copper uptake protein and likely through low affinity copper uptake protein and natural resistance-associated macrophage protein-2 [A19528]. It is believed that copper is reduced to the Cu1+ form prior to transport. Once inside the enterocyte, it is bound to copper transport protein ATOX1 which shuttles the ion to copper transporting ATPase-1 on the golgi membrane which take up copper into the golgi apparatus. Once copper has been secreted by enterocytes into the systemic circulation it remain largely bound by ceruloplasmin (65-90%), albumin (18%), and alpha 2-macroglobulin (12%). \r\n\r\nCopper is an essential element in the body and is incorporated into many oxidase enzymes as a cofactor [A19518]. It is also a component of zinc/copper super oxide dismutase, giving it an anti-oxidant role. Copper defiency occurs in Occipital Horn Syndrome and Menke's disease both of which are associated with impaired development of connective tissue due to the lack of copper to act as a cofactor in protein-lysine-6-oxidase. Menke's disease is also associated with progressive neurological impairment leading to death in infancy. The precise mechanisms of the effects of copper deficiency are vague due to the wide range of enzymes which use the ion as a cofactor.\r\n\r\nCopper appears to reduce the viabilty and motility of spermatozoa [A19526]. This reduces the likelyhood of fertilization with a copper IUD, producing copper's contraceptive effect [A19526]. The exact mechanism of copper's effect on sperm are unknown.",
   'neighbor_flag': 'N',
   'pubmed_ids': [23896426],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'MYMOFIZGZYHOMD-UHFFFAOYSA-N',
   'cofactor_smiles': 'O=O',
   'cofactor_chem_comp_id': 'OXY',
   'cofactor_name': 'Oxygen',
   'cofactor_resource_id': 'DB09140',
   'mechanism_of_action': 'Oxygen therapy increases the arterial pressure of oxygen and is effective in improving gas exchange and oxygen delivery to tissues, provided that there are functional alveolar units. Oxygen plays a critical role as an electron acceptor during oxidative phosphorylation in the electron transport chain through activation of cytochrome c oxidase (terminal enzyme of the electron transport chain). This process achieves successful aerobic respiration in organisms to generate ATP molecules as an energy source in many tissues. Oxygen supplementation acts to restore normal cellular activity at the mitochondrial level and reduce metabolic acidosis. There is also evidence that oxygen may interact with O2-sensitive voltage-gated potassium channels in glomus cells and cause hyperpolarization of mitochondrial membrane [A19120]. ',
   'neighbor_flag': 'Y',
   'pubmed_ids': [1634355],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'CADNYOZXMIKYPR-UHFFFAOYSA-B',
   'cofactor_smiles': '[Fe+3].[Fe+3].[Fe+3].[Fe+3].[O-]P([O-])(=O)OP([O-])([O-])=O.[O-]P([O-])(=O)OP([O-])([O-])=O.[O-]P([O-])(=O)OP([O-])([O-])=O',
   'cofactor_name': 'Ferric pyrophosphate',
   'cofactor_resource_id': 'DB09147',
   'mechanism_of_action': 'The usage of ferric pyrophosphate is based on the strong complex formation between these two species. Besides, the capacity of pyrophosphate to trigger iron removal from transferrin, enhance iron transfer from transferrin to ferritin and promote iron exchange between transferrin molecules. These properties make it a very suitable compound for parenteral administration, iron delivery into circulation and incorporation into hemoglobin.[A31979]',
   'neighbor_flag': 'N',
   'pubmed_ids': [10231452],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'MQBDAEHWGRMADS-XNHLMZCASA-M',
   'cofactor_smiles': '[O--].[O--].[O--].[Na+].[Fe+3].[Fe+3].OC[C@@H](O)[C@@H](O)[C@H](O)[C@@H](O)C([O-])=O.OC[C@H]1O[C@@](CO)(O[C@H]2O[C@H](CO)[C@@H](O)[C@H](O)[C@H]2O)[C@@H](O)[C@@H]1O.OC[C@H]1O[C@@](CO)(O[C@H]2O[C@H](CO)[C@@H](O)[C@H](O)[C@H]2O)[C@@H](O)[C@@H]1O.OC[C@H]1O[C@@](CO)(O[C@H]2O[C@H](CO)[C@@H](O)[C@H](O)[C@H]2O)[C@@H](O)[C@@H]1O.OC[C@H]1O[C@@](CO)(O[C@H]2O[C@H](CO)[C@@H](O)[C@H](O)[C@H]2O)[C@@H](O)[C@@H]1O.OC[C@H]1O[C@@](CO)(O[C@H]2O[C@H](CO)[C@@H](O)[C@H](O)[C@H]2O)[C@@H](O)[C@@H]1O',
   'cofactor_name': 'Sodium ferric gluconate complex',
   'cofactor_resource_id': 'DB09517',
   'mechanism_of_action': 'The complex is endocytosed by macrophages of the reticuloendothelial system. Within an endosome of the macrophage , lysosome fuses with the endosome creating an acidic environment leading to the cleavage of the complex from iron. Iron is then incorporated in ferritin, transferrin or hemoglobin. Sodium ferric gluconate also normalizes RBC production by binding with hemoglobin ',
   'neighbor_flag': 'N',
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'BAUYGSIQEAFULO-UHFFFAOYSA-L',
   'cofactor_smiles': '[Fe++].[O-]S([O-])(=O)=O',
   'cofactor_name': 'Ferrous sulfate anhydrous',
   'cofactor_resource_id': 'DB13257',
   'mechanism_of_action': 'Iron is required to maintain optimal health, particularly for helping to form red blood cells (RBC) that carry oxygen around the body. A deficiency in iron indicates that the body cannot produce enough normal red blood cells.[A32514,L11800] Iron deficiency anemia occurs when body stores of iron decrease to very low levels, and the stored iron is insufficient to support normal red blood cell (RBC) production. Insufficient dietary iron, impaired iron absorption, bleeding, pregnancy, or loss of iron through the urine can lead to iron deficiency.[A32514,L11794]  Symptoms of iron deficiency anemia include fatigue, breathlessness, palpitations, dizziness, and headache.\r\n\r\nTaking iron in supplement form, such as ferrous sulfate, allows for more rapid increases in iron levels when dietary supply and stores are not sufficient.[L2175] Iron is transported by the divalent metal transporter 1 (DMT1) across the endolysosomal membrane to enter the macrophage. It can then can be incorporated into ferritin and be stored in the macrophage or carried of the macrophage by ferroportin. This exported iron is  oxidized by the enzyme to ceruloplasmin to Fe3+, followed by sequestration by transferrin for transport in the serum to various sites, including the bone marrow for hemoglobin synthesis or into the liver.[A32524] Iron combines with porphyrin and globin chains to form hemoglobin, which is critical for oxygen delivery from the lungs to other tissues.[L2263]',
   'neighbor_flag': 'N',
   'pubmed_ids': [24310424, 21694802, 18954837],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'SXAWSYZURCZSDX-UHFFFAOYSA-B',
   'cofactor_smiles': '[Fe+3].[Fe+3].[Fe+3].[Fe+3].OP(O)(=O)OP(O)(O)=O.OP(O)(=O)OP(O)(O)=O.OP([O-])(=O)OP([O-])([O-])=O.OC(CC([O-])=O)(CC([O-])=O)C([O-])=O.OC(CC([O-])=O)(CC([O-])=O)C([O-])=O.OC(CC([O-])=O)(CC([O-])=O)C([O-])=O',
   'cofactor_name': 'Ferric pyrophosphate citrate',
   'cofactor_resource_id': 'DB13995',
   'mechanism_of_action': 'The usage of ferric pyrophosphate is based on the strong complex formation between these two species. Besides, the capacity of pyrophosphate to trigger iron removal from transferrin, enhance iron transfer from transferrin to ferritin and promote iron exchange between transferrin molecules. These properties make it a very suitable compound for parenteral administration, iron delivery into circulation and incorporation into hemoglobin.[A31979]',
   'neighbor_flag': 'N',
   'pubmed_ids': [10231452],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'DJWUNCQRNNEAKC-UHFFFAOYSA-L',
   'cofactor_smiles': '[Zn++].CC([O-])=O.CC([O-])=O',
   'cofactor_name': 'Zinc acetate',
   'cofactor_resource_id': 'DB14487',
   'mechanism_of_action': '**Zinc has three primary biological roles**: _catalytic_, _structural_, and _regulatory_. The catalytic and structural role of zinc is well established, and there are various noteworthy reviews on these functions. For example, zinc is a structural constituent in numerous proteins, inclusive of growth factors, cytokines, receptors, enzymes, and transcription factors for different cellular signaling pathways. It is implicated in numerous cellular processes as a cofactor for approximately 3000 human proteins including enzymes, nuclear factors, and hormones [L2096].\r\n\r\nZinc promotes resistance to epithelial apoptosis through cell protection (cytoprotection) against reactive oxygen species and bacterial toxins, likely through the antioxidant activity of the cysteine-rich metallothioneins [A32419].\r\n\r\nIn HL-60 cells (promyelocytic leukemia cell line), zinc enhances the up-regulation of A20 mRNA, which, via TRAF pathway, decreases NF-kappaB activation, leading to decreased gene expression and generation of tumor necrosis factor-alpha (TNF-alpha), IL-1beta, and IL-8 [A32418].\r\n\r\nThere are several mechanisms of action of zinc on acute diarrhea. Various mechanisms are specific to the gastrointestinal system: zinc restores mucosal barrier integrity and enterocyte brush-border enzyme activity, it promotes the production of antibodies and circulating lymphocytes against intestinal pathogens, and has a direct effect on ion channels, acting as a potassium channel blocker of adenosine 3-5-cyclic monophosphate-mediated chlorine secretion. Cochrane researchers examined the evidence available up to 30 September 2016 [L2106].\r\n\r\nZinc deficiency in humans decreases the activity of serum _thymulin_ (a hormone of the thymus), which is necessary for the maturation of T-helper cells. T-helper 1 (Th(1)) cytokines are decreased but T-helper 2 (Th(2)) cytokines are not affected by zinc deficiency in humans [A342417].\r\n\r\nThe change of _Th(1)_ to _Th(2)_ function leads to cell-mediated immune dysfunction. Because IL-2 production (Th(1) cytokine) is decreased, this causes decreased activity of natural-killer-cell (NK cell) and T cytolytic cells, normally involved in killing viruses, bacteria, and malignant cells [A3424]. \r\n\r\nIn humans, zinc deficiency may lead to the generation of new CD4+ T cells, produced in the thymus. In cell culture studies (HUT-78, a Th(0) human malignant lymphoblastoid cell line), as a result of zinc deficiency, nuclear factor-kappaB (NF-kappaB) activation, phosphorylation of IkappaB, and binding of NF-kappaB to DNA are decreased and this results in decreased Th(1) cytokine production [A32417].\r\n\r\nIn another study, zinc supplementation in human subjects suppressed the gene expression and production of pro-inflammatory cytokines and decreased oxidative stress markers [A3424]. In HL-60 cells (a human pro-myelocytic leukemia cell line), zinc deficiency increased the levels of TNF-alpha, IL-1beta, and IL-8 cytokines and mRNA. In such cells, zinc was found to induce A20, a zinc finger protein that inhibited NF-kappaB activation by the tumor necrosis factor receptor-associated factor pathway. This process decreased gene expression of pro-inflammatory cytokines and oxidative stress markers [A32417].\r\n\r\nThe exact mechanism of zinc in acne treatment is poorly understood. However, zinc is considered to act directly on microbial inflammatory equilibrium and facilitate antibiotic absorption when used in combination with other agents. Topical zinc alone as well as in combination with other agents may be efficacious because of its anti-inflammatory activity and ability to reduce P. acnes bacteria by the inhibition of P. acnes lipases and free fatty acid levels [L2102].',
   'neighbor_flag': 'N',
   'pubmed_ids': [23896426],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'VRIVJOXICYMTAG-IYEMJOQQSA-L',
   'cofactor_smiles': '[Fe++].[H][C@@](O)(CO)[C@@]([H])(O)[C@]([H])(O)[C@@]([H])(O)C([O-])=O.[H][C@@](O)(CO)[C@@]([H])(O)[C@]([H])(O)[C@@]([H])(O)C([O-])=O',
   'cofactor_name': 'Ferrous gluconate',
   'cofactor_resource_id': 'DB14488',
   'mechanism_of_action': 'Iron is necessary for the production of hemoglobin. Iron-deficiency can lead to decreased production of hemoglobin and a microcytic, hypochromic anemia.',
   'neighbor_flag': 'N',
   'pubmed_ids': [16901899],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'MDXRFOWKIZPNTA-UHFFFAOYSA-L',
   'cofactor_smiles': '[Fe++].[O-]C(=O)CCC([O-])=O',
   'cofactor_name': 'Ferrous succinate',
   'cofactor_resource_id': 'DB14489',
   'mechanism_of_action': 'Iron is necessary for the production of hemoglobin. Iron-deficiency can lead to decreased production of hemoglobin and a microcytic, hypochromic anemia.',
   'neighbor_flag': 'N',
   'pubmed_ids': [16901899],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'RFBYLSCVRUTUSB-ZZMNMWMASA-L',
   'cofactor_smiles': '[Fe++].[H][C@](O)(CO)[C@@]1([H])OC(=O)C(O)=C1O.[H][C@](O)(CO)[C@@]1([H])OC(=O)C([O-])=C1[O-]',
   'cofactor_name': 'Ferrous ascorbate',
   'cofactor_resource_id': 'DB14490',
   'mechanism_of_action': 'Iron is necessary for the production of hemoglobin. Iron-deficiency can lead to decreased production of hemoglobin and a microcytic, hypochromic anemia.',
   'neighbor_flag': 'N',
   'pubmed_ids': [16901899],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'PMVSDNDAUGGCCE-TYYBGVCCSA-L',
   'cofactor_smiles': '[Fe++].[H]\\C(=C(\\[H])C([O-])=O)C([O-])=O',
   'cofactor_name': 'Ferrous fumarate',
   'cofactor_resource_id': 'DB14491',
   'mechanism_of_action': 'Iron is necessary for the production of hemoglobin. Iron-deficiency can lead to decreased production of hemoglobin and a microcytic, hypochromic anemia.',
   'neighbor_flag': 'N',
   'pubmed_ids': [16901899],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'YJYOLOWXCPIBSY-UHFFFAOYSA-L',
   'cofactor_smiles': '[Fe++].NCC([O-])=O.NCC([O-])=O.OS(O)(=O)=O',
   'cofactor_name': 'Ferrous glycine sulfate',
   'cofactor_resource_id': 'DB14501',
   'mechanism_of_action': 'Iron is necessary for the production of hemoglobin. Iron-deficiency can lead to decreased production of hemoglobin and a microcytic, hypochromic anemia.',
   'neighbor_flag': 'N',
   'pubmed_ids': [16901899],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'JIAARYAFYJHUJI-UHFFFAOYSA-L',
   'cofactor_smiles': '[Cl-].[Cl-].[Zn++]',
   'cofactor_name': 'Zinc chloride',
   'cofactor_resource_id': 'DB14533',
   'mechanism_of_action': 'Zinc performs catalytic, structural, and regulatory roles in the body. Zinc is a component of approximately 3000 human proteins.[A204104]\r\n\r\nZinc is cytoprotective against reactive oxygen species mediated apoptosis through the action of metallothioneins.[A32419]\r\n\r\nIn a promyelocytic leukemia cell line, zinc enhances the up-regulation of A20 mRNA, which, via the TRAF pathway, decreases NF-kappaB activation, leading to decreased gene expression and generation of TNF-α, IL-1β, and IL-8 [A32418].\r\n\r\nIn patients with diarrhea, zinc restores mucosal barrier integrity, restores enterocyte brush-border enzyme activity, promotes the production of antibodies, and promotes the production of circulating lymphocytes against intestinal pathogens.[A204101] Zinc also directly affects ion channels as a potassium channel blocker of cAMP-mediated chlorine secretion.[A204101]\r\n\r\nZinc deficiency decreases thymulin, inhibiting T-helper cell maturation and decreased Th-1 cytokines like IL-2.[A32417] Decreased IL-2 decreases the activity of NK cells and CD8+ T cells.[A32417] Zinc deficiency also leads to the generation of CD4+ T cells, decreased NF-κB activation, decreased phosphorylation of IκB, and decreased binding of NF-κB to DNA.[A32417]',
   'neighbor_flag': 'N',
   'pubmed_ids': [646791],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_name': 'Zinc sulfate, unspecified form',
   'cofactor_resource_id': 'DB14548',
   'neighbor_flag': 'N',
   'pubmed_ids': [646791],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'FWCVZAQENIZVMY-UHFFFAOYSA-N',
   'cofactor_smiles': 'CC(C)N1N=CC=C1C1=C(COC2=CC=CC(O)=C2C=O)C=CC=N1',
   'cofactor_name': 'Voxelotor',
   'cofactor_resource_id': 'DB14975',
   'mechanism_of_action': 'Deoxygenated sickle hemoglobin (HbS) polymerization is the causal factor for sickle cell disease.  The genetic mutation associated with this disease leads to the formation of abnormal, sickle shaped red blood cells that aggregate and block blood vessels throughout the body, causing vaso-occlusive crises.[T734] Voxelotor binds irreversibly with the N‐terminal valine of the α‐chain of hemoglobin, leading to an allosteric modification of Hb20, which increases the affinity for oxygen. Oxygenated HbS does not polymerize.[A188126,A188129] By directly blocking HbS polymerization, voxelotor can successfully treat sickle cell disease by preventing the formation of abnormally shaped cells, which eventually cause lack of oxygenation and blood flow to organs.[A188123,A188138,T734]',
   'neighbor_flag': 'N',
   'pubmed_ids': [30655275],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'cofactor_in_ch_ikey': 'JTQTXQSGPZRXJF-DOJSGGEQSA-N',
   'cofactor_smiles': '[Fe+3].OC[C@H](O)[C@@H](O)[C@H](O)[C@H](O)CO[C@H]1O[C@H](CO[C@H]2O[C@H](CO)[C@@H](O)[C@H](O)[C@H]2O)[C@@H](O)[C@H](O)[C@H]1O',
   'cofactor_name': 'Ferric derisomaltose',
   'cofactor_resource_id': 'DB15617',
   'mechanism_of_action': 'This drug is a complex made of iron (III) hydroxide and derisomaltose, which is an iron carbohydrate oligosaccharide that works to releases iron. The released iron then binds to the transport protein, transferrin, and is taken to erythroid precursor cells[A190528] for incorporation into the hemoglobin molecule.[L11581,L11617]',
   'neighbor_flag': 'N',
   'pubmed_ids': [29261547, 24310424],
   'resource_name': 'DrugBank',
   'resource_version': '5.1',
   'target_resource_id': 'P69905'},
  {'binding_assay_value': 5.09,
   'binding_assay_value_type': 'pEC50',
   'cofactor_smiles': 'CC(C)N1N=CC=C1C1=C(COC2=C(C=O)C(O)=CC=C2)C=CC=N1',
   'cofactor_resource_id': 'CHEMBL4101807',
   'mechanism_of_action': 'Voxelotor is a hemoglobin S (HbS) polymerization inhibitor that binds to HbS with a 1:1 stoichiometry and exhibits preferential partitioning to red blood cells (RBCs). By increasing the affinity of Hb for oxygen, voxelotor demonstrates dose-dependent inhibition of HbS polymerization. Nonclinical studies suggest that voxelotor may inhibit RBC sickling, improve RBC deformability, and reduce whole blood viscosity.',
   'neighbor_flag': 'N',
   'resource_name': 'Pharos',
   'resource_version': '6.11.0',
   'target_resource_id': '6231'}],
 'rcsb_id': '4HHB_1',
 'rcsb_polymer_entity_group_membership': [{'group_id': '16_50',
   'aggregation_method': 'sequence_identity',
   'similarity_cutoff': 50.0},
  {'group_id': '44_70',
   'aggregation_method': 'sequence_identity',
   'similarity_cutoff': 70.0},
  {'group_id': 'P69905', 'aggregation_method': 'matching_uniprot_accession'},
  {'group_id': '101_95',
   'aggregation_method': 'sequence_identity',
   'similarity_cutoff': 95.0},
  {'group_id': '27_30',
   'aggregation_method': 'sequence_identity',
   'similarity_cutoff': 30.0},
  {'group_id': '78_90',
   'aggregation_method': 'sequence_identity',
   'similarity_cutoff': 90.0},
  {'group_id': '106_100',
   'aggregation_method': 'sequence_identity',
   'similarity_cutoff': 100.0}],
 'rcsb_genomic_lineage': [{'id': '9606', 'name': 'Homo sapiens', 'depth': 0},
  {'id': '9606:16', 'name': 'Chromosome 16', 'depth': 1},
  {'id': '9606:16:hemoglobin_subunit_alpha_2',
   'name': 'hemoglobin subunit alpha 2',
   'depth': 2},
  {'id': '9606:16:hemoglobin_subunit_alpha_1',
   'name': 'hemoglobin subunit alpha 1',
   'depth': 2}],
 'rcsb_cluster_flexibility': {'link': 'http://pdbflex.org/cluster.html#!/1babA/252/4hhbA',
  'label': 'Low',
  'avg_rmsd': 0.738,
  'max_rmsd': 4.392,
  'provenance_code': 'PDBFlex'},
 'rcsb_latest_revision': {'major_revision': 3, 'minor_revision': 0}}
{'rcsb_ligand_neighbors': [{'atom_id': 'NE2',
   'auth_seq_id': 87,
   'comp_id': 'HIS',
   'distance': 2.143,
   'ligand_asym_id': 'E',
   'ligand_atom_id': 'FE',
   'ligand_comp_id': 'HEM',
   'ligand_entity_id': '3',
   'ligand_is_bound': 'Y',
   'ligand_model_id': 1,
   'seq_id': 87}],
 'rcsb_polymer_entity_instance_container_identifiers': {'asym_id': 'A',
  'auth_asym_id': 'A',
  'auth_to_entity_poly_seq_mapping': ['1',
   '2',
   '3',
   '4',
   '5',
   '6',
   '7',
   '8',
   '9',
   '10',
   '11',
   '12',
   '13',
   '14',
   '15',
   '16',
   '17',
   '18',
   '19',
   '20',
   '21',
   '22',
   '23',
   '24',
   '25',
   '26',
   '27',
   '28',
   '29',
   '30',
   '31',
   '32',
   '33',
   '34',
   '35',
   '36',
   '37',
   '38',
   '39',
   '40',
   '41',
   '42',
   '43',
   '44',
   '45',
   '46',
   '47',
   '48',
   '49',
   '50',
   '51',
   '52',
   '53',
   '54',
   '55',
   '56',
   '57',
   '58',
   '59',
   '60',
   '61',
   '62',
   '63',
   '64',
   '65',
   '66',
   '67',
   '68',
   '69',
   '70',
   '71',
   '72',
   '73',
   '74',
   '75',
   '76',
   '77',
   '78',
   '79',
   '80',
   '81',
   '82',
   '83',
   '84',
   '85',
   '86',
   '87',
   '88',
   '89',
   '90',
   '91',
   '92',
   '93',
   '94',
   '95',
   '96',
   '97',
   '98',
   '99',
   '100',
   '101',
   '102',
   '103',
   '104',
   '105',
   '106',
   '107',
   '108',
   '109',
   '110',
   '111',
   '112',
   '113',
   '114',
   '115',
   '116',
   '117',
   '118',
   '119',
   '120',
   '121',
   '122',
   '123',
   '124',
   '125',
   '126',
   '127',
   '128',
   '129',
   '130',
   '131',
   '132',
   '133',
   '134',
   '135',
   '136',
   '137',
   '138',
   '139',
   '140',
   '141'],
  'entity_id': '1',
  'entry_id': '4HHB',
  'rcsb_id': '4HHB.A'},
 'rcsb_polymer_instance_annotation': [{'annotation_id': '1.10.490.10',
   'assignment_version': 'v4_2_0',
   'name': 'Globins',
   'ordinal': 1,
   'provenance_source': 'CATH',
   'type': 'CATH',
   'annotation_lineage': [{'depth': 1, 'id': '1', 'name': 'Mainly Alpha'},
    {'depth': 2, 'id': '1.10', 'name': 'Orthogonal Bundle'},
    {'depth': 3, 'id': '1.10.490', 'name': 'Globin-like'},
    {'depth': 4, 'id': '1.10.490.10', 'name': 'Globins'}]},
  {'annotation_id': 'd4hhba_',
   'assignment_version': '2.08-stable',
   'name': 'Hemoglobin, alpha-chain',
   'ordinal': 5,
   'provenance_source': 'SCOPe',
   'type': 'SCOP',
   'annotation_lineage': [{'depth': 1,
     'id': '46456',
     'name': 'All alpha proteins'},
    {'depth': 2, 'id': '46457', 'name': 'Globin-like'},
    {'depth': 3, 'id': '46458', 'name': 'Globin-like'},
    {'depth': 4, 'id': '46463', 'name': 'Globins'},
    {'depth': 5, 'id': '46486', 'name': 'Hemoglobin, alpha-chain'}]},
  {'annotation_id': '8039836',
   'assignment_version': '2022-02-25',
   'name': 'Globin-like',
   'ordinal': 9,
   'provenance_source': 'SCOP2B',
   'type': 'SCOP2',
   'annotation_lineage': [{'depth': 1, 'id': '1', 'name': 'Globular proteins'},
    {'depth': 2, 'id': '1000000', 'name': 'All alpha proteins'},
    {'depth': 3, 'id': '2000002', 'name': 'Globin-like'},
    {'depth': 4, 'id': '3000554', 'name': 'Globin-like'}]},
  {'annotation_id': 'e4hhbA1',
   'assignment_version': '1.6',
   'name': 'Globin',
   'ordinal': 13,
   'provenance_source': 'ECOD',
   'type': 'ECOD',
   'annotation_lineage': [{'depth': 1,
     'id': '100006',
     'name': 'A: alpha arrays'},
    {'depth': 2, 'id': '200282', 'name': 'X: Globin-like (From Topology)'},
    {'depth': 3, 'id': '300614', 'name': 'H: Globin-like (From Topology)'},
    {'depth': 4, 'id': '400686', 'name': 'T: Globin-like'},
    {'depth': 5, 'id': '504160', 'name': 'F: Globin'}]}],
 'rcsb_polymer_instance_feature': [{'assignment_version': 'v4_2_0',
   'feature_id': '1.10.490.10',
   'name': 'Globins',
   'ordinal': 1,
   'provenance_source': 'CATH',
   'reference_scheme': 'PDB entity',
   'type': 'CATH',
   'feature_positions': [{'beg_seq_id': 1, 'end_seq_id': 141}],
   'additional_properties': [{'name': 'CATH_NAME', 'values': ['Globins']},
    {'name': 'CATH_DOMAIN_ID', 'values': ['4hhbA00']}]},
  {'assignment_version': '2.08-stable',
   'feature_id': 'd4hhba_',
   'name': 'Hemoglobin, alpha-chain',
   'ordinal': 5,
   'provenance_source': 'SCOPe',
   'reference_scheme': 'PDB entity',
   'type': 'SCOP',
   'feature_positions': [{'beg_seq_id': 1, 'end_seq_id': 141}],
   'additional_properties': [{'name': 'SCOP_NAME',
     'values': ['Hemoglobin', ' alpha-chain']},
    {'name': 'SCOP_DOMAIN_ID', 'values': ['d4hhba_']},
    {'name': 'SCOP_SUN_ID', 'values': ['46486']}]},
  {'assignment_version': '2022-02-25',
   'feature_id': '8039836',
   'name': 'Globin-like',
   'ordinal': 9,
   'provenance_source': 'SCOP2B',
   'reference_scheme': 'PDB entity',
   'type': 'SCOP2B_SUPERFAMILY',
   'feature_positions': [{'beg_seq_id': 2, 'end_seq_id': 141}],
   'additional_properties': [{'name': 'SCOP2_SUPERFAMILY_NAME',
     'values': ['Globin-like']},
    {'name': 'SCOP2_DOMAIN_ID', 'values': ['8039836']},
    {'name': 'SCOP2_SUPERFAMILY_ID', 'values': ['3000554']}]},
  {'assignment_version': '1.6',
   'feature_id': 'e4hhbA1',
   'name': 'Globin',
   'ordinal': 13,
   'provenance_source': 'ECOD',
   'reference_scheme': 'PDB entity',
   'type': 'ECOD',
   'feature_positions': [{'beg_seq_id': 1, 'end_seq_id': 141}],
   'additional_properties': [{'name': 'ECOD_FAMILY_NAME',
     'values': ['Globin']},
    {'name': 'ECOD_DOMAIN_ID', 'values': ['e4hhbA1']}]},
  {'assignment_version': 'V1.0',
   'feature_id': 'HELX_P1',
   'name': 'helix',
   'ordinal': 17,
   'provenance_source': 'PROMOTIF',
   'reference_scheme': 'PDB entity',
   'type': 'HELIX_P',
   'feature_positions': [{'beg_seq_id': 3, 'end_seq_id': 18}]},
  {'assignment_version': 'V1.0',
   'feature_id': 'HELX_P2',
   'name': 'helix',
   'ordinal': 18,
   'provenance_source': 'PROMOTIF',
   'reference_scheme': 'PDB entity',
   'type': 'HELIX_P',
   'feature_positions': [{'beg_seq_id': 20, 'end_seq_id': 35}]},
  {'assignment_version': 'V1.0',
   'feature_id': 'HELX_P3',
   'name': 'helix',
   'ordinal': 19,
   'provenance_source': 'PROMOTIF',
   'reference_scheme': 'PDB entity',
   'type': 'HELIX_P',
   'feature_positions': [{'beg_seq_id': 36, 'end_seq_id': 42}]},
  {'assignment_version': 'V1.0',
   'feature_id': 'HELX_P4',
   'name': 'helix',
   'ordinal': 20,
   'provenance_source': 'PROMOTIF',
   'reference_scheme': 'PDB entity',
   'type': 'HELIX_P',
   'feature_positions': [{'beg_seq_id': 50, 'end_seq_id': 51}]},
  {'assignment_version': 'V1.0',
   'feature_id': 'HELX_P5',
   'name': 'helix',
   'ordinal': 21,
   'provenance_source': 'PROMOTIF',
   'reference_scheme': 'PDB entity',
   'type': 'HELIX_P',
   'feature_positions': [{'beg_seq_id': 52, 'end_seq_id': 71}]},
  {'assignment_version': 'V1.0',
   'feature_id': 'HELX_P6',
   'name': 'helix',
   'ordinal': 22,
   'provenance_source': 'PROMOTIF',
   'reference_scheme': 'PDB entity',
   'type': 'HELIX_P',
   'feature_positions': [{'beg_seq_id': 80, 'end_seq_id': 88}]},
  {'assignment_version': 'V1.0',
   'feature_id': 'HELX_P7',
   'name': 'helix',
   'ordinal': 23,
   'provenance_source': 'PROMOTIF',
   'reference_scheme': 'PDB entity',
   'type': 'HELIX_P',
   'feature_positions': [{'beg_seq_id': 94, 'end_seq_id': 112}]},
  {'assignment_version': 'V1.0',
   'feature_id': 'HELX_P8',
   'name': 'helix',
   'ordinal': 24,
   'provenance_source': 'PROMOTIF',
   'reference_scheme': 'PDB entity',
   'type': 'HELIX_P',
   'feature_positions': [{'beg_seq_id': 118, 'end_seq_id': 138}]},
  {'assignment_version': 'V1.0',
   'feature_id': '1',
   'name': 'unassigned secondary structure',
   'ordinal': 49,
   'provenance_source': 'PROMOTIF',
   'reference_scheme': 'PDB entity',
   'type': 'UNASSIGNED_SEC_STRUCT',
   'feature_positions': [{'beg_seq_id': 1, 'end_seq_id': 2},
    {'beg_seq_id': 19, 'end_seq_id': 19},
    {'beg_seq_id': 43, 'end_seq_id': 49},
    {'beg_seq_id': 72, 'end_seq_id': 79},
    {'beg_seq_id': 89, 'end_seq_id': 93},
    {'beg_seq_id': 113, 'end_seq_id': 117},
    {'beg_seq_id': 139, 'end_seq_id': 141}]},
  {'assignment_version': 'V1.0',
   'description': 'Software generated binding site for ligand entity 3 component HEM instance E chain A',
   'feature_id': 'AC3',
   'name': 'ligand HEM',
   'ordinal': 54,
   'provenance_source': 'PDB',
   'reference_scheme': 'PDB entity',
   'type': 'BINDING_SITE',
   'feature_positions': [{'beg_comp_id': 'TYR', 'beg_seq_id': 42},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 43},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 45},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 46},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 58},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 61},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 86},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 87},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 91},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 93},
    {'beg_comp_id': 'ASN', 'beg_seq_id': 97},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 98},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 101},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 136}]},
  {'assignment_version': 'V1.0',
   'description': 'Software generated binding site for ligand entity 3 component HEM instance G chain B',
   'feature_id': 'AC4',
   'name': 'ligand HEM',
   'ordinal': 55,
   'provenance_source': 'PDB',
   'reference_scheme': 'PDB entity',
   'type': 'BINDING_SITE',
   'feature_positions': [{'beg_comp_id': 'ALA', 'beg_seq_id': 53}]},
  {'assignment_version': 'V1.0',
   'description': 'Molprobity bond angle outlier in instance A model 1',
   'feature_id': 'ANGLE_OUTLIER_1',
   'name': 'Molprobity bond angle outlier',
   'ordinal': 59,
   'provenance_source': 'PDB',
   'reference_scheme': 'PDB entity',
   'type': 'ANGLE_OUTLIER',
   'feature_positions': [{'beg_comp_id': 'VAL', 'beg_seq_id': 1},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 1},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 1},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 1},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 1},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 2},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 2},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 2},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 2},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 2},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 2},
    {'beg_comp_id': 'SER', 'beg_seq_id': 3},
    {'beg_comp_id': 'SER', 'beg_seq_id': 3},
    {'beg_comp_id': 'SER', 'beg_seq_id': 3},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 4},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 4},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 4},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 4},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 4},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 4},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 5},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 5},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 6},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 6},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 6},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 6},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 7},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 7},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 7},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 7},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 7},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 7},
    {'beg_comp_id': 'THR', 'beg_seq_id': 8},
    {'beg_comp_id': 'THR', 'beg_seq_id': 8},
    {'beg_comp_id': 'THR', 'beg_seq_id': 8},
    {'beg_comp_id': 'THR', 'beg_seq_id': 8},
    {'beg_comp_id': 'THR', 'beg_seq_id': 8},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 10},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 10},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 11},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 11},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 11},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 12},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 12},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 12},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 12},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 13},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 13},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 13},
    {'beg_comp_id': 'TRP', 'beg_seq_id': 14},
    {'beg_comp_id': 'TRP', 'beg_seq_id': 14},
    {'beg_comp_id': 'TRP', 'beg_seq_id': 14},
    {'beg_comp_id': 'TRP', 'beg_seq_id': 14},
    {'beg_comp_id': 'TRP', 'beg_seq_id': 14},
    {'beg_comp_id': 'TRP', 'beg_seq_id': 14},
    {'beg_comp_id': 'TRP', 'beg_seq_id': 14},
    {'beg_comp_id': 'TRP', 'beg_seq_id': 14},
    {'beg_comp_id': 'TRP', 'beg_seq_id': 14},
    {'beg_comp_id': 'TRP', 'beg_seq_id': 14},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 15},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 15},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 15},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 15},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 15},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 16},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 16},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 16},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 16},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 16},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 16},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 17},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 17},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 17},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 17},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 17},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 18},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 18},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 18},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 19},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 19},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 19},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 19},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 19},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 20},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 20},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 20},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 20},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 21},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 21},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 21},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 21},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 21},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 21},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 22},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 22},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 22},
    {'beg_comp_id': 'GLU', 'beg_seq_id': 23},
    {'beg_comp_id': 'GLU', 'beg_seq_id': 23},
    {'beg_comp_id': 'GLU', 'beg_seq_id': 23},
    {'beg_comp_id': 'GLU', 'beg_seq_id': 23},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 24},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 24},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 24},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 24},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 24},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 24},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 24},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 24},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 25},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 25},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 26},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 26},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 26},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 26},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 26},
    {'beg_comp_id': 'GLU', 'beg_seq_id': 27},
    {'beg_comp_id': 'GLU', 'beg_seq_id': 27},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 28},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 28},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 28},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 29},
    {'beg_comp_id': 'GLU', 'beg_seq_id': 30},
    {'beg_comp_id': 'GLU', 'beg_seq_id': 30},
    {'beg_comp_id': 'GLU', 'beg_seq_id': 30},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 31},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 31},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 31},
    {'beg_comp_id': 'MET', 'beg_seq_id': 32},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 33},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 33},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 33},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 33},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 33},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 33},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 33},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 33},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 34},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 34},
    {'beg_comp_id': 'SER', 'beg_seq_id': 35},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 36},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 36},
    {'beg_comp_id': 'THR', 'beg_seq_id': 38},
    {'beg_comp_id': 'THR', 'beg_seq_id': 39},
    {'beg_comp_id': 'THR', 'beg_seq_id': 39},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 40},
    {'beg_comp_id': 'THR', 'beg_seq_id': 41},
    {'beg_comp_id': 'THR', 'beg_seq_id': 41},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 42},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 42},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 42},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 42},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 42},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 43},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 43},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 43},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 43},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 43},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 43},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 44},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 44},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 45},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 45},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 46},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 46},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 46},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 46},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 46},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 46},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 47},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 47},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 47},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 47},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 48},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 48},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 48},
    {'beg_comp_id': 'SER', 'beg_seq_id': 49},
    {'beg_comp_id': 'SER', 'beg_seq_id': 49},
    {'beg_comp_id': 'SER', 'beg_seq_id': 49},
    {'beg_comp_id': 'SER', 'beg_seq_id': 49},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 50},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 50},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 50},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 50},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 50},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 50},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 50},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 50},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 51},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 51},
    {'beg_comp_id': 'SER', 'beg_seq_id': 52},
    {'beg_comp_id': 'SER', 'beg_seq_id': 52},
    {'beg_comp_id': 'SER', 'beg_seq_id': 52},
    {'beg_comp_id': 'SER', 'beg_seq_id': 52},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 53},
    {'beg_comp_id': 'GLN', 'beg_seq_id': 54},
    {'beg_comp_id': 'GLN', 'beg_seq_id': 54},
    {'beg_comp_id': 'GLN', 'beg_seq_id': 54},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 55},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 56},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 56},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 56},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 56},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 56},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 56},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 57},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 57},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 58},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 58},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 58},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 58},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 58},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 58},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 59},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 59},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 60},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 60},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 60},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 60},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 61},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 61},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 61},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 61},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 61},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 61},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 62},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 62},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 62},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 62},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 62},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 63},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 63},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 64},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 64},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 64},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 64},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 64},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 64},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 64},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 64},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 65},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 65},
    {'beg_comp_id': 'THR', 'beg_seq_id': 67},
    {'beg_comp_id': 'THR', 'beg_seq_id': 67},
    {'beg_comp_id': 'ASN', 'beg_seq_id': 68},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 69},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 70},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 70},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 71},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 71},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 71},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 71},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 71},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 71},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 72},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 72},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 72},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 72},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 72},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 72},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 73},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 73},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 73},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 73},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 73},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 74},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 74},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 74},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 74},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 74},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 75},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 75},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 75},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 75},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 75},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 75},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 75},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 75},
    {'beg_comp_id': 'MET', 'beg_seq_id': 76},
    {'beg_comp_id': 'MET', 'beg_seq_id': 76},
    {'beg_comp_id': 'MET', 'beg_seq_id': 76},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 77},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 77},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 77},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 77},
    {'beg_comp_id': 'ASN', 'beg_seq_id': 78},
    {'beg_comp_id': 'ASN', 'beg_seq_id': 78},
    {'beg_comp_id': 'ASN', 'beg_seq_id': 78},
    {'beg_comp_id': 'ASN', 'beg_seq_id': 78},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 79},
    {'beg_comp_id': 'SER', 'beg_seq_id': 81},
    {'beg_comp_id': 'SER', 'beg_seq_id': 81},
    {'beg_comp_id': 'SER', 'beg_seq_id': 81},
    {'beg_comp_id': 'SER', 'beg_seq_id': 81},
    {'beg_comp_id': 'SER', 'beg_seq_id': 81},
    {'beg_comp_id': 'SER', 'beg_seq_id': 81},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 82},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 82},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 82},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 83},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 83},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 83},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 83},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 83},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 83},
    {'beg_comp_id': 'SER', 'beg_seq_id': 84},
    {'beg_comp_id': 'SER', 'beg_seq_id': 84},
    {'beg_comp_id': 'SER', 'beg_seq_id': 84},
    {'beg_comp_id': 'SER', 'beg_seq_id': 84},
    {'beg_comp_id': 'SER', 'beg_seq_id': 84},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 85},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 85},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 85},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 85},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 85},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 86},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 86},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 86},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 87},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 87},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 88},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 88},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 88},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 88},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 89},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 89},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 89},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 89},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 89},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 89},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 89},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 89},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 89},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 90},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 90},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 90},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 90},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 92},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 92},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 92},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 92},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 92},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 92},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 92},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 93},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 94},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 95},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 96},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 96},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 96},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 98},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 98},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 98},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 98},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 98},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 99},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 99},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 99},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 100},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 101},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 101},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 103},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 103},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 103},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 103},
    {'beg_comp_id': 'CYS', 'beg_seq_id': 104},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 105},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 105},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 105},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 106},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 106},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 106},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 106},
    {'beg_comp_id': 'THR', 'beg_seq_id': 108},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 109},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 109},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 109},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 110},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 110},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 110},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 111},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 112},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 112},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 112},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 112},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 112},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 113},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 113},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 114},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 114},
    {'beg_comp_id': 'GLU', 'beg_seq_id': 116},
    {'beg_comp_id': 'GLU', 'beg_seq_id': 116},
    {'beg_comp_id': 'GLU', 'beg_seq_id': 116},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 117},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 117},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 117},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 117},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 117},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 117},
    {'beg_comp_id': 'THR', 'beg_seq_id': 118},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 119},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 120},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 122},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 125},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 126},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 126},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 126},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 126},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 127},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 127},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 128},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 128},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 128},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 128},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 129},
    {'beg_comp_id': 'SER', 'beg_seq_id': 131},
    {'beg_comp_id': 'SER', 'beg_seq_id': 131},
    {'beg_comp_id': 'SER', 'beg_seq_id': 131},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 132},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 132},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 132},
    {'beg_comp_id': 'THR', 'beg_seq_id': 134},
    {'beg_comp_id': 'THR', 'beg_seq_id': 134},
    {'beg_comp_id': 'THR', 'beg_seq_id': 134},
    {'beg_comp_id': 'THR', 'beg_seq_id': 134},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 135},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 136},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 136},
    {'beg_comp_id': 'THR', 'beg_seq_id': 137},
    {'beg_comp_id': 'THR', 'beg_seq_id': 137},
    {'beg_comp_id': 'SER', 'beg_seq_id': 138},
    {'beg_comp_id': 'SER', 'beg_seq_id': 138},
    {'beg_comp_id': 'SER', 'beg_seq_id': 138},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 139},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 139},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 140},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 140},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 140},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 140},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 141},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 141},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 141},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 141},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 141},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 141}]},
  {'assignment_version': 'V1.0',
   'description': 'Molprobity bond distance outlier in instance A model 1',
   'feature_id': 'BOND_OUTLIER_2',
   'name': 'Molprobity bond distance outlier',
   'ordinal': 60,
   'provenance_source': 'PDB',
   'reference_scheme': 'PDB entity',
   'type': 'BOND_OUTLIER',
   'feature_positions': [{'beg_comp_id': 'VAL', 'beg_seq_id': 1},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 1},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 1},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 1},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 2},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 2},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 2},
    {'beg_comp_id': 'SER', 'beg_seq_id': 3},
    {'beg_comp_id': 'SER', 'beg_seq_id': 3},
    {'beg_comp_id': 'SER', 'beg_seq_id': 3},
    {'beg_comp_id': 'SER', 'beg_seq_id': 3},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 4},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 4},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 4},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 5},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 5},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 5},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 6},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 7},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 7},
    {'beg_comp_id': 'THR', 'beg_seq_id': 8},
    {'beg_comp_id': 'THR', 'beg_seq_id': 8},
    {'beg_comp_id': 'THR', 'beg_seq_id': 8},
    {'beg_comp_id': 'THR', 'beg_seq_id': 8},
    {'beg_comp_id': 'THR', 'beg_seq_id': 8},
    {'beg_comp_id': 'ASN', 'beg_seq_id': 9},
    {'beg_comp_id': 'ASN', 'beg_seq_id': 9},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 10},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 10},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 11},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 11},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 11},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 11},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 11},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 12},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 12},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 12},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 13},
    {'beg_comp_id': 'TRP', 'beg_seq_id': 14},
    {'beg_comp_id': 'TRP', 'beg_seq_id': 14},
    {'beg_comp_id': 'TRP', 'beg_seq_id': 14},
    {'beg_comp_id': 'TRP', 'beg_seq_id': 14},
    {'beg_comp_id': 'TRP', 'beg_seq_id': 14},
    {'beg_comp_id': 'TRP', 'beg_seq_id': 14},
    {'beg_comp_id': 'TRP', 'beg_seq_id': 14},
    {'beg_comp_id': 'TRP', 'beg_seq_id': 14},
    {'beg_comp_id': 'TRP', 'beg_seq_id': 14},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 15},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 15},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 15},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 16},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 16},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 16},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 16},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 16},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 17},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 17},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 17},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 17},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 17},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 18},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 18},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 19},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 19},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 20},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 20},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 20},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 20},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 20},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 20},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 20},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 21},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 21},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 21},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 21},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 22},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 22},
    {'beg_comp_id': 'GLU', 'beg_seq_id': 23},
    {'beg_comp_id': 'GLU', 'beg_seq_id': 23},
    {'beg_comp_id': 'GLU', 'beg_seq_id': 23},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 24},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 24},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 24},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 24},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 24},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 25},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 26},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 26},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 26},
    {'beg_comp_id': 'GLU', 'beg_seq_id': 27},
    {'beg_comp_id': 'GLU', 'beg_seq_id': 27},
    {'beg_comp_id': 'GLU', 'beg_seq_id': 27},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 28},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 29},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 29},
    {'beg_comp_id': 'GLU', 'beg_seq_id': 30},
    {'beg_comp_id': 'GLU', 'beg_seq_id': 30},
    {'beg_comp_id': 'GLU', 'beg_seq_id': 30},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 31},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 33},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 33},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 33},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 33},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 33},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 33},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 33},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 34},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 34},
    {'beg_comp_id': 'SER', 'beg_seq_id': 35},
    {'beg_comp_id': 'SER', 'beg_seq_id': 35},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 36},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 36},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 37},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 37},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 37},
    {'beg_comp_id': 'THR', 'beg_seq_id': 39},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 40},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 40},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 40},
    {'beg_comp_id': 'THR', 'beg_seq_id': 41},
    {'beg_comp_id': 'THR', 'beg_seq_id': 41},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 42},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 42},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 42},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 43},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 43},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 43},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 43},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 44},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 44},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 44},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 44},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 45},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 45},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 45},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 46},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 46},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 46},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 46},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 46},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 46},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 46},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 47},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 47},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 47},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 48},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 48},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 48},
    {'beg_comp_id': 'SER', 'beg_seq_id': 49},
    {'beg_comp_id': 'SER', 'beg_seq_id': 49},
    {'beg_comp_id': 'SER', 'beg_seq_id': 49},
    {'beg_comp_id': 'SER', 'beg_seq_id': 49},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 50},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 50},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 50},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 50},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 50},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 51},
    {'beg_comp_id': 'SER', 'beg_seq_id': 52},
    {'beg_comp_id': 'SER', 'beg_seq_id': 52},
    {'beg_comp_id': 'SER', 'beg_seq_id': 52},
    {'beg_comp_id': 'SER', 'beg_seq_id': 52},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 53},
    {'beg_comp_id': 'GLN', 'beg_seq_id': 54},
    {'beg_comp_id': 'GLN', 'beg_seq_id': 54},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 56},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 56},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 56},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 56},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 57},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 58},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 58},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 58},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 59},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 59},
    {'beg_comp_id': 'GLY', 'beg_seq_id': 59},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 60},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 60},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 60},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 60},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 60},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 60},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 60},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 61},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 61},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 61},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 61},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 62},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 62},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 63},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 63},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 63},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 64},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 64},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 64},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 64},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 64},
    {'beg_comp_id': 'THR', 'beg_seq_id': 67},
    {'beg_comp_id': 'THR', 'beg_seq_id': 67},
    {'beg_comp_id': 'ASN', 'beg_seq_id': 68},
    {'beg_comp_id': 'ASN', 'beg_seq_id': 68},
    {'beg_comp_id': 'ASN', 'beg_seq_id': 68},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 69},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 69},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 70},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 70},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 71},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 71},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 71},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 71},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 72},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 72},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 72},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 72},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 72},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 72},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 72},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 73},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 73},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 73},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 74},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 74},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 74},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 74},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 74},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 74},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 75},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 75},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 75},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 75},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 75},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 75},
    {'beg_comp_id': 'MET', 'beg_seq_id': 76},
    {'beg_comp_id': 'MET', 'beg_seq_id': 76},
    {'beg_comp_id': 'MET', 'beg_seq_id': 76},
    {'beg_comp_id': 'MET', 'beg_seq_id': 76},
    {'beg_comp_id': 'MET', 'beg_seq_id': 76},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 77},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 77},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 77},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 77},
    {'beg_comp_id': 'ASN', 'beg_seq_id': 78},
    {'beg_comp_id': 'ASN', 'beg_seq_id': 78},
    {'beg_comp_id': 'ASN', 'beg_seq_id': 78},
    {'beg_comp_id': 'ASN', 'beg_seq_id': 78},
    {'beg_comp_id': 'ASN', 'beg_seq_id': 78},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 79},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 79},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 79},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 80},
    {'beg_comp_id': 'SER', 'beg_seq_id': 81},
    {'beg_comp_id': 'SER', 'beg_seq_id': 81},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 83},
    {'beg_comp_id': 'SER', 'beg_seq_id': 84},
    {'beg_comp_id': 'SER', 'beg_seq_id': 84},
    {'beg_comp_id': 'SER', 'beg_seq_id': 84},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 85},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 85},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 85},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 85},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 85},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 86},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 86},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 87},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 87},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 87},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 88},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 88},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 88},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 89},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 90},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 90},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 90},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 90},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 90},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 90},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 91},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 91},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 92},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 92},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 92},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 92},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 92},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 92},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 92},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 92},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 93},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 93},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 94},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 95},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 96},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 96},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 96},
    {'beg_comp_id': 'ASN', 'beg_seq_id': 97},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 98},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 98},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 99},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 99},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 99},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 99},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 99},
    {'beg_comp_id': 'CYS', 'beg_seq_id': 104},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 105},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 105},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 105},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 106},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 106},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 106},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 107},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 107},
    {'beg_comp_id': 'THR', 'beg_seq_id': 108},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 109},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 109},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 112},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 112},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 112},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 112},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 113},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 113},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 114},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 114},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 114},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 114},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 115},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 115},
    {'beg_comp_id': 'GLU', 'beg_seq_id': 116},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 117},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 117},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 119},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 120},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 120},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 121},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 122},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 122},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 123},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 127},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 127},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 127},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 128},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 128},
    {'beg_comp_id': 'PHE', 'beg_seq_id': 128},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 129},
    {'beg_comp_id': 'LEU', 'beg_seq_id': 129},
    {'beg_comp_id': 'SER', 'beg_seq_id': 131},
    {'beg_comp_id': 'SER', 'beg_seq_id': 131},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 132},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 132},
    {'beg_comp_id': 'THR', 'beg_seq_id': 134},
    {'beg_comp_id': 'THR', 'beg_seq_id': 134},
    {'beg_comp_id': 'VAL', 'beg_seq_id': 135},
    {'beg_comp_id': 'THR', 'beg_seq_id': 137},
    {'beg_comp_id': 'THR', 'beg_seq_id': 137},
    {'beg_comp_id': 'THR', 'beg_seq_id': 137},
    {'beg_comp_id': 'THR', 'beg_seq_id': 137},
    {'beg_comp_id': 'THR', 'beg_seq_id': 137},
    {'beg_comp_id': 'SER', 'beg_seq_id': 138},
    {'beg_comp_id': 'SER', 'beg_seq_id': 138},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 139},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 139},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 139},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 140},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 140},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 140},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 140},
    {'beg_comp_id': 'TYR', 'beg_seq_id': 140},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 141},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 141},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 141},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 141},
    {'beg_comp_id': 'ARG', 'beg_seq_id': 141}]},
  {'assignment_version': 'V1.0',
   'description': 'Molprobity Ramachandran outlier in instance A model 1',
   'feature_id': 'RAMACHANDRAN_OUTLIER_3',
   'name': 'Molprobity Ramachandran outlier',
   'ordinal': 61,
   'provenance_source': 'PDB',
   'reference_scheme': 'PDB entity',
   'type': 'RAMACHANDRAN_OUTLIER',
   'feature_positions': [{'beg_comp_id': 'SER', 'beg_seq_id': 3},
    {'beg_comp_id': 'LYS', 'beg_seq_id': 16},
    {'beg_comp_id': 'ALA', 'beg_seq_id': 21}]},
  {'assignment_version': 'V1.0',
   'description': 'Molprobity rotamer outlier in instance A model 1',
   'feature_id': 'ROTAMER_OUTLIER_4',
   'name': 'Molprobity rotamer outlier',
   'ordinal': 62,
   'provenance_source': 'PDB',
   'reference_scheme': 'PDB entity',
   'type': 'ROTAMER_OUTLIER',
   'feature_positions': [{'beg_comp_id': 'LEU', 'beg_seq_id': 2},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 4},
    {'beg_comp_id': 'HIS', 'beg_seq_id': 45},
    {'beg_comp_id': 'SER', 'beg_seq_id': 52},
    {'beg_comp_id': 'ASP', 'beg_seq_id': 75},
    {'beg_comp_id': 'SER', 'beg_seq_id': 84},
    {'beg_comp_id': 'PRO', 'beg_seq_id': 95},
    {'beg_comp_id': 'SER', 'beg_seq_id': 138}]},
  {'assignment_version': 'V1.0',
   'description': 'STEREO_OUTLIER in instance A model 1',
   'feature_id': 'STEREO_OUTLIER_5',
   'name': 'STEREO_OUTLIER',
   'ordinal': 63,
   'provenance_source': 'PDB',
   'reference_scheme': 'PDB entity',
   'type': 'STEREO_OUTLIER',
   'feature_positions': [{'beg_comp_id': 'THR', 'beg_seq_id': 137}]},
  {'description': 'The Accessible Surface Area considering this polymer entity instance by itself (unbound).',
   'name': 'Unbound ASA',
   'ordinal': 64,
   'provenance_source': 'biojava-structure-6.0.5',
   'type': 'ASA',
   'feature_positions': [{'beg_seq_id': 1,
     'end_seq_id': 141,
     'values': [161.9681003882857,
      17.907955258130702,
      42.73879697266144,
      106.38610319645312,
      66.35455484346676,
      14.098483882491887,
      47.28525582554295,
      85.18772170445027,
      34.853420774981096,
      0.9405966103959684,
      93.1858282996379,
      64.3538478983099,
      3.0905317198724678,
      22.52455330859626,
      53.62967203017806,
      119.95916827400272,
      1.1915621112094583,
      42.73800403467567,
      109.61901189538627,
      81.66692373792746,
      7.686869010996489,
      18.271730324586358,
      113.54756973878912,
      14.886451868679973,
      2.3048118573872918,
      13.222288664857452,
      39.2953839730189,
      0.4031128330268436,
      2.9561607755301864,
      48.14122169976238,
      88.28524283965844,
      8.689867704589243,
      12.776555729254945,
      135.04784571843135,
      70.72340941054433,
      57.81878728508435,
      73.5366704459963,
      94.90801671977223,
      2.7142380350107898,
      88.8073064236467,
      99.4207889029478,
      72.87809712138719,
      32.06033002100227,
      111.0678226927164,
      124.30411657762356,
      47.207551672849064,
      75.17810611192567,
      53.301443456279245,
      60.680142334151554,
      160.8648371368351,
      33.83916512659201,
      11.585438467565234,
      86.51253635301734,
      78.3123851378179,
      9.00285327093284,
      126.92342950565052,
      34.12681311986587,
      47.598411037889846,
      0.0,
      139.07591539409222,
      139.489458314729,
      27.841604627017375,
      1.6124513321073743,
      80.17038837827812,
      21.71253328905229,
      11.15278838040934,
      57.885957049292216,
      54.364038162510596,
      0.2687418886845624,
      12.344350491618798,
      62.53530808812704,
      93.83665068685205,
      11.127942152430625,
      115.00207938519284,
      65.3893721289638,
      8.395480366754896,
      85.45868784073357,
      103.51382294477378,
      28.447762363156905,
      4.004463748461827,
      47.03588625379748,
      77.9988039255072,
      54.16355554236617,
      1.3524656904668975,
      61.42843326176185,
      76.45706733075801,
      34.58203366528221,
      7.586066612476345,
      106.89950603781395,
      158.17416356000035,
      88.4757238854309,
      162.3187674735535,
      23.111802426872366,
      72.0543501647859,
      62.84004885871054,
      70.90569466940212,
      18.407929675853026,
      23.058587617231744,
      146.473789296885,
      42.59558935650314,
      38.56446102623471,
      14.727561421994956,
      95.97759958470223,
      3.849236398810894,
      10.749675547382497,
      13.222729744466013,
      52.09104435551886,
      0.1343709443422812,
      4.837353996322123,
      38.13293437261173,
      64.78245538403915,
      65.09722788828411,
      4.702983051979842,
      114.61762761252837,
      83.55826178971635,
      46.66010276358274,
      44.31862475001687,
      61.98937091324563,
      117.06353844908486,
      64.76383076615161,
      20.827496373053588,
      82.47304761637915,
      57.03599036040407,
      2.16744760356467,
      2.553047942503343,
      71.20382929895366,
      79.46162496943526,
      2.0077240065079196,
      10.767463244987121,
      58.68805340596202,
      29.36272106422546,
      9.943449881328808,
      18.175257040742856,
      84.71286746158606,
      19.08067409660393,
      21.499351094764993,
      33.15240794596903,
      69.86616553643341,
      77.30637554182596,
      56.97908857762519,
      281.8358068470459]}]}],
 'rcsb_polymer_instance_feature_summary': [{'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'BEND'},
  {'count': 2,
   'coverage': 0.10638,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'BINDING_SITE'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'C-MANNOSYLATION_SITE'},
  {'count': 1,
   'coverage': 1.0,
   'maximum_length': 141,
   'maximum_value': 0.0,
   'minimum_length': 141,
   'minimum_value': 0.0,
   'type': 'CATH'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'CIS-PEPTIDE'},
  {'count': 1,
   'coverage': 1.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'ECOD'},
  {'count': 8,
   'coverage': 0.78014,
   'maximum_length': 21,
   'maximum_value': 0.0,
   'minimum_length': 2,
   'minimum_value': 0.0,
   'type': 'HELIX_P'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'HELX_LH_PP_P'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'HELX_RH_3T_P'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'HELX_RH_AL_P'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'HELX_RH_PI_P'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'MA_QA_METRIC_LOCAL_TYPE_CONTACT_PROBABILITY'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'MA_QA_METRIC_LOCAL_TYPE_DISTANCE'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'MA_QA_METRIC_LOCAL_TYPE_ENERGY'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'MA_QA_METRIC_LOCAL_TYPE_IPTM'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'MA_QA_METRIC_LOCAL_TYPE_NORMALIZED_SCORE'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'MA_QA_METRIC_LOCAL_TYPE_OTHER'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'MA_QA_METRIC_LOCAL_TYPE_PAE'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'MA_QA_METRIC_LOCAL_TYPE_PLDDT'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'MA_QA_METRIC_LOCAL_TYPE_PLDDT_ALL-ATOM'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'MA_QA_METRIC_LOCAL_TYPE_PLDDT_ALL-ATOM_[0,1]'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'MA_QA_METRIC_LOCAL_TYPE_PLDDT_[0,1]'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'MA_QA_METRIC_LOCAL_TYPE_PTM'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'MA_QA_METRIC_LOCAL_TYPE_ZSCORE'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'MEMBRANE_SEGMENT'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'N-GLYCOSYLATION_SITE'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'O-GLYCOSYLATION_SITE'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'S-GLYCOSYLATION_SITE'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'SABDAB_ANTIBODY_HEAVY_CHAIN_SUBCLASS'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'SABDAB_ANTIBODY_LIGHT_CHAIN_SUBCLASS'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'SABDAB_ANTIBODY_LIGHT_CHAIN_TYPE'},
  {'count': 1,
   'coverage': 1.0,
   'maximum_length': 141,
   'maximum_value': 0.0,
   'minimum_length': 141,
   'minimum_value': 0.0,
   'type': 'SCOP'},
  {'count': 1,
   'coverage': 0.99291,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'SCOP2B_SUPERFAMILY'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'SCOP2_FAMILY'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'SCOP2_SUPERFAMILY'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'SHEET'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'STRN'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'TURN_TY1_P'},
  {'count': 1,
   'coverage': 0.21986,
   'maximum_length': 31,
   'maximum_value': 0.0,
   'minimum_length': 31,
   'minimum_value': 0.0,
   'type': 'UNASSIGNED_SEC_STRUCT'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'UNOBSERVED_ATOM_XYZ'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'UNOBSERVED_RESIDUE_XYZ'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'ZERO_OCCUPANCY_ATOM_XYZ'},
  {'count': 0,
   'coverage': 0.0,
   'maximum_length': 0,
   'maximum_value': 0.0,
   'minimum_length': 0,
   'minimum_value': 0.0,
   'type': 'ZERO_OCCUPANCY_RESIDUE_XYZ'},
  {'count': 444, 'coverage': 3.14894, 'type': 'ANGLE_OUTLIER'},
  {'count': 370, 'coverage': 2.62411, 'type': 'BOND_OUTLIER'},
  {'count': 0, 'coverage': 0.0, 'type': 'MOGUL_ANGLE_OUTLIER'},
  {'count': 0, 'coverage': 0.0, 'type': 'MOGUL_BOND_OUTLIER'},
  {'count': 3, 'coverage': 0.02128, 'type': 'RAMACHANDRAN_OUTLIER'},
  {'count': 8, 'coverage': 0.05674, 'type': 'ROTAMER_OUTLIER'},
  {'count': 0, 'coverage': 0.0, 'type': 'RSCC_OUTLIER'},
  {'count': 0, 'coverage': 0.0, 'type': 'RSRZ_OUTLIER'},
  {'count': 1, 'coverage': 0.00709, 'type': 'STEREO_OUTLIER'}],
 'rcsb_polymer_struct_conn': [{'connect_type': 'metal coordination',
   'dist_value': 2.143,
   'id': 'metalc1',
   'ordinal_id': 1,
   'connect_target': {'auth_seq_id': '87',
    'label_asym_id': 'A',
    'label_atom_id': 'NE2',
    'label_comp_id': 'HIS',
    'label_seq_id': 87,
    'symmetry': '1_555'},
   'connect_partner': {'label_asym_id': 'E',
    'label_atom_id': 'FE',
    'label_comp_id': 'HEM',
    'symmetry': '1_555'}}],
 'rcsb_id': '4HHB.A',
 'rcsb_latest_revision': {'major_revision': 3, 'minor_revision': 0}}

BLAST URLAPI

http://www.ncbi.nlm.nih.gov/BLAST/Doc/urlapi.html

A URLAPI request looks like this:

http://www.ncbi.nlm.nih.gov/blast/Blast.cgi?CMD=<command>&{<name>=<value>}

where CMD can be

  • PUT add a job to the queue
  • GET get formated results from a job

BLAST PUT

Some common attributes to PUT:

  • DATABASE - what database to search, mandatory
  • PROGRAM - what program to use (blastn, blastp, blastx, tblastn, tblastx)
  • QUERY - Accession(s), gi(s), or FASTA sequence(s), mandatory
  • MATRIX_NAME - matrix to use (default BLOSUM62)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="jig" content="ncbitoggler ncbiautocomplete"/>
<meta name="ncbi_app" content="static" />
<meta name="ncbi_pdid" content="blastformatreq" />
<meta name="ncbi_stat" content="false" />
<meta name="ncbi_sessionid" content="50C949EB356C0401_0000SID" />
<meta name="ncbi_phid" content="50C949EB356C04010000000000000001" />
<title>NCBI Blast</title>
<meta http-equiv="Pragma" content="no-cache">
<link rel="stylesheet" type="text/css" href="css/uswds.min.css" media="screen" />
<link rel="stylesheet"  type="text/css" href="https://www.ncbi.nlm.nih.gov/style-guide/static/nwds/css/nwds.css"/>
<link rel="stylesheet" href="css/headerNew.css?v=1"/>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" crossorigin="anonymous"> <!-- Font Awesome icons -->
<link rel="stylesheet" type="text/css" href="css/footerNew.css?v=1" media="screen" />
<link rel="stylesheet" type="text/css" href="css/main.css" media="screen" />
<link rel="stylesheet" type="text/css" href="css/common.css" media="screen" />
<link rel="stylesheet" type="text/css" href="css/blastReq.css" media="screen" />
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="css/blastReqIE.css" media="screen" />
<![endif]-->
<link rel="stylesheet" type="text/css" href="css/print.css" media="print" />


<!--[if lte IE 6]>
<link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" />
<![endif]-->
<script type="text/javascript" src="/core/jig/1.15.2/js/jig.min.js             "></script>   
<script type="text/javascript" src="js/utils.js"></script>
<script type="text/javascript" src="js/blast.js"></script>
<script type="text/javascript" src="js/format.js"></script>

</head>

<body id="type-a">

<div id="wrap">
		<script>var useOfficialGovtHeader = true;</script>
<section class="usa-banner">
  <div class="usa-accordion">
    <header class="usa-banner-header">
      <div class="usa-grid usa-banner-inner">
        <img src="https://www.ncbi.nlm.nih.gov/coreutils/uswds/img/favicons/favicon-57.png" alt="U.S. flag">
        <p>An official website of the United States government</p>
        <button class="usa-accordion-button usa-banner-button" aria-expanded="false" aria-controls="gov-banner-top">
          <span class="usa-banner-button-text">Here's how you know</span>
        </button>
      </div>
    </header>
    <div class="usa-banner-content usa-grid usa-accordion-content" id="gov-banner-top" aria-hidden="true">
      <div class="usa-banner-guidance-gov usa-width-one-half">
        <img class="usa-banner-icon usa-media_block-img" src="https://www.ncbi.nlm.nih.gov/coreutils/uswds/img/icon-dot-gov.svg" alt="Dot gov">
        <div class="usa-media_block-body">
          <p>
            <strong>The .gov means it’s official.</strong>
            <br>
            Federal government websites often end in .gov or .mil. Before
            sharing sensitive information, make sure you’re on a federal
            government site.
          </p>
        </div>
      </div>
      <div class="usa-banner-guidance-ssl usa-width-one-half">
        <img class="usa-banner-icon usa-media_block-img" src="https://www.ncbi.nlm.nih.gov/coreutils/uswds/img/icon-https.svg" alt="Https">
        <div class="usa-media_block-body">
          <p>
            <strong>The site is secure.</strong>
            <br>
            The <strong>https://</strong> ensures that you are connecting to the
            official website and that any information you provide is encrypted
            and transmitted securely.
          </p>
        </div>
      </div>
    </div>
  </div>
</section>
<ul class="msg" id="msgServ"><li class="warning">
<p class="warning">
This URL will be replaced with <a href="https://blast.ncbi.nlm.nih.gov" title="BLAST">blast.ncbi.nlm.nih.gov</a> on 12/1/2014.
Please change your bookmark now.
</p>
</li></ul>    	
<header class="ncbi-header" role="banner" data-section="Header">
<a class="usa-skipnav" href="#mainCont">Skip to main page content</a>
<div class="usa-grid">
    <div class="usa-width-one-whole">
        <div class="ncbi-header__logo">
                <a href="https://www.ncbi.nlm.nih.gov/" class="logo" aria-label="NCBI Logo" data-ga-action="click_image" data-ga-label="NIH NLM Logo">
                  <img src="https://www.ncbi.nlm.nih.gov/coreutils/nwds/img/logos/AgencyLogo.svg" alt="NIH NLM Logo">
                </a>
            </div>

        <div class="ncbi-header__account">
            <a id="account_login" href="https://www.ncbi.nlm.nih.gov/account/?back_url=https%3A%2F%2Fwww%2Encbi%2Enlm%2Enih%2Egov%2Fblast%2FBlast%2Ecgi%3FCMD%3DPUT%26DATABASE%3Dnr%26ENTREZ%5FQUERY%3D%26FULL%5FDBNAME%3Dnr%26JOB%5FTITLE%3DProtein%2BSequence%2B%26MYNCBI%5FUSER%3D9305746888%26MYNCBI%5FUSER%3D9305746888%26ORG%5FDBS%3Dgiless%5Fdbvers5%26PROGRAM%3Dblastp%26QUERY%5FINFO%3DProtein%2BSequence%2B%26QUERY%5FLENGTH%3D15%26RID%3DNDG20ZRN016%26RTOE%3D31%26USER%5FTYPE%3D2%26USER%5FTYPE%3D2" class="usa-button header-button">Log in</a>
            <button id="account_info" class="header-button" aria-controls="account_popup">
                <span class="fa fa-user" aria-hidden="true"></span>
                <span class="username desktop-only" aria-hidden="true" id="uname_short"></span>
                <span class="sr-only">Show account info</span>
            </button>
        </div>

        <div class="ncbi-popup-anchor">
            <div class="ncbi-popup account-popup" id="account_popup" aria-hidden="true" role="dialog" aria-labelledby="account-popup-header">
                <div class="ncbi-popup-head">
                    <button class="ncbi-close-button"><span class="fa fa-window-close"></span><span class="usa-sr-only">Close</span></button>
                    <h4>Account</h4>
                </div>
                <div class="account-user-info">
                    Logged in as:<br>
                    <b><span class="username" id="uname_long">username</span></b>
                </div>
                <div class="account-links">
                    <ul class="usa-unstyled-list">
                        <li><a id="account_myncbi" href="https://www.ncbi.nlm.nih.gov/myncbi/">Dashboard</a> <span class="ncbi-text-small-light">(My NCBI)</span></li>
                        <li><a id="account_pubs" href="https://www.ncbi.nlm.nih.gov/myncbi/collections/bibliography/">Publications</a> <span class="ncbi-text-small-light">(My Bibliography)</span></li>
                        <li><a id="account_settings" href="https://www.ncbi.nlm.nih.gov/account/settings/">Account settings</a></li>
                        <li><a id="account_logout" href="https://www.ncbi.nlm.nih.gov/account/signout/?back_url=https%3A%2F%2Fwww%2Encbi%2Enlm%2Enih%2Egov%2Fblast%2FBlast%2Ecgi%3FCMD%3DPUT%26DATABASE%3Dnr%26ENTREZ%5FQUERY%3D%26FULL%5FDBNAME%3Dnr%26JOB%5FTITLE%3DProtein%2BSequence%2B%26MYNCBI%5FUSER%3D9305746888%26MYNCBI%5FUSER%3D9305746888%26ORG%5FDBS%3Dgiless%5Fdbvers5%26PROGRAM%3Dblastp%26QUERY%5FINFO%3DProtein%2BSequence%2B%26QUERY%5FLENGTH%3D15%26RID%3DNDG20ZRN016%26RTOE%3D31%26USER%5FTYPE%3D2%26USER%5FTYPE%3D2">Log out</a></li>
                    </ul>
                </div>
            </div>
        </div>

    </div>
</div>
</header>
<div role="navigation" aria-label="access keys">
<a id="nws_header_accesskey_0" href="https://www.ncbi.nlm.nih.gov/guide/browsers/#ncbi_accesskeys" class="usa-sr-only" accesskey="0" tabindex="-1">Access keys</a>
<a id="nws_header_accesskey_1" href="https://www.ncbi.nlm.nih.gov" class="usa-sr-only" accesskey="1" tabindex="-1">NCBI Homepage</a>
<a id="nws_header_accesskey_2" href="/myncbi/" class="set-base-url usa-sr-only" accesskey="2" tabindex="-1">MyNCBI Homepage</a>
<a id="nws_header_accesskey_3" href="#maincontent" class="usa-sr-only" accesskey="3" tabindex="-1">Main Content</a>
<a id="nws_header_accesskey_4" href="#" class="usa-sr-only" accesskey="4" tabindex="-1">Main Navigation</a>
</div>
<nav class="ncbi-topnav" id="navcontent">
    <div class="usa-grid">
        <a class="ncbi-topnav-root" href="Blast.cgi">BLAST <sup>&reg;</sup></a> <span id="brc"><span class="brcrmbsign">&raquo;</span> blastp suite</span>
        <ul class="rf ncbi-topnav-list" id="topnav-list">
            <li class="first "><a href="Blast.cgi?CMD=Web&amp;PAGE_TYPE=BlastHome" title="BLAST Home">Home</a></li>
            <li class="recent "><a href="Blast.cgi?CMD=GetSaved&amp;RECENT_RESULTS=on" title="Unexpired BLAST jobs">Recent Results</a></li>                
            <li class="saved "><a href="Blast.cgi?CMD=GetSaved" title="Saved sets of BLAST search parameters">Saved Strategies</a></li>
            <li  class= "last documentation "> <a href="../doc/blast-help/" title="BLAST documentation">Help</a></li>                            
        </ul>
    </div>
</nav>


        <div id="content-wrap">

		<div class="pageTitle">                            
                   Format Request
                   <span id="frmRequestPrTr"></span>                   
                </div>
				<!-- Do errors this way -->				
				<!--<ul class="msg"><li class=""><p></p></li></ul>-->
				<ul id="msgR" class="msg"><li class=""></li></ul>
                <div id="content">
				<form action="Blast.cgi" enctype="application/x-www-form-urlencoded" method="post" name="FormatForm" id="FormatForm">				

<script language="JavaScript">

 <!--

//document.images['BlastHeaderGif'].src = 'html/head_formating.gif';

// -->

</script>



<!--
                <p class='info'>
<strong>Job submitted.</strong>
We estimate that results will be ready in 16 seconds or less.

</p>
-->

<div class="fbtn">
<!--
<a href="javascript:document.forms[0].submit();">
<img align="middle" alt="Format button" border="0" src="FormatPage_files/format_but.gif">
</a>
-->
</div>

<dl class="summary  query title db">
<dd>
</dd>

<!-- <span class=" query title db">-->
<dt class="hidden query">Query</dt><dd class="hidden query">Protein Sequence</dd>
<dt class="hidden db">Database</dt><dd class="hidden db">nr</dd>
<dt class="hidden title">Job title</dt><dd class="hidden title">Protein Sequence</dd>
<dt class="hidden entrez">Entrez Query</dt><dd class="hidden entrez"><span class="note entrez">Note: Your search is limited to records matching this Entrez query</span></dd>
<!-- </span> -->
<dt><label for="rid">Request ID</label></dt><dd><input name="RID" size="50" type="text" value="NDG20ZRN016" id="rid" />
<input type="submit" value="View report" name="ViewReport" class="button" />
<!-- <img border="0" id="viewRpButton" src="images/veiwRpButton.jpg" class="viewReport"  alt="View report"  mouseovImg="images/veiwRpButtonOver.jpg" mouseoutImg="images/veiwRpButton.jpg" mousedownImg="images/veiwRpButtonDown.jpg" mouseupImg="images/veiwRpButtonOver.jpg"  />-->
<input type="checkbox" name="NEWWINRES"  form="FormatForm" winType="const" id="nw" class="newwin"  />
<label for="nw">Show results in a new window</label>
</dd>
<dt>Format<br/>
<!--<a class='help' href="#">[Help]</a></dt> -->

<dd>
<table id="filterResults" class="options blastp ">

<tr class="paramSet xgl">
<td class="hd"><label for="FORMAT_OBJECT">Show</label></td>
<td>
<div class="fi">
<select id="FORMAT_OBJECT" class="reset" name="FORMAT_OBJECT" defVal="Alignment">
<option value="Alignment" >Alignment</option>
<option value="PSSM_Scoremat" >PssmWithParameters</option>
<option value="Bioseq"  >Bioseq</option>
</select>
<label for="FORMAT_TYPE">as</label>
<select name="FORMAT_TYPE" id="FORMAT_TYPE" class="reset" defVal="HTML">
<option value="HTML"  >HTML</option>
<option value="Text"  >Plain text</option>
<option value="ASN.1"  >ASN.1</option>
<option value="XML"  >XML</option>
<option value="XML2"  >XML2</option>
<option value="JSON2"  >JSON2</option>
<option value="XML2_S"  >XML2_S</option>
<option value="JSON2_S"  >JSON2_S</option>
<option value="SAM_SQ"  >SAM_SQ</option>
<option value="SAM"  >SAM</option>
</select>
<input name="PSSM_FORMAT_TYPE" value="Text" size="3" id="pssmFormat" type="text" class="hidden dispType" />
<input name="BIOSEQ_FORMAT_TYPE" value="ASN.1" size="3" id="bioseqFormat" type="text" class="hidden dispType" />
<input name="PSSM_SC_FORMAT_TYPE" value="ASN.1" size="3" id="pssmScFormat" type="text" class="hidden dispType" />
<a class="resetAll" id="resetAll" >Reset form to defaults</a>
<a class="helplink  ui-ncbitoggler" data-jig="ncbitoggler" title="Alignments object formatting help" id="formatHelp" href="#"><i class="fas fa-question-circle"></i><span class="usa-sr-only">Help</span></a>
<div class="ui-helper-reset" aria-live="assertive" >
<p class="helpbox ui-ncbitoggler-slave" id="hlp1">
These options control formatting of alignments in results pages. The
default is HTML, but other formats (including plain text) are available.
PSSM and PssmWithParameters are representations of Position Specific Scoring Matrices and are only available for PSI-BLAST. 
The Advanced view option allows the database descriptions to be sorted by various indices in a table.
</p>
</div><!-- ARIA -->
</div>
</td>
</tr>

<tr class="odd paramSet">
<td class="hd"><label for="ALIGNMENT_VIEW">Alignment View</label></td>
<td>
<div class="fi">
<select name="ALIGNMENT_VIEW" id="ALIGNMENT_VIEW" defVal="Pairwise" class="reset">
<option value="Pairwise"  >Pairwise</option>
<option value="PairwiseWithIdentities"  >Pairwise with dots for identities</option>
<option value="QueryAnchored"  >Query-anchored with dots for identities</option>
<option value="QueryAnchoredNoIdentities"  >Query-anchored with letters for identities</option>
<option value="FlatQueryAnchored"  >Flat query-anchored with dots for identities</option>
<option value="FlatQueryAnchoredNoIdentities"  >Flat query-anchored with letters for identities</option>
<option value="Tabular"  >Hit Table</option>
</select>

<a class="helplink  ui-ncbitoggler" data-jig="ncbitoggler" title="Alignments view options help" id="alnViewHelp" href="#"><i class="fas fa-question-circle"></i><span class="usa-sr-only">Help</span></a>
<div class="ui-helper-reset" aria-live="assertive" >
<p class="helpbox ui-ncbitoggler-slave" id="hlp2">
Choose how to view alignments.
The default "pairwise" view shows how each subject sequence aligns
individually to the query sequence. The "query-anchored" view shows how
all subject sequences align to the query sequence. For each view type,
you can choose to show "identities" (matching residues) as letters or
dots.
<a href="Blast.cgi?CMD=Web&amp;PAGE_TYPE=BlastDocs&amp;DOC_TYPE=BlastHelp#alignment_view" target="helpWin" title="Additional alignments view options help">more...</a>
</p>
</div><!-- ARIA -->
</div>
</td>
</tr>

<tr class="paramSet">
<td class="hd"><label>Display</label></td>
<td class="cb">
<div class="fi">
<input name="SHOW_OVERVIEW" id="SHOW_OVERVIEW" type="checkbox" class="cb reset" defVal="checked" checked="checked" />
<label class="rb" for="SHOW_OVERVIEW">Graphical Overview</label>

<span id="shl" >
<input name="SHOW_LINKOUT" id="SHOW_LINKOUT" type="checkbox" class="cb reset" defVal="checked" checked="checked" />
<label class="rb" for="SHOW_LINKOUT">Linkout</label>
</span>
<span id="gts" >
<input name="GET_SEQUENCE" id="GET_SEQUENCE" type="checkbox" class="cb reset" defVal="checked" checked="checked" />
<label class="rb" for="GET_SEQUENCE">Sequence Retrieval</label>
</span>

<input name="NCBI_GI" id="NCBI_GI" type="checkbox" class="cb reset hidden" defVal="unchecked"  />
<label class="rb hidden" for="NCBI_GI">NCBI-gi</label>
<span id="scf" >
<input name="SHOW_CDS_FEATURE" id="SHOW_CDS_FEATURE" type="checkbox" class="cb reset blastn" defVal="unchecked"  />
<label for="SHOW_CDS_FEATURE" class="blastn">CDS feature</label>
</span>
<a class="helplink  ui-ncbitoggler" data-jig="ncbitoggler" title="Alignments display options help" id="displayHelp" href="#"><i class="fas fa-question-circle"></i><span class="usa-sr-only">Help</span></a>
<div class="ui-helper-reset" aria-live="assertive" >
<ul class="helpbox ui-ncbitoggler-slave" id="hlp3">
<li>Graphical Overview: Graphical Overview: Show graph of similar sequence regions aligned to  query.
<a href="Blast.cgi?CMD=Web&amp;PAGE_TYPE=BlastDocs&amp;DOC_TYPE=BlastHelp#show_overview" target="helpWin" title="Graphical Overview help">more...</a>
</li>
<li>NCBI-gi: Show NCBI gi identifiers.
</li>
<li>CDS feature: Show annotated coding region and translation.
<a href="Blast.cgi?CMD=Web&amp;PAGE_TYPE=BlastDocs&amp;DOC_TYPE=BlastHelp#show_cds_feature" title="CDS feature help" target="helpWin" >more...</a>
</li></ul>
</div><!-- ARIA -->
</div>
</td>
</tr>


<tr class="paramSet odd xgl">
<td class="hd"><label>Masking</label></td>
<td>
<div class="fi">
<label for="MASK_CHAR"> Character: </label>
<select name="MASK_CHAR" id="MASK_CHAR"  class="reset" defVal="2">
<option value="0"  >X for protein, n for nucleotide</option>
<option value="2" selected="selected" >Lower Case</option>
</select>
<label for="MASK_COLOR"> Color:</label>
<select name="MASK_COLOR" id="MASK_COLOR" class="reset" defVal="1">
<option value="0"  >Black
</option>

<option value="1" selected="selected" >Grey
</option>

<option value="2"  >Red
</option>

</select>
<a class="helplink  ui-ncbitoggler" data-jig="ncbitoggler" title="Alignments masking help" id="maskingHelp" href="#"><i class="fas fa-question-circle"></i><span class="usa-sr-only">Help</span></a>
<div class="ui-helper-reset" aria-live="assertive" >
<ul class="helpbox ui-ncbitoggler-slave" id="hlp4">
<li>Masking Character: Display masked (filtered) sequence regions as lower-case or as specific letters (N for nucleotide, P for protein).
</li>
<li>Masking Color: Display masked sequence regions in the given color.</li>
</ul>
</div><!-- ARIA -->
</div>
</td>
</tr>


<tr id="lr" class="paramSet xgl">
<td class="hd"><label>Limit results</label></td>
<td>
<div class="fi">
<label for="FRM_DESCRIPTIONS">Descriptions:</label>
<select name="DESCRIPTIONS" id="FRM_DESCRIPTIONS" class="reset" defVal="100">
<option value="0"      >0</option>
<option value="10"     >10</option>
<option value="50"     >50</option>
<option value="100"   selected="selected" >100</option>
<option value="250"    >250</option>
<option value="500"    >500</option>
<option value="1000"   >1000</option>
<option value="5000"   >5000</option>
<option value="10000"  >10000</option>
<option value="20000"  >20000</option>
</select>

<label for="FRM_NUM_OVERVIEW">Graphical overview:</label>
<select name="NUM_OVERVIEW" id="FRM_NUM_OVERVIEW" class="reset" defVal="100">
<option value="0"     >0</option>
<option value="10"    >10</option>
<option value="50"    >50</option>
<option value="100"  selected="selected" >100</option>
<option value="250"   >250</option>
<option value="500"  >500</option>
<option value="1000"  >1000</option>
</select>
<span id="frmAln">
<label for="FRM_ALIGNMENTS">Alignments:</label>
<select name="ALIGNMENTS" id="FRM_ALIGNMENTS" class="reset" defVal="100">
<option value="0"      >0</option>
<option value="10"     >10</option>
<option value="50"     >50</option>
<option value="100"   selected="selected" >100</option>
<option value="250"    >250</option>
<option value="500"    >500</option>
<option value="1000"   >1000</option>
<option value="5000"   >5000</option>
<option value="10000"  >10000</option>
<option value="20000"  >20000</option>
</select>
</span>
<label for="FRM_LINE_LENGTH">Line length:</label>
<select name="LINE_LENGTH" id="FRM_LINE_LENGTH" class="reset" defVal="60">
<option value="60"     >60</option>
<option value="90"     >90</option>
<option value="120"     >120</option>
<option value="150"     >150</option>
</select>
<a class="helplink  ui-ncbitoggler" data-jig="ncbitoggler" title="Limit number of descriptions/alignments help" id="numHelp" href="#"><i class="fas fa-question-circle"></i><span class="usa-sr-only">Help</span></a>
<div class="ui-helper-reset" aria-live="assertive" >
<ul class="helpbox ui-ncbitoggler-slave" id="hlp5">
<li>Descriptions: Show short descriptions for up to the given number of  sequences.</li> 
<li>Alignments:  Show alignments for up to the given number of sequences, in order of statistical significance.</li>
<li>Line lenghth:  Number of letters to show on one line in an alignment.</li>
</ul>
</div><!-- ARIA -->
</div>
</td>
</tr>

<tr class="paramSet odd xgl ">
<td class="hd"></td>
<td>
<div class="">
<label for="qorganism">Organism</label>
<span class="instr">Type common name, binomial, taxid, or group name. Only 20 top taxa will be shown.</span><br/>
<input name="FORMAT_ORGANISM" size="55"  type="text" id="qorganism" value="" data-jigconfig="dictionary:'taxids_sg',isCrossDomain:false" autocomplete="off" data-jig="ncbiautocomplete" class="reset">
<input type="hidden" value = "1" name="FORMAT_NUM_ORG" id="numOrg" />
<input type="checkbox" name="FORMAT_ORG_EXCLUDE"  class="oExclR cb" id="orgExcl"/>        
<label for="orgExcl" class="right">exclude</label>
<a href="#" title="Add organism" id="addOrg"><img border="0" src="css/images/addOrg.jpg" id="addOrgIm"   alt="Add organism"  mouseovImg="css/images/addOrgOver.jpg" mouseoutImg="css/images/addOrg.jpg" mousedownImg="css/images/addOrgDown.jpg" mouseupImg="css/images/addOrgOver.jpg"  /></a>
<div id="orgs">

</div>
<div class="fi">
<a class="helplink  ui-ncbitoggler" data-jig="ncbitoggler" title="Limit results by organism help" id="organismHelp" href="#"><i class="fas fa-question-circle"></i><span class="usa-sr-only">Help</span></a>
<div class="ui-helper-reset" aria-live="assertive" >
<p class="helpbox ui-ncbitoggler-slave" id="hlp6">
Show only sequences from the given organism.
</p>
</div><!-- ARIA -->
</div>
</div>
</td>
</tr>

<tr class="paramSet xgl hidden">
<td class="hd"></td>
<td>
<div class="fi">
<label for="FORMAT_EQ_TEXT">Entrez query:</label>
<input name="FORMAT_EQ_TEXT" id="FORMAT_EQ_TEXT" size="60" type="text" value="" class="reset" />
<a class="helplink  ui-ncbitoggler" data-jig="ncbitoggler" title="Limit results by Entrez query help" id="entrezHelp" href="#"><i class="fas fa-question-circle"></i><span class="usa-sr-only">Help</span></a>
<div class="ui-helper-reset" aria-live="assertive" >
<p class="helpbox ui-ncbitoggler-slave" id="hlp7">
Show only those sequences that match the given Entrez query.
<a href="Blast.cgi?CMD=Web&amp;PAGE_TYPE=BlastDocs&amp;DOC_TYPE=BlastHelp#limit_result" target="helpWin" title="Additional limit results by Entrez query help"  target="helpWin">more...</a>
</p>
</div><!-- ARIA -->
</div>
</td>
</tr>

  
<tr class="paramSet odd xgl">
<td class="hd"></td>
<td>
<div class="fi">
<label for="EXPECT_LOW">Expect Min:</label> <input name="EXPECT_LOW" id="EXPECT_LOW" size="10" type="text" value="" class="reset"/>
<label for="EXPECT_HIGH">Expect Max:</label> <input name="EXPECT_HIGH" id="EXPECT_HIGH" size="10" type="text" value="" class="reset" />
<a class="helplink  ui-ncbitoggler" data-jig="ncbitoggler" title="Limit results by expect value range help" id="expectHelp" href="#"><i class="fas fa-question-circle"></i><span class="usa-sr-only">Help</span></a>
<div class="ui-helper-reset" aria-live="assertive" >
<p class="helpbox ui-ncbitoggler-slave" id="hlp8">
Show only sequences with expect values in the given range.
<a href="Blast.cgi?CMD=Web&amp;PAGE_TYPE=BlastDocs&amp;DOC_TYPE=BlastHelp#expect_range" target="helpWin" title="Additional limit results by expect value range help">more...</a>
</p>
</div><!-- ARIA -->
</div>
</td>
</tr>
<tr class="paramSet xgl">
<td class="hd"></td>
<td>
 <div class="fi">
<label for="PERC_IDENT_LOW">Percent Identity Min:</label> <input name="PERC_IDENT_LOW" id="PERC_IDENT_LOW" size="10" type="text" value="" class="reset"/>
<label for="PERC_IDENT_HIGH">Percent Identity Max:</label> <input name="PERC_IDENT_HIGH" id="PERC_IDENT_HIGH" size="10" type="text" value="" class="reset" />
<a class="helplink  ui-ncbitoggler" data-jig="ncbitoggler" title="Limit results by percent identity range help" id="percIdentHelp" href="#"><i class="fas fa-question-circle"></i><span class="usa-sr-only">Help</span></a>
<div class="ui-helper-reset" aria-live="assertive" >
<p class="helpbox ui-ncbitoggler-slave" id="hlp10">
 Show only sequences with percent identity values in the given range.  
</p>
</div><!-- ARIA -->
</div>
</td>
</tr>      
<tr class="psiBlast odd paramSet xgl ">
<td class="hd"><label>Format for</label></td>
<td>
<div class="fi">
<input name="RUN_PSIBLAST_FORM" id="RUN_PSIBLAST" type="checkbox" class="cb psiBlast hidden"  />
<label for="I_THRESH">PSI-BLAST with inclusion threshold:</label>
<input name="I_THRESH" id="I_THRESH" size="10" type="text" value="" defVal="0.005" />
<a class="helplink  ui-ncbitoggler" data-jig="ncbitoggler" title="PSI BLAST formatting help" id="psiHelp" href="#"><i class="fas fa-question-circle"></i><span class="usa-sr-only">Help</span></a>
<div class="ui-helper-reset" aria-live="assertive" >
<ul class="helpbox ui-ncbitoggler-slave" id="hlp9">
<li>Format for PSI-BLAST: The Position-Specific Iterated BLAST (PSI-BLAST) program performs iterative searches with a protein query, 
in which sequences found in one round of search are used to build a custom score model for the next round.
<a href="Blast.cgi?CMD=Web&amp;PAGE_TYPE=BlastDocs&amp;DOC_TYPE=BlastHelp#psiblast" target="helpWin" title="Additional PSI BLAST formatting help">more...</a>
</li>  
<li>Inclusion Threshold: This sets the statistical significance threshold for including a sequence in the model used 
by PSI-BLAST to create the PSSM on the next iteration.</li> 
</ul>
</div><!-- ARIA -->
</div>
</td>
</tr>
</table>
</dd>
</dl>

<input name="RID" value="NDG20ZRN016" type="hidden" />
<input name="CDD_RID" value="" type="hidden" />
<input name="CDD_SEARCH_STATE" type="hidden" value="" />

<input name="STEP_NUMBER" value="" id="stepNumber" type="hidden" />
<input name="CMD" value="Get" type="hidden" />
<input name="FORMAT_EQ_OP" value="AND" type="hidden" />
<input name="RESULTS_PAGE_TARGET" type="hidden" id="resPageTarget" value="Blast_Results_for_154358012" />
<input name="QUERY_INFO" type="hidden" value="Protein Sequence" />                   		
<input name="ENTREZ_QUERY" type="hidden" value="" />
<input name="QUERY_INDEX" type="hidden" value="0"/>
<input name="NUM_QUERIES" type="hidden" value="1"/>
<input name="CONFIG_DESCR" type="hidden" value="ClustMemNbr,ClustComn,Ds,Sc,Ms,Ts,Cov,Eval,Idnt,AccLen,Acc" />




<!-- Those params are set in the template (blastn.dat, blastp.dat etc. -->
<input name="BLAST_PROGRAMS" type="hidden" value="blastp"/>
<input name="PAGE" type="hidden" value="Proteins"/>
<input name="PROGRAM" type="hidden" value="blastp"/>
<input name="MEGABLAST" type="hidden" value="" />
<input name="RUN_PSIBLAST" type="hidden" value="" />
<input name="BLAST_SPEC" id="blastSpec" type="hidden" value=""/>


<input name="QUERY" type="hidden" value=""/>
<input name="JOB_TITLE" type="hidden" value="Protein Sequence"/>
<input name="QUERY_TO" type="hidden" value=""/>
<input name="QUERY_FROM" type="hidden" value=""/>
<input name="SUBJECTS_FROM" type="hidden" value=""/>
<input name="SUBJECTS_TO" type="hidden" value=""/>
<input name="EQ_TEXT" type="hidden" value=""/>
<input name="ORGN" type="hidden" value=""/>
<input name="EQ_MENU" type="hidden" value=""/>
<input name="ORG_EXCLUDE" type="hidden" value=""/>
<input name="PHI_PATTERN" type="hidden" value=""/>
<input name="EXPECT" type="hidden" value=""/>									
<input name="DATABASE" type="hidden" value="nr"/>
<input name="DB_GROUP" type="hidden" value=""/>
<input name="SUBGROUP_NAME" type="hidden" value=""/>

<input name="GENETIC_CODE" type="hidden" value=""/>
<input name="WORD_SIZE" type="hidden" value=""/>
<input name="MATCH_SCORES" type="hidden" value=""/>			
<input name="MATRIX_NAME" type="hidden" value=""/>				
<input name="GAPCOSTS" type="hidden" value=""/>
<input name="MAX_NUM_SEQ" id="maxNumSeq" type="hidden" value=""/>					
<input name="COMPOSITION_BASED_STATISTICS" type="hidden" value=""/>			
<input name="NEWWIN" type="hidden" value=""/>
<input name="SHORT_QUERY_ADJUST" type="hidden" value=""/>
<input name="FILTER" type="hidden" value=""/>
<input name="REPEATS" type="hidden" value=""/>
<input name="ID_FOR_PSSM" type="hidden" value=""/>
<input name="EXCLUDE_MODELS" type="hidden" value=""/>
<input name="EXCLUDE_SEQ_UNCULT" type="hidden" value=""/>
<input name="WP_PROTEINS" type="hidden" value=""/>
<input name="SEQ_FROM_TYPE" type="hidden" value=""/>
<input name="ENTREZ_QUERY" type="hidden" value=""/>
<input name="ENTREZ_QUERY_PRESET" type="hidden" value=""/>
<input name="ENTREZ_QUERY_PRESET_EXCL" type="hidden" value=""/>
<input name="NUM_ORG" type="hidden" value = "1" />

<!-- PSSM -->
<input name="LCASE_MASK" type="hidden" value=""/>
<input name="TEMPLATE_TYPE" type="hidden" value=""/>
<input name="TEMPLATE_LENGTH" type="hidden" value=""/>
<input name="I_THRESH" type="hidden" value=""/>
<input name="PSI_PSEUDOCOUNT" type="hidden" value=""/>
<input name="DI_THRESH" type="hidden" id="diThresh" value=""/>
<input name="HSP_RANGE_MAX" type="hidden" value=""/>



<input name="ADJUSTED_FOR_SHORT_QUERY" type="hidden" value=""/>
<input name="MIXED_QUERIES" type="hidden" value=""/>
<input name="MIXED_DATABASE" id="mixedDb" type="hidden" value=""/>
<input name="BUILD_NAME"  type="hidden" value=""/>
<input name="ORG_DBS"  type="hidden" value="giless_dbvers5"/>
<input name="WWW_BLAST_TYPE" type="hidden" value=""/>

<!--QBlastInfoBegin
    RID = NDG20ZRN016
    RTOE = 31
QBlastInfoEnd
-->
</form>		                              		
				
				</div><!-- /#content -->

        </div><!-- /#content-wrap -->

		 <footer>
      <section class="icon-section">
        <div id="icon-section-header" class="icon-section_header">Follow NCBI</div>
        <div class="grid-container container">
          <div class="icon-section_container">
            <a class="footer-icon" id="footer_twitter" href="https://twitter.com/ncbi" aria-label="Twitter"><svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
                <defs>
                  <style>
                    .cls-11 {
                      fill: #737373;
                    }
                  </style>
                </defs>
                <title>Twitter</title>
                <path class="cls-11" d="M250.11,105.48c-7,3.14-13,3.25-19.27.14,8.12-4.86,8.49-8.27,11.43-17.46a78.8,78.8,0,0,1-25,9.55,39.35,39.35,0,0,0-67,35.85,111.6,111.6,0,0,1-81-41.08A39.37,39.37,0,0,0,81.47,145a39.08,39.08,0,0,1-17.8-4.92c0,.17,0,.33,0,.5a39.32,39.32,0,0,0,31.53,38.54,39.26,39.26,0,0,1-17.75.68,39.37,39.37,0,0,0,36.72,27.3A79.07,79.07,0,0,1,56,223.34,111.31,111.31,0,0,0,116.22,241c72.3,0,111.83-59.9,111.83-111.84,0-1.71,0-3.4-.1-5.09C235.62,118.54,244.84,113.37,250.11,105.48Z">
                </path>
              </svg></a>
            <a class="footer-icon" id="footer_facebook" href="https://www.facebook.com/ncbi.nlm" aria-label="Facebook"><svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
                <title>Facebook</title>
                <path class="cls-11" d="M210.5,115.12H171.74V97.82c0-8.14,5.39-10,9.19-10h27.14V52l-39.32-.12c-35.66,0-42.42,26.68-42.42,43.77v19.48H99.09v36.32h27.24v109h45.41v-109h35Z">
                </path>
              </svg></a>
            <a class="footer-icon" id="footer_linkedin" href="https://www.linkedin.com/company/ncbinlm" aria-label="LinkedIn"><svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
                <title>LinkedIn</title>
                <path class="cls-11" d="M101.64,243.37H57.79v-114h43.85Zm-22-131.54h-.26c-13.25,0-21.82-10.36-21.82-21.76,0-11.65,8.84-21.15,22.33-21.15S101.7,78.72,102,90.38C102,101.77,93.4,111.83,79.63,111.83Zm100.93,52.61A17.54,17.54,0,0,0,163,182v61.39H119.18s.51-105.23,0-114H163v13a54.33,54.33,0,0,1,34.54-12.66c26,0,44.39,18.8,44.39,55.29v58.35H198.1V182A17.54,17.54,0,0,0,180.56,164.44Z">
                </path>
              </svg></a>
            <a class="footer-icon" id="footer_github" href="https://github.com/ncbi" aria-label="GitHub"><svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
                <defs>
                  <style>
                    .cls-11,
                    .cls-12 {
                      fill: #737373;
                    }

                    .cls-11 {
                      fill-rule: evenodd;
                    }
                  </style>
                </defs>
                <title>GitHub</title>
                <path class="cls-11" d="M151.36,47.28a105.76,105.76,0,0,0-33.43,206.1c5.28,1,7.22-2.3,7.22-5.09,0-2.52-.09-10.85-.14-19.69-29.42,6.4-35.63-12.48-35.63-12.48-4.81-12.22-11.74-15.47-11.74-15.47-9.59-6.56.73-6.43.73-6.43,10.61.75,16.21,10.9,16.21,10.9,9.43,16.17,24.73,11.49,30.77,8.79,1-6.83,3.69-11.5,6.71-14.14C108.57,197.1,83.88,188,83.88,147.51a40.92,40.92,0,0,1,10.9-28.39c-1.1-2.66-4.72-13.42,1-28,0,0,8.88-2.84,29.09,10.84a100.26,100.26,0,0,1,53,0C198,88.3,206.9,91.14,206.9,91.14c5.76,14.56,2.14,25.32,1,28a40.87,40.87,0,0,1,10.89,28.39c0,40.62-24.74,49.56-48.29,52.18,3.79,3.28,7.17,9.71,7.17,19.58,0,14.15-.12,25.54-.12,29,0,2.82,1.9,6.11,7.26,5.07A105.76,105.76,0,0,0,151.36,47.28Z">
                </path>
                <path class="cls-12" d="M85.66,199.12c-.23.52-1.06.68-1.81.32s-1.2-1.06-.95-1.59,1.06-.69,1.82-.33,1.21,1.07.94,1.6Zm-1.3-1">
                </path>
                <path class="cls-12" d="M90,203.89c-.51.47-1.49.25-2.16-.49a1.61,1.61,0,0,1-.31-2.19c.52-.47,1.47-.25,2.17.49s.82,1.72.3,2.19Zm-1-1.08">
                </path>
                <path class="cls-12" d="M94.12,210c-.65.46-1.71,0-2.37-.91s-.64-2.07,0-2.52,1.7,0,2.36.89.65,2.08,0,2.54Zm0,0"></path>
                <path class="cls-12" d="M99.83,215.87c-.58.64-1.82.47-2.72-.41s-1.18-2.06-.6-2.7,1.83-.46,2.74.41,1.2,2.07.58,2.7Zm0,0">
                </path>
                <path class="cls-12" d="M107.71,219.29c-.26.82-1.45,1.2-2.64.85s-2-1.34-1.74-2.17,1.44-1.23,2.65-.85,2,1.32,1.73,2.17Zm0,0">
                </path>
                <path class="cls-12" d="M116.36,219.92c0,.87-1,1.59-2.24,1.61s-2.29-.68-2.3-1.54,1-1.59,2.26-1.61,2.28.67,2.28,1.54Zm0,0">
                </path>
                <path class="cls-12" d="M124.42,218.55c.15.85-.73,1.72-2,1.95s-2.37-.3-2.52-1.14.73-1.75,2-2,2.37.29,2.53,1.16Zm0,0"></path>
              </svg></a>
            <a class="footer-icon" id="footer_blog" href="https://ncbiinsights.ncbi.nlm.nih.gov/" aria-label="Blog">
              <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><defs><style>.cls-1{fill:#737373;}</style></defs><path class="cls-1" d="M14,30a4,4,0,1,1-4-4,4,4,0,0,1,4,4Zm11,3A19,19,0,0,0,7.05,15a1,1,0,0,0-1,1v3a1,1,0,0,0,.93,1A14,14,0,0,1,20,33.07,1,1,0,0,0,21,34h3a1,1,0,0,0,1-1Zm9,0A28,28,0,0,0,7,6,1,1,0,0,0,6,7v3a1,1,0,0,0,1,1A23,23,0,0,1,29,33a1,1,0,0,0,1,1h3A1,1,0,0,0,34,33Z"></path></svg>
            </a>
          </div>
        </div>
      </section>

      <section class="container-fluid bg-primary">
        <div class="container pt-5">
          <div class="row mt-3">
            <div class="col-lg-3 col-12">
              <p><a class="text-white" href="https://www.nlm.nih.gov/socialmedia/index.html">Connect with NLM</a></p>
              <ul class="list-inline social_media">
                <li class="list-inline-item"><a href="https://twitter.com/NLM_NIH" aria-label="Twitter" target="_blank" rel="noopener noreferrer"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 249 249" style="enable-background:new 0 0 249 249;" xml:space="preserve">
                      <style type="text/css">
                        .st20 {
                          fill: #FFFFFF;
                        }

                        .st30 {
                          fill: none;
                          stroke: #FFFFFF;
                          stroke-width: 8;
                          stroke-miterlimit: 10;
                        }
                      </style>
                      <title>SM-Twitter</title>
                      <g>
                        <g>
                          <g>
                            <path class="st20" d="M192.9,88.1c-5,2.2-9.2,2.3-13.6,0.1c5.7-3.4,6-5.8,8.1-12.3c-5.4,3.2-11.4,5.5-17.6,6.7
                                                c-10.5-11.2-28.1-11.7-39.2-1.2c-7.2,6.8-10.2,16.9-8,26.5c-22.3-1.1-43.1-11.7-57.2-29C58,91.6,61.8,107.9,74,116
                                                c-4.4-0.1-8.7-1.3-12.6-3.4c0,0.1,0,0.2,0,0.4c0,13.2,9.3,24.6,22.3,27.2c-4.1,1.1-8.4,1.3-12.5,0.5c3.6,11.3,14,19,25.9,19.3
                                                c-11.6,9.1-26.4,13.2-41.1,11.5c12.7,8.1,27.4,12.5,42.5,12.5c51,0,78.9-42.2,78.9-78.9c0-1.2,0-2.4-0.1-3.6
                                                C182.7,97.4,189.2,93.7,192.9,88.1z"></path>
                          </g>
                        </g>
                        <circle class="st30" cx="124.4" cy="128.8" r="108.2"></circle>
                      </g>
                    </svg></a></li>
                <li class="list-inline-item"><a href="https://www.facebook.com/nationallibraryofmedicine" aria-label="Facebook" rel="noopener noreferrer" target="_blank">
                    <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 249 249" style="enable-background:new 0 0 249 249;" xml:space="preserve">
                      <style type="text/css">
                        .st10 {
                          fill: #FFFFFF;
                        }

                        .st110 {
                          fill: none;
                          stroke: #FFFFFF;
                          stroke-width: 8;
                          stroke-miterlimit: 10;
                        }
                      </style>
                      <title>SM-Facebook</title>
                      <g>
                        <g>
                          <path class="st10" d="M159,99.1h-24V88.4c0-5,3.3-6.2,5.7-6.2h16.8V60l-24.4-0.1c-22.1,0-26.2,16.5-26.2,27.1v12.1H90v22.5h16.9
                                                      v67.5H135v-67.5h21.7L159,99.1z"></path>
                        </g>
                      </g>
                      <circle class="st110" cx="123.6" cy="123.2" r="108.2"></circle>
                    </svg>
                  </a></li>
                <li class="list-inline-item"><a href="https://www.youtube.com/user/NLMNIH" aria-label="Youtube" target="_blank" rel="noopener noreferrer"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 249 249" style="enable-background:new 0 0 249 249;" xml:space="preserve">
                      <title>SM-Youtube</title>
                      <style type="text/css">
                        .st4 {
                          fill: none;
                          stroke: #FFFFFF;
                          stroke-width: 8;
                          stroke-miterlimit: 10;
                        }

                        .st5 {
                          fill: #FFFFFF;
                        }
                      </style>
                      <circle class="st4" cx="124.2" cy="123.4" r="108.2"></circle>
                      <g transform="translate(0,-952.36218)">
                        <path class="st5" d="M88.4,1037.4c-10.4,0-18.7,8.3-18.7,18.7v40.1c0,10.4,8.3,18.7,18.7,18.7h72.1c10.4,0,18.7-8.3,18.7-18.7
                                            v-40.1c0-10.4-8.3-18.7-18.7-18.7H88.4z M115.2,1058.8l29.4,17.4l-29.4,17.4V1058.8z"></path>
                      </g>
                    </svg></a></li>
              </ul>
            </div>
            <div class="col-lg-3 col-12">
              <p class="address_footer text-white">National Library of Medicine<br>
                <a href="https://www.google.com/maps/place/8600+Rockville+Pike,+Bethesda,+MD+20894/@38.9959508,-77.101021,17z/data=!3m1!4b1!4m5!3m4!1s0x89b7c95e25765ddb:0x19156f88b27635b8!8m2!3d38.9959508!4d-77.0988323" class="text-white" target="_blank" rel="noopener noreferrer">8600 Rockville Pike<br>
                  Bethesda, MD 20894</a></p>
            </div>
            <div class="col-lg-3 col-12 centered-lg">
              <p><a href="https://www.nlm.nih.gov/web_policies.html" class="text-white">Web Policies</a><br>
                <a href="https://www.nih.gov/institutes-nih/nih-office-director/office-communications-public-liaison/freedom-information-act-office" class="text-white">FOIA</a><br>
                <a href="https://www.hhs.gov/vulnerability-disclosure-policy/index.html" class="text-white" id="vdp">HHS Vulnerability Disclosure</a></p>
            </div>
            <div class="col-lg-3 col-12 centered-lg">
              <p><a class="supportLink text-white" href="https://support.nlm.nih.gov/">Help</a><br>
                <a href="https://www.nlm.nih.gov/accessibility.html" class="text-white">Accessibility</a><br>
                <a href="https://www.nlm.nih.gov/careers/careers.html" class="text-white">Careers</a></p>
            </div>
          </div>
          <div class="row">
            <div class="col-lg-12 centered-lg">
              <nav class="bottom-links">
                <ul class="mt-3">
                  <li>
                    <a class="text-white" href="//www.nlm.nih.gov/">NLM</a>
                  </li>
                  <li>
                    <a class="text-white" href="https://www.nih.gov/">NIH</a>
                  </li>
                  <li>
                    <a class="text-white" href="https://www.hhs.gov/">HHS</a>
                  </li>
                  <li>
                    <a class="text-white" href="https://www.usa.gov/">USA.gov</a>
                  </li>
                </ul>
              </nav>
            </div>
          </div>
        </div>
      </section>
    </footer>
<script type="text/javascript" src="js/nwds.js"></script>
<script type="text/javascript" src="js/ncbipopup.js"></script>
<script type="text/javascript" src="js/headerNew.js"></script>
<script src="js/uswds.min.js"></script>
   </div><!--/#wrap-->

<script type="text/javascript" src="/portal/portal3rc.fcgi/rlib/js/InstrumentOmnitureBaseJS/InstrumentNCBIBaseJS/InstrumentPageStarterJS.js"></script>
<!--
<script type="text/javascript" src="://www.ncbi.nlm.nih.gov/portal/portal3rc.fcgi/supportedbrowsers/js/nonportalbc_min.js"></script>
<script type="text/javascript">$("#browsers_ajax").browserCheck();</script>
-->
</body>

</html>

 

BLAST GET

Using the request id parsed from the result of the PUT, get the results of the search. Common attributes:

  • RID - mandatory
  • FORMAT_TYPE - HTML, Text, ASN.1, XML
  • ALIGNMENTS - number of alignments (default 500)
  • ALIGNMENT_VIEW - Pairwise, QueryAnchored, QueryAnchoredNoIdentities, FlatQueryAnchored, FlatQueryAnchoredNoIdentities, Tabular
NDG20ZRN016
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="jig" content="ncbitoggler"/>
<meta name="ncbitoggler" content="animation:'none'"/>
<title>NCBI Blast:</title>
<script type="text/javascript" src="/core/jig/1.15.2/js/jig.min.js             "></script>
<script type="text/javascript">    jQuery.getScript("/core/alerts/alerts.js", function() {
        galert(['div#header', 'body > *:nth-child(1)'])
    });</script>
<meta http-equiv="Pragma" content="no-cache">
<link rel="stylesheet" type="text/css" href="css/uswds.min.css" media="screen" />
<link rel="stylesheet"  type="text/css" href="https://www.ncbi.nlm.nih.gov/style-guide/static/nwds/css/nwds.css"/>
<link rel="stylesheet" href="css/headerNew.css?v=1"/>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" crossorigin="anonymous"> <!-- Font Awesome icons -->
<link rel="stylesheet" type="text/css" href="css/footerNew.css?v=1" media="screen" />
<link rel="stylesheet" type="text/css" href="css/main.css" media="screen" />
<link rel="stylesheet" type="text/css" href="css/blastRes.css" media="screen" />
<link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]>
<link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" />
<![endif]-->
<script type="text/javascript" src="js/utils.js"></script>
<script type="text/javascript" src="js/results.js"></script>
</head>

<body id="type-a" class="noToggleCheck" >
<div id="wrap">
		<script>var useOfficialGovtHeader = true;</script>
<section class="usa-banner">
  <div class="usa-accordion">
    <header class="usa-banner-header">
      <div class="usa-grid usa-banner-inner">
        <img src="https://www.ncbi.nlm.nih.gov/coreutils/uswds/img/favicons/favicon-57.png" alt="U.S. flag">
        <p>An official website of the United States government</p>
        <button class="usa-accordion-button usa-banner-button" aria-expanded="false" aria-controls="gov-banner-top">
          <span class="usa-banner-button-text">Here's how you know</span>
        </button>
      </div>
    </header>
    <div class="usa-banner-content usa-grid usa-accordion-content" id="gov-banner-top" aria-hidden="true">
      <div class="usa-banner-guidance-gov usa-width-one-half">
        <img class="usa-banner-icon usa-media_block-img" src="https://www.ncbi.nlm.nih.gov/coreutils/uswds/img/icon-dot-gov.svg" alt="Dot gov">
        <div class="usa-media_block-body">
          <p>
            <strong>The .gov means it’s official.</strong>
            <br>
            Federal government websites often end in .gov or .mil. Before
            sharing sensitive information, make sure you’re on a federal
            government site.
          </p>
        </div>
      </div>
      <div class="usa-banner-guidance-ssl usa-width-one-half">
        <img class="usa-banner-icon usa-media_block-img" src="https://www.ncbi.nlm.nih.gov/coreutils/uswds/img/icon-https.svg" alt="Https">
        <div class="usa-media_block-body">
          <p>
            <strong>The site is secure.</strong>
            <br>
            The <strong>https://</strong> ensures that you are connecting to the
            official website and that any information you provide is encrypted
            and transmitted securely.
          </p>
        </div>
      </div>
    </div>
  </div>
</section>
    	
<header class="ncbi-header" role="banner" data-section="Header">
<a class="usa-skipnav" href="#mainCont">Skip to main page content</a>
<div class="usa-grid">
    <div class="usa-width-one-whole">
        <div class="ncbi-header__logo">
                <a href="https://www.ncbi.nlm.nih.gov/" class="logo" aria-label="NCBI Logo" data-ga-action="click_image" data-ga-label="NIH NLM Logo">
                  <img src="https://www.ncbi.nlm.nih.gov/coreutils/nwds/img/logos/AgencyLogo.svg" alt="NIH NLM Logo">
                </a>
            </div>

        <div class="ncbi-header__account">
            <a id="account_login" href="https://www.ncbi.nlm.nih.gov/account/?back_url=https%3A%2F%2Fblast%2Encbi%2Enlm%2Enih%2Egov%2FBlast%2Ecgi%3FCMD%3DGET%26FORMAT%5FTYPE%3DXML%26RID%3DNDG20ZRN016" class="usa-button header-button">Log in</a>
            <button id="account_info" class="header-button" aria-controls="account_popup">
                <span class="fa fa-user" aria-hidden="true"></span>
                <span class="username desktop-only" aria-hidden="true" id="uname_short"></span>
                <span class="sr-only">Show account info</span>
            </button>
        </div>

        <div class="ncbi-popup-anchor">
            <div class="ncbi-popup account-popup" id="account_popup" aria-hidden="true" role="dialog" aria-labelledby="account-popup-header">
                <div class="ncbi-popup-head">
                    <button class="ncbi-close-button"><span class="fa fa-window-close"></span><span class="usa-sr-only">Close</span></button>
                    <h4>Account</h4>
                </div>
                <div class="account-user-info">
                    Logged in as:<br>
                    <b><span class="username" id="uname_long">username</span></b>
                </div>
                <div class="account-links">
                    <ul class="usa-unstyled-list">
                        <li><a id="account_myncbi" href="https://www.ncbi.nlm.nih.gov/myncbi/">Dashboard</a> <span class="ncbi-text-small-light">(My NCBI)</span></li>
                        <li><a id="account_pubs" href="https://www.ncbi.nlm.nih.gov/myncbi/collections/bibliography/">Publications</a> <span class="ncbi-text-small-light">(My Bibliography)</span></li>
                        <li><a id="account_settings" href="https://www.ncbi.nlm.nih.gov/account/settings/">Account settings</a></li>
                        <li><a id="account_logout" href="https://www.ncbi.nlm.nih.gov/account/signout/?back_url=https%3A%2F%2Fblast%2Encbi%2Enlm%2Enih%2Egov%2FBlast%2Ecgi%3FCMD%3DGET%26FORMAT%5FTYPE%3DXML%26RID%3DNDG20ZRN016">Log out</a></li>
                    </ul>
                </div>
            </div>
        </div>

    </div>
</div>
</header>
<div role="navigation" aria-label="access keys">
<a id="nws_header_accesskey_0" href="https://www.ncbi.nlm.nih.gov/guide/browsers/#ncbi_accesskeys" class="usa-sr-only" accesskey="0" tabindex="-1">Access keys</a>
<a id="nws_header_accesskey_1" href="https://www.ncbi.nlm.nih.gov" class="usa-sr-only" accesskey="1" tabindex="-1">NCBI Homepage</a>
<a id="nws_header_accesskey_2" href="/myncbi/" class="set-base-url usa-sr-only" accesskey="2" tabindex="-1">MyNCBI Homepage</a>
<a id="nws_header_accesskey_3" href="#maincontent" class="usa-sr-only" accesskey="3" tabindex="-1">Main Content</a>
<a id="nws_header_accesskey_4" href="#" class="usa-sr-only" accesskey="4" tabindex="-1">Main Navigation</a>
</div>
<nav class="ncbi-topnav" id="navcontent">
    <div class="usa-grid">
        <a class="ncbi-topnav-root" href="Blast.cgi">BLAST <sup>&reg;</sup></a> <span id="brc"><span class="brcrmbsign">&raquo;</span> <a href="Blast.cgi?PAGE=Nucleotides&amp;PROGRAM=blastn&amp;PAGE_TYPE=BlastSearch&amp;BLAST_SPEC=">blastn suite</a> <span class="brcrmbsign">&raquo;</span> RID-NDG20ZRN016</span>
        <ul class="rf ncbi-topnav-list" id="topnav-list">
            <li class="first "><a href="Blast.cgi?CMD=Web&amp;PAGE_TYPE=BlastHome" title="BLAST Home">Home</a></li>
            <li class="recent "><a href="Blast.cgi?CMD=GetSaved&amp;RECENT_RESULTS=on" title="Unexpired BLAST jobs">Recent Results</a></li>                
            <li class="saved "><a href="Blast.cgi?CMD=GetSaved" title="Saved sets of BLAST search parameters">Saved Strategies</a></li>
            <li  class= "last documentation "> <a href="../doc/blast-help/" title="BLAST documentation">Help</a></li>                            
        </ul>
    </div>
</nav>



        <div id="content-wrap">

                <div class="pageTitle">                            
                   Format Request Status                   
                </div>
		<div class="inlineDiv resHeader">				   
				   <a  id="frmPage"  class="WAITING" href="#" submitForm="reformat">[Formatting options] </a>                   
                </div>
                <h2 id="jtitle" >Job Title: </h2>
								
                <div id="content">                
                <!--<ul id="msg" class="msg"><li class=""><p class=""></p><p class=""></p><p class=""></p></ul> -->
                <ul id="msg" class="msg"><li class=""></li></ul>
                <p><!--
                QBlastInfoBegin
	                Status=WAITING
                QBlastInfoEnd
                --></p> 
                               
                <SCRIPT LANGUAGE="JavaScript"><!--
                    var tm = "2000";
                    if (tm != "") {                    
                        setTimeout('document.forms[0].submit();',tm);
                    }
                //--></SCRIPT>                                
                <table id="statInfo" class="WAITING">
                <tr><td>Request ID</td><td> <b>NDG20ZRN016</b></td></tr>
                <tr class="odd"><td>Status</td><td>Searching</td></tr>
                <tr><td>Submitted at</td><td>Mon Oct 24 12:41:36 2022</td></tr>
                <tr class="odd"><td>Current time</td><td>Mon Oct 24 12:41:37 2022</td></tr>
                <tr><td>Time since submission</td><td>00:00:00</td></tr>
                </table>
                <p class="WAITING">This page will be automatically updated in <b>2</b> seconds</p>       
                <form action="Blast.cgi" enctype="application/x-www-form-urlencoded" method="POST" id="results">
                <input name="FORMAT_TYPE" type="hidden" value="XML"><input name="RID" type="hidden" value="NDG20ZRN016"><input name="SEARCH_DB_STATUS" type="hidden" value="31"><input name="USER_TYPE" type="hidden" value="2"><input name="_PGR" type="hidden" value="0">                
                <input name="_PGR" type="hidden" value="0" >
                <input name="CMD" type="hidden" value="Get">
               
                </form>
                                
				</div><!-- /#content -->
				<form action="Blast.cgi" enctype="application/x-www-form-urlencoded"  method="post" name="reformat" id="reformat">				
				   <input name="QUERY_INFO" type="hidden" value="" />    				
				   <input name="ENTREZ_QUERY" type="hidden" value="" />
                   <input name="CDD_RID" type="hidden" value="" />
                   <input name="CDD_SEARCH_STATE" type="hidden" value="" />
                   <input name="RID" type="hidden" value="NDG20ZRN016" />
				   <input name="STEP_NUMBER" type="hidden" value="" />
				   <input name="CMD" type="hidden" value="Web"/>				
				   <input NAME="PAGE_TYPE" type="hidden"  value="BlastFormatting"/>
				
				   <!-- TO DO: test all of those changes -->				   	
				   <!-- Psi blast params  PSI_BLAST_PARAMS - commented- using forms[0] from fromatter> -->
				   <!-- Current Formatting options FORMATTING_OPTIONS- commented- using forms[0] from fromatter> -->
				   <!-- Current Search options CURR_SAVED_OPTIONS - commented- using forms[0] from fromatter> -->
                 </form>				
        </div><!-- /#content-wrap -->

         <footer>
      <section class="icon-section">
        <div id="icon-section-header" class="icon-section_header">Follow NCBI</div>
        <div class="grid-container container">
          <div class="icon-section_container">
            <a class="footer-icon" id="footer_twitter" href="https://twitter.com/ncbi" aria-label="Twitter"><svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
                <defs>
                  <style>
                    .cls-11 {
                      fill: #737373;
                    }
                  </style>
                </defs>
                <title>Twitter</title>
                <path class="cls-11" d="M250.11,105.48c-7,3.14-13,3.25-19.27.14,8.12-4.86,8.49-8.27,11.43-17.46a78.8,78.8,0,0,1-25,9.55,39.35,39.35,0,0,0-67,35.85,111.6,111.6,0,0,1-81-41.08A39.37,39.37,0,0,0,81.47,145a39.08,39.08,0,0,1-17.8-4.92c0,.17,0,.33,0,.5a39.32,39.32,0,0,0,31.53,38.54,39.26,39.26,0,0,1-17.75.68,39.37,39.37,0,0,0,36.72,27.3A79.07,79.07,0,0,1,56,223.34,111.31,111.31,0,0,0,116.22,241c72.3,0,111.83-59.9,111.83-111.84,0-1.71,0-3.4-.1-5.09C235.62,118.54,244.84,113.37,250.11,105.48Z">
                </path>
              </svg></a>
            <a class="footer-icon" id="footer_facebook" href="https://www.facebook.com/ncbi.nlm" aria-label="Facebook"><svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
                <title>Facebook</title>
                <path class="cls-11" d="M210.5,115.12H171.74V97.82c0-8.14,5.39-10,9.19-10h27.14V52l-39.32-.12c-35.66,0-42.42,26.68-42.42,43.77v19.48H99.09v36.32h27.24v109h45.41v-109h35Z">
                </path>
              </svg></a>
            <a class="footer-icon" id="footer_linkedin" href="https://www.linkedin.com/company/ncbinlm" aria-label="LinkedIn"><svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
                <title>LinkedIn</title>
                <path class="cls-11" d="M101.64,243.37H57.79v-114h43.85Zm-22-131.54h-.26c-13.25,0-21.82-10.36-21.82-21.76,0-11.65,8.84-21.15,22.33-21.15S101.7,78.72,102,90.38C102,101.77,93.4,111.83,79.63,111.83Zm100.93,52.61A17.54,17.54,0,0,0,163,182v61.39H119.18s.51-105.23,0-114H163v13a54.33,54.33,0,0,1,34.54-12.66c26,0,44.39,18.8,44.39,55.29v58.35H198.1V182A17.54,17.54,0,0,0,180.56,164.44Z">
                </path>
              </svg></a>
            <a class="footer-icon" id="footer_github" href="https://github.com/ncbi" aria-label="GitHub"><svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
                <defs>
                  <style>
                    .cls-11,
                    .cls-12 {
                      fill: #737373;
                    }

                    .cls-11 {
                      fill-rule: evenodd;
                    }
                  </style>
                </defs>
                <title>GitHub</title>
                <path class="cls-11" d="M151.36,47.28a105.76,105.76,0,0,0-33.43,206.1c5.28,1,7.22-2.3,7.22-5.09,0-2.52-.09-10.85-.14-19.69-29.42,6.4-35.63-12.48-35.63-12.48-4.81-12.22-11.74-15.47-11.74-15.47-9.59-6.56.73-6.43.73-6.43,10.61.75,16.21,10.9,16.21,10.9,9.43,16.17,24.73,11.49,30.77,8.79,1-6.83,3.69-11.5,6.71-14.14C108.57,197.1,83.88,188,83.88,147.51a40.92,40.92,0,0,1,10.9-28.39c-1.1-2.66-4.72-13.42,1-28,0,0,8.88-2.84,29.09,10.84a100.26,100.26,0,0,1,53,0C198,88.3,206.9,91.14,206.9,91.14c5.76,14.56,2.14,25.32,1,28a40.87,40.87,0,0,1,10.89,28.39c0,40.62-24.74,49.56-48.29,52.18,3.79,3.28,7.17,9.71,7.17,19.58,0,14.15-.12,25.54-.12,29,0,2.82,1.9,6.11,7.26,5.07A105.76,105.76,0,0,0,151.36,47.28Z">
                </path>
                <path class="cls-12" d="M85.66,199.12c-.23.52-1.06.68-1.81.32s-1.2-1.06-.95-1.59,1.06-.69,1.82-.33,1.21,1.07.94,1.6Zm-1.3-1">
                </path>
                <path class="cls-12" d="M90,203.89c-.51.47-1.49.25-2.16-.49a1.61,1.61,0,0,1-.31-2.19c.52-.47,1.47-.25,2.17.49s.82,1.72.3,2.19Zm-1-1.08">
                </path>
                <path class="cls-12" d="M94.12,210c-.65.46-1.71,0-2.37-.91s-.64-2.07,0-2.52,1.7,0,2.36.89.65,2.08,0,2.54Zm0,0"></path>
                <path class="cls-12" d="M99.83,215.87c-.58.64-1.82.47-2.72-.41s-1.18-2.06-.6-2.7,1.83-.46,2.74.41,1.2,2.07.58,2.7Zm0,0">
                </path>
                <path class="cls-12" d="M107.71,219.29c-.26.82-1.45,1.2-2.64.85s-2-1.34-1.74-2.17,1.44-1.23,2.65-.85,2,1.32,1.73,2.17Zm0,0">
                </path>
                <path class="cls-12" d="M116.36,219.92c0,.87-1,1.59-2.24,1.61s-2.29-.68-2.3-1.54,1-1.59,2.26-1.61,2.28.67,2.28,1.54Zm0,0">
                </path>
                <path class="cls-12" d="M124.42,218.55c.15.85-.73,1.72-2,1.95s-2.37-.3-2.52-1.14.73-1.75,2-2,2.37.29,2.53,1.16Zm0,0"></path>
              </svg></a>
            <a class="footer-icon" id="footer_blog" href="https://ncbiinsights.ncbi.nlm.nih.gov/" aria-label="Blog">
              <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><defs><style>.cls-1{fill:#737373;}</style></defs><path class="cls-1" d="M14,30a4,4,0,1,1-4-4,4,4,0,0,1,4,4Zm11,3A19,19,0,0,0,7.05,15a1,1,0,0,0-1,1v3a1,1,0,0,0,.93,1A14,14,0,0,1,20,33.07,1,1,0,0,0,21,34h3a1,1,0,0,0,1-1Zm9,0A28,28,0,0,0,7,6,1,1,0,0,0,6,7v3a1,1,0,0,0,1,1A23,23,0,0,1,29,33a1,1,0,0,0,1,1h3A1,1,0,0,0,34,33Z"></path></svg>
            </a>
          </div>
        </div>
      </section>

      <section class="container-fluid bg-primary">
        <div class="container pt-5">
          <div class="row mt-3">
            <div class="col-lg-3 col-12">
              <p><a class="text-white" href="https://www.nlm.nih.gov/socialmedia/index.html">Connect with NLM</a></p>
              <ul class="list-inline social_media">
                <li class="list-inline-item"><a href="https://twitter.com/NLM_NIH" aria-label="Twitter" target="_blank" rel="noopener noreferrer"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 249 249" style="enable-background:new 0 0 249 249;" xml:space="preserve">
                      <style type="text/css">
                        .st20 {
                          fill: #FFFFFF;
                        }

                        .st30 {
                          fill: none;
                          stroke: #FFFFFF;
                          stroke-width: 8;
                          stroke-miterlimit: 10;
                        }
                      </style>
                      <title>SM-Twitter</title>
                      <g>
                        <g>
                          <g>
                            <path class="st20" d="M192.9,88.1c-5,2.2-9.2,2.3-13.6,0.1c5.7-3.4,6-5.8,8.1-12.3c-5.4,3.2-11.4,5.5-17.6,6.7
                                                c-10.5-11.2-28.1-11.7-39.2-1.2c-7.2,6.8-10.2,16.9-8,26.5c-22.3-1.1-43.1-11.7-57.2-29C58,91.6,61.8,107.9,74,116
                                                c-4.4-0.1-8.7-1.3-12.6-3.4c0,0.1,0,0.2,0,0.4c0,13.2,9.3,24.6,22.3,27.2c-4.1,1.1-8.4,1.3-12.5,0.5c3.6,11.3,14,19,25.9,19.3
                                                c-11.6,9.1-26.4,13.2-41.1,11.5c12.7,8.1,27.4,12.5,42.5,12.5c51,0,78.9-42.2,78.9-78.9c0-1.2,0-2.4-0.1-3.6
                                                C182.7,97.4,189.2,93.7,192.9,88.1z"></path>
                          </g>
                        </g>
                        <circle class="st30" cx="124.4" cy="128.8" r="108.2"></circle>
                      </g>
                    </svg></a></li>
                <li class="list-inline-item"><a href="https://www.facebook.com/nationallibraryofmedicine" aria-label="Facebook" rel="noopener noreferrer" target="_blank">
                    <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 249 249" style="enable-background:new 0 0 249 249;" xml:space="preserve">
                      <style type="text/css">
                        .st10 {
                          fill: #FFFFFF;
                        }

                        .st110 {
                          fill: none;
                          stroke: #FFFFFF;
                          stroke-width: 8;
                          stroke-miterlimit: 10;
                        }
                      </style>
                      <title>SM-Facebook</title>
                      <g>
                        <g>
                          <path class="st10" d="M159,99.1h-24V88.4c0-5,3.3-6.2,5.7-6.2h16.8V60l-24.4-0.1c-22.1,0-26.2,16.5-26.2,27.1v12.1H90v22.5h16.9
                                                      v67.5H135v-67.5h21.7L159,99.1z"></path>
                        </g>
                      </g>
                      <circle class="st110" cx="123.6" cy="123.2" r="108.2"></circle>
                    </svg>
                  </a></li>
                <li class="list-inline-item"><a href="https://www.youtube.com/user/NLMNIH" aria-label="Youtube" target="_blank" rel="noopener noreferrer"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 249 249" style="enable-background:new 0 0 249 249;" xml:space="preserve">
                      <title>SM-Youtube</title>
                      <style type="text/css">
                        .st4 {
                          fill: none;
                          stroke: #FFFFFF;
                          stroke-width: 8;
                          stroke-miterlimit: 10;
                        }

                        .st5 {
                          fill: #FFFFFF;
                        }
                      </style>
                      <circle class="st4" cx="124.2" cy="123.4" r="108.2"></circle>
                      <g transform="translate(0,-952.36218)">
                        <path class="st5" d="M88.4,1037.4c-10.4,0-18.7,8.3-18.7,18.7v40.1c0,10.4,8.3,18.7,18.7,18.7h72.1c10.4,0,18.7-8.3,18.7-18.7
                                            v-40.1c0-10.4-8.3-18.7-18.7-18.7H88.4z M115.2,1058.8l29.4,17.4l-29.4,17.4V1058.8z"></path>
                      </g>
                    </svg></a></li>
              </ul>
            </div>
            <div class="col-lg-3 col-12">
              <p class="address_footer text-white">National Library of Medicine<br>
                <a href="https://www.google.com/maps/place/8600+Rockville+Pike,+Bethesda,+MD+20894/@38.9959508,-77.101021,17z/data=!3m1!4b1!4m5!3m4!1s0x89b7c95e25765ddb:0x19156f88b27635b8!8m2!3d38.9959508!4d-77.0988323" class="text-white" target="_blank" rel="noopener noreferrer">8600 Rockville Pike<br>
                  Bethesda, MD 20894</a></p>
            </div>
            <div class="col-lg-3 col-12 centered-lg">
              <p><a href="https://www.nlm.nih.gov/web_policies.html" class="text-white">Web Policies</a><br>
                <a href="https://www.nih.gov/institutes-nih/nih-office-director/office-communications-public-liaison/freedom-information-act-office" class="text-white">FOIA</a><br>
                <a href="https://www.hhs.gov/vulnerability-disclosure-policy/index.html" class="text-white" id="vdp">HHS Vulnerability Disclosure</a></p>
            </div>
            <div class="col-lg-3 col-12 centered-lg">
              <p><a class="supportLink text-white" href="https://support.nlm.nih.gov/">Help</a><br>
                <a href="https://www.nlm.nih.gov/accessibility.html" class="text-white">Accessibility</a><br>
                <a href="https://www.nlm.nih.gov/careers/careers.html" class="text-white">Careers</a></p>
            </div>
          </div>
          <div class="row">
            <div class="col-lg-12 centered-lg">
              <nav class="bottom-links">
                <ul class="mt-3">
                  <li>
                    <a class="text-white" href="//www.nlm.nih.gov/">NLM</a>
                  </li>
                  <li>
                    <a class="text-white" href="https://www.nih.gov/">NIH</a>
                  </li>
                  <li>
                    <a class="text-white" href="https://www.hhs.gov/">HHS</a>
                  </li>
                  <li>
                    <a class="text-white" href="https://www.usa.gov/">USA.gov</a>
                  </li>
                </ul>
              </nav>
            </div>
          </div>
        </div>
      </section>
    </footer>
<script type="text/javascript" src="js/nwds.js"></script>
<script type="text/javascript" src="js/ncbipopup.js"></script>
<script type="text/javascript" src="js/headerNew.js"></script>
<script src="js/uswds.min.js"></script>
        <script type="text/javascript" src="/portal/portal3rc.fcgi/rlib/js/InstrumentOmnitureBaseJS/InstrumentNCBIBaseJS/InstrumentPageStarterJS.js"></script>
<!--
<script type="text/javascript" src="://www.ncbi.nlm.nih.gov/portal/portal3rc.fcgi/supportedbrowsers/js/nonportalbc_min.js"></script>
<script type="text/javascript">$("#browsers_ajax").browserCheck();</script>
-->
   </div><!--/#wrap-->
</body>

</html>


Exercise: BLAST IT!

Use the BLAST URLAPI to find structures with similar sequence to a user-supplied FASTA protein sequence. Your script will take the name of a FASTA file as its only argument. The contents of this file should be provided as the QUERY parameter in a BLAST URL PUT request querying the pdb database (DATABASE=pdb) using blastp (PROGRAM=blastp). You should extract the RID from the response using a regular expression.

Using the RID, you then submit a GET request. Your GET request may either return the desired data, or it may return a status HTML page (even if you request XML) if the request hasn't finished. You should look for the presence of the string Status=WAITING in the response. If this string is present, you should repeat your GET request every 5 seconds (time.sleep(5)) until you get a response without it. It is typical for it to take 30 seconds.

Print out the final XML response.

Example fasta file: http://mscbio2025.net/files/brca.fasta